Commit 61347d9a by Archer Committed by GitHub

4.8.10 test (#2401)

* perf: i18n

* perf: i18n and img tip

* perf: readme

* perf: hide tool ai response

* fix: copy app

* fix: parse image url regx

* perf: folder collection forbid update
parent 5bf0dd0e

166 KB | W: | H:

259 KB | W: | H:

.github/imgs/intro1.png
.github/imgs/intro1.png
.github/imgs/intro1.png
.github/imgs/intro1.png
  • 2-up
  • Swipe
  • Onion skin

246 KB | W: | H:

371 KB | W: | H:

.github/imgs/intro2.png
.github/imgs/intro2.png
.github/imgs/intro2.png
.github/imgs/intro2.png
  • 2-up
  • Swipe
  • Onion skin

250 KB | W: | H:

259 KB | W: | H:

.github/imgs/intro3.png
.github/imgs/intro3.png
.github/imgs/intro3.png
.github/imgs/intro3.png
  • 2-up
  • Swipe
  • Onion skin

182 KB | W: | H:

228 KB | W: | H:

.github/imgs/intro4.png
.github/imgs/intro4.png
.github/imgs/intro4.png
.github/imgs/intro4.png
  • 2-up
  • Swipe
  • Onion skin
......@@ -24,6 +24,9 @@ weight: 816
3. 新增 - 用户选择节点(Debug 模式暂未支持)
4. 商业版新增 - 飞书机器人接入
5. 商业版新增 - 公众号接入接入
6. 修复 - Prompt 模式调用工具,stream=false 模式下,会携带 0: 开头标记。
7. 修复 - 对话日志鉴权问题:仅为 APP 管理员的用户,无法查看对话日志详情。
8. 修复 - 选择 Milvus 部署时,无法导出知识库。
6. 优化 - 知识库集合禁用,目录禁用会递归修改其下所有 children 的禁用状态。
7. 修复 - Prompt 模式调用工具,stream=false 模式下,会携带 0: 开头标记。
8. 修复 - 对话日志鉴权问题:仅为 APP 管理员的用户,无法查看对话日志详情。
9. 修复 - 选择 Milvus 部署时,无法导出知识库。
10. 修复 - 创建 APP 副本,无法复制系统配置。
11. 修复 - 图片识别模式下,自动解析图片链接正则不够严谨问题。
---
title: "教程 - 接入飞书机器人"
description: "FastGPT 接入飞书机器人"
title: "接入飞书机器人教程"
description: "FastGPT 接入飞书机器人教程"
icon: "chat"
draft: false
toc: true
weight: 507
---
## 1. 申请飞书应用
开一个免费的测试企业更方便进行调试。
......
import { i18nT } from '../../../web/i18n/utils';
export enum FlowNodeTemplateTypeEnum {
systemInput = 'systemInput',
ai = 'ai',
......@@ -181,23 +183,23 @@ export enum VariableInputEnum {
export const variableMap = {
[VariableInputEnum.input]: {
icon: 'core/app/variable/input',
title: 'core.module.variable.input type',
title: i18nT('common:core.module.variable.input type'),
desc: ''
},
[VariableInputEnum.textarea]: {
icon: 'core/app/variable/textarea',
title: 'core.module.variable.textarea type',
desc: '允许用户最多输入4000字的对话框。'
title: i18nT('common:core.module.variable.textarea type'),
desc: i18nT('app:variable.textarea_type_desc')
},
[VariableInputEnum.select]: {
icon: 'core/app/variable/select',
title: 'core.module.variable.select type',
title: i18nT('common:core.module.variable.select type'),
desc: ''
},
[VariableInputEnum.custom]: {
icon: 'core/app/variable/external',
title: 'core.module.variable.Custom type',
desc: '可以定义一个无需用户填写的全局变量。\n该变量的值可以来自于 API 接口,分享链接的 Query 或通过【变量更新】模块进行赋值。'
title: i18nT('common:core.module.variable.Custom type'),
desc: i18nT('app:variable.select type_desc')
}
};
......
......@@ -118,7 +118,8 @@ export const loadRequestMessages = async ({
}
// 正则表达式匹配图片URL
const imageRegex = /(https?:\/\/.*\.(?:png|jpe?g|gif|webp|bmp|tiff?|svg|ico|heic|avif))/i;
const imageRegex =
/(https?:\/\/[^\s/$.?#].[^\s]*\.(?:png|jpe?g|gif|webp|bmp|tiff?|svg|ico|heic|avif))/i;
const result: { type: 'text' | 'image'; value: string }[] = [];
let lastIndex = 0;
......
......@@ -110,10 +110,15 @@ export const dispatchHttp468Request = async (props: HttpRequestProps): Promise<H
const requestBody = await (() => {
if (!httpJsonBody) return {};
try {
// Replace all variables in the string body
httpJsonBody = replaceVariable(httpJsonBody, allVariables);
// Text body, return directly
if (headers['Content-Type']?.includes('text/plain')) {
return httpJsonBody?.replaceAll(UNDEFINED_SIGN, 'null');
}
// Json body, parse and return
const jsonParse = JSON.parse(httpJsonBody);
const removeSignJson = removeUndefinedSign(jsonParse);
return removeSignJson;
......
......@@ -35,7 +35,7 @@ const MyModal = ({
closeOnOverlayClick = true,
...props
}: MyModalProps) => {
const isPc = useSystem();
const { isPc } = useSystem();
return (
<Modal
......
......@@ -125,6 +125,10 @@
},
"upload_file_max_amount": "Max files",
"upload_file_max_amount_tip": "1. The maximum number of files to be uploaded at a time.\n2. The maximum number of files that can be remembered in the dialog window: Files in the history are automatically retrieved for each round of conversation, and files that are out of range are forgotten.",
"variable": {
"select type_desc": "You can define a global variable that does not need to be filled in by the user.\n\nThe value of this variable can come from the API interface, the Query of the shared link, or be assigned through the [Variable Update] module.",
"textarea_type_desc": "A dialog box that allows the user to enter up to 4000 words."
},
"version": {
"Revert success": "Revert success"
},
......
......@@ -600,8 +600,7 @@
"success": "Start syncing"
}
},
"training": {
}
"training": {}
},
"data": {
"Auxiliary Data": "Auxiliary data",
......@@ -1270,7 +1269,9 @@
"Sub plan": "Subscription plan",
"Sub plan tip": "Free use of {{title}} or upgrade to a higher plan",
"Team plan and usage": "Plan and usage",
"web_site_sync": "Website sync",
"Training weight": "Training priority: {{weight}}",
"rerank": "Rerank",
"Update extra ai points": "Extra AI points",
"Update extra dataset size": "Extra storage",
"Upgrade plan": "Upgrade plan",
......
{
"app_key_tips": "These keys have the current application identification, refer to the document for specific use ",
"create_api_key": "Create new Key",
"create_link": "Create link",
"default_response": "Default Response",
"edit_api_key": "Edit Key information",
"edit_link": "Edit",
"feishu_name": "Lark",
"link_name": "Name of the share link",
"qpm_tips": "How many times per minute can each IP ask at most",
"qpm_is_empty": "QPM cannot be empty",
"app_key_tips": "These keys have the current application identification, refer to the document for specific use ",
"key_alias": "key alias, for display only ",
"key_tips": "You can use the API Key to access certain interfaces (you can't access the app, you need to use the API key within the app to access the app)",
"link_name": "Name of the share link",
"official_account": {
"params": "Wechat params"
},
"qpm_is_empty": "QPM cannot be empty",
"qpm_tips": "How many times per minute can each IP ask at most",
"token_auth": "Token authentication",
"token_auth_tips": "Identity verification server address, if this value is filled, a request will be sent to the specified server before each conversation to perform identity verification",
"token_auth_use_cases": "View usage instructions for identity verification"
}
\ No newline at end of file
}
......@@ -127,6 +127,10 @@
},
"upload_file_max_amount": "最大文件数量",
"upload_file_max_amount_tip": "1.单次上传文件的最大数量。\n2.对话窗口记忆的最大文件数量:每轮对话会自动获取历史中的文件,超出范围的文件会被遗忘。",
"variable": {
"select type_desc": "可以定义一个无需用户填写的全局变量。\n该变量的值可以来自于 API 接口,分享链接的 Query 或通过【变量更新】模块进行赋值。",
"textarea_type_desc": "允许用户最多输入4000字的对话框。"
},
"version": {
"Revert success": "回滚成功"
},
......
......@@ -610,8 +610,7 @@
"success": "开始同步"
}
},
"training": {
}
"training": {}
},
"data": {
"Auxiliary Data": "辅助数据",
......@@ -1286,6 +1285,8 @@
"Sub plan tip": "免费使用 {{title}} 或升级更高的套餐",
"Team plan and usage": "套餐与用量",
"Training weight": "训练优先级:{{weight}}",
"web_site_sync": "Web 站点同步",
"rerank": "检索结果重排",
"Update extra ai points": "额外 AI 积分",
"Update extra dataset size": "额外存储量",
"Upgrade plan": "升级套餐",
......
{
"publish_name": "名称",
"app_key_tips": "这些 key 已有当前应用标识,具体使用可参考文档",
"basic_info": "基本信息",
"copy_link_hint": "将下面链接复制到指定位置",
"create_api_key": "创建新 key",
"create_link": "创建链接",
"default_response": "默认回复",
"edit_api_key": "编辑 key 信息",
"edit_feishu_bot": "编辑飞书机器人",
"edit_link": "编辑",
"feishu_api": "飞书接口",
"feishu_bot": "飞书机器人",
"feishu_bot_desc": "通过 API 直接接入飞书机器人",
"feishu_name": "飞书",
"new_feishu_bot": "新增飞书机器人",
"edit_feishu_bot": "编辑飞书机器人",
"link_name": "分享链接的名字",
"qpm_tips": "每个 IP 每分钟最多提问多少次",
"qpm_is_empty": "QPM 不能为空",
"app_key_tips": "这些 key 已有当前应用标识,具体使用可参考文档",
"key_alias": "key 的别名,仅用于展示",
"key_tips": "你可以使用 API 秘钥访问一些特定的接口(无法访问应用,访问应用需使用应用内的 API key)",
"link_name": "分享链接的名字",
"new_feishu_bot": "新增飞书机器人",
"official_account": {
"api": "微信公众号 API",
"create_modal_title": "创建微信公众号接入",
"desc": "通过 API 直接接入微信公众号",
"edit_modal_title": "编辑微信公众号接入",
"name": "微信公众号接入",
"params": "微信公众号参数"
},
"publish_name": "名称",
"qpm_is_empty": "QPM 不能为空",
"qpm_tips": "每个 IP 每分钟最多提问多少次",
"request_address": "请求地址",
"show_share_link_modal_title": "开始使用",
"token_auth": "身份验证",
"token_auth_tips": "身份校验服务器地址,如填写该值,每次对话前都会向指定服务器发送一个请求,进行身份校验",
"token_auth_use_cases": "查看身份验证使用说明",
"show_share_link_modal_title": "开始使用",
"request_address": "请求地址",
"basic_info": "基本信息",
"feishu_api": "飞书接口",
"feishu_bot": "飞书机器人",
"feishu_bot_desc": "通过 API 直接接入飞书机器人",
"copy_link_hint": "将下面链接复制到指定位置",
"wecom": {
"title": "发布到企业微信机器人",
"api": "企微 API",
"bot": "企业微信机器人",
"bot_desc": "通过 API 直接接入企业微信机器人",
"edit_modal_title": "编辑企微机器人",
"create_modal_title": "创建企微机器人",
"api": "企微 API"
},
"official_account": {
"name": "微信公众号接入",
"desc": "通过 API 直接接入微信公众号",
"edit_modal_title": "编辑微信公众号接入",
"create_modal_title": "创建微信公众号接入",
"api": "微信公众号 API"
"edit_modal_title": "编辑企微机器人",
"title": "发布到企业微信机器人"
}
}
<svg viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="36" height="36" rx="6" fill="#EBFAF8"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M20.7766 8.13002C21.1566 8.34961 21.4862 8.65917 22.1455 9.27829L25.0534 12.009C25.7721 12.6839 26.1315 13.0214 26.3873 13.4225C26.6047 13.7635 26.7663 14.1369 26.866 14.5288C26.9833 14.9899 26.9833 15.4829 26.9833 16.4688V22.2622C26.9833 24.4263 26.9833 25.5083 26.5555 26.332C26.195 27.026 25.6291 27.5919 24.935 27.9524C24.1114 28.3802 23.0294 28.3802 20.8653 28.3802H15.1351C12.971 28.3802 11.889 28.3802 11.0654 27.9524C10.3713 27.5919 9.80545 27.026 9.44492 26.332C9.01709 25.5083 9.01709 24.4263 9.01709 22.2622V13.7381C9.01709 11.5741 9.01709 10.492 9.44492 9.66841C9.80545 8.97437 10.3713 8.40847 11.0654 8.04795C11.889 7.62012 12.971 7.62012 15.1351 7.62012H17.9574C18.8619 7.62012 19.3141 7.62012 19.7414 7.72015C20.1047 7.80521 20.4535 7.94331 20.7766 8.13002ZM20.3331 10.6528C19.7398 10.084 19.4432 9.79959 19.1886 9.78928C18.9864 9.78109 18.7913 9.86434 18.6572 10.016C18.4885 10.2069 18.4885 10.6178 18.4885 11.4397V12.378C18.4885 13.5803 18.4885 14.1814 18.7225 14.6405C18.9283 15.0445 19.2566 15.3729 19.6606 15.5787C20.1197 15.8126 20.7209 15.8126 21.9231 15.8126H23.0025C23.8677 15.8126 24.3003 15.8126 24.4927 15.638C24.6453 15.4995 24.7261 15.2986 24.7117 15.093C24.6937 14.8338 24.3814 14.5344 23.7569 13.9356L20.3331 10.6528ZM13.005 19.6764C13.005 19.1241 13.4527 18.6764 14.005 18.6764H21.9998C22.5521 18.6764 22.9998 19.1241 22.9998 19.6764C22.9998 20.2287 22.5521 20.6764 21.9998 20.6764H14.005C13.4527 20.6764 13.005 20.2287 13.005 19.6764ZM12.9933 23.4246C12.9933 22.8723 13.441 22.4246 13.9933 22.4246H19.9949C20.5472 22.4246 20.9949 22.8723 20.9949 23.4246C20.9949 23.9769 20.5472 24.4246 19.9949 24.4246H13.9933C13.441 24.4246 12.9933 23.9769 12.9933 23.4246Z" fill="#00A9A6"/>
</svg>
<svg width="422" height="272" viewBox="0 0 422 272" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_4828_12312)">
<rect x="1" y="1.23096" width="420" height="269.5" rx="7.875" fill="#F4F4F7"/>
<rect x="23.6" y="25.831" width="393.8" height="240.8" rx="7.4" fill="#FBFBFC"/>
<rect x="23.6" y="25.831" width="393.8" height="240.8" rx="7.4" stroke="#DFE2EA" stroke-width="0.8"/>
<g clip-path="url(#clip1_4828_12312)">
<mask id="path-4-inside-1_4828_12312" fill="white">
<path d="M69 26.231H410C413.866 26.231 417 29.365 417 33.231V259.231C417 263.097 413.866 266.231 410 266.231H69V26.231Z"/>
</mask>
<path d="M69 26.231H410C413.866 26.231 417 29.365 417 33.231V259.231C417 263.097 413.866 266.231 410 266.231H69V26.231Z" fill="#FBFBFC"/>
<rect x="79" y="45.231" width="134" height="38" rx="4" fill="#F0F4FF"/>
<rect x="79.3" y="45.531" width="133.4" height="37.4" rx="3.7" stroke="#3370FF" stroke-opacity="0.1" stroke-width="0.6"/>
<rect x="79.3" y="104.531" width="133.4" height="150.4" rx="3.7" fill="white"/>
<rect x="79.3" y="104.531" width="133.4" height="150.4" rx="3.7" stroke="#DFE2EA" stroke-width="0.6"/>
<rect x="87.667" y="115.666" width="113.382" height="5.25" rx="2.625" fill="#F0F1F6"/>
<rect x="87.667" y="234.218" width="113.382" height="5.25" rx="2.625" fill="#F0F1F6"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M90.616 140.084C90.7164 140.084 90.7979 140.002 90.7979 139.902V139.052C90.7979 138.952 90.7164 138.871 90.616 138.871C90.4885 138.871 90.4263 138.83 90.3879 138.77C90.3398 138.691 90.3006 138.525 90.3006 138.235V137.303C90.3006 136.921 90.2598 136.597 90.1711 136.339C90.1114 136.165 90.0281 136.016 89.9172 135.899C90.1914 135.612 90.3006 135.125 90.3006 134.514V133.546C90.3006 133.296 90.341 133.139 90.397 133.05C90.444 132.975 90.5079 132.937 90.616 132.937C90.7164 132.937 90.7979 132.856 90.7979 132.755V131.906C90.7979 131.805 90.7164 131.724 90.616 131.724C90.1284 131.724 89.7357 131.861 89.4858 132.174C89.2417 132.476 89.1411 132.968 89.1411 133.6V134.614C89.1411 134.892 89.1022 135.073 89.0452 135.177C89.0181 135.227 88.9894 135.255 88.9623 135.272C88.9356 135.288 88.9005 135.299 88.8506 135.299C88.7501 135.299 88.6687 135.381 88.6687 135.481V136.317C88.6687 136.418 88.7501 136.499 88.8506 136.499C88.9412 136.499 88.9994 136.532 89.0466 136.616C89.1023 136.714 89.1411 136.886 89.1411 137.153V138.244C89.1411 138.872 89.2425 139.361 89.4919 139.656C89.7443 139.954 90.1342 140.084 90.616 140.084Z" fill="#009BDE"/>
<path d="M96.4547 139.902C96.4547 140.002 96.5361 140.084 96.6366 140.084C97.1184 140.084 97.5083 139.954 97.7607 139.656C98.0101 139.361 98.1115 138.872 98.1115 138.244V137.153C98.1115 136.886 98.1503 136.714 98.206 136.616C98.2532 136.532 98.3114 136.499 98.402 136.499C98.5025 136.499 98.5839 136.418 98.5839 136.317V135.481C98.5839 135.381 98.5025 135.299 98.402 135.299C98.3521 135.299 98.317 135.288 98.2903 135.272C98.2632 135.255 98.2344 135.227 98.2074 135.177C98.1504 135.073 98.1115 134.892 98.1115 134.614V133.6C98.1115 132.968 98.0109 132.476 97.7667 132.173C97.5168 131.861 97.1242 131.724 96.6366 131.724C96.5361 131.724 96.4547 131.805 96.4547 131.906V132.755C96.4547 132.856 96.5361 132.937 96.6366 132.937C96.7447 132.937 96.8086 132.975 96.8556 133.05C96.9116 133.139 96.952 133.296 96.952 133.546V134.514C96.952 135.125 97.0612 135.612 97.3354 135.899C97.2245 136.016 97.1412 136.165 97.0815 136.339C96.9928 136.597 96.952 136.921 96.952 137.303V138.235C96.952 138.525 96.9128 138.691 96.8647 138.77C96.8263 138.83 96.7641 138.871 96.6366 138.871C96.5361 138.871 96.4547 138.952 96.4547 139.052V139.902Z" fill="#009BDE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M91.6651 134.65C91.4698 134.455 91.4698 134.138 91.6651 133.943C91.8604 133.747 92.1771 133.747 92.3724 133.943L93.6263 135.197L94.8802 133.943C95.0755 133.747 95.3922 133.747 95.5875 133.943C95.7828 134.138 95.7828 134.455 95.5875 134.65L94.3336 135.904L95.5875 137.158C95.7828 137.353 95.7828 137.67 95.5875 137.865C95.3922 138.06 95.0755 138.06 94.8802 137.865L93.6263 136.611L92.3724 137.865C92.1771 138.06 91.8604 138.06 91.6651 137.865C91.4698 137.67 91.4698 137.353 91.6651 137.158L92.919 135.904L91.6651 134.65Z" fill="#009BDE"/>
<path d="M105.677 132.305H106.224C107.228 133.342 108.386 134.162 109.696 134.756L109.318 135.44C108.916 135.247 108.547 135.046 108.193 134.821V135.544H106.336V136.75H108.595V137.489H106.336V138.759H109.326V139.507H102.583V138.759H105.565V137.489H103.298V136.75H105.565V135.544H103.708V134.821C103.338 135.046 102.952 135.255 102.551 135.456L102.181 134.789C103.579 134.121 104.745 133.293 105.677 132.305ZM103.724 134.813H108.177C107.341 134.298 106.594 133.687 105.95 132.996C105.34 133.671 104.592 134.274 103.724 134.813ZM112.699 136.484H115.681V138.622H112.699V136.484ZM114.998 137.988V137.111H113.391V137.988H114.998ZM116.316 133.285H112.105V133.993H116.316V133.285ZM112.105 134.684V135.239H117.442C117.442 137.256 117.402 138.502 117.321 138.984C117.241 139.45 116.871 139.683 116.212 139.683C116.019 139.683 115.698 139.667 115.239 139.651L115.071 139.008C115.472 139.032 115.81 139.048 116.091 139.048C116.397 139.048 116.574 138.92 116.63 138.663C116.67 138.389 116.694 137.481 116.71 135.922H112.105C112.073 137.385 111.703 138.647 110.995 139.7L110.393 139.161C111.028 138.293 111.349 137.176 111.357 135.801V132.57H117.056V134.684H112.105ZM124.504 133.993C125.083 134.387 125.573 134.78 125.967 135.182L125.437 135.713C125.091 135.327 124.609 134.917 123.998 134.483L124.504 133.993ZM122.479 132.233C122.559 132.45 122.631 132.691 122.704 132.956H125.774V133.695H123.62V135.777H122.864V133.695H121.731V135.777H120.976V133.695H118.813V132.956H121.924C121.844 132.747 121.755 132.546 121.659 132.361L122.479 132.233ZM120.075 134.025L120.638 134.515C120.22 134.957 119.698 135.351 119.087 135.697L118.621 135.086C119.199 134.78 119.682 134.427 120.075 134.025ZM119.36 136.123H124.93V136.701C124.432 137.32 123.829 137.851 123.114 138.285C123.95 138.614 124.922 138.856 126.031 139L125.678 139.7C124.392 139.483 123.29 139.145 122.374 138.695C121.418 139.161 120.308 139.499 119.039 139.708L118.685 138.984C119.762 138.831 120.726 138.582 121.57 138.245C120.927 137.827 120.405 137.344 119.987 136.798H119.36V136.123ZM120.847 136.798C121.241 137.232 121.723 137.602 122.294 137.907C122.889 137.594 123.419 137.224 123.869 136.798H120.847ZM127.612 135.689H133.335V137.779H130.835V138.132H133.496V138.622H130.835V139H134.082V139.579H126.848V139H130.08V138.622H127.451V138.132H130.08V137.779H127.612V135.689ZM132.612 137.328V136.943H130.835V137.328H132.612ZM130.08 137.328V136.943H128.335V137.328H130.08ZM128.335 136.525H130.08V136.139H128.335V136.525ZM130.835 136.139V136.525H132.612V136.139H130.835ZM127.789 132.433H133.166V134.475H127.789V132.433ZM132.435 134.041V133.671H128.52V134.041H132.435ZM128.52 133.237H132.435V132.876H128.52V133.237ZM126.848 134.813H134.082V135.359H126.848V134.813Z" fill="#485264"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M195 131.904C195.276 131.904 195.5 132.128 195.5 132.404V135.404H198.5C198.776 135.404 199 135.628 199 135.904C199 136.18 198.776 136.404 198.5 136.404H195.5V139.404C195.5 139.68 195.276 139.904 195 139.904C194.724 139.904 194.5 139.68 194.5 139.404V136.404H191.5C191.224 136.404 191 136.18 191 135.904C191 135.628 191.224 135.404 191.5 135.404H194.5V132.404C194.5 132.128 194.724 131.904 195 131.904Z" fill="#485264"/>
<g clip-path="url(#clip2_4828_12312)">
<rect x="88" y="148.231" width="113" height="65" rx="3.40117" fill="white"/>
<path d="M88 151.632C88 149.754 89.5228 148.231 91.4012 148.231H197.599C199.477 148.231 201 149.754 201 151.632V158.231H88V151.632Z" fill="#F4F4F7"/>
<g clip-path="url(#clip3_4828_12312)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M95.2813 164.297H99.4186C99.7533 164.297 99.961 164.298 100.117 164.311C100.263 164.323 100.301 164.342 100.306 164.345L100.306 164.345C100.384 164.385 100.447 164.449 100.487 164.526L100.487 164.526C100.49 164.532 100.51 164.569 100.522 164.715C100.535 164.871 100.535 165.079 100.535 165.414V168.226C100.535 168.56 100.535 168.768 100.522 168.924C100.51 169.071 100.49 169.108 100.487 169.113L100.487 169.113C100.447 169.191 100.384 169.254 100.306 169.295L100.306 169.295C100.301 169.297 100.263 169.317 100.117 169.329C99.961 169.342 99.7533 169.342 99.4186 169.342H95.2813C94.9466 169.342 94.7389 169.342 94.5829 169.329C94.4364 169.317 94.3992 169.297 94.3939 169.295L94.3938 169.295C94.3161 169.254 94.2528 169.191 94.2125 169.113L94.2124 169.113C94.2097 169.108 94.1903 169.071 94.1782 168.924C94.1652 168.768 94.1646 168.56 94.1646 168.226V165.414C94.1646 165.079 94.1652 164.871 94.1782 164.715C94.1903 164.569 94.2097 164.532 94.2124 164.526L94.2125 164.526C94.2528 164.449 94.3161 164.385 94.3938 164.345L94.3939 164.345C94.3992 164.342 94.4364 164.323 94.5829 164.311C94.7389 164.298 94.9466 164.297 95.2813 164.297ZM93.4561 165.414C93.4561 164.768 93.4561 164.445 93.5837 164.2C93.6913 163.993 93.8601 163.824 94.0672 163.716C94.3129 163.589 94.6357 163.589 95.2813 163.589H99.4186C100.064 163.589 100.387 163.589 100.633 163.716C100.84 163.824 101.009 163.993 101.116 164.2C101.244 164.445 101.244 164.768 101.244 165.414V168.226C101.244 168.871 101.244 169.194 101.116 169.44C101.009 169.647 100.84 169.816 100.633 169.923C100.387 170.051 100.064 170.051 99.4186 170.051H95.2813C94.6357 170.051 94.3129 170.051 94.0672 169.923C93.8601 169.816 93.6913 169.647 93.5837 169.44C93.4561 169.194 93.4561 168.871 93.4561 168.226V165.414ZM95.2355 165.083C95.0399 165.083 94.8813 165.241 94.8813 165.437C94.8813 165.633 95.0399 165.791 95.2355 165.791H95.4481V167.86H95.2355C95.0399 167.86 94.8813 168.018 94.8813 168.214C94.8813 168.41 95.0399 168.568 95.2355 168.568H96.2984C96.4941 168.568 96.6527 168.41 96.6527 168.214C96.6527 168.018 96.4941 167.86 96.2984 167.86H96.0858L96.0858 165.791H96.2984C96.4941 165.791 96.6527 165.633 96.6527 165.437C96.6527 165.241 96.4941 165.083 96.2984 165.083L95.2355 165.083ZM97.9063 168.214C97.9063 168.41 97.7477 168.568 97.5521 168.568C97.3564 168.568 97.1978 168.41 97.1978 168.214C97.1978 168.018 97.3564 167.86 97.5521 167.86C97.7477 167.86 97.9063 168.018 97.9063 168.214ZM98.8064 168.568C99.002 168.568 99.1607 168.41 99.1607 168.214C99.1607 168.018 99.002 167.86 98.8064 167.86C98.6107 167.86 98.4521 168.018 98.4521 168.214C98.4521 168.41 98.6107 168.568 98.8064 168.568Z" fill="#667085"/>
</g>
<path d="M106.796 163.099L107.429 163.154C107.374 163.589 107.313 164.004 107.259 164.385H108.286V164.746C108.245 165.82 108.061 166.759 107.735 167.555C108.021 167.834 108.259 168.086 108.449 168.31L108.021 168.813C107.857 168.609 107.66 168.398 107.442 168.174C107.17 168.664 106.83 169.092 106.429 169.46L105.987 168.915C106.388 168.575 106.721 168.174 106.98 167.705C106.708 167.446 106.415 167.167 106.089 166.875C106.245 166.303 106.388 165.677 106.51 165.004H106.021V164.385H106.612C106.68 163.97 106.742 163.542 106.796 163.099ZM107.259 167.106C107.497 166.494 107.64 165.793 107.687 165.004H107.157C107.034 165.671 106.912 166.235 106.782 166.684C106.959 166.834 107.116 166.97 107.259 167.106ZM109.204 165.052C109.095 165.609 108.925 166.065 108.694 166.419L108.225 165.997C108.551 165.494 108.728 164.725 108.748 163.678H109.327C109.32 163.95 109.306 164.201 109.293 164.433H110.041V163.167H110.687V164.433H112V165.052H110.687V166.535H111.952V167.167H110.687V168.616H112.224V169.242H108.483V168.616H110.041V167.167H108.714V166.535H110.041V165.052H109.204ZM115.141 169.038V169.398H114.495V167.065C114.114 167.181 113.706 167.29 113.278 167.392L112.937 166.766C114.073 166.548 115.019 166.269 115.781 165.916C115.495 165.684 115.114 165.433 114.652 165.167L115.209 164.82C115.686 165.113 116.06 165.378 116.339 165.616C116.958 165.242 117.413 164.807 117.713 164.317H115.359C114.897 164.739 114.318 165.12 113.611 165.46L113.176 164.902C114.325 164.412 115.101 163.82 115.509 163.12L116.216 163.201C116.121 163.378 116.019 163.548 115.903 163.712H118.454V164.283C118.012 165.147 117.216 165.868 116.067 166.439H118.672V169.398H118.019V169.038H115.141ZM118.019 168.412V167.038H115.141V168.412H118.019Z" fill="#485264"/>
<g clip-path="url(#clip4_4828_12312)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M98.5143 183.027C97.9524 182.776 97.3247 182.714 96.7247 182.85C96.1247 182.985 95.5846 183.311 95.1849 183.779C94.7853 184.247 94.5475 184.831 94.507 185.445C94.4665 186.058 94.6255 186.669 94.9603 187.185C95.2951 187.701 95.7878 188.095 96.3648 188.308C96.9418 188.521 97.5722 188.542 98.1621 188.368C98.752 188.193 99.2697 187.833 99.638 187.34C100.006 186.848 100.205 186.249 100.206 185.634V185.339C100.206 185.143 100.364 184.985 100.56 184.985C100.756 184.985 100.914 185.143 100.914 185.339V185.634C100.914 186.402 100.665 187.149 100.206 187.764C99.7457 188.38 99.0994 188.829 98.363 189.047C97.6266 189.265 96.8395 189.239 96.1192 188.973C95.3989 188.707 94.7839 188.215 94.3659 187.57C93.948 186.926 93.7494 186.164 93.8 185.398C93.8505 184.632 94.1473 183.902 94.6463 183.319C95.1452 182.735 95.8195 182.328 96.5685 182.159C97.3176 181.989 98.1012 182.067 98.8027 182.379C98.9814 182.459 99.0617 182.669 98.9821 182.847C98.9025 183.026 98.693 183.106 98.5143 183.027ZM100.811 182.816C100.949 182.954 100.949 183.179 100.811 183.317L97.604 186.527C97.5375 186.594 97.4474 186.631 97.3534 186.631C97.2594 186.631 97.1693 186.594 97.1028 186.527L96.1408 185.565C96.0024 185.427 96.0024 185.203 96.1408 185.064C96.2791 184.926 96.5034 184.926 96.6418 185.064L97.3532 185.776L100.309 182.816C100.448 182.678 100.672 182.678 100.811 182.816Z" fill="#667085"/>
<svg width="422" height="271" viewBox="0 0 422 271" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_9494_29052)">
<rect x="1" y="1" width="420" height="269" rx="7.875" fill="#F0F1F6"/>
<rect x="21" y="108" width="187" height="158" rx="7" fill="white"/>
<rect x="34" y="125" width="160" height="5" rx="2.5" fill="#F0F1F6"/>
<rect x="34" y="249" width="161" height="5" rx="2.5" fill="#F0F1F6"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M36.6161 152.516C36.7165 152.516 36.798 152.435 36.798 152.335V151.485C36.798 151.385 36.7165 151.303 36.6161 151.303C36.4886 151.303 36.4264 151.262 36.388 151.202C36.3399 151.124 36.3007 150.958 36.3007 150.667V149.736C36.3007 149.354 36.2599 149.03 36.1712 148.771C36.1115 148.598 36.0282 148.448 35.9173 148.332C36.1915 148.044 36.3007 147.557 36.3007 146.946V145.978C36.3007 145.728 36.3411 145.571 36.3971 145.482C36.4441 145.408 36.508 145.37 36.6161 145.37C36.7165 145.37 36.798 145.288 36.798 145.188V144.338C36.798 144.238 36.7165 144.156 36.6161 144.156C36.1285 144.156 35.7358 144.293 35.4859 144.606C35.2418 144.909 35.1412 145.401 35.1412 146.033V147.046C35.1412 147.325 35.1023 147.505 35.0453 147.61C35.0182 147.66 34.9895 147.688 34.9624 147.705C34.9357 147.721 34.9006 147.732 34.8507 147.732C34.7502 147.732 34.6688 147.813 34.6688 147.914V148.75C34.6688 148.85 34.7502 148.932 34.8507 148.932C34.9413 148.932 34.9995 148.965 35.0467 149.048C35.1024 149.147 35.1412 149.318 35.1412 149.586V150.676C35.1412 151.305 35.2426 151.794 35.492 152.089C35.7444 152.387 36.1343 152.516 36.6161 152.516Z" fill="#009BDE"/>
<path d="M42.4548 152.335C42.4548 152.435 42.5362 152.516 42.6367 152.516C43.1185 152.516 43.5084 152.387 43.7608 152.089C44.0102 151.794 44.1116 151.305 44.1116 150.676V149.586C44.1116 149.318 44.1504 149.147 44.2061 149.048C44.2533 148.965 44.3115 148.932 44.4021 148.932C44.5026 148.932 44.584 148.85 44.584 148.75V147.914C44.584 147.813 44.5026 147.732 44.4021 147.732C44.3522 147.732 44.3171 147.721 44.2904 147.705C44.2633 147.688 44.2345 147.66 44.2075 147.61C44.1505 147.505 44.1116 147.325 44.1116 147.046V146.033C44.1116 145.401 44.011 144.909 43.7668 144.606C43.5169 144.293 43.1243 144.156 42.6367 144.156C42.5362 144.156 42.4548 144.238 42.4548 144.338V145.188C42.4548 145.288 42.5362 145.37 42.6367 145.37C42.7448 145.37 42.8087 145.408 42.8557 145.482C42.9117 145.571 42.9521 145.728 42.9521 145.978V146.946C42.9521 147.557 43.0613 148.044 43.3355 148.332C43.2246 148.448 43.1413 148.598 43.0816 148.771C42.9929 149.03 42.9521 149.354 42.9521 149.736V150.667C42.9521 150.958 42.9129 151.124 42.8648 151.202C42.8264 151.262 42.7642 151.303 42.6367 151.303C42.5362 151.303 42.4548 151.385 42.4548 151.485V152.335Z" fill="#009BDE"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M37.6652 147.083C37.4699 146.887 37.4699 146.571 37.6652 146.375C37.8605 146.18 38.1772 146.18 38.3725 146.375L39.6264 147.629L40.8803 146.375C41.0756 146.18 41.3923 146.18 41.5876 146.375C41.7829 146.571 41.7829 146.887 41.5876 147.083L40.3337 148.336L41.5876 149.59C41.7829 149.786 41.7829 150.102 41.5876 150.298C41.3923 150.493 41.0756 150.493 40.8803 150.298L39.6264 149.044L38.3725 150.298C38.1772 150.493 37.8605 150.493 37.6652 150.298C37.4699 150.102 37.4699 149.786 37.6652 149.59L38.9191 148.336L37.6652 147.083Z" fill="#009BDE"/>
<path d="M51.6772 144.737H52.2238C53.2285 145.774 54.3859 146.594 55.6961 147.189L55.3183 147.872C54.9164 147.679 54.5467 147.478 54.193 147.253V147.977H52.3363V149.182H54.5949V149.922H52.3363V151.192H55.3263V151.939H48.5827V151.192H51.5647V149.922H49.298V149.182H51.5647V147.977H49.708V147.253C49.3382 147.478 48.9524 147.687 48.5505 147.888L48.1808 147.221C49.5794 146.554 50.7448 145.726 51.6772 144.737ZM49.724 147.245H54.1769C53.341 146.731 52.5935 146.12 51.9505 145.429C51.3396 146.104 50.5921 146.707 49.724 147.245ZM58.6995 148.917H61.6814V151.055H58.6995V148.917ZM60.9982 150.42V149.544H59.3907V150.42H60.9982ZM62.3164 145.718H58.1047V146.425H62.3164V145.718ZM58.1047 147.117V147.671H63.4417C63.4417 149.689 63.4015 150.935 63.3211 151.417C63.2408 151.883 62.871 152.116 62.2119 152.116C62.019 152.116 61.6975 152.1 61.2394 152.084L61.0706 151.441C61.4725 151.465 61.81 151.481 62.0914 151.481C62.3968 151.481 62.5736 151.353 62.6299 151.095C62.6701 150.822 62.6942 149.914 62.7103 148.354H58.1047C58.0725 149.817 57.7028 151.079 56.9955 152.132L56.3926 151.594C57.0276 150.726 57.3491 149.608 57.3572 148.234V145.003H63.0559V147.117H58.1047ZM70.5041 146.425C71.0829 146.819 71.5732 147.213 71.967 147.615L71.4365 148.145C71.0909 147.76 70.6086 147.35 69.9978 146.916L70.5041 146.425ZM68.4786 144.665C68.559 144.882 68.6314 145.123 68.7037 145.389H71.7741V146.128H69.62V148.21H68.8645V146.128H67.7311V148.21H66.9756V146.128H64.8135V145.389H67.924C67.8437 145.18 67.7553 144.979 67.6588 144.794L68.4786 144.665ZM66.0754 146.458L66.638 146.948C66.2201 147.39 65.6976 147.784 65.0867 148.129L64.6205 147.519C65.1993 147.213 65.6815 146.859 66.0754 146.458ZM65.36 148.555H70.9301V149.134C70.4318 149.753 69.829 150.283 69.1136 150.718C69.9495 151.047 70.9221 151.288 72.0313 151.433L71.6777 152.132C70.3916 151.915 69.2905 151.578 68.3742 151.127C67.4177 151.594 66.3085 151.931 65.0385 152.14L64.6848 151.417C65.7619 151.264 66.7264 151.015 67.5704 150.677C66.9274 150.259 66.4049 149.777 65.987 149.231H65.36V148.555ZM66.847 149.231C67.2408 149.665 67.7231 150.034 68.2938 150.34C68.8886 150.026 69.4191 149.657 69.8692 149.231H66.847ZM73.612 148.121H79.3349V150.211H76.8352V150.565H79.4956V151.055H76.8352V151.433H80.0824V152.012H72.8485V151.433H76.0796V151.055H73.4513V150.565H76.0796V150.211H73.612V148.121ZM78.6115 149.761V149.375H76.8352V149.761H78.6115ZM76.0796 149.761V149.375H74.3354V149.761H76.0796ZM74.3354 148.957H76.0796V148.571H74.3354V148.957ZM76.8352 148.571V148.957H78.6115V148.571H76.8352ZM73.7889 144.866H79.1661V146.908H73.7889V144.866ZM78.4347 146.474V146.104H74.5203V146.474H78.4347ZM74.5203 145.67H78.4347V145.308H74.5203V145.67ZM72.8485 147.245H80.0824V147.792H72.8485V147.245Z" fill="#485264"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M186.848 144.336C187.125 144.336 187.348 144.56 187.348 144.836V147.836H190.348C190.625 147.836 190.848 148.06 190.848 148.336C190.848 148.613 190.625 148.836 190.348 148.836H187.348V151.836C187.348 152.113 187.125 152.336 186.848 152.336C186.572 152.336 186.348 152.113 186.348 151.836V148.836H183.348C183.072 148.836 182.848 148.613 182.848 148.336C182.848 148.06 183.072 147.836 183.348 147.836H186.348V144.836C186.348 144.56 186.572 144.336 186.848 144.336Z" fill="#485264"/>
<g clip-path="url(#clip1_9494_29052)">
<rect x="34" y="161" width="159" height="75" rx="3.40117" fill="white"/>
<path d="M34 164.401C34 162.523 35.5228 161 37.4012 161H190.599C192.477 161 194 162.523 194 164.401V171H34V164.401Z" fill="#F4F4F7"/>
<g clip-path="url(#clip2_9494_29052)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M46.56 178.579H50.6972C51.0319 178.579 51.2397 178.58 51.3957 178.593C51.5422 178.605 51.5794 178.624 51.5847 178.627L51.5848 178.627C51.6624 178.667 51.7257 178.731 51.7661 178.808L51.7661 178.808C51.7689 178.814 51.7883 178.851 51.8004 178.997C51.8134 179.153 51.8139 179.361 51.8139 179.696V182.508C51.8139 182.842 51.8134 183.05 51.8004 183.206C51.7883 183.353 51.7689 183.39 51.7661 183.395L51.7661 183.395C51.7257 183.473 51.6624 183.536 51.5848 183.577L51.5847 183.577C51.5794 183.579 51.5422 183.599 51.3957 183.611C51.2397 183.624 51.0319 183.624 50.6972 183.624H46.56C46.2253 183.624 46.0176 183.624 45.8616 183.611C45.7151 183.599 45.6779 183.579 45.6726 183.577L45.6725 183.577C45.5948 183.536 45.5315 183.473 45.4912 183.395L45.4911 183.395C45.4884 183.39 45.469 183.353 45.4568 183.206C45.4439 183.05 45.4433 182.842 45.4433 182.508V179.696C45.4433 179.361 45.4439 179.153 45.4568 178.997C45.469 178.851 45.4884 178.814 45.4911 178.808L45.4912 178.808C45.5315 178.731 45.5948 178.667 45.6725 178.627L45.6726 178.627C45.6779 178.624 45.7151 178.605 45.8616 178.593C46.0176 178.58 46.2253 178.579 46.56 178.579ZM44.7347 179.696C44.7347 179.05 44.7347 178.727 44.8624 178.482C44.9699 178.275 45.1388 178.106 45.3458 177.998C45.5916 177.87 45.9144 177.87 46.56 177.87H50.6972C51.3429 177.87 51.6657 177.87 51.9114 177.998C52.1185 178.106 52.2873 178.275 52.3949 178.482C52.5225 178.727 52.5225 179.05 52.5225 179.696V182.508C52.5225 183.153 52.5225 183.476 52.3949 183.722C52.2873 183.929 52.1185 184.098 51.9114 184.205C51.6657 184.333 51.3429 184.333 50.6972 184.333H46.56C45.9144 184.333 45.5916 184.333 45.3458 184.205C45.1388 184.098 44.9699 183.929 44.8624 183.722C44.7347 183.476 44.7347 183.153 44.7347 182.508V179.696ZM46.5142 179.365C46.3186 179.365 46.1599 179.523 46.1599 179.719C46.1599 179.914 46.3186 180.073 46.5142 180.073H46.7268V182.142H46.5142C46.3186 182.142 46.1599 182.3 46.1599 182.496C46.1599 182.692 46.3186 182.85 46.5142 182.85H47.5771C47.7728 182.85 47.9314 182.692 47.9314 182.496C47.9314 182.3 47.7728 182.142 47.5771 182.142H47.3645L47.3645 180.073H47.5771C47.7728 180.073 47.9314 179.914 47.9314 179.719C47.9314 179.523 47.7728 179.365 47.5771 179.365L46.5142 179.365ZM49.185 182.496C49.185 182.692 49.0264 182.85 48.8307 182.85C48.6351 182.85 48.4764 182.692 48.4764 182.496C48.4764 182.3 48.6351 182.142 48.8307 182.142C49.0264 182.142 49.185 182.3 49.185 182.496ZM50.0851 182.85C50.2807 182.85 50.4393 182.692 50.4393 182.496C50.4393 182.3 50.2807 182.142 50.0851 182.142C49.8894 182.142 49.7308 182.3 49.7308 182.496C49.7308 182.692 49.8894 182.85 50.0851 182.85Z" fill="#667085"/>
</g>
<path d="M106.15 183.286L106.653 183.32C106.64 184 106.565 184.653 106.436 185.265L105.912 185.116C106.048 184.537 106.129 183.925 106.15 183.286ZM108 183.122C108.116 183.401 108.225 183.707 108.32 184.048C108.497 183.531 108.606 182.98 108.633 182.401L109.225 182.483C109.211 182.728 109.191 182.966 109.163 183.197H109.966V181.98H110.619V183.197H112.048V183.816H110.619V185.326H111.973V185.959H110.619V187.415H112.224V188.041H108.075V187.415H109.966V185.959H108.442V185.326H109.966V183.816H109.041C108.918 184.286 108.748 184.721 108.517 185.129L108.041 184.707C108.095 184.599 108.143 184.497 108.184 184.401L107.891 184.476C107.796 184.054 107.68 183.653 107.531 183.272L108 183.122ZM106.864 181.973H107.51V188.204H106.864V181.973ZM114.312 184.469H113.257V182.184H116.243V184.469H114.937C114.924 184.714 114.903 184.946 114.883 185.163H116.325C116.325 186.374 116.291 187.122 116.223 187.408C116.155 187.898 115.815 188.143 115.203 188.143C115.107 188.143 114.944 188.129 114.726 188.115L114.577 187.544C114.781 187.564 114.951 187.578 115.101 187.578C115.4 187.578 115.57 187.428 115.624 187.129C115.658 186.993 115.679 186.537 115.692 185.769H114.801C114.733 186.15 114.652 186.462 114.543 186.707C114.291 187.292 113.876 187.796 113.291 188.217L112.876 187.707C113.386 187.354 113.747 186.932 113.958 186.442C114.039 186.258 114.107 186.034 114.162 185.769H113.026V185.163H114.25C114.278 184.946 114.298 184.714 114.312 184.469ZM116.896 182.551H117.529V186.748H116.896V182.551ZM118.236 188.17H117.257L117.114 187.551C117.427 187.578 117.726 187.592 118.012 187.592C118.202 187.592 118.304 187.476 118.304 187.251V181.973H118.944V187.415C118.944 187.918 118.706 188.17 118.236 188.17ZM115.624 183.884V182.762H113.876V183.884H115.624Z" fill="#485264"/>
<g clip-path="url(#clip5_4828_12312)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M93.739 202.35C93.739 202.154 93.9076 201.995 94.1156 201.995H100.591C100.799 201.995 100.968 202.154 100.968 202.35C100.968 202.545 100.799 202.704 100.591 202.704H94.1156C93.9076 202.704 93.739 202.545 93.739 202.35ZM93.739 204.422C93.739 204.227 93.9076 204.068 94.1156 204.068H100.591C100.799 204.068 100.968 204.227 100.968 204.422C100.968 204.618 100.799 204.777 100.591 204.777H94.1156C93.9076 204.777 93.739 204.618 93.739 204.422ZM93.739 206.539C93.739 206.344 93.9076 206.185 94.1156 206.185H98.264C98.472 206.185 98.6406 206.344 98.6406 206.539C98.6406 206.735 98.472 206.894 98.264 206.894H94.1156C93.9076 206.894 93.739 206.735 93.739 206.539Z" fill="#667085"/>
<path d="M58.0747 177.381L58.7073 177.436C58.6529 177.871 58.5917 178.286 58.5373 178.667H59.5644V179.027C59.5236 180.102 59.34 181.041 59.0134 181.837C59.2991 182.116 59.5372 182.367 59.7277 182.592L59.2991 183.095C59.1359 182.891 58.9386 182.68 58.7209 182.456C58.4488 182.946 58.1087 183.374 57.7074 183.741L57.2652 183.197C57.6666 182.857 57.9999 182.456 58.2584 181.986C57.9863 181.728 57.6938 181.449 57.3673 181.157C57.5237 180.585 57.6666 179.959 57.789 179.286H57.2993V178.667H57.8911C57.9591 178.252 58.0203 177.823 58.0747 177.381ZM58.5373 181.388C58.7754 180.776 58.9182 180.075 58.9658 179.286H58.4352C58.3128 179.953 58.1904 180.517 58.0611 180.966C58.238 181.116 58.3944 181.252 58.5373 181.388ZM60.4827 179.334C60.3739 179.891 60.2039 180.347 59.9726 180.701L59.5032 180.279C59.8297 179.776 60.0066 179.007 60.027 177.959H60.6052C60.5984 178.232 60.5848 178.483 60.5712 178.715H61.3194V177.449H61.9657V178.715H63.2785V179.334H61.9657V180.816H63.2309V181.449H61.9657V182.898H63.503V183.524H59.7617V182.898H61.3194V181.449H59.993V180.816H61.3194V179.334H60.4827ZM66.42 183.32V183.68H65.7738V181.347C65.3929 181.463 64.9847 181.571 64.5562 181.674L64.2161 181.048C65.3521 180.83 66.2976 180.551 67.0595 180.197C66.7738 179.966 66.3928 179.714 65.9303 179.449L66.4881 179.102C66.9642 179.395 67.3383 179.66 67.6172 179.898C68.2363 179.524 68.692 179.089 68.9913 178.599H66.6377C66.1751 179.021 65.5969 179.402 64.8895 179.742L64.4542 179.184C65.6038 178.694 66.3792 178.102 66.7874 177.402L67.4948 177.483C67.3996 177.66 67.2975 177.83 67.1819 177.993H69.7328V178.565C69.2906 179.429 68.4947 180.15 67.3451 180.721H69.9504V183.68H69.2974V183.32H66.42ZM69.2974 182.694V181.32H66.42V182.694H69.2974Z" fill="#485264"/>
<rect x="85.6201" y="179.188" width="96.9996" height="4.46403" rx="2.23202" fill="#E8EBF0"/>
<line x1="34" y1="191.7" x2="193" y2="191.7" stroke="#E8EBF0" stroke-width="0.6"/>
<g clip-path="url(#clip3_9494_29052)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M49.7929 200.496C49.231 200.246 48.6033 200.184 48.0033 200.319C47.4033 200.455 46.8632 200.781 46.4635 201.248C46.0639 201.716 45.8261 202.3 45.7856 202.914C45.7451 203.528 45.9041 204.138 46.2389 204.654C46.5737 205.17 47.0664 205.564 47.6434 205.777C48.2204 205.991 48.8508 206.012 49.4407 205.837C50.0306 205.663 50.5483 205.302 50.9166 204.81C51.2849 204.317 51.4841 203.719 51.4844 203.103V202.809C51.4844 202.613 51.643 202.454 51.8387 202.454C52.0344 202.454 52.193 202.613 52.193 202.809V203.104C52.1925 203.872 51.9439 204.619 51.4841 205.234C51.0243 205.849 50.378 206.299 49.6416 206.517C48.9052 206.734 48.1181 206.708 47.3978 206.442C46.6775 206.176 46.0625 205.684 45.6445 205.04C45.2265 204.396 45.028 203.634 45.0785 202.867C45.1291 202.101 45.4259 201.372 45.9249 200.788C46.4238 200.204 47.0981 199.797 47.8471 199.628C48.5961 199.459 49.3798 199.536 50.0813 199.849C50.26 199.929 50.3403 200.138 50.2607 200.317C50.181 200.496 49.9716 200.576 49.7929 200.496ZM52.0891 200.286C52.2275 200.424 52.2276 200.648 52.0893 200.787L48.8825 203.997C48.8161 204.063 48.726 204.101 48.632 204.101C48.538 204.101 48.4478 204.063 48.3814 203.997L47.4193 203.035C47.281 202.896 47.281 202.672 47.4193 202.534C47.5577 202.395 47.782 202.395 47.9204 202.534L48.6318 203.245L51.5881 200.286C51.7263 200.147 51.9507 200.147 52.0891 200.286Z" fill="#667085"/>
</g>
<path d="M112 202.384V203.574H111.442V204.118H108.408C108.361 204.268 108.313 204.411 108.259 204.554H111.218V205.037C110.925 205.424 110.571 205.764 110.156 206.05C110.714 206.254 111.326 206.39 111.986 206.458L111.701 207.043C110.912 206.934 110.197 206.73 109.558 206.417C108.966 206.73 108.333 206.948 107.667 207.071L107.374 206.492C107.959 206.411 108.483 206.268 108.932 206.077C108.565 205.846 108.225 205.588 107.912 205.295C107.524 206.009 107.021 206.574 106.402 206.982L106.095 206.424C106.864 205.88 107.415 205.111 107.748 204.118H106.782V203.574H106.218V202.384H107.225C107.163 202.193 107.095 202.01 107.027 201.846L107.66 201.751C107.728 201.942 107.796 202.152 107.864 202.384H108.823C108.755 202.173 108.687 201.976 108.606 201.792L109.231 201.697C109.313 201.901 109.388 202.132 109.456 202.384H110.238C110.395 202.112 110.531 201.826 110.646 201.533C109.503 201.635 108.136 201.69 106.544 201.69L106.34 201.091C108.388 201.091 110.116 201.003 111.517 200.826L111.837 201.391C111.469 201.445 111.075 201.493 110.66 201.533L111.265 201.751C111.163 201.982 111.048 202.193 110.925 202.384H112ZM106.871 203.52H107.918C107.946 203.37 107.98 203.227 108.007 203.078L108.646 203.159C108.619 203.282 108.599 203.404 108.572 203.52H111.347V202.969H106.871V203.52ZM108.442 205.105C108.769 205.363 109.123 205.588 109.503 205.778C109.857 205.567 110.163 205.343 110.422 205.105H108.442ZM114.019 200.704L114.652 200.758C114.577 201.207 114.502 201.622 114.427 202.01H115.563V202.363C115.516 203.424 115.305 204.35 114.937 205.139C115.318 205.431 115.624 205.696 115.856 205.928L115.414 206.438C115.196 206.213 114.931 205.969 114.631 205.71C114.298 206.241 113.883 206.703 113.386 207.084L112.944 206.54C113.427 206.193 113.822 205.778 114.128 205.295C113.815 205.043 113.475 204.785 113.108 204.513C113.312 203.928 113.488 203.302 113.652 202.629H112.999V202.01H113.788C113.869 201.588 113.951 201.152 114.019 200.704ZM114.42 204.751C114.706 204.125 114.876 203.418 114.931 202.629H114.298C114.141 203.295 113.978 203.86 113.815 204.316C114.033 204.465 114.237 204.615 114.42 204.751ZM115.726 203.567H117.203V202.785C117.543 202.479 117.876 202.112 118.189 201.69H115.917V201.064H118.93V201.69C118.611 202.146 118.25 202.574 117.849 202.982V203.567H119.175V204.193H117.849V206.213C117.849 206.717 117.651 206.968 117.271 206.968H116.264L116.094 206.356C116.373 206.356 116.679 206.363 117.005 206.363C117.134 206.363 117.203 206.247 117.203 206.016V204.193H115.726V203.567Z" fill="#485264"/>
<rect x="131.382" y="164.907" width="55.8071" height="4.46403" rx="2.23202" fill="#DFE2EA"/>
<rect x="131.382" y="183.298" width="55.8071" height="4.46403" rx="2.23202" fill="#DFE2EA"/>
<rect x="131.382" y="202.531" width="55.8071" height="4.46403" rx="2.23202" fill="#DFE2EA"/>
<path d="M57.4285 200.755L57.9319 200.789C57.9183 201.47 57.8434 202.123 57.7142 202.735L57.1904 202.585C57.3265 202.007 57.4081 201.395 57.4285 200.755ZM59.2787 200.592C59.3944 200.871 59.5032 201.177 59.5984 201.517C59.7753 201 59.8841 200.449 59.9114 199.871L60.5032 199.953C60.4896 200.198 60.4691 200.436 60.4419 200.667H61.2446V199.449H61.8976V200.667H63.3261V201.286H61.8976V202.796H63.2513V203.429H61.8976V204.884H63.503V205.51H59.3536V204.884H61.2446V203.429H59.7209V202.796H61.2446V201.286H60.3195C60.1971 201.755 60.027 202.191 59.7957 202.599L59.3195 202.177C59.374 202.068 59.4216 201.966 59.4624 201.871L59.1699 201.946C59.0747 201.524 58.959 201.123 58.8094 200.742L59.2787 200.592ZM58.1427 199.442H58.789V205.673H58.1427V199.442ZM65.5901 201.939H64.5358V199.653H67.522V201.939H66.216C66.2024 202.184 66.1819 202.415 66.1615 202.633H67.6036C67.6036 203.844 67.5696 204.592 67.5016 204.878C67.4336 205.367 67.0935 205.612 66.4813 205.612C66.386 205.612 66.2228 205.599 66.0051 205.585L65.8554 205.014C66.0595 205.034 66.2296 205.048 66.3792 205.048C66.6785 205.048 66.8486 204.898 66.903 204.599C66.937 204.463 66.9574 204.007 66.971 203.238H66.0799C66.0119 203.619 65.9303 203.932 65.8214 204.177C65.5697 204.762 65.1548 205.265 64.5698 205.687L64.1549 205.177C64.665 204.823 65.0256 204.401 65.2364 203.912C65.3181 203.728 65.3861 203.503 65.4405 203.238H64.3045V202.633H65.5289C65.5561 202.415 65.5765 202.184 65.5901 201.939ZM68.175 200.021H68.8077V204.218H68.175V200.021ZM69.5151 205.639H68.5356L68.3927 205.02C68.7056 205.048 69.0049 205.061 69.2906 205.061C69.4811 205.061 69.5831 204.946 69.5831 204.721V199.442H70.2225V204.884C70.2225 205.388 69.9845 205.639 69.5151 205.639ZM66.903 201.354V200.232H65.1548V201.354H66.903Z" fill="#485264"/>
<rect x="85.6201" y="200.768" width="96.9996" height="4.46403" rx="2.23202" fill="#E8EBF0"/>
<line x1="34" y1="213.7" x2="193" y2="213.7" stroke="#E8EBF0" stroke-width="0.6"/>
<g clip-path="url(#clip4_9494_29052)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M45.0176 223.007C45.0176 222.811 45.1862 222.653 45.3942 222.653H51.8696C52.0776 222.653 52.2462 222.811 52.2462 223.007C52.2462 223.203 52.0776 223.361 51.8696 223.361H45.3942C45.1862 223.361 45.0176 223.203 45.0176 223.007ZM45.0176 225.08C45.0176 224.884 45.1862 224.725 45.3942 224.725H51.8696C52.0776 224.725 52.2462 224.884 52.2462 225.08C52.2462 225.275 52.0776 225.434 51.8696 225.434H45.3942C45.1862 225.434 45.0176 225.275 45.0176 225.08ZM45.0176 227.197C45.0176 227.001 45.1862 226.842 45.3942 226.842H49.5426C49.7506 226.842 49.9192 227.001 49.9192 227.197C49.9192 227.392 49.7506 227.551 49.5426 227.551H45.3942C45.1862 227.551 45.0176 227.392 45.0176 227.197Z" fill="#667085"/>
</g>
<rect x="88.2551" y="148.486" width="112.49" height="64.4898" rx="3.14608" stroke="#DFE2EA" stroke-width="0.510175"/>
<line x1="88.2007" y1="175.355" x2="201" y2="175.355" stroke="#E8EBF0" stroke-width="0.6"/>
<line x1="88.2007" y1="195.271" x2="201" y2="195.271" stroke="#E8EBF0" stroke-width="0.6"/>
<rect x="79" y="32.981" width="31.0005" height="5.25" rx="2.625" fill="#DFE2EA"/>
<rect x="79" y="32.981" width="31.0005" height="5.25" rx="2.625" fill="#E8EBF0"/>
<rect x="79" y="91.106" width="31.0005" height="5.25" rx="2.625" fill="#E8EBF0"/>
<rect x="192.021" y="91.106" width="20.9795" height="5.25" rx="2.625" fill="#E8EBF0"/>
<path d="M63.2785 223.041V224.231H62.7207V224.776H59.6869C59.6393 224.925 59.5916 225.068 59.5372 225.211H62.4962V225.694C62.2037 226.082 61.85 226.422 61.4351 226.708C61.9929 226.912 62.6051 227.048 63.2649 227.116L62.9792 227.701C62.1901 227.592 61.4759 227.388 60.8365 227.075C60.2447 227.388 59.612 227.605 58.9454 227.728L58.6529 227.15C59.2379 227.068 59.7617 226.925 60.2107 226.735C59.8433 226.503 59.5032 226.245 59.1903 225.952C58.8026 226.667 58.2992 227.231 57.6802 227.639L57.3741 227.082C58.1427 226.537 58.6937 225.769 59.027 224.776H58.0611V224.231H57.4965V223.041H58.5033C58.442 222.851 58.374 222.667 58.306 222.504L58.9386 222.408C59.0066 222.599 59.0747 222.81 59.1427 223.041H60.1018C60.0338 222.83 59.9658 222.633 59.8841 222.449L60.51 222.354C60.5916 222.558 60.6664 222.789 60.7344 223.041H61.5167C61.6732 222.769 61.8092 222.483 61.9248 222.191C60.7821 222.293 59.4148 222.347 57.823 222.347L57.619 221.749C59.6665 221.749 61.3943 221.66 62.7955 221.483L63.1153 222.048C62.7479 222.102 62.3534 222.15 61.9384 222.191L62.5439 222.408C62.4418 222.64 62.3262 222.851 62.2037 223.041H63.2785ZM58.1495 224.177H59.1971C59.2243 224.027 59.2583 223.885 59.2855 223.735L59.925 223.817C59.8977 223.939 59.8773 224.061 59.8501 224.177H62.6255V223.626H58.1495V224.177ZM59.7209 225.762C60.0474 226.02 60.4011 226.245 60.7821 226.435C61.1358 226.225 61.4419 226 61.7004 225.762H59.7209ZM65.2976 221.361L65.9303 221.415C65.8554 221.864 65.7806 222.279 65.7058 222.667H66.8418V223.021C66.7942 224.082 66.5833 225.007 66.216 225.796C66.5969 226.088 66.903 226.354 67.1343 226.585L66.6921 227.095C66.4745 226.871 66.2092 226.626 65.9099 226.367C65.5765 226.898 65.1616 227.361 64.665 227.741L64.2229 227.197C64.7058 226.85 65.1004 226.435 65.4065 225.952C65.0936 225.701 64.7535 225.442 64.3861 225.17C64.5902 224.585 64.7671 223.959 64.9303 223.286H64.2773V222.667H65.0664C65.148 222.245 65.2296 221.81 65.2976 221.361ZM65.699 225.408C65.9847 224.782 66.1547 224.075 66.2092 223.286H65.5765C65.4201 223.953 65.2568 224.517 65.0936 224.973C65.3113 225.123 65.5153 225.272 65.699 225.408ZM67.005 224.225H68.4811V223.442C68.8213 223.136 69.1546 222.769 69.4675 222.347H67.1955V221.721H70.2089V222.347C69.8892 222.803 69.5287 223.232 69.1274 223.64V224.225H70.4538V224.85H69.1274V226.871C69.1274 227.374 68.9301 227.626 68.5492 227.626H67.5424L67.3724 227.014C67.6513 227.014 67.9574 227.02 68.2839 227.02C68.4131 227.02 68.4811 226.905 68.4811 226.673V224.85H67.005V224.225Z" fill="#485264"/>
<rect x="85.6201" y="223.188" width="96.9996" height="4.46403" rx="2.23202" fill="#E8EBF0"/>
</g>
<path d="M69 26.231H417H69ZM417 266.231H69H417ZM68.4 266.231V26.231H69.6V266.231H68.4ZM417 26.231V266.231V26.231Z" fill="#E8EBF0" mask="url(#path-4-inside-1_4828_12312)"/>
<mask id="path-32-inside-2_4828_12312" fill="white">
<path d="M223 26.231H410C413.866 26.231 417 29.365 417 33.231V259.231C417 263.097 413.866 266.231 410 266.231H223V26.231Z"/>
</mask>
<path d="M223 26.231H410C413.866 26.231 417 29.365 417 33.231V259.231C417 263.097 413.866 266.231 410 266.231H223V26.231Z" fill="white"/>
<path d="M223 26.231H417H223ZM417 266.231H223H417ZM222.2 266.231V26.231H223.8V266.231H222.2ZM417 26.231V266.231V26.231Z" fill="#E8EBF0" mask="url(#path-32-inside-2_4828_12312)"/>
<rect x="233.374" y="38.6046" width="22.1989" height="22.1989" rx="4.62634" fill="#FBFBFC"/>
<rect x="233.374" y="38.6046" width="22.1989" height="22.1989" rx="4.62634" stroke="#E8EBF0" stroke-width="0.747312"/>
<path d="M245.965 46.7565C245.965 46.1554 245.78 45.5678 245.433 45.0681C245.086 44.5683 244.592 44.1788 244.015 43.9487C243.438 43.7187 242.802 43.6585 242.189 43.7758C241.577 43.8931 241.014 44.1825 240.572 44.6075C240.13 45.0326 239.829 45.5741 239.707 46.1636C239.585 46.7531 239.648 47.3641 239.887 47.9195C240.126 48.4748 240.531 48.9494 241.051 49.2833C241.57 49.6173 242.181 49.7955 242.806 49.7955V46.7565H245.965Z" fill="url(#paint0_linear_4828_12312)"/>
<path d="M249.3 46.7565C249.3 46.3574 249.227 45.9622 249.085 45.5935C248.942 45.2248 248.733 44.8897 248.47 44.6075C248.207 44.3253 247.895 44.1015 247.551 43.9487C247.208 43.796 246.839 43.7174 246.467 43.7174C246.095 43.7174 245.727 43.796 245.383 43.9487C245.039 44.1015 244.727 44.3253 244.464 44.6075C244.201 44.8897 243.992 45.2248 243.85 45.5935C243.707 45.9622 243.634 46.3574 243.634 46.7565L249.3 46.7565Z" fill="url(#paint1_linear_4828_12312)"/>
<path d="M248.78 51.6281C248.78 51.289 248.722 50.9533 248.609 50.6401C248.496 50.3269 248.33 50.0422 248.121 49.8025C247.912 49.5628 247.664 49.3726 247.391 49.2429C247.118 49.1131 246.825 49.0463 246.529 49.0463V51.6281H248.78Z" fill="url(#paint2_linear_4828_12312)"/>
<path d="M242.806 50.6969C242.391 50.6969 241.98 50.7685 241.597 50.9075C241.213 51.0466 240.865 51.2504 240.572 51.5073C240.278 51.7642 240.046 52.0692 239.887 52.4049C239.728 52.7406 239.646 53.1004 239.646 53.4638C239.646 53.8271 239.728 54.1869 239.887 54.5226C240.046 54.8583 240.278 55.1633 240.572 55.4202C240.865 55.6771 241.213 55.8809 241.597 56.02C241.98 56.159 242.391 56.2306 242.806 56.2306L242.806 50.6969Z" fill="url(#paint3_linear_4828_12312)"/>
<path d="M242.806 46.6361L242.806 53.4334L239.646 53.4334L239.646 46.6361H242.806Z" fill="url(#paint4_linear_4828_12312)"/>
<path d="M246.563 46.756L242.77 46.756L242.77 43.7174L246.563 43.7174V46.756Z" fill="url(#paint5_linear_4828_12312)"/>
<path d="M246.563 51.6271H244.464V49.0463L246.563 49.0463V51.6271Z" fill="url(#paint6_linear_4828_12312)"/>
<g filter="url(#filter0_dd_4828_12312)">
<path d="M233 66.231H389.029C391.775 66.231 394 68.4564 394 71.2016V207.26C394 210.006 391.775 212.231 389.029 212.231H237.971C235.225 212.231 233 210.006 233 207.26V66.231Z" fill="white" shape-rendering="crispEdges"/>
<path d="M243.731 77.1682L244.475 77.2322C244.411 77.7442 244.339 78.2322 244.275 78.6802H245.483V79.1042C245.435 80.3682 245.219 81.4722 244.835 82.4082C245.171 82.7362 245.451 83.0322 245.675 83.2962L245.171 83.8882C244.979 83.6482 244.747 83.4002 244.491 83.1362C244.171 83.7122 243.771 84.2162 243.299 84.6482L242.779 84.0082C243.251 83.6082 243.643 83.1362 243.947 82.5842C243.627 82.2802 243.283 81.9522 242.899 81.6082C243.083 80.9362 243.251 80.2002 243.395 79.4082H242.819V78.6802H243.515C243.595 78.1922 243.667 77.6882 243.731 77.1682ZM244.275 81.8802C244.555 81.1602 244.723 80.3362 244.779 79.4082H244.155C244.011 80.1922 243.867 80.8562 243.715 81.3842C243.923 81.5602 244.107 81.7202 244.275 81.8802ZM246.563 79.4642C246.435 80.1202 246.235 80.6562 245.963 81.0722L245.411 80.5762C245.795 79.9842 246.003 79.0802 246.027 77.8482H246.707C246.699 78.1682 246.683 78.4642 246.667 78.7362H247.547V77.2482H248.307V78.7362H249.851V79.4642H248.307V81.2082H249.795V81.9522H248.307V83.6562H250.115V84.3922H245.715V83.6562H247.547V81.9522H245.987V81.2082H247.547V79.4642H246.563ZM253.546 84.1522V84.5762H252.786V81.8322C252.338 81.9682 251.858 82.0962 251.354 82.2162L250.954 81.4802C252.29 81.2242 253.402 80.8962 254.298 80.4802C253.962 80.2082 253.514 79.9122 252.97 79.6002L253.626 79.1922C254.186 79.5362 254.626 79.8482 254.954 80.1282C255.682 79.6882 256.218 79.1762 256.57 78.6002H253.802C253.258 79.0962 252.578 79.5442 251.746 79.9442L251.234 79.2882C252.586 78.7122 253.498 78.0162 253.978 77.1922L254.81 77.2882C254.698 77.4962 254.578 77.6962 254.442 77.8882H257.442V78.5602C256.922 79.5762 255.986 80.4242 254.634 81.0962H257.698V84.5762H256.93V84.1522H253.546ZM256.93 83.4162V81.8002H253.546V83.4162H256.93Z" fill="#485264"/>
<rect x="242.237" y="90.4684" width="140.525" height="15.5251" rx="2.61194" fill="#F4F4F7"/>
<rect x="242.237" y="90.4684" width="140.525" height="15.5251" rx="2.61194" stroke="#E8EBF0" stroke-width="0.474898"/>
<path d="M242.971 117.739L243.563 117.779C243.547 118.579 243.459 119.347 243.307 120.067L242.691 119.891C242.851 119.211 242.947 118.491 242.971 117.739ZM245.147 117.547C245.283 117.875 245.411 118.235 245.523 118.635C245.731 118.027 245.859 117.379 245.891 116.699L246.587 116.795C246.571 117.083 246.547 117.363 246.515 117.635H247.459V116.203H248.227V117.635H249.907V118.363H248.227V120.139H249.819V120.883H248.227V122.595H250.115V123.331H245.235V122.595H247.459V120.883H245.667V120.139H247.459V118.363H246.371C246.227 118.915 246.027 119.427 245.755 119.907L245.195 119.411C245.259 119.283 245.315 119.163 245.363 119.051L245.019 119.139C244.907 118.643 244.771 118.171 244.595 117.723L245.147 117.547ZM243.811 116.195H244.571V123.523H243.811V116.195ZM252.57 119.131H251.33V116.443H254.842V119.131H253.306C253.29 119.419 253.266 119.691 253.242 119.947H254.938C254.938 121.371 254.898 122.251 254.818 122.587C254.738 123.163 254.338 123.451 253.618 123.451C253.506 123.451 253.314 123.435 253.058 123.419L252.882 122.747C253.122 122.771 253.322 122.787 253.498 122.787C253.85 122.787 254.05 122.611 254.114 122.259C254.154 122.099 254.178 121.563 254.194 120.659H253.146C253.066 121.107 252.97 121.475 252.842 121.763C252.546 122.451 252.058 123.043 251.37 123.539L250.882 122.939C251.482 122.523 251.906 122.027 252.154 121.451C252.25 121.235 252.33 120.971 252.394 120.659H251.058V119.947H252.498C252.53 119.691 252.554 119.419 252.57 119.131ZM255.61 116.875H256.354V121.811H255.61V116.875ZM257.186 123.483H256.034L255.866 122.755C256.234 122.787 256.586 122.803 256.922 122.803C257.146 122.803 257.266 122.667 257.266 122.403V116.195H258.018V122.595C258.018 123.187 257.738 123.483 257.186 123.483ZM254.114 118.443V117.123H252.058V118.443H254.114Z" fill="#485264"/>
<rect x="242.237" y="129.423" width="141.995" height="14.7218" rx="2.61194" fill="#F4F4F7"/>
<rect x="242.237" y="129.423" width="141.995" height="14.7218" rx="2.61194" stroke="#E8EBF0" stroke-width="0.474898"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M373.801 135.522C373.934 135.39 374.15 135.39 374.283 135.522L376.084 137.324L377.886 135.522C378.018 135.39 378.234 135.39 378.367 135.522C378.5 135.655 378.5 135.871 378.367 136.004L376.325 138.046C376.192 138.179 375.976 138.179 375.843 138.046L373.801 136.004C373.668 135.871 373.668 135.655 373.801 135.522Z" fill="#667085"/>
<path d="M249.851 156.226V157.626H249.195V158.266H245.627C245.571 158.442 245.515 158.61 245.451 158.778H248.931V159.346C248.587 159.802 248.171 160.202 247.683 160.538C248.339 160.778 249.059 160.938 249.835 161.018L249.499 161.706C248.571 161.578 247.731 161.338 246.979 160.97C246.283 161.338 245.539 161.594 244.755 161.738L244.411 161.058C245.099 160.962 245.715 160.794 246.243 160.57C245.811 160.298 245.411 159.994 245.043 159.65C244.587 160.49 243.995 161.154 243.267 161.634L242.907 160.978C243.811 160.338 244.459 159.434 244.851 158.266H243.715V157.626H243.051V156.226H244.235C244.163 156.002 244.083 155.786 244.003 155.594L244.747 155.482C244.827 155.706 244.907 155.954 244.987 156.226H246.115C246.035 155.978 245.955 155.746 245.859 155.53L246.595 155.418C246.691 155.658 246.779 155.93 246.859 156.226H247.779C247.963 155.906 248.123 155.57 248.259 155.226C246.915 155.346 245.307 155.41 243.435 155.41L243.195 154.706C245.603 154.706 247.635 154.602 249.283 154.394L249.659 155.058C249.227 155.122 248.763 155.178 248.275 155.226L248.987 155.482C248.867 155.754 248.731 156.002 248.587 156.226H249.851ZM243.819 157.562H245.051C245.083 157.386 245.123 157.218 245.155 157.042L245.907 157.138C245.875 157.282 245.851 157.426 245.819 157.562H249.083V156.914H243.819V157.562ZM245.667 159.426C246.051 159.73 246.467 159.994 246.915 160.218C247.331 159.97 247.691 159.706 247.995 159.426H245.667ZM252.226 154.25L252.97 154.314C252.882 154.842 252.794 155.33 252.706 155.786H254.042V156.202C253.986 157.45 253.738 158.538 253.306 159.466C253.754 159.81 254.114 160.122 254.386 160.394L253.866 160.994C253.61 160.73 253.298 160.442 252.946 160.138C252.554 160.762 252.066 161.306 251.482 161.754L250.962 161.114C251.53 160.706 251.994 160.218 252.354 159.65C251.986 159.354 251.586 159.05 251.154 158.73C251.394 158.042 251.602 157.306 251.794 156.514H251.026V155.786H251.954C252.05 155.29 252.146 154.778 252.226 154.25ZM252.698 159.01C253.034 158.274 253.234 157.442 253.298 156.514H252.554C252.37 157.298 252.178 157.962 251.986 158.498C252.242 158.674 252.482 158.85 252.698 159.01ZM254.234 157.618H255.97V156.698C256.37 156.338 256.762 155.906 257.13 155.41H254.458V154.674H258.002V155.41C257.626 155.946 257.202 156.45 256.73 156.93V157.618H258.29V158.354H256.73V160.73C256.73 161.322 256.498 161.618 256.05 161.618H254.866L254.666 160.898C254.994 160.898 255.354 160.906 255.738 160.906C255.89 160.906 255.97 160.77 255.97 160.498V158.354H254.234V157.618Z" fill="#485264"/>
<rect x="242.15" y="167.487" width="142.169" height="31.5596" rx="1.65312" fill="#F4F4F7"/>
<rect x="242.15" y="167.487" width="142.169" height="31.5596" rx="1.65312" stroke="#E8EBF0" stroke-width="0.300568"/>
<path d="M378.291 198.118L383.043 193.366" stroke="#8A95A7" stroke-width="0.644535" stroke-linecap="round"/>
<path d="M380.476 198.126L383.043 195.559" stroke="#8A95A7" stroke-width="0.644535" stroke-linecap="round"/>
<rect x="34.2551" y="161.255" width="158.49" height="74.4898" rx="3.14608" stroke="#DFE2EA" stroke-width="0.510175"/>
<rect x="21" y="43" width="187" height="61" rx="7" fill="white"/>
<rect x="52" y="54" width="21" height="5" rx="2.5" fill="#F0F1F6"/>
<rect x="34" y="70" width="66" height="5" rx="2.5" fill="#F0F1F6"/>
<rect x="35" y="52" width="12.5684" height="12.7581" rx="2.85316" fill="#E8EBF0"/>
<path d="M212 50C212 46.134 215.134 43 219 43H407C410.866 43 414 46.134 414 50V259C414 262.866 410.866 266 407 266H219C215.134 266 212 262.866 212 259V50Z" fill="white"/>
<rect x="222.374" y="55.3737" width="22.1989" height="22.1989" rx="4.62634" fill="#FBFBFC"/>
<rect x="222.374" y="55.3737" width="22.1989" height="22.1989" rx="4.62634" stroke="#E8EBF0" stroke-width="0.747312"/>
<path d="M234.965 63.5255C234.965 62.9244 234.78 62.3369 234.433 61.8371C234.086 61.3373 233.592 60.9478 233.015 60.7178C232.438 60.4878 231.802 60.4276 231.189 60.5448C230.577 60.6621 230.014 60.9515 229.572 61.3766C229.13 61.8016 228.829 62.3431 228.707 62.9326C228.585 63.5221 228.648 64.1332 228.887 64.6885C229.126 65.2438 229.531 65.7184 230.05 66.0524C230.57 66.3863 231.181 66.5645 231.806 66.5645V63.5255H234.965Z" fill="url(#paint0_linear_9494_29052)"/>
<path d="M238.3 63.5255C238.3 63.1264 238.227 62.7312 238.084 62.3625C237.942 61.9938 237.733 61.6588 237.47 61.3766C237.207 61.0944 236.895 60.8705 236.551 60.7178C236.207 60.565 235.839 60.4864 235.467 60.4864C235.095 60.4864 234.727 60.565 234.383 60.7178C234.039 60.8705 233.727 61.0944 233.464 61.3766C233.201 61.6588 232.992 61.9938 232.85 62.3625C232.707 62.7312 232.634 63.1264 232.634 63.5255L238.3 63.5255Z" fill="url(#paint1_linear_9494_29052)"/>
<path d="M237.78 68.3971C237.78 68.0581 237.722 67.7223 237.609 67.4091C237.496 67.0959 237.33 66.8113 237.121 66.5715C236.912 66.3318 236.664 66.1416 236.391 66.0119C236.117 65.8821 235.825 65.8154 235.529 65.8154V68.3971H237.78Z" fill="url(#paint2_linear_9494_29052)"/>
<path d="M231.806 67.466C231.391 67.466 230.98 67.5375 230.597 67.6766C230.213 67.8156 229.865 68.0194 229.572 68.2763C229.278 68.5333 229.045 68.8383 228.887 69.174C228.728 69.5096 228.646 69.8694 228.646 70.2328C228.646 70.5961 228.728 70.9559 228.887 71.2916C229.045 71.6273 229.278 71.9323 229.572 72.1892C229.865 72.4461 230.213 72.6499 230.597 72.789C230.98 72.928 231.391 72.9996 231.806 72.9996L231.806 67.466Z" fill="url(#paint3_linear_9494_29052)"/>
<path d="M231.806 63.4051L231.806 70.2024L228.646 70.2024L228.646 63.4051H231.806Z" fill="url(#paint4_linear_9494_29052)"/>
<path d="M235.563 63.525L231.77 63.525L231.77 60.4864L235.563 60.4864V63.525Z" fill="url(#paint5_linear_9494_29052)"/>
<path d="M235.563 68.3961H233.464V65.8154L235.563 65.8154V68.3961Z" fill="url(#paint6_linear_9494_29052)"/>
<g filter="url(#filter0_dd_9494_29052)">
<path d="M222 83H378.029C380.775 83 383 85.2254 383 87.9706V215.029C383 217.775 380.775 220 378.029 220H226.971C224.225 220 222 217.775 222 215.029V83Z" fill="white" shape-rendering="crispEdges"/>
<path d="M232.731 91.9374L233.475 92.0014C233.411 92.5134 233.339 93.0014 233.275 93.4494H234.483V93.8734C234.435 95.1374 234.219 96.2414 233.835 97.1774C234.171 97.5054 234.451 97.8014 234.675 98.0654L234.171 98.6574C233.979 98.4174 233.747 98.1694 233.491 97.9054C233.171 98.4814 232.771 98.9854 232.299 99.4174L231.779 98.7774C232.251 98.3774 232.643 97.9054 232.947 97.3534C232.627 97.0494 232.283 96.7214 231.899 96.3774C232.083 95.7054 232.251 94.9694 232.395 94.1774H231.819V93.4494H232.515C232.595 92.9614 232.667 92.4574 232.731 91.9374ZM233.275 96.6494C233.555 95.9294 233.723 95.1054 233.779 94.1774H233.155C233.011 94.9614 232.867 95.6254 232.715 96.1534C232.923 96.3294 233.107 96.4894 233.275 96.6494ZM235.563 94.2334C235.435 94.8894 235.235 95.4254 234.963 95.8414L234.411 95.3454C234.795 94.7534 235.003 93.8494 235.027 92.6174H235.707C235.699 92.9374 235.683 93.2334 235.667 93.5054H236.547V92.0174H237.307V93.5054H238.851V94.2334H237.307V95.9774H238.795V96.7214H237.307V98.4254H239.115V99.1614H234.715V98.4254H236.547V96.7214H234.987V95.9774H236.547V94.2334H235.563ZM242.546 98.9214V99.3454H241.786V96.6014C241.338 96.7374 240.858 96.8654 240.354 96.9854L239.954 96.2494C241.29 95.9934 242.402 95.6654 243.298 95.2494C242.962 94.9774 242.514 94.6814 241.97 94.3694L242.626 93.9614C243.186 94.3054 243.626 94.6174 243.954 94.8974C244.682 94.4574 245.218 93.9454 245.57 93.3694H242.802C242.258 93.8654 241.578 94.3134 240.746 94.7134L240.234 94.0574C241.586 93.4814 242.498 92.7854 242.978 91.9614L243.81 92.0574C243.698 92.2654 243.578 92.4654 243.442 92.6574H246.442V93.3294C245.922 94.3454 244.986 95.1934 243.634 95.8654H246.698V99.3454H245.93V98.9214H242.546ZM245.93 98.1854V96.5694H242.546V98.1854H245.93Z" fill="#485264"/>
<rect x="231.237" y="105.237" width="140.525" height="15.5251" rx="2.61194" fill="#F4F4F7"/>
<rect x="231.237" y="105.237" width="140.525" height="15.5251" rx="2.61194" stroke="#E8EBF0" stroke-width="0.474898"/>
<path d="M231.971 132.508L232.563 132.548C232.547 133.348 232.459 134.116 232.307 134.836L231.691 134.66C231.851 133.98 231.947 133.26 231.971 132.508ZM234.147 132.316C234.283 132.644 234.411 133.004 234.523 133.404C234.731 132.796 234.859 132.148 234.891 131.468L235.587 131.564C235.571 131.852 235.547 132.132 235.515 132.404H236.459V130.972H237.227V132.404H238.907V133.132H237.227V134.908H238.819V135.652H237.227V137.364H239.115V138.1H234.235V137.364H236.459V135.652H234.667V134.908H236.459V133.132H235.371C235.227 133.684 235.027 134.196 234.755 134.676L234.195 134.18C234.259 134.052 234.315 133.932 234.363 133.82L234.019 133.908C233.907 133.412 233.771 132.94 233.595 132.492L234.147 132.316ZM232.811 130.964H233.571V138.292H232.811V130.964ZM241.57 133.9H240.33V131.212H243.842V133.9H242.306C242.29 134.188 242.266 134.46 242.242 134.716H243.938C243.938 136.14 243.898 137.02 243.818 137.356C243.738 137.932 243.338 138.22 242.618 138.22C242.506 138.22 242.314 138.204 242.058 138.188L241.882 137.516C242.122 137.54 242.322 137.556 242.498 137.556C242.85 137.556 243.05 137.38 243.114 137.028C243.154 136.868 243.178 136.332 243.194 135.428H242.146C242.066 135.876 241.97 136.244 241.842 136.532C241.546 137.22 241.058 137.812 240.37 138.308L239.882 137.708C240.482 137.292 240.906 136.796 241.154 136.22C241.25 136.004 241.33 135.74 241.394 135.428H240.058V134.716H241.498C241.53 134.46 241.554 134.188 241.57 133.9ZM244.61 131.644H245.354V136.58H244.61V131.644ZM246.186 138.252H245.034L244.866 137.524C245.234 137.556 245.586 137.572 245.922 137.572C246.146 137.572 246.266 137.436 246.266 137.172V130.964H247.018V137.364C247.018 137.956 246.738 138.252 246.186 138.252ZM243.114 133.212V131.892H241.058V133.212H243.114Z" fill="#485264"/>
<rect x="231.237" y="144.192" width="141.995" height="14.7218" rx="2.61194" fill="#F4F4F7"/>
<rect x="231.237" y="144.192" width="141.995" height="14.7218" rx="2.61194" stroke="#E8EBF0" stroke-width="0.474898"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M362.801 150.291C362.934 150.158 363.15 150.158 363.283 150.291L365.084 152.093L366.886 150.291C367.019 150.158 367.234 150.158 367.367 150.291C367.5 150.424 367.5 150.64 367.367 150.773L365.325 152.815C365.192 152.948 364.976 152.948 364.844 152.815L362.801 150.773C362.669 150.64 362.669 150.424 362.801 150.291Z" fill="#667085"/>
<path d="M238.851 170.995V172.395H238.195V173.035H234.627C234.571 173.211 234.515 173.379 234.451 173.547H237.931V174.115C237.587 174.571 237.171 174.971 236.683 175.307C237.339 175.547 238.059 175.707 238.835 175.787L238.499 176.475C237.571 176.347 236.731 176.107 235.979 175.739C235.283 176.107 234.539 176.363 233.755 176.507L233.411 175.827C234.099 175.731 234.715 175.563 235.243 175.339C234.811 175.067 234.411 174.763 234.043 174.419C233.587 175.259 232.995 175.923 232.267 176.403L231.907 175.747C232.811 175.107 233.459 174.203 233.851 173.035H232.715V172.395H232.051V170.995H233.235C233.163 170.771 233.083 170.555 233.003 170.363L233.747 170.251C233.827 170.475 233.907 170.723 233.987 170.995H235.115C235.035 170.747 234.955 170.515 234.859 170.299L235.595 170.187C235.691 170.427 235.779 170.699 235.859 170.995H236.779C236.963 170.675 237.123 170.339 237.259 169.995C235.915 170.115 234.307 170.179 232.435 170.179L232.195 169.475C234.603 169.475 236.635 169.371 238.283 169.163L238.659 169.827C238.227 169.891 237.763 169.947 237.275 169.995L237.987 170.251C237.867 170.523 237.731 170.771 237.587 170.995H238.851ZM232.819 172.331H234.051C234.083 172.155 234.123 171.987 234.155 171.811L234.907 171.907C234.875 172.051 234.851 172.195 234.819 172.331H238.083V171.683H232.819V172.331ZM234.667 174.195C235.051 174.499 235.467 174.763 235.915 174.987C236.331 174.739 236.691 174.475 236.995 174.195H234.667ZM241.226 169.019L241.97 169.083C241.882 169.611 241.794 170.099 241.706 170.555H243.042V170.971C242.986 172.219 242.738 173.307 242.306 174.235C242.754 174.579 243.114 174.891 243.386 175.163L242.866 175.763C242.61 175.499 242.298 175.211 241.946 174.907C241.554 175.531 241.066 176.075 240.482 176.523L239.962 175.883C240.53 175.475 240.994 174.987 241.354 174.419C240.986 174.123 240.586 173.819 240.154 173.499C240.394 172.811 240.602 172.075 240.794 171.283H240.026V170.555H240.954C241.05 170.059 241.146 169.547 241.226 169.019ZM241.698 173.779C242.034 173.043 242.234 172.211 242.298 171.283H241.554C241.37 172.067 241.178 172.731 240.986 173.267C241.242 173.443 241.482 173.619 241.698 173.779ZM243.234 172.387H244.97V171.467C245.37 171.107 245.762 170.675 246.13 170.179H243.458V169.443H247.002V170.179C246.626 170.715 246.202 171.219 245.73 171.699V172.387H247.29V173.123H245.73V175.499C245.73 176.091 245.498 176.387 245.05 176.387H243.866L243.666 175.667C243.994 175.667 244.354 175.675 244.738 175.675C244.89 175.675 244.97 175.539 244.97 175.267V173.123H243.234V172.387Z" fill="#485264"/>
<rect x="231.15" y="182.15" width="141.699" height="29.6994" rx="1.65312" fill="#F4F4F7"/>
<rect x="231.15" y="182.15" width="141.699" height="29.6994" rx="1.65312" stroke="#E8EBF0" stroke-width="0.300568"/>
<path d="M366.291 209.781L371.043 205.028" stroke="#8A95A7" stroke-width="0.644535" stroke-linecap="round"/>
<path d="M368.476 209.789L371.043 207.222" stroke="#8A95A7" stroke-width="0.644535" stroke-linecap="round"/>
</g>
<g filter="url(#filter1_dd_4828_12312)">
<rect x="235" y="234.231" width="171" height="23" rx="4" fill="white"/>
<rect x="235.283" y="234.514" width="170.435" height="22.4345" rx="3.71727" stroke="#DFE2EA" stroke-width="0.565456"/>
<rect x="243.088" y="243.403" width="47.5002" height="4.25025" rx="2.12513" fill="#E8EBF0"/>
<rect x="385.344" y="239.352" width="12.5684" height="12.7581" rx="2.85316" fill="#E8EBF0"/>
<g filter="url(#filter1_dd_9494_29052)">
<rect x="224" y="233" width="178" height="23" rx="4" fill="white"/>
<rect x="224.283" y="233.283" width="177.435" height="22.4345" rx="3.71727" stroke="#DFE2EA" stroke-width="0.565456"/>
<rect x="232.088" y="242.173" width="47.5002" height="4.25025" rx="2.12513" fill="#E8EBF0"/>
<rect x="381.344" y="238.121" width="12.5684" height="12.7581" rx="2.85316" fill="#E8EBF0"/>
</g>
<mask id="path-51-inside-3_4828_12312" fill="white">
<path d="M0.290039 11.5856C0.290039 5.78658 4.99105 1.08557 10.79 1.08557H412.133C417.932 1.08557 422.633 5.78658 422.633 11.5856V20.9957H0.290039V11.5856Z"/>
<mask id="path-45-inside-1_9494_29052" fill="white">
<path d="M0.290039 11.3545C0.290039 5.55551 4.99105 0.854507 10.79 0.854507H412.133C417.932 0.854507 422.633 5.55552 422.633 11.3545V20.7646H0.290039V11.3545Z"/>
</mask>
<path d="M0.290039 11.5856C0.290039 5.78658 4.99105 1.08557 10.79 1.08557H412.133C417.932 1.08557 422.633 5.78658 422.633 11.5856V20.9957H0.290039V11.5856Z" fill="#F0F1F6"/>
<path d="M0.290039 1.08557H422.633H0.290039ZM422.633 21.6519H0.290039V20.3394H422.633V21.6519ZM0.290039 20.9957V1.08557V20.9957ZM422.633 1.08557V20.9957V1.08557Z" fill="#DFE2EA" mask="url(#path-51-inside-3_4828_12312)"/>
<circle cx="17.4036" cy="11.8823" r="3.64527" fill="#C4CBD7"/>
<circle cx="31.9846" cy="11.8823" r="3.64527" fill="#C4CBD7"/>
<circle cx="46.5657" cy="11.8823" r="3.64527" fill="#C4CBD7"/>
<path d="M254.61 173.089C245.399 187.469 235.265 194.407 218.527 197.791C204.281 200.671 194.577 199.314 181.669 192.634" stroke="#3370FF" stroke-width="2.40329" stroke-dasharray="3.2 3.2"/>
<path d="M256.251 173.871C256.415 172.649 255.194 171.707 254.054 172.177L244.858 175.961C243.484 176.526 243.553 178.495 244.963 178.963L249.159 180.355C249.514 180.473 249.817 180.712 250.015 181.029L252.001 184.221C252.795 185.496 254.75 185.076 254.949 183.587L256.251 173.871Z" fill="#3370FF"/>
<path d="M0.290039 11.3545C0.290039 5.55551 4.99105 0.854507 10.79 0.854507H412.133C417.932 0.854507 422.633 5.55552 422.633 11.3545V20.7646H0.290039V11.3545Z" fill="#F0F1F6"/>
<path d="M0.290039 0.854507H422.633H0.290039ZM422.633 21.4208H0.290039V20.1083H422.633V21.4208ZM0.290039 20.7646V0.854507V20.7646ZM422.633 0.854507V20.7646V0.854507Z" fill="#DFE2EA" mask="url(#path-45-inside-1_9494_29052)"/>
<circle cx="17.4035" cy="11.6513" r="3.64527" fill="#C4CBD7"/>
<circle cx="31.9845" cy="11.6514" r="3.64527" fill="#C4CBD7"/>
<circle cx="46.5655" cy="11.6514" r="3.64527" fill="#C4CBD7"/>
<path d="M245.585 191.025C236.375 205.405 226.241 212.343 209.503 215.727C195.257 218.607 185.553 217.249 172.644 210.569" stroke="#3370FF" stroke-width="2.40329" stroke-dasharray="3.2 3.2"/>
<path d="M247.227 191.807C247.39 190.584 246.17 189.643 245.029 190.112L235.833 193.896C234.459 194.462 234.528 196.431 235.938 196.899L240.134 198.291C240.49 198.409 240.792 198.647 240.99 198.965L242.976 202.156C243.77 203.432 245.725 203.011 245.925 201.522L247.227 191.807Z" fill="#3370FF"/>
</g>
<rect x="0.5" y="0.730957" width="421" height="270.5" rx="8.375" stroke="#E8EBF0"/>
<rect x="0.5" y="0.5" width="421" height="270" rx="8.375" stroke="#E8EBF0"/>
<defs>
<filter id="filter0_dd_4828_12312" x="223" y="60.231" width="181" height="166" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<filter id="filter0_dd_9494_29052" x="212" y="77" width="181" height="157" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="0.5"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.0745098 0 0 0 0 0.2 0 0 0 0 0.419608 0 0 0 0.1 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4828_12312"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_9494_29052"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="4"/>
<feGaussianBlur stdDeviation="5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.0745098 0 0 0 0 0.2 0 0 0 0 0.419608 0 0 0 0.1 0"/>
<feBlend mode="normal" in2="effect1_dropShadow_4828_12312" result="effect2_dropShadow_4828_12312"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_4828_12312" result="shape"/>
<feBlend mode="normal" in2="effect1_dropShadow_9494_29052" result="effect2_dropShadow_9494_29052"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_9494_29052" result="shape"/>
</filter>
<filter id="filter1_dd_4828_12312" x="229.236" y="230.773" width="182.527" height="34.5273" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<filter id="filter1_dd_9494_29052" x="218.236" y="229.542" width="189.527" height="34.5273" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="0.288183"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.0745098 0 0 0 0 0.2 0 0 0 0 0.419608 0 0 0 0.08 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4828_12312"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_9494_29052"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="2.30546"/>
<feGaussianBlur stdDeviation="2.88183"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.0745098 0 0 0 0 0.2 0 0 0 0 0.419608 0 0 0 0.08 0"/>
<feBlend mode="normal" in2="effect1_dropShadow_4828_12312" result="effect2_dropShadow_4828_12312"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_4828_12312" result="shape"/>
<feBlend mode="normal" in2="effect1_dropShadow_9494_29052" result="effect2_dropShadow_9494_29052"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_9494_29052" result="shape"/>
</filter>
<linearGradient id="paint0_linear_4828_12312" x1="244.473" y1="43.7174" x2="244.473" y2="56.2306" gradientUnits="userSpaceOnUse">
<linearGradient id="paint0_linear_9494_29052" x1="233.473" y1="60.4864" x2="233.473" y2="72.9996" gradientUnits="userSpaceOnUse">
<stop stop-color="#326DFF"/>
<stop offset="1" stop-color="#8EAEFF"/>
</linearGradient>
<linearGradient id="paint1_linear_4828_12312" x1="244.473" y1="43.7174" x2="244.473" y2="56.2306" gradientUnits="userSpaceOnUse">
<linearGradient id="paint1_linear_9494_29052" x1="233.473" y1="60.4864" x2="233.473" y2="72.9996" gradientUnits="userSpaceOnUse">
<stop stop-color="#326DFF"/>
<stop offset="1" stop-color="#8EAEFF"/>
</linearGradient>
<linearGradient id="paint2_linear_4828_12312" x1="244.473" y1="43.7174" x2="244.473" y2="56.2306" gradientUnits="userSpaceOnUse">
<linearGradient id="paint2_linear_9494_29052" x1="233.473" y1="60.4864" x2="233.473" y2="72.9996" gradientUnits="userSpaceOnUse">
<stop stop-color="#326DFF"/>
<stop offset="1" stop-color="#8EAEFF"/>
</linearGradient>
<linearGradient id="paint3_linear_4828_12312" x1="244.473" y1="43.7174" x2="244.473" y2="56.2306" gradientUnits="userSpaceOnUse">
<linearGradient id="paint3_linear_9494_29052" x1="233.473" y1="60.4864" x2="233.473" y2="72.9996" gradientUnits="userSpaceOnUse">
<stop stop-color="#326DFF"/>
<stop offset="1" stop-color="#8EAEFF"/>
</linearGradient>
<linearGradient id="paint4_linear_4828_12312" x1="244.473" y1="43.7174" x2="244.473" y2="56.2306" gradientUnits="userSpaceOnUse">
<linearGradient id="paint4_linear_9494_29052" x1="233.473" y1="60.4864" x2="233.473" y2="72.9996" gradientUnits="userSpaceOnUse">
<stop stop-color="#326DFF"/>
<stop offset="1" stop-color="#8EAEFF"/>
</linearGradient>
<linearGradient id="paint5_linear_4828_12312" x1="244.473" y1="43.7174" x2="244.473" y2="56.2306" gradientUnits="userSpaceOnUse">
<linearGradient id="paint5_linear_9494_29052" x1="233.473" y1="60.4864" x2="233.473" y2="72.9996" gradientUnits="userSpaceOnUse">
<stop stop-color="#326DFF"/>
<stop offset="1" stop-color="#8EAEFF"/>
</linearGradient>
<linearGradient id="paint6_linear_4828_12312" x1="244.473" y1="43.7174" x2="244.473" y2="56.2306" gradientUnits="userSpaceOnUse">
<linearGradient id="paint6_linear_9494_29052" x1="233.473" y1="60.4864" x2="233.473" y2="72.9996" gradientUnits="userSpaceOnUse">
<stop stop-color="#326DFF"/>
<stop offset="1" stop-color="#8EAEFF"/>
</linearGradient>
<clipPath id="clip0_4828_12312">
<rect x="1" y="1.23096" width="420" height="269.5" rx="7.875" fill="white"/>
</clipPath>
<clipPath id="clip1_4828_12312">
<path d="M69 26.231H410C413.866 26.231 417 29.365 417 33.231V259.231C417 263.097 413.866 266.231 410 266.231H69V26.231Z" fill="white"/>
<clipPath id="clip0_9494_29052">
<rect x="1" y="1" width="420" height="269" rx="7.875" fill="white"/>
</clipPath>
<clipPath id="clip2_4828_12312">
<rect x="88" y="148.231" width="113" height="65" rx="3.40117" fill="white"/>
<clipPath id="clip1_9494_29052">
<rect x="34" y="161" width="159" height="75" rx="3.40117" fill="white"/>
</clipPath>
<clipPath id="clip3_4828_12312">
<rect width="8.50292" height="8.50292" fill="white" transform="translate(93.1018 162.568)"/>
<clipPath id="clip2_9494_29052">
<rect width="8.50292" height="8.50292" fill="white" transform="translate(44.3804 176.85)"/>
</clipPath>
<clipPath id="clip4_4828_12312">
<rect width="8.50292" height="8.50292" fill="white" transform="translate(93.1018 181.381)"/>
<clipPath id="clip3_9494_29052">
<rect width="8.50292" height="8.50292" fill="white" transform="translate(44.3804 198.85)"/>
</clipPath>
<clipPath id="clip5_4828_12312">
<rect width="8.50292" height="8.50292" fill="white" transform="translate(93.1018 200.193)"/>
<clipPath id="clip4_9494_29052">
<rect width="8.50292" height="8.50292" fill="white" transform="translate(44.3804 220.85)"/>
</clipPath>
</defs>
</svg>
<svg width="422" height="272" viewBox="0 0 422 272" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_4847_12631)">
<rect x="1" y="1" width="420" height="269.5" rx="7.875" fill="#F4F4F7"/>
<rect x="23.6" y="25.6" width="393.8" height="240.8" rx="7.4" fill="#FBFBFC"/>
<rect x="23.6" y="25.6" width="393.8" height="240.8" rx="7.4" stroke="#DFE2EA" stroke-width="0.8"/>
<g clip-path="url(#clip1_4847_12631)">
<mask id="path-4-inside-1_4847_12631" fill="white">
<path d="M69 26H410C413.866 26 417 29.134 417 33V259C417 262.866 413.866 266 410 266H69V26Z"/>
</mask>
<path d="M69 26H410C413.866 26 417 29.134 417 33V259C417 262.866 413.866 266 410 266H69V26Z" fill="#FBFBFC"/>
<rect x="79" y="45" width="134" height="38" rx="4" fill="#F0F4FF"/>
<rect x="79.3" y="45.3" width="133.4" height="37.4" rx="3.7" stroke="#3370FF" stroke-opacity="0.1" stroke-width="0.6"/>
<rect x="79.3" y="104.3" width="133.4" height="150.4" rx="3.7" fill="white"/>
<rect x="79.3" y="104.3" width="133.4" height="150.4" rx="3.7" stroke="#DFE2EA" stroke-width="0.6"/>
<rect x="87.667" y="115.435" width="113.382" height="5.25" rx="2.625" fill="#F0F1F6"/>
<rect x="87.667" y="233.987" width="113.382" height="5.25" rx="2.625" fill="#F0F1F6"/>
<g clip-path="url(#clip2_4847_12631)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M98.3151 135.673C98.3151 138.262 96.2159 140.362 93.6264 140.362C92.8456 140.362 92.1094 140.171 91.4618 139.833H89.9797C89.669 139.833 89.4171 139.581 89.4171 139.27V137.741C89.1101 137.117 88.9377 136.415 88.9377 135.673C88.9377 133.083 91.0369 130.984 93.6264 130.984C96.2159 130.984 98.3151 133.083 98.3151 135.673ZM92.0305 135.673C92.0305 136.002 91.7634 136.27 91.4338 136.27C91.1043 136.27 90.8372 136.002 90.8372 135.673C90.8372 135.343 91.1043 135.076 91.4338 135.076C91.7634 135.076 92.0305 135.343 92.0305 135.673ZM94.1761 135.673C94.1761 136.002 93.909 136.27 93.5795 136.27C93.2499 136.27 92.9828 136.002 92.9828 135.673C92.9828 135.343 93.2499 135.076 93.5795 135.076C93.909 135.076 94.1761 135.343 94.1761 135.673ZM96.3217 135.673C96.3217 136.002 96.0546 136.27 95.725 136.27C95.3955 136.27 95.1284 136.002 95.1284 135.673C95.1284 135.343 95.3955 135.076 95.725 135.076C96.0546 135.076 96.3217 135.343 96.3217 135.673Z" fill="#FF81AE"/>
</g>
<path d="M105.758 133.585H108.008V132.066H108.78V133.585H109.608V134.324H108.78V138.552C108.78 139.163 108.458 139.477 107.823 139.477H106.602L106.441 138.729C106.827 138.761 107.204 138.777 107.558 138.777C107.855 138.777 108.008 138.633 108.008 138.359V134.324H105.758V133.585ZM102.977 134.156C103.443 134.67 103.885 135.176 104.295 135.691C104.552 135.032 104.697 134.324 104.737 133.569H102.599V132.829H105.42V133.392C105.404 134.461 105.195 135.442 104.785 136.334C105.09 136.752 105.372 137.162 105.637 137.572L105.074 138.134C104.873 137.781 104.648 137.427 104.399 137.065C103.965 137.773 103.386 138.416 102.679 139.01L102.245 138.343C102.969 137.797 103.531 137.154 103.941 136.43C103.507 135.852 103.009 135.249 102.462 134.638L102.977 134.156ZM106.296 135.136C106.819 135.779 107.22 136.358 107.502 136.856L106.899 137.274C106.602 136.752 106.208 136.181 105.717 135.562L106.296 135.136ZM112.973 134.365H115.103V133.272C114.556 133.32 113.969 133.344 113.351 133.344L113.125 132.661C114.757 132.661 116.132 132.484 117.249 132.138L117.619 132.773C117.104 132.95 116.525 133.087 115.874 133.183V134.365H117.884V135.104H115.874V136.221H117.385V139.477H116.63V139.123H114.363V139.477H113.608V136.221H115.103V135.104H112.973V134.365ZM114.363 138.408H116.63V136.921H114.363V138.408ZM111.494 132.146C112.016 132.54 112.458 132.934 112.82 133.336L112.298 133.866C111.976 133.489 111.534 133.087 110.963 132.669L111.494 132.146ZM110.409 134.477H112.265V137.893C112.507 137.684 112.764 137.451 113.037 137.186L113.238 137.99C112.732 138.464 112.193 138.89 111.622 139.26L111.333 138.576C111.462 138.464 111.534 138.327 111.534 138.166V135.209H110.409V134.477ZM119.135 132.508H125.469V133.247H124.183V135.176H125.879V135.916H124.183V139.396H123.419V135.916H121.265C121.185 136.72 121.032 137.387 120.791 137.925C120.485 138.601 119.971 139.123 119.256 139.485L118.846 138.842C119.489 138.464 119.931 137.982 120.164 137.403C120.317 136.985 120.421 136.487 120.485 135.916H118.717V135.176H120.542C120.542 135.112 120.55 135.048 120.55 135V133.247H119.135V132.508ZM121.321 133.247V135C121.321 135.064 121.313 135.12 121.313 135.176H123.419V133.247H121.321ZM130.851 135.506H129.758V134.807C130.658 134.292 131.486 133.754 132.25 133.183H129.871V132.484H133.383V133.143C132.668 133.746 131.888 134.316 131.052 134.847H133.978C133.922 136.784 133.825 138.022 133.681 138.568C133.536 139.115 133.15 139.388 132.523 139.404C132.258 139.404 132.001 139.396 131.751 139.38L131.542 138.641C131.84 138.673 132.129 138.689 132.419 138.689C132.692 138.681 132.877 138.552 132.989 138.295C133.086 138.078 133.158 137.146 133.206 135.506H132.796C132.603 136.454 132.322 137.194 131.952 137.74C131.534 138.351 130.908 138.898 130.072 139.38L129.605 138.777C130.345 138.367 130.916 137.909 131.301 137.403C131.639 136.937 131.888 136.302 132.065 135.506H131.575C131.285 136.511 130.779 137.298 130.064 137.861L129.589 137.266C130.176 136.808 130.594 136.221 130.851 135.506ZM126.832 134.244H127.733V132.275H128.504V134.244H129.445V134.976H128.504V137.572C128.826 137.467 129.131 137.355 129.437 137.242V138.038C128.665 138.335 127.829 138.584 126.945 138.785L126.744 137.982C127.082 137.925 127.411 137.861 127.733 137.781V134.976H126.832V134.244ZM141.531 133.312V139.485H140.767V138.914H136.515V139.501H135.752V133.312H137.681C137.841 132.91 137.97 132.484 138.05 132.05L138.894 132.162C138.814 132.572 138.693 132.958 138.541 133.312H141.531ZM136.515 138.175H140.767V136.39H136.515V138.175ZM136.515 135.667H140.767V134.035H136.515V135.667Z" fill="#485264"/>
<rect x="88.1503" y="145.15" width="114.699" height="78.6994" rx="2.84972" fill="#F7F8FA"/>
<rect x="88.1503" y="145.15" width="114.699" height="78.6994" rx="2.84972" stroke="#E8EBF0" stroke-width="0.300568"/>
<path d="M196.291 222.118L201.043 217.366" stroke="#8A95A7" stroke-width="0.644535" stroke-linecap="round"/>
<path d="M198.476 222.126L201.043 219.559" stroke="#8A95A7" stroke-width="0.644535" stroke-linecap="round"/>
<path d="M99.567 157.659H99.021L98.874 157.043C99.042 157.071 99.196 157.085 99.35 157.085C99.462 157.085 99.525 156.994 99.525 156.819V155.188H100.183V156.98C100.183 157.428 99.973 157.659 99.567 157.659ZM96.627 155.818C96.466 155.993 96.305 156.154 96.137 156.308L95.71 155.804C96.305 155.3 96.816 154.607 97.236 153.718L97.88 153.865C97.691 154.271 97.488 154.642 97.271 154.978V157.645H96.627V155.818ZM98.811 153.711L99.441 153.858C99.364 154.019 99.287 154.173 99.217 154.313H101.968V154.726C101.877 155.076 101.765 155.419 101.625 155.755L101.037 155.594C101.142 155.391 101.233 155.167 101.31 154.915H98.86C98.594 155.3 98.307 155.636 97.992 155.923L97.586 155.426C98.062 155.006 98.475 154.439 98.811 153.711ZM96.494 157.953L97.138 158.086C96.97 158.772 96.732 159.374 96.431 159.885L95.864 159.521C96.158 159.031 96.368 158.513 96.494 157.953ZM100.022 160.081H98.244C97.768 160.081 97.53 159.822 97.53 159.311V157.89H98.202V159.178C98.202 159.36 98.286 159.451 98.454 159.451H99.896C100.015 159.451 100.106 159.409 100.169 159.332C100.239 159.248 100.288 158.996 100.309 158.569L100.939 158.779C100.883 159.409 100.785 159.787 100.638 159.913C100.498 160.025 100.295 160.081 100.022 160.081ZM101.268 157.708C101.716 158.324 102.052 158.863 102.29 159.325L101.737 159.71C101.485 159.206 101.149 158.653 100.729 158.044L101.268 157.708ZM98.622 155.804L99.154 156.056C98.902 156.588 98.601 157.05 98.251 157.442L97.747 157.092C98.09 156.728 98.384 156.294 98.622 155.804ZM101.086 155.797C101.422 156.217 101.716 156.672 101.975 157.176L101.408 157.47C101.142 156.931 100.855 156.455 100.533 156.042L101.086 155.797ZM99.154 157.708C99.49 158.093 99.742 158.429 99.917 158.723L99.399 159.087C99.217 158.765 98.965 158.415 98.65 158.03L99.154 157.708ZM104.048 153.662L104.699 153.718C104.622 154.18 104.545 154.607 104.468 155.006H105.637V155.37C105.588 156.462 105.371 157.414 104.993 158.226C105.385 158.527 105.7 158.8 105.938 159.038L105.483 159.563C105.259 159.332 104.986 159.08 104.678 158.814C104.335 159.36 103.908 159.836 103.397 160.228L102.942 159.668C103.439 159.311 103.845 158.884 104.16 158.387C103.838 158.128 103.488 157.862 103.11 157.582C103.32 156.98 103.502 156.336 103.67 155.643H102.998V155.006H103.81C103.894 154.572 103.978 154.124 104.048 153.662ZM104.461 157.827C104.755 157.183 104.93 156.455 104.986 155.643H104.335C104.174 156.329 104.006 156.91 103.838 157.379C104.062 157.533 104.272 157.687 104.461 157.827ZM105.805 156.609H107.324V155.804C107.674 155.489 108.017 155.111 108.339 154.677H106.001V154.033H109.102V154.677C108.773 155.146 108.402 155.587 107.989 156.007V156.609H109.354V157.253H107.989V159.332C107.989 159.85 107.786 160.109 107.394 160.109H106.358L106.183 159.479C106.47 159.479 106.785 159.486 107.121 159.486C107.254 159.486 107.324 159.367 107.324 159.129V157.253H105.805V156.609ZM111.112 158.464C111.294 158.464 111.441 158.534 111.567 158.681C111.679 158.835 111.742 159.024 111.742 159.262C111.742 159.619 111.637 159.927 111.427 160.193C111.217 160.459 110.937 160.641 110.587 160.739V160.305C110.776 160.235 110.937 160.13 111.063 159.976C111.175 159.815 111.238 159.654 111.238 159.486C111.196 159.5 111.14 159.507 111.07 159.507C110.923 159.507 110.804 159.458 110.706 159.36C110.608 159.262 110.559 159.136 110.559 158.989C110.559 158.828 110.608 158.702 110.713 158.604C110.811 158.506 110.944 158.464 111.112 158.464ZM121.123 153.725H121.76V154.131H123.44V154.67H121.76V155.013H123.195V155.538H121.76V155.888H123.615V156.441H119.289V155.888H121.123V155.538H119.779V155.013H121.123V154.67H119.485V154.131H121.123V153.725ZM120.416 158.205V158.597H122.495V158.205H120.416ZM122.495 157.701V157.302H120.416V157.701H122.495ZM120.416 159.101V160.186H119.786V156.763H123.132V159.493C123.132 159.927 122.908 160.144 122.467 160.144H121.886L121.732 159.556L122.278 159.591C122.418 159.591 122.495 159.514 122.495 159.36V159.101H120.416ZM118.12 153.781C118.568 154.124 118.953 154.467 119.261 154.81L118.806 155.272C118.533 154.95 118.148 154.6 117.651 154.236L118.12 153.781ZM117.168 155.811H118.757V158.737C118.939 158.562 119.121 158.373 119.317 158.17L119.492 158.87C119.086 159.29 118.652 159.661 118.197 159.983L117.945 159.381C118.057 159.283 118.12 159.157 118.12 159.01V156.448H117.168V155.811ZM129.545 160.144H128.831L128.663 159.521L129.412 159.535C129.65 159.535 129.776 159.402 129.776 159.143V154.726H127.13V154.082H130.455V159.318C130.455 159.864 130.147 160.144 129.545 160.144ZM124.617 154.887H125.296V160.193H124.617V154.887ZM126.185 155.839H128.859V158.625H126.185V155.839ZM128.194 157.988V156.476H126.85V157.988H128.194ZM125.828 153.655C126.143 154.033 126.423 154.453 126.675 154.908L126.08 155.216C125.814 154.726 125.527 154.299 125.212 153.928L125.828 153.655ZM133.704 156.336V156.952H136.322V156.336H133.704ZM136.322 157.533H133.704V158.135H136.322V157.533ZM136.322 158.709H133.704V160.172H133.081V156.679C132.717 157.106 132.318 157.498 131.87 157.862L131.443 157.302C132.255 156.658 132.899 155.916 133.361 155.09H131.632V154.446H133.683C133.788 154.194 133.879 153.935 133.963 153.683L134.642 153.76C134.572 153.998 134.495 154.229 134.411 154.446H137.792V155.09H134.124C134.012 155.321 133.886 155.545 133.753 155.762H136.945V159.549C136.945 159.934 136.721 160.13 136.273 160.144H135.489L135.328 159.542C135.587 159.563 135.832 159.577 136.063 159.577C136.231 159.577 136.322 159.5 136.322 159.346V158.709ZM139.452 156.385C139.228 156.679 138.983 156.959 138.717 157.232L138.507 156.539C139.228 155.72 139.76 154.768 140.11 153.683L140.733 153.977C140.572 154.467 140.362 154.943 140.11 155.391V160.2H139.452V156.385ZM142.385 153.732H143.071V155.972H144.996V156.63H143.071V160.186H142.385V156.63H140.593V155.972H142.385V153.732ZM150.499 157.099C151.08 157.939 151.577 158.842 151.99 159.801L151.339 160.095C151.241 159.864 151.136 159.64 151.038 159.423C149.862 159.633 148.392 159.787 146.642 159.892L146.46 159.22C146.642 159.15 146.831 159.003 147.027 158.793C147.993 157.729 148.903 156.441 149.771 154.929L150.443 155.265C149.323 157.092 148.392 158.387 147.657 159.157C148.707 159.073 149.736 158.961 150.744 158.814C150.464 158.268 150.17 157.764 149.862 157.302L150.499 157.099ZM148.392 153.683L149.12 153.844C148.343 155.412 147.363 156.686 146.187 157.652L145.718 157.092C146.754 156.273 147.65 155.139 148.392 153.683ZM152.936 154.11H159.222V154.754H158.34V159.381C158.34 159.885 158.095 160.137 157.619 160.137H156.443L156.289 159.493C156.674 159.514 157.038 159.528 157.388 159.528C157.577 159.528 157.675 159.423 157.675 159.213V154.754H152.936V154.11ZM156.548 155.664V158.359H154.343V158.933H153.706V155.664H156.548ZM154.343 157.757H155.918V156.259H154.343V157.757ZM162.442 154.453C163.051 155.195 163.52 155.839 163.842 156.399L163.275 156.784C162.939 156.196 162.47 155.531 161.882 154.803L162.442 154.453ZM164.766 158.065C164.311 158.863 163.597 159.542 162.624 160.116L162.176 159.563C163.345 158.877 164.108 158.037 164.472 157.043C164.752 156.196 164.892 155.104 164.906 153.767H165.592C165.592 155.097 165.445 156.231 165.151 157.155L165.067 157.414C165.613 158.121 166.075 158.821 166.46 159.521L165.949 160.032C165.655 159.416 165.256 158.758 164.766 158.065ZM160.559 159.472L160.335 158.842C160.475 158.723 160.552 158.562 160.552 158.352V153.872H161.238V158.506C161.742 158.296 162.239 158.044 162.743 157.736L162.932 158.387C162.19 158.807 161.399 159.164 160.559 159.472ZM167.399 154.124H168.771V153.739H169.422V154.124H170.556V154.698H169.422V155.069H170.388V155.608H169.408C169.394 155.734 169.38 155.86 169.359 155.972H170.556V156.546H169.191C169.128 156.686 169.058 156.812 168.981 156.924C168.715 157.274 168.288 157.554 167.693 157.75L167.357 157.218C167.889 157.043 168.246 156.819 168.442 156.546H167.252V155.972H168.687C168.715 155.853 168.736 155.734 168.75 155.608H167.574V155.069H168.771V154.698H167.399V154.124ZM170.073 157.155H170.731V157.75H172.887V159.164C172.887 159.577 172.663 159.787 172.222 159.787H171.641L171.473 159.178L172.012 159.199C172.159 159.199 172.236 159.136 172.236 159.017V158.366H170.731V160.242H170.073V158.366H168.596V159.836H167.938V157.75H170.073V157.155ZM170.892 153.956H173.307V154.411C173.146 154.761 172.95 155.104 172.726 155.44C173.146 155.762 173.363 156.049 173.363 156.315C173.356 156.735 173.153 156.994 172.761 157.092C172.572 157.148 172.313 157.176 171.991 157.176L171.753 156.546C171.949 156.574 172.124 156.588 172.271 156.588C172.537 156.574 172.67 156.483 172.67 156.315C172.67 156.133 172.432 155.846 171.97 155.44C172.194 155.167 172.39 154.88 172.551 154.572H171.557V157.365H170.892V153.956ZM178.04 157.659H177.494L177.347 157.043C177.515 157.071 177.669 157.085 177.823 157.085C177.935 157.085 177.998 156.994 177.998 156.819V155.188H178.656V156.98C178.656 157.428 178.446 157.659 178.04 157.659ZM175.1 155.818C174.939 155.993 174.778 156.154 174.61 156.308L174.183 155.804C174.778 155.3 175.289 154.607 175.709 153.718L176.353 153.865C176.164 154.271 175.961 154.642 175.744 154.978V157.645H175.1V155.818ZM177.284 153.711L177.914 153.858C177.837 154.019 177.76 154.173 177.69 154.313H180.441V154.726C180.35 155.076 180.238 155.419 180.098 155.755L179.51 155.594C179.615 155.391 179.706 155.167 179.783 154.915H177.333C177.067 155.3 176.78 155.636 176.465 155.923L176.059 155.426C176.535 155.006 176.948 154.439 177.284 153.711ZM174.967 157.953L175.611 158.086C175.443 158.772 175.205 159.374 174.904 159.885L174.337 159.521C174.631 159.031 174.841 158.513 174.967 157.953ZM178.495 160.081H176.717C176.241 160.081 176.003 159.822 176.003 159.311V157.89H176.675V159.178C176.675 159.36 176.759 159.451 176.927 159.451H178.369C178.488 159.451 178.579 159.409 178.642 159.332C178.712 159.248 178.761 158.996 178.782 158.569L179.412 158.779C179.356 159.409 179.258 159.787 179.111 159.913C178.971 160.025 178.768 160.081 178.495 160.081ZM179.741 157.708C180.189 158.324 180.525 158.863 180.763 159.325L180.21 159.71C179.958 159.206 179.622 158.653 179.202 158.044L179.741 157.708ZM177.095 155.804L177.627 156.056C177.375 156.588 177.074 157.05 176.724 157.442L176.22 157.092C176.563 156.728 176.857 156.294 177.095 155.804ZM179.559 155.797C179.895 156.217 180.189 156.672 180.448 157.176L179.881 157.47C179.615 156.931 179.328 156.455 179.006 156.042L179.559 155.797ZM177.627 157.708C177.963 158.093 178.215 158.429 178.39 158.723L177.872 159.087C177.69 158.765 177.438 158.415 177.123 158.03L177.627 157.708ZM182.934 154.369C183.382 154.369 183.746 154.488 184.026 154.74C184.306 154.985 184.446 155.321 184.446 155.741C184.446 156.084 184.355 156.371 184.18 156.595C184.117 156.672 183.921 156.854 183.592 157.141C183.459 157.253 183.361 157.379 183.298 157.505C183.221 157.645 183.186 157.799 183.186 157.967V158.086H182.437V157.967C182.437 157.708 182.479 157.484 182.577 157.302C182.668 157.106 182.934 156.819 183.368 156.434L183.487 156.301C183.613 156.14 183.683 155.972 183.683 155.79C183.683 155.545 183.613 155.356 183.48 155.216C183.34 155.076 183.137 155.006 182.885 155.006C182.57 155.006 182.339 155.104 182.199 155.307C182.073 155.475 182.01 155.713 182.01 156.021H181.275C181.275 155.51 181.422 155.111 181.716 154.817C182.01 154.516 182.416 154.369 182.934 154.369ZM182.808 158.464C182.955 158.464 183.081 158.506 183.179 158.604C183.277 158.695 183.326 158.814 183.326 158.961C183.326 159.108 183.27 159.227 183.172 159.325C183.074 159.416 182.948 159.465 182.808 159.465C182.668 159.465 182.542 159.416 182.444 159.318C182.346 159.22 182.297 159.101 182.297 158.961C182.297 158.814 182.346 158.695 182.444 158.604C182.542 158.506 182.668 158.464 182.808 158.464Z" fill="#485264"/>
<rect x="79" y="32.75" width="31.0005" height="5.25" rx="2.625" fill="#DFE2EA"/>
<rect x="79" y="32.75" width="31.0005" height="5.25" rx="2.625" fill="#E8EBF0"/>
<rect x="79" y="90.875" width="31.0005" height="5.25" rx="2.625" fill="#E8EBF0"/>
<rect x="192.021" y="90.875" width="20.9795" height="5.25" rx="2.625" fill="#E8EBF0"/>
<svg width="422" height="271" viewBox="0 0 422 271" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_9494_29008)">
<rect x="1" y="1" width="420" height="269" rx="7.875" fill="#F0F1F6"/>
<rect x="21" y="108" width="187" height="158" rx="7" fill="white"/>
<rect x="34" y="125" width="160" height="5" rx="2.5" fill="#F0F1F6"/>
<rect x="34" y="249" width="161" height="5" rx="2.5" fill="#F0F1F6"/>
<g clip-path="url(#clip1_9494_29008)">
<path fill-rule="evenodd" clip-rule="evenodd" d="M44.3151 148.336C44.3151 150.926 42.2159 153.025 39.6264 153.025C38.8456 153.025 38.1094 152.834 37.4618 152.497H35.9797C35.669 152.497 35.4171 152.245 35.4171 151.934V150.404C35.1101 149.78 34.9377 149.079 34.9377 148.336C34.9377 145.747 37.0369 143.648 39.6264 143.648C42.2159 143.648 44.3151 145.747 44.3151 148.336ZM38.0305 148.336C38.0305 148.666 37.7634 148.933 37.4338 148.933C37.1043 148.933 36.8372 148.666 36.8372 148.336C36.8372 148.007 37.1043 147.74 37.4338 147.74C37.7634 147.74 38.0305 148.007 38.0305 148.336ZM40.1761 148.336C40.1761 148.666 39.909 148.933 39.5795 148.933C39.2499 148.933 38.9828 148.666 38.9828 148.336C38.9828 148.007 39.2499 147.74 39.5795 147.74C39.909 147.74 40.1761 148.007 40.1761 148.336ZM42.3217 148.336C42.3217 148.666 42.0546 148.933 41.725 148.933C41.3955 148.933 41.1284 148.666 41.1284 148.336C41.1284 148.007 41.3955 147.74 41.725 147.74C42.0546 147.74 42.3217 148.007 42.3217 148.336Z" fill="#FF81AE"/>
</g>
<path d="M69 26H417H69ZM417 266H69H417ZM68.4 266V26H69.6V266H68.4ZM417 26V266V26Z" fill="#E8EBF0" mask="url(#path-4-inside-1_4847_12631)"/>
<mask id="path-21-inside-2_4847_12631" fill="white">
<path d="M223 26H410C413.866 26 417 29.134 417 33V259C417 262.866 413.866 266 410 266H223V26Z"/>
</mask>
<path d="M223 26H410C413.866 26 417 29.134 417 33V259C417 262.866 413.866 266 410 266H223V26Z" fill="white"/>
<path d="M223 26H417H223ZM417 266H223H417ZM222.2 266V26H223.8V266H222.2ZM417 26V266V26Z" fill="#E8EBF0" mask="url(#path-21-inside-2_4847_12631)"/>
<rect x="233.374" y="38.3737" width="22.1989" height="22.1989" rx="4.62634" fill="#FBFBFC"/>
<rect x="233.374" y="38.3737" width="22.1989" height="22.1989" rx="4.62634" stroke="#E8EBF0" stroke-width="0.747312"/>
<path d="M245.965 46.5255C245.965 45.9244 245.78 45.3369 245.433 44.8371C245.086 44.3373 244.592 43.9478 244.015 43.7178C243.438 43.4878 242.802 43.4276 242.189 43.5449C241.577 43.6621 241.014 43.9516 240.572 44.3766C240.13 44.8016 239.829 45.3431 239.707 45.9326C239.585 46.5221 239.648 47.1332 239.887 47.6885C240.126 48.2438 240.531 48.7185 241.051 49.0524C241.57 49.3863 242.181 49.5646 242.806 49.5646V46.5255H245.965Z" fill="url(#paint0_linear_4847_12631)"/>
<path d="M249.3 46.5255C249.3 46.1264 249.227 45.7312 249.085 45.3625C248.942 44.9938 248.733 44.6588 248.47 44.3766C248.207 44.0944 247.895 43.8705 247.551 43.7178C247.208 43.5651 246.839 43.4865 246.467 43.4865C246.095 43.4865 245.727 43.5651 245.383 43.7178C245.039 43.8705 244.727 44.0944 244.464 44.3766C244.201 44.6588 243.992 44.9938 243.85 45.3625C243.707 45.7312 243.634 46.1264 243.634 46.5255L249.3 46.5255Z" fill="url(#paint1_linear_4847_12631)"/>
<path d="M248.78 51.3971C248.78 51.0581 248.722 50.7224 248.609 50.4091C248.496 50.0959 248.33 49.8113 248.121 49.5716C247.912 49.3318 247.664 49.1416 247.391 49.0119C247.118 48.8822 246.825 48.8154 246.529 48.8154V51.3971H248.78Z" fill="url(#paint2_linear_4847_12631)"/>
<path d="M242.806 50.466C242.391 50.466 241.98 50.5375 241.597 50.6766C241.213 50.8156 240.865 51.0194 240.572 51.2764C240.278 51.5333 240.046 51.8383 239.887 52.174C239.728 52.5097 239.646 52.8694 239.646 53.2328C239.646 53.5961 239.728 53.9559 239.887 54.2916C240.046 54.6273 240.278 54.9323 240.572 55.1892C240.865 55.4462 241.213 55.65 241.597 55.789C241.98 55.9281 242.391 55.9996 242.806 55.9996L242.806 50.466Z" fill="url(#paint3_linear_4847_12631)"/>
<path d="M242.806 46.4051L242.806 53.2025L239.646 53.2025L239.646 46.4051H242.806Z" fill="url(#paint4_linear_4847_12631)"/>
<path d="M246.563 46.525L242.77 46.525L242.77 43.4865L246.563 43.4865V46.525Z" fill="url(#paint5_linear_4847_12631)"/>
<path d="M246.563 51.3961H244.464V48.8154L246.563 48.8154V51.3961Z" fill="url(#paint6_linear_4847_12631)"/>
<g filter="url(#filter0_dd_4847_12631)">
<path d="M233 66H389.029C391.775 66 394 68.2254 394 70.9706V86.0294C394 88.7746 391.775 91 389.029 91H237.971C235.225 91 233 88.7746 233 86.0294V66Z" fill="white" shape-rendering="crispEdges"/>
<path d="M245.17 79.3914H244.543L244.374 78.684C244.567 78.7162 244.744 78.7323 244.921 78.7323C245.049 78.7323 245.122 78.6278 245.122 78.4268V76.554H245.877V78.6117C245.877 79.1261 245.636 79.3914 245.17 79.3914ZM241.794 77.2774C241.609 77.4784 241.424 77.6633 241.231 77.8401L240.741 77.2614C241.424 76.6827 242.011 75.8869 242.493 74.8661L243.233 75.0349C243.016 75.5011 242.783 75.9271 242.534 76.3129V79.3753H241.794V77.2774ZM244.302 74.8581L245.025 75.0269C244.937 75.2118 244.848 75.3886 244.768 75.5493H247.927V76.0236C247.822 76.4254 247.694 76.8193 247.533 77.2051L246.858 77.0202C246.978 76.7871 247.083 76.5299 247.171 76.2406H244.358C244.053 76.6827 243.723 77.0685 243.361 77.398L242.895 76.8273C243.442 76.3451 243.916 75.694 244.302 74.8581ZM241.641 79.7289L242.381 79.8817C242.188 80.6694 241.915 81.3606 241.569 81.9474L240.918 81.5294C241.256 80.9667 241.497 80.372 241.641 79.7289ZM245.692 82.1724H243.651C243.104 82.1724 242.831 81.875 242.831 81.2883V79.6566H243.603V81.1355C243.603 81.3445 243.699 81.449 243.892 81.449H245.548C245.684 81.449 245.789 81.4008 245.861 81.3124C245.942 81.2159 245.998 80.9266 246.022 80.4363L246.745 80.6774C246.681 81.4008 246.568 81.8348 246.4 81.9795C246.239 82.1081 246.006 82.1724 245.692 82.1724ZM247.123 79.4476C247.637 80.1549 248.023 80.7738 248.297 81.3043L247.662 81.7464C247.372 81.1677 246.986 80.5327 246.504 79.8334L247.123 79.4476ZM244.085 77.2614L244.696 77.5507C244.406 78.1616 244.061 78.6921 243.659 79.1422L243.08 78.7403C243.474 78.3223 243.812 77.824 244.085 77.2614ZM246.914 77.2533C247.3 77.7356 247.637 78.258 247.935 78.8368L247.284 79.1743C246.978 78.5554 246.649 78.0089 246.279 77.5346L246.914 77.2533ZM244.696 79.4476C245.081 79.8897 245.371 80.2755 245.572 80.6131L244.977 81.0311C244.768 80.6613 244.479 80.2594 244.117 79.8174L244.696 79.4476ZM250.295 74.8018L251.043 74.8661C250.954 75.3966 250.866 75.8869 250.778 76.3451H252.12V76.763C252.064 78.0169 251.814 79.11 251.38 80.0424C251.83 80.388 252.192 80.7015 252.465 80.9748L251.943 81.5776C251.686 81.3124 251.372 81.023 251.019 80.7176C250.625 81.3445 250.135 81.8911 249.548 82.3412L249.025 81.6982C249.596 81.2883 250.062 80.798 250.424 80.2273C250.054 79.9299 249.652 79.6245 249.218 79.3029C249.459 78.6117 249.668 77.8722 249.861 77.0765H249.09V76.3451H250.022C250.118 75.8467 250.215 75.3323 250.295 74.8018ZM250.769 79.5843C251.107 78.8448 251.308 78.0089 251.372 77.0765H250.625C250.44 77.8642 250.247 78.5313 250.054 79.0699C250.311 79.2467 250.552 79.4235 250.769 79.5843ZM252.313 78.1857H254.057V77.2614C254.459 76.8997 254.853 76.4656 255.222 75.9673H252.538V75.2278H256.098V75.9673C255.721 76.5058 255.295 77.0122 254.82 77.4945V78.1857H256.388V78.9252H254.82V81.3124C254.82 81.9072 254.587 82.2046 254.137 82.2046H252.948L252.747 81.4812C253.076 81.4812 253.438 81.4892 253.824 81.4892C253.977 81.4892 254.057 81.3526 254.057 81.0793V78.9252H252.313V78.1857ZM258.387 80.3157C258.596 80.3157 258.764 80.3961 258.909 80.5649C259.038 80.7417 259.11 80.9587 259.11 81.232C259.11 81.6419 258.989 81.9956 258.748 82.301C258.507 82.6064 258.186 82.8154 257.784 82.928V82.4296C258.001 82.3492 258.186 82.2287 258.33 82.0518C258.459 81.867 258.531 81.6821 258.531 81.4892C258.483 81.5053 258.419 81.5133 258.338 81.5133C258.17 81.5133 258.033 81.4571 257.92 81.3445C257.808 81.232 257.752 81.0873 257.752 80.9185C257.752 80.7337 257.808 80.589 257.928 80.4764C258.041 80.3639 258.194 80.3157 258.387 80.3157ZM269.862 74.8742H270.593V75.3404H272.522V75.9593H270.593V76.3531H272.241V76.9559H270.593V77.3578H272.723V77.9928H267.756V77.3578H269.862V76.9559H268.318V76.3531H269.862V75.9593H267.981V75.3404H269.862V74.8742ZM269.05 80.0183V80.4684H271.437V80.0183H269.05ZM271.437 79.4396V78.9814H269.05V79.4396H271.437ZM269.05 81.0471V82.293H268.326V78.3625H272.169V81.4972C272.169 81.9956 271.911 82.2447 271.405 82.2447H270.738L270.561 81.5696L271.188 81.6098C271.349 81.6098 271.437 81.5214 271.437 81.3445V81.0471H269.05ZM266.414 74.9385C266.928 75.3323 267.37 75.7262 267.724 76.12L267.201 76.6505C266.888 76.2808 266.446 75.8789 265.875 75.4609L266.414 74.9385ZM265.32 77.2694H267.145V80.6292C267.354 80.4282 267.563 80.2112 267.788 79.9781L267.989 80.7819C267.523 81.2641 267.024 81.6901 266.502 82.0599L266.213 81.3686C266.341 81.2561 266.414 81.1114 266.414 80.9426V78.0008H265.32V77.2694ZM279.512 82.2447H278.692L278.5 81.5294L279.36 81.5455C279.633 81.5455 279.778 81.3927 279.778 81.0954V76.0236H276.739V75.2841H280.557V81.2963C280.557 81.9232 280.204 82.2447 279.512 82.2447ZM273.854 76.2084H274.633V82.301H273.854V76.2084ZM275.654 77.3016H278.725V80.5006H275.654V77.3016ZM277.961 79.7691V78.033H276.418V79.7691H277.961ZM275.244 74.7938C275.606 75.2278 275.927 75.7101 276.217 76.2325L275.534 76.5862C275.228 76.0236 274.899 75.5333 274.537 75.1073L275.244 74.7938ZM284.268 77.8722V78.5796H287.274V77.8722H284.268ZM287.274 79.2467H284.268V79.9379H287.274V79.2467ZM287.274 80.597H284.268V82.2769H283.553V78.2661C283.135 78.7564 282.676 79.2065 282.162 79.6245L281.672 78.9814C282.604 78.242 283.344 77.39 283.874 76.4415H281.889V75.7021H284.244C284.364 75.4127 284.469 75.1153 284.565 74.8259L285.345 74.9144C285.265 75.1876 285.176 75.4529 285.08 75.7021H288.962V76.4415H284.75C284.622 76.7068 284.477 76.964 284.324 77.2131H287.989V81.5615C287.989 82.0036 287.732 82.2287 287.218 82.2447H286.318L286.133 81.5535C286.43 81.5776 286.711 81.5937 286.977 81.5937C287.17 81.5937 287.274 81.5053 287.274 81.3284V80.597ZM290.848 77.9285C290.591 78.2661 290.31 78.5876 290.004 78.9011L289.763 78.1053C290.591 77.1649 291.202 76.0718 291.604 74.8259L292.319 75.1635C292.134 75.7262 291.893 76.2727 291.604 76.7871V82.309H290.848V77.9285ZM294.216 74.8822H295.004V77.4543H297.214V78.2098H295.004V82.293H294.216V78.2098H292.158V77.4543H294.216V74.8822ZM303.513 78.7483C304.18 79.7129 304.751 80.7497 305.225 81.8509L304.477 82.1885C304.365 81.9232 304.244 81.666 304.132 81.4169C302.781 81.658 301.093 81.8348 299.084 81.9554L298.875 81.1838C299.084 81.1034 299.301 80.9346 299.526 80.6935C300.635 79.4717 301.68 77.9928 302.677 76.2567L303.449 76.6425C302.162 78.7403 301.093 80.2273 300.25 81.1114C301.455 81.015 302.637 80.8864 303.794 80.7176C303.473 80.0906 303.135 79.5119 302.781 78.9814L303.513 78.7483ZM301.093 74.8259L301.929 75.0108C301.037 76.8113 299.912 78.2741 298.562 79.3833L298.023 78.7403C299.213 77.7999 300.241 76.4978 301.093 74.8259ZM306.291 75.3162H313.509V76.0557H312.496V81.3686C312.496 81.9474 312.215 82.2367 311.668 82.2367H310.318L310.141 81.4972C310.583 81.5214 311.001 81.5374 311.403 81.5374C311.62 81.5374 311.733 81.4169 311.733 81.1757V76.0557H306.291V75.3162ZM310.439 77.1006V80.1951H307.907V80.8542H307.175V77.1006H310.439ZM307.907 79.5039H309.715V77.7838H307.907V79.5039ZM317.188 75.7101C317.887 76.5621 318.425 77.3016 318.795 77.9446L318.144 78.3866C317.758 77.7115 317.22 76.9479 316.545 76.112L317.188 75.7101ZM319.856 79.8575C319.334 80.7738 318.514 81.5535 317.397 82.2126L316.882 81.5776C318.224 80.7899 319.101 79.8254 319.519 78.684C319.84 77.7115 320.001 76.4576 320.017 74.9224H320.805C320.805 76.4496 320.636 77.7517 320.298 78.8126L320.202 79.11C320.829 79.9218 321.359 80.7256 321.801 81.5294L321.214 82.1161C320.877 81.4088 320.419 80.6533 319.856 79.8575ZM315.025 81.4731L314.768 80.7497C314.929 80.6131 315.017 80.4282 315.017 80.1871V75.043H315.805V80.3639C316.384 80.1228 316.955 79.8334 317.533 79.4798L317.75 80.2273C316.898 80.7095 315.99 81.1195 315.025 81.4731ZM322.86 75.3323H324.435V74.8902H325.182V75.3323H326.485V75.9914H325.182V76.4174H326.292V77.0363H325.166C325.15 77.181 325.134 77.3257 325.11 77.4543H326.485V78.1134H324.917C324.845 78.2741 324.764 78.4188 324.676 78.5474C324.371 78.9493 323.88 79.2708 323.197 79.4958L322.811 78.885C323.422 78.684 323.832 78.4268 324.057 78.1134H322.691V77.4543H324.338C324.371 77.3176 324.395 77.181 324.411 77.0363H323.06V76.4174H324.435V75.9914H322.86V75.3323ZM325.93 78.8126H326.685V79.4958H329.161V81.1195C329.161 81.5937 328.904 81.8348 328.397 81.8348H327.73L327.537 81.1355L328.156 81.1597C328.325 81.1597 328.414 81.0873 328.414 80.9507V80.2032H326.685V82.3573H325.93V80.2032H324.234V81.8911H323.478V79.4958H325.93V78.8126ZM326.87 75.1394H329.643V75.6619C329.458 76.0637 329.233 76.4576 328.976 76.8434C329.458 77.2131 329.708 77.5427 329.708 77.8481C329.7 78.3304 329.467 78.6278 329.016 78.7403C328.799 78.8046 328.502 78.8368 328.132 78.8368L327.859 78.1134C328.084 78.1455 328.285 78.1616 328.454 78.1616C328.759 78.1455 328.912 78.041 328.912 77.8481C328.912 77.6391 328.639 77.3096 328.108 76.8434C328.365 76.5299 328.59 76.2004 328.775 75.8467H327.634V79.0538H326.87V75.1394ZM335.058 79.3914H334.431L334.262 78.684C334.455 78.7162 334.632 78.7323 334.809 78.7323C334.937 78.7323 335.01 78.6278 335.01 78.4268V76.554H335.765V78.6117C335.765 79.1261 335.524 79.3914 335.058 79.3914ZM331.682 77.2774C331.497 77.4784 331.312 77.6633 331.12 77.8401L330.629 77.2614C331.312 76.6827 331.899 75.8869 332.382 74.8661L333.121 75.0349C332.904 75.5011 332.671 75.9271 332.422 76.3129V79.3753H331.682V77.2774ZM334.19 74.8581L334.913 75.0269C334.825 75.2118 334.737 75.3886 334.656 75.5493H337.815V76.0236C337.711 76.4254 337.582 76.8193 337.421 77.2051L336.746 77.0202C336.867 76.7871 336.971 76.5299 337.059 76.2406H334.246C333.941 76.6827 333.611 77.0685 333.25 77.398L332.783 76.8273C333.33 76.3451 333.804 75.694 334.19 74.8581ZM331.53 79.7289L332.269 79.8817C332.076 80.6694 331.803 81.3606 331.457 81.9474L330.806 81.5294C331.144 80.9667 331.385 80.372 331.53 79.7289ZM335.581 82.1724H333.539C332.992 82.1724 332.719 81.875 332.719 81.2883V79.6566H333.491V81.1355C333.491 81.3445 333.587 81.449 333.78 81.449H335.436C335.572 81.449 335.677 81.4008 335.749 81.3124C335.83 81.2159 335.886 80.9266 335.91 80.4363L336.633 80.6774C336.569 81.4008 336.457 81.8348 336.288 81.9795C336.127 82.1081 335.894 82.1724 335.581 82.1724ZM337.011 79.4476C337.526 80.1549 337.911 80.7738 338.185 81.3043L337.55 81.7464C337.26 81.1677 336.875 80.5327 336.392 79.8334L337.011 79.4476ZM333.973 77.2614L334.584 77.5507C334.294 78.1616 333.949 78.6921 333.547 79.1422L332.968 78.7403C333.362 78.3223 333.7 77.824 333.973 77.2614ZM336.802 77.2533C337.188 77.7356 337.526 78.258 337.823 78.8368L337.172 79.1743C336.867 78.5554 336.537 78.0089 336.167 77.5346L336.802 77.2533ZM334.584 79.4476C334.97 79.8897 335.259 80.2755 335.46 80.6131L334.865 81.0311C334.656 80.6613 334.367 80.2594 334.005 79.8174L334.584 79.4476ZM340.658 75.6136C341.172 75.6136 341.59 75.7503 341.912 76.0396C342.233 76.321 342.394 76.7068 342.394 77.189C342.394 77.5829 342.289 77.9124 342.088 78.1696C342.016 78.258 341.791 78.467 341.413 78.7966C341.26 78.9252 341.148 79.0699 341.076 79.2145C340.987 79.3753 340.947 79.5521 340.947 79.745V79.8817H340.087V79.745C340.087 79.4476 340.135 79.1904 340.248 78.9814C340.352 78.7564 340.658 78.4268 341.156 77.9848L341.293 77.832C341.437 77.6472 341.518 77.4543 341.518 77.2453C341.518 76.964 341.437 76.747 341.285 76.5862C341.124 76.4254 340.891 76.3451 340.601 76.3451C340.24 76.3451 339.974 76.4576 339.814 76.6907C339.669 76.8836 339.597 77.1569 339.597 77.5105H338.753C338.753 76.9238 338.921 76.4656 339.259 76.128C339.597 75.7824 340.063 75.6136 340.658 75.6136ZM340.513 80.3157C340.682 80.3157 340.826 80.3639 340.939 80.4764C341.051 80.5809 341.108 80.7176 341.108 80.8864C341.108 81.0552 341.043 81.1918 340.931 81.3043C340.818 81.4088 340.674 81.4651 340.513 81.4651C340.352 81.4651 340.208 81.4088 340.095 81.2963C339.982 81.1838 339.926 81.0471 339.926 80.8864C339.926 80.7176 339.982 80.5809 340.095 80.4764C340.208 80.3639 340.352 80.3157 340.513 80.3157Z" fill="#485264"/>
<path d="M51.7576 146.249H54.0081V144.729H54.7798V146.249H55.6077V146.988H54.7798V151.216C54.7798 151.827 54.4583 152.14 53.8233 152.14H52.6015L52.4408 151.393C52.8266 151.425 53.2044 151.441 53.558 151.441C53.8554 151.441 54.0081 151.296 54.0081 151.023V146.988H51.7576V146.249ZM48.9765 146.819C49.4427 147.334 49.8848 147.84 50.2947 148.354C50.5519 147.695 50.6966 146.988 50.7368 146.232H48.5988V145.493H51.42V146.056C51.4039 147.125 51.195 148.105 50.785 148.997C51.0905 149.415 51.3718 149.825 51.637 150.235L51.0744 150.798C50.8734 150.444 50.6484 150.091 50.3992 149.729C49.9652 150.436 49.3865 151.079 48.6791 151.674L48.2451 151.007C48.9685 150.46 49.5311 149.817 49.9411 149.094C49.507 148.515 49.0087 147.912 48.4621 147.301L48.9765 146.819ZM52.2961 147.8C52.8186 148.443 53.2205 149.022 53.5018 149.52L52.8989 149.938C52.6015 149.415 52.2077 148.845 51.7174 148.226L52.2961 147.8ZM58.9728 147.028H61.1027V145.935C60.5562 145.983 59.9694 146.007 59.3505 146.007L59.1255 145.324C60.7571 145.324 62.1316 145.147 63.2488 144.802L63.6185 145.437C63.1041 145.614 62.5254 145.75 61.8744 145.847V147.028H63.8838V147.768H61.8744V148.885H63.3855V152.14H62.6299V151.787H60.3633V152.14H59.6077V148.885H61.1027V147.768H58.9728V147.028ZM60.3633 151.071H62.6299V149.584H60.3633V151.071ZM57.4938 144.81C58.0163 145.204 58.4583 145.598 58.82 145.999L58.2976 146.53C57.9761 146.152 57.534 145.75 56.9633 145.332L57.4938 144.81ZM56.4087 147.141H58.2654V150.557C58.5066 150.348 58.7638 150.115 59.0371 149.849L59.238 150.653C58.7316 151.127 58.1931 151.553 57.6224 151.923L57.3331 151.24C57.4617 151.127 57.534 150.991 57.534 150.83V147.872H56.4087V147.141ZM65.135 145.172H71.4687V145.911H70.1827V147.84H71.8786V148.579H70.1827V152.06H69.4191V148.579H67.265C67.1846 149.383 67.0319 150.05 66.7907 150.589C66.4853 151.264 65.9709 151.787 65.2555 152.148L64.8456 151.505C65.4886 151.127 65.9307 150.645 66.1638 150.066C66.3165 149.649 66.421 149.15 66.4853 148.579H64.717V147.84H66.5416C66.5416 147.776 66.5496 147.711 66.5496 147.663V145.911H65.135V145.172ZM67.3212 145.911V147.663C67.3212 147.727 67.3132 147.784 67.3132 147.84H69.4191V145.911H67.3212ZM76.8513 148.17H75.7581V147.47C76.6583 146.956 77.4862 146.417 78.2498 145.847H75.8707V145.147H79.3831V145.806C78.6678 146.409 77.8881 146.98 77.0522 147.51H79.9779C79.9217 149.448 79.8252 150.685 79.6805 151.232C79.5358 151.778 79.15 152.052 78.5231 152.068C78.2579 152.068 78.0006 152.06 77.7515 152.044L77.5425 151.304C77.8399 151.336 78.1293 151.353 78.4186 151.353C78.6919 151.344 78.8768 151.216 78.9893 150.959C79.0857 150.742 79.1581 149.809 79.2063 148.17H78.7964C78.6035 149.118 78.3222 149.857 77.9524 150.404C77.5345 151.015 76.9075 151.561 76.0716 152.044L75.6054 151.441C76.3449 151.031 76.9156 150.573 77.3014 150.066C77.639 149.6 77.8881 148.965 78.0649 148.17H77.5746C77.2853 149.174 76.7789 149.962 76.0636 150.525L75.5893 149.93C76.1761 149.472 76.594 148.885 76.8513 148.17ZM72.8324 146.908H73.7326V144.938H74.5042V146.908H75.4447V147.639H74.5042V150.235C74.8258 150.131 75.1312 150.018 75.4366 149.906V150.701C74.665 150.999 73.8291 151.248 72.9449 151.449L72.744 150.645C73.0816 150.589 73.4111 150.525 73.7326 150.444V147.639H72.8324V146.908ZM87.5307 145.975V152.148H86.7671V151.578H82.5151V152.164H81.7516V145.975H83.6806C83.8414 145.573 83.97 145.147 84.0503 144.713L84.8943 144.826C84.8139 145.236 84.6934 145.622 84.5406 145.975H87.5307ZM82.5151 150.838H86.7671V149.054H82.5151V150.838ZM82.5151 148.33H86.7671V146.699H82.5151V148.33Z" fill="#485264"/>
<rect x="34.1503" y="159.15" width="160.699" height="78.6994" rx="2.84972" fill="#F7F8FA"/>
<rect x="34.1503" y="159.15" width="160.699" height="78.6994" rx="2.84972" stroke="#E8EBF0" stroke-width="0.300568"/>
<path d="M188.291 236.118L193.043 231.366" stroke="#8A95A7" stroke-width="0.644535" stroke-linecap="round"/>
<path d="M190.476 236.126L193.043 233.559" stroke="#8A95A7" stroke-width="0.644535" stroke-linecap="round"/>
<path d="M45.567 171.659H45.021L44.874 171.043C45.042 171.071 45.196 171.085 45.35 171.085C45.462 171.085 45.525 170.994 45.525 170.819V169.188H46.183V170.98C46.183 171.428 45.973 171.659 45.567 171.659ZM42.627 169.818C42.466 169.993 42.305 170.154 42.137 170.308L41.71 169.804C42.305 169.3 42.816 168.607 43.236 167.718L43.88 167.865C43.691 168.271 43.488 168.642 43.271 168.978V171.645H42.627V169.818ZM44.811 167.711L45.441 167.858C45.364 168.019 45.287 168.173 45.217 168.313H47.968V168.726C47.877 169.076 47.765 169.419 47.625 169.755L47.037 169.594C47.142 169.391 47.233 169.167 47.31 168.915H44.86C44.594 169.3 44.307 169.636 43.992 169.923L43.586 169.426C44.062 169.006 44.475 168.439 44.811 167.711ZM42.494 171.953L43.138 172.086C42.97 172.772 42.732 173.374 42.431 173.885L41.864 173.521C42.158 173.031 42.368 172.513 42.494 171.953ZM46.022 174.081H44.244C43.768 174.081 43.53 173.822 43.53 173.311V171.89H44.202V173.178C44.202 173.36 44.286 173.451 44.454 173.451H45.896C46.015 173.451 46.106 173.409 46.169 173.332C46.239 173.248 46.288 172.996 46.309 172.569L46.939 172.779C46.883 173.409 46.785 173.787 46.638 173.913C46.498 174.025 46.295 174.081 46.022 174.081ZM47.268 171.708C47.716 172.324 48.052 172.863 48.29 173.325L47.737 173.71C47.485 173.206 47.149 172.653 46.729 172.044L47.268 171.708ZM44.622 169.804L45.154 170.056C44.902 170.588 44.601 171.05 44.251 171.442L43.747 171.092C44.09 170.728 44.384 170.294 44.622 169.804ZM47.086 169.797C47.422 170.217 47.716 170.672 47.975 171.176L47.408 171.47C47.142 170.931 46.855 170.455 46.533 170.042L47.086 169.797ZM45.154 171.708C45.49 172.093 45.742 172.429 45.917 172.723L45.399 173.087C45.217 172.765 44.965 172.415 44.65 172.03L45.154 171.708ZM50.0479 167.662L50.6989 167.718C50.6219 168.18 50.5449 168.607 50.4679 169.006H51.6369V169.37C51.5879 170.462 51.3709 171.414 50.9929 172.226C51.3849 172.527 51.6999 172.8 51.9379 173.038L51.4829 173.563C51.2589 173.332 50.9859 173.08 50.6779 172.814C50.3349 173.36 49.9079 173.836 49.3969 174.228L48.9419 173.668C49.4389 173.311 49.8449 172.884 50.1599 172.387C49.8379 172.128 49.4879 171.862 49.1099 171.582C49.3199 170.98 49.5019 170.336 49.6699 169.643H48.9979V169.006H49.8099C49.8939 168.572 49.9779 168.124 50.0479 167.662ZM50.4609 171.827C50.7549 171.183 50.9299 170.455 50.9859 169.643H50.3349C50.1739 170.329 50.0059 170.91 49.8379 171.379C50.0619 171.533 50.2719 171.687 50.4609 171.827ZM51.8049 170.609H53.3239V169.804C53.6739 169.489 54.0169 169.111 54.3389 168.677H52.0009V168.033H55.1019V168.677C54.7729 169.146 54.4019 169.587 53.9889 170.007V170.609H55.3539V171.253H53.9889V173.332C53.9889 173.85 53.7859 174.109 53.3939 174.109H52.3579L52.1829 173.479C52.4699 173.479 52.7849 173.486 53.1209 173.486C53.2539 173.486 53.3239 173.367 53.3239 173.129V171.253H51.8049V170.609ZM57.1119 172.464C57.2939 172.464 57.4409 172.534 57.5669 172.681C57.6789 172.835 57.7419 173.024 57.7419 173.262C57.7419 173.619 57.6369 173.927 57.4269 174.193C57.2169 174.459 56.9369 174.641 56.5869 174.739V174.305C56.7759 174.235 56.9369 174.13 57.0629 173.976C57.1749 173.815 57.2379 173.654 57.2379 173.486C57.1959 173.5 57.1399 173.507 57.0699 173.507C56.9229 173.507 56.8039 173.458 56.7059 173.36C56.6079 173.262 56.5589 173.136 56.5589 172.989C56.5589 172.828 56.6079 172.702 56.7129 172.604C56.8109 172.506 56.9439 172.464 57.1119 172.464ZM67.1228 167.725H67.7598V168.131H69.4398V168.67H67.7598V169.013H69.1948V169.538H67.7598V169.888H69.6148V170.441H65.2888V169.888H67.1228V169.538H65.7788V169.013H67.1228V168.67H65.4848V168.131H67.1228V167.725ZM66.4158 172.205V172.597H68.4948V172.205H66.4158ZM68.4948 171.701V171.302H66.4158V171.701H68.4948ZM66.4158 173.101V174.186H65.7858V170.763H69.1318V173.493C69.1318 173.927 68.9078 174.144 68.4668 174.144H67.8858L67.7318 173.556L68.2778 173.591C68.4178 173.591 68.4948 173.514 68.4948 173.36V173.101H66.4158ZM64.1198 167.781C64.5678 168.124 64.9528 168.467 65.2608 168.81L64.8058 169.272C64.5328 168.95 64.1478 168.6 63.6508 168.236L64.1198 167.781ZM63.1678 169.811H64.7568V172.737C64.9388 172.562 65.1208 172.373 65.3168 172.17L65.4918 172.87C65.0858 173.29 64.6518 173.661 64.1968 173.983L63.9448 173.381C64.0568 173.283 64.1198 173.157 64.1198 173.01V170.448H63.1678V169.811ZM75.5448 174.144H74.8308L74.6628 173.521L75.4118 173.535C75.6498 173.535 75.7758 173.402 75.7758 173.143V168.726H73.1298V168.082H76.4548V173.318C76.4548 173.864 76.1468 174.144 75.5448 174.144ZM70.6168 168.887H71.2958V174.193H70.6168V168.887ZM72.1848 169.839H74.8588V172.625H72.1848V169.839ZM74.1938 171.988V170.476H72.8498V171.988H74.1938ZM71.8278 167.655C72.1428 168.033 72.4228 168.453 72.6748 168.908L72.0798 169.216C71.8138 168.726 71.5268 168.299 71.2118 167.928L71.8278 167.655ZM79.7037 170.336V170.952H82.3217V170.336H79.7037ZM82.3217 171.533H79.7037V172.135H82.3217V171.533ZM82.3217 172.709H79.7037V174.172H79.0807V170.679C78.7167 171.106 78.3177 171.498 77.8697 171.862L77.4427 171.302C78.2547 170.658 78.8987 169.916 79.3607 169.09H77.6317V168.446H79.6827C79.7877 168.194 79.8787 167.935 79.9627 167.683L80.6417 167.76C80.5717 167.998 80.4947 168.229 80.4107 168.446H83.7917V169.09H80.1237C80.0117 169.321 79.8857 169.545 79.7527 169.762H82.9447V173.549C82.9447 173.934 82.7207 174.13 82.2727 174.144H81.4887L81.3277 173.542C81.5867 173.563 81.8317 173.577 82.0627 173.577C82.2307 173.577 82.3217 173.5 82.3217 173.346V172.709ZM85.4516 170.385C85.2276 170.679 84.9826 170.959 84.7166 171.232L84.5066 170.539C85.2276 169.72 85.7596 168.768 86.1097 167.683L86.7326 167.977C86.5716 168.467 86.3616 168.943 86.1097 169.391V174.2H85.4516V170.385ZM88.3846 167.732H89.0707V169.972H90.9957V170.63H89.0707V174.186H88.3846V170.63H86.5927V169.972H88.3846V167.732ZM96.4986 171.099C97.0796 171.939 97.5766 172.842 97.9896 173.801L97.3386 174.095C97.2406 173.864 97.1356 173.64 97.0376 173.423C95.8616 173.633 94.3916 173.787 92.6416 173.892L92.4596 173.22C92.6416 173.15 92.8306 173.003 93.0266 172.793C93.9926 171.729 94.9026 170.441 95.7706 168.929L96.4426 169.265C95.3226 171.092 94.3916 172.387 93.6566 173.157C94.7066 173.073 95.7356 172.961 96.7436 172.814C96.4636 172.268 96.1696 171.764 95.8616 171.302L96.4986 171.099ZM94.3916 167.683L95.1196 167.844C94.3426 169.412 93.3626 170.686 92.1866 171.652L91.7176 171.092C92.7536 170.273 93.6496 169.139 94.3916 167.683ZM98.9355 168.11H105.222V168.754H104.34V173.381C104.34 173.885 104.095 174.137 103.619 174.137H102.443L102.289 173.493C102.674 173.514 103.038 173.528 103.388 173.528C103.577 173.528 103.675 173.423 103.675 173.213V168.754H98.9355V168.11ZM102.548 169.664V172.359H100.343V172.933H99.7055V169.664H102.548ZM100.343 171.757H101.918V170.259H100.343V171.757ZM108.442 168.453C109.051 169.195 109.52 169.839 109.842 170.399L109.275 170.784C108.939 170.196 108.47 169.531 107.882 168.803L108.442 168.453ZM110.766 172.065C110.311 172.863 109.597 173.542 108.624 174.116L108.176 173.563C109.345 172.877 110.108 172.037 110.472 171.043C110.752 170.196 110.892 169.104 110.906 167.767H111.592C111.592 169.097 111.445 170.231 111.151 171.155L111.067 171.414C111.613 172.121 112.075 172.821 112.46 173.521L111.949 174.032C111.655 173.416 111.256 172.758 110.766 172.065ZM106.559 173.472L106.335 172.842C106.475 172.723 106.552 172.562 106.552 172.352V167.872H107.238V172.506C107.742 172.296 108.239 172.044 108.743 171.736L108.932 172.387C108.19 172.807 107.399 173.164 106.559 173.472ZM113.399 168.124H114.771V167.739H115.422V168.124H116.556V168.698H115.422V169.069H116.388V169.608H115.408C115.394 169.734 115.38 169.86 115.359 169.972H116.556V170.546H115.191C115.128 170.686 115.058 170.812 114.981 170.924C114.715 171.274 114.288 171.554 113.693 171.75L113.357 171.218C113.889 171.043 114.246 170.819 114.442 170.546H113.252V169.972H114.687C114.715 169.853 114.736 169.734 114.75 169.608H113.574V169.069H114.771V168.698H113.399V168.124ZM116.073 171.155H116.731V171.75H118.887V173.164C118.887 173.577 118.663 173.787 118.222 173.787H117.641L117.473 173.178L118.012 173.199C118.159 173.199 118.236 173.136 118.236 173.017V172.366H116.731V174.242H116.073V172.366H114.596V173.836H113.938V171.75H116.073V171.155ZM116.892 167.956H119.307V168.411C119.146 168.761 118.95 169.104 118.726 169.44C119.146 169.762 119.363 170.049 119.363 170.315C119.356 170.735 119.153 170.994 118.761 171.092C118.572 171.148 118.313 171.176 117.991 171.176L117.753 170.546C117.949 170.574 118.124 170.588 118.271 170.588C118.537 170.574 118.67 170.483 118.67 170.315C118.67 170.133 118.432 169.846 117.97 169.44C118.194 169.167 118.39 168.88 118.551 168.572H117.557V171.365H116.892V167.956ZM124.04 171.659H123.494L123.347 171.043C123.515 171.071 123.669 171.085 123.823 171.085C123.935 171.085 123.998 170.994 123.998 170.819V169.188H124.656V170.98C124.656 171.428 124.446 171.659 124.04 171.659ZM121.1 169.818C120.939 169.993 120.778 170.154 120.61 170.308L120.183 169.804C120.778 169.3 121.289 168.607 121.709 167.718L122.353 167.865C122.164 168.271 121.961 168.642 121.744 168.978V171.645H121.1V169.818ZM123.284 167.711L123.914 167.858C123.837 168.019 123.76 168.173 123.69 168.313H126.441V168.726C126.35 169.076 126.238 169.419 126.098 169.755L125.51 169.594C125.615 169.391 125.706 169.167 125.783 168.915H123.333C123.067 169.3 122.78 169.636 122.465 169.923L122.059 169.426C122.535 169.006 122.948 168.439 123.284 167.711ZM120.967 171.953L121.611 172.086C121.443 172.772 121.205 173.374 120.904 173.885L120.337 173.521C120.631 173.031 120.841 172.513 120.967 171.953ZM124.495 174.081H122.717C122.241 174.081 122.003 173.822 122.003 173.311V171.89H122.675V173.178C122.675 173.36 122.759 173.451 122.927 173.451H124.369C124.488 173.451 124.579 173.409 124.642 173.332C124.712 173.248 124.761 172.996 124.782 172.569L125.412 172.779C125.356 173.409 125.258 173.787 125.111 173.913C124.971 174.025 124.768 174.081 124.495 174.081ZM125.741 171.708C126.189 172.324 126.525 172.863 126.763 173.325L126.21 173.71C125.958 173.206 125.622 172.653 125.202 172.044L125.741 171.708ZM123.095 169.804L123.627 170.056C123.375 170.588 123.074 171.05 122.724 171.442L122.22 171.092C122.563 170.728 122.857 170.294 123.095 169.804ZM125.559 169.797C125.895 170.217 126.189 170.672 126.448 171.176L125.881 171.47C125.615 170.931 125.328 170.455 125.006 170.042L125.559 169.797ZM123.627 171.708C123.963 172.093 124.215 172.429 124.39 172.723L123.872 173.087C123.69 172.765 123.438 172.415 123.123 172.03L123.627 171.708ZM128.934 168.369C129.382 168.369 129.746 168.488 130.026 168.74C130.306 168.985 130.446 169.321 130.446 169.741C130.446 170.084 130.355 170.371 130.18 170.595C130.117 170.672 129.921 170.854 129.592 171.141C129.459 171.253 129.361 171.379 129.298 171.505C129.221 171.645 129.186 171.799 129.186 171.967V172.086H128.437V171.967C128.437 171.708 128.479 171.484 128.577 171.302C128.668 171.106 128.934 170.819 129.368 170.434L129.487 170.301C129.613 170.14 129.683 169.972 129.683 169.79C129.683 169.545 129.613 169.356 129.48 169.216C129.34 169.076 129.137 169.006 128.885 169.006C128.57 169.006 128.339 169.104 128.199 169.307C128.073 169.475 128.01 169.713 128.01 170.021H127.275C127.275 169.51 127.422 169.111 127.716 168.817C128.01 168.516 128.416 168.369 128.934 168.369ZM128.808 172.464C128.955 172.464 129.081 172.506 129.179 172.604C129.277 172.695 129.326 172.814 129.326 172.961C129.326 173.108 129.27 173.227 129.172 173.325C129.074 173.416 128.948 173.465 128.808 173.465C128.668 173.465 128.542 173.416 128.444 173.318C128.346 173.22 128.297 173.101 128.297 172.961C128.297 172.814 128.346 172.695 128.444 172.604C128.542 172.506 128.668 172.464 128.808 172.464Z" fill="#485264"/>
<rect x="21" y="43" width="187" height="61" rx="7" fill="white"/>
<rect x="52" y="54" width="21" height="5" rx="2.5" fill="#F0F1F6"/>
<rect x="34" y="70" width="66" height="5" rx="2.5" fill="#F0F1F6"/>
<rect x="35" y="52" width="12.5684" height="12.7581" rx="2.85316" fill="#E8EBF0"/>
<path d="M212 50C212 46.134 215.134 43 219 43H407C410.866 43 414 46.134 414 50V259C414 262.866 410.866 266 407 266H219C215.134 266 212 262.866 212 259V50Z" fill="white"/>
<rect x="222.374" y="55.3737" width="22.1989" height="22.1989" rx="4.62634" fill="#FBFBFC"/>
<rect x="222.374" y="55.3737" width="22.1989" height="22.1989" rx="4.62634" stroke="#E8EBF0" stroke-width="0.747312"/>
<path d="M234.965 63.5255C234.965 62.9244 234.78 62.3369 234.433 61.8371C234.086 61.3373 233.592 60.9478 233.015 60.7178C232.438 60.4878 231.802 60.4276 231.189 60.5448C230.577 60.6621 230.014 60.9515 229.572 61.3766C229.13 61.8016 228.829 62.3431 228.707 62.9326C228.585 63.5221 228.648 64.1332 228.887 64.6885C229.126 65.2438 229.531 65.7184 230.05 66.0524C230.57 66.3863 231.181 66.5645 231.806 66.5645V63.5255H234.965Z" fill="url(#paint0_linear_9494_29008)"/>
<path d="M238.3 63.5255C238.3 63.1264 238.227 62.7312 238.084 62.3625C237.942 61.9938 237.733 61.6588 237.47 61.3766C237.207 61.0944 236.895 60.8705 236.551 60.7178C236.207 60.565 235.839 60.4864 235.467 60.4864C235.095 60.4864 234.727 60.565 234.383 60.7178C234.039 60.8705 233.727 61.0944 233.464 61.3766C233.201 61.6588 232.992 61.9938 232.85 62.3625C232.707 62.7312 232.634 63.1264 232.634 63.5255L238.3 63.5255Z" fill="url(#paint1_linear_9494_29008)"/>
<path d="M237.78 68.3971C237.78 68.0581 237.722 67.7224 237.609 67.4091C237.496 67.0959 237.33 66.8113 237.121 66.5715C236.912 66.3318 236.664 66.1416 236.391 66.0119C236.117 65.8821 235.825 65.8154 235.529 65.8154V68.3971H237.78Z" fill="url(#paint2_linear_9494_29008)"/>
<path d="M231.806 67.466C231.391 67.466 230.98 67.5375 230.597 67.6766C230.213 67.8156 229.865 68.0194 229.572 68.2763C229.278 68.5333 229.045 68.8383 228.887 69.174C228.728 69.5096 228.646 69.8694 228.646 70.2328C228.646 70.5961 228.728 70.9559 228.887 71.2916C229.045 71.6273 229.278 71.9323 229.572 72.1892C229.865 72.4461 230.213 72.6499 230.597 72.789C230.98 72.928 231.391 72.9996 231.806 72.9996L231.806 67.466Z" fill="url(#paint3_linear_9494_29008)"/>
<path d="M231.806 63.4051L231.806 70.2024L228.646 70.2024L228.646 63.4051H231.806Z" fill="url(#paint4_linear_9494_29008)"/>
<path d="M235.563 63.525L231.77 63.525L231.77 60.4864L235.563 60.4864V63.525Z" fill="url(#paint5_linear_9494_29008)"/>
<path d="M235.563 68.3961H233.464V65.8154L235.563 65.8154V68.3961Z" fill="url(#paint6_linear_9494_29008)"/>
<g filter="url(#filter0_dd_9494_29008)">
<rect x="224" y="233" width="178" height="23" rx="4" fill="white"/>
<rect x="224.283" y="233.283" width="177.435" height="22.4345" rx="3.71727" stroke="#DFE2EA" stroke-width="0.565456"/>
<rect x="232.088" y="242.173" width="47.5002" height="4.25025" rx="2.12513" fill="#E8EBF0"/>
<rect x="381.344" y="238.121" width="12.5684" height="12.7581" rx="2.85316" fill="#E8EBF0"/>
</g>
<g filter="url(#filter1_dd_4847_12631)">
<rect x="235" y="234" width="171" height="23" rx="4" fill="white"/>
<rect x="235.283" y="234.283" width="170.435" height="22.4345" rx="3.71727" stroke="#DFE2EA" stroke-width="0.565456"/>
<rect x="243.088" y="243.172" width="47.5002" height="4.25025" rx="2.12513" fill="#E8EBF0"/>
<rect x="385.344" y="239.121" width="12.5684" height="12.7581" rx="2.85316" fill="#E8EBF0"/>
<g filter="url(#filter1_dd_9494_29008)">
<path d="M222 83H378.029C380.775 83 383 85.2254 383 87.9706V103.029C383 105.775 380.775 108 378.029 108H226.971C224.225 108 222 105.775 222 103.029V83Z" fill="white" shape-rendering="crispEdges"/>
<path d="M234.17 96.3911H233.543L233.374 95.6838C233.567 95.7159 233.744 95.732 233.921 95.732C234.049 95.732 234.122 95.6275 234.122 95.4266V93.5538H234.877V95.6115C234.877 96.1259 234.636 96.3911 234.17 96.3911ZM230.794 94.2772C230.609 94.4781 230.424 94.663 230.231 94.8398L229.741 94.2611C230.424 93.6824 231.011 92.8867 231.493 91.8659L232.233 92.0347C232.016 92.5009 231.783 92.9269 231.534 93.3127V96.375H230.794V94.2772ZM233.302 91.8578L234.025 92.0266C233.937 92.2115 233.848 92.3883 233.768 92.5491H236.927V93.0233C236.822 93.4252 236.694 93.819 236.533 94.2049L235.858 94.02C235.978 93.7869 236.083 93.5297 236.171 93.2403H233.358C233.053 93.6824 232.723 94.0682 232.361 94.3978L231.895 93.8271C232.442 93.3448 232.916 92.6938 233.302 91.8578ZM230.641 96.7287L231.381 96.8814C231.188 97.6691 230.915 98.3604 230.569 98.9471L229.918 98.5291C230.256 97.9665 230.497 97.3717 230.641 96.7287ZM234.692 99.1722H232.651C232.104 99.1722 231.831 98.8748 231.831 98.288V96.6564H232.603V98.1353C232.603 98.3443 232.699 98.4488 232.892 98.4488H234.548C234.684 98.4488 234.789 98.4005 234.861 98.3121C234.942 98.2157 234.998 97.9263 235.022 97.436L235.745 97.6771C235.681 98.4005 235.568 98.8346 235.4 98.9793C235.239 99.1079 235.006 99.1722 234.692 99.1722ZM236.123 96.4474C236.637 97.1547 237.023 97.7736 237.297 98.3041L236.662 98.7462C236.372 98.1674 235.986 97.5325 235.504 96.8332L236.123 96.4474ZM233.085 94.2611L233.696 94.5505C233.406 95.1613 233.061 95.6918 232.659 96.1419L232.08 95.7401C232.474 95.3221 232.812 94.8238 233.085 94.2611ZM235.914 94.2531C236.3 94.7353 236.637 95.2578 236.935 95.8365L236.284 96.1741C235.978 95.5552 235.649 95.0086 235.279 94.5344L235.914 94.2531ZM233.696 96.4474C234.081 96.8895 234.371 97.2753 234.572 97.6128L233.977 98.0308C233.768 97.6611 233.479 97.2592 233.117 96.8171L233.696 96.4474ZM239.295 91.8016L240.043 91.8659C239.954 92.3964 239.866 92.8867 239.778 93.3448H241.12V93.7628C241.064 95.0167 240.814 96.1098 240.38 97.0422C240.83 97.3878 241.192 97.7013 241.465 97.9745L240.943 98.5774C240.686 98.3121 240.372 98.0228 240.019 97.7173C239.625 98.3443 239.135 98.8908 238.548 99.341L238.025 98.6979C238.596 98.288 239.062 97.7977 239.424 97.227C239.054 96.9296 238.652 96.6242 238.218 96.3027C238.459 95.6115 238.668 94.872 238.861 94.0763H238.09V93.3448H239.022C239.118 92.8465 239.215 92.3321 239.295 91.8016ZM239.769 96.584C240.107 95.8446 240.308 95.0086 240.372 94.0763H239.625C239.44 94.864 239.247 95.5311 239.054 96.0696C239.311 96.2464 239.552 96.4233 239.769 96.584ZM241.313 95.1855H243.057V94.2611C243.459 93.8994 243.853 93.4654 244.222 92.9671H241.538V92.2276H245.098V92.9671C244.721 93.5056 244.295 94.012 243.82 94.4942V95.1855H245.388V95.9249H243.82V98.3121C243.82 98.9069 243.587 99.2043 243.137 99.2043H241.948L241.747 98.4809C242.076 98.4809 242.438 98.489 242.824 98.489C242.977 98.489 243.057 98.3523 243.057 98.079V95.9249H241.313V95.1855ZM247.387 97.3155C247.596 97.3155 247.764 97.3958 247.909 97.5646C248.038 97.7414 248.11 97.9585 248.11 98.2318C248.11 98.6417 247.989 98.9953 247.748 99.3008C247.507 99.6062 247.186 99.8152 246.784 99.9277V99.4294C247.001 99.349 247.186 99.2284 247.33 99.0516C247.459 98.8667 247.531 98.6819 247.531 98.489C247.483 98.505 247.419 98.5131 247.338 98.5131C247.17 98.5131 247.033 98.4568 246.92 98.3443C246.808 98.2318 246.752 98.0871 246.752 97.9183C246.752 97.7334 246.808 97.5887 246.928 97.4762C247.041 97.3637 247.194 97.3155 247.387 97.3155ZM258.862 91.8739H259.593V92.3401H261.522V92.959H259.593V93.3529H261.241V93.9557H259.593V94.3576H261.723V94.9926H256.756V94.3576H258.862V93.9557H257.318V93.3529H258.862V92.959H256.981V92.3401H258.862V91.8739ZM258.05 97.0181V97.4682H260.437V97.0181H258.05ZM260.437 96.4393V95.9812H258.05V96.4393H260.437ZM258.05 98.0469V99.2927H257.326V95.3623H261.169V98.497C261.169 98.9953 260.911 99.2445 260.405 99.2445H259.738L259.561 98.5693L260.188 98.6095C260.349 98.6095 260.437 98.5211 260.437 98.3443V98.0469H258.05ZM255.414 91.9382C255.928 92.3321 256.37 92.7259 256.724 93.1198L256.201 93.6503C255.888 93.2805 255.446 92.8786 254.875 92.4607L255.414 91.9382ZM254.32 94.2692H256.145V97.6289C256.354 97.428 256.563 97.211 256.788 96.9779L256.989 97.7816C256.523 98.2639 256.024 98.6899 255.502 99.0596L255.213 98.3684C255.341 98.2559 255.414 98.1112 255.414 97.9424V95.0006H254.32V94.2692ZM268.512 99.2445H267.692L267.5 98.5291L268.36 98.5452C268.633 98.5452 268.778 98.3925 268.778 98.0951V93.0233H265.739V92.2838H269.557V98.2961C269.557 98.923 269.204 99.2445 268.512 99.2445ZM262.854 93.2082H263.633V99.3008H262.854V93.2082ZM264.654 94.3013H267.725V97.5003H264.654V94.3013ZM266.961 96.7689V95.0327H265.418V96.7689H266.961ZM264.244 91.7935C264.606 92.2276 264.927 92.7098 265.217 93.2323L264.534 93.586C264.228 93.0233 263.899 92.533 263.537 92.107L264.244 91.7935ZM273.268 94.872V95.5793H276.274V94.872H273.268ZM276.274 96.2464H273.268V96.9377H276.274V96.2464ZM276.274 97.5968H273.268V99.2767H272.553V95.2658C272.135 95.7561 271.676 96.2062 271.162 96.6242L270.672 95.9812C271.604 95.2417 272.344 94.3897 272.874 93.4413H270.889V92.7018H273.244C273.364 92.4124 273.469 92.1151 273.565 91.8257L274.345 91.9141C274.265 92.1874 274.176 92.4526 274.08 92.7018H277.962V93.4413H273.75C273.622 93.7065 273.477 93.9637 273.324 94.2129H276.989V98.5613C276.989 99.0034 276.732 99.2284 276.218 99.2445H275.318L275.133 98.5533C275.43 98.5774 275.711 98.5934 275.977 98.5934C276.17 98.5934 276.274 98.505 276.274 98.3282V97.5968ZM279.848 94.9283C279.591 95.2658 279.31 95.5873 279.004 95.9008L278.763 95.1051C279.591 94.1647 280.202 93.0715 280.604 91.8257L281.319 92.1633C281.134 92.7259 280.893 93.2725 280.604 93.7869V99.3088H279.848V94.9283ZM283.216 91.882H284.004V94.454H286.214V95.2096H284.004V99.2927H283.216V95.2096H281.158V94.454H283.216V91.882ZM292.513 95.7481C293.18 96.7126 293.751 97.7495 294.225 98.8507L293.477 99.1882C293.365 98.923 293.244 98.6658 293.132 98.4166C291.781 98.6577 290.093 98.8346 288.084 98.9551L287.875 98.1835C288.084 98.1031 288.301 97.9344 288.526 97.6932C289.635 96.4715 290.68 94.9926 291.677 93.2564L292.449 93.6422C291.162 95.7401 290.093 97.227 289.25 98.1112C290.455 98.0147 291.637 97.8861 292.794 97.7173C292.473 97.0904 292.135 96.5117 291.781 95.9812L292.513 95.7481ZM290.093 91.8257L290.929 92.0106C290.037 93.811 288.912 95.2739 287.562 96.3831L287.023 95.7401C288.213 94.7996 289.241 93.4975 290.093 91.8257ZM295.291 92.316H302.509V93.0555H301.496V98.3684C301.496 98.9471 301.215 99.2365 300.668 99.2365H299.318L299.141 98.497C299.583 98.5211 300.001 98.5372 300.403 98.5372C300.62 98.5372 300.733 98.4166 300.733 98.1755V93.0555H295.291V92.316ZM299.439 94.1004V97.1949H296.907V97.854H296.175V94.1004H299.439ZM296.907 96.5036H298.715V94.7836H296.907V96.5036ZM306.188 92.7098C306.887 93.5618 307.425 94.3013 307.795 94.9443L307.144 95.3864C306.758 94.7112 306.22 93.9477 305.545 93.1117L306.188 92.7098ZM308.856 96.8573C308.334 97.7736 307.514 98.5533 306.397 99.2124L305.882 98.5774C307.224 97.7897 308.101 96.8252 308.519 95.6838C308.84 94.7112 309.001 93.4574 309.017 91.9221H309.805C309.805 93.4493 309.636 94.7514 309.298 95.8124L309.202 96.1098C309.829 96.9216 310.359 97.7254 310.801 98.5291L310.214 99.1159C309.877 98.4086 309.419 97.653 308.856 96.8573ZM304.025 98.4729L303.768 97.7495C303.929 97.6128 304.017 97.428 304.017 97.1868V92.0427H304.805V97.3637C305.384 97.1225 305.955 96.8332 306.533 96.4795L306.75 97.227C305.898 97.7093 304.99 98.1192 304.025 98.4729ZM311.86 92.3321H313.435V91.89H314.182V92.3321H315.485V92.9912H314.182V93.4172H315.292V94.0361H314.166C314.15 94.1807 314.134 94.3254 314.11 94.454H315.485V95.1131H313.917C313.845 95.2739 313.764 95.4186 313.676 95.5472C313.371 95.949 312.88 96.2705 312.197 96.4956L311.811 95.8847C312.422 95.6838 312.832 95.4266 313.057 95.1131H311.691V94.454H313.338C313.371 94.3174 313.395 94.1807 313.411 94.0361H312.06V93.4172H313.435V92.9912H311.86V92.3321ZM314.93 95.8124H315.685V96.4956H318.161V98.1192C318.161 98.5934 317.904 98.8346 317.397 98.8346H316.73L316.537 98.1353L317.156 98.1594C317.325 98.1594 317.414 98.0871 317.414 97.9504V97.2029H315.685V99.357H314.93V97.2029H313.234V98.8908H312.478V96.4956H314.93V95.8124ZM315.87 92.1392H318.643V92.6616C318.458 93.0635 318.233 93.4574 317.976 93.8432C318.458 94.2129 318.708 94.5424 318.708 94.8479C318.7 95.3301 318.467 95.6275 318.016 95.7401C317.799 95.8044 317.502 95.8365 317.132 95.8365L316.859 95.1131C317.084 95.1453 317.285 95.1613 317.454 95.1613C317.759 95.1453 317.912 95.0408 317.912 94.8479C317.912 94.6389 317.639 94.3093 317.108 93.8432C317.365 93.5297 317.59 93.2001 317.775 92.8465H316.634V96.0535H315.87V92.1392ZM324.058 96.3911H323.431L323.262 95.6838C323.455 95.7159 323.632 95.732 323.809 95.732C323.937 95.732 324.01 95.6275 324.01 95.4266V93.5538H324.765V95.6115C324.765 96.1259 324.524 96.3911 324.058 96.3911ZM320.682 94.2772C320.497 94.4781 320.312 94.663 320.12 94.8398L319.629 94.2611C320.312 93.6824 320.899 92.8867 321.382 91.8659L322.121 92.0347C321.904 92.5009 321.671 92.9269 321.422 93.3127V96.375H320.682V94.2772ZM323.19 91.8578L323.913 92.0266C323.825 92.2115 323.737 92.3883 323.656 92.5491H326.815V93.0233C326.711 93.4252 326.582 93.819 326.421 94.2049L325.746 94.02C325.867 93.7869 325.971 93.5297 326.059 93.2403H323.246C322.941 93.6824 322.611 94.0682 322.25 94.3978L321.783 93.8271C322.33 93.3448 322.804 92.6938 323.19 91.8578ZM320.53 96.7287L321.269 96.8814C321.076 97.6691 320.803 98.3604 320.457 98.9471L319.806 98.5291C320.144 97.9665 320.385 97.3717 320.53 96.7287ZM324.581 99.1722H322.539C321.992 99.1722 321.719 98.8748 321.719 98.288V96.6564H322.491V98.1353C322.491 98.3443 322.587 98.4488 322.78 98.4488H324.436C324.572 98.4488 324.677 98.4005 324.749 98.3121C324.83 98.2157 324.886 97.9263 324.91 97.436L325.633 97.6771C325.569 98.4005 325.457 98.8346 325.288 98.9793C325.127 99.1079 324.894 99.1722 324.581 99.1722ZM326.011 96.4474C326.526 97.1547 326.911 97.7736 327.185 98.3041L326.55 98.7462C326.26 98.1674 325.875 97.5325 325.392 96.8332L326.011 96.4474ZM322.973 94.2611L323.584 94.5505C323.294 95.1613 322.949 95.6918 322.547 96.1419L321.968 95.7401C322.362 95.3221 322.7 94.8238 322.973 94.2611ZM325.802 94.2531C326.188 94.7353 326.526 95.2578 326.823 95.8365L326.172 96.1741C325.867 95.5552 325.537 95.0086 325.167 94.5344L325.802 94.2531ZM323.584 96.4474C323.97 96.8895 324.259 97.2753 324.46 97.6128L323.865 98.0308C323.656 97.6611 323.367 97.2592 323.005 96.8171L323.584 96.4474ZM329.658 92.6134C330.172 92.6134 330.59 92.75 330.912 93.0394C331.233 93.3207 331.394 93.7065 331.394 94.1888C331.394 94.5826 331.289 94.9122 331.088 95.1694C331.016 95.2578 330.791 95.4668 330.413 95.7963C330.26 95.9249 330.148 96.0696 330.076 96.2143C329.987 96.375 329.947 96.5519 329.947 96.7448V96.8814H329.087V96.7448C329.087 96.4474 329.135 96.1902 329.248 95.9812C329.352 95.7561 329.658 95.4266 330.156 94.9845L330.293 94.8318C330.437 94.6469 330.518 94.454 330.518 94.245C330.518 93.9637 330.437 93.7467 330.285 93.586C330.124 93.4252 329.891 93.3448 329.601 93.3448C329.24 93.3448 328.974 93.4574 328.814 93.6904C328.669 93.8833 328.597 94.1566 328.597 94.5103H327.753C327.753 93.9235 327.921 93.4654 328.259 93.1278C328.597 92.7822 329.063 92.6134 329.658 92.6134ZM329.513 97.3155C329.682 97.3155 329.826 97.3637 329.939 97.4762C330.051 97.5807 330.108 97.7173 330.108 97.8861C330.108 98.0549 330.043 98.1916 329.931 98.3041C329.818 98.4086 329.674 98.4648 329.513 98.4648C329.352 98.4648 329.208 98.4086 329.095 98.2961C328.982 98.1835 328.926 98.0469 328.926 97.8861C328.926 97.7173 328.982 97.5807 329.095 97.4762C329.208 97.3637 329.352 97.3155 329.513 97.3155Z" fill="#485264"/>
</g>
<mask id="path-31-inside-3_4847_12631" fill="white">
<path d="M0.290039 11.3546C0.290039 5.55562 4.99105 0.854614 10.79 0.854614H412.133C417.932 0.854614 422.633 5.55562 422.633 11.3546V20.7647H0.290039V11.3546Z"/>
<mask id="path-25-inside-1_9494_29008" fill="white">
<path d="M0.290039 11.3545C0.290039 5.55551 4.99105 0.854507 10.79 0.854507H412.133C417.932 0.854507 422.633 5.55552 422.633 11.3545V20.7646H0.290039V11.3545Z"/>
</mask>
<path d="M0.290039 11.3546C0.290039 5.55562 4.99105 0.854614 10.79 0.854614H412.133C417.932 0.854614 422.633 5.55562 422.633 11.3546V20.7647H0.290039V11.3546Z" fill="#F0F1F6"/>
<path d="M0.290039 0.854614H422.633H0.290039ZM422.633 21.4209H0.290039V20.1084H422.633V21.4209ZM0.290039 20.7647V0.854614V20.7647ZM422.633 0.854614V20.7647V0.854614Z" fill="#DFE2EA" mask="url(#path-31-inside-3_4847_12631)"/>
<circle cx="17.4036" cy="11.6514" r="3.64527" fill="#C4CBD7"/>
<circle cx="31.9846" cy="11.6514" r="3.64527" fill="#C4CBD7"/>
<circle cx="46.5657" cy="11.6514" r="3.64527" fill="#C4CBD7"/>
<path d="M272.663 102.759C271.668 124.34 264.953 138.351 248.755 152.647C234.969 164.814 223.478 169.464 205.11 170.311" stroke="#3370FF" stroke-width="3.04045" stroke-dasharray="4.05 4.05"/>
<path d="M274.956 102.577C274.362 101.134 272.429 100.875 271.476 102.11L263.795 112.073C262.647 113.562 263.968 115.676 265.809 115.296L271.287 114.167C271.751 114.072 272.233 114.142 272.651 114.365L276.846 116.604C278.523 117.5 280.399 115.803 279.675 114.045L274.956 102.577Z" fill="#3370FF"/>
<path d="M0.290039 11.3545C0.290039 5.55551 4.99105 0.854507 10.79 0.854507H412.133C417.932 0.854507 422.633 5.55552 422.633 11.3545V20.7646H0.290039V11.3545Z" fill="#F0F1F6"/>
<path d="M0.290039 0.854507H422.633H0.290039ZM422.633 21.4208H0.290039V20.1083H422.633V21.4208ZM0.290039 20.7646V0.854507V20.7646ZM422.633 0.854507V20.7646V0.854507Z" fill="#DFE2EA" mask="url(#path-25-inside-1_9494_29008)"/>
<circle cx="17.4035" cy="11.6513" r="3.64527" fill="#C4CBD7"/>
<circle cx="31.9845" cy="11.6514" r="3.64527" fill="#C4CBD7"/>
<circle cx="46.5656" cy="11.6514" r="3.64527" fill="#C4CBD7"/>
<path d="M257.5 123.5C254.5 138.5 242.762 155.696 230.5 163.5C219.5 170.5 205 174.5 190 174.5" stroke="#3370FF" stroke-width="2.40329" stroke-dasharray="3.2 3.2"/>
<path d="M260.663 115.788C260.331 114.601 258.838 114.218 257.975 115.099L251.02 122.206C249.98 123.268 250.821 125.05 252.301 124.923L256.706 124.546C257.079 124.514 257.451 124.613 257.758 124.827L260.843 126.975C262.076 127.834 263.706 126.676 263.302 125.229L260.663 115.788Z" fill="#3370FF"/>
</g>
<rect x="0.5" y="0.5" width="421" height="270.5" rx="8.375" stroke="#E8EBF0"/>
<rect x="0.5" y="0.5" width="421" height="270" rx="8.375" stroke="#E8EBF0"/>
<defs>
<filter id="filter0_dd_4847_12631" x="223" y="60" width="181" height="115.425" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<filter id="filter0_dd_9494_29008" x="218.236" y="229.542" width="189.527" height="34.5273" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="0.5"/>
<feGaussianBlur stdDeviation="0.288183"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.0745098 0 0 0 0 0.2 0 0 0 0 0.419608 0 0 0 0.1 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4847_12631"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.0745098 0 0 0 0 0.2 0 0 0 0 0.419608 0 0 0 0.08 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_9494_29008"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="4"/>
<feGaussianBlur stdDeviation="5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.0745098 0 0 0 0 0.2 0 0 0 0 0.419608 0 0 0 0.1 0"/>
<feBlend mode="normal" in2="effect1_dropShadow_4847_12631" result="effect2_dropShadow_4847_12631"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_4847_12631" result="shape"/>
<feOffset dy="2.30546"/>
<feGaussianBlur stdDeviation="2.88183"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.0745098 0 0 0 0 0.2 0 0 0 0 0.419608 0 0 0 0.08 0"/>
<feBlend mode="normal" in2="effect1_dropShadow_9494_29008" result="effect2_dropShadow_9494_29008"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_9494_29008" result="shape"/>
</filter>
<filter id="filter1_dd_4847_12631" x="229.236" y="230.542" width="182.527" height="34.5273" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<filter id="filter1_dd_9494_29008" x="212" y="77" width="181" height="115.425" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset/>
<feGaussianBlur stdDeviation="0.288183"/>
<feGaussianBlur stdDeviation="0.5"/>
<feComposite in2="hardAlpha" operator="out"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.0745098 0 0 0 0 0.2 0 0 0 0 0.419608 0 0 0 0.08 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_4847_12631"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.0745098 0 0 0 0 0.2 0 0 0 0 0.419608 0 0 0 0.1 0"/>
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_9494_29008"/>
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
<feOffset dy="2.30546"/>
<feGaussianBlur stdDeviation="2.88183"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.0745098 0 0 0 0 0.2 0 0 0 0 0.419608 0 0 0 0.08 0"/>
<feBlend mode="normal" in2="effect1_dropShadow_4847_12631" result="effect2_dropShadow_4847_12631"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_4847_12631" result="shape"/>
<feOffset dy="4"/>
<feGaussianBlur stdDeviation="5"/>
<feColorMatrix type="matrix" values="0 0 0 0 0.0745098 0 0 0 0 0.2 0 0 0 0 0.419608 0 0 0 0.1 0"/>
<feBlend mode="normal" in2="effect1_dropShadow_9494_29008" result="effect2_dropShadow_9494_29008"/>
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_9494_29008" result="shape"/>
</filter>
<linearGradient id="paint0_linear_4847_12631" x1="244.473" y1="43.4865" x2="244.473" y2="55.9996" gradientUnits="userSpaceOnUse">
<linearGradient id="paint0_linear_9494_29008" x1="233.473" y1="60.4864" x2="233.473" y2="72.9996" gradientUnits="userSpaceOnUse">
<stop stop-color="#326DFF"/>
<stop offset="1" stop-color="#8EAEFF"/>
</linearGradient>
<linearGradient id="paint1_linear_4847_12631" x1="244.473" y1="43.4865" x2="244.473" y2="55.9996" gradientUnits="userSpaceOnUse">
<linearGradient id="paint1_linear_9494_29008" x1="233.473" y1="60.4864" x2="233.473" y2="72.9996" gradientUnits="userSpaceOnUse">
<stop stop-color="#326DFF"/>
<stop offset="1" stop-color="#8EAEFF"/>
</linearGradient>
<linearGradient id="paint2_linear_4847_12631" x1="244.473" y1="43.4865" x2="244.473" y2="55.9996" gradientUnits="userSpaceOnUse">
<linearGradient id="paint2_linear_9494_29008" x1="233.473" y1="60.4864" x2="233.473" y2="72.9996" gradientUnits="userSpaceOnUse">
<stop stop-color="#326DFF"/>
<stop offset="1" stop-color="#8EAEFF"/>
</linearGradient>
<linearGradient id="paint3_linear_4847_12631" x1="244.473" y1="43.4865" x2="244.473" y2="55.9996" gradientUnits="userSpaceOnUse">
<linearGradient id="paint3_linear_9494_29008" x1="233.473" y1="60.4864" x2="233.473" y2="72.9996" gradientUnits="userSpaceOnUse">
<stop stop-color="#326DFF"/>
<stop offset="1" stop-color="#8EAEFF"/>
</linearGradient>
<linearGradient id="paint4_linear_4847_12631" x1="244.473" y1="43.4865" x2="244.473" y2="55.9996" gradientUnits="userSpaceOnUse">
<linearGradient id="paint4_linear_9494_29008" x1="233.473" y1="60.4864" x2="233.473" y2="72.9996" gradientUnits="userSpaceOnUse">
<stop stop-color="#326DFF"/>
<stop offset="1" stop-color="#8EAEFF"/>
</linearGradient>
<linearGradient id="paint5_linear_4847_12631" x1="244.473" y1="43.4865" x2="244.473" y2="55.9996" gradientUnits="userSpaceOnUse">
<linearGradient id="paint5_linear_9494_29008" x1="233.473" y1="60.4864" x2="233.473" y2="72.9996" gradientUnits="userSpaceOnUse">
<stop stop-color="#326DFF"/>
<stop offset="1" stop-color="#8EAEFF"/>
</linearGradient>
<linearGradient id="paint6_linear_4847_12631" x1="244.473" y1="43.4865" x2="244.473" y2="55.9996" gradientUnits="userSpaceOnUse">
<linearGradient id="paint6_linear_9494_29008" x1="233.473" y1="60.4864" x2="233.473" y2="72.9996" gradientUnits="userSpaceOnUse">
<stop stop-color="#326DFF"/>
<stop offset="1" stop-color="#8EAEFF"/>
</linearGradient>
<clipPath id="clip0_4847_12631">
<rect x="1" y="1" width="420" height="269.5" rx="7.875" fill="white"/>
</clipPath>
<clipPath id="clip1_4847_12631">
<path d="M69 26H410C413.866 26 417 29.134 417 33V259C417 262.866 413.866 266 410 266H69V26Z" fill="white"/>
<clipPath id="clip0_9494_29008">
<rect x="1" y="1" width="420" height="269" rx="7.875" fill="white"/>
</clipPath>
<clipPath id="clip2_4847_12631">
<rect width="11.2528" height="11.2528" fill="white" transform="translate(88 130.047)"/>
<clipPath id="clip1_9494_29008">
<rect width="11.2528" height="11.2528" fill="white" transform="translate(34 142.71)"/>
</clipPath>
</defs>
</svg>
import React from 'react';
import { Box, Flex, useTheme, Grid, type GridProps, theme, Image, Radio } from '@chakra-ui/react';
import MyIcon from '@fastgpt/web/components/common/Icon';
import { Box, Flex, useTheme, Grid, type GridProps, Radio } from '@chakra-ui/react';
import { useTranslation } from 'next-i18next';
import { useToast } from '@fastgpt/web/hooks/useToast';
import Avatar from '@fastgpt/web/components/common/Avatar';
// @ts-ignore
interface Props extends GridProps {
......@@ -53,7 +53,8 @@ const MyRadio = ({
{...(value === item.value
? {
borderColor: 'primary.400',
bg: 'primary.50'
bg: 'primary.50',
color: 'primary.600'
}
: {
bg: 'myWhite.300',
......@@ -74,11 +75,7 @@ const MyRadio = ({
>
{!!item.icon && (
<>
{item.icon.startsWith('/') ? (
<Image src={item.icon} mr={'14px'} w={iconSize} alt={''} fill={'primary.600'} />
) : (
<MyIcon mr={'14px'} name={item.icon as any} w={iconSize} fill={'primary.600'} />
)}
<Avatar src={item.icon} w={iconSize} mr={'14px'} />
</>
)}
<Box pr={hiddenCircle ? 0 : 2} flex={'1 0 0'}>
......
......@@ -136,7 +136,7 @@ const AIChatSettingsModal = ({
{t('common:core.ai.Support tool')}
<QuestionTip ml={1} label={t('common:core.module.template.AI support tool tip')} />
</Box>
<Box flex={1} ml={'10px'}>
<Box flex={1}>
{selectedModel?.toolChoice || selectedModel?.functionCall
? t('common:common.support')
: t('common:common.not_support')}
......
......@@ -50,7 +50,7 @@ const ChatFunctionTip = ({ type }: { type: `${FnTypeEnum}` }) => {
imgUrl: '/imgs/app/welcome.svg'
},
[FnTypeEnum.file]: {
icon: '/imgs/app/welcome-icon.svg',
icon: '/imgs/app/fileinput.svg',
title: t('app:file_upload'),
desc: t('app:file_upload_tip'),
imgUrl: '/imgs/app/fileUploadPlaceholder.png'
......
......@@ -112,13 +112,13 @@ const StandardPlanContentList = ({
{!!planContent.permissionReRank && (
<Flex alignItems={'center'}>
<MyIcon name={'price/right'} w={'16px'} mr={3} />
<Box color={'myGray.600'}>{t('chat:rearrangement')}</Box>
<Box color={'myGray.600'}>{t('support.wallet.subscription.rerank')}</Box>
</Flex>
)}
{!!planContent.permissionWebsiteSync && (
<Flex alignItems={'center'}>
<MyIcon name={'price/right'} w={'16px'} mr={3} />
<Box color={'myGray.600'}>{t('chat:web_site_sync')}</Box>
<Box color={'myGray.600'}>{t('support.wallet.subscription.web_site_sync')}</Box>
</Flex>
)}
</Grid>
......
......@@ -39,6 +39,7 @@ async function handler(
type: app.type,
modules: app.modules,
edges: app.edges,
chatConfig: app.chatConfig,
teamId: app.teamId,
tmbId,
pluginData: app.pluginData
......
......@@ -5,6 +5,10 @@ import { NextAPI } from '@/service/middleware/entry';
import { WritePermissionVal } from '@fastgpt/global/support/permission/constant';
import { CommonErrEnum } from '@fastgpt/global/common/error/code/common';
import { ApiRequestProps } from '@fastgpt/service/type/next';
import { DatasetCollectionTypeEnum } from '@fastgpt/global/core/dataset/constants';
import { ClientSession } from '@fastgpt/service/common/mongo';
import { CollectionWithDatasetType } from '@fastgpt/global/core/dataset/type';
import { mongoSessionRun } from '@fastgpt/service/common/mongo/sessionRun';
export type UpdateDatasetCollectionParams = {
id: string;
......@@ -14,6 +18,52 @@ export type UpdateDatasetCollectionParams = {
forbid?: boolean;
};
// Set folder collection children forbid status
const updateFolderChildrenForbid = async ({
collection,
forbid,
session
}: {
collection: CollectionWithDatasetType;
forbid: boolean;
session: ClientSession;
}) => {
// 从 collection 作为 parent 进行递归查找,找到它所有 forbid 与它相同的 child
const find = async (parentId: string): Promise<string[]> => {
const children = await MongoDatasetCollection.find(
{
teamId: collection.teamId,
datasetId: collection.datasetId,
parentId
},
'_id',
{ session }
);
const idList = children.map((item) => String(item._id));
const IdChildren = (await Promise.all(idList.map(find))).flat();
return [...idList, ...IdChildren];
};
const allChildrenIdList = await find(collection._id);
await MongoDatasetCollection.updateMany(
{
_id: { $in: allChildrenIdList }
},
{
$set: {
forbid
}
},
{
session
}
);
};
async function handler(req: ApiRequestProps<UpdateDatasetCollectionParams>) {
const { id, parentId, name, tags, forbid } = req.body;
......@@ -22,7 +72,7 @@ async function handler(req: ApiRequestProps<UpdateDatasetCollectionParams>) {
}
// 凭证校验
await authDatasetCollection({
const { collection } = await authDatasetCollection({
req,
authToken: true,
authApiKey: true,
......@@ -30,15 +80,32 @@ async function handler(req: ApiRequestProps<UpdateDatasetCollectionParams>) {
per: WritePermissionVal
});
const updateFields: Record<string, any> = {
...(parentId !== undefined && { parentId: parentId || null }),
...(name && { name, updateTime: getCollectionUpdateTime({ name }) }),
...(tags && { tags }),
...(forbid !== undefined && { forbid })
};
await mongoSessionRun(async (session) => {
await MongoDatasetCollection.updateOne(
{
_id: id
},
{
$set: {
...(parentId !== undefined && { parentId: parentId || null }),
...(name && { name, updateTime: getCollectionUpdateTime({ name }) }),
...(tags && { tags }),
...(forbid !== undefined && { forbid })
}
},
{
session
}
);
await MongoDatasetCollection.findByIdAndUpdate(id, {
$set: updateFields
// Folder update forbid
if (collection.type === DatasetCollectionTypeEnum.folder && forbid !== undefined) {
await updateFolderChildrenForbid({
collection,
forbid,
session
});
}
});
}
......
......@@ -76,7 +76,7 @@ const FeiShuEditModal = ({
<Box color="myGray.600">{t('publish:feishu_api')}</Box>
{feConfigs?.docUrl && (
<Link
href={feConfigs.openAPIDocUrl || getDocPath('/docs/use-cases/feishu-bot')}
href={feConfigs.openAPIDocUrl || getDocPath('/docs/use-cases/feishu')}
target={'_blank'}
ml={2}
color={'primary.500'}
......
......@@ -75,7 +75,7 @@ const OffiAccountEditModal = ({
</Box>
<Flex p={8} minH={['auto', '400px']} flexDirection="column" gap={6}>
<Flex alignItems="center">
<Box color="myGray.600">{t('publish:official_account.api')}</Box>
<Box color="myGray.600">{t('publish:official_account.params')}</Box>
{feConfigs?.docUrl && (
<Link
href={feConfigs.openAPIDocUrl || getDocPath('/docs/use-cases/official_account')}
......
......@@ -36,8 +36,9 @@ const SelectAiModelRender = ({ item, inputs = [], nodeId }: RenderInputProps) =>
inputs.find((input) => input.key === NodeInputKeyEnum.aiChatMaxToken)?.value ?? 2048,
temperature:
inputs.find((input) => input.key === NodeInputKeyEnum.aiChatTemperature)?.value ?? 1,
isResponseAnswerText:
inputs.find((input) => input.key === NodeInputKeyEnum.aiChatIsResponseText)?.value ?? true,
isResponseAnswerText: inputs.find(
(input) => input.key === NodeInputKeyEnum.aiChatIsResponseText
)?.value,
aiChatVision:
inputs.find((input) => input.key === NodeInputKeyEnum.aiChatVision)?.value ?? true
}),
......
......@@ -95,6 +95,10 @@ export async function getServerSideProps(context: any) {
const datasetId = context?.query?.datasetId;
return {
props: { currentTab, datasetId, ...(await serviceSideProps(context, ['dataset', 'file'])) }
props: {
currentTab,
datasetId,
...(await serviceSideProps(context, ['dataset', 'file', 'user']))
}
};
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment