@charset "UTF-8";
/* Element Chalk Variables */
/** 全局SCSS变量 */
:root {
  --layout-wrapper-interval: 30px;
  --layout-main-interval: 20px;
  --menu-background: #fff;
  --menu-text: #333;
  --menu-active-text: var(
    --el-menu-active-color
  );
  --menu-hover: #ffffff00;
  --sidebar-logo-background: #f5f5f5;
  --sidebar-logo-text-color: #333;
}

@media screen and (max-width: 1600px) {
  :root {
    --layout-wrapper-interval: 20px;
    --layout-main-interval: 16px;
  }
}
@media screen and (max-width: 1200px) {
  :root {
    --layout-wrapper-interval: 16px;
    --layout-main-interval: 16px;
  }
}
/** 浅色主题-透明侧边栏配色 */
html.sidebar-color-blue {
  --menu-background: #ffffff00;
  --menu-text: #717791;
  --menu-active-text: var(--el-menu-active-color);
  --menu-hover: transform;
  --sidebar-logo-background: #ffffff00;
  --sidebar-logo-text-color: #333;
  --layout-main-background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.72) 11%,
    rgba(255, 255, 255, 0.9) 100%
  );
}

/** 暗黑主题 */
html.dark {
  --menu-background: var(--el-bg-color-overlay);
  --menu-text: #fff;
  --menu-active-text: var(--el-menu-active-color);
  --menu-hover: rgb(0 0 0 / 20%);
  --sidebar-logo-background: rgb(0 0 0 / 20%);
  --sidebar-logo-text-color: #fff;
  --layout-main-background: var(--el-bg-color-overlay);
  /** WangEditor Dark */
  /* Textarea - css vars */
  --w-e-textarea-bg-color: var(--el-bg-color); /* 深色背景 */
  --w-e-textarea-color: var(--el-text-color-primary); /* 浅色文字 */
  --w-e-textarea-border-color: var(--el-border-color); /* 较深的边框颜色 */
  --w-e-textarea-slight-border-color: var(--el-border-color-lighter); /* 更淡一些的边框颜色 */
  --w-e-textarea-slight-color: var(--el-text-color-secondary); /* 浅灰色，用于不那么重要的元素 */
  --w-e-textarea-slight-bg-color: var(--el-bg-color-overlay); /* 稍微亮一点的背景色 */
  --w-e-textarea-selected-border-color: var(--el-color-info-light-5); /* 选中元素时的高亮边框 */
  --w-e-textarea-handler-bg-color: var(--el-color-primary); /* 工具按钮或交互元素的背景色 */
  /* Toolbar - css vars */
  --w-e-toolbar-color: var(--el-text-color-regular); /* 工具栏文字颜色 */
  --w-e-toolbar-bg-color: var(--el-bg-color); /* 工具栏背景颜色 */
  --w-e-toolbar-active-color: var(--el-text-color-primary); /* 当前激活项的文字颜色 */
  --w-e-toolbar-active-bg-color: var(--el-fill-color-light); /* 当前激活项的背景颜色 */
  --w-e-toolbar-disabled-color: var(--el-text-color-secondary); /* 禁用项的颜色 */
  --w-e-toolbar-border-color: var(--el-border-color-base); /* 工具栏边框颜色 */
  /*  Modal - css vars */
  --w-e-modal-button-bg-color: var(--el-bg-color-light-3); /* 弹出框按钮背景色 */
  --w-e-modal-button-border-color: var(--el-border-color-light); /* 弹出框按钮边框颜色 */
}

:root {
  --el-color-white: #ffffff;
  --el-color-black: #000000;
  --el-color-primary-rgb: 255, 107, 53;
  --el-color-success-rgb: 35, 195, 67;
  --el-color-warning-rgb: 240, 186, 10;
  --el-color-danger-rgb: 247, 101, 96;
  --el-color-error-rgb: 245, 108, 108;
  --el-color-info-rgb: 63, 140, 255;
  --el-font-size-extra-large: 20px;
  --el-font-size-large: 18px;
  --el-font-size-medium: 16px;
  --el-font-size-base: 14px;
  --el-font-size-small: 13px;
  --el-font-size-extra-small: 12px;
  --el-font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
  --el-font-weight-primary: 500;
  --el-font-line-height-primary: 24px;
  --el-index-normal: 1;
  --el-index-top: 1000;
  --el-index-popper: 2000;
  --el-border-radius-base: 4px;
  --el-border-radius-small: 2px;
  --el-border-radius-round: 20px;
  --el-border-radius-circle: 100%;
  --el-transition-duration: 0.3s;
  --el-transition-duration-fast: 0.2s;
  --el-transition-function-ease-in-out-bezier: cubic-bezier(0.645, 0.045, 0.355, 1);
  --el-transition-function-fast-bezier: cubic-bezier(0.23, 1, 0.32, 1);
  --el-transition-all: all var(--el-transition-duration) var(--el-transition-function-ease-in-out-bezier);
  --el-transition-fade: opacity var(--el-transition-duration) var(--el-transition-function-fast-bezier);
  --el-transition-md-fade: transform var(--el-transition-duration) var(--el-transition-function-fast-bezier), opacity var(--el-transition-duration) var(--el-transition-function-fast-bezier);
  --el-transition-fade-linear: opacity var(--el-transition-duration-fast) linear;
  --el-transition-border: border-color var(--el-transition-duration-fast) var(--el-transition-function-ease-in-out-bezier);
  --el-transition-box-shadow: box-shadow var(--el-transition-duration-fast) var(--el-transition-function-ease-in-out-bezier);
  --el-transition-color: color var(--el-transition-duration-fast) var(--el-transition-function-ease-in-out-bezier);
  --el-component-size-large: 40px;
  --el-component-size: 32px;
  --el-component-size-small: 24px;
}

:root {
  color-scheme: light;
  --el-color-primary: #ff6b35;
  --el-color-primary-light-3: rgb(255, 151, 114);
  --el-color-primary-light-5: rgb(255, 181, 154);
  --el-color-primary-light-7: rgb(255, 211, 194);
  --el-color-primary-light-8: rgb(255, 225, 215);
  --el-color-primary-light-9: rgb(255, 240, 235);
  --el-color-primary-dark-2: rgb(204, 86, 42);
  --el-color-success: #23c343;
  --el-color-success-light-3: rgb(101, 213, 123);
  --el-color-success-light-5: rgb(145, 225, 161);
  --el-color-success-light-7: rgb(189, 237, 199);
  --el-color-success-light-8: rgb(211, 243, 217);
  --el-color-success-light-9: rgb(233, 249, 236);
  --el-color-success-dark-2: rgb(28, 156, 54);
  --el-color-warning: #f0ba0a;
  --el-color-warning-light-3: rgb(245, 207, 84);
  --el-color-warning-light-5: rgb(248, 221, 133);
  --el-color-warning-light-7: rgb(251, 234, 182);
  --el-color-warning-light-8: rgb(252, 241, 206);
  --el-color-warning-light-9: rgb(254, 248, 231);
  --el-color-warning-dark-2: rgb(192, 149, 8);
  --el-color-danger: #f76560;
  --el-color-danger-light-3: rgb(249, 147, 144);
  --el-color-danger-light-5: rgb(251, 178, 176);
  --el-color-danger-light-7: rgb(253, 209, 207);
  --el-color-danger-light-8: rgb(253, 224, 223);
  --el-color-danger-light-9: rgb(254, 240, 239);
  --el-color-danger-dark-2: rgb(198, 81, 77);
  --el-color-error: #f56c6c;
  --el-color-error-light-3: rgb(248, 152, 152);
  --el-color-error-light-5: rgb(250, 182, 182);
  --el-color-error-light-7: rgb(252, 211, 211);
  --el-color-error-light-8: rgb(253, 226, 226);
  --el-color-error-light-9: rgb(254, 240, 240);
  --el-color-error-dark-2: rgb(196, 86, 86);
  --el-color-info: #3f8cff;
  --el-color-info-light-3: rgb(121, 175, 255);
  --el-color-info-light-5: rgb(159, 198, 255);
  --el-color-info-light-7: rgb(197, 221, 255);
  --el-color-info-light-8: rgb(217, 232, 255);
  --el-color-info-light-9: rgb(236, 244, 255);
  --el-color-info-dark-2: rgb(50, 112, 204);
  --el-bg-color: #ffffff;
  --el-bg-color-page: #f5f8fd;
  --el-bg-color-overlay: #ffffff;
  --el-text-color-primary: #303133;
  --el-text-color-regular: #606266;
  --el-text-color-secondary: #909399;
  --el-text-color-placeholder: #a8abb2;
  --el-text-color-disabled: #c0c4cc;
  --el-border-color: #dcdfe6;
  --el-border-color-light: #e4e7ed;
  --el-border-color-lighter: #ebeef5;
  --el-border-color-extra-light: #f2f6fc;
  --el-border-color-dark: #d4d7de;
  --el-border-color-darker: #cdd0d6;
  --el-fill-color: #f0f2f5;
  --el-fill-color-light: #f5f7fa;
  --el-fill-color-lighter: #fafafa;
  --el-fill-color-extra-light: #fafcff;
  --el-fill-color-dark: #ebedf0;
  --el-fill-color-darker: #e6e8eb;
  --el-fill-color-blank: #ffffff;
  --el-box-shadow: 0px 12px 32px 4px rgba(0, 0, 0, 0.04), 0px 8px 20px rgba(0, 0, 0, 0.08);
  --el-box-shadow-light: 0px 0px 12px rgba(0, 0, 0, 0.12);
  --el-box-shadow-lighter: 0px 0px 6px rgba(0, 0, 0, 0.12);
  --el-box-shadow-dark: 0px 16px 48px 16px rgba(0, 0, 0, 0.08), 0px 12px 32px rgba(0, 0, 0, 0.12), 0px 8px 16px -8px rgba(0, 0, 0, 0.16);
  --el-disabled-bg-color: var(--el-fill-color-light);
  --el-disabled-text-color: var(--el-text-color-placeholder);
  --el-disabled-border-color: var(--el-border-color-light);
  --el-overlay-color: rgba(0, 0, 0, 0.8);
  --el-overlay-color-light: rgba(0, 0, 0, 0.7);
  --el-overlay-color-lighter: rgba(0, 0, 0, 0.5);
  --el-mask-color: rgba(255, 255, 255, 0.9);
  --el-mask-color-extra-light: rgba(255, 255, 255, 0.3);
  --el-border-width: 1px;
  --el-border-style: solid;
  --el-border-color-hover: var(--el-text-color-disabled);
  --el-border: var(--el-border-width) var(--el-border-style) var(--el-border-color);
  --el-svg-monochrome-grey: var(--el-border-color);
}

.fade-in-linear-enter-active,
.fade-in-linear-leave-active {
  transition: var(--el-transition-fade-linear);
}

.fade-in-linear-enter-from,
.fade-in-linear-leave-to {
  opacity: 0;
}

.el-fade-in-linear-enter-active,
.el-fade-in-linear-leave-active {
  transition: var(--el-transition-fade-linear);
}

.el-fade-in-linear-enter-from,
.el-fade-in-linear-leave-to {
  opacity: 0;
}

.el-fade-in-enter-active,
.el-fade-in-leave-active {
  transition: all var(--el-transition-duration) cubic-bezier(0.55, 0, 0.1, 1);
}

.el-fade-in-enter-from,
.el-fade-in-leave-active {
  opacity: 0;
}

.el-zoom-in-center-enter-active,
.el-zoom-in-center-leave-active {
  transition: all var(--el-transition-duration) cubic-bezier(0.55, 0, 0.1, 1);
}

.el-zoom-in-center-enter-from,
.el-zoom-in-center-leave-active {
  opacity: 0;
  transform: scaleX(0);
}

.el-zoom-in-top-enter-active,
.el-zoom-in-top-leave-active {
  opacity: 1;
  transform: scaleY(1);
  transition: var(--el-transition-md-fade);
  transform-origin: center top;
}
.el-zoom-in-top-enter-active[data-popper-placement^=top],
.el-zoom-in-top-leave-active[data-popper-placement^=top] {
  transform-origin: center bottom;
}

.el-zoom-in-top-enter-from,
.el-zoom-in-top-leave-active {
  opacity: 0;
  transform: scaleY(0);
}

.el-zoom-in-bottom-enter-active,
.el-zoom-in-bottom-leave-active {
  opacity: 1;
  transform: scaleY(1);
  transition: var(--el-transition-md-fade);
  transform-origin: center bottom;
}

.el-zoom-in-bottom-enter-from,
.el-zoom-in-bottom-leave-active {
  opacity: 0;
  transform: scaleY(0);
}

.el-zoom-in-left-enter-active,
.el-zoom-in-left-leave-active {
  opacity: 1;
  transform: scale(1, 1);
  transition: var(--el-transition-md-fade);
  transform-origin: top left;
}

.el-zoom-in-left-enter-from,
.el-zoom-in-left-leave-active {
  opacity: 0;
  transform: scale(0.45, 0.45);
}

.collapse-transition {
  transition: var(--el-transition-duration) height ease-in-out, var(--el-transition-duration) padding-top ease-in-out, var(--el-transition-duration) padding-bottom ease-in-out;
}

.el-collapse-transition-leave-active,
.el-collapse-transition-enter-active {
  transition: var(--el-transition-duration) max-height ease-in-out, var(--el-transition-duration) padding-top ease-in-out, var(--el-transition-duration) padding-bottom ease-in-out;
}

.horizontal-collapse-transition {
  transition: var(--el-transition-duration) width ease-in-out, var(--el-transition-duration) padding-left ease-in-out, var(--el-transition-duration) padding-right ease-in-out;
}

.el-list-enter-active,
.el-list-leave-active {
  transition: all 1s;
}

.el-list-enter-from,
.el-list-leave-to {
  opacity: 0;
  transform: translateY(-30px);
}

.el-list-leave-active {
  position: absolute !important;
}

.el-opacity-transition {
  transition: opacity var(--el-transition-duration) cubic-bezier(0.55, 0, 0.1, 1);
}

.el-icon--right {
  margin-left: 5px;
}

.el-icon--left {
  margin-right: 5px;
}

@keyframes rotating {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
.el-icon {
  --color: inherit;
  height: 1em;
  width: 1em;
  line-height: 1em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  fill: currentColor;
  color: var(--color);
  font-size: inherit;
}
.el-icon.is-loading {
  animation: rotating 2s linear infinite;
}

.el-icon svg {
  height: 1em;
  width: 1em;
}
/* Element Chalk Variables */
/** 全局SCSS变量 */
:root {
  --layout-wrapper-interval: 30px;
  --layout-main-interval: 20px;
  --menu-background: #fff;
  --menu-text: #333;
  --menu-active-text: var(
    --el-menu-active-color
  );
  --menu-hover: #ffffff00;
  --sidebar-logo-background: #f5f5f5;
  --sidebar-logo-text-color: #333;
}

@media screen and (max-width: 1600px) {
  :root {
    --layout-wrapper-interval: 20px;
    --layout-main-interval: 16px;
  }
}
@media screen and (max-width: 1200px) {
  :root {
    --layout-wrapper-interval: 16px;
    --layout-main-interval: 16px;
  }
}
/** 浅色主题-透明侧边栏配色 */
html.sidebar-color-blue {
  --menu-background: #ffffff00;
  --menu-text: #717791;
  --menu-active-text: var(--el-menu-active-color);
  --menu-hover: transform;
  --sidebar-logo-background: #ffffff00;
  --sidebar-logo-text-color: #333;
  --layout-main-background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.72) 11%,
    rgba(255, 255, 255, 0.9) 100%
  );
}

/** 暗黑主题 */
html.dark {
  --menu-background: var(--el-bg-color-overlay);
  --menu-text: #fff;
  --menu-active-text: var(--el-menu-active-color);
  --menu-hover: rgb(0 0 0 / 20%);
  --sidebar-logo-background: rgb(0 0 0 / 20%);
  --sidebar-logo-text-color: #fff;
  --layout-main-background: var(--el-bg-color-overlay);
  /** WangEditor Dark */
  /* Textarea - css vars */
  --w-e-textarea-bg-color: var(--el-bg-color); /* 深色背景 */
  --w-e-textarea-color: var(--el-text-color-primary); /* 浅色文字 */
  --w-e-textarea-border-color: var(--el-border-color); /* 较深的边框颜色 */
  --w-e-textarea-slight-border-color: var(--el-border-color-lighter); /* 更淡一些的边框颜色 */
  --w-e-textarea-slight-color: var(--el-text-color-secondary); /* 浅灰色，用于不那么重要的元素 */
  --w-e-textarea-slight-bg-color: var(--el-bg-color-overlay); /* 稍微亮一点的背景色 */
  --w-e-textarea-selected-border-color: var(--el-color-info-light-5); /* 选中元素时的高亮边框 */
  --w-e-textarea-handler-bg-color: var(--el-color-primary); /* 工具按钮或交互元素的背景色 */
  /* Toolbar - css vars */
  --w-e-toolbar-color: var(--el-text-color-regular); /* 工具栏文字颜色 */
  --w-e-toolbar-bg-color: var(--el-bg-color); /* 工具栏背景颜色 */
  --w-e-toolbar-active-color: var(--el-text-color-primary); /* 当前激活项的文字颜色 */
  --w-e-toolbar-active-bg-color: var(--el-fill-color-light); /* 当前激活项的背景颜色 */
  --w-e-toolbar-disabled-color: var(--el-text-color-secondary); /* 禁用项的颜色 */
  --w-e-toolbar-border-color: var(--el-border-color-base); /* 工具栏边框颜色 */
  /*  Modal - css vars */
  --w-e-modal-button-bg-color: var(--el-bg-color-light-3); /* 弹出框按钮背景色 */
  --w-e-modal-button-border-color: var(--el-border-color-light); /* 弹出框按钮边框颜色 */
}
/* Element Chalk Variables */
/** 全局SCSS变量 */
:root {
  --layout-wrapper-interval: 30px;
  --layout-main-interval: 20px;
  --menu-background: #fff;
  --menu-text: #333;
  --menu-active-text: var(
    --el-menu-active-color
  );
  --menu-hover: #ffffff00;
  --sidebar-logo-background: #f5f5f5;
  --sidebar-logo-text-color: #333;
}

@media screen and (max-width: 1600px) {
  :root {
    --layout-wrapper-interval: 20px;
    --layout-main-interval: 16px;
  }
}
@media screen and (max-width: 1200px) {
  :root {
    --layout-wrapper-interval: 16px;
    --layout-main-interval: 16px;
  }
}
/** 浅色主题-透明侧边栏配色 */
html.sidebar-color-blue {
  --menu-background: #ffffff00;
  --menu-text: #717791;
  --menu-active-text: var(--el-menu-active-color);
  --menu-hover: transform;
  --sidebar-logo-background: #ffffff00;
  --sidebar-logo-text-color: #333;
  --layout-main-background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.72) 11%,
    rgba(255, 255, 255, 0.9) 100%
  );
}

/** 暗黑主题 */
html.dark {
  --menu-background: var(--el-bg-color-overlay);
  --menu-text: #fff;
  --menu-active-text: var(--el-menu-active-color);
  --menu-hover: rgb(0 0 0 / 20%);
  --sidebar-logo-background: rgb(0 0 0 / 20%);
  --sidebar-logo-text-color: #fff;
  --layout-main-background: var(--el-bg-color-overlay);
  /** WangEditor Dark */
  /* Textarea - css vars */
  --w-e-textarea-bg-color: var(--el-bg-color); /* 深色背景 */
  --w-e-textarea-color: var(--el-text-color-primary); /* 浅色文字 */
  --w-e-textarea-border-color: var(--el-border-color); /* 较深的边框颜色 */
  --w-e-textarea-slight-border-color: var(--el-border-color-lighter); /* 更淡一些的边框颜色 */
  --w-e-textarea-slight-color: var(--el-text-color-secondary); /* 浅灰色，用于不那么重要的元素 */
  --w-e-textarea-slight-bg-color: var(--el-bg-color-overlay); /* 稍微亮一点的背景色 */
  --w-e-textarea-selected-border-color: var(--el-color-info-light-5); /* 选中元素时的高亮边框 */
  --w-e-textarea-handler-bg-color: var(--el-color-primary); /* 工具按钮或交互元素的背景色 */
  /* Toolbar - css vars */
  --w-e-toolbar-color: var(--el-text-color-regular); /* 工具栏文字颜色 */
  --w-e-toolbar-bg-color: var(--el-bg-color); /* 工具栏背景颜色 */
  --w-e-toolbar-active-color: var(--el-text-color-primary); /* 当前激活项的文字颜色 */
  --w-e-toolbar-active-bg-color: var(--el-fill-color-light); /* 当前激活项的背景颜色 */
  --w-e-toolbar-disabled-color: var(--el-text-color-secondary); /* 禁用项的颜色 */
  --w-e-toolbar-border-color: var(--el-border-color-base); /* 工具栏边框颜色 */
  /*  Modal - css vars */
  --w-e-modal-button-bg-color: var(--el-bg-color-light-3); /* 弹出框按钮背景色 */
  --w-e-modal-button-border-color: var(--el-border-color-light); /* 弹出框按钮边框颜色 */
}

.el-notification {
  --el-notification-width: 330px;
  --el-notification-padding: 14px 26px 14px 13px;
  --el-notification-radius: 8px;
  --el-notification-shadow: var(--el-box-shadow-light);
  --el-notification-border-color: var(--el-border-color-lighter);
  --el-notification-icon-size: 24px;
  --el-notification-close-font-size: var(--el-message-close-size, 16px);
  --el-notification-group-margin-left: 13px;
  --el-notification-group-margin-right: 8px;
  --el-notification-content-font-size: var(--el-font-size-base);
  --el-notification-content-color: var(--el-text-color-regular);
  --el-notification-title-font-size: 16px;
  --el-notification-title-color: var(--el-text-color-primary);
  --el-notification-close-color: var(--el-text-color-secondary);
  --el-notification-close-hover-color: var(--el-text-color-regular);
}

.el-notification {
  display: flex;
  width: var(--el-notification-width);
  padding: var(--el-notification-padding);
  border-radius: var(--el-notification-radius);
  box-sizing: border-box;
  border: 1px solid var(--el-notification-border-color);
  position: fixed;
  background-color: var(--el-bg-color-overlay);
  box-shadow: var(--el-notification-shadow);
  transition: opacity var(--el-transition-duration), transform var(--el-transition-duration), left var(--el-transition-duration), right var(--el-transition-duration), top 0.4s, bottom var(--el-transition-duration);
  overflow-wrap: break-word;
  overflow: hidden;
  z-index: 9999;
}
.el-notification.right {
  right: 16px;
}
.el-notification.left {
  left: 16px;
}
.el-notification__group {
  flex: 1;
  min-width: 0;
  margin-left: var(--el-notification-group-margin-left);
  margin-right: var(--el-notification-group-margin-right);
}

.el-notification__title {
  font-weight: bold;
  font-size: var(--el-notification-title-font-size);
  line-height: var(--el-notification-icon-size);
  color: var(--el-notification-title-color);
  margin: 0;
}

.el-notification__content {
  font-size: var(--el-notification-content-font-size);
  line-height: 24px;
  margin: 6px 0 0;
  color: var(--el-notification-content-color);
}
.el-notification__content p {
  margin: 0;
}

.el-notification .el-notification__icon {
  flex-shrink: 0;
  height: var(--el-notification-icon-size);
  width: var(--el-notification-icon-size);
  font-size: var(--el-notification-icon-size);
}
.el-notification .el-notification__closeBtn {
  position: absolute;
  top: 18px;
  right: 15px;
  cursor: pointer;
  color: var(--el-notification-close-color);
  font-size: var(--el-notification-close-font-size);
}
.el-notification .el-notification__closeBtn:hover {
  color: var(--el-notification-close-hover-color);
}
.el-notification .el-notification--primary {
  --el-notification-icon-color: var(--el-color-primary);
  color: var(--el-notification-icon-color);
}
.el-notification .el-notification--success {
  --el-notification-icon-color: var(--el-color-success);
  color: var(--el-notification-icon-color);
}
.el-notification .el-notification--info {
  --el-notification-icon-color: var(--el-color-info);
  color: var(--el-notification-icon-color);
}
.el-notification .el-notification--warning {
  --el-notification-icon-color: var(--el-color-warning);
  color: var(--el-notification-icon-color);
}
.el-notification .el-notification--error {
  --el-notification-icon-color: var(--el-color-error);
  color: var(--el-notification-icon-color);
}

.el-notification-fade-enter-from.right {
  right: 0;
  transform: translateX(100%);
}
.el-notification-fade-enter-from.left {
  left: 0;
  transform: translateX(-100%);
}

.el-notification-fade-leave-to {
  opacity: 0;
}
/* Element Chalk Variables */
/** 全局SCSS变量 */
:root {
  --layout-wrapper-interval: 30px;
  --layout-main-interval: 20px;
  --menu-background: #fff;
  --menu-text: #333;
  --menu-active-text: var(
    --el-menu-active-color
  );
  --menu-hover: #ffffff00;
  --sidebar-logo-background: #f5f5f5;
  --sidebar-logo-text-color: #333;
}

@media screen and (max-width: 1600px) {
  :root {
    --layout-wrapper-interval: 20px;
    --layout-main-interval: 16px;
  }
}
@media screen and (max-width: 1200px) {
  :root {
    --layout-wrapper-interval: 16px;
    --layout-main-interval: 16px;
  }
}
/** 浅色主题-透明侧边栏配色 */
html.sidebar-color-blue {
  --menu-background: #ffffff00;
  --menu-text: #717791;
  --menu-active-text: var(--el-menu-active-color);
  --menu-hover: transform;
  --sidebar-logo-background: #ffffff00;
  --sidebar-logo-text-color: #333;
  --layout-main-background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.72) 11%,
    rgba(255, 255, 255, 0.9) 100%
  );
}

/** 暗黑主题 */
html.dark {
  --menu-background: var(--el-bg-color-overlay);
  --menu-text: #fff;
  --menu-active-text: var(--el-menu-active-color);
  --menu-hover: rgb(0 0 0 / 20%);
  --sidebar-logo-background: rgb(0 0 0 / 20%);
  --sidebar-logo-text-color: #fff;
  --layout-main-background: var(--el-bg-color-overlay);
  /** WangEditor Dark */
  /* Textarea - css vars */
  --w-e-textarea-bg-color: var(--el-bg-color); /* 深色背景 */
  --w-e-textarea-color: var(--el-text-color-primary); /* 浅色文字 */
  --w-e-textarea-border-color: var(--el-border-color); /* 较深的边框颜色 */
  --w-e-textarea-slight-border-color: var(--el-border-color-lighter); /* 更淡一些的边框颜色 */
  --w-e-textarea-slight-color: var(--el-text-color-secondary); /* 浅灰色，用于不那么重要的元素 */
  --w-e-textarea-slight-bg-color: var(--el-bg-color-overlay); /* 稍微亮一点的背景色 */
  --w-e-textarea-selected-border-color: var(--el-color-info-light-5); /* 选中元素时的高亮边框 */
  --w-e-textarea-handler-bg-color: var(--el-color-primary); /* 工具按钮或交互元素的背景色 */
  /* Toolbar - css vars */
  --w-e-toolbar-color: var(--el-text-color-regular); /* 工具栏文字颜色 */
  --w-e-toolbar-bg-color: var(--el-bg-color); /* 工具栏背景颜色 */
  --w-e-toolbar-active-color: var(--el-text-color-primary); /* 当前激活项的文字颜色 */
  --w-e-toolbar-active-bg-color: var(--el-fill-color-light); /* 当前激活项的背景颜色 */
  --w-e-toolbar-disabled-color: var(--el-text-color-secondary); /* 禁用项的颜色 */
  --w-e-toolbar-border-color: var(--el-border-color-base); /* 工具栏边框颜色 */
  /*  Modal - css vars */
  --w-e-modal-button-bg-color: var(--el-bg-color-light-3); /* 弹出框按钮背景色 */
  --w-e-modal-button-border-color: var(--el-border-color-light); /* 弹出框按钮边框颜色 */
}

.el-badge {
  --el-badge-bg-color: var(--el-color-danger);
  --el-badge-radius: 10px;
  --el-badge-font-size: 12px;
  --el-badge-padding: 6px;
  --el-badge-size: 18px;
  position: relative;
  vertical-align: middle;
  display: inline-block;
  width: fit-content;
}
.el-badge__content {
  background-color: var(--el-badge-bg-color);
  border-radius: var(--el-badge-radius);
  color: var(--el-color-white);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: var(--el-badge-font-size);
  height: var(--el-badge-size);
  padding: 0 var(--el-badge-padding);
  white-space: nowrap;
  border: 1px solid var(--el-bg-color);
}
.el-badge__content.is-fixed {
  position: absolute;
  top: 0;
  right: calc(1px + var(--el-badge-size) / 2);
  transform: translateY(-50%) translateX(100%);
  z-index: var(--el-index-normal);
}
.el-badge__content.is-fixed.is-dot {
  right: 5px;
}

.el-badge__content.is-dot {
  height: 8px;
  width: 8px;
  padding: 0;
  right: 0;
  border-radius: 50%;
}

.el-badge__content.is-hide-zero {
  display: none;
}

.el-badge__content--primary {
  background-color: var(--el-color-primary);
}

.el-badge__content--success {
  background-color: var(--el-color-success);
}

.el-badge__content--warning {
  background-color: var(--el-color-warning);
}

.el-badge__content--info {
  background-color: var(--el-color-info);
}

.el-badge__content--danger {
  background-color: var(--el-color-danger);
}
/* Element Chalk Variables */
/** 全局SCSS变量 */
:root {
  --layout-wrapper-interval: 30px;
  --layout-main-interval: 20px;
  --menu-background: #fff;
  --menu-text: #333;
  --menu-active-text: var(
    --el-menu-active-color
  );
  --menu-hover: #ffffff00;
  --sidebar-logo-background: #f5f5f5;
  --sidebar-logo-text-color: #333;
}

@media screen and (max-width: 1600px) {
  :root {
    --layout-wrapper-interval: 20px;
    --layout-main-interval: 16px;
  }
}
@media screen and (max-width: 1200px) {
  :root {
    --layout-wrapper-interval: 16px;
    --layout-main-interval: 16px;
  }
}
/** 浅色主题-透明侧边栏配色 */
html.sidebar-color-blue {
  --menu-background: #ffffff00;
  --menu-text: #717791;
  --menu-active-text: var(--el-menu-active-color);
  --menu-hover: transform;
  --sidebar-logo-background: #ffffff00;
  --sidebar-logo-text-color: #333;
  --layout-main-background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.72) 11%,
    rgba(255, 255, 255, 0.9) 100%
  );
}

/** 暗黑主题 */
html.dark {
  --menu-background: var(--el-bg-color-overlay);
  --menu-text: #fff;
  --menu-active-text: var(--el-menu-active-color);
  --menu-hover: rgb(0 0 0 / 20%);
  --sidebar-logo-background: rgb(0 0 0 / 20%);
  --sidebar-logo-text-color: #fff;
  --layout-main-background: var(--el-bg-color-overlay);
  /** WangEditor Dark */
  /* Textarea - css vars */
  --w-e-textarea-bg-color: var(--el-bg-color); /* 深色背景 */
  --w-e-textarea-color: var(--el-text-color-primary); /* 浅色文字 */
  --w-e-textarea-border-color: var(--el-border-color); /* 较深的边框颜色 */
  --w-e-textarea-slight-border-color: var(--el-border-color-lighter); /* 更淡一些的边框颜色 */
  --w-e-textarea-slight-color: var(--el-text-color-secondary); /* 浅灰色，用于不那么重要的元素 */
  --w-e-textarea-slight-bg-color: var(--el-bg-color-overlay); /* 稍微亮一点的背景色 */
  --w-e-textarea-selected-border-color: var(--el-color-info-light-5); /* 选中元素时的高亮边框 */
  --w-e-textarea-handler-bg-color: var(--el-color-primary); /* 工具按钮或交互元素的背景色 */
  /* Toolbar - css vars */
  --w-e-toolbar-color: var(--el-text-color-regular); /* 工具栏文字颜色 */
  --w-e-toolbar-bg-color: var(--el-bg-color); /* 工具栏背景颜色 */
  --w-e-toolbar-active-color: var(--el-text-color-primary); /* 当前激活项的文字颜色 */
  --w-e-toolbar-active-bg-color: var(--el-fill-color-light); /* 当前激活项的背景颜色 */
  --w-e-toolbar-disabled-color: var(--el-text-color-secondary); /* 禁用项的颜色 */
  --w-e-toolbar-border-color: var(--el-border-color-base); /* 工具栏边框颜色 */
  /*  Modal - css vars */
  --w-e-modal-button-bg-color: var(--el-bg-color-light-3); /* 弹出框按钮背景色 */
  --w-e-modal-button-border-color: var(--el-border-color-light); /* 弹出框按钮边框颜色 */
}

.el-message {
  --el-message-bg-color: var(--el-color-info-light-9);
  --el-message-border-color: var(--el-border-color-lighter);
  --el-message-padding: 11px 15px;
  --el-message-close-size: 16px;
  --el-message-close-icon-color: var(--el-text-color-placeholder);
  --el-message-close-hover-color: var(--el-text-color-secondary);
}

.el-message {
  width: fit-content;
  max-width: calc(100% - 32px);
  box-sizing: border-box;
  border-radius: var(--el-border-radius-base);
  border-width: var(--el-border-width);
  border-style: var(--el-border-style);
  border-color: var(--el-message-border-color);
  position: fixed;
  background-color: var(--el-message-bg-color);
  transition: opacity var(--el-transition-duration), transform 0.4s, top 0.4s, bottom 0.4s;
  padding: var(--el-message-padding);
  display: flex;
  align-items: center;
  gap: 8px;
}
.el-message.is-left {
  left: 16px;
}
.el-message.is-right {
  right: 16px;
}
.el-message.is-center {
  left: 0;
  right: 0;
  margin: 0 auto;
}
.el-message.is-plain {
  background-color: var(--el-bg-color-overlay);
  border-color: var(--el-bg-color-overlay);
  box-shadow: var(--el-box-shadow-light);
}

.el-message p {
  margin: 0;
}
.el-message--primary {
  --el-message-bg-color: var(--el-color-primary-light-9);
  --el-message-border-color: var(--el-color-primary-light-8);
  --el-message-text-color: var(--el-color-primary);
}
.el-message--primary .el-message__content {
  color: var(--el-message-text-color);
  overflow-wrap: break-word;
}

.el-message .el-message-icon--primary {
  color: var(--el-message-text-color);
}
.el-message--success {
  --el-message-bg-color: var(--el-color-success-light-9);
  --el-message-border-color: var(--el-color-success-light-8);
  --el-message-text-color: var(--el-color-success);
}
.el-message--success .el-message__content {
  color: var(--el-message-text-color);
  overflow-wrap: break-word;
}

.el-message .el-message-icon--success {
  color: var(--el-message-text-color);
}
.el-message--info {
  --el-message-bg-color: var(--el-color-info-light-9);
  --el-message-border-color: var(--el-color-info-light-8);
  --el-message-text-color: var(--el-color-info);
}
.el-message--info .el-message__content {
  color: var(--el-message-text-color);
  overflow-wrap: break-word;
}

.el-message .el-message-icon--info {
  color: var(--el-message-text-color);
}
.el-message--warning {
  --el-message-bg-color: var(--el-color-warning-light-9);
  --el-message-border-color: var(--el-color-warning-light-8);
  --el-message-text-color: var(--el-color-warning);
}
.el-message--warning .el-message__content {
  color: var(--el-message-text-color);
  overflow-wrap: break-word;
}

.el-message .el-message-icon--warning {
  color: var(--el-message-text-color);
}
.el-message--error {
  --el-message-bg-color: var(--el-color-error-light-9);
  --el-message-border-color: var(--el-color-error-light-8);
  --el-message-text-color: var(--el-color-error);
}
.el-message--error .el-message__content {
  color: var(--el-message-text-color);
  overflow-wrap: break-word;
}

.el-message .el-message-icon--error {
  color: var(--el-message-text-color);
}
.el-message .el-message__badge {
  position: absolute;
  top: -8px;
  right: -8px;
}
.el-message__content {
  padding: 0;
  font-size: 14px;
  line-height: 1;
}
.el-message__content:focus {
  outline-width: 0;
}

.el-message .el-message__closeBtn {
  cursor: pointer;
  color: var(--el-message-close-icon-color);
  font-size: var(--el-message-close-size);
}
.el-message .el-message__closeBtn:focus {
  outline-width: 0;
}
.el-message .el-message__closeBtn:hover {
  color: var(--el-message-close-hover-color);
}

.el-message-fade-enter-from,
.el-message-fade-leave-to {
  opacity: 0;
  transform: translateY(-100%);
}
.el-message-fade-enter-from.is-bottom,
.el-message-fade-leave-to.is-bottom {
  transform: translateY(100%);
}/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #29d;

  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1.0;

  -webkit-transform: rotate(3deg) translate(0px, -4px);
      -ms-transform: rotate(3deg) translate(0px, -4px);
          transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;

  -webkit-animation: nprogress-spinner 400ms linear infinite;
          animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0%   { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes nprogress-spinner {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* BASICS */

.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 300px;
  color: black;
  direction: ltr;
}

/* PADDING */

.CodeMirror-lines {
  padding: 4px 0; /* Vertical padding around content */
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  padding: 0 4px; /* Horizontal padding of content */
}

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: white; /* The little square between H and V scrollbars */
}

/* GUTTER */

.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
.CodeMirror-linenumbers {}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}

.CodeMirror-guttermarker { color: black; }
.CodeMirror-guttermarker-subtle { color: #999; }

/* CURSOR */

.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}
.cm-fat-cursor .CodeMirror-line::selection,
.cm-fat-cursor .CodeMirror-line > span::selection, 
.cm-fat-cursor .CodeMirror-line > span > span::selection { background: transparent; }
.cm-fat-cursor .CodeMirror-line::-moz-selection,
.cm-fat-cursor .CodeMirror-line > span::-moz-selection,
.cm-fat-cursor .CodeMirror-line > span > span::-moz-selection { background: transparent; }
.cm-fat-cursor { caret-color: transparent; }
@-moz-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@-webkit-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}

/* Can style cursor different in overwrite (non-insert) mode */
.CodeMirror-overwrite .CodeMirror-cursor {}

.cm-tab { display: inline-block; text-decoration: inherit; }

.CodeMirror-rulers {
  position: absolute;
  left: 0; right: 0; top: -50px; bottom: 0;
  overflow: hidden;
}
.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0; bottom: 0;
  position: absolute;
}

/* DEFAULT THEME */

.cm-s-default .cm-header {color: blue;}
.cm-s-default .cm-quote {color: #090;}
.cm-negative {color: #d44;}
.cm-positive {color: #292;}
.cm-header, .cm-strong {font-weight: bold;}
.cm-em {font-style: italic;}
.cm-link {text-decoration: underline;}
.cm-strikethrough {text-decoration: line-through;}

.cm-s-default .cm-keyword {color: #708;}
.cm-s-default .cm-atom {color: #219;}
.cm-s-default .cm-number {color: #164;}
.cm-s-default .cm-def {color: #00f;}
.cm-s-default .cm-variable,
.cm-s-default .cm-punctuation,
.cm-s-default .cm-property,
.cm-s-default .cm-operator {}
.cm-s-default .cm-variable-2 {color: #05a;}
.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}
.cm-s-default .cm-comment {color: #a50;}
.cm-s-default .cm-string {color: #a11;}
.cm-s-default .cm-string-2 {color: #f50;}
.cm-s-default .cm-meta {color: #555;}
.cm-s-default .cm-qualifier {color: #555;}
.cm-s-default .cm-builtin {color: #30a;}
.cm-s-default .cm-bracket {color: #997;}
.cm-s-default .cm-tag {color: #170;}
.cm-s-default .cm-attribute {color: #00c;}
.cm-s-default .cm-hr {color: #999;}
.cm-s-default .cm-link {color: #00c;}

.cm-s-default .cm-error {color: #f00;}
.cm-invalidchar {color: #f00;}

.CodeMirror-composing { border-bottom: 2px solid; }

/* Default styles for common addons */

div.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}
.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
.CodeMirror-activeline-background {background: #e8f2ff;}

/* STOP */

/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */

.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}

.CodeMirror-scroll {
  overflow: scroll !important; /* Things will break if this is overridden */
  /* 50px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -50px; margin-right: -50px;
  padding-bottom: 50px;
  height: 100%;
  outline: none; /* Prevent dragging from highlighting the element */
  position: relative;
  z-index: 0;
}
.CodeMirror-sizer {
  position: relative;
  border-right: 50px solid transparent;
}

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actual scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
  outline: none;
}
.CodeMirror-vscrollbar {
  right: 0; top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0; left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0; bottom: 0;
}
.CodeMirror-gutter-filler {
  left: 0; bottom: 0;
}

.CodeMirror-gutters {
  position: absolute; left: 0; top: 0;
  min-height: 100%;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -50px;
}
.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
.CodeMirror-gutter-background {
  position: absolute;
  top: 0; bottom: 0;
  z-index: 4;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
.CodeMirror-gutter-wrapper ::selection { background-color: transparent }
.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }

.CodeMirror-lines {
  cursor: text;
  min-height: 1px; /* prevents collapsing before first draw */
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: contextual;
  font-variant-ligatures: contextual;
}
.CodeMirror-wrap pre.CodeMirror-line,
.CodeMirror-wrap pre.CodeMirror-line-like {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}

.CodeMirror-linebackground {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 0;
}

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  padding: 0.1px; /* Force widget margins to stay inside of the container */
}

.CodeMirror-widget {}

.CodeMirror-rtl pre { direction: rtl; }

.CodeMirror-code {
  outline: none;
}

/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}
.CodeMirror-measure pre { position: static; }

div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
div.CodeMirror-dragcursors {
  visibility: visible;
}

.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}

.CodeMirror-selected { background: #d9d9d9; }
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
.CodeMirror-crosshair { cursor: crosshair; }
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }

.cm-searching {
  background-color: #ffa;
  background-color: rgba(255, 255, 0, .4);
}

/* Used to force a border model for a node */
.cm-force-border { padding-right: .1px; }

@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}

/* See issue #2901 */
.cm-tab-wrap-hack:after { content: ''; }

/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext { background: none; }
.CodeMirror-foldmarker {
  color: blue;
  text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;
  font-family: arial;
  line-height: .3;
  cursor: pointer;
}
.CodeMirror-foldgutter {
  width: .7em;
}
.CodeMirror-foldgutter-open,
.CodeMirror-foldgutter-folded {
  cursor: pointer;
}
.CodeMirror-foldgutter-open:after {
  content: "\25BE";
}
.CodeMirror-foldgutter-folded:after {
  content: "\25B8";
}
.CodeMirror-merge {
  position: relative;
  border: 1px solid #ddd;
  white-space: pre;
}

.CodeMirror-merge, .CodeMirror-merge .CodeMirror {
  height: 350px;
}

.CodeMirror-merge-2pane .CodeMirror-merge-pane { width: 47%; }
.CodeMirror-merge-2pane .CodeMirror-merge-gap { width: 6%; }
.CodeMirror-merge-3pane .CodeMirror-merge-pane { width: 31%; }
.CodeMirror-merge-3pane .CodeMirror-merge-gap { width: 3.5%; }

.CodeMirror-merge-pane {
  display: inline-block;
  white-space: normal;
  vertical-align: top;
}
.CodeMirror-merge-pane-rightmost {
  position: absolute;
  right: 0px;
  z-index: 1;
}

.CodeMirror-merge-gap {
  z-index: 2;
  display: inline-block;
  height: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  position: relative;
  background: #f8f8f8;
}

.CodeMirror-merge-scrolllock-wrap {
  position: absolute;
  bottom: 0; left: 50%;
}
.CodeMirror-merge-scrolllock {
  position: relative;
  left: -50%;
  cursor: pointer;
  color: #555;
  line-height: 1;
}
.CodeMirror-merge-scrolllock:after {
  content: "\21db\00a0\00a0\21da";
}
.CodeMirror-merge-scrolllock.CodeMirror-merge-scrolllock-enabled:after {
  content: "\21db\21da";
}

.CodeMirror-merge-copybuttons-left, .CodeMirror-merge-copybuttons-right {
  position: absolute;
  left: 0; top: 0;
  right: 0; bottom: 0;
  line-height: 1;
}

.CodeMirror-merge-copy {
  position: absolute;
  cursor: pointer;
  color: #44c;
  z-index: 3;
}

.CodeMirror-merge-copy-reverse {
  position: absolute;
  cursor: pointer;
  color: #44c;
}

.CodeMirror-merge-copybuttons-left .CodeMirror-merge-copy { left: 2px; }
.CodeMirror-merge-copybuttons-right .CodeMirror-merge-copy { right: 2px; }

.CodeMirror-merge-r-inserted, .CodeMirror-merge-l-inserted {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAGUlEQVQI12MwuCXy3+CWyH8GBgYGJgYkAABZbAQ9ELXurwAAAABJRU5ErkJggg==);
  background-position: bottom left;
  background-repeat: repeat-x;
}

.CodeMirror-merge-r-deleted, .CodeMirror-merge-l-deleted {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAGUlEQVQI12M4Kyb2/6yY2H8GBgYGJgYkAABURgPz6Ks7wQAAAABJRU5ErkJggg==);
  background-position: bottom left;
  background-repeat: repeat-x;
}

.CodeMirror-merge-r-chunk { background: #ffffe0; }
.CodeMirror-merge-r-chunk-start { border-top: 1px solid #ee8; }
.CodeMirror-merge-r-chunk-end { border-bottom: 1px solid #ee8; }
.CodeMirror-merge-r-connect { fill: #ffffe0; stroke: #ee8; stroke-width: 1px; }

.CodeMirror-merge-l-chunk { background: #eef; }
.CodeMirror-merge-l-chunk-start { border-top: 1px solid #88e; }
.CodeMirror-merge-l-chunk-end { border-bottom: 1px solid #88e; }
.CodeMirror-merge-l-connect { fill: #eef; stroke: #88e; stroke-width: 1px; }

.CodeMirror-merge-l-chunk.CodeMirror-merge-r-chunk { background: #dfd; }
.CodeMirror-merge-l-chunk-start.CodeMirror-merge-r-chunk-start { border-top: 1px solid #4e4; }
.CodeMirror-merge-l-chunk-end.CodeMirror-merge-r-chunk-end { border-bottom: 1px solid #4e4; }

.CodeMirror-merge-collapsed-widget:before {
  content: "(...)";
}
.CodeMirror-merge-collapsed-widget {
  cursor: pointer;
  color: #88b;
  background: #eef;
  border: 1px solid #ddf;
  font-size: 90%;
  padding: 0 3px;
  border-radius: 4px;
}
.CodeMirror-merge-collapsed-line .CodeMirror-gutter-elt { display: none; }
html.dark{color-scheme:dark;--el-color-primary:#409eff;--el-color-primary-light-3:rgb(51,117,185);--el-color-primary-light-5:rgb(42,89,138);--el-color-primary-light-7:rgb(33,61,91);--el-color-primary-light-8:rgb(29,48,67);--el-color-primary-light-9:rgb(24,34,43);--el-color-primary-dark-2:rgb(102,177,255);--el-color-success:#67c23a;--el-color-success-light-3:rgb(78,142,47);--el-color-success-light-5:rgb(62,107,39);--el-color-success-light-7:rgb(45,72,31);--el-color-success-light-8:rgb(37,55,28);--el-color-success-light-9:rgb(28,37,24);--el-color-success-dark-2:rgb(133,206,97);--el-color-warning:#e6a23c;--el-color-warning-light-3:rgb(167,119,48);--el-color-warning-light-5:rgb(125,91,40);--el-color-warning-light-7:rgb(83,63,32);--el-color-warning-light-8:rgb(62,48,28);--el-color-warning-light-9:rgb(41,34,24);--el-color-warning-dark-2:rgb(235,181,99);--el-color-danger:#f56c6c;--el-color-danger-light-3:rgb(178,82,82);--el-color-danger-light-5:rgb(133,64,64);--el-color-danger-light-7:rgb(88,46,46);--el-color-danger-light-8:rgb(65,38,38);--el-color-danger-light-9:rgb(42,29,29);--el-color-danger-dark-2:rgb(247,137,137);--el-color-error:#f56c6c;--el-color-error-light-3:rgb(178,82,82);--el-color-error-light-5:rgb(133,64,64);--el-color-error-light-7:rgb(88,46,46);--el-color-error-light-8:rgb(65,38,38);--el-color-error-light-9:rgb(42,29,29);--el-color-error-dark-2:rgb(247,137,137);--el-color-info:#909399;--el-color-info-light-3:rgb(107,109,113);--el-color-info-light-5:rgb(82,84,87);--el-color-info-light-7:rgb(57,58,60);--el-color-info-light-8:rgb(45,45,47);--el-color-info-light-9:rgb(32,33,33);--el-color-info-dark-2:rgb(166,169,173);--el-box-shadow:0px 12px 32px 4px rgba(0,0,0,0.36),0px 8px 20px rgba(0,0,0,0.72);--el-box-shadow-light:0px 0px 12px rgba(0,0,0,0.72);--el-box-shadow-lighter:0px 0px 6px rgba(0,0,0,0.72);--el-box-shadow-dark:0px 16px 48px 16px rgba(0,0,0,0.72),0px 12px 32px #000000,0px 8px 16px -8px #000000;--el-bg-color-page:#0a0a0a;--el-bg-color:#141414;--el-bg-color-overlay:#1d1e1f;--el-text-color-primary:#E5EAF3;--el-text-color-regular:#CFD3DC;--el-text-color-secondary:#A3A6AD;--el-text-color-placeholder:#8D9095;--el-text-color-disabled:#6C6E72;--el-border-color-darker:#636466;--el-border-color-dark:#58585B;--el-border-color:#4C4D4F;--el-border-color-light:#414243;--el-border-color-lighter:#363637;--el-border-color-extra-light:#2B2B2C;--el-fill-color-darker:#424243;--el-fill-color-dark:#39393A;--el-fill-color:#303030;--el-fill-color-light:#262727;--el-fill-color-lighter:#1D1D1D;--el-fill-color-extra-light:#191919;--el-fill-color-blank:#141414;--el-mask-color:rgba(0,0,0,0.8);--el-mask-color-extra-light:rgba(0,0,0,0.3)}html.dark .el-button{--el-button-disabled-text-color:rgba(255,255,255,0.5)}html.dark .el-card{--el-card-bg-color:var(--el-bg-color-overlay)}html.dark .el-empty{--el-empty-fill-color-0:var(--el-color-black);--el-empty-fill-color-1:#4b4b52;--el-empty-fill-color-2:#36383d;--el-empty-fill-color-3:#1e1e20;--el-empty-fill-color-4:#262629;--el-empty-fill-color-5:#202124;--el-empty-fill-color-6:#212224;--el-empty-fill-color-7:#1b1c1f;--el-empty-fill-color-8:#1c1d1f;--el-empty-fill-color-9:#18181a}[data-vxe-ui-theme=light]{--vxe-ui-font-color:#606266;--vxe-ui-font-primary-color:#409eff;--vxe-font-family:-apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;--vxe-font-size:14px;--vxe-font-size-medium:14px;--vxe-font-size-small:13px;--vxe-font-size-mini:12px;--vxe-border-radius:4px;--vxe-icon-font-family:Verdana,Arial,Tahoma;--vxe-icon-background-color:#fff;--vxe-font-color:var(--vxe-ui-font-color);--vxe-primary-color:var(--vxe-ui-font-primary-color);--vxe-success-color:#67c23a;--vxe-info-color:#909399;--vxe-warning-color:#e6a23c;--vxe-danger-color:#f56c6c;--vxe-font-lighten-color:#797b80;--vxe-primary-lighten-color:#73b8ff;--vxe-success-lighten-color:#85cf60;--vxe-info-lighten-color:#abadb1;--vxe-warning-lighten-color:#ecb869;--vxe-danger-lighten-color:#f89c9c;--vxe-font-darken-color:#47494c;--vxe-primary-darken-color:#0d84ff;--vxe-success-darken-color:#529b2e;--vxe-info-darken-color:#767980;--vxe-warning-darken-color:#d48a1b;--vxe-danger-darken-color:#f56c6c;--vxe-font-disabled-color:#bfbfbf;--vxe-primary-disabled-color:#a6d2ff;--vxe-success-disabled-color:#a3db87;--vxe-info-disabled-color:#c5c7ca;--vxe-warning-disabled-color:l #d48a1b;--vxe-danger-disabled-color:#f5a8a8;--vxe-input-border-color:#dcdfe6;--vxe-input-disabled-color:#dcdfe6;--vxe-input-disabled-background-color:#f3f3f3;--vxe-input-placeholder-color:#c0c4cc;--vxe-table-popup-border-color:#dadce0;--vxe-table-header-font-color:#606266;--vxe-table-footer-font-color:#606266;--vxe-table-border-radius:4px;--vxe-table-border-width:1px;--vxe-table-border-color:#e8eaec;--vxe-table-resizable-line-color:#d9dddf;--vxe-table-resizable-drag-line-color:#409eff;--vxe-table-header-background-color:#f8f8f9;--vxe-table-body-background-color:#fff;--vxe-table-footer-background-color:#fff;--vxe-table-tree-node-line-color:#909399;--vxe-table-tree-node-line-style:dotted;--vxe-table-header-font-weight:700;--vxe-table-row-height-default:48px;--vxe-table-row-height-medium:44px;--vxe-table-row-height-small:40px;--vxe-table-row-height-mini:36px;--vxe-table-row-line-height:22px;--vxe-table-row-hover-background-color:#f5f7fa;--vxe-table-row-striped-background-color:#fafafa;--vxe-table-row-hover-striped-background-color:#f5f7fa;--vxe-table-row-radio-checked-background-color:#fff3e0;--vxe-table-row-hover-radio-checked-background-color:#ffebbc;--vxe-table-row-checkbox-checked-background-color:#fff3e0;--vxe-table-row-hover-checkbox-checked-background-color:#ffebbc;--vxe-table-row-current-background-color:#e6f7ff;--vxe-table-row-hover-current-background-color:#d7effb;--vxe-table-column-padding-default:13px 0;--vxe-table-column-padding-medium:11px 0;--vxe-table-column-padding-small:9px 0;--vxe-table-column-padding-mini:7px 0;--vxe-table-column-hover-background-color:#d7effb;--vxe-table-column-current-background-color:#e6f7ff;--vxe-table-column-icon-border-color:#c0c4cc;--vxe-table-column-icon-border-hover-color:#515a6e;--vxe-table-cell-placeholder-color:#c0c4cc;--vxe-table-cell-padding-left:10px;--vxe-table-cell-padding-right:10px;--vxe-table-cell-input-height-default:42px;--vxe-table-cell-input-height-medium:38px;--vxe-table-cell-input-height-small:34px;--vxe-table-cell-input-height-mini:30px;--vxe-table-cell-dirty-width:5px;--vxe-table-cell-dirty-update-color:#f56c6c;--vxe-table-cell-dirty-insert-color:#19a15f;--vxe-table-cell-area-border-color:#409eff;--vxe-table-cell-area-border-width:1px;--vxe-table-cell-active-area-background-color:transparent;--vxe-table-cell-main-area-extension-border-color:#fff;--vxe-table-cell-main-area-extension-background-color:#409eff;--vxe-table-cell-extend-area-border-width:2px;--vxe-table-cell-copy-area-border-width:3px;--vxe-table-cell-active-area-border-width:2px;--vxe-table-cell-copy-area-border-color:#409eff;--vxe-table-cell-extend-area-border-color:#409eff;--vxe-table-cell-active-area-border-color:#409eff;--vxe-table-cell-area-background-color:rgba(64,158,255,.2);--vxe-table-checkbox-range-border-width:1px;--vxe-table-checkbox-range-border-color:#006af1;--vxe-table-checkbox-range-background-color:rgba(50,128,252,.2);--vxe-table-fixed-left-scrolling-box-shadow:8px 0px 10px -5px rgba(0,0,0,.12);--vxe-table-fixed-right-scrolling-box-shadow:-8px 0px 10px -5px rgba(0,0,0,.12);--vxe-table-filter-panel-background-color:#fff;--vxe-table-menu-item-width:178px;--vxe-table-menu-background-color:#fff;--vxe-loading-color:#409eff;--vxe-loading-background-color:hsla(0,0%,100%,.5);--vxe-loading-z-index:999;--vxe-table-validate-error-color:#f56c6c;--vxe-table-validate-error-background-color:#fff;--vxe-grid-maximize-background-color:#fff;--vxe-toolbar-background-color:#fff;--vxe-toolbar-custom-active-background-color:#d9dadb;--vxe-toolbar-panel-background-color:#fff;--vxe-tooltip-dark-color:#fff;--vxe-tooltip-dark-background-color:#303133;--vxe-tooltip-light-background-color:#fff;--vxe-pager-background-color:#fff;--vxe-pager-perfect-background-color:#fff;--vxe-pager-perfect-button-background-color:#f4f4f5;--vxe-modal-header-background-color:#f8f8f8;--vxe-modal-body-background-color:#fff;--vxe-modal-border-color:#ebeef5;--vxe-drawer-header-background-color:#f8f8f8;--vxe-drawer-body-background-color:#fff;--vxe-drawer-border-color:#ebeef5;--vxe-checkbox-font-size-default:15px;--vxe-checkbox-font-size-medium:14px;--vxe-checkbox-font-size-small:13px;--vxe-checkbox-font-size-mini:12px;--vxe-checkbox-checked-width:0.32em;--vxe-checkbox-checked-height:0.64em;--vxe-checkbox-indeterminate-width:0.6em;--vxe-checkbox-indeterminate-height:2px;--vxe-checkbox-border-width:2px;--vxe-checkbox-border-radius:2px;--vxe-checkbox-icon-background-color:#fff;--vxe-checkbox-checked-icon-border-color:#fff;--vxe-checkbox-indeterminate-icon-background-color:#fff;--vxe-radio-font-size-default:15px;--vxe-radio-font-size-medium:14px;--vxe-radio-font-size-small:13px;--vxe-radio-font-size-mini:12px;--vxe-radio-border-width:2px;--vxe-radio-icon-background-color:#fff;--vxe-radio-checked-icon-background-color:#fff;--vxe-radio-indeterminate-icon-background-color:#fff;--vxe-radio-button-default-background-color:#fff;--vxe-button-max-width:500px;--vxe-button-default-background-color:#fff;--vxe-button-dropdown-panel-background-color:#fff;--vxe-button-height-default:34px;--vxe-button-height-medium:32px;--vxe-button-height-small:30px;--vxe-button-height-mini:28px;--vxe-button-round-border-radius-default:17px;--vxe-button-round-border-radius-medium:16px;--vxe-button-round-border-radius-small:15px;--vxe-button-round-border-radius-mini:14px;--vxe-input-background-color:#fff;--vxe-input-panel-background-color:#fff;--vxe-input-number-disabled-color:#e4e7ed;--vxe-input-date-festival-color:#999;--vxe-input-date-festival-important-color:#409eff;--vxe-input-date-notice-background-color:red;--vxe-input-date-picker-hover-background-color:#f2f6fc;--vxe-input-date-picker-selected-color:#fff;--vxe-input-date-time-confirm-button-color:#fff;--vxe-input-date-picker-festival-selected-color:#fff;--vxe-input-date-picker-notice-selected-background-color:#fff;--vxe-input-date-extra-color:#67c23a;--vxe-input-date-extra-important-color:#fd2222;--vxe-input-date-title-height-default:30px;--vxe-input-date-title-height-medium:29px;--vxe-input-date-title-height-small:28px;--vxe-input-date-title-height-mini:26px;--vxe-input-date-time-week-row-height-default:38px;--vxe-input-date-time-week-row-height-medium:36px;--vxe-input-date-time-week-row-height-small:34px;--vxe-input-date-time-week-row-height-mini:32px;--vxe-input-date-month-year-row-height-default:48px;--vxe-input-date-month-year-row-height-medium:46px;--vxe-input-date-month-year-row-height-small:44px;--vxe-input-date-month-year-row-height-mini:42px;--vxe-input-date-quarter-row-height-default:60px;--vxe-input-date-quarter-row-height-medium:58px;--vxe-input-date-quarter-row-height-small:56px;--vxe-input-date-quarter-row-height-mini:54px;--vxe-input-height-default:34px;--vxe-input-height-medium:32px;--vxe-input-height-small:30px;--vxe-input-height-mini:28px;--vxe-input-count-color:#999;--vxe-input-count-background-color:#fff;--vxe-input-count-error-color:#f56c6c;--vxe-textarea-line-height:1.5715;--vxe-textarea-background-color:#fff;--vxe-form-item-min-height-default:36px;--vxe-form-item-min-height-medium:34px;--vxe-form-item-min-height-small:32px;--vxe-form-item-min-height-mini:30px;--vxe-form-background-color:#fff;--vxe-form-validate-error-color:#f56c6c;--vxe-form-validate-error-background-color:inherit;--vxe-select-option-height-default:30px;--vxe-select-option-height-medium:28px;--vxe-select-option-height-small:26px;--vxe-select-option-height-mini:24px;--vxe-select-option-hover-background-color:#f5f7fa;--vxe-select-panel-background-color:#fff;--vxe-select-empty-color:#c0c4cc;--vxe-optgroup-title-color:#909399;--vxe-switch-font-color:#fff;--vxe-switch-icon-background-color:#fff;--vxe-switch-open-background-color:#409eff;--vxe-switch-close-background-color:rgba(0,0,0,.35);--vxe-switch-disabled-background-color:rgba(0,0,0,.15);--vxe-pulldown-panel-background-color:#fff}[data-vxe-ui-theme=dark]{--vxe-ui-font-color:#98989e;--vxe-ui-font-primary-color:#2c7ecf;color-scheme:dark;--vxe-font-family:-apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;--vxe-font-size:14px;--vxe-font-size-medium:14px;--vxe-font-size-small:13px;--vxe-font-size-mini:12px;--vxe-border-radius:4px;--vxe-icon-font-family:Verdana,Arial,Tahoma;--vxe-icon-background-color:#98989e;--vxe-font-color:var(--vxe-ui-font-color);--vxe-primary-color:var(--vxe-ui-font-primary-color);--vxe-success-color:#67c23a;--vxe-info-color:#909399;--vxe-warning-color:#e6a23c;--vxe-danger-color:#f56c6c;--vxe-font-lighten-color:#797b80;--vxe-primary-lighten-color:#73b8ff;--vxe-success-lighten-color:#85cf60;--vxe-info-lighten-color:#abadb1;--vxe-warning-lighten-color:#ecb869;--vxe-danger-lighten-color:#f89c9c;--vxe-font-darken-color:#47494c;--vxe-primary-darken-color:#0d84ff;--vxe-success-darken-color:#529b2e;--vxe-info-darken-color:#767980;--vxe-warning-darken-color:#d48a1b;--vxe-danger-darken-color:#f56c6c;--vxe-font-disabled-color:#bfbfbf;--vxe-primary-disabled-color:#a6d2ff;--vxe-success-disabled-color:#a3db87;--vxe-info-disabled-color:#c5c7ca;--vxe-warning-disabled-color:l #d48a1b;--vxe-danger-disabled-color:#f5a8a8;--vxe-input-border-color:#424242;--vxe-input-disabled-color:#8d9095;--vxe-input-disabled-background-color:#585656;--vxe-input-placeholder-color:#8d9095;--vxe-table-popup-border-color:#424242;--vxe-table-header-font-color:#98989e;--vxe-table-footer-font-color:#98989e;--vxe-table-border-radius:4px;--vxe-table-border-width:1px;--vxe-table-border-color:#37373a;--vxe-table-resizable-line-color:hsla(0,0%,100%,.1);--vxe-table-resizable-drag-line-color:#409eff;--vxe-table-header-background-color:#28282a;--vxe-table-body-background-color:#151518;--vxe-table-footer-background-color:#151518;--vxe-table-tree-node-line-color:#909399;--vxe-table-tree-node-line-style:dotted;--vxe-table-header-font-weight:700;--vxe-table-row-height-default:48px;--vxe-table-row-height-medium:44px;--vxe-table-row-height-small:40px;--vxe-table-row-height-mini:36px;--vxe-table-row-line-height:22px;--vxe-table-row-hover-background-color:#262727;--vxe-table-row-striped-background-color:#1d1d1d;--vxe-table-row-hover-striped-background-color:#262727;--vxe-table-row-radio-checked-background-color:#604820;--vxe-table-row-hover-radio-checked-background-color:#6e5326;--vxe-table-row-checkbox-checked-background-color:#604820;--vxe-table-row-hover-checkbox-checked-background-color:#6e5326;--vxe-table-row-current-background-color:#18222c;--vxe-table-row-hover-current-background-color:#262727;--vxe-table-column-padding-default:13px 0;--vxe-table-column-padding-medium:11px 0;--vxe-table-column-padding-small:9px 0;--vxe-table-column-padding-mini:7px 0;--vxe-table-column-hover-background-color:#18222c;--vxe-table-column-current-background-color:#18222c;--vxe-table-column-icon-border-color:#c0c4cc;--vxe-table-column-icon-border-hover-color:#515a6e;--vxe-table-cell-placeholder-color:#c0c4cc;--vxe-table-cell-padding-left:10px;--vxe-table-cell-padding-right:10px;--vxe-table-cell-input-height-default:42px;--vxe-table-cell-input-height-medium:38px;--vxe-table-cell-input-height-small:34px;--vxe-table-cell-input-height-mini:30px;--vxe-table-cell-dirty-width:5px;--vxe-table-cell-dirty-update-color:#f56c6c;--vxe-table-cell-dirty-insert-color:#19a15f;--vxe-table-cell-area-border-color:#409eff;--vxe-table-cell-area-border-width:1px;--vxe-table-cell-main-area-extension-border-color:#fff;--vxe-table-cell-main-area-extension-background-color:#409eff;--vxe-table-cell-extend-area-border-width:2px;--vxe-table-cell-copy-area-border-width:3px;--vxe-table-cell-active-area-border-width:2px;--vxe-table-cell-active-area-background-color:transparent;--vxe-table-cell-copy-area-border-color:#409eff;--vxe-table-cell-extend-area-border-color:#409eff;--vxe-table-cell-active-area-border-color:#409eff;--vxe-table-cell-area-background-color:rgba(64,158,255,.2);--vxe-table-checkbox-range-border-width:1px;--vxe-table-checkbox-range-border-color:#006af1;--vxe-table-checkbox-range-background-color:rgba(50,128,252,.2);--vxe-table-fixed-left-scrolling-box-shadow:8px 0px 10px -5px rgba(0,0,0,.5);--vxe-table-fixed-right-scrolling-box-shadow:-8px 0px 10px -5px rgba(0,0,0,.5);--vxe-table-filter-panel-background-color:#151518;--vxe-table-menu-item-width:178px;--vxe-table-menu-background-color:#fff;--vxe-loading-color:#409eff;--vxe-loading-background-color:rgba(0,0,0,.5);--vxe-loading-z-index:999;--vxe-table-validate-error-color:#f56c6c;--vxe-table-validate-error-background-color:#fff;--vxe-grid-maximize-background-color:#fff;--vxe-toolbar-background-color:#151518;--vxe-toolbar-custom-active-background-color:#d9dadb;--vxe-toolbar-panel-background-color:#151518;--vxe-tooltip-dark-color:#fff;--vxe-tooltip-dark-background-color:#303133;--vxe-tooltip-light-background-color:#fff;--vxe-pager-background-color:#151518;--vxe-pager-perfect-background-color:#151518;--vxe-pager-perfect-button-background-color:#151518;--vxe-modal-header-background-color:#151518;--vxe-modal-body-background-color:#151518;--vxe-modal-border-color:#424242;--vxe-drawer-header-background-color:#151518;--vxe-drawer-body-background-color:#151518;--vxe-drawer-border-color:#424242;--vxe-checkbox-font-size-default:15px;--vxe-checkbox-font-size-medium:14px;--vxe-checkbox-font-size-small:13px;--vxe-checkbox-font-size-mini:12px;--vxe-checkbox-checked-width:0.32em;--vxe-checkbox-checked-height:0.64em;--vxe-checkbox-indeterminate-width:0.6em;--vxe-checkbox-indeterminate-height:2px;--vxe-checkbox-border-width:2px;--vxe-checkbox-border-radius:2px;--vxe-checkbox-icon-background-color:#fff;--vxe-checkbox-checked-icon-border-color:#fff;--vxe-checkbox-indeterminate-icon-background-color:#fff;--vxe-radio-font-size-default:15px;--vxe-radio-font-size-medium:14px;--vxe-radio-font-size-small:13px;--vxe-radio-font-size-mini:12px;--vxe-radio-border-width:2px;--vxe-radio-icon-background-color:#fff;--vxe-radio-checked-icon-background-color:#fff;--vxe-radio-indeterminate-icon-background-color:#fff;--vxe-radio-button-default-background-color:#151518;--vxe-button-max-width:500px;--vxe-button-default-background-color:#151518;--vxe-button-dropdown-panel-background-color:#151518;--vxe-button-height-default:34px;--vxe-button-height-medium:32px;--vxe-button-height-small:30px;--vxe-button-height-mini:28px;--vxe-button-round-border-radius-default:17px;--vxe-button-round-border-radius-medium:16px;--vxe-button-round-border-radius-small:15px;--vxe-button-round-border-radius-mini:14px;--vxe-input-background-color:#151518;--vxe-input-panel-background-color:#fff;--vxe-input-number-disabled-color:#e4e7ed;--vxe-input-date-festival-color:#999;--vxe-input-date-festival-important-color:#409eff;--vxe-input-date-notice-background-color:red;--vxe-input-date-picker-hover-background-color:#f2f6fc;--vxe-input-date-picker-selected-color:#fff;--vxe-input-date-time-confirm-button-color:#fff;--vxe-input-date-picker-festival-selected-color:#fff;--vxe-input-date-picker-notice-selected-background-color:#fff;--vxe-input-date-extra-color:#67c23a;--vxe-input-date-extra-important-color:#fd2222;--vxe-input-date-title-height-default:30px;--vxe-input-date-title-height-medium:29px;--vxe-input-date-title-height-small:28px;--vxe-input-date-title-height-mini:26px;--vxe-input-date-time-week-row-height-default:38px;--vxe-input-date-time-week-row-height-medium:36px;--vxe-input-date-time-week-row-height-small:34px;--vxe-input-date-time-week-row-height-mini:32px;--vxe-input-date-month-year-row-height-default:48px;--vxe-input-date-month-year-row-height-medium:46px;--vxe-input-date-month-year-row-height-small:44px;--vxe-input-date-month-year-row-height-mini:42px;--vxe-input-date-quarter-row-height-default:60px;--vxe-input-date-quarter-row-height-medium:58px;--vxe-input-date-quarter-row-height-small:56px;--vxe-input-date-quarter-row-height-mini:54px;--vxe-input-height-default:34px;--vxe-input-height-medium:32px;--vxe-input-height-small:30px;--vxe-input-height-mini:28px;--vxe-input-count-color:#999;--vxe-input-count-background-color:#151518;--vxe-input-count-error-color:#f56c6c;--vxe-textarea-line-height:1.5715;--vxe-textarea-background-color:#151518;--vxe-form-item-min-height-default:36px;--vxe-form-item-min-height-medium:34px;--vxe-form-item-min-height-small:32px;--vxe-form-item-min-height-mini:30px;--vxe-form-background-color:#151518;--vxe-form-validate-error-color:#f56c6c;--vxe-form-validate-error-background-color:inherit;--vxe-select-option-height-default:30px;--vxe-select-option-height-medium:28px;--vxe-select-option-height-small:26px;--vxe-select-option-height-mini:24px;--vxe-select-option-hover-background-color:#262727;--vxe-select-panel-background-color:#151518;--vxe-select-empty-color:#c0c4cc;--vxe-optgroup-title-color:#909399;--vxe-switch-font-color:#fff;--vxe-switch-icon-background-color:#fff;--vxe-switch-open-background-color:#409eff;--vxe-switch-close-background-color:#4c4d4f;--vxe-switch-disabled-background-color:rgba(0,0,0,.15);--vxe-pulldown-panel-background-color:#151518}.vxe-cell--filter{padding:0 .1em 0 .2em;text-align:center;vertical-align:middle;display:inline-block;line-height:0}.vxe-cell--filter.col--filter .vxe-filter--btn{color:var(--vxe-font-color)}.vxe-cell--filter .vxe-filter--btn{color:var(--vxe-table-column-icon-border-color);cursor:pointer}.vxe-cell--filter .vxe-filter--btn:hover{color:var(--vxe-font-color)}.is--filter-active .vxe-cell--filter .vxe-filter--btn{color:var(--vxe-primary-color)}.vxe-table--filter-wrapper{display:none;position:absolute;top:0;min-width:100px;border-radius:var(--vxe-border-radius);background-color:var(--vxe-table-filter-panel-background-color);border:1px solid var(--vxe-table-popup-border-color);box-shadow:0 1px 6px rgba(0,0,0,.2);z-index:10}.vxe-table--filter-wrapper:not(.is--multiple){text-align:center}.vxe-table--filter-wrapper.is--active{display:block}.vxe-table--filter-wrapper .vxe-table--filter-body>li,.vxe-table--filter-wrapper .vxe-table--filter-header>li{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:360px;padding:.25em .8em;cursor:pointer}.vxe-table--filter-wrapper .vxe-table--filter-body>li.is--checked,.vxe-table--filter-wrapper .vxe-table--filter-header>li.is--checked{color:var(--vxe-primary-color)}.vxe-table--filter-wrapper .vxe-table--filter-body>li:hover,.vxe-table--filter-wrapper .vxe-table--filter-header>li:hover{background-color:var(--vxe-table-row-hover-background-color)}.vxe-table--filter-wrapper .vxe-table--filter-header{padding-top:.2em}.vxe-table--filter-wrapper .vxe-table--filter-body{max-height:200px;padding-bottom:.2em}.vxe-table--filter-wrapper>ul{list-style-type:none;padding:0;margin:0;overflow:auto;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vxe-table--filter-wrapper.is--multiple>ul>li{padding:.25em .8em .25em 1em}.vxe-table--filter-wrapper .vxe-table--filter-footer{border-top:1px solid var(--vxe-table-popup-border-color);padding:.6em;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vxe-table--filter-wrapper .vxe-table--filter-footer button{background-color:transparent;padding:0 .4em;border:0;color:var(--vxe-font-color);cursor:pointer}.vxe-table--filter-wrapper .vxe-table--filter-footer button:focus{outline:none}.vxe-table--filter-wrapper .vxe-table--filter-footer button:hover{color:var(--vxe-primary-color)}.vxe-table--filter-wrapper .vxe-table--filter-footer button.is--disabled{color:var(--vxe-font-disabled-color);cursor:not-allowed}.vxe-table--filter-option .vxe-checkbox--icon{font-size:1.34em;color:var(--vxe-input-border-color);vertical-align:middle;font-weight:700;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vxe-table--filter-option.is--checked,.vxe-table--filter-option.is--checked .vxe-checkbox--icon,.vxe-table--filter-option.is--indeterminate,.vxe-table--filter-option.is--indeterminate .vxe-checkbox--icon{color:var(--vxe-primary-color)}.vxe-table--filter-option:not(.is--disabled){cursor:pointer}.vxe-table--filter-option:not(.is--disabled):hover .vxe-checkbox--icon{color:var(--vxe-primary-color)}.vxe-table--filter-option.is--hidden{cursor:default}.vxe-table--filter-option.is--disabled{color:var(--vxe-font-disabled-color);cursor:not-allowed}.vxe-table--filter-option.is--disabled .vxe-checkbox--icon{color:var(--vxe-input-disabled-color)}.vxe-table--filter-option .vxe-checkbox--label{padding-left:.5em;vertical-align:middle}.vxe-table--context-menu-wrapper{display:none}.vxe-table--context-menu-wrapper.is--visible{display:block}.vxe-table--context-menu-clild-wrapper,.vxe-table--context-menu-wrapper{position:absolute;top:0;left:0;font-size:12px;border:1px solid var(--vxe-table-popup-border-color);box-shadow:3px 3px 4px -2px rgba(0,0,0,.6);padding:0 1px;-webkit-user-select:none;-moz-user-select:none;user-select:none;color:var(--vxe-font-color);font-family:var(--vxe-font-family);background-color:var(--vxe-table-menu-background-color)}.vxe-context-menu--link{display:block;padding:0 2.5em;width:var(--vxe-table-menu-item-width);line-height:26px;color:var(--vxe-font-color);cursor:pointer}.vxe-context-menu--link .vxe-context-menu--link-prefix,.vxe-context-menu--link .vxe-context-menu--link-suffix{position:absolute;top:5px;margin-right:5px;font-size:16px}.vxe-context-menu--link .vxe-context-menu--link-prefix{left:5px}.vxe-context-menu--link .vxe-context-menu--link-suffix{right:5px}.vxe-context-menu--link .vxe-context-menu--link-suffix.suffix--haschild{top:8px}.vxe-context-menu--link .vxe-context-menu--link-suffix.suffix--haschild:before{position:absolute;content:"";border:4px solid transparent;border-left-color:#727272}.vxe-context-menu--link .vxe-context-menu--link-content{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vxe-table--context-menu-clild-wrapper .vxe-context-menu--link{padding:0 2em 0 2.5em}.vxe-context-menu--option-wrapper,.vxe-table--context-menu-clild-wrapper{margin:0;padding:0;list-style-type:none;border-bottom:1px solid #e8eaed}.vxe-context-menu--option-wrapper li,.vxe-table--context-menu-clild-wrapper li{position:relative;margin:1px 0;border:1px solid transparent}.vxe-context-menu--option-wrapper li:last-child,.vxe-table--context-menu-clild-wrapper li:last-child{border:0}.vxe-context-menu--option-wrapper li.link--active,.vxe-table--context-menu-clild-wrapper li.link--active{background-color:#c5c5c5;border-color:#c5c5c5}.vxe-context-menu--option-wrapper li.link--active>.vxe-context-menu--link,.vxe-table--context-menu-clild-wrapper li.link--active>.vxe-context-menu--link{color:#2b2b2b}.vxe-context-menu--option-wrapper li.link--disabled>.vxe-context-menu--link,.vxe-table--context-menu-clild-wrapper li.link--disabled>.vxe-context-menu--link{color:var(--vxe-font-disabled-color);cursor:no-drop}.vxe-context-menu--option-wrapper li.link--disabled.link--active,.vxe-table--context-menu-clild-wrapper li.link--disabled.link--active{border-color:#c0c1c2;background-color:#eee}.vxe-context-menu--option-wrapper li.link--disabled.link--active:hover,.vxe-table--context-menu-clild-wrapper li.link--disabled.link--active:hover{background-color:inherit}.vxe-table--context-menu-clild-wrapper{display:none;top:0;left:100%}.vxe-table--context-menu-clild-wrapper.is--show{display:block}.vxe-export--panel-column>ul{list-style-type:none;overflow:auto;margin:0;padding:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vxe-export--panel-column>ul>li{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;cursor:pointer}.vxe-export--panel>table{width:100%;border:0;table-layout:fixed}.vxe-export--panel>table tr td{padding:0 10px}.vxe-export--panel>table tr td:first-child{text-align:right;width:30%;font-weight:700;padding:8px 10px}.vxe-export--panel>table tr td:nth-child(2){width:70%}.vxe-export--panel>table tr td>.vxe-input,.vxe-export--panel>table tr td>.vxe-select{width:80%}.vxe-export--panel>table tr td>.vxe-export--panel-option-row{padding:.25em 0}.vxe-export--panel .vxe-export--panel-column{width:80%;border:1px solid var(--vxe-input-border-color);margin:3px 0;border-radius:var(--vxe-border-radius);-webkit-user-select:none;-moz-user-select:none;user-select:none}.vxe-export--panel .vxe-export--panel-column>ul>li{padding:.2em 1em .2em 1em}.vxe-export--panel .vxe-export--panel-column>ul>li.level--2{padding-left:3.5em}.vxe-export--panel .vxe-export--panel-column>ul>li.level--2 .vxe-checkbox--icon{left:1.8em}.vxe-export--panel .vxe-export--panel-column>ul>li.level--3{padding-left:4.5em}.vxe-export--panel .vxe-export--panel-column>ul>li.level--3 .vxe-checkbox--icon{left:2.8em}.vxe-export--panel .vxe-export--panel-column>ul>li.level--4{padding-left:5.5em}.vxe-export--panel .vxe-export--panel-column>ul>li.level--4 .vxe-checkbox--icon{left:3.8em}.vxe-export--panel .vxe-export--panel-column>ul>li.level--5{padding-left:6.5em}.vxe-export--panel .vxe-export--panel-column>ul>li.level--5 .vxe-checkbox--icon{left:4.8em}.vxe-export--panel .vxe-export--panel-column>ul>li.level--6{padding-left:7.5em}.vxe-export--panel .vxe-export--panel-column>ul>li.level--6 .vxe-checkbox--icon{left:5.8em}.vxe-export--panel .vxe-export--panel-column>ul>li.level--7{padding-left:8.5em}.vxe-export--panel .vxe-export--panel-column>ul>li.level--7 .vxe-checkbox--icon{left:6.8em}.vxe-export--panel .vxe-export--panel-column>ul>li.level--8{padding-left:9.5em}.vxe-export--panel .vxe-export--panel-column>ul>li.level--8 .vxe-checkbox--icon{left:7.8em}.vxe-export--panel .vxe-export--panel-column .vxe-export--panel-column-header{padding:.1em 0;background-color:var(--vxe-table-header-background-color);font-weight:700;border-bottom:1px solid var(--vxe-table-border-color)}.vxe-export--panel .vxe-export--panel-column .vxe-export--panel-column-body{padding:.2em 0;min-height:10em;max-height:17.6em}.vxe-export--panel .vxe-import-selected--file{padding-right:40px;position:relative;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vxe-export--panel .vxe-import-selected--file>i{display:none;position:absolute;top:50%;right:15px;transform:translateY(-50%);font-size:16px;cursor:pointer}.vxe-export--panel .vxe-import-selected--file:hover{color:var(--vxe-primary-color)}.vxe-export--panel .vxe-import-selected--file:hover>i{display:block}.vxe-export--panel .vxe-import-select--file{border:1px dashed var(--vxe-input-border-color);padding:6px 34px;outline:0;border-radius:var(--vxe-border-radius);background-color:var(--vxe-input-background-color);color:inherit;-webkit-user-select:none;-moz-user-select:none;user-select:none;cursor:pointer}.vxe-export--panel .vxe-import-select--file:focus{border-color:var(--vxe-primary-color);box-shadow:0 0 .25em 0 var(--vxe-primary-color)}.vxe-export--panel .vxe-import-select--file:hover{color:var(--vxe-primary-color);border-color:var(--vxe-primary-color)}.vxe-export--panel .vxe-export--panel-btns{text-align:right;padding:.25em}.vxe-export--panel-column-option .vxe-checkbox--icon{font-size:1.34em;color:var(--vxe-input-border-color);vertical-align:middle;font-weight:700;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vxe-export--panel-column-option.is--checked,.vxe-export--panel-column-option.is--checked .vxe-checkbox--icon,.vxe-export--panel-column-option.is--indeterminate,.vxe-export--panel-column-option.is--indeterminate .vxe-checkbox--icon{color:var(--vxe-primary-color)}.vxe-export--panel-column-option:not(.is--disabled){cursor:pointer}.vxe-export--panel-column-option:not(.is--disabled):hover .vxe-checkbox--icon{color:var(--vxe-primary-color)}.vxe-export--panel-column-option.is--hidden{cursor:default}.vxe-export--panel-column-option.is--disabled{color:var(--vxe-font-disabled-color);cursor:not-allowed}.vxe-export--panel-column-option.is--disabled .vxe-checkbox--icon{color:var(--vxe-input-disabled-color)}.vxe-export--panel-column-option .vxe-checkbox--label{padding-left:.5em;vertical-align:middle}[class*=vxe-],[class*=vxe-] :after,[class*=vxe-] :before,[class*=vxe-]:after,[class*=vxe-]:before{box-sizing:border-box}.vxe-checkbox .vxe-checkbox--label,.vxe-radio .vxe-radio--label,.vxe-radio-button .vxe-radio--label,.vxe-table--render-default .vxe-body--column.col--ellipsis:not(.col--active)>.vxe-cell,.vxe-table--render-default .vxe-footer--column.col--ellipsis:not(.col--active)>.vxe-cell,.vxe-table--render-default .vxe-header--column.col--ellipsis:not(.col--active)>.vxe-cell,.vxe-table-custom-popup--drag-hint{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}[class*=vxe-]{font-variant:tabular-nums;font-feature-settings:"tnum"}.vxe-primary-color{color:var(--vxe-primary-color)}.vxe-success-color{color:var(--vxe-success-color)}.vxe-info-color{color:var(--vxe-info-color)}.vxe-warning-color{color:var(--vxe-warning-color)}.vxe-danger-color{color:var(--vxe-danger-color)}.vxe-perfect-color{color:var(--vxe-table-header-background-color)}.vxe-row:after{content:"";display:block;clear:both;height:0;overflow:hidden;visibility:hidden}.vxe-row>.vxe-col--1{float:left;width:4.16667%}.vxe-row>.vxe-col--2{float:left;width:8.33333%}.vxe-row>.vxe-col--3{float:left;width:12.5%}.vxe-row>.vxe-col--4{float:left;width:16.66667%}.vxe-row>.vxe-col--5{float:left;width:20.83333%}.vxe-row>.vxe-col--6{float:left;width:25%}.vxe-row>.vxe-col--7{float:left;width:29.16667%}.vxe-row>.vxe-col--8{float:left;width:33.33333%}.vxe-row>.vxe-col--9{float:left;width:37.5%}.vxe-row>.vxe-col--10{float:left;width:41.66667%}.vxe-row>.vxe-col--11{float:left;width:45.83333%}.vxe-row>.vxe-col--12{float:left;width:50%}.vxe-row>.vxe-col--13{float:left;width:54.16667%}.vxe-row>.vxe-col--14{float:left;width:58.33333%}.vxe-row>.vxe-col--15{float:left;width:62.5%}.vxe-row>.vxe-col--16{float:left;width:66.66667%}.vxe-row>.vxe-col--17{float:left;width:70.83333%}.vxe-row>.vxe-col--18{float:left;width:75%}.vxe-row>.vxe-col--19{float:left;width:79.16667%}.vxe-row>.vxe-col--20{float:left;width:83.33333%}.vxe-row>.vxe-col--21{float:left;width:87.5%}.vxe-row>.vxe-col--22{float:left;width:91.66667%}.vxe-row>.vxe-col--23{float:left;width:95.83333%}.vxe-row>.vxe-col--24{float:left;width:100%}.is--animat .vxe-filter--btn:after,.is--animat .vxe-filter--btn:before,.is--animat .vxe-input--wrapper .vxe-input,.is--animat .vxe-sort--asc-btn:after,.is--animat .vxe-sort--asc-btn:before,.is--animat .vxe-sort--desc-btn:after,.is--animat .vxe-sort--desc-btn:before{transition:border .1s ease-in-out}.is--animat .vxe-table--expand-btn,.is--animat .vxe-tree--node-btn{transition:transform .1s ease-in-out}.is--animat .vxe-checkbox>input:checked+span,.is--animat .vxe-radio>input:checked+span{transition:background-color .1s ease-in-out}.vxe-table-custom--option{display:flex;flex-direction:row}.vxe-table-custom-wrapper{display:none;position:absolute;top:-4px;right:2px;text-align:left;background-color:var(--vxe-toolbar-panel-background-color);z-index:19;border:1px solid var(--vxe-table-border-color);border-radius:var(--vxe-border-radius);box-shadow:0 1px 6px rgba(0,0,0,.2)}.vxe-table-custom-wrapper.is--active{display:block}.vxe-table-custom--body,.vxe-table-custom--header{list-style-type:none;overflow-x:hidden;overflow-y:auto;margin:0;padding:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vxe-table-custom--body>li,.vxe-table-custom--header>li{max-width:18em;min-width:14em;padding:.2em 1em .2em 1em}.vxe-table-custom--body>li.level--2,.vxe-table-custom--header>li.level--2{padding-left:3.5em}.vxe-table-custom--body>li.level--2 .vxe-checkbox--icon,.vxe-table-custom--header>li.level--2 .vxe-checkbox--icon{left:1.8em}.vxe-table-custom--body>li.level--3,.vxe-table-custom--header>li.level--3{padding-left:4.5em}.vxe-table-custom--body>li.level--3 .vxe-checkbox--icon,.vxe-table-custom--header>li.level--3 .vxe-checkbox--icon{left:2.8em}.vxe-table-custom--body>li.level--4,.vxe-table-custom--header>li.level--4{padding-left:5.5em}.vxe-table-custom--body>li.level--4 .vxe-checkbox--icon,.vxe-table-custom--header>li.level--4 .vxe-checkbox--icon{left:3.8em}.vxe-table-custom--body>li.level--5,.vxe-table-custom--header>li.level--5{padding-left:6.5em}.vxe-table-custom--body>li.level--5 .vxe-checkbox--icon,.vxe-table-custom--header>li.level--5 .vxe-checkbox--icon{left:4.8em}.vxe-table-custom--body>li.level--6,.vxe-table-custom--header>li.level--6{padding-left:7.5em}.vxe-table-custom--body>li.level--6 .vxe-checkbox--icon,.vxe-table-custom--header>li.level--6 .vxe-checkbox--icon{left:5.8em}.vxe-table-custom--body>li.level--7,.vxe-table-custom--header>li.level--7{padding-left:8.5em}.vxe-table-custom--body>li.level--7 .vxe-checkbox--icon,.vxe-table-custom--header>li.level--7 .vxe-checkbox--icon{left:6.8em}.vxe-table-custom--body>li.level--8,.vxe-table-custom--header>li.level--8{padding-left:9.5em}.vxe-table-custom--body>li.level--8 .vxe-checkbox--icon,.vxe-table-custom--header>li.level--8 .vxe-checkbox--icon{left:7.8em}.vxe-table-custom--header{padding:.28em 0;font-weight:700;border-bottom:1px solid var(--vxe-table-popup-border-color)}.vxe-table-custom--body{padding:.2em 0;max-height:20em}.vxe-table-custom--body .vxe-table-custom--checkbox-option:hover{background-color:var(--vxe-table-row-hover-background-color)}.vxe-table-custom--footer{border-top:1px solid var(--vxe-table-popup-border-color);text-align:right}.vxe-table-custom--footer button{background-color:transparent;width:50%;height:2.5em;border:0;color:var(--vxe-font-color);text-align:center;cursor:pointer}.vxe-table-custom--footer button:focus{outline:none}.vxe-table-custom--footer button:hover{color:var(--vxe-primary-color)}.vxe-table-custom--checkbox-option{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;flex-grow:1}.vxe-table-custom--checkbox-option .vxe-checkbox--icon{font-size:1.34em;color:var(--vxe-input-border-color);vertical-align:middle;font-weight:700;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vxe-table-custom--checkbox-option.is--checked,.vxe-table-custom--checkbox-option.is--checked .vxe-checkbox--icon,.vxe-table-custom--checkbox-option.is--indeterminate,.vxe-table-custom--checkbox-option.is--indeterminate .vxe-checkbox--icon{color:var(--vxe-primary-color)}.vxe-table-custom--checkbox-option:not(.is--disabled){cursor:pointer}.vxe-table-custom--checkbox-option:not(.is--disabled):hover .vxe-checkbox--icon{color:var(--vxe-primary-color)}.vxe-table-custom--checkbox-option.is--hidden{cursor:default}.vxe-table-custom--checkbox-option.is--disabled{color:var(--vxe-font-disabled-color);cursor:not-allowed}.vxe-table-custom--checkbox-option.is--disabled .vxe-checkbox--icon{color:var(--vxe-input-disabled-color)}.vxe-table-custom--checkbox-option .vxe-checkbox--label{padding-left:.5em;vertical-align:middle}.vxe-table-custom--fixed-option{flex-shrink:0;padding-left:.5em;display:flex;flex-direction:row;align-items:center}.vxe-table-custom--fixed-left-option,.vxe-table-custom--fixed-right-option{line-height:1.34em;font-size:1.1em;padding:0 .2em;cursor:pointer}.vxe-table-custom--fixed-left-option.is--checked,.vxe-table-custom--fixed-left-option:hover,.vxe-table-custom--fixed-right-option.is--checked,.vxe-table-custom--fixed-right-option:hover{color:var(--vxe-primary-color)}.vxe-table-custom--fixed-left-option.is--disabled,.vxe-table-custom--fixed-right-option.is--disabled{cursor:no-drop;color:var(--vxe-input-disabled-color)}.vxe-table-custom-popup--body{overflow:auto;height:100%}.vxe-table-custom-popup--table-wrapper{border-bottom:1px solid var(--vxe-table-border-color)}.vxe-table-custom-popup--table-wrapper table{width:100%;border:0;table-layout:fixed;word-break:break-all;border-spacing:0;border-collapse:separate}.vxe-table-custom-popup--table-wrapper table th{position:sticky;top:0;text-align:left;border-bottom:1px solid var(--vxe-table-border-color);background-color:var(--vxe-table-header-background-color);z-index:7}.vxe-table-custom-popup--table-wrapper table td,.vxe-table-custom-popup--table-wrapper table th{border-top:1px solid var(--vxe-table-border-color);border-left:1px solid var(--vxe-table-border-color)}.vxe-table-custom-popup--table-wrapper table tr:first-child td{border-top:0}.vxe-table-custom-popup--table-wrapper table tr:hover{background-color:var(--vxe-table-row-hover-background-color)}.vxe-table-custom-popup--table-wrapper table td,.vxe-table-custom-popup--table-wrapper table th{height:44px;padding:0 .6em}.vxe-table-custom-popup--table-wrapper table td:last-child,.vxe-table-custom-popup--table-wrapper table th:last-child{border-right:1px solid var(--vxe-table-border-color)}.vxe-table-custom-popup--drag-hint{display:none;position:absolute;top:0;left:0;padding:.6em 1em .6em 1.8em;max-width:300px;border-radius:var(--vxe-border-radius);-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none;background-color:var(--vxe-table-body-background-color);box-shadow:0 0 10px 0 rgba(0,0,0,.2);z-index:33}.vxe-table-custom-popup--name{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vxe-table-custom-popup--row.level--2 .vxe-table-custom-popup--name{padding-left:24px}.vxe-table-custom-popup--row.level--3 .vxe-table-custom-popup--name{padding-left:48px}.vxe-table-custom-popup--row.level--4 .vxe-table-custom-popup--name{padding-left:72px}.vxe-table-custom-popup--row.level--5 .vxe-table-custom-popup--name{padding-left:96px}.vxe-table-custom-popup--row.level--6 .vxe-table-custom-popup--name{padding-left:120px}.vxe-table-custom-popup--row.level--7 .vxe-table-custom-popup--name{padding-left:144px}.vxe-table-custom-popup--row.level--8 .vxe-table-custom-popup--name{padding-left:168px}.vxe-table-custom-popup--row.level--9 .vxe-table-custom-popup--name{padding-left:192px}.vxe-table-custom-popup--column-item{position:relative}.vxe-table-custom-popup--column-item.col--fixed,.vxe-table-custom-popup--column-item.col--sort,.vxe-table-custom-popup--column-item.col--visible{text-align:center}.vxe-table-custom-popup--row.active--drag-target[drag-pos=top] .vxe-table-custom-popup--column-item:after{display:block;top:-2px}.vxe-table-custom-popup--row.active--drag-target[drag-pos=bottom] .vxe-table-custom-popup--column-item:after{display:block;bottom:-2px}.vxe-table-custom-popup--row:first-child[drag-pos=top] .vxe-table-custom-popup--column-item:after{top:0}.vxe-table-custom-popup--row:last-child[drag-pos=bottom] .vxe-table-custom-popup--column-item:after{bottom:0}.vxe-table-custom-popup--column-item:after{display:none;content:"";position:absolute;left:-1px;width:calc(100% + 1px);height:3px;background-color:var(--vxe-primary-color);z-index:12}.vxe-table-custom-popup--column-item:last-child:after{width:100%}.vxe-table-custom--list-move{transition:transform .35s}.vxe-table-custom-popup--column-sort-btn{font-size:1.2em;padding:.2em .5em;cursor:grab}.vxe-table-custom-popup--column-sort-btn:active{cursor:grabbing}.vxe-table-custom-popup--table-sort-help-icon,.vxe-table-custom-popup--table-sort-help-title{vertical-align:middle}.vxe-table-custom-popup--table-sort-help-icon{margin-left:5px;cursor:help}[class*=vxe-icon--]{display:inline-block;vertical-align:middle;position:relative;direction:ltr;font-family:var(--vxe-icon-font-family);font-weight:400;-webkit-user-select:none;-moz-user-select:none;user-select:none}[class*=vxe-icon--].rotate45{transform:rotate(45deg)}[class*=vxe-icon--].rotate90{transform:rotate(90deg)}[class*=vxe-icon--].rotate180{transform:rotate(180deg)}.vxe-icon--arrow-bottom,.vxe-icon--arrow-left,.vxe-icon--arrow-right,.vxe-icon--arrow-top,.vxe-icon--calendar,.vxe-icon--caret-bottom,.vxe-icon--caret-left,.vxe-icon--caret-right,.vxe-icon--caret-top,.vxe-icon--check,.vxe-icon--circle-plus,.vxe-icon--close,.vxe-icon--d-arrow-left,.vxe-icon--d-arrow-right,.vxe-icon--dot,.vxe-icon--download,.vxe-icon--edit-outline,.vxe-icon--error,.vxe-icon--eye,.vxe-icon--eye-slash,.vxe-icon--funnel,.vxe-icon--info,.vxe-icon--menu,.vxe-icon--minus,.vxe-icon--more,.vxe-icon--plus,.vxe-icon--print,.vxe-icon--question,.vxe-icon--refresh,.vxe-icon--remove,.vxe-icon--search,.vxe-icon--square,.vxe-icon--success,.vxe-icon--upload,.vxe-icon--warning,.vxe-icon--zoomin,.vxe-icon--zoomout{width:1em;height:1em;line-height:1em}.vxe-icon--arrow-bottom:before,.vxe-icon--arrow-left:before,.vxe-icon--arrow-right:before,.vxe-icon--arrow-top:before,.vxe-icon--calendar:after,.vxe-icon--calendar:before,.vxe-icon--caret-bottom:before,.vxe-icon--caret-left:before,.vxe-icon--caret-right:before,.vxe-icon--caret-top:before,.vxe-icon--check:before,.vxe-icon--circle-plus:after,.vxe-icon--close:before,.vxe-icon--d-arrow-left:after,.vxe-icon--d-arrow-left:before,.vxe-icon--d-arrow-right:after,.vxe-icon--d-arrow-right:before,.vxe-icon--dot:before,.vxe-icon--download:after,.vxe-icon--download:before,.vxe-icon--edit-outline:after,.vxe-icon--edit-outline:before,.vxe-icon--error:after,.vxe-icon--eye-slash:after,.vxe-icon--eye-slash:before,.vxe-icon--eye:before,.vxe-icon--funnel:after,.vxe-icon--funnel:before,.vxe-icon--info:after,.vxe-icon--minus:before,.vxe-icon--more:before,.vxe-icon--plus:before,.vxe-icon--print:after,.vxe-icon--print:before,.vxe-icon--question:after,.vxe-icon--refresh:after,.vxe-icon--refresh:before,.vxe-icon--remove:after,.vxe-icon--search:after,.vxe-icon--search:before,.vxe-icon--square:before,.vxe-icon--success:after,.vxe-icon--upload:after,.vxe-icon--upload:before,.vxe-icon--warning:after,.vxe-icon--zoomin:after,.vxe-icon--zoomin:before,.vxe-icon--zoomout:after,.vxe-icon--zoomout:before{content:"";position:absolute}.vxe-icon--square:before{left:.05em;top:.05em;width:.9em;height:.9em}.vxe-icon--square:before,.vxe-icon--zoomin{border-width:.1em;border-style:solid;border-color:inherit}.vxe-icon--zoomin{background-color:var(--vxe-icon-background-color)}.vxe-icon--zoomin:after,.vxe-icon--zoomin:before{background-color:inherit}.vxe-icon--zoomin:before{left:-.1em;top:.2em;width:1.1em;height:.4em}.vxe-icon--zoomin:after{top:-.1em;left:.2em;width:.4em;height:1.1em}.vxe-icon--zoomout{position:relative}.vxe-icon--zoomout:before{right:0;top:0}.vxe-icon--zoomout:after,.vxe-icon--zoomout:before{width:.7em;height:.7em;border-width:.1em;border-style:solid;border-color:inherit}.vxe-icon--zoomout:after{left:.1em;bottom:.1em;background-color:var(--vxe-icon-background-color)}.vxe-icon--menu:before{content:"";display:inline-block;width:.22em;height:.22em;box-shadow:0 -.36em 0,-.36em -.36em 0,.36em -.36em 0,inset 0 0 0 1em,-.36em 0 0,.36em 0 0,0 .36em 0,-.36em .36em 0,.36em .36em 0;margin:.26em}.vxe-icon--caret-bottom:before,.vxe-icon--caret-left:before,.vxe-icon--caret-right:before,.vxe-icon--caret-top:before{border-width:.4em;border-style:solid;border-color:transparent}.vxe-icon--caret-top:before{left:.1em;bottom:.3em;border-bottom-color:inherit}.vxe-icon--caret-bottom:before{left:.1em;top:.3em;border-top-color:inherit}.vxe-icon--caret-left:before{right:.3em;bottom:.1em;border-right-color:inherit}.vxe-icon--caret-right:before{left:.3em;bottom:.1em;border-left-color:inherit}.vxe-icon--arrow-bottom:before,.vxe-icon--arrow-left:before,.vxe-icon--arrow-right:before,.vxe-icon--arrow-top:before{top:.4em;left:.14em;width:.7em;height:.7em;border-width:.15em;border-style:solid;border-top-color:inherit;border-right-color:inherit;border-bottom-color:transparent;border-left-color:transparent;border-radius:.15em;transform:rotate(-45deg)}.vxe-icon--arrow-bottom:before{top:0;left:.14em;transform:rotate(135deg)}.vxe-icon--arrow-left:before{top:.18em;left:.35em;transform:rotate(-135deg)}.vxe-icon--arrow-right:before{top:.18em;left:0;transform:rotate(45deg)}.vxe-icon--d-arrow-left:before,.vxe-icon--d-arrow-right:before{left:.15em}.vxe-icon--d-arrow-left:after,.vxe-icon--d-arrow-right:after{left:.58em}.vxe-icon--d-arrow-left:after,.vxe-icon--d-arrow-left:before,.vxe-icon--d-arrow-right:after,.vxe-icon--d-arrow-right:before{top:.18em;width:.7em;height:.7em;border-width:.15em;border-style:solid;border-top-color:inherit;border-right-color:transparent;border-bottom-color:transparent;border-left-color:inherit;border-radius:.15em;transform:rotate(-45deg)}.vxe-icon--d-arrow-right:after,.vxe-icon--d-arrow-right:before{transform:rotate(135deg)}.vxe-icon--d-arrow-right:before{left:-.25em}.vxe-icon--d-arrow-right:after{left:.18em}.vxe-icon--funnel:before{top:.05em;left:0;border-width:.5em;border-style:solid;border-top-color:inherit;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent}.vxe-icon--funnel:after{left:.41em;top:.4em;width:0;height:.5em;border-width:0 .2em 0 0;border-style:solid;border-right-color:inherit}.vxe-icon--edit-outline:before{height:.84em;width:.86em;top:.1em;left:.02em;border-radius:.2em;border-width:.1em;border-style:solid;border-color:inherit}.vxe-icon--edit-outline:after{left:.6em;bottom:.2em;width:0;height:.8em;border-radius:0 0 80% 80%;border-width:0 0 0 .22em;border-style:solid;border-color:inherit;transform:rotate(45deg)}.vxe-icon--more:before{content:"...";top:0;left:.1em;line-height:.5em;font-weight:700}.vxe-icon--plus:before{content:"+";left:-.12em;bottom:-.1em;line-height:1em;font-size:1.6em}.vxe-icon--check:before{left:.25em;bottom:.2em;width:.5em;height:.9em;border-width:.15em;border-style:solid;border-top-color:transparent;border-right-color:inherit;border-bottom-color:inherit;border-radius:.15em;border-left-color:transparent;transform:rotate(45deg)}.vxe-icon--close:before{content:"+";left:-.1em;bottom:-.16em;line-height:1em;font-size:1.8em;transform:rotate(45deg)}.vxe-icon--minus:before{content:"\2500";left:0;bottom:0;width:100%;text-align:center;line-height:.9em;font-size:1.2em}.vxe-icon--refresh{border-width:.1em;border-style:solid;border-radius:50%;border-right-color:transparent!important;border-left-color:transparent!important}.vxe-icon--refresh:before{left:50%;top:0;transform:translateX(50%) rotate(-45deg)}.vxe-icon--refresh:after{right:50%;bottom:0;transform:translateX(-50%) rotate(135deg)}.vxe-icon--refresh:after,.vxe-icon--refresh:before{width:0;height:0;border-width:.25em;border-style:solid;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent}.vxe-icon--refresh.roll{animation:rollCircle 1s linear infinite}.vxe-icon--circle-plus:before,.vxe-icon--error:before,.vxe-icon--info:before,.vxe-icon--question:before,.vxe-icon--remove:before,.vxe-icon--success:before,.vxe-icon--warning:before{content:"";border-radius:50%;border-width:.5em;border-style:solid;border-color:inherit;position:absolute;top:0;left:0;transform:scale(.95)}.vxe-icon--info:after,.vxe-icon--question:after,.vxe-icon--warning:after{left:0;bottom:0;width:100%;text-align:center;color:var(--vxe-icon-background-color);transform:rotate(-10deg) scale(.75)}.vxe-icon--question:after{content:"?"}.vxe-icon--info:after{content:"¡"}.vxe-icon--warning:after{content:"!"}.vxe-icon--success:after{content:"\2713";left:.25em;bottom:0;color:var(--vxe-icon-background-color);font-size:.65em}.vxe-icon--circle-plus:after{content:"+";line-height:1.4em;font-size:.8em}.vxe-icon--circle-plus:after,.vxe-icon--remove:after{left:0;bottom:0;width:100%;text-align:center;color:var(--vxe-icon-background-color)}.vxe-icon--remove:after{content:"\2500";line-height:1.5em;font-size:.7em}.vxe-icon--error:after{content:"×";left:0;bottom:0;width:100%;line-height:1.4em;text-align:center;color:var(--vxe-icon-background-color);font-size:.8em}.vxe-icon--download,.vxe-icon--upload{overflow:hidden}.vxe-icon--download:before,.vxe-icon--upload:before{left:0;width:1em;border-width:0;border-style:solid;border-color:inherit}.vxe-icon--download:after,.vxe-icon--upload:after{width:100%;text-align:center;font-size:2em}.vxe-icon--upload:before{top:.1em;border-top-width:.1em}.vxe-icon--upload:after{content:"\2191";left:0;top:.15em}.vxe-icon--download:before{bottom:.05em;border-bottom-width:.1em}.vxe-icon--download:after{content:"\2191";left:0;bottom:.15em;transform:rotate(180deg)}.vxe-icon--eye-slash:before,.vxe-icon--eye:before{content:"\25cf";top:.16em;left:0;width:1em;height:.68em;line-height:.25em;border-radius:50%;border-width:.1em;border-style:solid;border-color:inherit;text-align:center}.vxe-icon--eye-slash:after{top:-.1em;left:.45em;width:0;height:1.2em;border-width:0;border-style:solid;border-color:inherit;border-left-width:.1em;transform:rotate(45deg)}.vxe-icon--calendar:before{top:.15em;left:0;width:1em;height:.8em;border-width:.2em .1em .1em .1em;border-radius:.1em .1em 0 0;border-style:solid;border-color:inherit}.vxe-icon--calendar:after{left:.2em;top:0;width:.6em;height:.3em;border-width:0 .1em;border-style:solid;border-color:inherit}.vxe-icon--dot:before{top:.25em;left:.25em;border-radius:50%;border-width:.25em;border-style:solid;border-color:inherit}.vxe-icon--print{box-shadow:inset 0 0 0 .1em;border-width:.2em 0;border-style:solid;border-color:transparent!important;border-radius:.3em .3em 0 0}.vxe-icon--print:before{height:.3em;top:-.2em}.vxe-icon--print:after,.vxe-icon--print:before{width:.6em;left:.2em;box-shadow:inset 0 0 0 .1em}.vxe-icon--print:after{height:.6em;bottom:-.2em;background-color:var(--vxe-icon-background-color)}.vxe-icon--search:before{top:0;left:0;width:.8em;height:.8em;border-width:.15em;border-style:solid;border-color:inherit;border-radius:50%}.vxe-icon--search:after{top:.75em;left:.6em;width:.35em;height:0;border-width:.15em 0 0 0;border-style:solid;border-color:inherit;transform:rotate(45deg)}.vxe-icon-warnion-circle-fill:before{content:"\e848"}@font-face{font-family:vxeiconfont;src:url(data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAEUIAAsAAAAAlqwAAES3AAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGYACbdgqB7UiBwgcBNgIkA4VMC4JoAAQgBYULB5I9G75+B8Tb9wjQHQDssUoRoyiRs3BU1Kw5ip39/5+RdIwhjBwCWt7yQooTdYaLJ2RIAUejV8IpE9069VNEc+ilOqByQEVAFYvruX+wTAkHG9wEbpjtvp/agO6OHJGKtKVftWsTLEkYqR7lX0DCxQQ0FIwhx0pJBy5s5TWceTo49mihPv1v9wxwR5lTVx6eX8d33ryZFdP+31ZJaAAboGT+v6GwbYeSGAqc7kp5eJ5v/b07v92dORyKqFEUXReiUAu/3Nvebja5mfyjGY3wSBzuSumW0h52Y6lasGnT870eZEuJDAr6Q1zCYW8nwLXDw9z6N9aMNTBiLJoaLGFjwNgapLYxQVBqjBYBFQwQEE/AQxsJA8UEK04sjEZPvfvKBYpViPHtcwEwtM7L9WVPqmFsW8sj69ou5Cb7yaFrgg3Extr2lbG6H1cRBXJgE1B6GKHaYi/Nz9EjYHBeyCMOYr53qqeN75K0e0+Qxhs7dmDEBRrCSZfUpcR2XOCM9SP9Sr8HhpZlW7aDYKdAgZYNb1tt/9V5DCMJDaMuNHxxxp1L59qZVXekas+7Js41JSPUSM4+efSFK43TjHx/qv+/2D39tWViHRS4tnUiyhOQNv82tVpN9JSVF+0l9iEWTeIj7oi6vaL5NLL+/BlJo5Ecj8ZyLCskyc5pJAfGcKvY3txYdt46QM4CgyC+aALvaewD+dA+AOgAqL3qiupeT9BWVF7R1kf/H/eMJNBvKxLrnSNPPA2IQsa0mWy5OIa+euk1bqWKA+HJvaqf6RqQRcZCFqJXdLJQSsZXx1eSDrItenhE3zMubaI3YOSiKPUP2ZZ3E6uOOXqNDFE/It8RSbTxNkIx7pZVQYcN07UHDUp25ySL1dOGbRGBVveK1rF6smPE7rfkrCjFieIFzf7rn74OSq2k0DNrZ9YqLAV3nv5R7a8J5DfjnSTsvhCVyKKPslDV1B0vjwsz2sezGfpfwsoF4DZKpCmDYpHIhx+6YKHCSUVQihWHwFF4cr3DxQ+OJdBZfKHU5ujqf7JO4Sk9laczmCXxE6YoLjyqpK5Tn9CE7Iqmbr2BBkwQgRQ04ACuv920evXw4//vyZzKCfn9C7cXsBeMFyEvYl4MviS/jH/Z9ar39dy3e9+vcbmeAt0vSHrq7ZK79JyDm83Ndy1per3zTxeGi2xK61x11NFn51y3Gj88B895xyU8L+QuH/f6uWvhY/OW/TG2KQgYBFfdCw6Dm67brjvc39y/3GvXRNMfnZ9cPxw/nxkE5vQ8igPhuQSNQZAQiPA4NUTHGY6zQNKH36b8U3gAgG6QCBpBAlAADqACGEADNyADXLAHCMEsIMnatLK/n9YN8NvVa6t/6euHocZpKsarJ0+frf/seRfXF79+PM/8z1e05ulFB62smqifn8+dP3n3wu/T3eru4tbvf137yUyfLu1jvMvNxP177/6Dh8veNOftz7/amLz95o6du3bv2bvv0TDDTTDCSKOMNkZ707SkeTvLbKcn6+add8+c3dDJ3/sPHPzi0OEjp44eW9TWho6O31gy0CAn/tu4afOWDz78v51Ft+98dKmBJV/NMVUPy9/rqZevv/n2uyagQIMWfLcGaL7GfN4KGOIPgWCNuOF9gWKVwDCDwDGYINCbINEYCAotgLijIRAPTCEkDCFkvBRvjCUUXBEfTCJ+WCl09CfB+ElCsU7CMYBI8ZvIcVUicE2UWC2x+EXi0Jfo8YMYMJQYMY4koikQK+aSqXglDjyRAjwVJ57JdKyX2fhMavBc5qILmY/rUofFUo/XsgCPpQHzSCPmSxM+l4VYIc1oDWQxOpMleCG/ogNpRysgy/GjrMVE0o1+ZD1+lg04JxtxXjbhpGzFXTmCCzKI3+UUppPLuCVX0Z3cwkX5E1vlf/he/hp6AdYqDD5RHphJYfGpwmGpIqAPxcd4SojLKhLNgFI8Fij8q7S4p3S4r/R4oAx4qMxYpvLxRpWjOVC16Eo14U+1CH+p5WgD1CpsU6uxXa3BTdWBHWotdqpO7FJd2K26sUf1YK/agX3qAB6poxhG/Ybh1DFMoAYxgjqOkdQJjKJOYjR1CmOo02hPncM06jxaAnURC9WV0dctMIu6jdnU/3Ba/YvJ1GN0oz7gHVXZj9hHAGwkINhE8DCb4KMrYcI5iAQsISZhKZGIZUQSTkIkYzmRghVEKlYSFqwnrFhF2B6rCYwlitBBohjnISrQhaifuH4DO4jzGE9cRnfiCnoQf41sr8FFiDejtXGG3jI0AeYT73AQ4j0OQbhwCT4DdJTPEByBz27YzWcY9vCZgcPwOQTb+Rwz6R3jnKJBcBq+kM9wXzxnGHWBbnztxSS+zcV++LkXDfzhTyMJnDMkcppIYuKSGVI4Fank2+JPV4C0Copp0PupAXfsq7rMKdAXoDi1akatNsPmgmyiDjRESKcAWtF2LQWN2ehGm41D052TSKrdgllQM9SyIw9KQC2RQI4IIwVRVm5iUGBQmioo0t+QGOLpaFkV94TQBrvK0gnbNEtVJRmSMatxkjBq/V2EbCLHVl4iS3pGSpNe1jDGsqwgK6v6LRNVb7ldjl/IkVrdKg2ZGWjeCzNlxBnvKHv/7Ky7vm43DWSKMZ8RYsfzqBaC+WgqeZdHqzxHpPkgGzZkuMW21qEZFsGLho0JYt/a3tcpFLg6g6amqeoNjiFHb6PtPIMabDIUbIv53gfDJPigc1SdGE5QgDqpxWZ14w9eLv46U+c4VWMLUnOtCeDNEIynenDWnCL4nCqBQbM/QNy1g8xhtx3UBht3BlZ/rq6q1oo1HGWlwUwgDhzkEN9qGeKVDhqdjSm1AJmr5KUdgOsAiYx6hXm8G7TdYt12teqtyE42BwDjDH9ZRtidvTL/83uqqkYVVCL7kUj7T0RL+cRhvFHi8hKgB7GoQh+tmFjhw0AIjaGe4skwqiYZKJ60o1ANKHezMEil0qhsQ/nM/MoGe6QIGnasrerYA/vcW1mMPDHkKnRvIAdEjyoEkwyEOceJVSQK0srZ9TgqTMY0p3KpDwvksAQTdK4RkVUYSKTwn9mQzsGIvY8hoz55PPZbYuA4SnhjIPFrLH4E1ih3cOHqrV7WC6nr2aiC150/gZ2CBAo2eiatTYG5Q4GSIS3C5v+GvjAi+Ty6aFoVLB8GzgfGAoqk5KeW3MLucYfmdrmirSVExJJjyAAiJURJFT3Y4WwziR7A5DeSsOsVDn697qqzVadaKCoyhxf7tlaSfKL8XOyag65ecaMmadcy3SVrrmoLRDjsrswYBqwW6D4vfzO8c3HjNJJGDbzjlUn8Ozr5WgVCXZ65n8Y42pDanDyS+djMDMqIqXwnnsoL5vE26g8a9bjFBterJgcG79/7mq//QfTIO5LIaNr97V5dRVKGTNcUr/yanq1XS7NvMihCihBXr4Cvz0pfappWURq2p9TKCTfLsowRbgvkUF1jjqsXT8K3xgw8leeg85JJhSVlb8gankfCLEpcukPVfDbV0wzdTa5F/Ma8Pxyb7Dgy5RujhF2ETq4WcVV1uZsEess4slfFs3YjHWuDoHxfRoQD7qwBoElstVaaC3yEBuC76HALAJbvFCXg0h67/KEHXGUzOz2lbuH2SQsGItN3rNsRDow4bqZO3G9rW8njQpuoc9igZn6L6w6jaufhnvnPmKstbrx/qJE2gA/8vjc0BNy6cNOFi/hOB8YQUzVlZ5eQmj3sfKjYG5LBE2MYBmFNYqtFDmw1BkTcmHAjUN2pI64vBEbuvYwGq64OXj7isZw7U6myBWQCE/cTXSpQTaQ1SKo2MCaC8H5o1MZZ/nI4sON3y1++GSfZE/dyZ3l6v52RWOVqtLCCJXt01S8VFabsL4ZyFLHG2qw+KwmqWbLDrQCWoVuyL8d+ByKpWOW4W5JuGKqSaQPovv+N+DuD7QZ0vbyK71a/tFd30AIzFFrdtd+NW5LggfAski/fq025SRLOu85ARvIIKBD0yIbuq/frS289CMu0nxp0Xz3/nSf14ZMinE/FLSn1yRM06JnPzwRvbG2DDOebZztkGhtBj/2ir5kvNc2PQl0xEoVKUTKU5OmrXqbNIQJzoApXowCdgsFjDymSx+P+shs1gdry56Op4RQlzmiSLVwGwFKAfrObQHrSbMQtvtQWQbi36qhEF+C0KgE3eT6vh5qT5b2BUy7YetTVLYO+WNGowVZhaV+FCoVBocThLKiDlBp2uaR19m3P+BnRugUbm3S8mehbjb/Wna851+I0mVL0J1hA9LT9hmSrxroGBShtlIjIpLnp/QarsT+3jOhWP+6qJ7k2Ye6IDE/DUKacqpntA+qmnWULWUSSL+W1MCk19j3FMmweWfIxSRdJxbQPHumjvkob1RppeNEVdz/LftZeM2wYNO7n4jQQnKMK5/Pc56H6Xk7lVsqUu6Z9vnn73I35jeHGPiFUkxtJaCm04HzqbQpiehoo+wECjJ3tsRQ2xwezZNDgjJ04WO7YdWwJGRxHt0nZIdWnmoIB8iA3UhQa6srmbljcqgkJ+FGMfg8ULEWpfLYWBmkcU3vzxXBvLm1n8ui5/+wnQi8DYwWRMEVXWBaB5DUihOsruCz5vETS9hopUqxcjYr6jD6nvhMDuSqNLNVBsR6oBTKVdfMZO51zvCR23KjERcfv8zcdTp4fYUWaHZ9AEVvyl/nNepMluF9Vv9+D0JH/oZaiMySCq8bgAQr+ZcqYqxGdCc3cbXAZ28Ypk8eCvhFF10OEvtj9NFPwA8nhw4QH8edt+HwicO76H8tEr3xZ7lj5S6FF+PGutfR2pzwLjT9P0hhncRskYRXQAHrH7WLOo8cEq8g1t531bbnq+iuK29/6MSbtWSWLRDsrrYSkb1Af+XBHRY7yDokc+uZH8dg3LMK6cX/eaD/nRqF+dP0wRJ8PLbwiiUAmnP9oWh+SbZfLy5O941Vya+fno41RmYAmQ4kAAZ1HASDox1J/Jk8PdYS+y83c+v7bD4eAjNbfJBJNzHLGbLFxY21HbUvXDDKAUhX7PMASpeFhZoHdBnSc20KgJKRjgdVyg2tTByUDRmlviVq5ZOqKyERHqaJjHsSo3+AJslOnQYQd8jt2eVCTMlqmjedynpzckHqpOtsL+q00pTAk4dI74bVp2WkkAZFWi/hj/KIsyH2WzM9qLvjr9D6UMzqD/KnyUF5hSgSRPpfwDu7ImIrCHqrBHQMx7pw7fjTVWakgtrC26SBFgl1UI8ApelXcCCeiDSSP+REaSypRfDj7CkVDOyZjg+dBsZmVXnZAW3JRItqWRGclCAiFJwkDUFpt2trT5g8XxjItpIsUCaExI33DUx1hV59ujVGrKUU+zoTeJuhJM4LpmT1rK0m9UacNEgkamNNKVdXbq2SGnDLJTiUhceDQvK5eyY26sCK1UhmrxU3nwZGIV0DmI8ydB/Zhc+mavB8+/GF3DR2KUcs3nnsxiYvRQHtPyX6S7y6RYUJs/BzLjizPBb02Tp4g9TjtXNvZscMHoG2ow4fPjwSI4JzK23hAGm3Qc8OtmDImtJ1M3sWk62niUSTpIEJNq9yTSwjtyEacJGFZy8uQTXAuOA3mUe7IMZrsrbnIokjyWkSkcWxIHWx8QIAxsK/j9wjeC+LkXb1XbdLmVTJCzBb0Sgy42PNDYXMvLqVd13kG/IDGvjANgPW54wOof1dVoYfFy7o+NICOl6tFpZoddWSNYvDeECKQQpTDSZ5kp5pCyJjDoweSO6J+BWAGmCOyBehtnM4FHPQt9uSarLx1148tu9W3pWyfo1FeuOgkAZwFqQcAp/9FPT2EqHIiDd1N0A9h6lDG6/gy0vDoCVuudKkk/F6aCn2udduO9AJEP0oV5SD2DZ1wsme1Mzm1ipa3QxwG4IewGbCNZAoBIBd323HT/AwRx2LQM+6ENElFAP0vLIiALW/i0Zb2uuf1aQtJqkd6pR535J7GjiPjJy+OGxhE0nKECFfRI79T7H3y3LgP7QP3iB8bi7nC5g7VKQVRzF1NXWZRh9sCrnBEy0aaNzs5dGEaLFhbQAaj5udtI12Y3HvP/fDrOvlm8s3WIcG8pD2LSIcXgKCnM9rG97tHQPZB1pIfCASuj5qcJpBpwyV9b3j7DDBNMuntVRteaxrnJbF/vlNv8KhqNCtxD4k002AkH+iiIYN/oYKoEXl9lW3HUCh9osFRY/cADHgszmhB34qDCDYIRCuCFHtuL5qhL78JjOMrFMnaO5LPE6vHDaIndPMFtwASfdjfFaU+XOpVqZpHWCHJm1gxMgFsOQxnCUJAp5dyTD0hLa5ETToqkxNuasopkMDnzSxoEM3kcyxRGGP5u8ixHDDG8pfRg6yTECLGCAYXWBkpwAyiLIVII0Lo2x8dl4AfE4GMrQzRGQNrqNS4CT/cJZwgE1YFRXLZIR9L2xW1KN9jWNZ2WoWszvaecSiM2XxfY2wZe5ziHMwSv9VRSyjq9bKHqWlP+3NBEDqFQ2Gm/nfFjSFc4FLDijSK/lCeb9Xc+eHh/kc43OqkpcROw8UuCZqWwnvhZHSSGzYXOjenlEK36N6505yulWOs6p/F0qYbd2it620DaoC0xqjFEpBco6J2edgmb3zHLuJpZmqXx8bj0+b8q8qlBNbSGKaV9ZNKPEZTBVdLxFsiYTZr0P3DHS2dAxICJFLYBkUGsekGTW4WvIMepv9QW7s06rPgtVIgqFCbOzylPx4qHYhSoSVKly4u3fp2eoz+uJA1Y5xoEgJqnIBhnQY4gYKg11xquvGQoucWR5GyTVikpRFNQUxkBo9yDzrNBiXsvw9TKzqRl3zOJYV6JLUVTCAvjrpLjCz0HJY+ZZk6OnuXwTOlbM+NS0WHesjClogHg8iKsr/7DzK4AYY+XPwnjFFWjjyReKMNxkke62NCGjEK5HS1XN5PLVPNiNgwrnWNehjEwc0FHa+eAlgsn3EIAzaSkOEvij9GmEXOosVy/UFYNUVxhjyajzUQFvFvuDbJl3tjPU3UAakJRPQET/lZeNxSGFAywqxNMhDl3n1fEp1q4NOFuUYMSJuU8bpIzMpYZwAWrfnF2FpUHOOxmPKx7sQ6s/LK3WDZtmlG03JdQeBywNMuhNIHAVVIQ2U/PJzMIfDvicIA9G2CRVpKsSeIwDBwQEm4aGQewONvWkSIrkzckgQ6CuF9vDz6SCtbMEOf8k8D45nCNIpktnRO8vlscWZQoWRNqjufOvfz9c+8kD2de6EhCeicCy0CPWfnUbJgVO5BJWUle1s4dx4QQyM9fiBqsmw+05/qmRboe7pM5qXKWt6+kqZ9Dd2QVUGyuF+kCg6dRhH5rcFZyag9P1ZeRhcKfcBGrRmPx0E6BRckUyS1FjC5vMPB98odWwhSUE/OgTx9icfcCTl2w1H7e5Ty/tYZnAuhMa0gBmFqH1PqRTEBbDCNTvWLohsYijAIYeFlKmMiMrUkmoev4WljIYnzfgIEvPObffflx982XFVApWJqnDAhGVRKqjwxxgCEhrKEk6HaVPXRmLX4yexHN2fMv3bmzaFP54JTm3wZkEz7pNsVu/zO5Ov1qg0B53wV2ZPwklMmVITki5kuI4tgCBS3UACPtc+xcPTJjVzRTIowVCTlfU4fCEQbi0L0lMxSH2iWPHj8xysfI+ghhoF789ICx6dDJ9HxS8ySX9Sx0eEFgxi2Qjm1CxvkZW5rrxhE786Hw4RA91ux12Fw6DwZJ88oOngQUMH09AYSRUIwnm3XU1OAzADJd+sM6eB7yZxVDWGrRJxrM3hO+BlzISNd7JG7X73YYO7Jx4hN8+hTybkEDxchukfAgcxEyFBzucFZXeqUSShm7u2d3wAeAnyA5UnJ563XlDx7PVRsTV5o17FzWnlNu4xkvoIkTPKX2iRH5Zo+BEu2RLtk78+VlEDNi6vL1Qbsj1njnZUvsxXJpNWZriV7qyYzoXd6M2Jtwkv7vq1aLYwlP/xpBtuKlCbtia7i6lQuk8tubSfQiQX2E81nBKbqKDNBjdYn5g/B9NmR3W76DfwT0RM/musVUBxFMV12gKPIaDESKlvIBxBPxEqrxQwTEWdTe5vqUY+gWxMhUmcqIS176YryWApg6SZWc+SgQFTNef7GrvFLu4cyWZEw0A75J7qRWXYYPS4WTCxH4HvuJDFiYpTtKQ9Y7qMBUHrlkedru5u9LBA9wACYGvAp4T+Ic0PkqGZj/kmzZeR7wHgayd9TCyxfPtTyt7RJeyljksWC2B/VaDy6ziDOpvo2ZCBqvSZtSgqTXkviRXx+TJE8PGbw4EUw4Jy/uEjFaQWYAHFUBtOIsBM2n0xHDQTmVe22FJ0JJyFYkrGrDxcHaclU6M+z20BAhf5AKe+SVrr95ClQGTYt8WcJREpLA+vgUqomYY6yviSgYiFseFzsTrBOiK6TfmFEm0Y/ZB4E2mM7FrgohzMnAhyPHqSc5+uZVI9vWkqYVCQFMKmmWFi6UczgVVBEamPkPlPno4cBbOzNIHgiCqcrXPL190Qtt1yP03zMlcYBn5Nklem/iJMylYdyNNZxewsITYTJbDcREjweFvqjDZ2l/jY69CkZl1/FA+T2OvGulxJH9l4Cx5j/IfZSP35S0WMJnSFqCJBzAloKhhIhbnDzOd06s/CRnlWYkqJkfADTEFd5m3G2i+wj77ZxPdFARH5fSoCVN3utfGlixsUtBp+BsaWkPkEiVnhJT6VOZjUSHygdNBpCxkxCAg7xbRTTvnGGD0tj+BHKmlp9VCNPYTA8mHP/20CInt6jdwtG/vfGgb4Ic+7JB6ZXPxB+SokzRWGupgntsEgvUnpmIZdHXpT9p9eGdzJbpZJWklQ4wlMcwBPHxbMjuQkKa18UEI3ZhDxknJ1tusLm8ObTQrUdnKsitJfY9enOa9vSsoVsuF9wsWDX3xpa64WXILryv/zrF/IicNTuGdPRb9YX65MhW6DmYJKpoXumW0Q9LXmA41Azwk6HLx0QepKHxoZ0TeW5/zsOdAD8IDWlFDwgRYVHt1EJSF5RNbFSm2Go0nkUQDQbLHRqBeM/HeNwcLBwg4pDQe+K90wlbbEBPNHzKmI9Ac95fWEiLxrwaHfo7L6YVfkW8Bm8khPIF6ANbcglvuqj/97ec6+l/H9H5JH9r3AHKxgjc4ULxvUaXh963tVg62aAepsPdcSeYJDCrkxI3tHiaDP3NEEqOz7zhkmJj3GNbos8YO9aO1eUqOOtHshXrRn8138zc7W/hX3idX622c+i1R+1o5L+E4tIy5nlDyyXXVDpk7d53pbBoyQeM/42YnEyMBgzEnFsIiAiQdAEc+XPwAstGvUAFP2zzp1r5fZzG3WXBnA8YdC/9errlwKHM5fdSufB1IWh5ZMOtcv+8A49x7rQIZ7rQcePOz0YhFMYqL7DL6VhvQeOYYID/A2l+unC6auKszN+k+eElD/IkSn/zLLTvOSmRHSXsPchCwAhMJjLlvq9Dp85JIN79tcfg3vz0SDVPJnGlqzhB5LW+F2lErQHKsQpAL+KW9TsGHZgKKvsf4Cz8Ag/4d7ifn3j9r77m64vmjS4ftBP3VzdHTqlCbUFNXO3bCGbsb7JwFuIsZXIZkUGjClp5x9w3gB4tspr/5vqf/H80N55ar/7bKq9Ay3Y4aia52TDEU9RmovP64kfWR8e3YOqsD/9f2tHqB4pRF93twdS0aVfFY+T9vRTS0eIHiUPu8Nu0OCa67amshlItj+T2EeRN4/ePOLZ2djZNFVqrjADMUOqkgFV15fEFEarCmNKvsaURhcWqkpjvwhEILpwBXSXqCpGl8QgH5XPyI7MksuzIrPHCBjIktM/xh4mIls2daqsyG+/UvzQw+RhtPRgHKE2va4DMVCr/Y71+DX49RzzG8Ky/FhYLmMbiFMzwCgw1P3P1dUaHd3pt/WvcARDO3C6oYBhLbBsQ03Eju07qsKMVl1QoNEYFLzvyeSgfMWe7As2VgoGYYTsWzh5hlQ6pQTAleQcqo14AGYO4am5XPUkAEyX598t/dv+1sIWqks0ly4QLfRd5jthPHXREHPUoi2uW8lUjmxK/ZpkmjXStFS2LBZ3q2B2lDbE6he4QcYk8yImhWXyX3IEj0z9e7c/F4TnGT1qzaak+rQAXSR1BzVuh17OTxZKJenpElnvWHKg3NBzRZZZJpkyWdZxE41erm5Am9GbOG4Zs8DS98espkVFk0Ie0m6DFU0bwrRhPOHt7v75sviU4AfYWpOJdnHPD5tpUWGi6iHtFlhZtTtMJ1SA6/X8OB4vjs+h/1HU+OyOL+YxSm0uqoxqnB4Zn79Bao0MS5dGyKdOlUe4j3qOugcZAwONaYEGzjwI/RpliMqYJonozVMo8pS48sOrJ8MJe77hy02O1UvuyS8n5F5wuhx3d15UoYmD1phCKW0qLc8KGJnX7zSR0anqrQrd7sXjpzJ492rWroysbZXhuNSj5T4kLOpjIn1uHSOVZcloUBQqHA6FU9G45G6LpHYqheDV12/24E3d7sjZb5VMNS4qPH2+oEVLCE/em1U4PV1sDw+3i9KB61ISxOmElDdph5CTp8UWubW2usFbRAg5rE8vloCLxhH8cCOPsXkhVl6Lb8vgiUafawNnK9HV+UICVsGI1T3EQswKxA82GvMoaXmsFi8nS3MRWwUjyp8aQFaVTVU7HRo/LXWt3j/O3+mgqqna+BKRk59qSJC/LWev8VnDnuqS6xMEqaKC0vhq97zoVFNYSkxRuTKkxGYpD64VcDUhJcrymKKwlFRTtFwfniIUpuQAwJ+TrkL7CbLi4nA5cEUKlwDbUsDd/6iQ4NMAktQTupr1e2Z6GFtxWqoWZ+eGVuNMj/V7anSFdAlOl//rrxdVOF+Hk1C1radJxnzH0o0ahSN/FvIBaDboZs7UtlbH6SohWqQ5lWtg6+ozEzHhORBgcod3gCmGWOAtk/n6QCPEgjLukqVLJOmyD7Lbkbkkn2WpiTEdhv/CeJqjhtR7gi/MTzNA+PJX9A4WYT2sFoaDI9J817M6aIE6Pl9rEfD+LUb2aQEeRtH7bOmbMxgQqFUC6ALpa1g+62oIgSW/RZcuQNMi/GgzZYyQRXw4QmdFV2cOqUmsmj0Q3jBCt8uMp+xpxpOyyXT+x+RkjvpjkprDVfPRdDf9oLyInqPmJG+gPtJ8epFMf4Lgzs9Wc5I+JiclfwR9HBwLN/7UFhEoW8Kv530qFYUdzh8o2Xebeoiwioy0rXF7RBdnIup53r/Kl18gcNllrCTCKzTq6Zk4csRw5KTsVQldL4XiKcgFXMoSmea/FZldr4Cc9Ajzizw0JRlqZKYL8qC2I9+bGPc873ueEAx73ux4OJibdLcUzpS1vn1eZHCEbF5p/ttsMK9YsaxkGYhkBaOGUQ1obLTzkcBLGqCqL4xGN6CuoQkowUiQNXBEYOeJRVZruIgEKtrYRjd4viS1kDAHm7PcB8mD7lmr+zCkli5i9bC+1XXNB9tApFtYd7TKEU1VsVKoAo5UF2grUxxpo6gjyO9LKt0ZuwG6tQ3YDr+vtq2J3sp9HmyuLPGaiBSdtQP3AfKAO68CHKULrSy1mmUVxkQXF0erY3rp6OIYIcuqVltZR5/GKoT6vik2q/j0krHWYKg1yvjZZnM2v0TAOn62zGioVaVfl0+RyaaUBQh/Wfp3X9FCzOA9nHxFkf9N5nWjSbBY26L03t7hqkm97t9yWc4vX5ZjWVjGu5KJd9iWa9cQSmvBFlxlBd7VYBfnfgORjOTGd8JfnEmaZmS6j5tPOrI5SRPWwneNyE7EY0SnNxaOJASmirJiSJtZeWUD7pXHpjnPc6ZXtNnjFe3yhq1Ck4vFGmc+Zo6zWExhACoGiQ3Y/1Ll3z3dXhnkf633CFZyQjjKYA/u2SB/5eZZNVO6XzI6L10H8HEYleyXfuL4af+dm0Fd1r7dsL19GXVexrDWjwOUYmZBXnJTkfDw6R/2H3svCF+fevWOfCO88Qb5nfYzzAm7SB/CU3BxR21qHC1UBRd6h4TQMoxLq8TwyGo7oWBevvBC73f7j9OHhfPyCwj2jXZIwbw8WmiwtxCuCqXFZAUQO4giftAeRhYGLVOIPKzr+bM7YGNdV+wF3FgzY18KJ1jpsaZsvG7TL9+9mGyIE+jTYXp937Gp7ufKEg9lMAdcyvR2ha7l+5RYECbvu7ENz2kv1uNT3oa8dS1b518U4BNQ5D8Cv8QOSuX0rMcD/PqeUDv5LnxEXQ3Yn1PEjJomr3Lag61BIqMofpeAwWy3Bw9LtdunKRIpgn3qGnpIS3BTxExFWDWV7YwsUNojbDnheeLnBFwZYVPar2KZ6pky3Eg7tX2Eyve6ESvHPa8LaB/BeY+H/LzvZYgH1D2nyhcNXB9n1h7bzJbk6tglXidfef8M+Zmw1RIsfGkC5blAACBuboAI8hBQomTTAwfRcbdRDEPPD9Gcnfn3tr8T2XCwFweLmInRrlj5wZZ7kYJcSFz95WXKSmddnRjkPc0CikdcKyFf9N4rf2rAEstNS+5AHW1+RBakMA7u/hqNyqcjyz9+jW/84g9cL/kanhzJcPshok/eFUFjJZwXMeA/xN8NHpcKHnrHj8R7Pyy4ZPD4LtJjLVMiIqdwoiNKnTExUQ6lMr9GmZe/vRd+pOZQyv21ISlS7XS8jsAg6PAVmhSZNqTcL4cC6GypZpfHi4koccbGqPL7qKJjnCWKMFfk0MyTNeAZ+OO1KVIN5//hWIvDgmsZuc0RCdZ2XVuPKRr2YActs1RK+t+DfG/sxHK6Rj+9JjbLQtSxdJzDzEPnE0icsksVmj9EaZm1UTrT9V36glrNpEZp8lz1/q4t1DsBNngvw+7BorA8iBqfuE5M+iWLIVp8UkH88aG5h3AAt/z83PFDj3UsEQWd9tLDfoVNikObKcn6FQcZmtb1SgDadQcCDhjCPNyOwCP2BOzR1QWgYDUflsDhaZH3fFOn3TjuT196ai8L7UbYl7/2r1MjWVGlYYtM/qVR9kxRtmT6bIcyV6HIVTpeAxjMdofytVTT7GnAFZdlYaWw6uZrt0zBsvxI2ERle1lZu7KbgNNRtq+jGam60tJ2ZSLq2VLi0mcoT3nevFi1/MbKO+fXbdE+S+q+e7cFu/OVAW2g/z8qxpr9T5w4+SZ8QjhCbCGOeB2LLuAiebB8X7KlydoMQTvhLCQ3xhHtkCF40Jk+HGujrZmEcsLZSBkgxQGQQeWLQmkzgn3UgZwmf03RPWyTBLVlVSqcIMzv4eUujB8m+FYreE5xPEpaV4L6q67cJWMERbsRIXO/59qSDr8a8AIQCDFnKL3hYK7b6YWde7uAoCkxbyEJRcqvZ0fCZ8Aj2Yt3s1DdsQKik7XeuvHF9c/qeWAssfNQbLgTTiDOf619mjU8lA+KZ2mfhLRF2Sie5RTY3gfVQT0Zx/y1PCc2RGKVhgin0kPcObzySN9hiqsztpCJDJgDGn4x9CLUAeNARUaYmZymMWA2qPR8RqA2mE01k926RDlMDbko8uoA/M/qZlHf29CrjlEnl6sZanxopSV2QYxwC8d9WkY2cU8HKwRpI27d7ih3DbnUrnGsv4PTp4dAAxhzjS2IbVA3xL9JgAGVZVrYSaya+fRUjZ+fNr8ojqoNSJw8iR/PFWmXmX7+NM2INgwkfojUP2oi38wTa5avobPw7IKc3QsB8VBMhkDD42kEBJxAwxOUbpBs5jv5GZQNuBIlC+jWnwYy5JlPV7thDpg+0xjumBovzC6M9EwgmbqJZowGFXe/9PTggUc5Gma+T7pepnYjjszj/0yNIcTvolX6F+yC1XGcp9KmmuO8awo43wv4qvOVTtV7aa7F0/6p/sI/t9Bp/gCNrBopvIAAiEUmCXVFs9H8ESavel54GIFHy72vhV4L/if0nyYLGecXRzujopzRxV8IGHBGrfm/jLuQ51JLM5+fBzLvCM3Bmv/O+EOncU1wNwVTRXe3dl3+aaOWndXIOBvjbvQQ4LnKc3kxc2+zOOHYi1l+ZRf9LpT5ZV0AUZu+bxUv8l5U+l8cQZsmAqm/8qyRquidCHI4cUXMP7srkhZPa1Qe/HNpYUfAlPzWy41zr+qXhgq6RMqDu9EVf3YXMX2yAmyIyKQPUjND3g8nWKyzAkBE5ab+gX68BO/ESX6zxR24e/33dnV4W2HWQBwgzvu7Xjegq2lnB3u2lEUEIs2/WIDNvVa4VNEFlkeVlSvb1wsYRJVdYKnS2eID8W0Zrw1vAnPEmVmimkUBAoRVE6gNHz+RAzyIvkSPfg8qjCUA12npZIlkshRIa8fJkqK8cPVpHJFKxOl1s2bp2gTM9OVyFp6Bq104OQmp7e2xBl5DrzYJuXAyV8szANd7YWJoyCThf8KQxMSQLAKifOaTEkPjttJvx6hiHtL/oz2KVkX/QWuZgQGYNJ22eqauZSbMQJeGAZQJTFoyV8fWNKQlwqttHsAbeDzA9G1j0qoTEQ02toarS07DTIDoBkUbwUmYTQME+wlOonKEX2xWnbERPtFJ2C844/zzzFFm1Ig8khRJ5xv4WQbShm1et31/HMZiD//wvU1aDjc9fcpDGxjDWV7/0UX0/4KfeAlzn4qx4GKfUa83YaKwN0HcAijF1V3NC5hQFl6H30yi4bHarsrrpeHO4sZfgRJyvqwKy8JGzaxgQn8mNAXtDLp/i1yU4IXAssQpJ07OrgyP/yl95cYDc+c7nK4CoHQbU7+DBYWVtGZC0Na3Zv9zzycEx33UXX/hhx7LdrKQrIXrtk7c8Pq5dlufYIL2hIDu+4IL8Ft+6GHvex+1Z2J7GEdiWj8QOdnDxVv88+XD2dVDtWg1ZZm/XqaT2WRp/oeI0A0PM5/qO6+wEMz82euPE3OYTwhEBJDnDAd938MbTDI1X/zU8emCcVHSIMN+8fmDVRXHVjXYYb5bgvg6vcCqEwh0Qdsptzt4l+vnHeLZ+Md4aZS1czHFj4bUPzaFDsbIi3KiZ+veiiiKGZR9Zq5UBH1WH/3azk67GxXkg+ymhqrqnXQbrbupOoyNF6al0XbWzvlFXRYbW9Yg4CrUP/E2Whr+p80YpBcI9EHGHQCYI73AGAhU7xb39Ax0UbuOHNWiZgeEZj3MEgbURG6fXvt37bPGrC0fXoPSfkr7sCWrsK01kTP4j0ysIxdThQq8BId5W/OWipPgFTvpkUDG1vTRbx2gVvwRTe+jXRAAfqLbj938PTm5ocHDIzkJIKEahtewF/XrX+b46AC7D76D2fxe5tfp4NhYlx/Lv/M8Tfvatfqz/Lqw7xydl8C/lXY+0EC/LhB49wCW6R+djmP6MXHswXulA5aEH8SR/Eg4OMGfhD2AtI+Km3YAR/RnNuJI/kQc1zpxZ/iSVsQHkA5cRLAK/JNFMikuStb0FSvx+sulhI2mN2HfoLpRDSrKITmzoUTfvOqRuREwgwaK863d7nJSVnJD1bFAsQmK02GPwO3wERY7gtX5A3zZSEcQYqHK1zu2P8FKqVLss1PfQhf7dz96eNFU+/Bhvz97CJyEM7M/MQ5jIX4Q7G6NZrbY7rzcIeanCkbcJyzAYspgZIEJj5aRkbfZOs6evXzp/NKD+NaOjrYAFWOf97O9OiskCwLcekGqmubmr03w17ybEJVIClLji4NU6sowiy28Qh2wrXOG3+aJYH7ppkWkfbjZXsDqY6OM+RzHgnxcBU6NDmeSCx+gvOCYx/fmlt6gaMRATLz6MVESasFz/XWtVmrKs9vF8rh8+NyI4vy4syzdotQkoJmpSCk4ub9y8PjWq7JjTQewvmH/r5oXpGbdyRa9DJD4MjbBQMi1nVY2ZBsIXm0sop6FH7GTFj6sWhColqWn9zOc9MH0jAbCbccDpGUM4u2M/k+IHGMFgOUr50bw64KYm1MFva8oIco/TFWyolRVuiJK5S+crVFnYnprydDTK10VXR9VGrXtuSI9KgAqdKHJKiA/swQnwaXBUxqgWBpOQpU6mOOMAdQzBxgQZv8VifmLT5ythYD+hbkqLTZW+vRpTXm5RK3RH4hSdDF0jC5FlIEIMr6zrF+/Wlnx5aBdmRL/pXhUl5ZZ5VcgbbItx19qM80v9K4xzm+7BGT7fn+LNTOKV+vBtZXzjTvmZ975w2Ca7Q32/T3faPMo1gYyq6qf+uoUtRafekVNZ6etnEgGRJHGgrNoRMRf2rowkn1d5TO+fOumSjAg4aoWbcibmY9jQGsRSnbb1okl8Qi5m63Mmmd4zOCpA/qH6mWrCL6MkN3JVykcE0JG3lCzJe+BPSQ53MSZmeZaLL2WclXTDJeTXm4Z0Jf9e6BZQ7kqck+8tkzfd+7hfomHpO4Bxx2UA3Xny2IXvTBzM0wHkxMvtqjmpVN49+5omMmwagaX7u6mIDp4eKL+F7AFPj2TK0iBnLTn/FCuUs6mS8A2V+nRuPWvPdw9bxM45sDfGHv2f06p2EOWIczstu3RREqJURm+nxZ+sItiKLdxdx+cUVgMZb/YT2Vs5fVgUHmoepsUiy5dcpYN5dYScPOSFRyX81DWLXiqPw+HctsC9+vXrWGd/Fm6JuwLnF+eoK+r311fNzC/PiEudWy3o6a56L10F21XAJ4ew6qfz60/I3FbpAFh/WcxlogrcuLEfiKcswhH9C09fImH2FfsUVIAyLSyHeSY/kfkccFH/THkWXGQPXb23Fl2zqLmRcu9Pt6zCG/ILS4pBnEb+ir7fj2/stXi8wB5txwnP8fdjcH74DEPUJfqSpU4uzwmKBP6mztS5JcJIzxXFV+w2oK/yw/PPhWWPcVuLkC3aRZlJrBv6JvR197Iya1jD1AZuzzwiAmPJg/DywJ6Fk7n3yVciihsdm6x4EbkYTmnwnPit6Oc6NbZETfspR+i+T1W6Fm+QaIghH7jRh1W17uxphqTexDZgsxBdiIP1oevpdaPfvVibSebXmjkV1V6k4P95kF62r1lWmOhyRwRbZmG81G+Vto+QLjyltfdOVkxJiBu2k8/3KxT+eSFJIvrFa8VOzlk7rbsbnPuOvq1/RwvqK70mu97ZJHJ9NtfICJwERp4O6zdOrZ9qreQeuKkNnpSZ26AcNZr7lHcUe7s11Thw0TvUO3Jk2FUROIl5yp8LiA1j+YJPlFbtmz5JtifWXAt10o481XQt6WFenN+P5pnCZYE+b9FzvrINxho+yzTEPRtb7YP0SeewHtWSD6es8zJiX88Wf3kj8Rk8yxPHxKIehjcitPiWDgJrlWRnFKlsgqnxGvUW+o96uXmDeneRU7Hr0su4kMEGFBzbmKISWBZbl0RxE78GnJpbTX5Y3Fl2tq4qah/YjapRzdsK+kB59bdnxysdeLmdVQ+vbut2QP7/b200iCp1osxqh7l7UqCpcFkxLMpgIEFuX7rrsiOrZOuOya7su6Qb7FOegVxDEjHpPYocAWb6mQ9O/fkRHrGcxS5/ozJ2ECgtDiGhpwsytMqRHZ88cM+ySFPQsb+gqfBO+A4Iq6sB9NIGnxE4vqZ4Flkbag2beOpU0QkmOTCWDRv5v21f0ZwQv00EwtBRbBcKL6+Mnh/KP8NYVa3hmupbXPsLs+/WB5ZpuVTWFUY3PrMtGXLnd8TFG4EJNEnpvK9YIVtadl6nHtTBmtaGzaT/MLTl8MelcFqaljeULALuid9UI79V3Ese2WgIXClgbOwl87+ogFO/5uCqMY/3CDQjJ9ecI6Eg6taK2oviWLA3fH/do0H1/nXBY87GZj/V0erbndAFhK4LC6MMm5GVkXNQGSMe7tx2RxcXsf7aSVKBsydcK1V/JyCLbrKIAjKVaqH2yAQZQjajcPmwr3fxMMbYk7v4n1MnpT8cdLj7EnZj4GCjV/8zfBt8ZevLRsNG1sKMuAYrPzRfm4XyIH8dMM8GnIcJ2YTv3wh5mg0OYQdO98neDt27qjda9gL+Wr42vL1a+0e494anflsivqP2xCPE9Z01PgG16xprjJQkMzCaSVzVYVRDkdUoeqjgFdEOVSFH6EqHQXSnM29F3u/LGyvND4xPFkEVpGZ5pISc/xfN4+27WkffHnrmF9qPVA00hOvij8TZpgNdn/vKCcekY62D0N7Qm3YgJmEdzGCqPCaCqgOqqJQBUzknVppSljh/bd5cDgHBk/05sFhXNTzKIkqBw7XPEw/fIFQ0OAIptsce1nhcB5sgWveNhtuMltYUL4LLB1ijo+B308zrsk0h3iRRdiLbEEy7gAJaBW/M161YBmnyEPhq6eYj/fYONd+3TB0lfcO4X3izwTKFFJIhHvz16ZmtPsgPQD9oml+S+pkxGo1sgctQPcgzaLEpzD3nxhh7ziG2DsJ8xNjbxl3XyqTMQAgooGlQ45vPiv4ghK+f7C7lfbiCEzjsLGRGGj29aWXR2AwBzJ6drmPY8IOlmIEJMXuDj73sjQZJKLOl4485LOCFYjK9bv4/RQpGRHP2Tt6/7pBTdQvEW8LAVGpEVedR00m77n4fV0INK0FbPWFyC7UQJRDFqJaUAOozjtOVPkElBPVqnYRLxgPQe6inULtJG6OoBX0cCESoDsCCSUQYi1DeimoFkS7SagwCDEigCLc+r89M9SB7AXVqjtg5DDZN9kstpGNM2KC0YUDi4kWaO7GpOcr4DA9DH4aS8JpsSysgVJaHAl7WvN9XvE8aWMu1EIcWExAnD093EI4MYgeTFswph5jsDlV08tZDHZJw1hDCZvB+sYOY8fnmDv2LVvgylHnbMyOR19FfUNdRQdNy5kWlFdZ3iD6XFtYsWfowFAOUHzf9fHQyYRb/6WacPIQpP+THaWypFYBDHCtNQoJTwkLS8kRsD8HZSHzPY14zB/RMXyzJ5n2hcNmF4hFTzVNCkVOvmJmnkKZo2iyBWCGaJMChjwCDAEeQwGTaEOYq418fpyWmyLgffCbBH8ewTsJBoITP4kQZRPMVJwUW/WSMVKFlTan7Gny/oEThCdKXyUu2fnbJC/1jCSDMviGoFEPg/q4sdwYFMakJoZ5ZG0wogXRBkuv7Lj1KTvl844+jpd747J8uK07QNRZtyM0NXZO/6X5nvBcr3snbsLwg40LHSSSY2HjMAF37U1qLjzu0qX+tVglsX0N1nO8tnbOnOPJYPvnomelnylBJPrJ/svKCGhSUHAitLrvcv8/70juFdg17UQldu2l/ktxufDUN9dwhOGFjSSHg9S4cBAPu3ninhc813N+/6U5WDXtSJ16MJxuHFAeqUoPI6eOFwvfwHTHYcgYLlMSRzIw8REs5hdHALbf/XO5v686CRocBE2MUPZfPkknVbhjM0Z6OUfXPgYZ7l9wAA/DQg81rfQubIAlumTfL766qb/QFs3o3ltEfxbw8uXazcpSXn13hORLcGnuJxtAeba6/2b/Yxga1n3Thu3m0F+cl8jD5WnjiD8Z/dhvI4bmFD24BYreCz3cTVykei+lal2exwXrbJ3h+G5vkvwevoicXf1YAnb+CsM9m4r7CWYLNGnBQSZzkF2ZQeYQRsU5VvPmuY+fQzyiEklJSH/LjXauhpcUBgpLG3qU/C9a0uvm/igyim7a52NFzENfH+scTh589gxL+nX0pgn0dU/32ew+7Dns7rlJhoUTyf+6t3Kj3L/pWffdr7sfdD+qEwlF1JaAgwG1AUFC4KrSTI+Lm94sYH9zWhi4DPOKo50qlTO6+FN0qJxO1Zr/07gw8mBuxbTILJksK3LavQAGE6z5740LdMU7Sc5NvXbSdVqsWDHxwUkaJTmBZPPfW68nxRlkkqMP2YqIRnYi2oUuCtEtWBof0doKRgOis9cN2YL0XXLlCOQVZZHkV0EYXlmmlcq9ygDFiiIpZtx7HMPnCkT2acw+gFK5kgIoJT54SikF77OykgJ8TBRwesG10pLSrRumbzScJ72V5suvMLJPWmAXW8PDrWL7VQFftTXcLr4qWbjL85tjV99dFICC6qDhNDmKWZ9Sz6Q8a/1ey/Wa75GCQ/25X2oMDlj0S9sHub9PnWh3nAu/TgcpmSARWoZivbQzruuZP8YW+vZwMfB9wYx3tOOq6D9UfAUT2h6slpZJzRS7PnZy7xf+yq/qS+FruHFxPC1/g/b7pmvyNBt5Wp5aqoar5mtvTNq8+Z24UZ8fbgu3pIaV96KAV4RZRLYLEMKkmkX5kaXMm1u37aTpaEDZB+skhoSc951bhSQM9PQMEgQfMyfG+nn4AeWDbgBkVZMM7e1j3PCwlGRhOBc7Z87kwDJGR/v769O7SEjSzOp5J8jyz/TTOfJZCFYX9b50mYkg73YThB92FeECBvgzqDhdYheJ7ZKM25J0B+zitfV2hgQBkR3g6c4QeUXQF+206Pha3snodFv4ep5G6Phb9HwNfyPrtxRatRreUWW6izh85Og1dgv7xNEjw6yu40FkpyfoZ+I7ycDTWbogA8MAFiyYPt1gOLwCaAdXx1nm9OkA+mV6eZE7ZA3Qq6AJ1oS2G21Gq5EFWGtJvCEmext2Y/DGxJC1zZoB48lbC99xwbE2S5vcetP6tM3aBqDQcBWlE8xeVuSewB/W3P/GZGNYr/0jcE9kpQtNL5+PixWxe9nLjZF1q9bRkfewTNwz6E4cU1VxNfl+8k8ITgDFg+01NQQnw0lgVQEFIRi/c33NMH14/exBiIFwrH5K3sRjhJpNhC7NTTtOqwG8KsJIoO/oXhi8qJ84VxbTJ9MCq07pyLT3nPc0Lv0d5x1dm6IjJXk4Rca1l5D2EhQ4qb8Up/iAQdFHbBm2qhm+Kp4pAFTQUrVAFV4+rfrl1OjpL1jVq9inqfQTzNjnsR+u4yT+TGowVvrQBzCvkHfy+tdzsROw8tXxMCNLw3AuaD2R4Gfy1ePd1TxNYDw2CWtCT3KP+9z1Q19QGbkMuY5iEG1ssPy9mof4I/ZnTtOq2cpkqDopcrkkL78JpYbdUxOkZcncJrJaCNEeV8yv0jQ2krDbOzcOd21EcLgzxmlFsGpl+RGz60jJEZf5SLlp2QHHtGwCtDZgQBPOwtzcYOU9u0Nozt8DrfQCx3FGIX2gsbGf2Y/1eDsw+BMwoDFzClUOpdKhKnz/CtHtUOZ/L0VqpwY/Inrt4h8bcVoYuEJn5StzIiNzlPkvAziQE7nmfzkujLQKCq+Nk8VGtMCI0xsEBBOs+X8f71K9W7fbaYxNrZtJSs01TOOdNa9ssIlsXLguLsk7JzamrLO0I+vdoJjc+9WefcRNY2ivsFeWzRLTSJJluaYy0SjYTt3I6qBtrNXhpmyLyHAeBtA6BQOA0HhntDj+T9dZDNOgSd1O1Vb0ZnWHbZ9MvFbs6hNN4II0x+ESAAiHQg9Hhnqcch0k0UakNUGO1vXsnQ3U1s7JNNHp1RTXNkotDSeoUoTLTDHOa42qblEpn7gYlXCqNY681bQHqTl9dBlRoSveOaaJPZDeoZOOMFquiHvMDF9CiHSuz64hQsr0r4hd1XACofttkKLk7Fob9dqViiS0i827jGoxpK/PtwL5RsjzbP6FiqQng5fmD5or+o4R1SaA85BG21uqKOsCUkVNEl5T5Qy+vYMcsZA5VGqLRnxT2iuJGDJ6D3McUp6nFJrg/CEglRIa7WKpqbBq1mhrTAwJoY8UJ9rZGxUcPYSPEuJJvCcaJHbXH8Q7N2mKZbk9hu5gAX1k5w9xjwlI0qyDCrXOxVIRk7oPq5CJ6jWvU2NfuWQXJhSXqkufgiVIYUfk1h36knBKGMxnkeku1aw2HfHQ0w6jGobWoDcFrk3Ngj81RayG/Q2QqVpqFq9y1bST7EunplxkKC0blNASx3zq5wSoVu02v0Oq4RA9bXNx7G7UNQmnAC62O7KH8Jp7P5mHtgPZeNX/IndXCj65mZOP1wvT765WikTj6+ndxUHJQnm/hCtl6E/k4T9y+9z/bFO5/gFSY0sSV1KPzqAQbdy4uBLh4i7e1b/UNTpBslbI3YMLm/uDs+XBla43V7k+XAvX98FtvMxGYpPvlilbi96aeTA31x5cnP1pDble0obrp6MflipuuBofPP3SVXXLMx0b+3UYSmBJXxTNPDktk/3E0w2/4bdB8UYup//BOV6QmrnzAytfmMAfZ5F334o4cjyP9Lx78zAMMy08Jxgpg8jSVfOOhmyXZh6LG0MJLOlr/MTRzJO76bKfePnGecNvg+LuYaD/g/M94pahpqzjuBebYgdVSPNrwrfiVEdQvqfjTHqmJTAMrxot4XIJRsqQkFi6yuVzsazML41HZ/bVHNJOjegMqJpu2OwO0/pvFHyRRssLgAgTyv6y+nKXShvrfBBGcZJmeVFWddN2/TBO87Ju+3Fe9/N+PwQjKIYTJEUzLMcLoiQrqqYb5vlI/5M7rucHYRQnaZYXZVU3bdcP4zQv67Yfp/Plers/ni8gCAyBwuAIJAqNweLwBCKJTKHS6Awmi83h8vgCoUgskcrkCqVKrdHq9AajyWyJkbYctYyjLOOQ7TCjdFMewZlEK8YtelDfFP4EDgvgrmRvo/C6lcBh7azE6l7TBrq/jBKHxscY2lxDeA0SLRWOYc8+zcIiR89WY9piwOoCU3abN1JMYxzOaBahdZT4xY/uIZUrS1Q/rTG67GXtTd4thRkgxgpIS7/6HRITLhdqfkjBI/fuHAcK7rnzyJnWbUZjNyrjL9knM4IbDWIka4aOBjYi3QOJCncknOg1cnBsUaNO+z4weFrIcGtLbvHK7HNhe2OAJ725+AiRR6UyLnlEddu2N6fLdMuz9IpFkbeL3WBv1/g0NayTcDOHdsGtLJzuPYxltVIV8+yadLYbaTFKjtT0XtmPeXaKBCrTPbLNwNqbcV4kPsxVqZD99jZ6j1C6JYqDzifckAP7xLZUxe5MGil5hcj4y7dZZ3CxISmCWcjrP1WDt/3fLvscHArUc6CCaaki2SoQhpWRPb/RJuWSZNYkkdzQgujCdjgpmgDx8OAJNvY5cQjQ1s92xt7WXKI3Nkr1oYHj0r+jqw+HyZKiZBGHW1tN80VQ0uejDIKlfOTfuvagTjDJ40V5SPMDAuTZolTzLzkgPduHeA41L0tSsy9O4BonqOlQrPlUCEZhxBnWuh6MFDbMp/Lg7Sg/KOEgT04b1wQlJ9R8Ki02R1xc5O6pEKZF3iAn8ch/4pI24kfmgzNO2Z6szFA9lO164TNK3D3mQkqt8Eoe+28kyyjR3phgUQ2H/Q2/FblwDDOeVohtvpIJIpwyZ7NtD3RvMt3RZ5TCYd2dSSFdwuE2stCSxJiu0EePJj8oDahBR2YujY3pxTrJROE1+Xv6Ed3edsFS2kJXweyhK4yFSG4T5YL/tpamxGKHdi7F3tDruPATrttMk1M83XJ6xjy7SIEIR1h/baupO7KWiHyfrbIOB7mRM1SjehKdg6B0k7lYDrlai5zDxDmQ8BCMefHB05Ni8x3hdh4epIqEP7CPx0EKjQ545dYzg9Runaj3HfwIJouHEMkw7yozqcYHo5I7MsRhO1lNgyVBcKQhqCF8JzTeeFGmsAr+k3PnqGi9CtWu68HGTWw8Qv1KS8TAOm3GBsQuItby0ViEFVYqOY6ULB4dzcI9+Ac=) format("woff2"),url("/fonts/iconfont.1732169275522.D4HyIDhF.woff") format("woff"),url("/fonts/iconfont.1732169275522.DDhY9P9i.ttf") format("truetype")}@keyframes rollCircle{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}[class*=vxe-icon-]{font-family:vxeiconfont!important;font-style:normal;font-weight:400;font-size:1.1em;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[class*=vxe-icon-].animat,[class*=vxe-icon-].roll{display:inline-block}[class*=vxe-icon-].animat{transition:transform .25s ease-in-out}[class*=vxe-icon-].rotate45{transform:rotate(45deg)}[class*=vxe-icon-].rotate90{transform:rotate(90deg)}[class*=vxe-icon-].rotate180{transform:rotate(180deg)}[class*=vxe-icon-].roll{animation:rollCircle 1s linear infinite}[class*=vxe-icon-].theme--primary{color:var(--vxe-primary-color)}[class*=vxe-icon-].theme--success{color:var(--vxe-success-color)}[class*=vxe-icon-].theme--info{color:var(--vxe-info-color)}[class*=vxe-icon-].theme--warning{color:var(--vxe-warning-color)}[class*=vxe-icon-].theme--danger{color:var(--vxe-danger-color)}.vxe-icon-sort:before{content:"\e93e"}.vxe-icon-sort-desc:before{content:"\e60a"}.vxe-icon-sort-asc:before{content:"\f295"}.vxe-icon-end-page:before{content:"\e607"}.vxe-icon-home-page:before{content:"\f294"}.vxe-icon-time:before{content:"\e64d"}.vxe-icon-feedback:before{content:"\e738"}.vxe-icon-lightning:before{content:"\e76d"}.vxe-icon-cloudy:before{content:"\e608"}.vxe-icon-heavy-rain:before{content:"\e7c4"}.vxe-icon-moon:before{content:"\e68d"}.vxe-icon-sunny:before{content:"\e684"}.vxe-icon-location:before{content:"\e790"}.vxe-icon-location-fill:before{content:"\e868"}.vxe-icon-microphone-fill:before{content:"\e900"}.vxe-icon-microphone:before{content:"\e7bf"}.vxe-icon-share:before{content:"\e68c"}.vxe-icon-share-fill:before{content:"\e86f"}.vxe-icon-flag:before{content:"\e827"}.vxe-icon-flag-fill:before{content:"\e687"}.vxe-icon-platform:before{content:"\e67a"}.vxe-icon-goods-fill:before{content:"\e778"}.vxe-icon-goods:before{content:"\e7e4"}.vxe-icon-funnel-clear:before{content:"\e6ca"}.vxe-icon-envelope:before{content:"\ea99"}.vxe-icon-envelope-open-fill:before{content:"\efaf"}.vxe-icon-envelope-open:before{content:"\f28f"}.vxe-icon-envelope-fill:before{content:"\e606"}.vxe-icon-message-fill:before{content:"\e710"}.vxe-icon-chat:before{content:"\e641"}.vxe-icon-chat-fill:before{content:"\e69a"}.vxe-icon-send:before{content:"\e61f"}.vxe-icon-send-fill:before{content:"\e630"}.vxe-icon-user:before{content:"\e8c8"}.vxe-icon-user-fill:before{content:"\e8c9"}.vxe-icon-wechat:before{content:"\e605"}.vxe-icon-alipay:before{content:"\e612"}.vxe-icon-indicator:before{content:"\e646"}.vxe-icon-file-excel:before{content:"\e7b7"}.vxe-icon-file-pdf:before{content:"\e7b8"}.vxe-icon-file-image:before{content:"\e7ba"}.vxe-icon-file-markdown:before{content:"\e7bb"}.vxe-icon-file-ppt:before{content:"\e7bc"}.vxe-icon-file-word:before{content:"\e7bd"}.vxe-icon-file-zip:before{content:"\e7be"}.vxe-icon-file-txt:before{content:"\e616"}.vxe-icon-refresh:before{content:"\e647"}.vxe-icon-checkbox-unchecked:before{content:"\e727"}.vxe-icon-information:before{content:"\e7b9"}.vxe-icon-info-circle-fill:before{content:"\e697"}.vxe-icon-info-circle:before{content:"\e618"}.vxe-icon-chart-radar:before{content:"\e7dc"}.vxe-icon-chart-bar-x:before{content:"\e60c"}.vxe-icon-repeat:before{content:"\ea4a"}.vxe-icon-voice-fill:before{content:"\e7c3"}.vxe-icon-voice:before{content:"\e6be"}.vxe-icon-flow-branch:before{content:"\e604"}.vxe-icon-comment:before{content:"\e70c"}.vxe-icon-folder:before{content:"\e7d1"}.vxe-icon-folder-open:before{content:"\e7d2"}.vxe-icon-picture:before{content:"\ea13"}.vxe-icon-picture-fill:before{content:"\e653"}.vxe-icon-bell:before{content:"\e680"}.vxe-icon-bell-fill:before{content:"\e681"}.vxe-icon-undo:before{content:"\e739"}.vxe-icon-home:before{content:"\e7c6"}.vxe-icon-home-fill:before{content:"\e867"}.vxe-icon-checkbox-checked:before{content:"\e67d"}.vxe-icon-checkbox-indeterminate:before{content:"\e8c4"}.vxe-icon-fullscreen:before{content:"\e70e"}.vxe-icon-minimize:before{content:"\e749"}.vxe-icon-print:before{content:"\eba0"}.vxe-icon-upload:before{content:"\e683"}.vxe-icon-download:before{content:"\e61a"}.vxe-icon-cloud-upload:before{content:"\e603"}.vxe-icon-cloud-download:before{content:"\e63a"}.vxe-icon-spinner:before{content:"\e601"}.vxe-icon-close:before{content:"\e6e9"}.vxe-icon-custom-column:before{content:"\e62d"}.vxe-icon-edit:before{content:"\e66e"}.vxe-icon-zoom-in:before{content:"\e826"}.vxe-icon-caret-down:before{content:"\e8ed"}.vxe-icon-caret-up:before{content:"\e8ee"}.vxe-icon-caret-right:before{content:"\e8ef"}.vxe-icon-caret-left:before{content:"\e8f0"}.vxe-icon-square-checked-fill:before{content:"\e6d4"}.vxe-icon-square-close:before{content:"\e793"}.vxe-icon-square-down:before{content:"\e794"}.vxe-icon-square-left:before{content:"\e796"}.vxe-icon-square-caret-right:before{content:"\e797"}.vxe-icon-square-minus:before{content:"\e798"}.vxe-icon-square-plus:before{content:"\e799"}.vxe-icon-square-right:before{content:"\e79a"}.vxe-icon-square-up:before{content:"\e79b"}.vxe-icon-square-checked:before{content:"\e7a8"}.vxe-icon-square-down-fill:before{content:"\e84b"}.vxe-icon-square-minus-fill:before{content:"\e84c"}.vxe-icon-square-close-fill:before{content:"\e84d"}.vxe-icon-square-left-fill:before{content:"\e84f"}.vxe-icon-square-caret-right-fill:before{content:"\e850"}.vxe-icon-square-up-fill:before{content:"\e851"}.vxe-icon-square-right-fill:before{content:"\e853"}.vxe-icon-square-plus-fill:before{content:"\e854"}.vxe-icon-square-plus-square:before{content:"\e87e"}.vxe-icon-square-fill:before{content:"\e8d9"}.vxe-icon-square-square:before{content:"\e6a1"}.vxe-icon-sort-alpha-desc:before{content:"\e852"}.vxe-icon-sort-alpha-asc:before{content:"\e7d5"}.vxe-icon-sort-numeric-asc:before{content:"\e800"}.vxe-icon-sort-numeric-desc:before{content:"\e801"}.vxe-icon-star-fill:before{content:"\e69e"}.vxe-icon-star:before{content:"\e69f"}.vxe-icon-star-half:before{content:"\e6b6"}.vxe-icon-lock-fill:before{content:"\e6d1"}.vxe-icon-unlock-fill:before{content:"\e92c"}.vxe-icon-question:before{content:"\e72e"}.vxe-icon-exclamation:before{content:"\e617"}.vxe-icon-ellipsis-h:before{content:"\e636"}.vxe-icon-ellipsis-v:before{content:"\e637"}.vxe-icon-save:before{content:"\e67c"}.vxe-icon-setting:before{content:"\e8b8"}.vxe-icon-setting-fill:before{content:"\e795"}.vxe-icon-link:before{content:"\e6c8"}.vxe-icon-chart-pie:before{content:"\e902"}.vxe-icon-chart-line:before{content:"\e904"}.vxe-icon-swap:before{content:"\e7f3"}.vxe-icon-num-list:before{content:"\e7f4"}.vxe-icon-copy:before{content:"\ec7a"}.vxe-icon-company:before{content:"\e602"}.vxe-icon-swap-right:before{content:"\e8f1"}.vxe-icon-swap-left:before{content:"\e8f2"}.vxe-icon-table:before{content:"\e920"}.vxe-icon-merge-cells:before{content:"\e901"}.vxe-icon-paste:before{content:"\e70b"}.vxe-icon-cut:before{content:"\e70d"}.vxe-icon-lock:before{content:"\e676"}.vxe-icon-unlock:before{content:"\e682"}.vxe-icon-chart-bar-y:before{content:"\e84e"}.vxe-icon-fixed-left-fill:before{content:"\e9b9"}.vxe-icon-fixed-left:before{content:"\e9ba"}.vxe-icon-fixed-right-fill:before{content:"\f290"}.vxe-icon-fixed-right:before{content:"\f291"}.vxe-icon-swap-down:before{content:"\f292"}.vxe-icon-swap-up:before{content:"\f293"}.vxe-icon-square:before{content:"\e6d5"}.vxe-icon-check:before{content:"\e645"}.vxe-icon-question-circle-fill:before{content:"\e690"}.vxe-icon-error-circle-fill:before{content:"\e62b"}.vxe-icon-delete:before{content:"\e69d"}.vxe-icon-dot:before{content:"\e63f"}.vxe-icon-success-circle:before{content:"\e6d9"}.vxe-icon-delete-fill:before{content:"\e634"}.vxe-icon-minus:before{content:"\e6ba"}.vxe-icon-maximize:before{content:"\e600"}.vxe-icon-question-circle:before{content:"\e782"}.vxe-icon-warning-circle:before{content:"\e785"}.vxe-icon-warning-circle-fill:before{content:"\e848"}.vxe-icon-eye-fill:before{content:"\e869"}.vxe-icon-search:before{content:"\e741"}.vxe-icon-funnel:before{content:"\e8ec"}.vxe-icon-eye-fill-close:before{content:"\e8ff"}.vxe-icon-search-zoom-in:before{content:"\e6a5"}.vxe-icon-arrow-right:before{content:"\e743"}.vxe-icon-arrow-left:before{content:"\e744"}.vxe-icon-arrow-up:before{content:"\e745"}.vxe-icon-calendar:before{content:"\e746"}.vxe-icon-arrow-down:before{content:"\e7b2"}.vxe-icon-warning-triangle:before{content:"\e67f"}.vxe-icon-add:before{content:"\e664"}.vxe-icon-arrow-double-left:before{content:"\e665"}.vxe-icon-arrow-double-right:before{content:"\e666"}.vxe-icon-menu:before{content:"\e677"}.vxe-icon-warning-triangle-fill:before{content:"\e68b"}.vxe-icon-error-circle:before{content:"\e613"}.vxe-icon-zoom-out:before{content:"\e65d"}.vxe-icon-success-circle-fill:before{content:"\e67e"}.vxe-icon-radio-checked:before{content:"\e763"}.vxe-icon-radio-unchecked:before{content:"\e7c9"}.vxe-loading{display:none;position:absolute;width:100%;height:100%;top:0;left:0;z-index:99;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:var(--vxe-loading-background-color)}.vxe-loading.is--visible{display:block}.vxe-loading>.vxe-loading--chunk,.vxe-loading>.vxe-loading--wrapper{width:100%;position:absolute;top:50%;left:0;transform:translateY(-50%);text-align:center;color:var(--vxe-loading-color)}.vxe-loading .vxe-loading--default-icon{font-size:1.4em}.vxe-loading .vxe-loading--text{padding:.4em 0}.vxe-loading .vxe-loading--spinner{display:inline-block;position:relative;width:56px;height:56px}.vxe-loading .vxe-loading--spinner:after,.vxe-loading .vxe-loading--spinner:before{content:"";width:100%;height:100%;border-radius:50%;background-color:var(--vxe-primary-color);opacity:.6;position:absolute;top:0;left:0;animation:bounce 2s ease-in-out infinite}.vxe-loading .vxe-loading--spinner:after{animation-delay:-1s}@keyframes bounce{0%,to{transform:scale(0)}50%{transform:scale(1)}}.size--mini .vxe-loading .vxe-loading--spinner{width:38px;height:38px}.size--small .vxe-loading .vxe-loading--spinner{width:44px;height:44px}.size--medium .vxe-loading .vxe-loading--spinner{width:50px;height:50px}.vxe-table--render-default .vxe-body--column.col--ellipsis,.vxe-table--render-default .vxe-footer--column.col--ellipsis,.vxe-table--render-default .vxe-header--column.col--ellipsis,.vxe-table--render-default.vxe-editable .vxe-body--column{height:var(--vxe-table-row-height-default)}.vxe-table--render-default.size--medium .vxe-body--column.col--ellipsis,.vxe-table--render-default.size--medium .vxe-footer--column.col--ellipsis,.vxe-table--render-default.size--medium .vxe-header--column.col--ellipsis,.vxe-table--render-default.vxe-editable.size--medium .vxe-body--column{height:var(--vxe-table-row-height-medium)}.vxe-table--render-default.size--small .vxe-body--column.col--ellipsis,.vxe-table--render-default.size--small .vxe-footer--column.col--ellipsis,.vxe-table--render-default.size--small .vxe-header--column.col--ellipsis,.vxe-table--render-default.vxe-editable.size--small .vxe-body--column{height:var(--vxe-table-row-height-small)}.vxe-table--render-default.size--mini .vxe-body--column.col--ellipsis,.vxe-table--render-default.size--mini .vxe-footer--column.col--ellipsis,.vxe-table--render-default.size--mini .vxe-header--column.col--ellipsis,.vxe-table--render-default.vxe-editable.size--mini .vxe-body--column{height:var(--vxe-table-row-height-mini)}.vxe-table--file-form,.vxe-table-slots{display:none}.vxe-table--print-frame{position:fixed;bottom:-100%;left:-100%;height:0;width:0;border:0}.vxe-table--render-wrapper{background-color:var(--vxe-table-body-background-color)}.vxe-table--body-wrapper{scroll-behavior:auto}.vxe-table--body-wrapper,.vxe-table--fixed-left-body-wrapper,.vxe-table--fixed-right-body-wrapper{overflow-y:auto;overflow-x:auto}.vxe-cell .vxe-default-input,.vxe-cell .vxe-default-textarea,.vxe-table--filter-wrapper .vxe-default-input,.vxe-table--filter-wrapper .vxe-default-textarea{background-color:var(--vxe-table-body-background-color)}.vxe-cell .vxe-default-input,.vxe-cell .vxe-default-select,.vxe-cell .vxe-default-textarea,.vxe-table--filter-wrapper .vxe-default-input,.vxe-table--filter-wrapper .vxe-default-select,.vxe-table--filter-wrapper .vxe-default-textarea{outline:0;padding:0 2px;width:100%;color:var(--vxe-font-color);border-radius:var(--vxe-border-radius);border:1px solid var(--vxe-input-border-color)}.vxe-cell .vxe-default-input:focus,.vxe-cell .vxe-default-select:focus,.vxe-cell .vxe-default-textarea:focus,.vxe-table--filter-wrapper .vxe-default-input:focus,.vxe-table--filter-wrapper .vxe-default-select:focus,.vxe-table--filter-wrapper .vxe-default-textarea:focus{border:1px solid var(--vxe-primary-color)}.vxe-cell .vxe-default-input[disabled],.vxe-cell .vxe-default-select[disabled],.vxe-cell .vxe-default-textarea[disabled],.vxe-table--filter-wrapper .vxe-default-input[disabled],.vxe-table--filter-wrapper .vxe-default-select[disabled],.vxe-table--filter-wrapper .vxe-default-textarea[disabled]{cursor:not-allowed;background-color:var(--vxe-input-disabled-background-color)}.vxe-cell .vxe-default-input,.vxe-cell .vxe-default-select,.vxe-cell .vxe-default-textarea,.vxe-table--filter-wrapper .vxe-default-input,.vxe-table--filter-wrapper .vxe-default-select,.vxe-table--filter-wrapper .vxe-default-textarea{height:var(--vxe-input-height-default)}.vxe-cell .vxe-default-input[type=date]::-webkit-inner-spin-button,.vxe-table--filter-wrapper .vxe-default-input[type=date]::-webkit-inner-spin-button{margin-top:4px}.vxe-cell .vxe-default-input[type=date]::-webkit-inner-spin-button,.vxe-cell .vxe-default-input[type=number]::-webkit-inner-spin-button,.vxe-table--filter-wrapper .vxe-default-input[type=date]::-webkit-inner-spin-button,.vxe-table--filter-wrapper .vxe-default-input[type=number]::-webkit-inner-spin-button{height:24px}.vxe-cell .vxe-default-input::-moz-placeholder,.vxe-table--filter-wrapper .vxe-default-input::-moz-placeholder{color:var(--vxe-input-placeholder-color)}.vxe-cell .vxe-default-input::placeholder,.vxe-table--filter-wrapper .vxe-default-input::placeholder{color:var(--vxe-input-placeholder-color)}.vxe-cell .vxe-default-textarea,.vxe-table--filter-wrapper .vxe-default-textarea{resize:none;vertical-align:middle}.vxe-cell .vxe-input,.vxe-cell .vxe-select,.vxe-cell .vxe-textarea,.vxe-table--filter-wrapper .vxe-input,.vxe-table--filter-wrapper .vxe-select,.vxe-table--filter-wrapper .vxe-textarea{width:100%;display:block}.vxe-cell .vxe-input>.vxe-input--inner,.vxe-cell .vxe-textarea>.vxe-textarea--inner,.vxe-table--filter-wrapper .vxe-input>.vxe-input--inner,.vxe-table--filter-wrapper .vxe-textarea>.vxe-textarea--inner{padding:0 2px}.vxe-cell .vxe-default-textarea,.vxe-cell .vxe-textarea--inner,.vxe-table--filter-wrapper .vxe-default-textarea,.vxe-table--filter-wrapper .vxe-textarea--inner{resize:none}.vxe-table--cell-active-area,.vxe-table--cell-copy-area,.vxe-table--cell-extend-area,.vxe-table--cell-main-area,.vxe-table--checkbox-range{display:none;position:absolute;pointer-events:none;z-index:1}.vxe-table--fixed-left-wrapper .vxe-table--cell-active-area,.vxe-table--fixed-left-wrapper .vxe-table--cell-copy-area,.vxe-table--fixed-left-wrapper .vxe-table--cell-extend-area,.vxe-table--fixed-left-wrapper .vxe-table--cell-main-area,.vxe-table--fixed-left-wrapper .vxe-table--checkbox-range,.vxe-table--fixed-right-wrapper .vxe-table--cell-active-area,.vxe-table--fixed-right-wrapper .vxe-table--cell-copy-area,.vxe-table--fixed-right-wrapper .vxe-table--cell-extend-area,.vxe-table--fixed-right-wrapper .vxe-table--cell-main-area,.vxe-table--fixed-right-wrapper .vxe-table--checkbox-range{z-index:2}.vxe-table--fixed-left-wrapper .vxe-table--cell-active-area[half="1"],.vxe-table--fixed-left-wrapper .vxe-table--cell-extend-area[half="1"],.vxe-table--fixed-left-wrapper .vxe-table--cell-main-area[half="1"]{border-right:0}.vxe-table--fixed-left-wrapper .vxe-table--cell-copy-area[half="1"]{background-size:var(--vxe-table-cell-copy-area-border-width) 12px,0 12px,12px var(--vxe-table-cell-copy-area-border-width),12px var(--vxe-table-cell-copy-area-border-width)}.vxe-table--fixed-right-wrapper .vxe-table--cell-active-area[half="1"],.vxe-table--fixed-right-wrapper .vxe-table--cell-extend-area[half="1"],.vxe-table--fixed-right-wrapper .vxe-table--cell-main-area[half="1"]{border-left:0}.vxe-table--fixed-right-wrapper .vxe-table--cell-copy-area[half="1"]{background-size:0 12px,var(--vxe-table-cell-copy-area-border-width) 12px,12px var(--vxe-table-cell-copy-area-border-width),12px var(--vxe-table-cell-copy-area-border-width)}.vxe-table--checkbox-range{background-color:var(--vxe-table-checkbox-range-background-color);border:var(--vxe-table-checkbox-range-border-width) solid var(--vxe-table-checkbox-range-border-color)}.vxe-table--cell-area{height:0;font-size:0;display:none}.vxe-table--cell-area>.vxe-table--cell-main-area{background-color:var(--vxe-table-cell-area-background-color);border:var(--vxe-table-cell-area-border-width) solid var(--vxe-table-cell-area-border-color)}.vxe-table--cell-area .vxe-table--cell-main-area-btn{display:none;position:absolute;right:-1px;bottom:-1px;width:7px;height:7px;border-style:solid;border-color:var(--vxe-table-cell-main-area-extension-border-color);border-width:1px 0 0 1px;background-color:var(--vxe-table-cell-main-area-extension-background-color);pointer-events:auto;cursor:crosshair}.vxe-table--cell-area .vxe-table--cell-extend-area{border:var(--vxe-table-cell-extend-area-border-width) solid var(--vxe-table-cell-extend-area-border-color)}@keyframes moveCopyCellBorder{to{background-position:0 -12px,100% 12px,12px 0,-12px 100%}}.vxe-table--cell-copy-area{background:linear-gradient(0deg,transparent 6px,var(--vxe-table-cell-copy-area-border-color) 6px) repeat-y,linear-gradient(0deg,transparent 50%,var(--vxe-table-cell-copy-area-border-color) 0) repeat-y,linear-gradient(90deg,transparent 50%,var(--vxe-table-cell-copy-area-border-color) 0) repeat-x,linear-gradient(90deg,transparent 50%,var(--vxe-table-cell-copy-area-border-color) 0) repeat-x;background-size:var(--vxe-table-cell-copy-area-border-width) 12px,var(--vxe-table-cell-copy-area-border-width) 12px,12px var(--vxe-table-cell-copy-area-border-width),12px var(--vxe-table-cell-copy-area-border-width);background-position:0 0,100% 0,0 0,0 100%;animation:moveCopyCellBorder .5s linear infinite}.vxe-table--cell-active-area{border-color:var(--vxe-table-cell-active-area-border-color);border-style:solid;border-width:var(--vxe-table-cell-active-area-border-width);background-color:var(--vxe-table-cell-active-area-background-color)}.vxe-table--cell-multi-area>.vxe-table--cell-main-area{background-color:var(--vxe-table-cell-area-background-color)}.vxe-table--render-default.is--round .vxe-table--border-line,.vxe-table--render-default.is--round .vxe-table--render-default.is--round,.vxe-table--render-default.is--round:not(.is--header):not(.is--footer) .vxe-table--body-wrapper.body--wrapper{border-radius:var(--vxe-table-border-radius)}.vxe-table--render-default.is--round.is--footer:not(.is--header) .vxe-table--body-wrapper.body--wrapper,.vxe-table--render-default.is--round.is--header .vxe-table--header-wrapper.body--wrapper{border-radius:var(--vxe-table-border-radius) var(--vxe-table-border-radius) 0 0}.vxe-table--render-default.is--round.is--header .vxe-table--header-wrapper.fixed-left--wrapper{border-radius:var(--vxe-table-border-radius) 0 0 0}.vxe-table--render-default.is--round.is--header .vxe-table--header-wrapper.fixed-right--wrapper{border-radius:0 var(--vxe-table-border-radius) 0 0}.vxe-table--render-default.is--round.is--footer .vxe-table--footer-wrapper.body--wrapper,.vxe-table--render-default.is--round.is--header:not(.is--footer) .vxe-table--body-wrapper.body--wrapper{border-radius:0 0 var(--vxe-table-border-radius) var(--vxe-table-border-radius)}.vxe-table--render-default.is--round.is--footer .vxe-table--footer-wrapper.fixed-left--wrapper,.vxe-table--render-default.is--round.is--footer:not(.is--header) .vxe-table--body-wrapper.fixed-left--wrapper,.vxe-table--render-default.is--round.is--header:not(.is--footer) .vxe-table--body-wrapper.fixed-left--wrapper{border-radius:0 0 0 var(--vxe-table-border-radius)}.vxe-table--render-default.is--round.is--footer .vxe-table--footer-wrapper.fixed-right--wrapper,.vxe-table--render-default.is--round.is--footer:not(.is--header) .vxe-table--body-wrapper.fixed-right--wrapper,.vxe-table--render-default.is--round.is--header:not(.is--footer) .vxe-table--body-wrapper.fixed-right--wrapper{border-radius:0 0 var(--vxe-table-border-radius) 0}.vxe-table .vxe-table--header-wrapper{color:var(--vxe-table-header-font-color)}.vxe-table .vxe-table--header-wrapper .vxe-table--header-border-line{position:absolute;left:0;bottom:0;height:0;border-bottom:var(--vxe-table-border-width) solid var(--vxe-table-border-color)}.vxe-table .vxe-cell--sort{text-align:center;position:relative;padding:0 .1em 0 .2em}.vxe-table .vxe-cell--sort-vertical-layout{display:inline-flex;flex-direction:column;height:1.8em;vertical-align:middle}.vxe-table .vxe-cell--sort-vertical-layout .vxe-sort--asc-btn,.vxe-table .vxe-cell--sort-vertical-layout .vxe-sort--desc-btn{height:.6em}.vxe-table .vxe-cell--sort-horizontal-layout{display:inline-flex;flex-direction:row}.vxe-table .vxe-cell--sort-horizontal-layout .vxe-sort--asc-btn,.vxe-table .vxe-cell--sort-horizontal-layout .vxe-sort--desc-btn{width:.5em}.vxe-table .vxe-sort--asc-btn,.vxe-table .vxe-sort--desc-btn{color:var(--vxe-table-column-icon-border-color);cursor:pointer}.vxe-table .vxe-sort--asc-btn:hover,.vxe-table .vxe-sort--desc-btn:hover{color:var(--vxe-font-color)}.vxe-table .vxe-sort--asc-btn.sort--active,.vxe-table .vxe-sort--desc-btn.sort--active{color:var(--vxe-primary-color)}.vxe-header--column{position:relative;font-weight:var(--vxe-table-header-font-weight)}.vxe-header--column.col--ellipsis>.vxe-cell{display:flex;align-items:center}.vxe-header--column.col--ellipsis>.vxe-cell .vxe-cell--title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vxe-header--column.col--ellipsis>.vxe-cell>i:not(.vxe-cell--title),.vxe-header--column.col--ellipsis>.vxe-cell>span:not(.vxe-cell--title){flex-shrink:0}.vxe-header--column .vxe-cell--required-icon{display:inline-block;color:var(--vxe-table-validate-error-color);width:.8em;height:1em;line-height:1em;font-family:var(--vxe-icon-font-family);font-weight:400;position:relative}.vxe-header--column .vxe-cell--required-icon:before{content:"*";position:absolute;left:0;top:.2em}.vxe-header--column .vxe-cell--required-icon{margin-right:.1em}.vxe-header--column .vxe-cell--edit-icon,.vxe-header--column .vxe-cell-title-prefix-icon,.vxe-header--column .vxe-cell-title-suffix-icon{margin-right:.2em}.vxe-header--column .vxe-cell-title-prefix-icon,.vxe-header--column .vxe-cell-title-suffix-icon{cursor:help}.vxe-header--column .vxe-resizable{position:absolute;right:-7px;bottom:0;width:14px;height:100%;text-align:center;z-index:1;cursor:col-resize}.vxe-header--column .vxe-resizable.is--line:after,.vxe-header--column .vxe-resizable.is--line:before{content:"";display:inline-block;vertical-align:middle}.vxe-header--column .vxe-resizable.is--line:before{width:1px;height:50%;background-color:var(--vxe-table-resizable-line-color)}.vxe-header--column .vxe-resizable.is--line:after{width:0;height:100%}.vxe-table--fixed-right-wrapper .vxe-header--column .vxe-resizable{right:auto;left:-7px}.vxe-table--render-default{position:relative;font-size:var(--vxe-font-size);color:var(--vxe-font-color);font-family:var(--vxe-font-family);direction:ltr}.vxe-table--render-default .vxe-table--body-wrapper table{background-color:var(--vxe-table-body-background-color)}.vxe-table--render-default .vxe-table--footer-wrapper table{background-color:var(--vxe-table-footer-background-color)}.vxe-table--render-default .vxe-table--body,.vxe-table--render-default .vxe-table--footer,.vxe-table--render-default .vxe-table--header{border:0;border-spacing:0;border-collapse:separate;table-layout:fixed}.vxe-table--render-default .vxe-table--footer-wrapper,.vxe-table--render-default .vxe-table--header-wrapper{overflow-x:hidden;overflow-y:hidden}.vxe-table--render-default:not(.is--empty).is--footer.is--scroll-x .vxe-table--body-wrapper{overflow-x:scroll}.vxe-table--render-default .vxe-body--row.row--stripe{background-color:var(--vxe-table-row-striped-background-color)}.vxe-table--render-default .vxe-body--row.row--radio{background-color:var(--vxe-table-row-radio-checked-background-color)}.vxe-table--render-default .vxe-body--row.row--checked{background-color:var(--vxe-table-row-checkbox-checked-background-color)}.vxe-table--render-default .vxe-body--row.row--current{background-color:var(--vxe-table-row-current-background-color)}.vxe-table--render-default .vxe-body--row.row--hover{background-color:var(--vxe-table-row-hover-background-color)}.vxe-table--render-default .vxe-body--row.row--hover.row--stripe{background-color:var(--vxe-table-row-hover-striped-background-color)}.vxe-table--render-default .vxe-body--row.row--hover.row--radio{background-color:var(--vxe-table-row-hover-radio-checked-background-color)}.vxe-table--render-default .vxe-body--row.row--hover.row--checked{background-color:var(--vxe-table-row-hover-checkbox-checked-background-color)}.vxe-table--render-default .vxe-body--row.row--hover.row--current{background-color:var(--vxe-table-row-hover-current-background-color)}.vxe-table--render-default.drag--resize .vxe-table--fixed-left-wrapper *,.vxe-table--render-default.drag--resize .vxe-table--fixed-right-wrapper *,.vxe-table--render-default.drag--resize .vxe-table--main-wrapper *{cursor:col-resize}.vxe-table--render-default.drag--area .vxe-table--fixed-left-wrapper *,.vxe-table--render-default.drag--area .vxe-table--fixed-right-wrapper *,.vxe-table--render-default.drag--area .vxe-table--main-wrapper *,.vxe-table--render-default.drag--range .vxe-table--fixed-left-wrapper *,.vxe-table--render-default.drag--range .vxe-table--fixed-right-wrapper *,.vxe-table--render-default.drag--range .vxe-table--main-wrapper *{cursor:default}.vxe-table--render-default.drag--extend-range .vxe-table--fixed-left-wrapper *,.vxe-table--render-default.drag--extend-range .vxe-table--fixed-right-wrapper *,.vxe-table--render-default.drag--extend-range .vxe-table--main-wrapper *{cursor:crosshair}.vxe-table--render-default.column--highlight .vxe-header--column:not(.col--seq):hover{background-color:var(--vxe-table-column-hover-background-color)}.vxe-table--render-default.cell--area .vxe-body--row,.vxe-table--render-default.drag--range .vxe-cell--checkbox{-webkit-user-select:none;-moz-user-select:none;user-select:none}.vxe-table--render-default .vxe-body--column,.vxe-table--render-default .vxe-footer--column,.vxe-table--render-default .vxe-header--column{position:relative;line-height:var(--vxe-table-row-line-height);text-align:left}.vxe-table--render-default .vxe-body--column:not(.col--ellipsis),.vxe-table--render-default .vxe-footer--column:not(.col--ellipsis),.vxe-table--render-default .vxe-header--column:not(.col--ellipsis){padding:var(--vxe-table-column-padding-default)}.vxe-table--render-default .vxe-body--column.col--current,.vxe-table--render-default .vxe-footer--column.col--current,.vxe-table--render-default .vxe-header--column.col--current{background-color:var(--vxe-table-column-current-background-color)}.vxe-table--render-default .vxe-body--column.col--center,.vxe-table--render-default .vxe-footer--column.col--center,.vxe-table--render-default .vxe-header--column.col--center{text-align:center}.vxe-table--render-default .vxe-body--column.col--right,.vxe-table--render-default .vxe-footer--column.col--right,.vxe-table--render-default .vxe-header--column.col--right{text-align:right}.vxe-table--render-default .vxe-footer--column.col--ellipsis.col--center .vxe-cell,.vxe-table--render-default .vxe-header--column.col--ellipsis.col--center .vxe-cell{justify-content:center}.vxe-table--render-default .vxe-footer--column.col--ellipsis.col--right .vxe-cell,.vxe-table--render-default .vxe-header--column.col--ellipsis.col--right .vxe-cell{justify-content:flex-end}.vxe-table--render-default .vxe-table--footer-wrapper{border-top:var(--vxe-table-border-width) solid var(--vxe-table-border-color)}.vxe-table--render-default.border--default .vxe-table--header-wrapper,.vxe-table--render-default.border--full .vxe-table--header-wrapper,.vxe-table--render-default.border--outer .vxe-table--header-wrapper{background-color:var(--vxe-table-header-background-color)}.vxe-table--render-default.border--default .vxe-body--column,.vxe-table--render-default.border--default .vxe-footer--column,.vxe-table--render-default.border--default .vxe-header--column,.vxe-table--render-default.border--inner .vxe-body--column,.vxe-table--render-default.border--inner .vxe-footer--column,.vxe-table--render-default.border--inner .vxe-header--column{background-image:linear-gradient(var(--vxe-table-border-color),var(--vxe-table-border-color));background-repeat:no-repeat;background-size:100% var(--vxe-table-border-width);background-position:100% 100%}.vxe-table--render-default.border--full .vxe-body--column,.vxe-table--render-default.border--full .vxe-footer--column,.vxe-table--render-default.border--full .vxe-header--column{background-image:linear-gradient(var(--vxe-table-border-color),var(--vxe-table-border-color)),linear-gradient(var(--vxe-table-border-color),var(--vxe-table-border-color));background-repeat:no-repeat;background-size:var(--vxe-table-border-width) 100%,100% var(--vxe-table-border-width);background-position:100% 0,100% 100%}.vxe-table--render-default.border--full .vxe-table--fixed-left-wrapper .vxe-body--column{border-right-color:var(--vxe-table-border-color)}.vxe-table--render-default.border--default .vxe-table--header-wrapper .vxe-header--row:last-child .vxe-header--gutter,.vxe-table--render-default.border--full .vxe-table--header-wrapper .vxe-header--row:last-child .vxe-header--gutter,.vxe-table--render-default.border--inner .vxe-table--header-wrapper .vxe-header--row:last-child .vxe-header--gutter,.vxe-table--render-default.border--outer .vxe-table--header-wrapper .vxe-header--row:last-child .vxe-header--gutter{background-image:linear-gradient(var(--vxe-table-border-color),var(--vxe-table-border-color));background-repeat:no-repeat;background-size:100% var(--vxe-table-border-width);background-position:100% 100%}.vxe-table--render-default.border--inner .vxe-table--header-wrapper,.vxe-table--render-default.border--none .vxe-table--header-wrapper{background-color:var(--vxe-table-header-background-color)}.vxe-table--render-default.border--inner .vxe-table--fixed-left-wrapper,.vxe-table--render-default.border--none .vxe-table--fixed-left-wrapper{border-right:0}.vxe-table--render-default.border--inner .vxe-table--border-line{border-width:0 0 1px 0}.vxe-table--render-default.border--none .vxe-table--border-line,.vxe-table--render-default.border--none .vxe-table--header-border-line{display:none}.vxe-table--render-default.size--medium{font-size:var(--vxe-font-size-medium)}.vxe-table--render-default.size--medium .vxe-table--empty-block,.vxe-table--render-default.size--medium .vxe-table--empty-placeholder{min-height:var(--vxe-table-row-height-medium)}.vxe-table--render-default.size--medium .vxe-body--column:not(.col--ellipsis),.vxe-table--render-default.size--medium .vxe-footer--column:not(.col--ellipsis),.vxe-table--render-default.size--medium .vxe-header--column:not(.col--ellipsis){padding:var(--vxe-table-column-padding-medium)}.vxe-table--render-default.size--medium .vxe-cell .vxe-default-input,.vxe-table--render-default.size--medium .vxe-cell .vxe-default-select,.vxe-table--render-default.size--medium .vxe-cell .vxe-default-textarea{height:var(--vxe-input-height-medium)}.vxe-table--render-default.size--medium .vxe-cell .vxe-default-input[type=date]::-webkit-inner-spin-button{margin-top:3px}.vxe-table--render-default.size--small{font-size:var(--vxe-font-size-small)}.vxe-table--render-default.size--small .vxe-table--empty-block,.vxe-table--render-default.size--small .vxe-table--empty-placeholder{min-height:var(--vxe-table-row-height-small)}.vxe-table--render-default.size--small .vxe-body--column:not(.col--ellipsis),.vxe-table--render-default.size--small .vxe-footer--column:not(.col--ellipsis),.vxe-table--render-default.size--small .vxe-header--column:not(.col--ellipsis){padding:var(--vxe-table-column-padding-small)}.vxe-table--render-default.size--small .vxe-cell .vxe-default-input,.vxe-table--render-default.size--small .vxe-cell .vxe-default-select,.vxe-table--render-default.size--small .vxe-cell .vxe-default-textarea{height:var(--vxe-input-height-small)}.vxe-table--render-default.size--small .vxe-cell .vxe-default-input[type=date]::-webkit-inner-spin-button{margin-top:2px}.vxe-table--render-default.size--mini{font-size:var(--vxe-font-size-mini)}.vxe-table--render-default.size--mini .vxe-table--empty-block,.vxe-table--render-default.size--mini .vxe-table--empty-placeholder{min-height:var(--vxe-table-row-height-mini)}.vxe-table--render-default.size--mini .vxe-body--column:not(.col--ellipsis),.vxe-table--render-default.size--mini .vxe-footer--column:not(.col--ellipsis),.vxe-table--render-default.size--mini .vxe-header--column:not(.col--ellipsis){padding:var(--vxe-table-column-padding-mini)}.vxe-table--render-default.size--mini .vxe-cell .vxe-default-input,.vxe-table--render-default.size--mini .vxe-cell .vxe-default-select,.vxe-table--render-default.size--mini .vxe-cell .vxe-default-textarea{height:var(--vxe-input-height-mini)}.vxe-table--render-default.size--mini .vxe-cell .vxe-default-input[type=date]::-webkit-inner-spin-button{margin-top:1px}.vxe-table--render-default .vxe-cell{white-space:pre-line;word-break:break-all;padding-left:var(--vxe-table-cell-padding-left);padding-right:var(--vxe-table-cell-padding-right)}.vxe-table--render-default .vxe-cell--placeholder{color:var(--vxe-table-cell-placeholder-color)}.vxe-table--render-default .vxe-cell--radio{cursor:pointer}.vxe-table--render-default .vxe-cell--radio .vxe-radio--icon{font-size:1.4em;color:var(--vxe-input-border-color);vertical-align:middle;font-weight:700;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vxe-table--render-default .vxe-cell--radio.is--checked,.vxe-table--render-default .vxe-cell--radio.is--checked .vxe-radio--icon{color:var(--vxe-primary-color)}.vxe-table--render-default .vxe-cell--radio:not(.is--disabled){cursor:pointer}.vxe-table--render-default .vxe-cell--radio:not(.is--disabled):hover .vxe-radio--icon{color:var(--vxe-primary-color)}.vxe-table--render-default .vxe-cell--radio.is--disabled{color:var(--vxe-font-disabled-color);cursor:not-allowed}.vxe-table--render-default .vxe-cell--radio.is--disabled .vxe-radio--icon{color:var(--vxe-input-disabled-color)}.vxe-table--render-default .vxe-cell--radio .vxe-radio--label{padding-left:.5em;vertical-align:middle}.vxe-table--render-default .vxe-cell--checkbox .vxe-checkbox--icon{font-size:1.34em;color:var(--vxe-input-border-color);vertical-align:middle;font-weight:700;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vxe-table--render-default .vxe-cell--checkbox.is--checked,.vxe-table--render-default .vxe-cell--checkbox.is--checked .vxe-checkbox--icon,.vxe-table--render-default .vxe-cell--checkbox.is--indeterminate,.vxe-table--render-default .vxe-cell--checkbox.is--indeterminate .vxe-checkbox--icon{color:var(--vxe-primary-color)}.vxe-table--render-default .vxe-cell--checkbox:not(.is--disabled){cursor:pointer}.vxe-table--render-default .vxe-cell--checkbox:not(.is--disabled):hover .vxe-checkbox--icon{color:var(--vxe-primary-color)}.vxe-table--render-default .vxe-cell--checkbox.is--hidden{cursor:default}.vxe-table--render-default .vxe-cell--checkbox.is--disabled{color:var(--vxe-font-disabled-color);cursor:not-allowed}.vxe-table--render-default .vxe-cell--checkbox.is--disabled .vxe-checkbox--icon{color:var(--vxe-input-disabled-color)}.vxe-table--render-default .vxe-cell--checkbox .vxe-checkbox--label{padding-left:.5em;vertical-align:middle}.vxe-table--render-default .fixed--hidden{visibility:hidden}.vxe-table--render-default .vxe-table--fixed-left-wrapper,.vxe-table--render-default .vxe-table--fixed-right-wrapper{width:100%;position:absolute;top:0;z-index:5;overflow:hidden;background-color:inherit;transition:box-shadow .3s}.vxe-table--render-default .vxe-table--fixed-left-wrapper .vxe-table--body-wrapper,.vxe-table--render-default .vxe-table--fixed-right-wrapper .vxe-table--body-wrapper{overflow-x:hidden}.vxe-table--render-default .vxe-table--fixed-left-wrapper .vxe-table--body-wrapper{width:calc(100% + 40px)}.vxe-table--render-default.is--header .vxe-table--fixed-left-wrapper .vxe-table--body-wrapper:before,.vxe-table--render-default.is--header .vxe-table--fixed-right-wrapper .vxe-table--body-wrapper:before{display:none}.vxe-table--render-default .vxe-table--fixed-left-wrapper{left:0;width:200px}.vxe-table--render-default .vxe-table--fixed-left-wrapper.scrolling--middle{box-shadow:var(--vxe-table-fixed-left-scrolling-box-shadow)}.vxe-table--render-default .vxe-table--fixed-right-wrapper{right:0}.vxe-table--render-default .vxe-table--fixed-right-wrapper.scrolling--middle{box-shadow:var(--vxe-table-fixed-right-scrolling-box-shadow)}.vxe-table--render-default .vxe-table--body-wrapper,.vxe-table--render-default .vxe-table--footer-wrapper,.vxe-table--render-default .vxe-table--header-wrapper{position:relative}.vxe-table--render-default .vxe-table--body-wrapper.fixed-left--wrapper,.vxe-table--render-default .vxe-table--body-wrapper.fixed-right--wrapper,.vxe-table--render-default .vxe-table--footer-wrapper.fixed-left--wrapper,.vxe-table--render-default .vxe-table--footer-wrapper.fixed-right--wrapper,.vxe-table--render-default .vxe-table--header-wrapper.fixed-left--wrapper,.vxe-table--render-default .vxe-table--header-wrapper.fixed-right--wrapper{position:absolute;top:0}.vxe-table--render-default .vxe-table--body-wrapper.fixed-left--wrapper,.vxe-table--render-default .vxe-table--footer-wrapper.fixed-left--wrapper,.vxe-table--render-default .vxe-table--header-wrapper.fixed-left--wrapper{left:0}.vxe-table--render-default .vxe-table--body-wrapper.fixed-right--wrapper,.vxe-table--render-default .vxe-table--footer-wrapper.fixed-right--wrapper,.vxe-table--render-default .vxe-table--header-wrapper.fixed-right--wrapper{right:0;overflow-y:auto}.vxe-table--render-default .vxe-body--x-space{width:100%;height:1px;margin-bottom:-1px}.vxe-table--render-default .vxe-body--y-space{width:0;float:left}.vxe-table--render-default .vxe-table--resizable-bar{display:none;position:absolute;top:0;left:0;width:1px;height:100%;z-index:9;cursor:col-resize}.vxe-table--render-default .vxe-table--resizable-bar:before{content:"";display:block;height:100%;background-color:var(--vxe-table-resizable-drag-line-color)}.vxe-table--render-default .vxe-table--border-line{position:absolute;top:0;left:0;width:100%;height:100%;z-index:10;pointer-events:none;border:var(--vxe-table-border-width) solid var(--vxe-table-border-color)}.vxe-table--render-default .vxe-tree--line-wrapper{position:relative;display:block;height:0}.vxe-table--render-default .vxe-tree--line{content:"";position:absolute;bottom:-.9em;width:.8em;border-width:0 0 1px 1px;border-style:var(--vxe-table-tree-node-line-style);border-color:var(--vxe-table-tree-node-line-color);pointer-events:none}.vxe-table--render-default .vxe-cell--tree-node{position:relative}.vxe-table--render-default .vxe-tree--btn-wrapper{position:absolute;top:50%;width:1em;height:1em;text-align:center;transform:translateY(-50%);z-index:1;-webkit-user-select:none;-moz-user-select:none;user-select:none;cursor:pointer}.vxe-table--render-default .vxe-tree--node-btn{display:block;color:var(--vxe-font-lighten-color)}.vxe-table--render-default .vxe-tree--node-btn:hover{color:var(--vxe-font-color)}.vxe-table--render-default .vxe-tree-cell{display:block;padding-left:1.5em}.vxe-table--render-default .vxe-body--column.col--ellipsis>.vxe-cell .vxe-tree-cell{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vxe-table--render-default .vxe-table--expanded{cursor:pointer}.vxe-table--render-default .vxe-table--expanded .vxe-table--expand-btn{display:inline-block;width:1em;height:1em;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;color:var(--vxe-font-lighten-color)}.vxe-table--render-default .vxe-table--expanded .vxe-table--expand-btn:hover{color:var(--vxe-font-color)}.vxe-table--render-default .vxe-table--expanded+.vxe-table--expand-label{padding-left:.5em}.vxe-table--render-default .vxe-body--expanded-column{border-bottom:var(--vxe-table-border-width) solid var(--vxe-table-border-color)}.vxe-table--render-default .vxe-body--expanded-column.col--ellipsis>.vxe-body--expanded-cell{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vxe-table--render-default .vxe-body--expanded-cell{position:relative;z-index:1}.vxe-table--render-default .vxe-body--expanded-cell.is--ellipsis{overflow:auto}.vxe-table--render-default .vxe-body--column.col--ellipsis>.vxe-cell,.vxe-table--render-default .vxe-footer--column.col--ellipsis>.vxe-cell,.vxe-table--render-default .vxe-header--column.col--ellipsis>.vxe-cell{max-height:var(--vxe-table-row-height-default)}.vxe-table--render-default.size--medium .vxe-body--column.col--ellipsis>.vxe-cell,.vxe-table--render-default.size--medium .vxe-footer--column.col--ellipsis>.vxe-cell,.vxe-table--render-default.size--medium .vxe-header--column.col--ellipsis>.vxe-cell{max-height:var(--vxe-table-row-height-medium)}.vxe-table--render-default.size--medium .vxe-cell--checkbox{font-size:var(--vxe-checkbox-font-size-medium)}.vxe-table--render-default.size--medium .vxe-cell--radio{font-size:var(--vxe-radio-font-size-medium)}.vxe-table--render-default.size--small .vxe-body--column.col--ellipsis>.vxe-cell,.vxe-table--render-default.size--small .vxe-footer--column.col--ellipsis>.vxe-cell,.vxe-table--render-default.size--small .vxe-header--column.col--ellipsis>.vxe-cell{max-height:var(--vxe-table-row-height-small)}.vxe-table--render-default.size--small .vxe-cell--checkbox{font-size:var(--vxe-checkbox-font-size-small)}.vxe-table--render-default.size--small .vxe-cell--radio{font-size:var(--vxe-radio-font-size-small)}.vxe-table--render-default.size--mini .vxe-body--column.col--ellipsis>.vxe-cell,.vxe-table--render-default.size--mini .vxe-footer--column.col--ellipsis>.vxe-cell,.vxe-table--render-default.size--mini .vxe-header--column.col--ellipsis>.vxe-cell{max-height:var(--vxe-table-row-height-mini)}.vxe-table--render-default.size--mini .vxe-cell--checkbox{font-size:var(--vxe-checkbox-font-size-mini)}.vxe-table--render-default.size--mini .vxe-cell--radio{font-size:var(--vxe-radio-font-size-mini)}.vxe-table--render-default .vxe-table--empty-block,.vxe-table--render-default .vxe-table--empty-placeholder{min-height:var(--vxe-table-row-height-default);justify-content:center;align-items:center;text-align:center;overflow:hidden;width:100%;pointer-events:none}.vxe-table--render-default .vxe-table--empty-block{display:none;visibility:hidden}.vxe-table--render-default .vxe-table--empty-placeholder{display:none;position:absolute;top:0;z-index:5}.vxe-table--render-default .vxe-table--empty-content{display:block;width:50%;pointer-events:auto}.vxe-table--render-default.is--empty .vxe-table--empty-block,.vxe-table--render-default.is--empty .vxe-table--empty-placeholder{display:flex}.vxe-table--render-default .vxe-body--column.col--selected{box-shadow:inset 0 0 0 2px var(--vxe-primary-color)}.vxe-table--render-default .vxe-body--column.col--active,.vxe-table--render-default .vxe-body--column.col--selected{position:relative}.vxe-table--render-default .vxe-body--column.col--valid-error .vxe-cell--valid-error-hint{width:100%;position:absolute;left:50%;font-size:12px;line-height:1.2em;transform:translateX(-50%);text-align:left;z-index:4;padding-left:var(--vxe-table-cell-padding-left);padding-right:var(--vxe-table-cell-padding-right)}.vxe-table--render-default .vxe-body--column.col--valid-error .vxe-cell--valid-error-hint .vxe-cell--valid-error-msg{display:inline-block;border-radius:var(--vxe-border-radius);color:var(--vxe-table-validate-error-color);background-color:var(--vxe-table-validate-error-background-color);pointer-events:auto}.vxe-table--render-default .vxe-body--column.col--valid-error .vxe-default-input,.vxe-table--render-default .vxe-body--column.col--valid-error .vxe-default-select,.vxe-table--render-default .vxe-body--column.col--valid-error .vxe-default-textarea,.vxe-table--render-default .vxe-body--column.col--valid-error .vxe-input>.vxe-input--inner{border-color:var(--vxe-table-validate-error-color)}.vxe-table--render-default.valid-msg--single .vxe-body--row:last-child .vxe-cell--valid-error-hint{bottom:100%}.vxe-table--render-default.valid-msg--single .vxe-body--row:last-child:first-child .vxe-cell--valid-error-hint{bottom:auto}.vxe-table--render-default.valid-msg--full .vxe-body--row:last-child .vxe-cell--valid-error-hint{top:calc(100% - 1.3em)}.vxe-table--render-default.old-cell-valid .vxe-body--column.col--valid-error .vxe-cell--valid-error-hint{width:320px;position:absolute;bottom:calc(100% + 4px);left:50%;transform:translateX(-50%);text-align:center;pointer-events:none;z-index:4}.vxe-table--render-default.old-cell-valid .vxe-body--column.col--valid-error .vxe-cell--valid-error-hint .vxe-cell--valid-error-msg{display:inline-block;border-radius:var(--vxe-border-radius);padding:8px 12px;color:#fff;background-color:#f56c6c;pointer-events:auto}.vxe-table--render-default.old-cell-valid .vxe-body--row:first-child .vxe-cell--valid-error-hint{bottom:auto;top:calc(100% + 4px)}.vxe-table--render-default.old-cell-valid .vxe-body--column:first-child .vxe-cell--valid-error-hint{left:10px;transform:translateX(0);text-align:left}.vxe-table--render-default .vxe-body--row.row--pending{color:var(--vxe-table-validate-error-color);text-decoration:line-through;cursor:no-drop}.vxe-table--render-default .vxe-body--row.row--pending .vxe-body--column{position:relative}.vxe-table--render-default .vxe-body--row.row--pending .vxe-body--column:after{content:"";position:absolute;top:50%;left:0;width:100%;height:0;border-bottom:1px solid var(--vxe-table-validate-error-color);z-index:1}.vxe-table--render-default .vxe-body--row.row--new>.vxe-body--column{position:relative}.vxe-table--render-default .vxe-body--row.row--new>.vxe-body--column:before{content:"";top:calc(var(--vxe-table-cell-dirty-width)*-1);left:calc(var(--vxe-table-cell-dirty-width)*-1);position:absolute;border-width:var(--vxe-table-cell-dirty-width);border-style:solid;border-color:transparent var(--vxe-table-cell-dirty-insert-color) transparent transparent;transform:rotate(45deg)}.vxe-table--render-default .vxe-body--column.col--dirty{position:relative}.vxe-table--render-default .vxe-body--column.col--dirty:before{content:"";top:calc(var(--vxe-table-cell-dirty-width)*-1);left:calc(var(--vxe-table-cell-dirty-width)*-1);position:absolute;border-width:var(--vxe-table-cell-dirty-width);border-style:solid;border-color:transparent var(--vxe-table-cell-dirty-update-color) transparent transparent;transform:rotate(45deg)}.vxe-table--render-default.vxe-editable.cell--highlight .vxe-body--column.col--active{box-shadow:inset 0 0 0 2px var(--vxe-primary-color)}.vxe-table--render-default.vxe-editable.cell--highlight .vxe-body--column.col--active.col--valid-error{box-shadow:inset 0 0 0 2px var(--vxe-table-validate-error-color)}.vxe-table--render-default.vxe-editable.cell--highlight .vxe-body--column.col--active .vxe-cell .vxe-default-input,.vxe-table--render-default.vxe-editable.cell--highlight .vxe-body--column.col--active .vxe-cell .vxe-default-textarea{border:0;padding:0}.vxe-table--render-default.vxe-editable.cell--highlight .vxe-body--column.col--active .vxe-cell .vxe-default-input{height:var(--vxe-table-row-line-height)}.vxe-table--render-default.vxe-editable.cell--highlight .vxe-body--column.col--active .vxe-cell .vxe-input .vxe-input--inner{border:0;padding-left:0}.vxe-table--render-default.vxe-editable.cell--highlight .vxe-body--column.col--active .vxe-cell .vxe-textarea{height:calc(var(--vxe-table-row-line-height) - 1px)}.vxe-table--render-default.vxe-editable.cell--highlight .vxe-body--column.col--active .vxe-cell .vxe-textarea .vxe-textarea--inner{border:0}.vxe-table--render-default.vxe-editable .vxe-body--column,.vxe-table--render-default.vxe-editable .vxe-body--column.col--active{padding:0}div.vxe-table--tooltip-wrapper.vxe-table--valid-error{padding:0;color:var(--vxe-table-validate-error-color);background-color:var(--vxe-table-validate-error-background-color)}div.vxe-table--tooltip-wrapper.vxe-table--valid-error.old-cell-valid{padding:8px 12px;background-color:#f56c6c;color:#fff}.vxe-table--footer-wrapper{color:var(--vxe-table-footer-font-color);margin-top:-1px}.vxe-table--footer-wrapper.body--wrapper{overflow-x:auto}.vxe-footer--column.col--ellipsis>.vxe-cell{display:flex;align-items:center}.vxe-footer--column.col--ellipsis>.vxe-cell .vxe-cell--item{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vxe-grid{position:relative}.vxe-grid.is--loading:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;z-index:99;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:var(--vxe-loading-background-color)}.vxe-grid.is--loading>.vxe-table .vxe-loading{background-color:transparent}.vxe-grid.is--maximize{position:fixed;top:0;left:0;width:100%;height:100%;padding:.5em 1em;background-color:var(--vxe-grid-maximize-background-color)}.vxe-grid .vxe-grid--bottom-wrapper,.vxe-grid .vxe-grid--form-wrapper,.vxe-grid .vxe-grid--top-wrapper{position:relative}.vxe-grid{font-size:var(--vxe-font-size)}.vxe-grid.size--medium{font-size:var(--vxe-font-size-medium)}.vxe-grid.size--small{font-size:var(--vxe-font-size-small)}.vxe-grid.size--mini{font-size:var(--vxe-font-size-mini)}.vxe-toolbar{position:relative;display:flex;flex-direction:row;align-items:center;padding:.6em 0;color:var(--vxe-font-color);font-family:var(--vxe-font-family);background-color:var(--vxe-toolbar-background-color)}.vxe-toolbar:after{content:"";display:block;clear:both;height:0;overflow:hidden;visibility:hidden}.vxe-toolbar.is--perfect{border:1px solid var(--vxe-table-border-color);border-bottom-width:0;background-color:var(--vxe-table-header-background-color)}.vxe-toolbar.is--loading:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;z-index:var(--vxe-loading-z-index);-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:var(--vxe-loading-background-color)}.vxe-toolbar .vxe-buttons--wrapper{flex-grow:1}.vxe-toolbar .vxe-buttons--wrapper>.vxe-button+.vxe-button--item,.vxe-toolbar .vxe-buttons--wrapper>.vxe-button--item+.vxe-button,.vxe-toolbar .vxe-buttons--wrapper>.vxe-button--item+.vxe-button--item{margin-left:.8em}.vxe-toolbar .vxe-buttons--wrapper>.vxe-button--item{display:inline-block}.vxe-toolbar .vxe-tools--wrapper>.vxe-button+.vxe-tool--item,.vxe-toolbar .vxe-tools--wrapper>.vxe-tool--item+.vxe-button,.vxe-toolbar .vxe-tools--wrapper>.vxe-tool--item+.vxe-tool--item{margin-left:.8em}.vxe-toolbar .vxe-tools--wrapper>.vxe-tool--item{display:inline-block}.vxe-toolbar .vxe-tools--wrapper>.vxe-button{display:flex;align-items:center;justify-content:center}.vxe-toolbar .vxe-buttons--wrapper,.vxe-toolbar .vxe-tools--operate,.vxe-toolbar .vxe-tools--wrapper{display:flex;align-items:center}.vxe-toolbar .vxe-buttons--wrapper,.vxe-toolbar .vxe-tools--wrapper{flex-wrap:wrap}.vxe-toolbar .vxe-tools--operate{flex-shrink:0}.vxe-toolbar .vxe-custom--wrapper{position:relative}.vxe-toolbar .vxe-custom--wrapper.is--active>.vxe-button{background-color:var(--vxe-toolbar-custom-active-background-color);border-radius:50%}.vxe-toolbar{font-size:var(--vxe-font-size)}.vxe-toolbar.size--medium{font-size:var(--vxe-font-size-medium)}.vxe-toolbar.size--small{font-size:var(--vxe-font-size-small)}.vxe-toolbar.size--mini{font-size:var(--vxe-font-size-mini)}.vxe-pager{position:relative;display:flex;align-items:center;color:var(--vxe-font-color);font-family:var(--vxe-font-family);text-align:right;background-color:var(--vxe-pager-background-color)}.vxe-pager.is--hidden{display:none}.vxe-pager.align--left{text-align:left}.vxe-pager.align--center{text-align:center}.vxe-pager.is--loading:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;z-index:var(--vxe-loading-z-index);-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:var(--vxe-loading-background-color)}.vxe-pager .vxe-pager--jump-next,.vxe-pager .vxe-pager--jump-prev,.vxe-pager .vxe-pager--next-btn,.vxe-pager .vxe-pager--num-btn,.vxe-pager .vxe-pager--prev-btn{color:inherit;outline:0;padding:0;border:1px solid transparent;font-size:inherit}.vxe-pager .vxe-pager--jump-next:not(.is--disabled):focus,.vxe-pager .vxe-pager--jump-prev:not(.is--disabled):focus,.vxe-pager .vxe-pager--next-btn:not(.is--disabled):focus,.vxe-pager .vxe-pager--num-btn:not(.is--disabled):focus,.vxe-pager .vxe-pager--prev-btn:not(.is--disabled):focus{box-shadow:0 0 .25em 0 var(--vxe-primary-color)}.vxe-pager .vxe-pager--jump-next:not(.is--disabled):active,.vxe-pager .vxe-pager--jump-prev:not(.is--disabled):active,.vxe-pager .vxe-pager--next-btn:not(.is--disabled):active,.vxe-pager .vxe-pager--num-btn:not(.is--disabled):active,.vxe-pager .vxe-pager--prev-btn:not(.is--disabled):active{background-color:#fff}.vxe-pager.is--border:not(.is--background) .vxe-pager--jump-next,.vxe-pager.is--border:not(.is--background) .vxe-pager--jump-prev,.vxe-pager.is--border:not(.is--background) .vxe-pager--next-btn,.vxe-pager.is--border:not(.is--background) .vxe-pager--num-btn,.vxe-pager.is--border:not(.is--background) .vxe-pager--prev-btn,.vxe-pager.is--perfect:not(.is--background) .vxe-pager--jump-next,.vxe-pager.is--perfect:not(.is--background) .vxe-pager--jump-prev,.vxe-pager.is--perfect:not(.is--background) .vxe-pager--next-btn,.vxe-pager.is--perfect:not(.is--background) .vxe-pager--num-btn,.vxe-pager.is--perfect:not(.is--background) .vxe-pager--prev-btn{border-color:var(--vxe-input-border-color)}.vxe-pager.is--background .vxe-pager--jump-next,.vxe-pager.is--background .vxe-pager--jump-prev,.vxe-pager.is--background .vxe-pager--next-btn,.vxe-pager.is--background .vxe-pager--num-btn,.vxe-pager.is--background .vxe-pager--prev-btn,.vxe-pager.is--perfect .vxe-pager--jump-next,.vxe-pager.is--perfect .vxe-pager--jump-prev,.vxe-pager.is--perfect .vxe-pager--next-btn,.vxe-pager.is--perfect .vxe-pager--num-btn,.vxe-pager.is--perfect .vxe-pager--prev-btn{background-color:var(--vxe-pager-perfect-button-background-color)}.vxe-pager.is--background .vxe-pager--jump-next:not(.is--disabled).is--active,.vxe-pager.is--background .vxe-pager--jump-prev:not(.is--disabled).is--active,.vxe-pager.is--background .vxe-pager--num-btn:not(.is--disabled).is--active,.vxe-pager.is--perfect .vxe-pager--jump-next:not(.is--disabled).is--active,.vxe-pager.is--perfect .vxe-pager--jump-prev:not(.is--disabled).is--active,.vxe-pager.is--perfect .vxe-pager--num-btn:not(.is--disabled).is--active{color:#fff;background-color:var(--vxe-primary-color)}.vxe-pager.is--background .vxe-pager--jump-next:not(.is--disabled).is--active:hover,.vxe-pager.is--background .vxe-pager--jump-prev:not(.is--disabled).is--active:hover,.vxe-pager.is--background .vxe-pager--num-btn:not(.is--disabled).is--active:hover,.vxe-pager.is--perfect .vxe-pager--jump-next:not(.is--disabled).is--active:hover,.vxe-pager.is--perfect .vxe-pager--jump-prev:not(.is--disabled).is--active:hover,.vxe-pager.is--perfect .vxe-pager--num-btn:not(.is--disabled).is--active:hover{background-color:var(--vxe-primary-lighten-color)}.vxe-pager.is--background .vxe-pager--jump-next:not(.is--disabled).is--active:focus,.vxe-pager.is--background .vxe-pager--jump-prev:not(.is--disabled).is--active:focus,.vxe-pager.is--background .vxe-pager--num-btn:not(.is--disabled).is--active:focus,.vxe-pager.is--perfect .vxe-pager--jump-next:not(.is--disabled).is--active:focus,.vxe-pager.is--perfect .vxe-pager--jump-prev:not(.is--disabled).is--active:focus,.vxe-pager.is--perfect .vxe-pager--num-btn:not(.is--disabled).is--active:focus{border-color:var(--vxe-primary-color)}.vxe-pager.is--background .vxe-pager--jump-next:not(.is--disabled).is--active:active,.vxe-pager.is--background .vxe-pager--jump-prev:not(.is--disabled).is--active:active,.vxe-pager.is--background .vxe-pager--num-btn:not(.is--disabled).is--active:active,.vxe-pager.is--perfect .vxe-pager--jump-next:not(.is--disabled).is--active:active,.vxe-pager.is--perfect .vxe-pager--jump-prev:not(.is--disabled).is--active:active,.vxe-pager.is--perfect .vxe-pager--num-btn:not(.is--disabled).is--active:active{border-color:var(--vxe-primary-darken-color);background-color:var(--vxe-primary-darken-color)}.vxe-pager.is--perfect{border:1px solid var(--vxe-table-border-color);border-top-width:0;background-color:var(--vxe-pager-perfect-background-color)}.vxe-pager.is--border .vxe-pager--num-btn.is--active{border-color:var(--vxe-primary-color)}.vxe-pager .vxe-pager--wrapper{flex-grow:1}.vxe-pager .vxe-pager--btn-icon,.vxe-pager .vxe-pager--jump-icon{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.vxe-pager .vxe-pager--count,.vxe-pager .vxe-pager--jump,.vxe-pager .vxe-pager--jump-next,.vxe-pager .vxe-pager--jump-prev,.vxe-pager .vxe-pager--left-wrapper,.vxe-pager .vxe-pager--next-btn,.vxe-pager .vxe-pager--prev-btn,.vxe-pager .vxe-pager--right-wrapper,.vxe-pager .vxe-pager--sizes,.vxe-pager .vxe-pager--total{margin:0 .4em;vertical-align:middle;display:inline-block}.vxe-pager .vxe-pager--jump-next,.vxe-pager .vxe-pager--jump-prev,.vxe-pager .vxe-pager--next-btn,.vxe-pager .vxe-pager--num-btn,.vxe-pager .vxe-pager--prev-btn{position:relative;cursor:pointer}.vxe-pager .vxe-pager--count,.vxe-pager .vxe-pager--jump-next,.vxe-pager .vxe-pager--jump-prev,.vxe-pager .vxe-pager--left-wrapper,.vxe-pager .vxe-pager--next-btn,.vxe-pager .vxe-pager--num-btn,.vxe-pager .vxe-pager--prev-btn,.vxe-pager .vxe-pager--right-wrapper{height:2.15em;line-height:2em;display:inline-block}.vxe-pager .vxe-pager--jump .vxe-pager--goto,.vxe-pager .vxe-pager--sizes>.vxe-input{height:2.15em;line-height:2.15em}.vxe-pager .vxe-pager--sizes>.vxe-select--panel .vxe-select-option{text-align:center}.vxe-pager .vxe-pager--count,.vxe-pager .vxe-pager--jump-next,.vxe-pager .vxe-pager--jump-prev,.vxe-pager .vxe-pager--next-btn,.vxe-pager .vxe-pager--num-btn,.vxe-pager .vxe-pager--prev-btn{min-width:2.15em}.vxe-pager .vxe-pager--btn-wrapper{padding:0;margin:0;display:inline-block;text-align:center}.vxe-pager .vxe-pager--btn-wrapper .vxe-pager--jump-next:hover .vxe-pager--jump-more-icon,.vxe-pager .vxe-pager--btn-wrapper .vxe-pager--jump-prev:hover .vxe-pager--jump-more-icon{display:none}.vxe-pager .vxe-pager--btn-wrapper .vxe-pager--jump-next:hover .vxe-pager--jump-icon,.vxe-pager .vxe-pager--btn-wrapper .vxe-pager--jump-prev:hover .vxe-pager--jump-icon{display:inline-block}.vxe-pager .vxe-pager--btn-wrapper .vxe-pager--jump-icon{display:none}.vxe-pager .vxe-pager--jump-next,.vxe-pager .vxe-pager--jump-prev,.vxe-pager .vxe-pager--next-btn,.vxe-pager .vxe-pager--num-btn,.vxe-pager .vxe-pager--prev-btn{text-align:center;border-radius:var(--vxe-border-radius);margin:0 .25em;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:var(--vxe-pager-background-color)}.vxe-pager .vxe-pager--jump-next:not(.is--disabled):hover,.vxe-pager .vxe-pager--jump-prev:not(.is--disabled):hover,.vxe-pager .vxe-pager--next-btn:not(.is--disabled):hover,.vxe-pager .vxe-pager--num-btn:not(.is--disabled):hover,.vxe-pager .vxe-pager--prev-btn:not(.is--disabled):hover{color:var(--vxe-primary-lighten-color)}.vxe-pager .vxe-pager--jump-next:not(.is--disabled).is--active,.vxe-pager .vxe-pager--jump-next:not(.is--disabled):focus,.vxe-pager .vxe-pager--jump-prev:not(.is--disabled).is--active,.vxe-pager .vxe-pager--jump-prev:not(.is--disabled):focus,.vxe-pager .vxe-pager--next-btn:not(.is--disabled).is--active,.vxe-pager .vxe-pager--next-btn:not(.is--disabled):focus,.vxe-pager .vxe-pager--num-btn:not(.is--disabled).is--active,.vxe-pager .vxe-pager--num-btn:not(.is--disabled):focus,.vxe-pager .vxe-pager--prev-btn:not(.is--disabled).is--active,.vxe-pager .vxe-pager--prev-btn:not(.is--disabled):focus{color:var(--vxe-primary-color)}.vxe-pager .vxe-pager--jump-next:not(.is--disabled):active,.vxe-pager .vxe-pager--jump-prev:not(.is--disabled):active,.vxe-pager .vxe-pager--next-btn:not(.is--disabled):active,.vxe-pager .vxe-pager--num-btn:not(.is--disabled):active,.vxe-pager .vxe-pager--prev-btn:not(.is--disabled):active{color:var(--vxe-primary-darken-color)}.vxe-pager .vxe-pager--jump-next.is--disabled,.vxe-pager .vxe-pager--jump-prev.is--disabled,.vxe-pager .vxe-pager--next-btn.is--disabled,.vxe-pager .vxe-pager--num-btn.is--disabled,.vxe-pager .vxe-pager--prev-btn.is--disabled{cursor:no-drop;color:var(--vxe-font-disabled-color)}.vxe-pager .vxe-pager--jump-next.is--disabled:hover,.vxe-pager .vxe-pager--jump-prev.is--disabled:hover,.vxe-pager .vxe-pager--next-btn.is--disabled:hover,.vxe-pager .vxe-pager--num-btn.is--disabled:hover,.vxe-pager .vxe-pager--prev-btn.is--disabled:hover{color:var(--vxe-font-disabled-color)}.vxe-pager .vxe-pager--num-btn{vertical-align:middle}.vxe-pager .vxe-pager--num-btn.is--active{font-weight:700}.vxe-pager .vxe-pager--sizes{width:7em;text-align:center;cursor:pointer}.vxe-pager .vxe-pager--count,.vxe-pager .vxe-pager--sizes .vxe-input--inner{text-align:center}.vxe-pager .vxe-pager--count>span{vertical-align:middle}.vxe-pager .vxe-pager--count .vxe-pager--separator{margin-right:.2em}.vxe-pager .vxe-pager--count .vxe-pager--separator:before{content:"/"}.vxe-pager .vxe-pager--jump .vxe-pager--goto{border-radius:var(--vxe-border-radius);border:1px solid var(--vxe-input-border-color);color:var(--vxe-font-color);transition:border .2s ease-in-out;padding:0 .4em;background-color:var(--vxe-input-background-color)}.vxe-pager .vxe-pager--jump .vxe-pager--goto:focus{border:1px solid var(--vxe-primary-color);outline:0}.vxe-pager .vxe-pager--jump .vxe-pager--goto-text{margin-right:.25em}.vxe-pager .vxe-pager--jump .vxe-pager--classifier-text{margin-left:.25em}.vxe-pager .vxe-pager--jump .vxe-pager--goto{width:3.2em;text-align:center}.vxe-pager{font-size:var(--vxe-font-size);height:var(--vxe-table-row-height-default)}.vxe-pager.size--medium{font-size:var(--vxe-font-size-medium);height:var(--vxe-table-row-height-medium)}.vxe-pager.size--small{font-size:var(--vxe-font-size-small);height:var(--vxe-table-row-height-small)}.vxe-pager.size--mini{font-size:var(--vxe-font-size-mini);height:var(--vxe-table-row-height-mini)}.vxe-checkbox,.vxe-checkbox-group{display:inline-block;vertical-align:middle;line-height:1}.vxe-checkbox{white-space:nowrap}.vxe-checkbox .vxe-checkbox--icon{font-size:1.34em;color:var(--vxe-input-border-color);vertical-align:middle;font-weight:700;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vxe-checkbox.is--checked,.vxe-checkbox.is--checked .vxe-checkbox--icon,.vxe-checkbox.is--indeterminate,.vxe-checkbox.is--indeterminate .vxe-checkbox--icon{color:var(--vxe-primary-color)}.vxe-checkbox:not(.is--disabled){cursor:pointer}.vxe-checkbox:not(.is--disabled):hover .vxe-checkbox--icon{color:var(--vxe-primary-color)}.vxe-checkbox.is--hidden{cursor:default}.vxe-checkbox.is--disabled{color:var(--vxe-font-disabled-color)}.vxe-checkbox.is--disabled .vxe-checkbox--icon{color:var(--vxe-input-disabled-color)}.vxe-checkbox+.vxe-checkbox{margin-left:10px}.vxe-checkbox>input[type=checkbox]{position:absolute;width:0;height:0;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.vxe-checkbox.is--indeterminate>input:not(:checked)+.vxe-checkbox--icon{color:var(--vxe-primary-color)}.vxe-checkbox:not(.is--disabled)>input:focus+.vxe-checkbox--icon{color:var(--vxe-primary-color);box-shadow:0 0 .2em 0 var(--vxe-primary-color)}.vxe-checkbox:not(.is--disabled):hover>input+.vxe-checkbox--icon{border-color:var(--vxe-primary-color)}.vxe-checkbox.is--disabled{cursor:not-allowed}.vxe-checkbox.is--disabled>input+.vxe-checkbox--icon{color:var(--vxe-input-disabled-color)}.vxe-checkbox.is--disabled>input+.vxe-checkbox--icon+.vxe-checkbox--label{color:var(--vxe-font-disabled-color)}.vxe-checkbox.is--disabled>input:checked+.vxe-checkbox--icon{color:var(--vxe-input-disabled-color)}.vxe-checkbox .vxe-checkbox--label{padding-left:.5em;vertical-align:middle;display:inline-block;max-width:50em}.vxe-checkbox{font-size:var(--vxe-font-size)}.vxe-checkbox.size--medium{font-size:var(--vxe-font-size-medium)}.vxe-checkbox.size--small{font-size:var(--vxe-font-size-small)}.vxe-checkbox.size--mini{font-size:var(--vxe-font-size-mini)}.vxe-button-group{display:inline-flex}.vxe-radio-group{display:inline-block;vertical-align:middle;line-height:1;font-size:0}.vxe-radio-group+.vxe-radio-group{margin-left:10px}.vxe-radio{display:inline-block;vertical-align:middle;white-space:nowrap;line-height:1;cursor:pointer}.vxe-radio .vxe-radio--icon{font-size:1.4em;color:var(--vxe-input-border-color);vertical-align:middle;font-weight:700;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vxe-radio.is--checked,.vxe-radio.is--checked .vxe-radio--icon{color:var(--vxe-primary-color)}.vxe-radio:not(.is--disabled){cursor:pointer}.vxe-radio:not(.is--disabled):hover .vxe-radio--icon{color:var(--vxe-primary-color)}.vxe-radio.is--disabled{color:var(--vxe-font-disabled-color);cursor:not-allowed}.vxe-radio.is--disabled .vxe-radio--icon{color:var(--vxe-input-disabled-color)}.vxe-radio .vxe-radio--label{padding-left:.5em}.vxe-radio>input[type=radio]{position:absolute;width:0;height:0;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.vxe-radio .vxe-radio--label{vertical-align:middle;display:inline-block;max-width:50em}.vxe-radio:not(.is--disabled)>input:focus+.vxe-radio--icon{color:var(--vxe-primary-color)}.vxe-radio:not(.vxe-radio-button)+.vxe-radio{margin-left:10px}.vxe-radio-button .vxe-radio--label{background-color:var(--vxe-radio-button-default-background-color)}.vxe-radio-button:first-child .vxe-radio--label{border-left:1px solid var(--vxe-input-border-color);border-radius:var(--vxe-border-radius) 0 0 var(--vxe-border-radius)}.vxe-radio-button:last-child .vxe-radio--label{border-radius:0 var(--vxe-border-radius) var(--vxe-border-radius) 0}.vxe-radio-button>input:checked+.vxe-radio--label{color:#fff;background-color:var(--vxe-primary-color);border-color:var(--vxe-primary-color)}.vxe-radio-button .vxe-radio--label{padding:0 1em;line-height:calc(var(--vxe-button-height-default) - 2px);display:inline-block;border-style:solid;border-color:var(--vxe-input-border-color);border-width:1px 1px 1px 0;max-width:50em}.vxe-radio-button.is--disabled{cursor:not-allowed}.vxe-radio-button.is--disabled>input:not(:checked)+.vxe-radio--label{color:var(--vxe-input-disabled-color)}.vxe-radio-button.is--disabled>input:checked+.vxe-radio--label{border-color:var(--vxe-primary-lighten-color);background-color:var(--vxe-primary-lighten-color)}.vxe-radio-button:not(.is--disabled)>input:focus+.vxe-radio--label{border-color:var(--vxe-primary-color);box-shadow:0 0 .2em 0 var(--vxe-primary-color)}.vxe-radio-button:not(.is--disabled):hover>input:not(:checked)+.vxe-radio--label{color:var(--vxe-primary-color)}.vxe-radio-button.size--medium .vxe-radio--label{line-height:calc(var(--vxe-button-height-medium) - 2px)}.vxe-radio-button.size--small .vxe-radio--label{line-height:calc(var(--vxe-button-height-small) - 2px)}.vxe-radio-button.size--mini .vxe-radio--label{line-height:calc(var(--vxe-button-height-mini) - 2px)}.vxe-radio{font-size:var(--vxe-font-size)}.vxe-radio.size--medium{font-size:var(--vxe-font-size-medium)}.vxe-radio.size--small{font-size:var(--vxe-font-size-small)}.vxe-radio.size--mini{font-size:var(--vxe-font-size-mini)}.vxe-input--inner{width:100%;height:100%;border-radius:var(--vxe-border-radius);outline:0;margin:0;font-size:inherit;font-family:inherit;line-height:inherit;padding:0 .6em;color:var(--vxe-font-color);border:1px solid var(--vxe-input-border-color);background-color:var(--vxe-input-background-color);box-shadow:none}.vxe-input--inner::-moz-placeholder{color:var(--vxe-input-placeholder-color)}.vxe-input--inner::placeholder{color:var(--vxe-input-placeholder-color)}.vxe-input--inner::-webkit-autofill{background-color:var(--vxe-input-background-color)}.vxe-input--inner[type=number]{-webkit-appearance:none;appearance:none;-moz-appearance:textfield}.vxe-input--inner[type=number]::-webkit-inner-spin-button,.vxe-input--inner[type=number]::-webkit-outer-spin-button,.vxe-input--inner[type=search],.vxe-input--inner[type=search]::-webkit-search-cancel-button{-webkit-appearance:none;appearance:none}.vxe-input--inner[disabled]{cursor:not-allowed;color:var(--vxe-font-disabled-color);background-color:var(--vxe-input-disabled-background-color)}.vxe-input{display:inline-block;position:relative;width:180px}.vxe-input.is--disabled .vxe-input--date-picker-suffix,.vxe-input.is--disabled .vxe-input--number-suffix,.vxe-input.is--disabled .vxe-input--password-suffix,.vxe-input.is--disabled .vxe-input--search-suffix,.vxe-input.is--disabled .vxe-input--suffix{cursor:no-drop}.vxe-input:not(.is--disabled) .vxe-input--clear-icon,.vxe-input:not(.is--disabled) .vxe-input--number-suffix,.vxe-input:not(.is--disabled) .vxe-input--password-suffix,.vxe-input:not(.is--disabled) .vxe-input--search-suffix{cursor:pointer}.vxe-input:not(.is--disabled).is--active .vxe-input--inner{border:1px solid var(--vxe-primary-color)}.vxe-input .vxe-input--extra-suffix,.vxe-input .vxe-input--prefix,.vxe-input .vxe-input--suffix{display:flex;position:absolute;top:0;width:1.6em;height:100%;-webkit-user-select:none;-moz-user-select:none;user-select:none;align-items:center;justify-content:center;color:var(--vxe-table-column-icon-border-color)}.vxe-input--count{position:absolute;top:1px;right:.5em;height:calc(100% - 2px);color:var(--vxe-input-count-color);background-color:var(--vxe-input-count-background-color)}.vxe-input--count.is--error{color:var(--vxe-input-count-error-color)}.vxe-input .vxe-input--prefix{left:.2em}.vxe-input.is--prefix .vxe-input--inner{padding-left:1.8em}.vxe-input .vxe-input--clear-icon{display:none}.vxe-input .vxe-input--extra-suffix,.vxe-input .vxe-input--suffix{right:.2em}.vxe-input.is--suffix .vxe-input--inner{padding-right:1.8em}.vxe-input.is--suffix.is--count .vxe-input--inner{padding-right:5em}.vxe-input.is--suffix .vxe-input--count{right:2.1em}.vxe-input.is--left .vxe-input--inner{text-align:left}.vxe-input.is--center .vxe-input--inner{text-align:center}.vxe-input.is--right .vxe-input--inner{text-align:right}.vxe-input.is--count .vxe-input--inner{padding-right:3.4em}.vxe-input.is--controls.type--date .vxe-input--inner,.vxe-input.is--controls.type--datetime .vxe-input--inner,.vxe-input.is--controls.type--float .vxe-input--inner,.vxe-input.is--controls.type--integer .vxe-input--inner,.vxe-input.is--controls.type--month .vxe-input--inner,.vxe-input.is--controls.type--number .vxe-input--inner,.vxe-input.is--controls.type--password .vxe-input--inner,.vxe-input.is--controls.type--quarter .vxe-input--inner,.vxe-input.is--controls.type--search .vxe-input--inner,.vxe-input.is--controls.type--time .vxe-input--inner,.vxe-input.is--controls.type--week .vxe-input--inner,.vxe-input.is--controls.type--year .vxe-input--inner{padding-right:1.8em}.vxe-input.is--controls.type--date .vxe-input--suffix,.vxe-input.is--controls.type--datetime .vxe-input--suffix,.vxe-input.is--controls.type--float .vxe-input--suffix,.vxe-input.is--controls.type--integer .vxe-input--suffix,.vxe-input.is--controls.type--month .vxe-input--suffix,.vxe-input.is--controls.type--number .vxe-input--suffix,.vxe-input.is--controls.type--password .vxe-input--suffix,.vxe-input.is--controls.type--quarter .vxe-input--suffix,.vxe-input.is--controls.type--search .vxe-input--suffix,.vxe-input.is--controls.type--time .vxe-input--suffix,.vxe-input.is--controls.type--week .vxe-input--suffix,.vxe-input.is--controls.type--year .vxe-input--suffix{right:1.6em}.vxe-input.is--suffix.is--controls.type--date .vxe-input--inner,.vxe-input.is--suffix.is--controls.type--datetime .vxe-input--inner,.vxe-input.is--suffix.is--controls.type--float .vxe-input--inner,.vxe-input.is--suffix.is--controls.type--integer .vxe-input--inner,.vxe-input.is--suffix.is--controls.type--month .vxe-input--inner,.vxe-input.is--suffix.is--controls.type--number .vxe-input--inner,.vxe-input.is--suffix.is--controls.type--password .vxe-input--inner,.vxe-input.is--suffix.is--controls.type--quarter .vxe-input--inner,.vxe-input.is--suffix.is--controls.type--search .vxe-input--inner,.vxe-input.is--suffix.is--controls.type--time .vxe-input--inner,.vxe-input.is--suffix.is--controls.type--week .vxe-input--inner,.vxe-input.is--suffix.is--controls.type--year .vxe-input--inner{padding-right:3.2em}.vxe-input.is--suffix:hover .vxe-input--suffix.is--clear .vxe-input--suffix-icon{display:none}.vxe-input.is--suffix:hover .vxe-input--suffix.is--clear .vxe-input--clear-icon{display:inline}.vxe-input:not(.is--disabled) .vxe-input--suffix:hover .vxe-input--clear-icon{color:var(--vxe-font-color)}.vxe-input:not(.is--disabled) .vxe-input--suffix:active .vxe-input--clear-icon{color:var(--vxe-primary-color)}.vxe-input:not(.is--disabled) .vxe-input--extra-suffix:hover .vxe-input--password-suffix,.vxe-input:not(.is--disabled) .vxe-input--extra-suffix:hover .vxe-input--search-suffix{color:var(--vxe-font-color)}.vxe-input:not(.is--disabled) .vxe-input--extra-suffix:active .vxe-input--password-suffix,.vxe-input:not(.is--disabled) .vxe-input--extra-suffix:active .vxe-input--search-suffix{color:var(--vxe-primary-color)}.vxe-input:not(.is--disabled) .vxe-input--number-next:hover,.vxe-input:not(.is--disabled) .vxe-input--number-prev:hover{color:var(--vxe-font-color)}.vxe-input:not(.is--disabled) .vxe-input--number-next:active,.vxe-input:not(.is--disabled) .vxe-input--number-prev:active{color:var(--vxe-primary-color)}.vxe-input:not(.is--disabled) .vxe-input--number-next.is--disabled,.vxe-input:not(.is--disabled) .vxe-input--number-prev.is--disabled{cursor:no-drop;color:var(--vxe-input-number-disabled-color)}.vxe-input .vxe-input--date-picker-suffix,.vxe-input .vxe-input--number-suffix,.vxe-input .vxe-input--password-suffix,.vxe-input .vxe-input--search-suffix{position:relative;width:100%;height:100%}.vxe-input .vxe-input--date-picker-icon,.vxe-input .vxe-input--password-icon,.vxe-input .vxe-input--search-icon{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.vxe-input .vxe-input--date-picker-icon[class*=vxe-icon-],.vxe-input .vxe-input--password-icon[class*=vxe-icon-],.vxe-input .vxe-input--search-icon[class*=vxe-icon-]{font-size:1.2em}.vxe-input .vxe-input--date-picker-suffix{display:flex;align-items:center;justify-content:center}.vxe-input .vxe-input--date-picker-suffix .vxe-input--panel-icon{transition:transform .2s ease-in-out}.vxe-input .vxe-input--number-next,.vxe-input .vxe-input--number-prev{position:relative;display:block;height:50%;width:100%;text-align:center}.vxe-input .vxe-input--number-next-icon,.vxe-input .vxe-input--number-prev-icon{line-height:.8em;position:absolute;left:50%;transform:translateX(-50%)}.vxe-input .vxe-input--number-prev-icon{bottom:0}.vxe-input .vxe-input--number-next-icon{top:0}.vxe-input--panel{display:none;position:absolute;left:0;padding:4px 0;color:var(--vxe-font-color);text-align:left}.vxe-input--panel:not(.is--transfer){min-width:100%}.vxe-input--panel.is--transfer{position:fixed}.vxe-input--panel.animat--leave{display:block;opacity:0;transform:scaleY(.5);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1);transform-origin:center top;backface-visibility:hidden;transform-style:preserve-3d}.vxe-input--panel.animat--leave[placement=top]{transform-origin:center bottom}.vxe-input--panel.animat--enter{opacity:1;transform:scaleY(1)}.vxe-input--panel-layout-wrapper,.vxe-input--panel-wrapper{background-color:var(--vxe-input-panel-background-color);border:1px solid var(--vxe-table-popup-border-color);box-shadow:0 0 6px 2px rgba(0,0,0,.1);border-radius:var(--vxe-border-radius)}.vxe-input--panel-wrapper{overflow-x:hidden;overflow-y:auto}.vxe-input--panel-layout-wrapper{display:flex;flex-direction:row}.vxe-input--panel.type--date,.vxe-input--panel.type--month,.vxe-input--panel.type--quarter,.vxe-input--panel.type--week,.vxe-input--panel.type--year{-webkit-user-select:none;-moz-user-select:none;user-select:none}.vxe-input--panel.type--datetime .vxe-input--panel-right-wrapper{display:flex;flex-direction:column;border-left:1px solid var(--vxe-input-border-color)}.vxe-input--panel.type--date .vxe-input--date-picker-body th,.vxe-input--panel.type--datetime .vxe-input--date-picker-body th{width:14.28571%}.vxe-input--panel.type--week .vxe-input--date-picker-body table th{width:12%}.vxe-input--panel.type--week .vxe-input--date-picker-body table th:first-child{width:14%}.vxe-input--panel.type--quarter .vxe-input--date-picker-body table th{width:50%}.vxe-input--panel.type--month .vxe-input--date-picker-body td,.vxe-input--panel.type--year .vxe-input--date-picker-body td{width:25%}.vxe-input--time-picker-title{display:inline-block;text-align:center;border:1px solid var(--vxe-input-border-color);border-radius:var(--vxe-border-radius)}.vxe-input--time-picker-confirm{position:absolute;right:0;top:0}.vxe-input--date-picker-confirm,.vxe-input--time-picker-confirm{outline:0;border:1px solid var(--vxe-input-border-color);border-radius:var(--vxe-border-radius);cursor:pointer;color:var(--vxe-input-date-time-confirm-button-color);border-color:var(--vxe-primary-color);background-color:var(--vxe-primary-color)}.vxe-input--date-picker-confirm:hover,.vxe-input--time-picker-confirm:hover{background-color:var(--vxe-primary-lighten-color);border-color:var(--vxe-primary-lighten-color)}.vxe-input--date-picker-confirm:active,.vxe-input--time-picker-confirm:active{background-color:var(--vxe-primary-darken-color);border-color:var(--vxe-primary-darken-color)}.vxe-input--time-picker-header{display:flex;position:relative;flex-shrink:0}.vxe-input--date-picker-header{display:flex;flex-direction:row;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vxe-input--date-picker-header .vxe-input--date-picker-type-wrapper{flex-grow:1}.vxe-input--date-picker-header .vxe-input--date-picker-btn-wrapper{flex-shrink:0;text-align:center}.vxe-input--date-picker-type-wrapper .vxe-input--date-picker-btn,.vxe-input--date-picker-type-wrapper .vxe-input--date-picker-label{display:inline-block}.vxe-input--date-picker-btn-wrapper{display:flex;flex-direction:row}.vxe-input--date-picker-btn,.vxe-input--date-picker-label{display:flex;align-items:center;justify-content:center;background-color:var(--vxe-button-default-background-color)}.vxe-input--date-picker-btn.is--disabled{color:var(--vxe-font-disabled-color);cursor:no-drop}.vxe-input--date-picker-btn:not(.is--disabled){cursor:pointer}.vxe-input--date-picker-btn:not(.is--disabled):active,.vxe-input--date-picker-btn:not(.is--disabled):hover{background-color:#fff}.vxe-input--date-picker-body{border-radius:var(--vxe-border-radius);border:1px solid var(--vxe-table-popup-border-color);-webkit-user-select:none;-moz-user-select:none;user-select:none}.vxe-input--date-picker-body table{border:0;width:100%;border-spacing:0;border-collapse:separate;text-align:center;table-layout:fixed}.vxe-input--date-picker-body td,.vxe-input--date-picker-body th{font-weight:400}.vxe-input--date-picker-body th{box-shadow:inset 0 -1px 0 0 var(--vxe-table-popup-border-color)}.vxe-input--date-picker-body td.is--next,.vxe-input--date-picker-body td.is--next .vxe-input--date-festival,.vxe-input--date-picker-body td.is--next .vxe-input--date-label,.vxe-input--date-picker-body td.is--prev,.vxe-input--date-picker-body td.is--prev .vxe-input--date-festival,.vxe-input--date-picker-body td.is--prev .vxe-input--date-label{color:var(--vxe-font-disabled-color)}.vxe-input--date-picker-body td.is--now{box-shadow:inset 0 0 0 1px var(--vxe-table-popup-border-color)}.vxe-input--date-picker-body td.is--now:not(.is--selected).is--current,.vxe-input--date-picker-body td.is--now:not(.is--selected).is--current .vxe-input--date-festival,.vxe-input--date-picker-body td.is--now:not(.is--selected).is--current .vxe-input--date-label{color:var(--vxe-primary-color)}.vxe-input--date-picker-body td.is--hover{background-color:var(--vxe-input-date-picker-hover-background-color)}.vxe-input--date-picker-body td.is--selected{color:var(--vxe-input-date-picker-selected-color);background-color:var(--vxe-primary-color)}.vxe-input--date-picker-body td.is--selected.is--next,.vxe-input--date-picker-body td.is--selected.is--prev{background-color:var(--vxe-primary-lighten-color)}.vxe-input--date-picker-body td.is--selected .vxe-input--date-festival,.vxe-input--date-picker-body td.is--selected .vxe-input--date-label{color:var(--vxe-input-date-picker-festival-selected-color)}.vxe-input--date-picker-body td.is--selected .vxe-input--date-label.is-notice:before{background-color:var(--vxe-input-date-picker-notice-selected-background-color)}.vxe-input--date-picker-body td:not(.is--disabled){cursor:pointer}.vxe-input--date-picker-body td.is--disabled{cursor:no-drop;color:var(--vxe-input-disabled-color);background-color:var(--vxe-input-disabled-background-color)}.vxe-input--date-picker-body td.is--disabled .vxe-input--date-festival,.vxe-input--date-picker-body td.is--disabled .vxe-input--date-label{color:var(--vxe-input-disabled-color)}.vxe-input--date-week-view th:first-child{box-shadow:inset -1px -1px 0 0 var(--vxe-table-popup-border-color)}.vxe-input--date-week-view td:first-child{box-shadow:inset -1px 0 0 0 var(--vxe-table-popup-border-color)}.vxe-input--date-festival,.vxe-input--date-label{display:block;overflow:hidden}.vxe-input--date-label{position:relative}.vxe-input--date-label.is-notice:before{content:"";position:absolute;width:4px;height:4px;left:.8em;top:.1em;transform:translateX(-50%);border-radius:100%;background-color:var(--vxe-input-date-notice-background-color)}.vxe-input--date-label--extra{position:absolute;right:.1em;top:-.2em;font-size:12px;line-height:12px;transform:scale(.7);color:var(--vxe-input-date-extra-color)}.vxe-input--date-label--extra.is-important{color:var(--vxe-input-date-extra-important-color)}.vxe-input--date-festival{color:var(--vxe-input-date-festival-color);height:14px;line-height:1;overflow:hidden}.vxe-input--date-festival.is-important{color:var(--vxe-input-date-festival-important-color)}.vxe-input--date-festival--label{display:block;font-size:12px;transform:scale(.8)}@keyframes festivalOverlap2{0%,45%,to{transform:translateY(0)}50%,95%{transform:translateY(-14px)}}@keyframes festivalOverlap3{0%,20%,to{transform:translateY(0)}25%,45%,75%,95%{transform:translateY(-14px)}50%,70%{transform:translateY(-28px)}}.vxe-input--date-festival--overlap{display:block;font-size:12px}.vxe-input--date-festival--overlap.overlap--2{animation:festivalOverlap2 6s ease-in-out infinite}.vxe-input--date-festival--overlap.overlap--3{animation:festivalOverlap3 9s ease-in-out infinite}.vxe-input--date-festival--overlap>span{height:14px;display:block;transform:scale(.8)}.vxe-input--time-picker-body{position:relative;display:flex;flex-direction:row;border:1px solid var(--vxe-table-popup-border-color);flex-grow:1;border-radius:var(--vxe-border-radius);-webkit-user-select:none;-moz-user-select:none;user-select:none}.vxe-input--time-picker-body>ul{height:100%;overflow:hidden;margin:0;padding:0}.vxe-input--time-picker-body>ul:after,.vxe-input--time-picker-body>ul:before{content:" ";display:block}.vxe-input--time-picker-body>ul:hover{overflow-y:auto}.vxe-input--time-picker-body>ul>li{display:block}.vxe-input--time-picker-body>ul>li:hover{background-color:var(--vxe-input-date-picker-hover-background-color);cursor:pointer}.vxe-input--time-picker-body>ul>li.is--selected{font-weight:700;color:var(--vxe-primary-color)}.vxe-input--time-picker-body .vxe-input--time-picker-minute-list,.vxe-input--time-picker-body .vxe-input--time-picker-second-list{border-left:1px solid var(--vxe-table-popup-border-color)}.vxe-input{font-size:var(--vxe-font-size);height:var(--vxe-input-height-default);line-height:var(--vxe-input-height-default)}.vxe-input .vxe-input--inner[type=date]::-webkit-inner-spin-button,.vxe-input .vxe-input--inner[type=month]::-webkit-inner-spin-button,.vxe-input .vxe-input--inner[type=week]::-webkit-inner-spin-button{margin-top:6px}.vxe-input .vxe-input--inner[type=date]::-webkit-inner-spin-button,.vxe-input .vxe-input--inner[type=month]::-webkit-inner-spin-button,.vxe-input .vxe-input--inner[type=number]::-webkit-inner-spin-button,.vxe-input .vxe-input--inner[type=week]::-webkit-inner-spin-button{height:24px}.vxe-input.size--medium{font-size:var(--vxe-font-size-medium);height:var(--vxe-input-height-medium);line-height:var(--vxe-input-height-medium)}.vxe-input.size--medium .vxe-input--inner[type=date]::-webkit-inner-spin-button,.vxe-input.size--medium .vxe-input--inner[type=month]::-webkit-inner-spin-button,.vxe-input.size--medium .vxe-input--inner[type=week]::-webkit-inner-spin-button{margin-top:4px}.vxe-input.size--small{font-size:var(--vxe-font-size-small);height:var(--vxe-input-height-small);line-height:var(--vxe-input-height-small)}.vxe-input.size--small .vxe-input--inner[type=date]::-webkit-inner-spin-button,.vxe-input.size--small .vxe-input--inner[type=month]::-webkit-inner-spin-button,.vxe-input.size--small .vxe-input--inner[type=week]::-webkit-inner-spin-button{margin-top:2px}.vxe-input.size--mini{font-size:var(--vxe-font-size-mini);height:var(--vxe-input-height-mini);line-height:var(--vxe-input-height-mini)}.vxe-input.size--mini .vxe-input--inner[type=date]::-webkit-inner-spin-button,.vxe-input.size--mini .vxe-input--inner[type=month]::-webkit-inner-spin-button,.vxe-input.size--mini .vxe-input--inner[type=week]::-webkit-inner-spin-button{margin-top:0}.vxe-input--panel{font-size:var(--vxe-font-size)}.vxe-input--panel .vxe-input--panel-wrapper{max-height:380px}.vxe-input--panel.type--date .vxe-input--panel-wrapper,.vxe-input--panel.type--month .vxe-input--panel-wrapper,.vxe-input--panel.type--quarter .vxe-input--panel-wrapper,.vxe-input--panel.type--time .vxe-input--panel-wrapper,.vxe-input--panel.type--week .vxe-input--panel-wrapper,.vxe-input--panel.type--year .vxe-input--panel-wrapper{padding:11px}.vxe-input--panel.type--date .vxe-input--panel-wrapper,.vxe-input--panel.type--month .vxe-input--panel-wrapper,.vxe-input--panel.type--quarter .vxe-input--panel-wrapper,.vxe-input--panel.type--year .vxe-input--panel-wrapper{width:336px}.vxe-input--panel.type--week .vxe-input--panel-wrapper{width:380px}.vxe-input--panel.type--time .vxe-input--panel-wrapper{width:170px}.vxe-input--panel.type--datetime .vxe-input--panel-left-wrapper{width:336px}.vxe-input--panel.type--datetime .vxe-input--panel-left-wrapper,.vxe-input--panel.type--datetime .vxe-input--panel-right-wrapper{padding:11px}.vxe-input--panel .vxe-input--time-picker-title{height:30px;line-height:30px;padding:0 11px}.vxe-input--panel .vxe-input--date-picker-btn,.vxe-input--panel .vxe-input--date-picker-label{height:30px;line-height:30px}.vxe-input--panel .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-btn{margin-left:8px}.vxe-input--panel .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-current-btn,.vxe-input--panel .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-next-btn,.vxe-input--panel .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-prev-btn{width:30px;border-radius:var(--vxe-border-radius);border:1px solid var(--vxe-input-border-color)}.vxe-input--panel .vxe-input--date-picker-type-wrapper .vxe-input--date-picker-btn,.vxe-input--panel .vxe-input--date-picker-type-wrapper .vxe-input--date-picker-label{padding:0 9px}.vxe-input--panel .vxe-input--date-picker-header,.vxe-input--panel .vxe-input--time-picker-header{padding-bottom:8px}.vxe-input--panel .vxe-input--date-picker-body table,.vxe-input--panel .vxe-input--time-picker-body{height:calc(var(--vxe-input-date-time-week-row-height-default)*6 + var(--vxe-input-date-title-height-default))}.vxe-input--panel .vxe-input--time-picker-body>ul{width:48px}.vxe-input--panel .vxe-input--time-picker-body>ul:after,.vxe-input--panel .vxe-input--time-picker-body>ul:before{height:120px}.vxe-input--panel .vxe-input--time-picker-body>ul>li{height:26px;padding-left:9px}.vxe-input--panel .vxe-input--time-picker-body .vxe-input--time-picker-minute-list{left:48px}.vxe-input--panel .vxe-input--time-picker-body .vxe-input--time-picker-second-list{left:96px}.vxe-input--panel .vxe-input--date-day-view td,.vxe-input--panel .vxe-input--date-week-view td{height:var(--vxe-input-date-time-week-row-height-default)}.vxe-input--panel .vxe-input--date-quarter-view td{height:var(--vxe-input-date-quarter-row-height-default)}.vxe-input--panel .vxe-input--date-month-view td,.vxe-input--panel .vxe-input--date-year-view td{height:var(--vxe-input-date-month-year-row-height-default)}.vxe-input--panel .vxe-input--date-picker-body th{height:var(--vxe-input-date-title-height-default)}.vxe-input--panel .vxe-input--date-picker-confirm,.vxe-input--panel .vxe-input--time-picker-confirm{height:30px;padding:0 9px}.vxe-input--panel .vxe-input--date-label{line-height:calc(var(--vxe-font-size) + 1px)}.vxe-input--panel.size--medium{font-size:var(--vxe-font-size-medium)}.vxe-input--panel.size--medium .vxe-input--panel-wrapper{max-height:360px}.vxe-input--panel.size--medium.type--date .vxe-input--panel-wrapper,.vxe-input--panel.size--medium.type--month .vxe-input--panel-wrapper,.vxe-input--panel.size--medium.type--quarter .vxe-input--panel-wrapper,.vxe-input--panel.size--medium.type--time .vxe-input--panel-wrapper,.vxe-input--panel.size--medium.type--week .vxe-input--panel-wrapper,.vxe-input--panel.size--medium.type--year .vxe-input--panel-wrapper{padding:10px}.vxe-input--panel.size--medium.type--date .vxe-input--panel-wrapper,.vxe-input--panel.size--medium.type--month .vxe-input--panel-wrapper,.vxe-input--panel.size--medium.type--quarter .vxe-input--panel-wrapper,.vxe-input--panel.size--medium.type--year .vxe-input--panel-wrapper{width:336px}.vxe-input--panel.size--medium.type--week .vxe-input--panel-wrapper{width:380px}.vxe-input--panel.size--medium.type--time .vxe-input--panel-wrapper{width:168px}.vxe-input--panel.size--medium.type--datetime .vxe-input--panel-left-wrapper{width:336px}.vxe-input--panel.size--medium.type--datetime .vxe-input--panel-left-wrapper,.vxe-input--panel.size--medium.type--datetime .vxe-input--panel-right-wrapper{padding:10px}.vxe-input--panel.size--medium .vxe-input--time-picker-title{height:29px;line-height:29px;padding:0 10px}.vxe-input--panel.size--medium .vxe-input--date-picker-btn,.vxe-input--panel.size--medium .vxe-input--date-picker-label{height:29px;line-height:29px}.vxe-input--panel.size--medium .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-btn{margin-left:7px}.vxe-input--panel.size--medium .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-current-btn,.vxe-input--panel.size--medium .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-next-btn,.vxe-input--panel.size--medium .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-prev-btn{width:29px;border-radius:var(--vxe-border-radius);border:1px solid var(--vxe-input-border-color)}.vxe-input--panel.size--medium .vxe-input--date-picker-type-wrapper .vxe-input--date-picker-btn,.vxe-input--panel.size--medium .vxe-input--date-picker-type-wrapper .vxe-input--date-picker-label{padding:0 8px}.vxe-input--panel.size--medium .vxe-input--date-picker-header,.vxe-input--panel.size--medium .vxe-input--time-picker-header{padding-bottom:7px}.vxe-input--panel.size--medium .vxe-input--date-picker-body table,.vxe-input--panel.size--medium .vxe-input--time-picker-body{height:calc(var(--vxe-input-date-time-week-row-height-medium)*6 + var(--vxe-input-date-title-height-medium))}.vxe-input--panel.size--medium .vxe-input--time-picker-body>ul{width:48px}.vxe-input--panel.size--medium .vxe-input--time-picker-body>ul:after,.vxe-input--panel.size--medium .vxe-input--time-picker-body>ul:before{height:120px}.vxe-input--panel.size--medium .vxe-input--time-picker-body>ul>li{height:26px;padding-left:8px}.vxe-input--panel.size--medium .vxe-input--time-picker-body .vxe-input--time-picker-minute-list{left:48px}.vxe-input--panel.size--medium .vxe-input--time-picker-body .vxe-input--time-picker-second-list{left:96px}.vxe-input--panel.size--medium .vxe-input--date-day-view td,.vxe-input--panel.size--medium .vxe-input--date-week-view td{height:var(--vxe-input-date-time-week-row-height-medium)}.vxe-input--panel.size--medium .vxe-input--date-quarter-view td{height:var(--vxe-input-date-quarter-row-height-medium)}.vxe-input--panel.size--medium .vxe-input--date-month-view td,.vxe-input--panel.size--medium .vxe-input--date-year-view td{height:var(--vxe-input-date-month-year-row-height-medium)}.vxe-input--panel.size--medium .vxe-input--date-picker-body th{height:var(--vxe-input-date-title-height-medium)}.vxe-input--panel.size--medium .vxe-input--date-picker-confirm,.vxe-input--panel.size--medium .vxe-input--time-picker-confirm{height:29px;padding:0 8px}.vxe-input--panel.size--medium .vxe-input--date-label{line-height:calc(var(--vxe-font-size-medium) + 1px)}.vxe-input--panel.size--small{font-size:var(--vxe-font-size-small)}.vxe-input--panel.size--small .vxe-input--panel-wrapper{max-height:340px}.vxe-input--panel.size--small.type--date .vxe-input--panel-wrapper,.vxe-input--panel.size--small.type--month .vxe-input--panel-wrapper,.vxe-input--panel.size--small.type--quarter .vxe-input--panel-wrapper,.vxe-input--panel.size--small.type--time .vxe-input--panel-wrapper,.vxe-input--panel.size--small.type--week .vxe-input--panel-wrapper,.vxe-input--panel.size--small.type--year .vxe-input--panel-wrapper{padding:9px}.vxe-input--panel.size--small.type--date .vxe-input--panel-wrapper,.vxe-input--panel.size--small.type--month .vxe-input--panel-wrapper,.vxe-input--panel.size--small.type--quarter .vxe-input--panel-wrapper,.vxe-input--panel.size--small.type--year .vxe-input--panel-wrapper{width:312px}.vxe-input--panel.size--small.type--week .vxe-input--panel-wrapper{width:354px}.vxe-input--panel.size--small.type--time .vxe-input--panel-wrapper{width:154px}.vxe-input--panel.size--small.type--datetime .vxe-input--panel-left-wrapper{width:312px}.vxe-input--panel.size--small.type--datetime .vxe-input--panel-left-wrapper,.vxe-input--panel.size--small.type--datetime .vxe-input--panel-right-wrapper{padding:9px}.vxe-input--panel.size--small .vxe-input--time-picker-title{height:28px;line-height:28px;padding:0 9px}.vxe-input--panel.size--small .vxe-input--date-picker-btn,.vxe-input--panel.size--small .vxe-input--date-picker-label{height:28px;line-height:28px}.vxe-input--panel.size--small .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-btn{margin-left:6px}.vxe-input--panel.size--small .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-current-btn,.vxe-input--panel.size--small .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-next-btn,.vxe-input--panel.size--small .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-prev-btn{width:28px;border-radius:var(--vxe-border-radius);border:1px solid var(--vxe-input-border-color)}.vxe-input--panel.size--small .vxe-input--date-picker-type-wrapper .vxe-input--date-picker-btn,.vxe-input--panel.size--small .vxe-input--date-picker-type-wrapper .vxe-input--date-picker-label{padding:0 7px}.vxe-input--panel.size--small .vxe-input--date-picker-header,.vxe-input--panel.size--small .vxe-input--time-picker-header{padding-bottom:6px}.vxe-input--panel.size--small .vxe-input--date-picker-body table,.vxe-input--panel.size--small .vxe-input--time-picker-body{height:calc(var(--vxe-input-date-time-week-row-height-small)*6 + var(--vxe-input-date-title-height-small))}.vxe-input--panel.size--small .vxe-input--time-picker-body>ul{width:44px}.vxe-input--panel.size--small .vxe-input--time-picker-body>ul:after,.vxe-input--panel.size--small .vxe-input--time-picker-body>ul:before{height:110px}.vxe-input--panel.size--small .vxe-input--time-picker-body>ul>li{height:26px;padding-left:7px}.vxe-input--panel.size--small .vxe-input--time-picker-body .vxe-input--time-picker-minute-list{left:44px}.vxe-input--panel.size--small .vxe-input--time-picker-body .vxe-input--time-picker-second-list{left:88px}.vxe-input--panel.size--small .vxe-input--date-day-view td,.vxe-input--panel.size--small .vxe-input--date-week-view td{height:var(--vxe-input-date-time-week-row-height-small)}.vxe-input--panel.size--small .vxe-input--date-quarter-view td{height:var(--vxe-input-date-quarter-row-height-small)}.vxe-input--panel.size--small .vxe-input--date-month-view td,.vxe-input--panel.size--small .vxe-input--date-year-view td{height:var(--vxe-input-date-month-year-row-height-small)}.vxe-input--panel.size--small .vxe-input--date-picker-body th{height:var(--vxe-input-date-title-height-small)}.vxe-input--panel.size--small .vxe-input--date-picker-confirm,.vxe-input--panel.size--small .vxe-input--time-picker-confirm{height:28px;padding:0 7px}.vxe-input--panel.size--small .vxe-input--date-label{line-height:calc(var(--vxe-font-size-small) + 1px)}.vxe-input--panel.size--mini{font-size:var(--vxe-font-size-mini)}.vxe-input--panel.size--mini .vxe-input--panel-wrapper{max-height:320px}.vxe-input--panel.size--mini.type--date .vxe-input--panel-wrapper,.vxe-input--panel.size--mini.type--month .vxe-input--panel-wrapper,.vxe-input--panel.size--mini.type--quarter .vxe-input--panel-wrapper,.vxe-input--panel.size--mini.type--time .vxe-input--panel-wrapper,.vxe-input--panel.size--mini.type--week .vxe-input--panel-wrapper,.vxe-input--panel.size--mini.type--year .vxe-input--panel-wrapper{padding:8px}.vxe-input--panel.size--mini.type--date .vxe-input--panel-wrapper,.vxe-input--panel.size--mini.type--month .vxe-input--panel-wrapper,.vxe-input--panel.size--mini.type--quarter .vxe-input--panel-wrapper,.vxe-input--panel.size--mini.type--year .vxe-input--panel-wrapper{width:288px}.vxe-input--panel.size--mini.type--week .vxe-input--panel-wrapper{width:326px}.vxe-input--panel.size--mini.type--time .vxe-input--panel-wrapper{width:146px}.vxe-input--panel.size--mini.type--datetime .vxe-input--panel-left-wrapper{width:288px}.vxe-input--panel.size--mini.type--datetime .vxe-input--panel-left-wrapper,.vxe-input--panel.size--mini.type--datetime .vxe-input--panel-right-wrapper{padding:8px}.vxe-input--panel.size--mini .vxe-input--time-picker-title{height:27px;line-height:27px;padding:0 8px}.vxe-input--panel.size--mini .vxe-input--date-picker-btn,.vxe-input--panel.size--mini .vxe-input--date-picker-label{height:27px;line-height:27px}.vxe-input--panel.size--mini .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-btn{margin-left:5px}.vxe-input--panel.size--mini .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-current-btn,.vxe-input--panel.size--mini .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-next-btn,.vxe-input--panel.size--mini .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-prev-btn{width:27px;border-radius:var(--vxe-border-radius);border:1px solid var(--vxe-input-border-color)}.vxe-input--panel.size--mini .vxe-input--date-picker-type-wrapper .vxe-input--date-picker-btn,.vxe-input--panel.size--mini .vxe-input--date-picker-type-wrapper .vxe-input--date-picker-label{padding:0 6px}.vxe-input--panel.size--mini .vxe-input--date-picker-header,.vxe-input--panel.size--mini .vxe-input--time-picker-header{padding-bottom:5px}.vxe-input--panel.size--mini .vxe-input--date-picker-body table,.vxe-input--panel.size--mini .vxe-input--time-picker-body{height:calc(var(--vxe-input-date-time-week-row-height-mini)*6 + var(--vxe-input-date-title-height-mini))}.vxe-input--panel.size--mini .vxe-input--time-picker-body>ul{width:42px}.vxe-input--panel.size--mini .vxe-input--time-picker-body>ul:after,.vxe-input--panel.size--mini .vxe-input--time-picker-body>ul:before{height:100px}.vxe-input--panel.size--mini .vxe-input--time-picker-body>ul>li{height:26px;padding-left:6px}.vxe-input--panel.size--mini .vxe-input--time-picker-body .vxe-input--time-picker-minute-list{left:42px}.vxe-input--panel.size--mini .vxe-input--time-picker-body .vxe-input--time-picker-second-list{left:84px}.vxe-input--panel.size--mini .vxe-input--date-day-view td,.vxe-input--panel.size--mini .vxe-input--date-week-view td{height:var(--vxe-input-date-time-week-row-height-mini)}.vxe-input--panel.size--mini .vxe-input--date-quarter-view td{height:var(--vxe-input-date-quarter-row-height-mini)}.vxe-input--panel.size--mini .vxe-input--date-month-view td,.vxe-input--panel.size--mini .vxe-input--date-year-view td{height:var(--vxe-input-date-month-year-row-height-mini)}.vxe-input--panel.size--mini .vxe-input--date-picker-body th{height:var(--vxe-input-date-title-height-mini)}.vxe-input--panel.size--mini .vxe-input--date-picker-confirm,.vxe-input--panel.size--mini .vxe-input--time-picker-confirm{height:27px;padding:0 6px}.vxe-input--panel.size--mini .vxe-input--date-label{line-height:calc(var(--vxe-font-size-mini) + 1px)}.vxe-textarea{position:relative;display:inline-block}.vxe-textarea:not(.def--cols),.vxe-textarea:not(.def--cols) .vxe-textarea--inner{width:100%}.vxe-textarea--inner{border-radius:var(--vxe-border-radius);outline:0;font-size:inherit;padding:0 .6em;color:var(--vxe-font-color);line-height:inherit;border:1px solid var(--vxe-input-border-color);background-color:var(--vxe-textarea-background-color);display:block;padding:.3em .6em}.vxe-textarea--inner::-moz-placeholder{color:var(--vxe-input-placeholder-color)}.vxe-textarea--inner::placeholder{color:var(--vxe-input-placeholder-color)}.vxe-textarea--inner:focus{border:1px solid var(--vxe-primary-color)}.vxe-textarea--inner[disabled]{cursor:not-allowed;background-color:var(--vxe-input-disabled-background-color)}.vxe-textarea--autosize,.vxe-textarea--inner{line-height:var(--vxe-textarea-line-height);color:var(--vxe-font-color);font-family:var(--vxe-font-family)}.vxe-textarea--autosize{display:block;position:fixed;top:0;left:0;width:100%;margin:0;padding:.3em .6em;word-wrap:break-word;white-space:pre-wrap;z-index:-1;visibility:hidden}.vxe-textarea--count{position:absolute;bottom:.2em;right:1.4em;padding-left:.2em;color:var(--vxe-input-count-color);background-color:var(--vxe-input-count-background-color)}.vxe-textarea--count.is--error{color:var(--vxe-input-count-error-color)}.vxe-textarea,.vxe-textarea--autosize{font-size:var(--vxe-font-size)}.vxe-textarea--autosize.size--medium,.vxe-textarea.size--medium{font-size:var(--vxe-font-size-medium)}.vxe-textarea--autosize.size--small,.vxe-textarea.size--small{font-size:var(--vxe-font-size-small)}.vxe-textarea--autosize.size--mini,.vxe-textarea.size--mini{font-size:var(--vxe-font-size-mini)}.vxe-textarea:not(.is--autosize){min-height:var(--vxe-input-height-default)}.vxe-textarea.size--medium{font-size:var(--vxe-font-size-medium)}.vxe-textarea.size--medium:not(.is--autosize){min-height:var(--vxe-input-height-medium)}.vxe-textarea.size--small:not(.is--autosize){min-height:var(--vxe-input-height-small)}.vxe-textarea.size--mini:not(.is--autosize){min-height:var(--vxe-input-height-mini)}.vxe-button{position:relative;text-align:center;background-color:var(--vxe-button-default-background-color);outline:0;font-size:var(--vxe-font-size);max-width:var(--vxe-button-max-width);line-height:1.5;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;transition:border .2s ease-in-out}.vxe-button:not(.is--disabled){color:var(--vxe-font-color);cursor:pointer}.vxe-button.is--loading{cursor:progress}.vxe-button.is--loading:before{content:"";position:absolute;left:-1px;top:-1px;right:-1px;bottom:-1px;border-radius:inherit;background-color:hsla(0,0%,100%,.35);pointer-events:none}.vxe-button.is--disabled{color:var(--vxe-font-disabled-color)}.vxe-button.is--disabled:not(.is--loading){cursor:no-drop}.vxe-button.type--text{text-decoration:none;border:0;padding:.1em .5em;background-color:transparent}.vxe-button.type--text:not(.is--disabled):focus{color:var(--vxe-font-darken-color)}.vxe-button.type--text:not(.is--disabled):hover{color:var(--vxe-primary-lighten-color)}.vxe-button.type--text.theme--primary{color:var(--vxe-primary-color)}.vxe-button.type--text.theme--primary:not(.is--disabled):focus{color:var(--vxe-primary-darken-color)}.vxe-button.type--text.theme--primary:not(.is--disabled):hover{color:var(--vxe-primary-lighten-color)}.vxe-button.type--text.theme--primary.is--disabled{color:var(--vxe-primary-disabled-color)}.vxe-button.type--text.theme--success{color:var(--vxe-success-color)}.vxe-button.type--text.theme--success:not(.is--disabled):focus{color:var(--vxe-success-darken-color)}.vxe-button.type--text.theme--success:not(.is--disabled):hover{color:var(--vxe-success-lighten-color)}.vxe-button.type--text.theme--success.is--disabled{color:var(--vxe-success-disabled-color)}.vxe-button.type--text.theme--info{color:var(--vxe-info-color)}.vxe-button.type--text.theme--info:not(.is--disabled):focus{color:var(--vxe-info-darken-color)}.vxe-button.type--text.theme--info:not(.is--disabled):hover{color:var(--vxe-info-lighten-color)}.vxe-button.type--text.theme--info.is--disabled{color:var(--vxe-info-disabled-color)}.vxe-button.type--text.theme--warning{color:var(--vxe-warning-color)}.vxe-button.type--text.theme--warning:not(.is--disabled):focus{color:var(--vxe-warning-darken-color)}.vxe-button.type--text.theme--warning:not(.is--disabled):hover{color:var(--vxe-warning-lighten-color)}.vxe-button.type--text.theme--warning.is--disabled{color:var(--vxe-warning-disabled-color)}.vxe-button.type--text.theme--danger{color:var(--vxe-danger-color)}.vxe-button.type--text.theme--danger:not(.is--disabled):focus{color:var(--vxe-danger-darken-color)}.vxe-button.type--text.theme--danger:not(.is--disabled):hover{color:var(--vxe-danger-lighten-color)}.vxe-button.type--text.theme--danger.is--disabled{color:var(--vxe-danger-disabled-color)}.vxe-button.type--text.theme--perfect,.vxe-button.type--text.theme--perfect.is--disabled,.vxe-button.type--text.theme--perfect:not(.is--disabled):focus,.vxe-button.type--text.theme--perfect:not(.is--disabled):hover{color:var(--vxe-table-header-background-color)}.vxe-button.type--button{font-family:inherit;height:var(--vxe-button-height-default);line-height:1;border:1px solid var(--vxe-input-border-color)}.vxe-button.type--button.is--round{border-radius:var(--vxe-button-round-border-radius-default)}.vxe-button.type--button:not(.is--round){border-radius:var(--vxe-border-radius)}.vxe-button.type--button.is--circle{padding:0 .5em;min-width:var(--vxe-button-height-default);border-radius:50%}.vxe-button.type--button:not(.is--circle){padding:0 1em}.vxe-button.type--button:not(.is--disabled):hover{color:var(--vxe-primary-lighten-color)}.vxe-button.type--button:not(.is--disabled):focus{border-color:var(--vxe-primary-color)}.vxe-button.type--button:not(.is--disabled):active{color:var(--vxe-primary-darken-color);border-color:var(--vxe-primary-darken-color);background-color:var(--vxe-button-default-background-color)}.vxe-button.type--button.theme--primary{color:#fff}.vxe-button.type--button.theme--primary:not(.is--disabled){border-color:var(--vxe-primary-color);background-color:var(--vxe-primary-color)}.vxe-button.type--button.theme--primary:not(.is--disabled):hover{color:#fff;background-color:var(--vxe-primary-lighten-color);border-color:var(--vxe-primary-lighten-color)}.vxe-button.type--button.theme--primary:not(.is--disabled):active{color:#fff;background-color:var(--vxe-primary-darken-color);border-color:var(--vxe-primary-darken-color)}.vxe-button.type--button.theme--primary.is--disabled{border-color:var(--vxe-primary-disabled-color);background-color:var(--vxe-primary-disabled-color)}.vxe-button.type--button.theme--primary.is--loading{border-color:var(--vxe-primary-color);background-color:var(--vxe-primary-color)}.vxe-button.type--button.theme--success{color:#fff}.vxe-button.type--button.theme--success:not(.is--disabled){border-color:var(--vxe-success-color);background-color:var(--vxe-success-color)}.vxe-button.type--button.theme--success:not(.is--disabled):hover{color:#fff;background-color:var(--vxe-success-lighten-color);border-color:var(--vxe-success-lighten-color)}.vxe-button.type--button.theme--success:not(.is--disabled):active{color:#fff;background-color:var(--vxe-success-darken-color);border-color:var(--vxe-success-darken-color)}.vxe-button.type--button.theme--success.is--disabled{border-color:var(--vxe-success-disabled-color);background-color:var(--vxe-success-disabled-color)}.vxe-button.type--button.theme--success.is--loading{border-color:var(--vxe-success-color);background-color:var(--vxe-success-color)}.vxe-button.type--button.theme--info{color:#fff}.vxe-button.type--button.theme--info:not(.is--disabled){border-color:var(--vxe-info-color);background-color:var(--vxe-info-color)}.vxe-button.type--button.theme--info:not(.is--disabled):hover{color:#fff;background-color:var(--vxe-info-lighten-color);border-color:var(--vxe-info-lighten-color)}.vxe-button.type--button.theme--info:not(.is--disabled):active{color:#fff;background-color:var(--vxe-info-darken-color);border-color:var(--vxe-info-darken-color)}.vxe-button.type--button.theme--info.is--disabled{border-color:var(--vxe-info-disabled-color);background-color:var(--vxe-info-disabled-color)}.vxe-button.type--button.theme--info.is--loading{border-color:var(--vxe-info-color);background-color:var(--vxe-info-color)}.vxe-button.type--button.theme--warning{color:#fff}.vxe-button.type--button.theme--warning:not(.is--disabled){border-color:var(--vxe-warning-color);background-color:var(--vxe-warning-color)}.vxe-button.type--button.theme--warning:not(.is--disabled):hover{color:#fff;background-color:var(--vxe-warning-lighten-color);border-color:var(--vxe-warning-lighten-color)}.vxe-button.type--button.theme--warning:not(.is--disabled):active{color:#fff;background-color:var(--vxe-warning-darken-color);border-color:var(--vxe-warning-darken-color)}.vxe-button.type--button.theme--warning.is--disabled{border-color:var(--vxe-warning-disabled-color);background-color:var(--vxe-warning-disabled-color)}.vxe-button.type--button.theme--warning.is--loading{border-color:var(--vxe-warning-color);background-color:var(--vxe-warning-color)}.vxe-button.type--button.theme--danger{color:#fff}.vxe-button.type--button.theme--danger:not(.is--disabled){border-color:var(--vxe-danger-color);background-color:var(--vxe-danger-color)}.vxe-button.type--button.theme--danger:not(.is--disabled):hover{color:#fff;background-color:var(--vxe-danger-lighten-color);border-color:var(--vxe-danger-lighten-color)}.vxe-button.type--button.theme--danger:not(.is--disabled):active{color:#fff;background-color:var(--vxe-danger-darken-color);border-color:var(--vxe-danger-darken-color)}.vxe-button.type--button.theme--danger.is--disabled{border-color:var(--vxe-danger-disabled-color);background-color:var(--vxe-danger-disabled-color)}.vxe-button.type--button.theme--danger.is--loading{border-color:var(--vxe-danger-color);background-color:var(--vxe-danger-color)}.vxe-button.type--button.theme--perfect{color:var(--vxe-font-color)}.vxe-button.type--button.theme--perfect:not(.is--disabled){border-color:var(--vxe-table-header-background-color);background-color:var(--vxe-table-header-background-color)}.vxe-button.type--button.theme--perfect:not(.is--disabled):active,.vxe-button.type--button.theme--perfect:not(.is--disabled):hover{color:var(--vxe-font-color);background-color:var(--vxe-table-header-background-color);border-color:var(--vxe-table-header-background-color)}.vxe-button.type--button.theme--perfect.is--disabled,.vxe-button.type--button.theme--perfect.is--loading{border-color:var(--vxe-table-header-background-color);background-color:var(--vxe-table-header-background-color)}.vxe-button.size--medium{font-size:var(--vxe-font-size-medium)}.vxe-button.size--medium.type--button{height:var(--vxe-button-height-medium)}.vxe-button.size--medium.type--button.is--circle{min-width:var(--vxe-button-height-medium)}.vxe-button.size--medium.type--button.is--round{border-radius:var(--vxe-button-round-border-radius-medium)}.vxe-button.size--medium .vxe-button--icon,.vxe-button.size--medium .vxe-button--loading-icon{min-width:var(--vxe-font-size-medium)}.vxe-button.size--small{font-size:var(--vxe-font-size-small)}.vxe-button.size--small.type--button{height:var(--vxe-button-height-small)}.vxe-button.size--small.type--button.is--circle{min-width:var(--vxe-button-height-small)}.vxe-button.size--small.type--button.is--round{border-radius:var(--vxe-button-round-border-radius-small)}.vxe-button.size--small .vxe-button--icon,.vxe-button.size--small .vxe-button--loading-icon{min-width:var(--vxe-font-size-small)}.vxe-button.size--mini{font-size:var(--vxe-font-size-mini)}.vxe-button.size--mini.type--button{height:var(--vxe-button-height-mini)}.vxe-button.size--mini.type--button.is--circle{min-width:var(--vxe-button-height-mini)}.vxe-button.size--mini.type--button.is--round{border-radius:var(--vxe-button-round-border-radius-mini)}.vxe-button.size--mini .vxe-button--icon,.vxe-button.size--mini .vxe-button--loading-icon{min-width:var(--vxe-font-size-mini)}.vxe-button+.vxe-button--dropdown,.vxe-button+.vxe-button-wrapper,.vxe-button+.vxe-button.type--button,.vxe-button-wrapper+.vxe-button--dropdown,.vxe-button-wrapper+.vxe-button-wrapper,.vxe-button-wrapper+.vxe-button.type--button,.vxe-input+.vxe-button--dropdown,.vxe-input+.vxe-button-wrapper,.vxe-input+.vxe-button.type--button{margin-left:12px}.vxe-button--icon,.vxe-button--loading-icon{min-width:var(--vxe-font-size)}.vxe-button--icon+.vxe-button--content,.vxe-button--loading-icon+.vxe-button--content{margin-left:4px}.vxe-button--dropdown,.vxe-button--wrapper{display:inline-block}.vxe-button--dropdown{position:relative}.vxe-button--dropdown+.vxe-button--dropdown,.vxe-button--dropdown+.vxe-button-wrapper,.vxe-button--dropdown+.vxe-button.type--button{margin-left:12px}.vxe-button--dropdown>.vxe-button.type--button.theme--danger,.vxe-button--dropdown>.vxe-button.type--button.theme--info,.vxe-button--dropdown>.vxe-button.type--button.theme--primary,.vxe-button--dropdown>.vxe-button.type--button.theme--success,.vxe-button--dropdown>.vxe-button.type--button.theme--warning{color:#fff}.vxe-button--dropdown>.vxe-button.type--button.theme--perfect{color:var(--vxe-font-color)}.vxe-button--dropdown.is--active>.vxe-button.type--text.theme--primary,.vxe-button--dropdown.is--active>.vxe-button:not(.is--disabled){color:var(--vxe-primary-lighten-color)}.vxe-button--dropdown.is--active>.vxe-button.type--text.theme--success{color:var(--vxe-success-lighten-color)}.vxe-button--dropdown.is--active>.vxe-button.type--text.theme--info{color:var(--vxe-info-lighten-color)}.vxe-button--dropdown.is--active>.vxe-button.type--text.theme--warning{color:var(--vxe-warning-lighten-color)}.vxe-button--dropdown.is--active>.vxe-button.type--text.theme--danger{color:var(--vxe-danger-lighten-color)}.vxe-button--dropdown.is--active>.vxe-button.type--text.theme--perfect{color:var(--vxe-table-header-background-color)}.vxe-button--dropdown.is--active>.vxe-button.type--button.theme--primary{color:#fff;background-color:var(--vxe-primary-lighten-color);border-color:var(--vxe-primary-lighten-color)}.vxe-button--dropdown.is--active>.vxe-button.type--button.theme--success{color:#fff;background-color:var(--vxe-success-lighten-color);border-color:var(--vxe-success-lighten-color)}.vxe-button--dropdown.is--active>.vxe-button.type--button.theme--info{color:#fff;background-color:var(--vxe-info-lighten-color);border-color:var(--vxe-info-lighten-color)}.vxe-button--dropdown.is--active>.vxe-button.type--button.theme--warning{color:#fff;background-color:var(--vxe-warning-lighten-color);border-color:var(--vxe-warning-lighten-color)}.vxe-button--dropdown.is--active>.vxe-button.type--button.theme--danger{color:#fff;background-color:var(--vxe-danger-lighten-color);border-color:var(--vxe-danger-lighten-color)}.vxe-button--dropdown.is--active>.vxe-button.type--button.theme--perfect{color:var(--vxe-font-color);background-color:var(--vxe-table-header-background-color);border-color:var(--vxe-table-header-background-color)}.vxe-button--dropdown.is--active .vxe-button--dropdown-arrow{transform:rotate(180deg)}.vxe-button--dropdown-arrow{display:inline-block;font-size:12px;margin-left:4px;transition:transform .2s ease-in-out}.vxe-button--dropdown-panel{display:none;position:absolute;right:0;padding:4px 0}.vxe-button--dropdown-panel.animat--leave{display:block;opacity:0;transform:scaleY(.5);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1);transform-origin:center top;backface-visibility:hidden;transform-style:preserve-3d}.vxe-button--dropdown-panel.animat--leave[placement=top]{transform-origin:center bottom}.vxe-button--dropdown-panel.animat--enter{opacity:1;transform:scaleY(1)}.vxe-button--dropdown-wrapper{padding:5px;background-color:var(--vxe-button-dropdown-panel-background-color);border-radius:var(--vxe-border-radius);border:1px solid var(--vxe-input-border-color);box-shadow:0 1px 6px rgba(0,0,0,.2)}.vxe-button--dropdown-wrapper>.vxe-button.type--button,.vxe-button--dropdown-wrapper>.vxe-button.type--text{display:block;width:100%;border:0;margin:.4em 0 0 0}.vxe-button--dropdown-wrapper>.vxe-button.type--text{padding:2px 8px}.vxe-button--dropdown-wrapper>.vxe-button:first-child{margin-top:0}.vxe-button--dropdown-wrapper>.vxe-button:last-child{margin-bottom:0}.vxe-modal--wrapper{display:none;position:fixed;top:0;left:0;line-height:1.5;width:calc(100% + 18px);height:calc(100% + 18px);color:var(--vxe-font-color);font-family:var(--vxe-font-family);transition:top .4s ease-in-out}.vxe-modal--wrapper.is--active{display:block}.vxe-modal--wrapper.is--visible.is--mask:before{background-color:rgba(0,0,0,.5)}.vxe-modal--wrapper.is--visible.type--message .vxe-modal--box{opacity:1;transform:translateY(0)}.vxe-modal--wrapper.is--visible .vxe-modal--box{opacity:1;visibility:visible}.vxe-modal--wrapper.is--loading .vxe-modal--footer,.vxe-modal--wrapper.is--loading .vxe-modal--header{position:relative;border-bottom-color:var(--vxe-loading-background-color)}.vxe-modal--wrapper.is--loading .vxe-modal--footer:before,.vxe-modal--wrapper.is--loading .vxe-modal--header:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:var(--vxe-loading-background-color)}.vxe-modal--wrapper:not(.lock--view){pointer-events:none}.vxe-modal--wrapper:not(.type--message).lock--scroll{overflow:hidden}.vxe-modal--wrapper:not(.type--message):not(.lock--scroll){overflow:auto}.vxe-modal--wrapper.is--mask:before,.vxe-modal--wrapper.lock--view:before{content:"";position:fixed;top:0;left:0;width:100%;height:100%;z-index:-1;pointer-events:auto}.vxe-modal--wrapper.is--mask:before{background-color:transparent}.vxe-modal--wrapper.is--animat.is--mask:before{transition:background-color .2s ease-in-out}.vxe-modal--wrapper.is--animat.type--message .vxe-modal--box:not(.is--drag){transition:all .4s ease-out}.vxe-modal--wrapper.type--alert .vxe-modal--body,.vxe-modal--wrapper.type--confirm .vxe-modal--body,.vxe-modal--wrapper.type--message .vxe-modal--body{white-space:normal;word-break:break-word}.vxe-modal--wrapper.type--message{text-align:center}.vxe-modal--wrapper.type--message .vxe-modal--box{display:inline-block;padding:2px 0;margin-top:0;width:auto;box-shadow:0 0 8px 0 rgba(0,0,0,.1);opacity:0;transform:translateY(-100%)}.vxe-modal--wrapper.type--message .vxe-modal--box .vxe-modal--body:after{content:"";display:block;clear:both;height:0;overflow:hidden;visibility:hidden}.vxe-modal--wrapper.type--message .vxe-modal--box .vxe-modal--content{max-width:800px;float:left}.vxe-modal--wrapper.type--message .vxe-modal--status-wrapper{font-size:1.4em;padding-left:10px}.vxe-modal--wrapper.type--alert .vxe-modal--box,.vxe-modal--wrapper.type--confirm .vxe-modal--box,.vxe-modal--wrapper.type--modal .vxe-modal--box{display:flex;flex-direction:column;position:fixed;left:50%;top:0;box-shadow:0 0 10px 0 rgba(0,0,0,.2)}.vxe-modal--wrapper.type--alert .vxe-modal--body,.vxe-modal--wrapper.type--alert .vxe-modal--body .vxe-modal--content,.vxe-modal--wrapper.type--confirm .vxe-modal--body,.vxe-modal--wrapper.type--confirm .vxe-modal--body .vxe-modal--content,.vxe-modal--wrapper.type--modal .vxe-modal--body,.vxe-modal--wrapper.type--modal .vxe-modal--body .vxe-modal--content{overflow:auto}.vxe-modal--wrapper.type--alert .vxe-modal--status-wrapper,.vxe-modal--wrapper.type--confirm .vxe-modal--status-wrapper{font-size:1.6em;padding-left:10px}.vxe-modal--wrapper .vxe-modal--box{visibility:hidden;width:420px;background-color:var(--vxe-modal-body-background-color);border-radius:var(--vxe-border-radius);border:1px solid var(--vxe-modal-border-color);text-align:left;pointer-events:auto;opacity:0}.vxe-modal--wrapper .vxe-modal--box.is--drag{cursor:move}.vxe-modal--wrapper .vxe-modal--box.is--drag .vxe-modal--body:after,.vxe-modal--wrapper .vxe-modal--box.is--drag .vxe-modal--footer:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%}.vxe-modal--wrapper .vxe-modal--box.is--drag .vxe-modal--body,.vxe-modal--wrapper .vxe-modal--box.is--drag .vxe-modal--body .vxe-modal--content{overflow:hidden}.vxe-modal--wrapper.status--info .vxe-modal--status-wrapper{color:var(--vxe-info-color)}.vxe-modal--wrapper.status--question .vxe-modal--status-wrapper,.vxe-modal--wrapper.status--warning .vxe-modal--status-wrapper{color:var(--vxe-warning-color)}.vxe-modal--wrapper.status--success .vxe-modal--status-wrapper{color:var(--vxe-success-color)}.vxe-modal--wrapper.status--error .vxe-modal--status-wrapper{color:var(--vxe-danger-color)}.vxe-modal--wrapper.status--loading .vxe-modal--status-wrapper{color:var(--vxe-font-disabled-color)}.vxe-modal--wrapper .vxe-modal--status-wrapper{flex-shrink:0;display:flex;align-items:center}.vxe-modal--wrapper .vxe-modal--content{flex-grow:1;padding:.8em 1em;white-space:pre-line}.vxe-modal--wrapper .vxe-modal--body,.vxe-modal--wrapper .vxe-modal--footer,.vxe-modal--wrapper .vxe-modal--header{position:relative}.vxe-modal--wrapper .vxe-modal--body{display:flex;flex-grow:1}.vxe-modal--wrapper .vxe-modal--header{display:flex;flex-direction:row;flex-shrink:0;font-size:1.1em;font-weight:700;border-bottom:1px solid var(--vxe-modal-border-color);background-color:var(--vxe-modal-header-background-color);border-radius:var(--vxe-border-radius) var(--vxe-border-radius) 0 0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vxe-modal--wrapper .vxe-modal--header.is--draggable .vxe-modal--header-title{cursor:move}.vxe-modal--wrapper .vxe-modal--header.is--ellipsis .vxe-modal--header-title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vxe-modal--wrapper .vxe-modal--header-title{flex-grow:1;padding:.6em 0 .6em 1em}.vxe-modal--wrapper .vxe-modal--header-right{flex-shrink:0;padding:.6em 1em .6em 0}.vxe-modal--wrapper .vxe-modal--close-btn,.vxe-modal--wrapper .vxe-modal--zoom-btn{cursor:pointer;margin-left:.6em}.vxe-modal--wrapper .vxe-modal--close-btn:hover,.vxe-modal--wrapper .vxe-modal--zoom-btn:hover{color:var(--vxe-primary-color)}.vxe-modal--wrapper .vxe-modal--footer{flex-shrink:0;text-align:right;padding:.4em 1em .8em 1em}.vxe-modal--wrapper.is--maximize .vxe-modal--box .vxe-modal--header{cursor:default}.vxe-modal--wrapper.is--maximize .vxe-modal--resize .sb-resize,.vxe-modal--wrapper.is--maximize .vxe-modal--resize .selb-resize,.vxe-modal--wrapper.is--maximize .vxe-modal--resize .sest-resize,.vxe-modal--wrapper.is--maximize .vxe-modal--resize .st-resize,.vxe-modal--wrapper.is--maximize .vxe-modal--resize .swlb-resize,.vxe-modal--wrapper.is--maximize .vxe-modal--resize .swst-resize,.vxe-modal--wrapper.is--maximize .vxe-modal--resize .wl-resize,.vxe-modal--wrapper.is--maximize .vxe-modal--resize .wr-resize{display:none}.vxe-modal--wrapper .vxe-modal--resize .sb-resize,.vxe-modal--wrapper .vxe-modal--resize .selb-resize,.vxe-modal--wrapper .vxe-modal--resize .sest-resize,.vxe-modal--wrapper .vxe-modal--resize .st-resize,.vxe-modal--wrapper .vxe-modal--resize .swlb-resize,.vxe-modal--wrapper .vxe-modal--resize .swst-resize,.vxe-modal--wrapper .vxe-modal--resize .wl-resize,.vxe-modal--wrapper .vxe-modal--resize .wr-resize{position:absolute;z-index:100}.vxe-modal--wrapper .vxe-modal--resize .wl-resize,.vxe-modal--wrapper .vxe-modal--resize .wr-resize{width:8px;height:100%;top:0;cursor:w-resize}.vxe-modal--wrapper .vxe-modal--resize .wl-resize{left:-5px}.vxe-modal--wrapper .vxe-modal--resize .wr-resize{right:-5px}.vxe-modal--wrapper .vxe-modal--resize .selb-resize,.vxe-modal--wrapper .vxe-modal--resize .sest-resize,.vxe-modal--wrapper .vxe-modal--resize .swlb-resize,.vxe-modal--wrapper .vxe-modal--resize .swst-resize{width:10px;height:10px;z-index:101}.vxe-modal--wrapper .vxe-modal--resize .sest-resize,.vxe-modal--wrapper .vxe-modal--resize .swst-resize{top:-8px}.vxe-modal--wrapper .vxe-modal--resize .selb-resize,.vxe-modal--wrapper .vxe-modal--resize .swlb-resize{bottom:-8px}.vxe-modal--wrapper .vxe-modal--resize .sest-resize,.vxe-modal--wrapper .vxe-modal--resize .swlb-resize{cursor:sw-resize}.vxe-modal--wrapper .vxe-modal--resize .selb-resize,.vxe-modal--wrapper .vxe-modal--resize .swst-resize{cursor:se-resize}.vxe-modal--wrapper .vxe-modal--resize .swlb-resize,.vxe-modal--wrapper .vxe-modal--resize .swst-resize{left:-8px}.vxe-modal--wrapper .vxe-modal--resize .selb-resize,.vxe-modal--wrapper .vxe-modal--resize .sest-resize{right:-8px}.vxe-modal--wrapper .vxe-modal--resize .sb-resize,.vxe-modal--wrapper .vxe-modal--resize .st-resize{width:100%;height:8px;left:0;cursor:s-resize}.vxe-modal--wrapper .vxe-modal--resize .st-resize{top:-5px}.vxe-modal--wrapper .vxe-modal--resize .sb-resize{bottom:-5px}.vxe-modal--wrapper{font-size:var(--vxe-font-size)}.vxe-modal--wrapper.size--medium{font-size:var(--vxe-font-size-medium)}.vxe-modal--wrapper.size--small{font-size:var(--vxe-font-size-small)}.vxe-modal--wrapper.size--mini{font-size:var(--vxe-font-size-mini)}.vxe-drawer--wrapper{display:none;position:fixed;top:0;left:0;line-height:1.5;width:calc(100% + 18px);height:calc(100% + 18px);color:var(--vxe-font-color);font-family:var(--vxe-font-family)}.vxe-drawer--wrapper.is--active{display:block}.vxe-drawer--wrapper.is--visible.is--mask:before{background-color:rgba(0,0,0,.5)}.vxe-drawer--wrapper.is--visible.pos--left .vxe-drawer--box{left:0}.vxe-drawer--wrapper.is--visible.pos--right .vxe-drawer--box{right:0}.vxe-drawer--wrapper.is--visible.pos--top .vxe-drawer--box{top:0}.vxe-drawer--wrapper.is--visible.pos--bottom .vxe-drawer--box{bottom:0}.vxe-drawer--wrapper.is--visible .vxe-drawer--box{opacity:1}.vxe-drawer--wrapper.is--loading .vxe-drawer--footer,.vxe-drawer--wrapper.is--loading .vxe-drawer--header{position:relative;border-bottom-color:var(--vxe-loading-background-color)}.vxe-drawer--wrapper.is--loading .vxe-drawer--footer:before,.vxe-drawer--wrapper.is--loading .vxe-drawer--header:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:var(--vxe-loading-background-color)}.vxe-drawer--wrapper:not(.lock--view){pointer-events:none}.vxe-drawer--wrapper.lock--scroll{overflow:hidden}.vxe-drawer--wrapper:not(.lock--scroll){overflow:auto}.vxe-drawer--wrapper.is--mask:before,.vxe-drawer--wrapper.lock--view:before{content:"";position:fixed;top:0;left:0;width:100%;height:100%;z-index:-1;pointer-events:auto}.vxe-drawer--wrapper.is--mask:before{background-color:transparent;transition:background-color .2s ease-in-out}.vxe-drawer--wrapper.pos--left .vxe-drawer--box{top:0;left:-100%;box-shadow:2px 0 10px 0 rgba(0,0,0,.2)}.vxe-drawer--wrapper.pos--right .vxe-drawer--box{top:0;right:-100%;box-shadow:-2px 0 10px 0 rgba(0,0,0,.2)}.vxe-drawer--wrapper.pos--top .vxe-drawer--box{top:-100%;left:0;box-shadow:0 2px 10px 0 rgba(0,0,0,.2)}.vxe-drawer--wrapper.pos--bottom .vxe-drawer--box{bottom:-100%;left:0;box-shadow:0 -2px 10px 0 rgba(0,0,0,.2)}.vxe-drawer--wrapper.pos--left .vxe-drawer--box,.vxe-drawer--wrapper.pos--right .vxe-drawer--box{width:30%;height:100%}.vxe-drawer--wrapper.pos--bottom .vxe-drawer--box,.vxe-drawer--wrapper.pos--top .vxe-drawer--box{width:100%;height:30%}.vxe-drawer--wrapper .vxe-drawer--box{display:flex;flex-direction:column;position:fixed;background-color:var(--vxe-drawer-body-background-color);border:1px solid var(--vxe-drawer-border-color);text-align:left;pointer-events:auto;opacity:0;transition:all .3s ease-in-out}.vxe-drawer--wrapper .vxe-drawer--content{flex-grow:1;padding:.8em 1em;white-space:pre-line}.vxe-drawer--wrapper .vxe-drawer--body,.vxe-drawer--wrapper .vxe-drawer--footer,.vxe-drawer--wrapper .vxe-drawer--header{position:relative}.vxe-drawer--wrapper .vxe-drawer--body{display:flex;flex-grow:1;overflow:auto}.vxe-drawer--wrapper .vxe-drawer--body .vxe-drawer--content{overflow:auto}.vxe-drawer--wrapper .vxe-drawer--header{display:flex;flex-direction:row;flex-shrink:0;font-size:1.1em;font-weight:700;border-bottom:1px solid var(--vxe-drawer-border-color);background-color:var(--vxe-drawer-header-background-color)}.vxe-drawer--wrapper .vxe-drawer--header.is--ellipsis .vxe-drawer--header-title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vxe-drawer--wrapper .vxe-drawer--header-title{flex-grow:1;padding:.6em 0 .6em 1em}.vxe-drawer--wrapper .vxe-drawer--header-right{flex-shrink:0;padding:.6em 1em .6em 0}.vxe-drawer--wrapper .vxe-drawer--close-btn{cursor:pointer;margin-left:.6em}.vxe-drawer--wrapper .vxe-drawer--close-btn:hover{color:var(--vxe-primary-color)}.vxe-drawer--wrapper .vxe-drawer--footer{flex-shrink:0;text-align:right;padding:.4em 1em .8em 1em}.vxe-drawer--wrapper{font-size:var(--vxe-font-size)}.vxe-drawer--wrapper.size--medium{font-size:var(--vxe-font-size-medium)}.vxe-drawer--wrapper.size--small{font-size:var(--vxe-font-size-small)}.vxe-drawer--wrapper.size--mini{font-size:var(--vxe-font-size-mini)}.vxe-table--tooltip-wrapper{display:none;position:absolute;top:-100%;left:-100%;font-size:12px;max-width:600px;border-radius:var(--vxe-border-radius);padding:8px 12px;white-space:normal;word-break:break-word;box-shadow:2px 2px 4px -2px rgba(0,0,0,.2);color:var(--vxe-font-color);font-family:var(--vxe-font-family)}.vxe-table--tooltip-wrapper:not(.is--enterable){pointer-events:none}.vxe-table--tooltip-wrapper.is--arrow .vxe-table--tooltip-arrow,.vxe-table--tooltip-wrapper.is--visible{display:block}.vxe-table--tooltip-wrapper.is--enterable:after{content:"";position:absolute;left:0;width:100%;height:6px;background-color:transparent}.vxe-table--tooltip-wrapper .vxe-table--tooltip-content{white-space:pre-line}.vxe-table--tooltip-wrapper .vxe-table--tooltip-arrow{display:none;position:absolute;border-color:transparent;border-width:6px;border-style:solid;left:50%;transform:translateX(-6px)}.vxe-table--tooltip-wrapper .vxe-table--tooltip-arrow:before{content:"";position:absolute;border-color:transparent;border-width:5px;border-style:solid;left:-5px}.vxe-table--tooltip-wrapper.placement--top.is--enterable:after{bottom:-6px}.vxe-table--tooltip-wrapper.placement--top .vxe-table--tooltip-arrow{bottom:-12px}.vxe-table--tooltip-wrapper.placement--top .vxe-table--tooltip-arrow:before{top:-7px}.vxe-table--tooltip-wrapper.placement--bottom.is--enterable:after{top:-6px}.vxe-table--tooltip-wrapper.placement--bottom .vxe-table--tooltip-arrow{top:-12px}.vxe-table--tooltip-wrapper.placement--bottom .vxe-table--tooltip-arrow:before{top:-4px}.vxe-table--tooltip-wrapper.theme--light{background-color:var(--vxe-tooltip-light-background-color);border:1px solid var(--vxe-input-border-color)}.vxe-table--tooltip-wrapper.theme--light.placement--top .vxe-table--tooltip-arrow{border-top-color:var(--vxe-input-border-color)}.vxe-table--tooltip-wrapper.theme--light.placement--top .vxe-table--tooltip-arrow:before{border-top-color:var(--vxe-tooltip-light-background-color)}.vxe-table--tooltip-wrapper.theme--light.placement--bottom .vxe-table--tooltip-arrow{border-bottom-color:var(--vxe-input-border-color)}.vxe-table--tooltip-wrapper.theme--light.placement--bottom .vxe-table--tooltip-arrow:before{border-bottom-color:var(--vxe-tooltip-light-background-color)}.vxe-table--tooltip-wrapper.theme--dark{background:var(--vxe-tooltip-dark-background-color);color:var(--vxe-tooltip-dark-color)}.vxe-table--tooltip-wrapper.theme--dark.placement--top .vxe-table--tooltip-arrow,.vxe-table--tooltip-wrapper.theme--dark.placement--top .vxe-table--tooltip-arrow:before{border-top-color:var(--vxe-tooltip-dark-background-color)}.vxe-table--tooltip-wrapper.theme--dark.placement--bottom .vxe-table--tooltip-arrow,.vxe-table--tooltip-wrapper.theme--dark.placement--bottom .vxe-table--tooltip-arrow:before{border-bottom-color:var(--vxe-tooltip-dark-background-color)}.vxe-form--item .vxe-default-input[type=reset]:hover,.vxe-form--item .vxe-default-input[type=submit]:hover{color:var(--vxe-primary-lighten-color);border-color:var(--vxe-primary-lighten-color)}.vxe-form{position:relative;font-size:var(--vxe-font-size);color:var(--vxe-font-color);font-family:var(--vxe-font-family);background-color:var(--vxe-form-background-color);text-align:left}.vxe-form--item-row{display:flex;flex-direction:row;flex-wrap:wrap}.vxe-form--item-row>.vxe-form--item-col_1{width:4.16667%}.vxe-form--item-row>.vxe-form--item-col_2{width:8.33333%}.vxe-form--item-row>.vxe-form--item-col_3{width:12.5%}.vxe-form--item-row>.vxe-form--item-col_4{width:16.66667%}.vxe-form--item-row>.vxe-form--item-col_5{width:20.83333%}.vxe-form--item-row>.vxe-form--item-col_6{width:25%}.vxe-form--item-row>.vxe-form--item-col_7{width:29.16667%}.vxe-form--item-row>.vxe-form--item-col_8{width:33.33333%}.vxe-form--item-row>.vxe-form--item-col_9{width:37.5%}.vxe-form--item-row>.vxe-form--item-col_10{width:41.66667%}.vxe-form--item-row>.vxe-form--item-col_11{width:45.83333%}.vxe-form--item-row>.vxe-form--item-col_12{width:50%}.vxe-form--item-row>.vxe-form--item-col_13{width:54.16667%}.vxe-form--item-row>.vxe-form--item-col_14{width:58.33333%}.vxe-form--item-row>.vxe-form--item-col_15{width:62.5%}.vxe-form--item-row>.vxe-form--item-col_16{width:66.66667%}.vxe-form--item-row>.vxe-form--item-col_17{width:70.83333%}.vxe-form--item-row>.vxe-form--item-col_18{width:75%}.vxe-form--item-row>.vxe-form--item-col_19{width:79.16667%}.vxe-form--item-row>.vxe-form--item-col_20{width:83.33333%}.vxe-form--item-row>.vxe-form--item-col_21{width:87.5%}.vxe-form--item-row>.vxe-form--item-col_22{width:91.66667%}.vxe-form--item-row>.vxe-form--item-col_23{width:95.83333%}.vxe-form--item-row>.vxe-form--item-col_24{width:100%}.vxe-form-slots{display:none}.vxe-form--item-content,.vxe-form--item-trigger-node{display:inline-block;vertical-align:middle}.vxe-form--item-title{display:flex;flex-direction:row;max-width:320px;padding-right:.8em}.vxe-form--item-title.is--ellipsis .vxe-form--item-title-content{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vxe-form--item-title .vxe-form--item-title-postfix,.vxe-form--item-title .vxe-form--item-title-prefix,.vxe-form--item-title .vxe-form--item-title-suffix{flex-shrink:0}.vxe-form--item-title .vxe-form--item-title-prefix,.vxe-form--item-title .vxe-form--item-title-suffix{cursor:help;vertical-align:middle}.vxe-form--item-title .vxe-form--item-title-prefix{margin-right:.25em}.vxe-form--item-title .vxe-form--item-title-suffix{margin-left:.2em}.vxe-form--item-title .vxe-form--item-title-postfix{display:flex;align-items:center}.vxe-form--item-title .vxe-form--item-title-content{flex-grow:1}.vxe-form--item-title .vxe-form--item-title-label{vertical-align:middle}.vxe-form--item-trigger-node{font-size:12px;min-width:100px;color:#909399;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;cursor:pointer}.vxe-form--item-trigger-node .vxe-form--item-trigger-icon{display:inline-block;margin:0 .25em;transition:all .1s}.vxe-form--item-valid{position:absolute;width:100%;font-size:12px;line-height:1.2em;color:var(--vxe-form-validate-error-color);background-color:var(--vxe-form-validate-error-background-color);z-index:1;opacity:0;transform-origin:center top;transform:scaleY(0);transition:all .2s ease-in-out}.vxe-form .vxe-form--gather{display:inline-flex;flex-direction:row;flex-wrap:wrap;align-content:flex-start}.vxe-form .vxe-form--wrapper{display:flex;flex-direction:row;flex-wrap:wrap}.vxe-form .vxe-form--item{display:none;padding:.5em .8em .5em 0}.vxe-form .vxe-form--item.is--vertical{padding:.25em 0 .25em 0}.vxe-form .vxe-form--item.is--active:not(.is--hidden){display:inline-flex}.vxe-form--item.is--colon .vxe-form--item-title-postfix:after{content:":";font-weight:400;margin-left:.2em}.vxe-form--item.is--asterisk.is--required .vxe-form--item-title-content:before{content:"*";color:var(--vxe-form-validate-error-color);font-family:Verdana,Arial,Tahoma;margin-right:.2em;font-weight:400;vertical-align:middle}.vxe-form--item.is--vertical .vxe-form--item-inner{flex-direction:column;align-items:normal}.vxe-form--item.is--vertical .vxe-form--item-inner .vxe-form--item-title{height:2.2em;line-height:2.2em;padding-right:0;max-width:none}.vxe-form--item.is--vertical .vxe-form--item-inner .vxe-form--item-title-content{flex-grow:0}.vxe-form--item.is--span .vxe-default-input:not([type=submit]):not([type=reset]),.vxe-form--item.is--span .vxe-default-select,.vxe-form--item.is--span .vxe-default-textarea,.vxe-form--item.is--span .vxe-input,.vxe-form--item.is--span .vxe-select,.vxe-form--item.is--span .vxe-textarea{width:100%}.vxe-form--item.is--error .vxe-default-input,.vxe-form--item.is--error .vxe-default-input[type=search]:focus,.vxe-form--item.is--error .vxe-default-input[type=text]:focus,.vxe-form--item.is--error .vxe-default-select,.vxe-form--item.is--error .vxe-default-select:focus,.vxe-form--item.is--error .vxe-default-textarea,.vxe-form--item.is--error .vxe-default-textarea:focus,.vxe-form--item.is--error .vxe-input>.vxe-input--inner,.vxe-form--item.is--error .vxe-input>.vxe-input--inner:focus,.vxe-form--item.is--error .vxe-select,.vxe-form--item.is--error .vxe-select.is--active>.vxe-input .vxe-input--inner,.vxe-form--item.is--error .vxe-textarea>.vxe-textarea--inner,.vxe-form--item.is--error .vxe-textarea>.vxe-textarea--inner:focus{border-color:var(--vxe-form-validate-error-color)}.vxe-form--item.is--error .vxe-form--item-valid{opacity:1;transform:scaleY(1)}.vxe-form--item .vxe-form--item-inner{display:flex;flex-direction:row;align-items:center;flex-grow:1}.vxe-form--item .vxe-form--item-inner .vxe-form--item-title{flex-shrink:0}.vxe-form--item .vxe-form--item-inner .vxe-form--item-content{position:relative;flex-grow:1;word-break:break-all}.vxe-form--item .vxe-default-input,.vxe-form--item .vxe-default-select,.vxe-form--item .vxe-default-textarea{outline:0;border:1px solid var(--vxe-input-border-color);border-radius:var(--vxe-border-radius)}.vxe-form--item .vxe-default-input,.vxe-form--item .vxe-default-select{height:var(--vxe-button-height-default)}.vxe-form--item .vxe-default-input{padding:0 .8em}.vxe-form--item .vxe-default-textarea{height:calc(var(--vxe-button-height-default)*2);padding:.3em .6em}.vxe-form--item .vxe-default-input[type=number]{padding-right:.2em}.vxe-form--item .vxe-default-input[type=search],.vxe-form--item .vxe-default-input[type=text]{padding:0 1em}.vxe-form--item .vxe-default-input[type=search],.vxe-form--item .vxe-default-input[type=text],.vxe-form--item .vxe-default-select,.vxe-form--item .vxe-default-textarea{color:var(--vxe-font-color)}.vxe-form--item .vxe-default-input[type=search]:focus,.vxe-form--item .vxe-default-input[type=text]:focus,.vxe-form--item .vxe-default-select:focus,.vxe-form--item .vxe-default-textarea:focus{border:1px solid var(--vxe-primary-color)}.vxe-form--item .vxe-default-input[type=search][disabled],.vxe-form--item .vxe-default-input[type=text][disabled],.vxe-form--item .vxe-default-select[disabled],.vxe-form--item .vxe-default-textarea[disabled]{cursor:not-allowed;background-color:var(--vxe-input-disabled-background-color)}.vxe-form--item .vxe-default-input[type=reset],.vxe-form--item .vxe-default-input[type=submit]{line-height:calc(var(--vxe-button-height-default) - 2px);background-color:#fff;cursor:pointer}.vxe-form--item .vxe-default-input[type=reset]:active,.vxe-form--item .vxe-default-input[type=submit]:active{color:var(--vxe-primary-darken-color);border-color:var(--vxe-primary-darken-color)}.vxe-form--item .vxe-default-input[type=date]::-webkit-inner-spin-button{margin-top:6px}.vxe-form--item .vxe-default-input[type=date]::-webkit-inner-spin-button,.vxe-form--item .vxe-default-input[type=number]::-webkit-inner-spin-button{height:24px}.vxe-form--item .vxe-default-input::-moz-placeholder{color:var(--vxe-input-placeholder-color)}.vxe-form--item .vxe-default-input::placeholder{color:var(--vxe-input-placeholder-color)}.vxe-form--item .vxe-default-input[type=search],.vxe-form--item .vxe-default-input[type=text],.vxe-form--item .vxe-default-select,.vxe-form--item .vxe-default-textarea{width:180px}.vxe-form--item .vxe-default-textarea{resize:none;vertical-align:middle}.vxe-form--item .vxe-default-textarea::-moz-placeholder{color:var(--vxe-input-placeholder-color)}.vxe-form--item .vxe-default-textarea::placeholder{color:var(--vxe-input-placeholder-color)}.vxe-form .vxe-form--item-inner{min-height:var(--vxe-form-item-min-height-default)}.vxe-form .vxe-form--item-inner>.align--center{text-align:center}.vxe-form .vxe-form--item-inner>.align--left{text-align:left}.vxe-form .vxe-form--item-inner>.align--right{text-align:right}.vxe-form.size--medium{font-size:var(--vxe-font-size-medium)}.vxe-form.size--medium .vxe-form--item-inner{min-height:var(--vxe-form-item-min-height-medium)}.vxe-form.size--medium .vxe-default-input[type=reset],.vxe-form.size--medium .vxe-default-input[type=submit]{line-height:calc(var(--vxe-button-height-medium) - 2px)}.vxe-form.size--medium .vxe-default-input,.vxe-form.size--medium .vxe-default-select{height:var(--vxe-button-height-medium)}.vxe-form.size--medium .vxe-default-textarea{height:calc(var(--vxe-button-height-medium)*2)}.vxe-form.size--small{font-size:var(--vxe-font-size-small)}.vxe-form.size--small .vxe-form--item-inner{min-height:var(--vxe-form-item-min-height-small)}.vxe-form.size--small .vxe-default-input[type=reset],.vxe-form.size--small .vxe-default-input[type=submit]{line-height:calc(var(--vxe-button-height-small) - 2px)}.vxe-form.size--small .vxe-default-input,.vxe-form.size--small .vxe-default-select{height:var(--vxe-button-height-small)}.vxe-form.size--small .vxe-default-textarea{height:calc(var(--vxe-button-height-small)*2)}.vxe-form.size--mini{font-size:var(--vxe-font-size-mini)}.vxe-form.size--mini .vxe-form--item-inner{min-height:var(--vxe-form-item-min-height-mini)}.vxe-form.size--mini .vxe-default-input[type=reset],.vxe-form.size--mini .vxe-default-input[type=submit]{line-height:calc(var(--vxe-button-height-mini) - 2px)}.vxe-form.size--mini .vxe-default-input,.vxe-form.size--mini .vxe-default-select{height:var(--vxe-button-height-mini)}.vxe-form.size--mini .vxe-default-textarea{height:calc(var(--vxe-button-height-mini)*2)}.vxe-select{position:relative;display:inline-block;width:180px;color:var(--vxe-font-color);text-align:left}.vxe-select>.vxe-input .vxe-input--inner{cursor:pointer}.vxe-select.is--disabled>.vxe-input .vxe-input--inner{cursor:no-drop}.vxe-select.is--loading>.vxe-input .vxe-input--inner{cursor:progress}.vxe-select>.vxe-input{width:100%}.vxe-select>.vxe-input .vxe-input--suffix-icon{display:inline-block;transition:transform .2s ease-in-out}.vxe-select.is--active:not(.is--filter)>.vxe-input .vxe-input--inner{border:1px solid var(--vxe-primary-color)}.vxe-select-slots{display:none}.vxe-select--panel{display:none;position:absolute;left:0;padding:4px 0;color:var(--vxe-font-color);text-align:left}.vxe-select--panel:not(.is--transfer){min-width:100%}.vxe-select--panel.is--transfer{position:fixed}.vxe-select--panel.animat--leave{display:block;opacity:0;transform:scaleY(.5);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1);transform-origin:center top;backface-visibility:hidden}.vxe-select--panel.animat--leave[placement=top]{transform-origin:center bottom}.vxe-select--panel.animat--enter{opacity:1;transform:scaleY(1)}.vxe-select--panel-search{display:block}.vxe-select--panel-search .vxe-select-search--input{width:100%}.vxe-select--panel-wrapper{position:relative;border-radius:var(--vxe-border-radius);border:1px solid var(--vxe-table-popup-border-color);box-shadow:0 0 6px 2px rgba(0,0,0,.1);background-color:var(--vxe-select-panel-background-color)}.vxe-select--panel-header{border-bottom:1px solid var(--vxe-table-popup-border-color)}.vxe-select--panel-footer{border-top:1px solid var(--vxe-table-popup-border-color)}.vxe-select--panel-footer,.vxe-select--panel-header{padding:4px 0}.vxe-select-option--wrapper{position:relative;overflow-x:hidden;overflow-y:auto;padding:4px 0;max-height:200px}.vxe-optgroup .vxe-optgroup--title{padding:0 6px;color:var(--vxe-optgroup-title-color);font-size:12px}.vxe-optgroup--wrapper .vxe-select-option{padding:0 20px}.vxe-select-option{padding:0 .6em;max-width:600px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vxe-select-option.is--selected{font-weight:700;color:var(--vxe-primary-color)}.vxe-select-option:not(.is--disabled){cursor:pointer}.vxe-select-option:not(.is--disabled).is--hover{background-color:var(--vxe-select-option-hover-background-color)}.vxe-select-option.is--disabled{color:var(--vxe-font-disabled-color);cursor:no-drop}.vxe-select--search-icon{margin-right:.5em}.vxe-select--empty-placeholder,.vxe-select--search-loading{padding:0 .6em;text-align:center;color:var(--vxe-select-empty-color)}.vxe-select,.vxe-select--panel{font-size:var(--vxe-font-size)}.vxe-select--panel.size--medium,.vxe-select.size--medium{font-size:var(--vxe-font-size-medium)}.vxe-select--panel.size--small,.vxe-select.size--small{font-size:var(--vxe-font-size-small)}.vxe-select--panel.size--mini,.vxe-select.size--mini{font-size:var(--vxe-font-size-mini)}.vxe-select--panel .vxe-optgroup--title,.vxe-select--panel .vxe-select-option{height:var(--vxe-select-option-height-default)}.vxe-select--panel .vxe-optgroup--title,.vxe-select--panel .vxe-select--empty-placeholder,.vxe-select--panel .vxe-select--search-loading,.vxe-select--panel .vxe-select-option{line-height:var(--vxe-select-option-height-default)}.vxe-select--panel.size--medium .vxe-optgroup--title,.vxe-select--panel.size--medium .vxe-select-option{height:var(--vxe-select-option-height-medium)}.vxe-select--panel.size--medium .vxe-optgroup--title,.vxe-select--panel.size--medium .vxe-select--empty-placeholder,.vxe-select--panel.size--medium .vxe-select--search-loading,.vxe-select--panel.size--medium .vxe-select-option{line-height:var(--vxe-select-option-height-medium)}.vxe-select--panel.size--small .vxe-optgroup--title,.vxe-select--panel.size--small .vxe-select-option{height:var(--vxe-select-option-height-small)}.vxe-select--panel.size--small .vxe-optgroup--title,.vxe-select--panel.size--small .vxe-select--empty-placeholder,.vxe-select--panel.size--small .vxe-select--search-loading,.vxe-select--panel.size--small .vxe-select-option{line-height:var(--vxe-select-option-height-small)}.vxe-select--panel.size--mini .vxe-optgroup--title,.vxe-select--panel.size--mini .vxe-select-option{height:var(--vxe-select-option-height-mini)}.vxe-select--panel.size--mini .vxe-optgroup--title,.vxe-select--panel.size--mini .vxe-select--empty-placeholder,.vxe-select--panel.size--mini .vxe-select--search-loading,.vxe-select--panel.size--mini .vxe-select-option{line-height:var(--vxe-select-option-height-mini)}.vxe-switch{display:inline-block;color:var(--vxe-font-color);vertical-align:middle;padding:.4em;-webkit-user-select:none;-moz-user-select:none;user-select:none;text-align:center}.vxe-switch.is--animat .vxe-switch--button{transition:border-color .3s,background-color .3s}.vxe-switch.is--animat .vxe-switch--icon{transition:all .3s}.vxe-switch.is--on .vxe-switch--button{padding-right:1.7em;background-color:var(--vxe-switch-open-background-color)}.vxe-switch.is--on .vxe-switch--icon{left:100%;transform:translateX(-1.4em);color:var(--vxe-primary-color)}.vxe-switch.is--off .vxe-switch--button{padding-left:1.7em;background-color:var(--vxe-switch-close-background-color)}.vxe-switch.is--off .vxe-switch--icon{left:.2em;transform:translateX(0);color:var(--vxe-switch-close-background-color)}.vxe-switch.is--off .vxe-switch--label-on,.vxe-switch.is--on .vxe-switch--label-off{height:0;visibility:hidden;overflow:hidden}.vxe-switch.is--off .vxe-switch--label,.vxe-switch.is--on .vxe-switch--label{opacity:1}.vxe-switch:not(.is--disabled) .vxe-switch--button{cursor:pointer}.vxe-switch:not(.is--disabled) .vxe-switch--button:focus{box-shadow:0 0 .4em 0 var(--vxe-primary-color)}.vxe-switch.is--disabled .vxe-switch--button{cursor:no-drop}.vxe-switch.is--disabled.is--on .vxe-switch--button{background-color:var(--vxe-primary-lighten-color)}.vxe-switch.is--disabled.is--on .vxe-switch--icon{color:var(--vxe-primary-lighten-color)}.vxe-switch.is--disabled.is--off .vxe-switch--button{background-color:var(--vxe-switch-disabled-background-color)}.vxe-switch.is--disabled.is--off .vxe-switch--icon{color:var(--vxe-switch-disabled-background-color)}.vxe-switch .vxe-switch--button{display:block;position:relative;height:1.6em;line-height:1;min-width:3.2em;padding:0 .6em;border-radius:1em;border:0;outline:0}.vxe-switch .vxe-switch--label{opacity:0;display:block;color:var(--vxe-switch-font-color);font-size:.8em}.vxe-switch .vxe-switch--icon{position:absolute;top:.2em;left:0;width:1.2em;height:1.2em;line-height:1.4em;text-align:center;border-radius:50%;background-color:var(--vxe-switch-icon-background-color)}.vxe-switch .vxe-switch--label-icon{margin-right:.25em}.vxe-switch{font-size:var(--vxe-font-size)}.vxe-switch.size--medium{font-size:var(--vxe-font-size-medium)}.vxe-switch.size--small{font-size:var(--vxe-font-size-small)}.vxe-switch.size--mini{font-size:var(--vxe-font-size-mini)}.vxe-list{position:relative;display:block;padding:0;color:var(--vxe-font-color);direction:ltr}.vxe-list .vxe-list--virtual-wrapper{position:relative;overflow:auto}.vxe-list .vxe-list--y-space{width:0;float:left}.vxe-list .vxe-list--body,.vxe-list .vxe-list--virtual-wrapper{padding:0;margin:0;border:0;outline:0}.vxe-list--virtual-wrapper{height:100px}.vxe-pulldown{position:relative;display:inline-block}.vxe-pulldown,.vxe-pulldown--panel{color:var(--vxe-font-color);text-align:left}.vxe-pulldown--panel{display:none;position:absolute;left:0;padding:4px 0}.vxe-pulldown--panel:not(.is--transfer){min-width:100%}.vxe-pulldown--panel.is--transfer{position:fixed}.vxe-pulldown--panel.animat--leave{display:block;opacity:0;transform:scaleY(.5);transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .3s cubic-bezier(.23,1,.32,1);transform-origin:center top;backface-visibility:hidden}.vxe-pulldown--panel.animat--leave[placement=top]{transform-origin:center bottom}.vxe-pulldown--panel.animat--enter{opacity:1;transform:scaleY(1)}.vxe-pulldown--panel-wrapper{background-color:var(--vxe-pulldown-panel-background-color)}.vxe-pulldown,.vxe-pulldown--panel{font-size:var(--vxe-font-size)}.vxe-pulldown--panel.size--medium,.vxe-pulldown.size--medium{font-size:var(--vxe-font-size-medium)}.vxe-pulldown--panel.size--small,.vxe-pulldown.size--small{font-size:var(--vxe-font-size-small)}.vxe-pulldown--panel.size--mini,.vxe-pulldown.size--mini{font-size:var(--vxe-font-size-mini)}/* 暗黑模式通过 CSS 自定义变量，官方链接：https://element-plus.org/zh-CN/guide/dark-mode.html#%E9%80%9A%E8%BF%87-css */
html.dark {
  .el-table {
    /* 自定义表格选中高亮时当前行的背景颜色 */
    --el-table-current-row-bg-color: var(--el-fill-color-light);
  }
}

/**
 * @description 所有主题模式下的 Vxe Table CSS 变量
 * @description 用 Element Plus 的 CSS 变量来覆写 Vxe Table 的 CSS 变量，目的是使 Vxe Table 支持多主题模式且样式统一
 * @description 在此查阅所有可自定义的变量：https://github.com/x-extends/vxe-table/blob/master/styles/css-variable.scss
 */
:root {
  /* color */
  --vxe-font-color: var(--el-text-color-regular);
  --vxe-primary-color: var(--el-color-primary);
  --vxe-success-color: var(--el-color-success);
  --vxe-info-color: var(--el-color-info);
  --vxe-warning-color: var(--el-color-warning);
  --vxe-danger-color: var(--el-color-danger);
  --vxe-font-lighten-color: var(--el-text-color-primary);
  --vxe-primary-lighten-color: var(--el-color-primary-light-3);
  --vxe-success-lighten-color: var(--el-color-success-light-3);
  --vxe-info-lighten-color: var(--el-color-info-light-3);
  --vxe-warning-lighten-color: var(--el-color-warning-light-3);
  --vxe-danger-lighten-color: var(--el-color-danger-light-3);
  --vxe-font-darken-color: var(--el-text-color-secondary);
  --vxe-primary-darken-color: var(--el-color-primary-dark-2);
  --vxe-success-darken-color: var(--el-color-success-dark-2);
  --vxe-info-darken-color: var(--el-color-info-dark-2);
  --vxe-warning-darken-color: var(--el-color-warning-dark-2);
  --vxe-danger-darken-color: var(--el-color-danger-dark-2);
  --vxe-font-disabled-color: var(--el-text-color-disabled);
  --vxe-primary-disabled-color: var(--el-color-primary-light-5);
  --vxe-success-disabled-color: var(--el-color-success-light-5);
  --vxe-info-disabled-color: var(--el-color-info-light-5);
  --vxe-warning-disabled-color: var(--el-color-warning-light-5);
  --vxe-danger-disabled-color: var(--el-color-danger-light-5);

  /* input/radio/checkbox */
  --vxe-input-border-color: var(--el-border-color);
  --vxe-input-disabled-color: var(--el-text-color-disabled);
  --vxe-input-disabled-background-color: var(--el-fill-color-light);
  --vxe-input-placeholder-color: var(--el-text-color-placeholder);

  /* popup */
  --vxe-table-popup-border-color: var(--el-border-color);

  /* table */
  --vxe-table-header-font-color: var(--el-text-color-regular);
  --vxe-table-footer-font-color: var(--el-text-color-regular);
  --vxe-table-border-color: var(--el-border-color-lighter);
  --vxe-table-header-background-color: var(--el-bg-color);
  --vxe-table-body-background-color: var(--el-bg-color);
  --vxe-table-footer-background-color: var(--el-bg-color);
  --vxe-table-row-hover-background-color: var(--el-fill-color-light);
  --vxe-table-row-current-background-color: var(--el-fill-color-light);
  --vxe-table-row-hover-current-background-color: var(--el-fill-color-light);
  --vxe-table-checkbox-range-background-color: var(--el-fill-color-light);

  /* menu */
  --vxe-table-menu-background-color: var(--el-bg-color-overlay);

  /* loading */
  --vxe-loading-color: var(--el-color-primary);
  --vxe-loading-background-color: var(--el-mask-color);

  /* validate */
  --vxe-table-validate-error-color: var(--el-color-danger);

  /* toolbar */
  --vxe-toolbar-background-color: var(--el-bg-color);
  --vxe-toolbar-custom-active-background-color: var(--el-bg-color-overlay);
  --vxe-toolbar-panel-background-color: var(--el-bg-color-overlay);

  /* pager */
  --vxe-pager-background-color: var(--el-bg-color);

  /* modal */
  --vxe-modal-header-background-color: var(--el-bg-color);
  --vxe-modal-body-background-color: var(--el-bg-color);
  --vxe-modal-border-color: var(--el-border-color);

  /* button */
  --vxe-button-default-background-color: var(--el-bg-color-overlay);

  /* input */
  --vxe-input-background-color: var(--el-fill-color-blank);
  --vxe-input-panel-background-color: var(--el-fill-color-blank);

  /* form */
  --vxe-form-background-color: var(--el-bg-color);
  --vxe-form-validate-error-color: var(--el-color-danger);

  /* select */
  --vxe-select-option-hover-background-color: var(--el-bg-color-overlay);
  --vxe-select-panel-background-color: var(--el-bg-color);
}
/* Element Chalk Variables */
/** 全局SCSS变量 */
:root {
  --layout-wrapper-interval: 30px;
  --layout-main-interval: 20px;
  --menu-background: #fff;
  --menu-text: #333;
  --menu-active-text: var(
    --el-menu-active-color
  );
  --menu-hover: #ffffff00;
  --sidebar-logo-background: #f5f5f5;
  --sidebar-logo-text-color: #333;
}
@media screen and (max-width: 1600px) {
  :root {
    --layout-wrapper-interval: 20px;
    --layout-main-interval: 16px;
  }
}
@media screen and (max-width: 1200px) {
  :root {
    --layout-wrapper-interval: 16px;
    --layout-main-interval: 16px;
  }
}
/** 浅色主题-透明侧边栏配色 */
html.sidebar-color-blue {
  --menu-background: #ffffff00;
  --menu-text: #717791;
  --menu-active-text: var(--el-menu-active-color);
  --menu-hover: transform;
  --sidebar-logo-background: #ffffff00;
  --sidebar-logo-text-color: #333;
  --layout-main-background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.72) 11%,
    rgba(255, 255, 255, 0.9) 100%
  );
}
/** 暗黑主题 */
html.dark {
  --menu-background: var(--el-bg-color-overlay);
  --menu-text: #fff;
  --menu-active-text: var(--el-menu-active-color);
  --menu-hover: rgb(0 0 0 / 20%);
  --sidebar-logo-background: rgb(0 0 0 / 20%);
  --sidebar-logo-text-color: #fff;
  --layout-main-background: var(--el-bg-color-overlay);
  /** WangEditor Dark */
  /* Textarea - css vars */
  --w-e-textarea-bg-color: var(--el-bg-color); /* 深色背景 */
  --w-e-textarea-color: var(--el-text-color-primary); /* 浅色文字 */
  --w-e-textarea-border-color: var(--el-border-color); /* 较深的边框颜色 */
  --w-e-textarea-slight-border-color: var(--el-border-color-lighter); /* 更淡一些的边框颜色 */
  --w-e-textarea-slight-color: var(--el-text-color-secondary); /* 浅灰色，用于不那么重要的元素 */
  --w-e-textarea-slight-bg-color: var(--el-bg-color-overlay); /* 稍微亮一点的背景色 */
  --w-e-textarea-selected-border-color: var(--el-color-info-light-5); /* 选中元素时的高亮边框 */
  --w-e-textarea-handler-bg-color: var(--el-color-primary); /* 工具按钮或交互元素的背景色 */
  /* Toolbar - css vars */
  --w-e-toolbar-color: var(--el-text-color-regular); /* 工具栏文字颜色 */
  --w-e-toolbar-bg-color: var(--el-bg-color); /* 工具栏背景颜色 */
  --w-e-toolbar-active-color: var(--el-text-color-primary); /* 当前激活项的文字颜色 */
  --w-e-toolbar-active-bg-color: var(--el-fill-color-light); /* 当前激活项的背景颜色 */
  --w-e-toolbar-disabled-color: var(--el-text-color-secondary); /* 禁用项的颜色 */
  --w-e-toolbar-border-color: var(--el-border-color-base); /* 工具栏边框颜色 */
  /*  Modal - css vars */
  --w-e-modal-button-bg-color: var(--el-bg-color-light-3); /* 弹出框按钮背景色 */
  --w-e-modal-button-border-color: var(--el-border-color-light); /* 弹出框按钮边框颜色 */
}
*,
::before,
::after {
  box-sizing: border-box;
  border-color: currentcolor;
  border-style: solid;
  border-width: 0;
}
#app {
  width: 100%;
  height: 100%;
}
html {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  tab-size: 4;
  text-size-adjust: 100%;
}
body {
  width: 100%;
  height: 100%;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  line-height: inherit;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
}
a {
  color: inherit;
  text-decoration: inherit;
}
img,
svg {
  display: inline-block;
}
svg {
  vertical-align: -0.15em;
}
ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
a,
a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a:focus,
a:active,
div:focus {
  outline: none;
}
/* el-message */
.login-message-fixbug .el-message__icon,
.login-message-fixbug .el-message__icon > svg {
  max-width: 15px;
  max-height: 15px;
}
/* el-dialog */
.el-dialog {
  padding: 0 !important;
}
.el-dialog .el-dialog__header {
  padding: 16px 20px;
  margin: 0;
}
.el-dialog .el-dialog__header .el-dialog__headerbtn .el-dialog__close {
  color: #666;
}
.el-dialog .el-dialog__header .el-dialog__headerbtn .el-dialog__close:hover {
  color: var(--el-color-primary);
}
.el-dialog .el-dialog__body {
  padding: 12px 24px;
}
.el-dialog .el-dialog__footer {
  padding: 15px;
}
/** el-drawer */
.el-drawer .el-drawer__header {
  padding: 15px 20px;
  margin: 0;
  color: inherit;
  border-bottom: 1px solid var(--el-border-color-light);
}
.el-drawer .el-drawer__body {
  padding: 20px 0;
}
.el-drawer .el-drawer__footer {
  padding: 15px;
  border-top: 1px solid var(--el-border-color-light);
}
.dialog-footer {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
/** el-tabs */
.el-tabs.el-tabs-card-custom-1 .el-tabs__header {
  border: none;
}
.el-tabs.el-tabs-card-custom-1 .el-tabs__header .el-tabs__nav {
  border: none;
}
.el-tabs.el-tabs-card-custom-1 .el-tabs__item {
  height: 36px;
  margin-top: 0 !important;
  border-width: 0.5px;
}
.el-tabs.el-tabs-card-custom-1 .el-tabs__item:first-child {
  border-width: 1px;
  border-radius: 4px 0 0 4px;
}
.el-tabs.el-tabs-card-custom-1 .el-tabs__item:last-child {
  border-width: 1px;
  border-radius: 0 4px 4px 0;
}
.el-tabs.el-tabs-card-custom-1 .el-tabs__item.is-active {
  box-sizing: border-box;
  background-color: var(--el-color-primary-light-9);
  border: 1px solid var(--el-color-primary) !important;
}
.el-tabs.el-tabs-card-custom-1 .el-tabs__item:not(.is-active) {
  border: 1px solid var(--el-border-color-light) !important;
}
.el-tabs.tabs-short-underline .el-tabs__nav-wrap::after {
  background: transparent;
}
.el-tabs.tabs-short-underline .el-tabs__active-bar {
  height: 2px;
  background: #ff6b35;
}
.el-tabs.tabs-short-underline .el-tabs__nav::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-color: var(--el-border-color-light);
}
/** el-table */
.el-table .thead {
  color: #969ba5;
}
.el-table .el-table__header .el-table__cell {
  background-color: #f5f6f9 !important;
}
/** el-message-box */
.el-message-box .el-message-box__btns .el-button {
  height: auto;
  padding: 6px 20px;
  font-size: 12px;
  line-height: 1;
  border-radius: var(--el-border-radius-round);
}
.el-message-box .el-message-box__btns > .el-button:first-child:nth-last-child(2) {
  color: #333;
  background-color: #ebeff5;
  border-color: #ebeff5;
}
.el-message-box .el-message-box__btns > .el-button:first-child:nth-last-child(2):hover {
  opacity: 0.8;
}
.el-button--text {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.vxe-grid--form-wrapper .vxe-form {
  padding: 10px 20px;
  margin-bottom: 20px;
}
.vxe-grid--toolbar-wrapper .vxe-toolbar {
  padding: 20px;
}
.vxe-grid--pager-wrapper .vxe-pager {
  height: 70px;
  padding: 0 20px;
}
@media screen and (width <= 768px) {
  .vxe-grid--pager-wrapper .vxe-pager--wrapper .vxe-pager--total,
  .vxe-grid--pager-wrapper .vxe-pager--wrapper .vxe-pager--sizes,
  .vxe-grid--pager-wrapper .vxe-pager--wrapper .vxe-pager--jump,
  .vxe-grid--pager-wrapper .vxe-pager--wrapper .vxe-pager--jump-prev,
  .vxe-grid--pager-wrapper .vxe-pager--wrapper .vxe-pager--jump-next {
    display: none;
  }
}
@font-face {
  font-family: "SourceHanSansSC";
  src: url("https://oss.xinmeijiutian.cn/yunlan/SourceHanSansSC-Regular.otf");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Medium.BzTpVR6v.ttf");
  font-display: swap;
}
* {
  font-family: Roboto, SourceHanSansSC, sans-serif;
}
#nprogress .bar {
  background-color: var(--el-color-primary);
}
.layout-mix .layout__sidebar--left .el-menu .el-menu-item:hover {
  background-color: var(--el-fill-color-light) !important;
}
.layout-mix .layout__sidebar--left .el-menu .el-sub-menu__title:hover {
  background-color: var(--el-fill-color-light) !important;
}
html.dark .layout-mix .layout__sidebar--left .el-menu .el-menu-item:hover,
html.sidebar-color-blue .layout-mix .layout__sidebar--left .el-menu .el-menu-item:hover {
  background-color: var(--menu-hover) !important;
}
html.dark .layout-mix .layout__sidebar--left .el-menu .el-sub-menu__title:hover,
html.sidebar-color-blue .layout-mix .layout__sidebar--left .el-menu .el-sub-menu__title:hover {
  background-color: var(--menu-hover) !important;
}
.hideSidebar.layout-top .layout__header .el-menu--horizontal .el-menu-item .menu-title,
.hideSidebar.layout-top .layout__header .el-menu--horizontal .el-menu-item span:not([class*=i-svg]):not(.el-icon),
.hideSidebar.layout-top .layout__header .el-menu--horizontal .el-sub-menu__title .menu-title,
.hideSidebar.layout-top .layout__header .el-menu--horizontal .el-sub-menu__title span:not([class*=i-svg]):not(.el-icon), .hideSidebar.layout-mix .layout__header .el-menu--horizontal .el-menu-item .menu-title,
.hideSidebar.layout-mix .layout__header .el-menu--horizontal .el-menu-item span:not([class*=i-svg]):not(.el-icon),
.hideSidebar.layout-mix .layout__header .el-menu--horizontal .el-sub-menu__title .menu-title,
.hideSidebar.layout-mix .layout__header .el-menu--horizontal .el-sub-menu__title span:not([class*=i-svg]):not(.el-icon) {
  display: none !important;
}
.hideSidebar.layout-mix .layout__sidebar--left .el-menu .el-menu-item .menu-title,
.hideSidebar.layout-mix .layout__sidebar--left .el-menu .el-menu-item span:not([class*=i-svg]):not(.el-icon),
.hideSidebar.layout-mix .layout__sidebar--left .el-menu .el-sub-menu__title .menu-title,
.hideSidebar.layout-mix .layout__sidebar--left .el-menu .el-sub-menu__title span:not([class*=i-svg]):not(.el-icon) {
  display: none !important;
}
.search-container {
  padding: 18px 16px 0;
  margin-bottom: 16px;
  background-color: var(--el-bg-color-overlay);
  border: 1px solid var(--el-border-color-light);
  border-radius: 4px;
}
.search-container .search-buttons {
  margin-right: 0;
}
.search-container .el-form-item {
  margin-bottom: 18px;
}
.data-table {
  margin-bottom: 16px;
}
.data-table__toolbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.data-table__toolbar--actions, .data-table__toolbar--tools {
  display: flex;
  gap: 8px;
}
.data-table__content {
  margin: 8px 0;
}
.data-table .el-pagination {
  justify-content: flex-end;
  margin-top: 16px;
}
.app-container {
  padding: 0 calc(var(--layout-wrapper-interval) * 0.8);
}
.PUB_table-column-list {
  display: flex;
  flex-direction: column;
}
.PUB_table-column-list .el-button {
  margin-bottom: 4px;
}
.PUB_table-column-list .el-button:last-child {
  margin-bottom: 0;
}
.PUB_table-column-list .el-button + .el-button {
  margin-left: 0;
}
.PUB_overflow_text_default {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.PUB_overflow_text_1 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  /*设置省略号在容器第二行文本后*/
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.PUB_overflow_text_2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  /*设置省略号在容器第二行文本后*/
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.PUB_search_form .el-form-item {
  height: 36px !important;
}
.PUB_page_link {
  color: var(--el-color-primary) !important;
  cursor: pointer;
}
.PUB_page_link:hover {
  opacity: 0.8 !important;
}
.PUB_page_link:active {
  opacity: 0.6 !important;
}
.PUB_pointer {
  cursor: pointer;
}
.PUB_flex_column {
  display: flex;
  flex-direction: column;
}
.PUB_flex_wrap {
  display: flex;
  flex-wrap: wrap;
}
.PUB_form_item_btn_box {
  position: absolute;
  right: 0;
  display: flex;
  transform: translateX(100%);
}
.PUB_form_item_btn_box > img,
.PUB_form_item_btn {
  left: 5px;
  width: 25px;
  height: 25px;
  margin-top: 5px;
  margin-left: 10px;
  cursor: pointer;
}*,::before,::after{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}.i-svg\:account{background:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M13.5602 11.8C10.5602 11.8 8.16016 9.4 8.16016 6.4C8.16016 3.4 10.5602 1 13.5602 1C16.5602 1 18.9602 3.4 18.9602 6.4C18.9602 9.4 16.5602 11.8 13.5602 11.8ZM13.5602 2.8C11.5202 2.8 9.96016 4.36 9.96016 6.4C9.96016 8.44 11.5202 10 13.5602 10C15.6002 10 17.1602 8.44 17.1602 6.4C17.1602 4.36 15.6002 2.8 13.5602 2.8Z' fill='%237E84A3' %3E%3C/path%3E%3Cpath d='M3 20.2C3 15.04 7.2 10.96 12.36 10.96C12.84 10.96 13.32 11.32 13.32 11.92C13.32 12.4 12.96 12.88 12.36 12.88C8.16 12.88 4.92 16.24 4.92 20.32L4.92 20.56L10.68 20.56C11.16 20.56 11.64 20.92 11.64 21.52C11.64 22.12 11.28 22.48 10.68 22.48L4.2 22.48C3.6 22.48 3.21785 22.0496 3.12 21.4L3 20.32L3 20.2ZM16.2 14.2C16.2 13.72 16.56 13.24 17.16 13.24L20.76 13.24C21.24 13.24 21.72 13.6 21.72 14.2C21.72 14.8 21.36 15.16 20.76 15.16L17.16 15.16C16.68 15.16 16.2 14.68 16.2 14.2ZM13.8 17.2C13.8 16.72 14.16 16.24 14.76 16.24L20.76 16.24C21.24 16.24 21.72 16.6 21.72 17.2C21.72 17.8 21.36 18.16 20.76 18.16L14.76 18.16C14.28 18.16 13.8 17.68 13.8 17.2ZM16.2 20.2C16.2 19.72 16.56 19.24 17.16 19.24L20.76 19.24C21.24 19.24 21.72 19.6 21.72 20.2C21.72 20.8 21.36 21.16 20.76 21.16L17.16 21.16C16.68 21.16 16.2 20.68 16.2 20.2Z' fill='%237E84A3' %3E%3C/path%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;width:1em;height:1em;}.i-svg\:api{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' fill='currentColor' class='icon' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cpath d='M499.2 671.232v-261.12h102.4c16.384 0 28.672 1.024 37.888 2.56 13.312 2.048 24.576 6.656 34.816 13.312 9.728 6.656 17.92 16.384 23.552 28.16 6.144 12.288 8.704 25.6 8.192 38.4 0 23.552-7.68 44.032-23.04 59.904-15.36 16.896-40.96 25.088-78.848 25.088h-43.52v93.184l-61.44.512zm281.6 0h-61.952v-261.12H780.8v261.12zm-287.744 0h-69.12L396.8 601.6h-73.728l-25.088 69.632h-66.56l100.352-261.12h54.272l107.008 261.12zM343.552 545.28h32.256l-15.872-42.496c0-.512-.512-1.024-.512-1.536l-15.872 44.032zm217.6-26.112h43.52c20.48 0 28.16-4.608 31.232-7.168 4.608-4.096 7.168-10.752 7.168-18.944 0-6.656-1.536-11.776-4.096-15.36-2.56-3.584-6.144-6.144-10.752-7.68-1.536-.512-6.656-1.536-24.064-1.536h-43.008v50.688z'/%3E%3Cpath d='M747.52 842.752H512c-8.704 0-16.384-3.584-22.016-9.728-6.144-6.144-9.216-14.336-8.704-22.528.512-16.896 14.336-30.72 31.232-31.232H747.52c115.712 0 209.408-94.208 209.408-209.408 0-104.96-78.848-194.56-183.296-207.872l-22.528-3.072-4.608-22.016C724.992 231.936 631.808 156.16 524.288 156.16c-124.928 0-226.304 101.376-226.304 226.304v8.704l1.536 36.352-36.352-4.096c-6.144-1.024-12.288-1.024-18.432-1.024-98.304 0-178.176 79.872-178.176 178.176 0 98.304 79.872 178.176 178.176 178.176h63.488c8.704 0 16.384 3.584 22.016 9.728 6.144 6.144 9.216 14.336 8.704 22.528-.512 16.896-14.336 30.72-31.232 31.232h-64c-64 0-123.904-25.088-169.472-70.144C28.16 726.528 3.072 665.6 3.072 601.088c0-129.536 103.936-236.544 232.448-241.152 12.288-157.184 149.504-276.48 307.2-266.24 59.904 3.584 118.784 27.136 165.888 65.536 45.568 37.376 77.824 87.04 94.208 143.872 125.952 26.112 217.088 137.728 217.088 266.752.512 151.04-121.856 272.896-272.384 272.896z'/%3E%3Cpath d='M572.416 930.816c-8.192 0-15.872-3.072-21.504-8.704L431.616 812.544l113.152-117.76c6.144-6.144 13.824-9.216 22.528-9.216 8.704 0 16.384 3.072 22.528 9.216 11.776 11.776 12.288 31.232 1.024 44.032l-68.608 70.656 71.68 66.048c6.144 5.632 9.728 13.312 10.24 22.016.512 8.704-2.56 16.384-8.192 23.04-6.656 6.656-14.848 10.24-23.552 10.24z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:approval{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M5.56732 2C5.60656 2 5.6448 2 5.68401 2C5.72321 2 5.76157 2.00833 5.80069 2.00833C5.83982 2.00833 5.87843 2.025 5.91738 2.025C5.95634 2.025 5.99535 2.04167 6.03407 2.04167C6.07279 2.04167 6.11233 2.05834 6.15076 2.05834C6.18918 2.05834 6.22937 2.07374 6.26745 2.08334C6.3055 2.09293 6.34649 2.10552 6.38413 2.11667C6.42176 2.12782 6.45535 2.13731 6.49249 2.15001C6.52962 2.1627 6.56425 2.17746 6.60084 2.19168C6.63743 2.20589 6.67323 2.22597 6.70919 2.24168C6.74516 2.25738 6.78225 2.27451 6.81755 2.29168C6.85285 2.30885 6.89134 2.32307 6.9259 2.34168C6.96046 2.36029 6.99216 2.38 7.02592 2.40002C7.05967 2.42004 7.09302 2.43696 7.12594 2.45835C7.15883 2.47975 7.19396 2.50229 7.22596 2.52502C7.25795 2.54775 7.2866 2.576 7.31764 2.60003C7.34868 2.62406 7.3793 2.64975 7.40932 2.67503C7.43933 2.70032 7.47205 2.72353 7.50101 2.75003C7.52996 2.77653 7.55652 2.8057 7.58435 2.83337C7.61219 2.86104 7.64104 2.88792 7.6677 2.91671C7.69437 2.9455 7.71726 2.97018 7.74272 3.00005C7.76817 3.02991 7.79353 3.06083 7.81773 3.09172C7.84193 3.12261 7.86983 3.15986 7.89274 3.19172C7.91566 3.22358 7.93784 3.25061 7.95942 3.28339C7.98101 3.31617 7.99755 3.34976 8.01777 3.3834C8.03798 3.41703 8.0573 3.45729 8.07611 3.49173C8.09492 3.52618 8.11709 3.55655 8.13445 3.59174C8.15184 3.62693 8.16854 3.6642 8.18446 3.70008C8.20038 3.73595 8.21172 3.77192 8.22614 3.80842C8.24057 3.84492 8.2549 3.87969 8.26781 3.91675C8.28073 3.95381 8.28978 3.99587 8.30115 4.03343C8.31252 4.07099 8.32469 4.10377 8.33449 4.14176L17.7112 4.14176C17.7814 4.14176 17.8578 4.1501 17.9279 4.1501C17.998 4.1501 18.0665 4.16677 18.1363 4.16677C18.2061 4.16677 18.2753 4.18147 18.3447 4.19177C18.414 4.20206 18.4842 4.21141 18.553 4.2251C18.6218 4.23879 18.685 4.25805 18.7531 4.2751C18.8211 4.29216 18.8943 4.30473 18.9614 4.32511C19.0286 4.34546 19.0954 4.36814 19.1615 4.39178C19.2275 4.41541 19.2884 4.43994 19.3532 4.46678C19.418 4.49362 19.4815 4.52847 19.5449 4.55845C19.6083 4.58843 19.6747 4.61705 19.7366 4.65012C19.7984 4.68319 19.8598 4.71407 19.9199 4.75012C19.9801 4.78618 20.0366 4.82783 20.095 4.8668C20.1533 4.90576 20.2136 4.94169 20.27 4.98347C20.3263 5.02525 20.3825 5.07229 20.4367 5.11681C20.4909 5.1613 20.5431 5.20306 20.5951 5.25015C20.647 5.29726 20.6955 5.35056 20.7451 5.40016C20.7947 5.44975 20.8397 5.49819 20.8868 5.55016C20.9339 5.60214 20.984 5.65428 21.0285 5.7085C21.073 5.76272 21.1117 5.81885 21.1535 5.87518C21.1953 5.93153 21.2396 5.99186 21.2785 6.05018C21.3175 6.10849 21.3508 6.16501 21.3869 6.22519C21.4229 6.28535 21.4622 6.34668 21.4952 6.40853C21.5284 6.47039 21.557 6.53679 21.5869 6.60021C21.617 6.66361 21.6435 6.72708 21.6703 6.79188C21.6972 6.85667 21.7216 6.91752 21.7453 6.98356C21.7689 7.0496 21.7916 7.11646 21.812 7.18357C21.8323 7.2507 21.8533 7.31555 21.8703 7.38358C21.8875 7.45161 21.9066 7.52313 21.9203 7.59192C21.934 7.66073 21.9435 7.73089 21.9536 7.80026C21.964 7.86964 21.9787 7.9388 21.9787 8.00861C21.9787 8.07839 21.9953 8.14689 21.9953 8.21695C21.9953 8.28701 22.0037 8.35515 22.0037 8.42529C22.0037 8.49543 21.9953 8.57191 21.9953 8.64197C21.9953 8.71203 21.9787 8.7805 21.9787 8.85031C21.9787 8.92012 21.964 8.98928 21.9536 9.05865C21.9435 9.12803 21.934 9.1982 21.9203 9.267C21.9066 9.33579 21.8875 9.39896 21.8703 9.46701C21.8533 9.53504 21.8323 9.60824 21.812 9.67535C21.7916 9.74248 21.7689 9.80932 21.7453 9.87536C21.7216 9.9414 21.6972 10.0022 21.6703 10.067C21.6435 10.1318 21.617 10.1953 21.5869 10.2587C21.557 10.3221 21.5284 10.3885 21.4952 10.4504C21.4622 10.5122 21.4229 10.5736 21.3869 10.6337C21.3508 10.6939 21.3175 10.7504 21.2785 10.8087C21.2396 10.8671 21.1953 10.9274 21.1535 10.9837C21.1117 11.0401 21.073 11.0962 21.0285 11.1504C20.984 11.2046 20.9339 11.2568 20.8868 11.3088C20.8397 11.3607 20.7947 11.4092 20.7451 11.4588C20.6955 11.5084 20.647 11.5533 20.5951 11.6004C20.5431 11.6475 20.4909 11.6976 20.4367 11.7421C20.3825 11.7866 20.3263 11.8253 20.27 11.8671C20.2136 11.9089 20.1533 11.9532 20.095 11.9921C20.0366 12.0311 19.9801 12.0727 19.9199 12.1088C19.8598 12.1449 19.7984 12.1757 19.7366 12.2088C19.6747 12.2419 19.6083 12.2705 19.5449 12.3005C19.4815 12.3305 19.418 12.3653 19.3532 12.3921C19.2884 12.419 19.2275 12.4435 19.1615 12.4671C19.0954 12.4908 19.0286 12.5134 18.9614 12.5338C18.8943 12.5542 18.8211 12.5668 18.7531 12.5838C18.685 12.6008 18.6218 12.6201 18.553 12.6338C18.4842 12.6475 18.414 12.6569 18.3447 12.6672C18.2753 12.6774 18.2061 12.6922 18.1363 12.6922C18.0665 12.6922 17.998 12.7088 17.9279 12.7088C17.8578 12.7088 17.7814 12.7172 17.7112 12.7172L16.9444 12.7172C16.9338 12.7907 16.925 12.8608 16.9111 12.9338C16.8972 13.0069 16.8782 13.0865 16.861 13.1588C16.8439 13.2312 16.8314 13.2957 16.811 13.3672C16.7907 13.4387 16.7679 13.5133 16.7444 13.5839C16.7208 13.6544 16.696 13.7228 16.6693 13.7922C16.6427 13.8616 16.6157 13.9324 16.586 14.0005C16.5563 14.0687 16.5187 14.1338 16.486 14.2006C16.4533 14.2673 16.4216 14.3353 16.386 14.4006C16.3503 14.4658 16.3162 14.5287 16.2776 14.5922C16.2391 14.6558 16.1939 14.7221 16.1526 14.7839C16.1112 14.8457 16.0716 14.9074 16.0276 14.9673C15.9835 15.0272 15.9409 15.0844 15.8942 15.1423C15.8475 15.2001 15.7934 15.2532 15.7442 15.3089C15.695 15.3647 15.6458 15.4221 15.5942 15.4756C15.5425 15.5291 15.4898 15.5828 15.4358 15.634C15.3818 15.6851 15.3253 15.7353 15.2691 15.784C15.2129 15.8326 15.1607 15.8795 15.1024 15.9256C15.0441 15.9717 14.9794 16.0155 14.919 16.059C14.8587 16.1024 14.7979 16.1433 14.7357 16.184C14.6735 16.2247 14.6163 16.2627 14.5523 16.3007C14.4883 16.3386 14.4179 16.374 14.3523 16.409C14.2867 16.444 14.2193 16.4853 14.1522 16.5173C14.0851 16.5494 14.0206 16.58 13.9522 16.609C13.8837 16.638 13.8135 16.658 13.7438 16.684C13.6741 16.71 13.6062 16.7362 13.5354 16.759C13.4647 16.7818 13.3904 16.806 13.3187 16.8257C13.247 16.8453 13.1745 16.8592 13.102 16.8757C13.0295 16.8921 12.9585 16.9125 12.8853 16.9257C12.8121 16.9389 12.7423 16.9491 12.6686 16.959C12.5949 16.9689 12.5176 16.984 12.4436 16.984C12.3695 16.984 12.2928 17.0007 12.2185 17.0007C12.1442 17.0007 12.0762 17.0007 12.0018 17.0007C11.9275 17.0007 11.8511 17.0007 11.7768 17.0007C11.7025 17.0007 11.6258 16.984 11.5517 16.984C11.4777 16.984 11.4087 16.9689 11.335 16.959C11.2613 16.9491 11.1832 16.9389 11.11 16.9257C11.0368 16.9125 10.9658 16.8921 10.8933 16.8757C10.8208 16.8592 10.7483 16.8453 10.6766 16.8257C10.6049 16.806 10.5306 16.7818 10.4599 16.759C10.3891 16.7362 10.3212 16.71 10.2515 16.684C10.1818 16.658 10.1116 16.638 10.0431 16.609C9.97469 16.58 9.91018 16.5494 9.8431 16.5173C9.77602 16.4853 9.70866 16.444 9.64306 16.409C9.57749 16.374 9.51532 16.3386 9.45136 16.3007C9.38739 16.2627 9.32186 16.2247 9.25966 16.184C9.19744 16.1433 9.13664 16.1024 9.07629 16.059C9.01597 16.0155 8.95126 15.9717 8.89293 15.9256C8.8346 15.8795 8.78243 15.8326 8.72623 15.784C8.67001 15.7353 8.61353 15.6851 8.55953 15.634C8.50554 15.5828 8.45282 15.5291 8.40117 15.4756C8.3495 15.4221 8.30035 15.3647 8.25114 15.3089C8.20193 15.2532 8.15614 15.2001 8.10945 15.1423C8.06276 15.0844 8.01181 15.0272 7.96776 14.9673C7.92371 14.9074 7.88409 14.8457 7.84273 14.7839C7.80138 14.7221 7.75625 14.6558 7.71771 14.5922C7.67917 14.5287 7.64503 14.4658 7.60936 14.4006C7.57369 14.3353 7.54206 14.2673 7.50934 14.2006C7.4766 14.1338 7.44737 14.0687 7.41766 14.0005C7.38794 13.9324 7.35262 13.8616 7.32597 13.7922C7.29931 13.7228 7.27448 13.6544 7.25096 13.5839C7.22742 13.5133 7.21297 13.4387 7.19262 13.3672C7.17224 13.2957 7.15142 13.2312 7.13427 13.1588C7.11712 13.0865 7.09817 13.0069 7.08426 12.9338C7.07035 12.8608 7.06157 12.7907 7.05092 12.7172L6.28412 12.7172C6.24991 12.7172 6.21826 12.7172 6.1841 12.7172C6.14991 12.7172 6.10985 12.7255 6.07575 12.7255C6.04162 12.7255 6.00974 12.7338 5.97573 12.7338C5.94172 12.7338 5.90956 12.7422 5.87571 12.7422C5.84185 12.7422 5.80935 12.7588 5.77569 12.7588C5.74203 12.7588 5.7091 12.7838 5.67567 12.7838C5.64225 12.7838 5.6088 12.792 5.57565 12.8005C5.54252 12.8089 5.50843 12.8242 5.47564 12.8338C5.44284 12.8435 5.40806 12.848 5.37562 12.8588C5.34317 12.8697 5.31597 12.8802 5.28393 12.8922C5.25192 12.9041 5.2155 12.9207 5.18392 12.9338C5.15233 12.947 5.12333 12.9613 5.09223 12.9755C5.06115 12.9897 5.03112 13.0018 5.00055 13.0172C4.97 13.0325 4.93885 13.0507 4.90886 13.0672C4.87888 13.0836 4.84656 13.0997 4.81718 13.1172C4.7878 13.1347 4.76257 13.157 4.73383 13.1755C4.68414 13.2079 4.63141 13.2401 4.58381 13.2755C4.53622 13.3109 4.48741 13.3456 4.44211 13.3839C4.39681 13.4221 4.35993 13.4595 4.31709 13.5005C4.27425 13.5415 4.23227 13.5903 4.19207 13.6339C4.15184 13.6775 4.11283 13.7212 4.07538 13.7672C4.03795 13.8132 4.00152 13.8607 3.96703 13.9089C3.93252 13.9571 3.89845 14.0003 3.86701 14.0505C3.83556 14.1008 3.80359 14.1568 3.77532 14.2089C3.74706 14.261 3.72528 14.3135 3.70031 14.3672C3.67534 14.421 3.64688 14.4703 3.6253 14.5256C3.60371 14.5808 3.58507 14.6441 3.56695 14.7006C3.54883 14.757 3.53152 14.8098 3.51694 14.8673C3.50237 14.9247 3.49459 14.984 3.4836 15.0423C3.47262 15.1005 3.45027 15.1584 3.45027 15.2173C3.45027 15.2761 3.4336 15.3331 3.4336 15.3923C3.4336 15.4515 3.4336 15.5163 3.4336 15.5756C3.4336 15.6349 3.4336 15.6914 3.4336 15.7506C3.4336 15.8098 3.45027 15.8668 3.45027 15.9256C3.45027 15.9845 3.47262 16.0424 3.4836 16.1006C3.49459 16.1589 3.50237 16.2182 3.51694 16.2757C3.53152 16.3331 3.54883 16.3942 3.56695 16.4507C3.58507 16.5071 3.60371 16.5621 3.6253 16.6173C3.64688 16.6726 3.67534 16.7219 3.70031 16.7757C3.72528 16.8295 3.74706 16.8819 3.77532 16.934C3.80359 16.9861 3.83556 17.0421 3.86701 17.0924C3.89845 17.1426 3.93252 17.1941 3.96703 17.2424C4.00152 17.2906 4.03795 17.3297 4.07538 17.3757C4.11283 17.4217 4.15184 17.4738 4.19207 17.5174C4.23227 17.561 4.27425 17.6014 4.31709 17.6424C4.35993 17.6834 4.39681 17.7208 4.44211 17.7591C4.48741 17.7973 4.53622 17.832 4.58381 17.8674C4.63141 17.9028 4.68414 17.9434 4.73383 17.9757C4.76255 17.9943 4.78782 18.0082 4.81718 18.0257C4.84654 18.0433 4.87888 18.0593 4.90886 18.0757C4.93885 18.0922 4.97 18.1104 5.00055 18.1257C5.0311 18.1411 5.06115 18.1531 5.09223 18.1674C5.12331 18.1817 5.15233 18.1959 5.18392 18.2091C5.2155 18.2222 5.25192 18.2387 5.28393 18.2507C5.31597 18.2627 5.34317 18.2732 5.37562 18.2841C5.40806 18.2949 5.44282 18.2994 5.47564 18.3091C5.50843 18.3187 5.5425 18.3339 5.57565 18.3424C5.6088 18.3509 5.64225 18.3674 5.67567 18.3674C5.7091 18.3674 5.74203 18.3841 5.77569 18.3841C5.80935 18.3841 5.84185 18.4007 5.87571 18.4007C5.90956 18.4007 5.94172 18.4091 5.97573 18.4091C6.00974 18.4091 6.04162 18.4257 6.07575 18.4257C6.10987 18.4257 6.14991 18.4257 6.1841 18.4257C6.21828 18.4257 6.24991 18.4257 6.28412 18.4257L15.6608 18.4257C15.6752 18.3702 15.6932 18.3136 15.7108 18.2591C15.7285 18.2045 15.7483 18.1541 15.7692 18.1007C15.7901 18.0473 15.8118 17.9944 15.8359 17.9424C15.8599 17.8904 15.8837 17.8429 15.9109 17.7924C15.938 17.7419 15.9641 17.6912 15.9942 17.6424C16.0244 17.5936 16.0612 17.5392 16.0942 17.4924C16.1273 17.4455 16.1585 17.4038 16.1943 17.359C16.2301 17.3142 16.2642 17.2683 16.3026 17.2257C16.341 17.1831 16.3867 17.1409 16.4276 17.1007C16.4685 17.0605 16.5094 17.0217 16.5527 16.984C16.5959 16.9464 16.6406 16.9106 16.686 16.8757C16.7315 16.8407 16.7803 16.8078 16.8277 16.7757C16.8752 16.7435 16.9201 16.7133 16.9694 16.684C17.0187 16.6547 17.0684 16.6269 17.1194 16.6007C17.1704 16.5744 17.2253 16.5488 17.2778 16.5257C17.3303 16.5026 17.3824 16.4873 17.4362 16.4673C17.4899 16.4474 17.5396 16.4256 17.5945 16.409C17.6494 16.3923 17.7054 16.3806 17.7612 16.3673C17.817 16.354 17.8714 16.3356 17.9279 16.3257C17.9844 16.3157 18.046 16.3007 18.1029 16.3007C18.1599 16.3007 18.2124 16.2923 18.2696 16.2923C18.3269 16.2923 18.3873 16.284 18.4447 16.284C18.502 16.284 18.5625 16.2923 18.6197 16.2923C18.6769 16.2923 18.7295 16.309 18.7864 16.309C18.8433 16.309 18.8967 16.3233 18.9531 16.334C19.0094 16.3446 19.0725 16.3616 19.1281 16.3757C19.1837 16.3897 19.2318 16.4 19.2865 16.4173C19.3412 16.4346 19.3997 16.4551 19.4532 16.4757C19.5067 16.4962 19.5594 16.5186 19.6116 16.5423C19.6637 16.5661 19.7109 16.5905 19.7616 16.6173C19.8122 16.6442 19.8627 16.6708 19.9116 16.7007C19.9606 16.7305 20.0146 16.7679 20.0616 16.8007C20.1087 16.8334 20.15 16.8652 20.195 16.9007C20.24 16.9362 20.2855 16.9709 20.3284 17.009C20.3712 17.0472 20.413 17.085 20.4534 17.1257C20.4938 17.1664 20.5322 17.2077 20.5701 17.2507C20.608 17.2937 20.6432 17.3388 20.6784 17.384C20.7137 17.4293 20.746 17.4785 20.7784 17.5257C20.8109 17.573 20.8489 17.6183 20.8785 17.6674C20.908 17.7165 20.9353 17.7666 20.9618 17.8174C20.9883 17.8682 21.0134 17.9234 21.0368 17.9757C21.0603 18.0281 21.0832 18.0804 21.1035 18.1341C21.1238 18.1877 21.1365 18.2377 21.1535 18.2924C21.1705 18.3472 21.1899 18.4034 21.2035 18.4591C21.2172 18.5148 21.2266 18.5694 21.2369 18.6258C21.2471 18.6822 21.2619 18.7438 21.2619 18.8008C21.2619 18.8577 21.2785 18.9102 21.2785 18.9674C21.2785 19.0247 21.2869 19.0851 21.2869 19.1424C21.2869 19.1998 21.2785 19.2602 21.2785 19.3175C21.2785 19.3747 21.2619 19.4272 21.2619 19.4841C21.2619 19.541 21.2471 19.6027 21.2369 19.6591C21.2266 19.7155 21.2172 19.7701 21.2035 19.8258C21.1899 19.8815 21.1705 19.9377 21.1535 19.9925C21.1365 20.0472 21.1238 20.0972 21.1035 20.1508C21.0832 20.2045 21.0603 20.2568 21.0368 20.3092C21.0134 20.3615 20.9883 20.4167 20.9618 20.4675C20.9353 20.5183 20.908 20.5684 20.8785 20.6175C20.8489 20.6666 20.8109 20.7119 20.7784 20.7592C20.746 20.8065 20.7137 20.8556 20.6784 20.9009C20.6432 20.9461 20.608 20.9912 20.5701 21.0342C20.5322 21.0772 20.4938 21.1186 20.4534 21.1592C20.413 21.1999 20.3712 21.2377 20.3284 21.2759C20.2855 21.314 20.24 21.3487 20.195 21.3842C20.15 21.4197 20.1087 21.4515 20.0616 21.4842C20.0146 21.517 19.9606 21.5543 19.9116 21.5842C19.8627 21.6141 19.8122 21.6408 19.7616 21.6676C19.7109 21.6943 19.6637 21.7187 19.6116 21.7426C19.5594 21.7662 19.5067 21.7887 19.4532 21.8092C19.3997 21.8297 19.3412 21.8502 19.2865 21.8676C19.2318 21.885 19.1837 21.8952 19.1281 21.9092C19.0725 21.9231 19.0094 21.9402 18.9531 21.9509C18.8967 21.9617 18.8433 21.9759 18.7864 21.9759C18.7295 21.9759 18.6769 21.9926 18.6197 21.9926C18.5625 21.9926 18.502 22.0009 18.4447 22.0009C18.3873 22.0009 18.3269 21.9926 18.2696 21.9926C18.2124 21.9926 18.1599 21.9842 18.1029 21.9842C18.046 21.9842 17.9844 21.9692 17.9279 21.9592C17.8714 21.9493 17.817 21.931 17.7612 21.9176C17.7054 21.9043 17.6494 21.8925 17.5945 21.8759C17.5396 21.8593 17.4899 21.8458 17.4362 21.8259C17.3824 21.806 17.3303 21.7823 17.2778 21.7592C17.2253 21.736 17.1704 21.7104 17.1194 21.6842C17.0684 21.6579 17.0187 21.6302 16.9694 21.6009C16.9201 21.5718 16.8752 21.5415 16.8277 21.5092C16.7803 21.4771 16.7315 21.4442 16.686 21.4092C16.6406 21.3742 16.5959 21.3385 16.5527 21.3009C16.5094 21.2632 16.4686 21.2244 16.4276 21.1842C16.3867 21.144 16.341 21.1018 16.3026 21.0592C16.2642 21.0166 16.2301 20.9706 16.1943 20.9259C16.1585 20.8811 16.1273 20.8394 16.0942 20.7925C16.0612 20.7457 16.0244 20.6913 15.9942 20.6425C15.9641 20.5938 15.938 20.543 15.9109 20.4925C15.8837 20.442 15.8599 20.3945 15.8359 20.3425C15.8118 20.2905 15.7901 20.2375 15.7692 20.1842C15.7483 20.1308 15.7285 20.0804 15.7108 20.0258C15.6932 19.9713 15.6752 19.9147 15.6608 19.8591L6.28412 19.8591C6.21399 19.8591 6.14578 19.8508 6.07575 19.8508C6.00571 19.8508 5.93717 19.8341 5.86737 19.8341C5.79758 19.8341 5.72837 19.8195 5.659 19.8091C5.58963 19.7988 5.51941 19.7895 5.45063 19.7758C5.38185 19.7621 5.31028 19.7429 5.24226 19.7258C5.17424 19.7087 5.10932 19.6962 5.04222 19.6758C4.97512 19.6554 4.90821 19.6328 4.84219 19.6091C4.77618 19.5855 4.70695 19.561 4.64215 19.5341C4.57737 19.5073 4.51384 19.4725 4.45045 19.4425C4.38706 19.4125 4.32891 19.3839 4.26708 19.3508C4.20523 19.3177 4.14386 19.2869 4.08371 19.2508C4.02359 19.2147 3.95866 19.1731 3.90035 19.1341C3.84205 19.0951 3.78997 19.0592 3.73365 19.0174C3.67733 18.9757 3.62115 18.9286 3.56695 18.8841C3.51275 18.8396 3.46054 18.7979 3.40859 18.7508C3.35664 18.7036 3.30814 18.6503 3.25856 18.6008C3.20899 18.5512 3.15562 18.5027 3.10854 18.4507C3.06145 18.3988 3.01966 18.3466 2.97518 18.2924C2.9307 18.2382 2.88359 18.1821 2.84182 18.1257C2.80006 18.0694 2.76408 18.009 2.72513 17.9507C2.68618 17.8924 2.64449 17.8359 2.60844 17.7757C2.5724 17.7156 2.54148 17.6542 2.50843 17.5924C2.47538 17.5305 2.43838 17.4641 2.40841 17.4007C2.37843 17.3373 2.35189 17.2738 2.32506 17.209C2.29823 17.1442 2.27366 17.0834 2.25005 17.0173C2.22643 16.9513 2.20372 16.8844 2.18337 16.8173C2.16302 16.7502 2.14206 16.677 2.12502 16.609C2.10799 16.541 2.09703 16.4778 2.08335 16.409C2.06967 16.3402 2.0603 16.27 2.05001 16.2006C2.03972 16.1313 2.01667 16.0621 2.01667 15.9923C2.01667 15.9225 2.00833 15.854 2.00833 15.784C2.00833 15.7139 2 15.6457 2 15.5756C2 15.5055 2.00833 15.429 2.00833 15.3589C2.00833 15.2889 2.01667 15.2204 2.01667 15.1506C2.01667 15.0808 2.03972 15.0116 2.05001 14.9423C2.0603 14.8729 2.06967 14.8027 2.08335 14.7339C2.09703 14.6651 2.10799 14.6019 2.12502 14.5339C2.14206 14.4659 2.16302 14.3927 2.18337 14.3256C2.20372 14.2585 2.22643 14.1916 2.25005 14.1256C2.27366 14.0595 2.29823 13.9987 2.32506 13.9339C2.35189 13.8691 2.37843 13.8056 2.40841 13.7422C2.43838 13.6788 2.47538 13.6124 2.50843 13.5505C2.54148 13.4887 2.5724 13.4273 2.60844 13.3672C2.64449 13.307 2.68618 13.2505 2.72513 13.1922C2.76408 13.1339 2.80006 13.0735 2.84182 13.0172C2.88359 12.9608 2.9307 12.9047 2.97518 12.8505C3.01966 12.7963 3.06145 12.7441 3.10854 12.6922C3.15562 12.6402 3.20899 12.5917 3.25856 12.5421C3.30814 12.4926 3.35664 12.4476 3.40859 12.4005C3.46054 12.3534 3.51276 12.3033 3.56695 12.2588C3.62115 12.2143 3.67733 12.1756 3.73365 12.1338C3.78997 12.092 3.84205 12.0478 3.90035 12.0088C3.95866 11.9698 4.02359 11.9365 4.08371 11.9005C4.14386 11.8644 4.20523 11.8252 4.26708 11.7921C4.32891 11.759 4.38706 11.7304 4.45045 11.7004C4.51384 11.6704 4.57737 11.6356 4.64215 11.6088C4.70695 11.5819 4.77618 11.5574 4.84219 11.5338C4.90821 11.5101 4.97512 11.4875 5.04222 11.4671C5.10932 11.4467 5.17424 11.4342 5.24226 11.4171C5.31028 11.4 5.38185 11.3808 5.45063 11.3671C5.51941 11.3534 5.58963 11.3441 5.659 11.3338C5.72837 11.3234 5.79758 11.3088 5.86737 11.3088C5.93717 11.3088 6.00571 11.2921 6.07575 11.2921C6.14578 11.2921 6.21399 11.2838 6.28412 11.2838L7.05092 11.2838C7.06153 11.2102 7.07037 11.1401 7.08426 11.0671C7.09815 10.994 7.11714 10.9227 7.13427 10.8504C7.1514 10.7781 7.16395 10.7052 7.18428 10.6337C7.20462 10.5622 7.22746 10.4876 7.25096 10.417C7.27446 10.3465 7.29935 10.2781 7.32597 10.2087C7.3526 10.1393 7.38796 10.0685 7.41766 10.0004C7.44737 9.9322 7.47662 9.86714 7.50934 9.80035C7.54204 9.73357 7.57371 9.66558 7.60936 9.60035C7.64501 9.53509 7.67917 9.47227 7.71771 9.40867C7.75623 9.34509 7.80142 9.27881 7.84273 9.217C7.88407 9.15518 7.92373 9.10189 7.96776 9.04199C8.01181 8.98208 8.05445 8.91654 8.10112 8.85865C8.14778 8.80077 8.20193 8.74772 8.25114 8.69197C8.30035 8.63623 8.34954 8.5788 8.40117 8.5253C8.4528 8.4718 8.50556 8.41809 8.55953 8.36696C8.61351 8.3158 8.67003 8.26564 8.72623 8.21695C8.78243 8.16828 8.83462 8.12141 8.89293 8.07528C8.95124 8.02914 9.01599 7.98542 9.07629 7.94194C9.13662 7.89844 9.19748 7.85768 9.25966 7.81693C9.32186 7.77617 9.37907 7.73821 9.44303 7.70026C9.50696 7.66233 9.57749 7.62698 9.64306 7.59192C9.70864 7.55686 9.77602 7.52401 9.8431 7.49192C9.91018 7.45983 9.97471 7.42931 10.0431 7.40025C10.1116 7.37116 10.1818 7.34291 10.2515 7.31691C10.3212 7.29091 10.3891 7.26476 10.4599 7.24191C10.5306 7.21903 10.6049 7.1949 10.6766 7.17524C10.7483 7.15555 10.8208 7.1417 10.8933 7.12523C10.9658 7.10877 11.0368 7.08845 11.11 7.07523C11.1832 7.06201 11.253 7.05184 11.3267 7.0419C11.4004 7.03195 11.4777 7.01689 11.5517 7.01689C11.6258 7.01689 11.7025 7.00856 11.7768 7.00856C11.8511 7.00856 11.9191 7.00023 11.9935 7.00023C12.0679 7.00023 12.1442 7.00856 12.2185 7.00856C12.2928 7.00856 12.3695 7.01689 12.4436 7.01689C12.5176 7.01689 12.5866 7.03199 12.6603 7.0419C12.734 7.0518 12.8121 7.06205 12.8853 7.07523C12.9585 7.0884 13.0295 7.10881 13.102 7.12523C13.1746 7.14166 13.247 7.15561 13.3187 7.17524C13.3904 7.19487 13.4647 7.21909 13.5354 7.24191C13.6062 7.26474 13.6741 7.29095 13.7438 7.31691C13.8135 7.34285 13.8837 7.3712 13.9522 7.40025C14.0207 7.42927 14.0851 7.45986 14.1522 7.49192C14.2193 7.52397 14.2867 7.5569 14.3523 7.59192C14.4179 7.62694 14.48 7.66235 14.544 7.70026C14.6079 7.73817 14.6734 7.77621 14.7357 7.81693C14.7979 7.85766 14.8587 7.8985 14.919 7.94194C14.9794 7.9854 15.044 8.02918 15.1024 8.07528C15.1607 8.12137 15.2129 8.16829 15.2691 8.21695C15.3253 8.2656 15.3818 8.31584 15.4358 8.36696C15.4898 8.41807 15.5425 8.47184 15.5942 8.5253C15.6458 8.57876 15.695 8.63625 15.7442 8.69197C15.7934 8.7477 15.8392 8.80079 15.8859 8.85865C15.9326 8.91652 15.9835 8.97379 16.0276 9.03365C16.0716 9.09354 16.1112 9.15521 16.1526 9.217C16.1939 9.27878 16.239 9.34509 16.2776 9.40867C16.3162 9.47225 16.3503 9.53513 16.386 9.60035C16.4217 9.66556 16.4532 9.73361 16.486 9.80035C16.5187 9.86712 16.5563 9.93222 16.586 10.0004C16.6158 10.0685 16.6427 10.1393 16.6693 10.2087C16.696 10.2781 16.7208 10.3465 16.7444 10.417C16.7679 10.4876 16.7907 10.5539 16.811 10.6254C16.8314 10.6969 16.8439 10.7697 16.861 10.8421C16.8782 10.9144 16.8971 10.994 16.9111 11.0671C16.925 11.1401 16.9337 11.2102 16.9444 11.2838L17.7112 11.2838C17.8598 11.2838 18.0072 11.2718 18.153 11.2504L18.3697 11.2088C18.4018 11.2088 18.4379 11.1924 18.4697 11.1838C18.5015 11.1751 18.5299 11.1685 18.5614 11.1587C18.5929 11.149 18.6219 11.1362 18.653 11.1254C18.6842 11.1146 18.714 11.104 18.7447 11.0921C18.7755 11.0802 18.8061 11.0717 18.8364 11.0587C18.8667 11.0458 18.8983 11.0311 18.9281 11.0171C18.9579 11.0031 18.9905 10.9905 19.0198 10.9754C19.0491 10.9603 19.0744 10.9415 19.1031 10.9254C19.1319 10.9093 19.1666 10.8925 19.1948 10.8754C19.223 10.8583 19.2506 10.8434 19.2782 10.8254C19.3057 10.8074 19.3262 10.7861 19.3532 10.7671C19.3801 10.7481 19.4103 10.7287 19.4365 10.7087C19.4628 10.6888 19.486 10.6712 19.5115 10.6504C19.5371 10.6296 19.5618 10.6054 19.5865 10.5837C19.6113 10.562 19.6375 10.5396 19.6616 10.5171C19.6856 10.4945 19.7133 10.4738 19.7366 10.4504C19.7598 10.4271 19.7808 10.3994 19.8033 10.3754C19.8257 10.3513 19.8483 10.3335 19.8699 10.3087C19.8916 10.2839 19.9075 10.2509 19.9283 10.2254C19.949 10.1998 19.9751 10.1766 19.995 10.1504C20.0148 10.1241 20.0344 10.1023 20.0533 10.0754C20.0722 10.0485 20.0853 10.0196 20.1033 9.99203C20.1213 9.96447 20.1446 9.93686 20.1617 9.90869C20.1787 9.88055 20.1956 9.84575 20.2117 9.81702C20.2277 9.78829 20.2383 9.76295 20.2533 9.73369C20.2684 9.70441 20.2893 9.67178 20.3033 9.64201C20.3174 9.61225 20.3237 9.58891 20.3367 9.55868C20.3497 9.52844 20.3664 9.49765 20.3784 9.46701C20.3903 9.43634 20.4008 9.40641 20.4117 9.37534C20.4226 9.34428 20.4352 9.30674 20.445 9.27533C20.4549 9.2439 20.4613 9.2154 20.47 9.18366C20.4788 9.15192 20.495 9.11567 20.495 9.08366C20.5037 9.04699 20.5201 9.01229 20.5201 8.97532C20.5201 8.93834 20.5367 8.90419 20.5367 8.86698C20.5367 8.82975 20.5534 8.78773 20.5534 8.75031C20.5534 8.7129 20.5617 8.67953 20.5617 8.64197C20.5617 8.60441 20.5701 8.56293 20.5701 8.5253C20.5701 8.48766 20.5701 8.45462 20.5701 8.41696C20.5701 8.37928 20.5701 8.33791 20.5701 8.30029C20.5701 8.26265 20.5617 8.22947 20.5617 8.19195C20.5617 8.15441 20.5534 8.11264 20.5534 8.07528C20.5534 8.03789 20.5367 8.00411 20.5367 7.96694C20.5367 7.92977 20.5117 7.8955 20.5117 7.8586C20.5117 7.8217 20.4957 7.77849 20.4867 7.74193C20.4777 7.70536 20.4722 7.66978 20.4617 7.63359C20.4513 7.5974 20.4402 7.561 20.4284 7.52525C20.4165 7.48951 20.4 7.45217 20.3867 7.41691C20.3734 7.38166 20.3597 7.3516 20.345 7.31691C20.3361 7.29572 20.3295 7.2712 20.32 7.25024C20.3106 7.22928 20.2966 7.21263 20.2867 7.1919C20.2768 7.17118 20.2721 7.14572 20.2617 7.12523C20.2513 7.10476 20.2393 7.08711 20.2283 7.0669C20.2174 7.04668 20.2064 7.0285 20.195 7.00856C20.1836 6.98862 20.1735 6.96989 20.1617 6.95023C20.1498 6.93056 20.1323 6.91125 20.12 6.89189C20.1076 6.87251 20.0995 6.85262 20.0866 6.83355C20.0738 6.81449 20.0582 6.79395 20.045 6.77522C20.0317 6.75647 20.017 6.7353 20.0033 6.71688C19.9896 6.69846 19.9758 6.68497 19.9616 6.66688C19.9474 6.64879 19.9345 6.62628 19.9199 6.60854C19.9053 6.59083 19.8933 6.57592 19.8783 6.55854C19.8632 6.54118 19.8437 6.52555 19.8283 6.50854C19.8128 6.49153 19.8024 6.47516 19.7866 6.45854C19.7707 6.44191 19.7528 6.42477 19.7366 6.40853C19.7203 6.3923 19.7032 6.37437 19.6866 6.35853C19.6699 6.34269 19.6536 6.32396 19.6366 6.30853C19.6195 6.2931 19.604 6.28188 19.5865 6.26686C19.5692 6.25184 19.546 6.23978 19.5282 6.22519C19.5104 6.2106 19.4963 6.18935 19.4782 6.17519C19.4601 6.16103 19.4383 6.14723 19.4199 6.13352C19.4014 6.11979 19.3886 6.11345 19.3698 6.10019C19.3511 6.08692 19.3306 6.07131 19.3115 6.05852C19.2924 6.04572 19.2725 6.02919 19.2532 6.01685C19.2338 6.00451 19.2145 5.99537 19.1948 5.98351C19.1751 5.97166 19.1564 5.96157 19.1365 5.95018C19.1165 5.93879 19.09 5.92774 19.0698 5.91684C19.0495 5.90595 19.0319 5.89392 19.0114 5.88351C18.991 5.8731 18.9738 5.86008 18.9531 5.85017C18.9324 5.84027 18.9074 5.83459 18.8864 5.82517C18.8655 5.81578 18.8493 5.80073 18.8281 5.79184C18.7843 5.7733 18.7394 5.75815 18.6947 5.74184C18.6501 5.72553 18.6068 5.71421 18.5614 5.70017C18.516 5.68612 18.4657 5.67024 18.4197 5.6585C18.3736 5.64676 18.3246 5.63456 18.278 5.62516C18.2314 5.61575 18.1916 5.60016 18.1446 5.60016C18.0976 5.60016 18.0502 5.5835 18.0029 5.5835C17.9556 5.5835 17.9087 5.57516 17.8612 5.57516C17.8138 5.57516 17.7587 5.57516 17.7112 5.57516L8.33449 5.57516C8.32342 5.618 8.31422 5.6579 8.30115 5.70017C8.2881 5.74244 8.2745 5.78355 8.25948 5.82517C8.24447 5.8668 8.22641 5.9093 8.20947 5.95018C8.19255 5.99106 8.17827 6.03512 8.15946 6.07519C8.14065 6.11523 8.12176 6.15273 8.10112 6.19186C8.08047 6.23098 8.05688 6.2704 8.03444 6.30853C8.01199 6.34666 7.99194 6.37982 7.96776 6.41687C7.94357 6.45392 7.91863 6.48933 7.89274 6.52521C7.86686 6.56109 7.83692 6.59889 7.8094 6.63354C7.78187 6.66817 7.75513 6.70021 7.72605 6.73355C7.69696 6.76687 7.66497 6.80162 7.63436 6.83355C7.60375 6.86551 7.57474 6.89473 7.54268 6.92522C7.51062 6.95571 7.47611 6.98793 7.44266 7.01689C7.40922 7.04586 7.3774 7.07285 7.34264 7.10023C7.30789 7.12762 7.27027 7.15783 7.23429 7.18357C7.19831 7.20929 7.16307 7.23453 7.12594 7.25857C7.0888 7.28262 7.04746 7.30296 7.00925 7.32524C6.97102 7.34753 6.93177 7.37142 6.89256 7.39191C6.85335 7.4124 6.816 7.43159 6.77587 7.45025C6.73575 7.4689 6.6918 7.48347 6.65085 7.50025C6.60992 7.51703 6.57585 7.53541 6.53416 7.55025C6.49249 7.56512 6.44314 7.57901 6.4008 7.59192C6.35849 7.60481 6.31866 7.61434 6.27578 7.62526C6.2329 7.63617 6.19409 7.64966 6.15076 7.65859C6.10741 7.66752 6.0611 7.68359 6.0174 7.68359C5.9737 7.68359 5.92802 7.70026 5.88404 7.70026C5.84007 7.70026 5.79485 7.70859 5.75069 7.70859C5.70654 7.70859 5.66157 7.71693 5.61733 7.71693C5.57308 7.71693 5.5282 7.71693 5.48397 7.71693C5.43974 7.71693 5.40308 7.70859 5.35895 7.70859C5.31484 7.70859 5.2695 7.69193 5.22559 7.69193C5.18168 7.69193 5.13585 7.67526 5.09223 7.67526C5.04861 7.67526 5.0021 7.65969 4.95887 7.65026C4.91564 7.64082 4.87659 7.62835 4.83385 7.61692C4.79111 7.6055 4.751 7.59699 4.70883 7.58359C4.66665 7.57019 4.6253 7.54894 4.58381 7.53359C4.54231 7.51825 4.49953 7.50918 4.45878 7.49192C4.41805 7.47467 4.37365 7.4527 4.33376 7.43358C4.29385 7.41446 4.25604 7.3962 4.21707 7.37524C4.17812 7.35429 4.13834 7.33133 4.10038 7.30857C4.06243 7.28582 4.02889 7.25805 3.99203 7.23357C3.95518 7.2091 3.91935 7.18474 3.88368 7.15857C3.848 7.13241 3.80974 7.11136 3.77532 7.08356C3.7409 7.05577 3.7084 7.02125 3.67531 6.99189C3.64221 6.96254 3.60698 6.9311 3.57529 6.90022C3.54359 6.86936 3.51383 6.84086 3.4836 6.80855C3.45338 6.77625 3.42062 6.74222 3.39192 6.70855C3.36323 6.67487 3.33567 6.64351 3.30857 6.60854C3.28147 6.57356 3.25901 6.5364 3.23356 6.5002C3.20811 6.46401 3.18228 6.42919 3.15855 6.39187C3.1348 6.35454 3.11385 6.31359 3.09187 6.27519C3.06988 6.23681 3.04536 6.1979 3.02519 6.15852C3.00501 6.11916 2.98517 6.08211 2.96684 6.04185C2.94852 6.00157 2.93327 5.95792 2.91683 5.91684C2.9004 5.87577 2.88967 5.83364 2.87516 5.79184C2.86065 5.75006 2.84604 5.70926 2.83349 5.66683C2.82093 5.62441 2.81072 5.58478 2.80015 5.54183C2.78957 5.49888 2.77537 5.45189 2.76681 5.40849C2.75824 5.36509 2.7418 5.32723 2.7418 5.28348C2.7418 5.23973 2.72513 5.19415 2.72513 5.15014C2.72513 5.10614 2.7168 5.06099 2.7168 5.0168C2.7168 4.97264 2.7168 4.9277 2.7168 4.88346C2.7168 4.83922 2.7168 4.79433 2.7168 4.75012C2.7168 4.70592 2.72513 4.66087 2.72513 4.61679C2.72513 4.5727 2.73347 4.52732 2.73347 4.48345C2.73347 4.4396 2.75847 4.402 2.75847 4.35844C2.75847 4.3149 2.77369 4.26825 2.78348 4.2251C2.79327 4.18195 2.80503 4.14273 2.81682 4.1001C2.8286 4.05746 2.84474 4.00881 2.85849 3.96676C2.87224 3.92471 2.88448 3.88311 2.90016 3.84175C2.91585 3.80039 2.93258 3.76567 2.95017 3.72508C2.96776 3.68449 2.98906 3.6398 3.00852 3.60007C3.02797 3.56034 3.04558 3.52219 3.06686 3.4834C3.08814 3.44462 3.11048 3.40448 3.13354 3.36673C3.1566 3.32897 3.17543 3.29503 3.20022 3.25839C3.22501 3.22175 3.25711 3.18551 3.28357 3.15005C3.31003 3.1146 3.3305 3.0759 3.35858 3.04171C3.38666 3.00752 3.42063 2.97456 3.45027 2.94171C3.4799 2.90886 3.51082 2.88148 3.54195 2.85004C3.57308 2.8186 3.60108 2.78832 3.63363 2.75837C3.66619 2.72841 3.69974 2.69511 3.73365 2.6667C3.76756 2.63828 3.80681 2.61017 3.842 2.58336C3.8772 2.55655 3.91396 2.5335 3.95036 2.50836C3.98675 2.48321 4.02118 2.45678 4.05871 2.43335C4.09624 2.40992 4.13682 2.38835 4.1754 2.36668C4.21398 2.34502 4.25255 2.31986 4.29209 2.30001C4.33162 2.28017 4.36836 2.268 4.40877 2.25001C4.44919 2.23202 4.4926 2.21611 4.5338 2.20001C4.57502 2.18391 4.61692 2.16417 4.65882 2.15001C4.70074 2.13584 4.74131 2.12054 4.78384 2.10834C4.82637 2.09613 4.86583 2.08522 4.90886 2.075C4.95192 2.06479 4.99876 2.05 5.04222 2.05C5.08571 2.05 5.13176 2.025 5.17558 2.025C5.2194 2.025 5.25655 2.01667 5.3006 2.01667C5.34465 2.01667 5.38977 2 5.43396 2C5.47817 2 5.52307 2 5.56732 2ZM18.428 17.7174C18.4046 17.7174 18.3847 17.7174 18.3613 17.7174C18.3379 17.7174 18.3096 17.7257 18.2863 17.7257C18.263 17.7257 18.2428 17.7341 18.2196 17.7341C18.1965 17.7341 18.1759 17.7424 18.153 17.7424C18.13 17.7424 18.1006 17.7591 18.0779 17.7591C18.0552 17.7591 18.0337 17.7757 18.0113 17.7757C17.9889 17.7757 17.9666 17.8007 17.9446 17.8007C17.9225 17.8007 17.8995 17.8168 17.8779 17.8257C17.8563 17.8346 17.8407 17.8407 17.8196 17.8507C17.7984 17.8607 17.7735 17.8731 17.7529 17.8841C17.7322 17.8951 17.7146 17.9054 17.6945 17.9174C17.6745 17.9294 17.6556 17.9461 17.6362 17.9591C17.6167 17.972 17.5967 17.9785 17.5778 17.9924C17.559 18.0063 17.5376 18.0276 17.5195 18.0424C17.5014 18.0572 17.4868 18.0684 17.4695 18.0841C17.4522 18.0998 17.4361 18.1175 17.4195 18.1341C17.4029 18.1506 17.3852 18.1667 17.3695 18.1841C17.3538 18.2014 17.3343 18.216 17.3195 18.2341C17.3046 18.2521 17.2917 18.2736 17.2778 18.2924C17.2639 18.3112 17.2491 18.3313 17.2361 18.3507C17.2231 18.3702 17.2148 18.389 17.2028 18.4091C17.1907 18.4291 17.1805 18.4468 17.1694 18.4674C17.1584 18.4881 17.1461 18.5129 17.1361 18.5341C17.1261 18.5552 17.1117 18.5708 17.1028 18.5924C17.0938 18.614 17.0778 18.6371 17.0778 18.6591C17.0778 18.6811 17.0611 18.7034 17.0611 18.7258C17.0611 18.7481 17.0444 18.7697 17.0444 18.7924C17.0444 18.8151 17.0277 18.8445 17.0277 18.8674C17.0277 18.8904 17.0111 18.911 17.0111 18.9341C17.0111 18.9572 17.0027 18.9775 17.0027 19.0008C17.0027 19.0241 17.0027 19.0524 17.0027 19.0758C17.0027 19.0991 16.9944 19.119 16.9944 19.1424C16.9944 19.1658 17.0027 19.1941 17.0027 19.2174C17.0027 19.2408 17.0027 19.2608 17.0027 19.2841C17.0027 19.3074 17.0111 19.3276 17.0111 19.3508C17.0111 19.3739 17.0277 19.4028 17.0277 19.4258C17.0277 19.4487 17.0444 19.4698 17.0444 19.4925C17.0444 19.5152 17.0611 19.5367 17.0611 19.5591C17.0611 19.5815 17.0778 19.6038 17.0778 19.6258C17.0778 19.6478 17.0938 19.6708 17.1028 19.6925C17.1117 19.7141 17.1261 19.7297 17.1361 19.7508C17.1461 19.772 17.1584 19.7969 17.1694 19.8175C17.1805 19.8381 17.1907 19.8558 17.2028 19.8758C17.2148 19.8959 17.2231 19.9147 17.2361 19.9341C17.2491 19.9536 17.2638 19.9737 17.2778 19.9925C17.2917 20.0113 17.3046 20.0328 17.3195 20.0508C17.3343 20.0689 17.3538 20.0835 17.3695 20.1008C17.3852 20.1181 17.4029 20.1343 17.4195 20.1508C17.4361 20.1674 17.4522 20.1851 17.4695 20.2008C17.4868 20.2165 17.5014 20.236 17.5195 20.2508C17.5376 20.2657 17.559 20.2786 17.5778 20.2925C17.5967 20.3064 17.6167 20.3212 17.6362 20.3342C17.6556 20.3472 17.6745 20.3555 17.6945 20.3675C17.7146 20.3795 17.7322 20.3898 17.7529 20.4008C17.7735 20.4119 17.7984 20.4242 17.8196 20.4342C17.8407 20.4442 17.8563 20.4586 17.8779 20.4675C17.8995 20.4764 17.9225 20.4925 17.9446 20.4925C17.9666 20.4925 17.9889 20.5092 18.0113 20.5092C18.0337 20.5092 18.0552 20.5258 18.0779 20.5258C18.1006 20.5258 18.13 20.5425 18.153 20.5425C18.1759 20.5425 18.1965 20.5592 18.2196 20.5592C18.2428 20.5592 18.263 20.5675 18.2863 20.5675C18.3096 20.5675 18.3379 20.5675 18.3613 20.5675C18.3847 20.5675 18.4046 20.5758 18.428 20.5758C18.4514 20.5758 18.4713 20.5675 18.4947 20.5675C18.518 20.5675 18.5464 20.5675 18.5697 20.5675C18.593 20.5675 18.6132 20.5592 18.6364 20.5592C18.6595 20.5592 18.6801 20.5425 18.7031 20.5425C18.726 20.5425 18.7554 20.5258 18.7781 20.5258C18.8007 20.5258 18.8224 20.5092 18.8447 20.5092C18.8671 20.5092 18.8894 20.4925 18.9114 20.4925C18.9334 20.4925 18.9565 20.4681 18.9781 20.4592C18.9997 20.4502 19.0153 20.4442 19.0364 20.4342C19.0576 20.4242 19.0825 20.4119 19.1031 20.4008C19.1237 20.3898 19.1414 20.3795 19.1615 20.3675C19.1815 20.3555 19.2004 20.3472 19.2198 20.3342C19.2393 20.3212 19.2594 20.3064 19.2782 20.2925C19.297 20.2786 19.3184 20.2657 19.3365 20.2508C19.3546 20.236 19.3692 20.2165 19.3865 20.2008C19.4038 20.1851 19.42 20.1674 19.4365 20.1508C19.4531 20.1343 19.4708 20.1181 19.4865 20.1008C19.5022 20.0835 19.5134 20.0689 19.5282 20.0508C19.543 20.0328 19.5643 20.0113 19.5782 19.9925C19.5921 19.9737 19.6069 19.9536 19.6199 19.9341C19.6329 19.9147 19.6412 19.8959 19.6532 19.8758C19.6652 19.8558 19.6755 19.8381 19.6866 19.8175C19.6976 19.7969 19.7099 19.7719 19.7199 19.7508C19.7299 19.7297 19.736 19.7141 19.7449 19.6925C19.7539 19.6709 19.7699 19.6478 19.7699 19.6258C19.7699 19.6038 19.7949 19.5815 19.7949 19.5591C19.7949 19.5368 19.8116 19.5151 19.8116 19.4925C19.8116 19.4698 19.8283 19.4487 19.8283 19.4258C19.8283 19.4029 19.8449 19.3739 19.8449 19.3508C19.8449 19.3277 19.8533 19.3074 19.8533 19.2841C19.8533 19.2609 19.8533 19.2408 19.8533 19.2174C19.8533 19.1941 19.8533 19.1658 19.8533 19.1424C19.8533 19.1191 19.8533 19.0991 19.8533 19.0758C19.8533 19.0524 19.8533 19.024 19.8533 19.0008C19.8533 18.9775 19.8449 18.9572 19.8449 18.9341C19.8449 18.911 19.8283 18.8904 19.8283 18.8674C19.8283 18.8445 19.8116 18.8151 19.8116 18.7924C19.8116 18.7698 19.7949 18.7481 19.7949 18.7258C19.7949 18.7034 19.7699 18.6811 19.7699 18.6591C19.7699 18.6371 19.7539 18.6224 19.7449 18.6008C19.736 18.5792 19.7299 18.5552 19.7199 18.5341C19.7099 18.513 19.6976 18.488 19.6866 18.4674C19.6755 18.4468 19.6652 18.4291 19.6532 18.4091C19.6412 18.389 19.6329 18.3702 19.6199 18.3507C19.6069 18.3313 19.5921 18.3112 19.5782 18.2924C19.5643 18.2736 19.543 18.2521 19.5282 18.2341C19.5134 18.216 19.5022 18.2014 19.4865 18.1841C19.4708 18.1667 19.4531 18.1506 19.4365 18.1341C19.42 18.1175 19.4038 18.0998 19.3865 18.0841C19.3692 18.0684 19.3546 18.0572 19.3365 18.0424C19.3184 18.0276 19.297 18.0063 19.2782 17.9924C19.2594 17.9785 19.2393 17.972 19.2198 17.9591C19.2004 17.9461 19.1815 17.9294 19.1615 17.9174C19.1414 17.9054 19.1237 17.8951 19.1031 17.8841C19.0825 17.873 19.0576 17.8607 19.0364 17.8507C19.0153 17.8407 18.9997 17.8347 18.9781 17.8257C18.9565 17.8168 18.9334 17.8007 18.9114 17.8007C18.8894 17.8007 18.8671 17.7757 18.8447 17.7757C18.8224 17.7757 18.8007 17.7591 18.7781 17.7591C18.7554 17.7591 18.726 17.7424 18.7031 17.7424C18.6801 17.7424 18.6595 17.7341 18.6364 17.7341C18.6132 17.7341 18.593 17.7257 18.5697 17.7257C18.5464 17.7257 18.518 17.7174 18.4947 17.7174C18.4713 17.7174 18.4514 17.7174 18.428 17.7174ZM12.0018 8.42529C11.9434 8.42529 11.8852 8.43363 11.8268 8.43363C11.7684 8.43363 11.71 8.44196 11.6518 8.44196C11.5936 8.44196 11.5346 8.45839 11.4767 8.46696C11.4189 8.47554 11.359 8.48889 11.3017 8.5003C11.2444 8.5117 11.1834 8.51943 11.1267 8.53363C11.07 8.54783 11.0159 8.56666 10.96 8.58363C10.904 8.60061 10.8483 8.61395 10.7933 8.63363C10.7382 8.65334 10.6889 8.67794 10.6349 8.7003C10.5809 8.72267 10.5211 8.75033 10.4682 8.77531C10.4154 8.80031 10.3697 8.82275 10.3182 8.85031C10.2666 8.87787 10.21 8.90361 10.1598 8.93365C10.1097 8.96371 10.0584 9.00117 10.0098 9.03365C9.96119 9.06614 9.91505 9.09883 9.8681 9.13366C9.82114 9.16848 9.77993 9.2049 9.73475 9.242C9.68956 9.27907 9.6447 9.31108 9.60139 9.35033C9.55808 9.38957 9.5177 9.43401 9.47637 9.47534C9.43503 9.51667 9.39059 9.55704 9.35134 9.60035C9.31208 9.64365 9.27175 9.68851 9.23466 9.73369C9.19758 9.77886 9.16113 9.8284 9.1263 9.87536C9.09147 9.92229 9.05877 9.96842 9.02629 10.017C8.9938 10.0656 8.96466 10.1169 8.9346 10.167C8.90454 10.2172 8.87882 10.2655 8.85125 10.317C8.82369 10.3686 8.79289 10.4226 8.7679 10.4754C8.74292 10.5282 8.72359 10.5797 8.70123 10.6337C8.67886 10.6877 8.65424 10.7454 8.63455 10.8004C8.61485 10.8554 8.59318 10.9112 8.5762 10.9671C8.55923 11.023 8.54873 11.077 8.53453 11.1337C8.52033 11.1905 8.50424 11.2431 8.49285 11.3004C8.48145 11.3577 8.47643 11.4176 8.46785 11.4754C8.45927 11.5332 8.44284 11.5923 8.44284 11.6504C8.44284 11.7086 8.43451 11.7671 8.43451 11.8254C8.43451 11.8838 8.42617 11.942 8.42617 12.0005C8.42617 12.0589 8.43451 12.1171 8.43451 12.1755C8.43451 12.2338 8.44284 12.2923 8.44284 12.3505C8.44284 12.4087 8.45927 12.4677 8.46785 12.5255C8.47643 12.5833 8.48145 12.6432 8.49285 12.7005C8.50424 12.7578 8.52033 12.8105 8.53453 12.8672C8.54873 12.9239 8.55923 12.9779 8.5762 13.0338C8.59318 13.0898 8.61485 13.1455 8.63455 13.2005C8.65424 13.2555 8.67886 13.3132 8.70123 13.3672C8.72359 13.4212 8.74292 13.4727 8.7679 13.5255C8.79289 13.5784 8.82369 13.6323 8.85125 13.6839C8.87882 13.7354 8.90454 13.7837 8.9346 13.8339C8.96466 13.884 8.9938 13.9353 9.02629 13.9839C9.05877 14.0325 9.09147 14.0786 9.1263 14.1256C9.16113 14.1725 9.19758 14.222 9.23466 14.2672C9.27175 14.3124 9.31208 14.3573 9.35134 14.4006C9.39059 14.4439 9.43503 14.4842 9.47637 14.5256C9.5177 14.5669 9.55808 14.6113 9.60139 14.6506C9.6447 14.6898 9.68956 14.7218 9.73475 14.7589C9.77993 14.796 9.82114 14.8324 9.8681 14.8673C9.91505 14.9021 9.96119 14.9348 10.0098 14.9673C10.0584 14.9997 10.1097 15.0372 10.1598 15.0673C10.21 15.0973 10.2666 15.123 10.3182 15.1506C10.3697 15.1782 10.4154 15.2006 10.4682 15.2256C10.5211 15.2506 10.5809 15.2782 10.6349 15.3006C10.6889 15.323 10.7382 15.3476 10.7933 15.3673C10.8483 15.387 10.904 15.4003 10.96 15.4173C11.0159 15.4343 11.07 15.4531 11.1267 15.4673C11.1834 15.4815 11.2444 15.4892 11.3017 15.5006C11.359 15.512 11.4189 15.5254 11.4767 15.5339C11.5346 15.5425 11.5936 15.5506 11.6518 15.5506C11.71 15.5506 11.7684 15.5673 11.8268 15.5673C11.8852 15.5673 11.9434 15.5756 12.0018 15.5756C12.0603 15.5756 12.1185 15.5673 12.1769 15.5673C12.2353 15.5673 12.2937 15.5506 12.3519 15.5506C12.4101 15.5506 12.4608 15.5425 12.5186 15.5339C12.5764 15.5254 12.6363 15.512 12.6936 15.5006C12.751 15.4892 12.8119 15.4815 12.8687 15.4673C12.9254 15.4531 12.9794 15.4343 13.0354 15.4173C13.0913 15.4003 13.147 15.387 13.202 15.3673C13.2571 15.3476 13.3147 15.323 13.3687 15.3006C13.4228 15.2782 13.4743 15.2506 13.5271 15.2256C13.5799 15.2006 13.6339 15.1782 13.6855 15.1506C13.737 15.123 13.7854 15.0973 13.8355 15.0673C13.8856 15.0372 13.9369 14.9997 13.9855 14.9673C14.0341 14.9348 14.0803 14.9021 14.1272 14.8673C14.1742 14.8324 14.2154 14.796 14.2606 14.7589C14.3058 14.7218 14.3506 14.6898 14.3939 14.6506C14.4372 14.6113 14.486 14.5669 14.5273 14.5256C14.5686 14.4842 14.6047 14.4439 14.644 14.4006C14.6832 14.3573 14.7236 14.3124 14.7607 14.2672C14.7978 14.222 14.8342 14.1725 14.869 14.1256C14.9038 14.0786 14.9366 14.0325 14.969 13.9839C15.0015 13.9353 15.0307 13.884 15.0607 13.8339C15.0908 13.7837 15.1248 13.7354 15.1524 13.6839C15.18 13.6323 15.2024 13.5784 15.2274 13.5255C15.2524 13.4727 15.2801 13.4212 15.3024 13.3672C15.3248 13.3132 15.3411 13.2555 15.3608 13.2005C15.3805 13.1455 15.4021 13.0898 15.4191 13.0338C15.4361 12.9779 15.4466 12.9239 15.4608 12.8672C15.475 12.8105 15.4911 12.7578 15.5025 12.7005C15.5139 12.6432 15.5189 12.5833 15.5275 12.5255C15.536 12.4677 15.5525 12.4087 15.5525 12.3505C15.5525 12.2923 15.5691 12.2338 15.5691 12.1755C15.5691 12.1171 15.5691 12.0589 15.5691 12.0005C15.5691 11.942 15.5691 11.8838 15.5691 11.8254C15.5691 11.7671 15.5525 11.7086 15.5525 11.6504C15.5525 11.5923 15.536 11.5332 15.5275 11.4754C15.5189 11.4176 15.5139 11.3577 15.5025 11.3004C15.4911 11.2431 15.475 11.1905 15.4608 11.1337C15.4466 11.077 15.4361 11.023 15.4191 10.9671C15.4021 10.9112 15.3805 10.8554 15.3608 10.8004C15.3411 10.7454 15.3248 10.6877 15.3024 10.6337C15.2801 10.5797 15.2524 10.5282 15.2274 10.4754C15.2024 10.4226 15.18 10.3686 15.1524 10.317C15.1248 10.2655 15.0908 10.2172 15.0607 10.167C15.0307 10.1169 15.0015 10.0656 14.969 10.017C14.9366 9.96842 14.9038 9.92229 14.869 9.87536C14.8342 9.8284 14.7978 9.77886 14.7607 9.73369C14.7236 9.68851 14.6832 9.64365 14.644 9.60035C14.6047 9.55704 14.5686 9.51667 14.5273 9.47534C14.486 9.43401 14.4372 9.38957 14.3939 9.35033C14.3506 9.31108 14.3058 9.27907 14.2606 9.242C14.2154 9.2049 14.1742 9.16848 14.1272 9.13366C14.0803 9.09883 14.0341 9.06614 13.9855 9.03365C13.9369 9.00117 13.8856 8.96371 13.8355 8.93365C13.7854 8.90361 13.737 8.87787 13.6855 8.85031C13.6339 8.82275 13.5799 8.80031 13.5271 8.77531C13.4743 8.75033 13.4228 8.72267 13.3687 8.7003C13.3147 8.67794 13.2571 8.65334 13.202 8.63363C13.147 8.61395 13.0913 8.60061 13.0354 8.58363C12.9794 8.56666 12.9254 8.54783 12.8687 8.53363C12.8119 8.51943 12.751 8.5117 12.6936 8.5003C12.6363 8.48889 12.5764 8.47554 12.5186 8.46696C12.4608 8.45839 12.4101 8.44196 12.3519 8.44196C12.2937 8.44196 12.2353 8.43363 12.1769 8.43363C12.1185 8.43363 12.0603 8.42529 12.0018 8.42529ZM14.1522 10.2837C14.1614 10.2837 14.1685 10.3004 14.1772 10.3004C14.186 10.3004 14.1939 10.3254 14.2022 10.3254C14.2106 10.3254 14.2272 10.3418 14.2272 10.3504C14.2272 10.3589 14.2522 10.3665 14.2522 10.3754C14.2522 10.3843 14.2772 10.3994 14.2772 10.4087C14.2772 10.418 14.2939 10.4241 14.2939 10.4337C14.2939 10.4433 14.3106 10.4571 14.3106 10.4671C14.3106 10.477 14.3273 10.4818 14.3273 10.4921C14.3273 10.5023 14.3439 10.5149 14.3439 10.5254C14.3439 10.5359 14.3606 10.548 14.3606 10.5587C14.3606 10.5694 14.3773 10.5811 14.3773 10.5921C14.3773 10.603 14.3856 10.6143 14.3856 10.6254C14.3856 10.6365 14.3939 10.6475 14.3939 10.6587C14.3939 10.67 14.4023 10.6806 14.4023 10.6921C14.4023 10.7035 14.4106 10.7139 14.4106 10.7254C14.4106 10.7369 14.4189 10.7471 14.4189 10.7587C14.4189 10.7703 14.4189 10.7804 14.4189 10.7921C14.4189 10.8037 14.4189 10.8137 14.4189 10.8254C14.4189 10.8371 14.4189 10.8554 14.4189 10.8671C14.4189 10.8787 14.4189 10.8888 14.4189 10.9004C14.4189 10.912 14.4106 10.9222 14.4106 10.9337C14.4106 10.9453 14.4106 10.9556 14.4106 10.9671C14.4106 10.9786 14.4023 10.989 14.4023 11.0004C14.4023 11.0118 14.3939 11.0225 14.3939 11.0337C14.3939 11.045 14.3856 11.056 14.3856 11.0671C14.3856 11.0781 14.3689 11.0896 14.3689 11.1004C14.3689 11.1113 14.3606 11.1231 14.3606 11.1337C14.3606 11.1444 14.3439 11.1567 14.3439 11.1671C14.3439 11.1775 14.3273 11.1903 14.3273 11.2004C14.3273 11.2105 14.3106 11.2156 14.3106 11.2254C14.3106 11.2352 14.2856 11.2493 14.2856 11.2588C14.2856 11.2682 14.2689 11.2746 14.2689 11.2838L12.5603 13.4339C12.5603 13.4436 12.5353 13.4495 12.5353 13.4589C12.5353 13.4682 12.519 13.475 12.5103 13.4839C12.5015 13.4927 12.4861 13.5005 12.4769 13.5089C12.4678 13.5173 12.4615 13.5339 12.4519 13.5339C12.4423 13.5339 12.4369 13.5589 12.4269 13.5589C12.4169 13.5589 12.4039 13.5839 12.3936 13.5839C12.3832 13.5839 12.3709 13.6005 12.3602 13.6005C12.3495 13.6005 12.3379 13.6172 12.3269 13.6172C12.3159 13.6172 12.3049 13.6339 12.2935 13.6339C12.2822 13.6339 12.2718 13.6505 12.2602 13.6505C12.2487 13.6505 12.2386 13.6589 12.2269 13.6589C12.2151 13.6589 12.2055 13.6755 12.1935 13.6755C12.1816 13.6755 12.164 13.6839 12.1519 13.6839C12.1397 13.6839 12.1308 13.6922 12.1185 13.6922C12.1063 13.6922 12.0892 13.6922 12.0768 13.6922C12.0645 13.6922 12.0559 13.7005 12.0435 13.7005C12.0311 13.7005 12.0143 13.7005 12.0018 13.7005C11.9894 13.7005 11.9809 13.7005 11.9685 13.7005C11.9561 13.7005 11.9475 13.7005 11.9351 13.7005C11.9228 13.7005 11.9058 13.6922 11.8935 13.6922C11.8812 13.6922 11.8723 13.6839 11.8601 13.6839C11.8479 13.6839 11.8305 13.6755 11.8185 13.6755C11.8064 13.6755 11.797 13.6672 11.7851 13.6672C11.7733 13.6672 11.7634 13.6589 11.7518 13.6589C11.7401 13.6589 11.7299 13.6422 11.7184 13.6422C11.707 13.6422 11.6963 13.6255 11.6851 13.6255C11.6739 13.6255 11.6626 13.6089 11.6518 13.6089C11.6409 13.6089 11.6289 13.5922 11.6184 13.5922C11.6079 13.5922 11.5952 13.5672 11.5851 13.5672C11.5749 13.5672 11.5615 13.5505 11.5517 13.5505C11.542 13.5505 11.5361 13.5255 11.5267 13.5255C11.5174 13.5255 11.5106 13.5092 11.5017 13.5005L10.0931 12.1171C10.0848 12.1171 10.0681 12.1007 10.0681 12.0921C10.0681 12.0836 10.0431 12.0761 10.0431 12.0671C10.0431 12.0582 10.0181 12.0514 10.0181 12.0421C10.0181 12.0328 10.0015 12.0268 10.0015 12.0171C10.0015 12.0075 9.97646 11.9937 9.97646 11.9838C9.97646 11.9738 9.95979 11.9607 9.95979 11.9505C9.95979 11.9402 9.94312 11.936 9.94312 11.9255C9.94312 11.9149 9.93478 11.9029 9.93478 11.8921C9.93478 11.8814 9.91811 11.8697 9.91811 11.8588C9.91811 11.8478 9.90978 11.8366 9.90978 11.8254C9.90978 11.8143 9.90144 11.8034 9.90144 11.7921C9.90144 11.7808 9.89311 11.7702 9.89311 11.7588C9.89311 11.7473 9.88478 11.737 9.88478 11.7254C9.88478 11.7139 9.87644 11.6954 9.87644 11.6838C9.87644 11.6722 9.87644 11.6621 9.87644 11.6504C9.87644 11.6388 9.87644 11.6288 9.87644 11.6171C9.87644 11.6054 9.87644 11.5955 9.87644 11.5838C9.87644 11.5721 9.87644 11.5621 9.87644 11.5504C9.87644 11.5388 9.88478 11.5203 9.88478 11.5088C9.88478 11.4972 9.88478 11.4869 9.88478 11.4754C9.88478 11.4639 9.89311 11.4535 9.89311 11.4421C9.89311 11.4307 9.90144 11.42 9.90144 11.4088C9.90144 11.3975 9.90978 11.3865 9.90978 11.3754C9.90978 11.3644 9.92645 11.3529 9.92645 11.3421C9.92645 11.3312 9.94312 11.3194 9.94312 11.3088C9.94312 11.2981 9.95145 11.2858 9.95145 11.2754C9.95145 11.265 9.97646 11.2605 9.97646 11.2504C9.97646 11.2403 9.99313 11.2269 9.99313 11.2171C9.99313 11.2073 10.0098 11.2016 10.0098 11.1921C10.0098 11.1826 10.0348 11.1679 10.0348 11.1587C10.0348 11.1496 10.0515 11.1425 10.0515 11.1337C10.0515 11.125 10.0765 11.1171 10.0765 11.1087C10.0765 11.1004 10.0929 11.0837 10.1015 11.0837C10.1101 11.0837 10.1175 11.0587 10.1265 11.0587C10.1355 11.0587 10.1505 11.0421 10.1598 11.0421C10.1691 11.0421 10.1752 11.0171 10.1848 11.0171C10.1945 11.0171 10.2082 11.0004 10.2182 11.0004C10.2281 11.0004 10.2329 10.9837 10.2432 10.9837C10.2534 10.9837 10.266 10.9671 10.2765 10.9671C10.287 10.9671 10.2991 10.9504 10.3099 10.9504C10.3206 10.9504 10.3322 10.9421 10.3432 10.9421C10.3542 10.9421 10.3654 10.9254 10.3765 10.9254C10.3877 10.9254 10.3986 10.9171 10.4099 10.9171C10.4212 10.9171 10.4318 10.9087 10.4432 10.9087C10.4547 10.9087 10.465 10.9004 10.4765 10.9004C10.4881 10.9004 10.4983 10.9004 10.5099 10.9004C10.5215 10.9004 10.5316 10.8921 10.5432 10.8921C10.5549 10.8921 10.5732 10.8921 10.5849 10.8921C10.5966 10.8921 10.6066 10.8921 10.6182 10.8921C10.6299 10.8921 10.6399 10.9004 10.6516 10.9004C10.6632 10.9004 10.6733 10.9004 10.6849 10.9004C10.6965 10.9004 10.7068 10.9087 10.7183 10.9087C10.7298 10.9087 10.7402 10.9171 10.7516 10.9171C10.763 10.9171 10.782 10.9254 10.7933 10.9254C10.8045 10.9254 10.8156 10.9337 10.8266 10.9337C10.8377 10.9337 10.8491 10.9504 10.86 10.9504C10.8708 10.9504 10.8743 10.9587 10.885 10.9587C10.8956 10.9587 10.9079 10.9754 10.9183 10.9754C10.9287 10.9754 10.9415 10.9921 10.9516 10.9921C10.9617 10.9921 10.9669 11.0087 10.9766 11.0087C10.9864 11.0087 11.0005 11.0337 11.01 11.0337C11.0195 11.0337 11.0259 11.0504 11.035 11.0504C11.0441 11.0504 11.0512 11.0754 11.06 11.0754C11.0687 11.0754 11.085 11.1004 11.0933 11.1004L11.9351 11.9255L13.152 10.392C13.152 10.3829 13.1687 10.3758 13.1687 10.367C13.1687 10.3583 13.1937 10.3504 13.1937 10.342C13.1937 10.3337 13.2102 10.317 13.2187 10.317C13.2273 10.317 13.2348 10.292 13.2437 10.292C13.2526 10.292 13.2678 10.2754 13.2771 10.2754C13.2863 10.2754 13.2925 10.2504 13.3021 10.2504C13.3117 10.2504 13.3171 10.2337 13.3271 10.2337C13.337 10.2337 13.3502 10.217 13.3604 10.217C13.3706 10.217 13.3833 10.2004 13.3937 10.2004C13.4042 10.2004 13.4164 10.1837 13.4271 10.1837C13.4378 10.1837 13.4495 10.167 13.4604 10.167C13.4714 10.167 13.4743 10.1587 13.4854 10.1587C13.4965 10.1587 13.5158 10.1504 13.5271 10.1504C13.5384 10.1504 13.549 10.142 13.5604 10.142C13.5719 10.142 13.5823 10.1337 13.5938 10.1337C13.6053 10.1337 13.6155 10.1337 13.6271 10.1337C13.6387 10.1337 13.6488 10.1254 13.6605 10.1254C13.6721 10.1254 13.6821 10.1254 13.6938 10.1254C13.7055 10.1254 13.7155 10.1254 13.7271 10.1254C13.7388 10.1254 13.7572 10.1254 13.7688 10.1254C13.7805 10.1254 13.7906 10.1337 13.8022 10.1337C13.8137 10.1337 13.824 10.1337 13.8355 10.1337C13.847 10.1337 13.8575 10.142 13.8688 10.142C13.8802 10.142 13.8909 10.1504 13.9022 10.1504C13.9134 10.1504 13.9245 10.167 13.9355 10.167C13.9466 10.167 13.958 10.1754 13.9689 10.1754C13.9797 10.1754 13.9916 10.192 14.0022 10.192C14.0128 10.192 14.0251 10.2004 14.0355 10.2004C14.0459 10.2004 14.0504 10.2254 14.0605 10.2254C14.0706 10.2254 14.0841 10.242 14.0939 10.242C14.1037 10.242 14.1177 10.2587 14.1272 10.2587C14.1367 10.2587 14.1431 10.2837 14.1522 10.2837ZM5.56732 3.42506C5.54394 3.42506 5.524 3.4334 5.50064 3.4334C5.4773 3.4334 5.45723 3.4334 5.43396 3.4334C5.4107 3.4334 5.38208 3.44173 5.35895 3.44173C5.33582 3.44173 5.3152 3.4584 5.29227 3.4584C5.26933 3.4584 5.24827 3.47507 5.22559 3.47507C5.20291 3.47507 5.18128 3.49173 5.15891 3.49173C5.13654 3.49173 5.11425 3.5084 5.09223 3.5084C5.07022 3.5084 5.04716 3.52446 5.02555 3.5334C5.00395 3.54235 4.98001 3.55674 4.95887 3.56674C4.93774 3.57673 4.92116 3.58905 4.90053 3.60007C4.87992 3.61109 4.85391 3.62139 4.83385 3.63341C4.81379 3.64543 4.79494 3.65375 4.77551 3.66674C4.75607 3.67973 4.73596 3.69448 4.71716 3.70841C4.69839 3.72234 4.68522 3.73525 4.66715 3.75008C4.64908 3.76491 4.62614 3.78438 4.60881 3.80008C4.59148 3.81578 4.57535 3.83355 4.5588 3.85008C4.54226 3.86662 4.5245 3.88276 4.50879 3.90009C4.49311 3.91741 4.48194 3.93202 4.46712 3.95009C4.45229 3.96815 4.43937 3.98965 4.42544 4.00842C4.41152 4.02721 4.39676 4.04733 4.38377 4.06676C4.37078 4.08619 4.35411 4.10504 4.34209 4.1251C4.33008 4.14516 4.31977 4.16283 4.30876 4.18343C4.29772 4.20406 4.2854 4.22897 4.27542 4.2501C4.26541 4.27124 4.25936 4.28684 4.25041 4.30844C4.24146 4.33004 4.22541 4.3531 4.22541 4.37511C4.22541 4.39712 4.2004 4.41941 4.2004 4.44178C4.2004 4.46414 4.18373 4.48577 4.18373 4.50845C4.18373 4.53112 4.16706 4.55219 4.16706 4.57512C4.16706 4.59805 4.15873 4.62699 4.15873 4.65012C4.15873 4.67325 4.15039 4.69353 4.15039 4.71679C4.15039 4.74005 4.14206 4.76012 4.14206 4.78346C4.14206 4.80682 4.14206 4.83508 4.14206 4.85846C4.14206 4.88184 4.14206 4.90179 4.14206 4.92513C4.14206 4.94847 4.15039 4.97687 4.15039 5.00014C4.15039 5.0234 4.15873 5.04368 4.15873 5.06681C4.15873 5.08993 4.16706 5.11055 4.16706 5.13348C4.16706 5.15641 4.18373 5.1858 4.18373 5.20848C4.18373 5.23116 4.2004 5.25278 4.2004 5.27515C4.2004 5.29751 4.22541 5.31981 4.22541 5.34182C4.22541 5.36383 4.24146 5.37857 4.25041 5.40016C4.25936 5.42176 4.26541 5.44569 4.27542 5.46682C4.2854 5.48798 4.29772 5.51289 4.30876 5.53349C4.31977 5.55412 4.33008 5.57177 4.34209 5.59183C4.35411 5.61189 4.37078 5.63073 4.38377 5.65017C4.39676 5.6696 4.41152 5.68973 4.42544 5.7085C4.43937 5.72727 4.45229 5.74877 4.46712 5.76684C4.48194 5.78491 4.49311 5.79952 4.50879 5.81684C4.5245 5.83417 4.54226 5.85032 4.5588 5.86684C4.57535 5.88339 4.59148 5.90114 4.60881 5.91684C4.62614 5.93255 4.64908 5.94369 4.66715 5.95851C4.68522 5.97334 4.69839 5.99459 4.71716 6.00852C4.73596 6.02244 4.75607 6.02886 4.77551 6.04185C4.79494 6.05484 4.81379 6.07151 4.83385 6.08352C4.85391 6.09553 4.87992 6.10582 4.90053 6.11685C4.92116 6.12787 4.93774 6.14019 4.95887 6.15019C4.98001 6.16017 5.00395 6.16622 5.02555 6.17519C5.04716 6.18414 5.07022 6.20019 5.09223 6.20019C5.11425 6.20019 5.13654 6.22519 5.15891 6.22519C5.18128 6.22519 5.20291 6.24186 5.22559 6.24186C5.24827 6.24186 5.26933 6.25853 5.29227 6.25853C5.3152 6.25853 5.33582 6.26686 5.35895 6.26686C5.38208 6.26686 5.4107 6.27519 5.43396 6.27519C5.45723 6.27519 5.4773 6.28353 5.50064 6.28353C5.524 6.28353 5.54394 6.28353 5.56732 6.28353C5.5907 6.28353 5.61899 6.28353 5.64233 6.28353C5.66568 6.28353 5.68575 6.27519 5.70901 6.27519C5.73228 6.27519 5.75256 6.26686 5.77569 6.26686C5.79882 6.26686 5.82777 6.25853 5.8507 6.25853C5.87366 6.25853 5.8947 6.24186 5.91738 6.24186C5.94006 6.24186 5.96169 6.22519 5.98406 6.22519C6.00643 6.22519 6.02872 6.20019 6.05074 6.20019C6.07276 6.20019 6.09583 6.18414 6.11742 6.17519C6.13902 6.16622 6.16296 6.16017 6.1841 6.15019C6.20525 6.14019 6.22183 6.12787 6.24244 6.11685C6.26307 6.10582 6.28072 6.09553 6.30079 6.08352C6.32085 6.07151 6.34803 6.05484 6.36747 6.04185C6.3869 6.02886 6.3987 6.02244 6.41747 6.00852C6.43625 5.99459 6.45775 5.97334 6.47582 5.95851C6.49389 5.94369 6.5085 5.93255 6.52583 5.91684C6.54315 5.90114 6.56765 5.88339 6.58417 5.86684C6.60072 5.85032 6.61014 5.83417 6.62585 5.81684C6.64155 5.79952 6.66103 5.78491 6.67585 5.76684C6.69068 5.74877 6.7036 5.72727 6.71753 5.7085C6.73146 5.68973 6.74621 5.6696 6.7592 5.65017C6.77219 5.63073 6.78053 5.61189 6.79254 5.59183C6.80456 5.57177 6.82318 5.55412 6.83422 5.53349C6.84523 5.51289 6.84922 5.48798 6.85922 5.46682C6.8692 5.44569 6.88359 5.42176 6.89256 5.40016C6.90151 5.37857 6.91757 5.36383 6.91757 5.34182C6.91757 5.31981 6.93424 5.29751 6.93424 5.27515C6.93424 5.25278 6.95924 5.23116 6.95924 5.20848C6.95924 5.1858 6.96757 5.15641 6.96757 5.13348C6.96757 5.11055 6.98424 5.08993 6.98424 5.06681C6.98424 5.04368 6.99258 5.0234 6.99258 5.00014C6.99258 4.97687 7.00091 4.94847 7.00091 4.92513C7.00091 4.90179 7.00091 4.88184 7.00091 4.85846C7.00091 4.83508 7.00091 4.80682 7.00091 4.78346C7.00091 4.76012 6.99258 4.74005 6.99258 4.71679C6.99258 4.69353 6.98424 4.67325 6.98424 4.65012C6.98424 4.62699 6.96757 4.59805 6.96757 4.57512C6.96757 4.55219 6.95924 4.53112 6.95924 4.50845C6.95924 4.48577 6.93424 4.46414 6.93424 4.44178C6.93424 4.41941 6.91757 4.39712 6.91757 4.37511C6.91757 4.3531 6.90151 4.33004 6.89256 4.30844C6.88359 4.28684 6.8692 4.27124 6.85922 4.2501C6.84922 4.22897 6.84523 4.20406 6.83422 4.18343C6.82318 4.16283 6.80456 4.14516 6.79254 4.1251C6.78053 4.10504 6.77219 4.08619 6.7592 4.06676C6.74621 4.04733 6.73146 4.02721 6.71753 4.00842C6.7036 3.98965 6.69068 3.96815 6.67585 3.95009C6.66103 3.93202 6.64155 3.91741 6.62585 3.90009C6.61014 3.88276 6.60072 3.86662 6.58417 3.85008C6.56765 3.83355 6.54315 3.81578 6.52583 3.80008C6.5085 3.78438 6.49389 3.76491 6.47582 3.75008C6.45775 3.73525 6.43625 3.72234 6.41747 3.70841C6.3987 3.69448 6.3869 3.67973 6.36747 3.66674C6.34803 3.65375 6.32085 3.64543 6.30079 3.63341C6.28072 3.62139 6.26307 3.61109 6.24244 3.60007C6.22183 3.58905 6.20525 3.57673 6.1841 3.56674C6.16296 3.55674 6.13902 3.54235 6.11742 3.5334C6.09583 3.52446 6.07276 3.5084 6.05074 3.5084C6.02872 3.5084 6.00643 3.49173 5.98406 3.49173C5.96169 3.49173 5.94006 3.47507 5.91738 3.47507C5.8947 3.47507 5.87364 3.4584 5.8507 3.4584C5.82777 3.4584 5.79882 3.44173 5.77569 3.44173C5.75256 3.44173 5.73228 3.4334 5.70901 3.4334C5.68575 3.4334 5.66568 3.4334 5.64233 3.4334C5.61899 3.4334 5.5907 3.42506 5.56732 3.42506Z' fill='%237E84A3' %3E%3C/path%3E%3Cpath d='M5.62774 1.8501L5.43406 1.8501C5.41006 1.8501 5.37862 1.85373 5.33974 1.86099C5.31912 1.86484 5.30611 1.86676 5.3007 1.86676C5.28087 1.86676 5.25487 1.86842 5.22269 1.87173C5.20081 1.87397 5.18514 1.8751 5.17568 1.8751C5.14737 1.8751 5.11164 1.88111 5.06848 1.89314C5.05183 1.89778 5.04311 1.9001 5.04232 1.9001C5.00677 1.9001 4.95897 1.90774 4.89893 1.92303C4.88763 1.9259 4.87943 1.92794 4.87431 1.92916C4.83779 1.93783 4.79387 1.94953 4.74256 1.96426C4.71994 1.97075 4.68797 1.98121 4.64665 1.99564C4.63065 2.00123 4.61873 2.00535 4.61088 2.00801C4.59 2.01506 4.5605 2.02662 4.5224 2.04266C4.50279 2.05092 4.48843 2.05683 4.47931 2.06039C4.47291 2.06289 4.46307 2.06669 4.4498 2.0718C4.40462 2.08917 4.37065 2.10293 4.34787 2.11307C4.33879 2.11712 4.32479 2.12294 4.30589 2.13055C4.27143 2.1444 4.24443 2.15624 4.22488 2.16606C4.20515 2.17596 4.17752 2.19149 4.14199 2.21265C4.12385 2.22344 4.11054 2.23122 4.10206 2.23599C4.09584 2.23948 4.08628 2.2448 4.07339 2.25194C4.03165 2.27505 4.00031 2.29314 3.97937 2.30622C3.96017 2.3182 3.93363 2.33632 3.89977 2.36057C3.88427 2.37167 3.87274 2.37982 3.8652 2.38504C3.85784 2.39012 3.84651 2.39779 3.8312 2.40805C3.79607 2.43157 3.76941 2.45027 3.75121 2.46413C3.74484 2.46898 3.73486 2.47649 3.72126 2.48666C3.68362 2.5148 3.65567 2.53652 3.63742 2.55182C3.61967 2.56668 3.59448 2.58951 3.56184 2.62031C3.54843 2.63296 3.53854 2.64221 3.53217 2.64808C3.51473 2.66413 3.49103 2.68756 3.46108 2.71839C3.44972 2.73008 3.44118 2.73882 3.43546 2.74459C3.42869 2.75142 3.4182 2.7617 3.40398 2.77543C3.37552 2.80288 3.35386 2.82484 3.339 2.84132C3.33247 2.84856 3.32183 2.85993 3.30708 2.87546C3.27821 2.90583 3.25677 2.92955 3.24277 2.94661C3.22859 2.96387 3.21098 2.98875 3.18996 3.02123C3.17796 3.03977 3.16912 3.05283 3.16346 3.06043C3.15752 3.06839 3.14749 3.08116 3.13338 3.09875C3.10744 3.13109 3.08834 3.15632 3.07608 3.17445C3.06304 3.19371 3.0461 3.22087 3.02526 3.25593C3.01663 3.27043 3.01009 3.28134 3.00563 3.28865C2.98693 3.31926 2.96353 3.36016 2.93545 3.41134C2.92348 3.43316 2.90751 3.46474 2.88754 3.50609C2.8815 3.5186 2.87695 3.52797 2.8739 3.5342C2.84872 3.58562 2.8283 3.6294 2.81264 3.66553C2.80928 3.67327 2.80422 3.68472 2.79746 3.69986C2.78078 3.7372 2.7683 3.7668 2.76001 3.78866C2.75151 3.81108 2.74048 3.8436 2.72693 3.88623C2.72209 3.90145 2.71845 3.91278 2.71602 3.92024C2.71525 3.92259 2.71403 3.92631 2.71236 3.9314C2.69346 3.9891 2.68012 4.03205 2.67233 4.06024C2.67055 4.06668 2.66786 4.07629 2.66426 4.08909C2.65185 4.13318 2.64286 4.16749 2.63729 4.19201C2.63599 4.19773 2.63371 4.20706 2.63045 4.22002C2.61586 4.27788 2.60857 4.32405 2.60857 4.35854L2.60838 4.35709C2.60766 4.36028 2.60577 4.36683 2.60273 4.37674C2.58995 4.41827 2.58356 4.45387 2.58356 4.48355C2.58356 4.49349 2.58239 4.51102 2.58005 4.53612C2.57684 4.5706 2.57523 4.59752 2.57523 4.61689C2.57523 4.62691 2.57406 4.64445 2.57172 4.66951C2.5685 4.70391 2.5669 4.73082 2.5669 4.75023L2.5669 5.0169C2.5669 5.0363 2.5685 5.06322 2.57172 5.09765C2.57406 5.12271 2.57523 5.14024 2.57523 5.15024C2.57523 5.17416 2.57886 5.20561 2.58612 5.24458C2.58997 5.26525 2.5919 5.27825 2.5919 5.28358C2.5919 5.31609 2.59845 5.3565 2.61156 5.40482C2.61574 5.42024 2.61847 5.43117 2.61974 5.43763C2.62408 5.4596 2.63189 5.49172 2.64318 5.53399C2.64854 5.55403 2.65234 5.56862 2.65459 5.57777C2.66719 5.62895 2.6789 5.67285 2.68975 5.70949C2.6976 5.73603 2.71015 5.77403 2.72741 5.82349C2.73016 5.83137 2.7322 5.83725 2.73355 5.84113C2.7368 5.85049 2.74158 5.86533 2.74789 5.88563C2.7596 5.92331 2.76953 5.95232 2.77766 5.97266C2.78102 5.98104 2.78612 5.99419 2.79297 6.01209C2.80849 6.05267 2.82097 6.08333 2.83042 6.10409C2.84107 6.1275 2.85734 6.16036 2.87923 6.20267C2.88482 6.21349 2.88901 6.2216 2.89179 6.22702C2.90225 6.24744 2.91861 6.27647 2.94087 6.31409C2.95041 6.33022 2.95738 6.34213 2.96178 6.34981C2.96632 6.35773 2.97325 6.37016 2.9826 6.38712C3.0034 6.42486 3.01989 6.45331 3.03207 6.47246C3.04521 6.49312 3.06507 6.5221 3.09167 6.55941C3.10031 6.57153 3.10673 6.58058 3.11095 6.58658C3.11655 6.59454 3.12504 6.60708 3.13644 6.6242C3.15868 6.65761 3.17658 6.68306 3.19012 6.70054C3.20624 6.72133 3.23013 6.75021 3.2618 6.78717C3.26894 6.7955 3.27429 6.80176 3.27785 6.80594C3.29482 6.82585 3.32101 6.85461 3.35641 6.89222C3.36437 6.90068 3.37029 6.90699 3.37417 6.91113C3.39343 6.93171 3.42172 6.96015 3.45906 6.99643C3.46432 7.00154 3.4682 7.00532 3.47071 7.00776C3.49491 7.03134 3.52996 7.06349 3.57587 7.10421C3.58331 7.11081 3.59515 7.12188 3.6114 7.13742C3.64091 7.16564 3.66417 7.18663 3.68119 7.20037C3.69835 7.21423 3.72315 7.23174 3.75559 7.25292C3.77405 7.26496 3.7872 7.27385 3.79505 7.27961C3.82613 7.30241 3.86416 7.32875 3.90916 7.35864C3.91745 7.36414 3.93042 7.37331 3.94807 7.38615C3.97951 7.40903 4.00461 7.42609 4.02336 7.43733C4.0675 7.46379 4.10843 7.48717 4.14613 7.50745C4.17578 7.52339 4.21674 7.54389 4.26902 7.56894C4.27376 7.57121 4.28115 7.57477 4.29119 7.57962C4.33959 7.60297 4.37598 7.61981 4.40036 7.63013C4.42085 7.63881 4.44964 7.64873 4.48672 7.65987C4.50785 7.66622 4.52289 7.67105 4.53185 7.67436C4.54104 7.67776 4.55608 7.68396 4.57696 7.69295C4.61366 7.70874 4.64251 7.71997 4.66351 7.72665C4.68507 7.73349 4.71547 7.74181 4.75472 7.7516C4.77282 7.75611 4.78632 7.75955 4.79521 7.76193C4.80393 7.76426 4.81707 7.76791 4.83461 7.77289C4.87392 7.78404 4.90471 7.79205 4.92699 7.79691C4.93307 7.79823 4.94316 7.80066 4.95726 7.8042C5.01355 7.8183 5.05857 7.82536 5.09233 7.82536C5.09762 7.82536 5.11063 7.82728 5.13135 7.83114C5.17035 7.8384 5.2018 7.84203 5.22569 7.84203C5.23106 7.84203 5.24407 7.84395 5.26471 7.8478C5.30363 7.85506 5.33508 7.85869 5.35905 7.85869C5.36861 7.85869 5.38429 7.85981 5.40611 7.86207C5.43819 7.86537 5.46417 7.86703 5.48407 7.86703L5.61743 7.86703C5.63685 7.86703 5.66375 7.86542 5.69814 7.86221C5.72319 7.85986 5.74074 7.85869 5.75079 7.85869C5.77018 7.85869 5.7971 7.85708 5.83155 7.85387C5.85662 7.85153 5.87415 7.85036 5.88414 7.85036C5.90805 7.85036 5.9395 7.84673 5.97848 7.83947C5.99918 7.83561 6.01218 7.83369 6.0175 7.83369C6.05036 7.83369 6.09397 7.82691 6.14835 7.81336C6.16373 7.80952 6.17465 7.80693 6.18113 7.80561C6.20257 7.80119 6.23176 7.79364 6.2687 7.78298C6.28855 7.77725 6.30328 7.77316 6.3129 7.77072C6.31809 7.76939 6.32584 7.76743 6.33615 7.76484C6.38315 7.75299 6.41932 7.74321 6.44466 7.7355C6.45155 7.73339 6.46239 7.73013 6.47718 7.72573C6.52562 7.71127 6.56142 7.69992 6.58458 7.69166C6.60524 7.6843 6.63243 7.67292 6.66617 7.65752C6.68477 7.64903 6.69866 7.64291 6.70783 7.63915C6.71688 7.63543 6.73138 7.6298 6.75132 7.62225C6.78994 7.60761 6.81923 7.59565 6.83921 7.58637C6.87186 7.57119 6.91284 7.55071 6.96214 7.52495C6.98452 7.51325 7.01681 7.49497 7.05901 7.47012C7.07059 7.4633 7.07923 7.45823 7.08492 7.45491C7.09337 7.44998 7.10696 7.4424 7.12569 7.43216C7.16177 7.41241 7.18906 7.39655 7.20756 7.38459C7.2338 7.36759 7.27118 7.34176 7.31968 7.30709L7.32167 7.30566C7.344 7.28968 7.37675 7.26464 7.41991 7.23052C7.42701 7.2249 7.43224 7.22078 7.43558 7.21815C7.46548 7.19459 7.50061 7.16533 7.54097 7.13038C7.56985 7.10536 7.60492 7.07323 7.64616 7.03401C7.67684 7.00482 7.70904 6.97263 7.74275 6.93745C7.77711 6.90161 7.80925 6.86654 7.83918 6.83226C7.86964 6.79733 7.8989 6.76222 7.92695 6.72694C7.96609 6.67766 7.99527 6.6397 8.01449 6.61306C8.04597 6.56942 8.0723 6.53138 8.09347 6.49895C8.11444 6.46681 8.13788 6.42874 8.1638 6.38473C8.16565 6.38158 8.16833 6.37703 8.17185 6.37108C8.19997 6.32338 8.22065 6.28701 8.23387 6.26197C8.25637 6.21933 8.27687 6.17835 8.29534 6.13904C8.30466 6.11917 8.31654 6.09012 8.33097 6.0519C8.33865 6.03152 8.34438 6.01678 8.34815 6.00769C8.34983 6.00362 8.35228 5.99772 8.3555 5.98999C8.37626 5.94007 8.39131 5.90214 8.40067 5.8762C8.41567 5.83462 8.4303 5.79074 8.44456 5.74458C8.44636 5.73874 8.44827 5.7323 8.4503 5.72526L17.8613 5.72526C17.8728 5.72526 17.892 5.72645 17.9191 5.72885C17.9549 5.73201 17.9829 5.7336 18.003 5.7336C18.0101 5.7336 18.0251 5.73562 18.0481 5.73967C18.0881 5.74673 18.1203 5.75026 18.1447 5.75026C18.1537 5.75026 18.1718 5.75372 18.1989 5.76065C18.2197 5.76595 18.2362 5.76984 18.2484 5.77231C18.2808 5.77884 18.3256 5.78939 18.3827 5.80395C18.4077 5.81031 18.4476 5.822 18.5024 5.83901C18.5093 5.84114 18.5142 5.84266 18.5171 5.84357C18.5273 5.84671 18.5421 5.85114 18.5614 5.85684C18.5987 5.8678 18.626 5.87647 18.6433 5.88283C18.651 5.88565 18.6625 5.88978 18.6777 5.89523C18.7184 5.90979 18.7485 5.9212 18.7682 5.92946C18.7697 5.93032 18.7725 5.93212 18.7767 5.93487C18.7952 5.94687 18.8114 5.95595 18.8251 5.96211C18.8362 5.96711 18.8514 5.97282 18.8706 5.97924C18.8809 5.98267 18.8868 5.9848 18.8885 5.98562C18.8911 5.98686 18.8968 5.99021 18.9057 5.99567C18.921 6.00503 18.9336 6.01226 18.9436 6.01734C18.9481 6.01962 18.9558 6.02405 18.9668 6.03063C18.9801 6.03857 18.9908 6.04468 18.9987 6.04898C19.007 6.05346 19.0193 6.05955 19.0355 6.06726C19.0492 6.0738 19.0581 6.07824 19.0622 6.08057C19.0669 6.08325 19.0737 6.08704 19.0824 6.09194C19.0983 6.10085 19.11 6.10756 19.1175 6.11208C19.1251 6.11668 19.1356 6.12264 19.149 6.12995C19.1605 6.1362 19.1684 6.1407 19.1727 6.14346C19.1767 6.146 19.1844 6.15152 19.1957 6.16C19.2095 6.17024 19.2203 6.17797 19.2281 6.18321C19.2344 6.18741 19.2449 6.19489 19.2596 6.20565C19.2701 6.21327 19.278 6.21898 19.2833 6.22276C19.2912 6.22828 19.301 6.23477 19.3128 6.24225C19.3209 6.24733 19.3267 6.25125 19.3304 6.25399C19.3371 6.25899 19.347 6.26597 19.36 6.27493C19.3716 6.28293 19.3798 6.28876 19.3846 6.29242C19.3859 6.29386 19.3887 6.29687 19.3928 6.30146C19.4081 6.31848 19.4216 6.33173 19.4331 6.34119C19.4428 6.34915 19.4562 6.35882 19.4735 6.3702C19.4824 6.37604 19.4874 6.37948 19.4887 6.38052C19.495 6.38598 19.5035 6.39309 19.5144 6.40184C19.5245 6.40992 19.5316 6.41588 19.5359 6.41974C19.5397 6.42321 19.5466 6.43011 19.5566 6.44045C19.5679 6.45217 19.5768 6.46112 19.5833 6.46729C19.5894 6.47316 19.5993 6.48304 19.613 6.49694C19.6208 6.50486 19.6267 6.51081 19.6307 6.51477C19.6344 6.51846 19.64 6.52401 19.6475 6.53141C19.6618 6.54551 19.6721 6.55577 19.6782 6.56219C19.6805 6.5646 19.6847 6.5698 19.691 6.57779C19.7013 6.59096 19.7101 6.60153 19.7173 6.60949C19.7247 6.61764 19.7352 6.62814 19.7489 6.641C19.7576 6.64921 19.7629 6.65445 19.7649 6.65672C19.7719 6.66484 19.7819 6.67682 19.7949 6.69266C19.799 6.6977 19.8021 6.70146 19.8042 6.70395C19.8064 6.7066 19.811 6.71318 19.8181 6.72369C19.8286 6.73916 19.8371 6.75108 19.8436 6.75946C19.8496 6.76708 19.8577 6.77674 19.8679 6.78844C19.8754 6.797 19.8804 6.80306 19.8831 6.80664C19.8892 6.81482 19.899 6.82843 19.9124 6.84749C19.917 6.85397 19.9204 6.85884 19.9227 6.86208C19.9263 6.86718 19.9318 6.87476 19.9391 6.88481C19.9502 6.90003 19.9579 6.9109 19.9623 6.91743C19.9639 6.91982 19.9672 6.92563 19.9721 6.93485C19.9804 6.95063 19.9876 6.96326 19.9937 6.97274C19.9998 6.98224 20.0086 6.99466 20.0203 7.01C20.0276 7.01952 20.0319 7.02551 20.0334 7.02796C20.0377 7.03516 20.0442 7.04647 20.0529 7.06188C20.058 7.0711 20.062 7.07819 20.0649 7.08315C20.0676 7.08789 20.0715 7.09466 20.0766 7.10346C20.0857 7.11908 20.0924 7.13068 20.0965 7.13828C20.1008 7.14618 20.1068 7.15671 20.1146 7.16985C20.1213 7.18096 20.1258 7.18881 20.1281 7.1934L20.128 7.19354C20.1288 7.19563 20.1302 7.19976 20.1321 7.20593C20.1389 7.22709 20.1454 7.24408 20.1515 7.25689C20.1572 7.26869 20.1653 7.28299 20.1759 7.2998C20.1804 7.30692 20.1829 7.31096 20.1833 7.31192C20.1849 7.31538 20.1878 7.32321 20.192 7.33541C20.1979 7.35245 20.2029 7.36577 20.2069 7.37537C20.2099 7.38243 20.2142 7.39247 20.2198 7.40549C20.2321 7.43388 20.2409 7.45535 20.2464 7.4699C20.2501 7.47974 20.2558 7.49419 20.2635 7.51327C20.2746 7.54087 20.2822 7.56064 20.2861 7.57258C20.296 7.6026 20.3066 7.63684 20.3177 7.67531C20.3208 7.68613 20.325 7.70397 20.3302 7.72883C20.3347 7.75003 20.3383 7.76639 20.3412 7.7779C20.3432 7.78601 20.3464 7.79774 20.3507 7.81308C20.3581 7.83929 20.3618 7.8545 20.3618 7.8587C20.3618 7.888 20.3688 7.92253 20.3827 7.96231C20.3847 7.96789 20.3861 7.97203 20.387 7.97472C20.3877 7.99718 20.3918 8.02405 20.3991 8.05531C20.402 8.06778 20.4035 8.07447 20.4035 8.07538C20.4035 8.09306 20.4052 8.11769 20.4085 8.14927C20.4107 8.1705 20.4118 8.18476 20.4118 8.19205C20.4118 8.21041 20.4135 8.23428 20.417 8.26368C20.4191 8.28146 20.4202 8.29369 20.4202 8.30039L20.4202 8.5254C20.4202 8.53269 20.4191 8.54691 20.4168 8.56807C20.4135 8.59963 20.4118 8.6243 20.4118 8.64207C20.4118 8.64874 20.4108 8.66099 20.4087 8.67883C20.4052 8.70823 20.4035 8.73209 20.4035 8.75041C20.4035 8.7525 20.4018 8.76171 20.3983 8.77805C20.3906 8.81461 20.3868 8.84429 20.3868 8.86708C20.3868 8.86796 20.3853 8.87468 20.3824 8.88725C20.3743 8.92218 20.3702 8.95157 20.3702 8.97542C20.3702 8.97686 20.3675 8.98634 20.362 9.00386C20.3561 9.02279 20.3519 9.03791 20.3492 9.04923L20.3451 9.06626L20.3451 9.08376L20.3446 9.0824C20.3435 9.08695 20.3408 9.09557 20.3366 9.10826C20.3315 9.12351 20.3278 9.13541 20.3255 9.14397C20.3232 9.1522 20.3201 9.1639 20.3162 9.17907C20.3102 9.20233 20.3055 9.21953 20.302 9.23065C20.2929 9.2598 20.2823 9.29149 20.2703 9.32571L20.2694 9.32823L20.2685 9.33074C20.2556 9.36754 20.2456 9.3948 20.2387 9.41252C20.2354 9.4209 20.229 9.43525 20.2193 9.45558C20.2102 9.47449 20.2035 9.48913 20.199 9.49949C20.1942 9.51067 20.1884 9.52534 20.1817 9.5435C20.1758 9.5593 20.1712 9.57081 20.1678 9.57803C20.1641 9.58582 20.1565 9.59988 20.1449 9.62021C20.1336 9.63983 20.1254 9.6548 20.1201 9.66513C20.1154 9.67431 20.1091 9.68696 20.1014 9.70308C20.0925 9.72164 20.0857 9.73524 20.0809 9.74388C20.076 9.75252 20.069 9.76564 20.0597 9.78323C20.0476 9.80631 20.0388 9.82227 20.0334 9.8311C20.0294 9.83772 20.0211 9.84955 20.0086 9.8666C19.9949 9.88512 19.9847 9.89961 19.9778 9.91007C19.9706 9.92116 19.9614 9.93659 19.9503 9.95636C19.9413 9.97249 19.9348 9.98342 19.9307 9.98916C19.9251 9.99712 19.9156 10.0094 19.9023 10.0259C19.8908 10.0402 19.8818 10.0516 19.8754 10.0599C19.8715 10.0651 19.863 10.0747 19.8498 10.0886C19.8332 10.1062 19.8206 10.1202 19.8119 10.1309C19.8018 10.1433 19.7895 10.161 19.7749 10.1839C19.7657 10.1983 19.7597 10.2071 19.7569 10.2103C19.7521 10.2158 19.7432 10.2247 19.7303 10.2369C19.7147 10.2516 19.7025 10.2637 19.6938 10.2731C19.6857 10.2817 19.6747 10.2943 19.6606 10.3108C19.6466 10.3272 19.6365 10.3386 19.6303 10.3448C19.6245 10.3506 19.6135 10.3603 19.5974 10.374C19.5806 10.3883 19.5678 10.3995 19.559 10.4078C19.5475 10.4185 19.529 10.4351 19.5033 10.4575C19.4964 10.4634 19.4913 10.4679 19.4878 10.471C19.4807 10.4772 19.4705 10.4864 19.4571 10.4986C19.4386 10.5156 19.4252 10.5274 19.4168 10.5343C19.4017 10.5466 19.379 10.5643 19.3486 10.5873L19.3459 10.5894C19.3367 10.5964 19.3209 10.6075 19.2985 10.6227C19.2845 10.6323 19.2739 10.6396 19.2668 10.6446C19.2553 10.6527 19.2407 10.6641 19.223 10.6789C19.2102 10.6896 19.2012 10.6966 19.1961 10.7C19.1867 10.7062 19.1714 10.7154 19.1503 10.7277C19.1359 10.7361 19.1249 10.7426 19.1173 10.7472C19.1084 10.7525 19.0923 10.7613 19.0691 10.7736C19.0516 10.7828 19.0386 10.7898 19.0301 10.7946C19.0192 10.8007 19.0045 10.8095 18.9861 10.8212C18.9698 10.8316 18.9582 10.8385 18.9514 10.8421C18.9425 10.8466 18.9272 10.8536 18.9054 10.8631C18.8874 10.8709 18.8737 10.877 18.8644 10.8814C18.8279 10.8986 18.799 10.9117 18.7775 10.9209C18.7694 10.9244 18.7555 10.9295 18.7357 10.9362C18.7163 10.9428 18.7013 10.9482 18.6907 10.9523C18.6682 10.961 18.6393 10.9715 18.6039 10.9838C18.5939 10.9873 18.5799 10.9925 18.562 10.9994C18.5413 11.0073 18.5264 11.0127 18.5172 11.0155C18.5052 11.0192 18.4869 11.0243 18.4622 11.0307C18.4485 11.0343 18.4379 11.0371 18.4306 11.0391C18.4217 11.0415 18.4093 11.0453 18.3935 11.0505C18.381 11.0546 18.3726 11.0572 18.3681 11.0584L18.3661 11.0588L18.3555 11.0588L18.128 11.1026C17.9852 11.1234 17.8463 11.1339 17.7113 11.1339L17.0744 11.1339C17.0685 11.0954 17.0632 11.0638 17.0585 11.0391C17.0488 10.9883 17.0317 10.9113 17.0072 10.808L17.0071 10.8075C17.0031 10.7908 16.9974 10.7651 16.9901 10.7305C16.9764 10.6664 16.9649 10.6177 16.9554 10.5844C16.9429 10.5406 16.923 10.4779 16.8957 10.3963C16.8918 10.3847 16.8888 10.3758 16.8867 10.3697C16.8638 10.301 16.8381 10.2294 16.8095 10.155L16.8042 10.1413C16.7699 10.0519 16.743 9.98495 16.7236 9.94048C16.7098 9.90888 16.6877 9.86394 16.6572 9.80568C16.6405 9.77372 16.6284 9.74995 16.6208 9.73439C16.6155 9.72367 16.6076 9.70742 16.5971 9.68566C16.5632 9.6158 16.5367 9.5634 16.5176 9.52844L16.5101 9.51467C16.4657 9.4335 16.431 9.37226 16.4059 9.33095C16.3824 9.29207 16.3448 9.23427 16.2933 9.15754C16.2862 9.14682 16.2808 9.13886 16.2773 9.13366C16.2711 9.12434 16.2618 9.11034 16.2494 9.09164C16.2062 9.0265 16.1725 8.97755 16.1484 8.9448C16.1273 8.91614 16.0946 8.87526 16.0503 8.82214C16.0287 8.79633 16.0128 8.77712 16.0027 8.76452C15.9618 8.71388 15.9132 8.65662 15.8567 8.59276C15.8498 8.5849 15.8394 8.57309 15.8255 8.55732C15.772 8.49632 15.7309 8.45093 15.7021 8.42115C15.6368 8.35351 15.5824 8.29917 15.539 8.25811C15.4898 8.21156 15.4326 8.16006 15.3673 8.10361C15.3589 8.09631 15.3463 8.08534 15.3295 8.0707C15.272 8.02052 15.2274 7.98285 15.1955 7.95767C15.1657 7.93413 15.1201 7.90063 15.0586 7.85718C15.0353 7.84067 15.018 7.82838 15.0068 7.8203C14.9541 7.78239 14.8912 7.73947 14.8179 7.69153C14.7805 7.66703 14.7239 7.63239 14.6481 7.58761C14.6356 7.58024 14.6264 7.57481 14.6205 7.57132C14.5506 7.52985 14.4847 7.49264 14.423 7.4597C14.3682 7.43044 14.2995 7.39609 14.217 7.35667C14.1297 7.31499 14.061 7.28352 14.0109 7.26226C13.9348 7.22996 13.8632 7.20135 13.7963 7.17645C13.7884 7.17353 13.7767 7.16913 13.761 7.16326C13.6827 7.13392 13.6229 7.11258 13.5816 7.09924L13.5659 7.09419C13.474 7.06455 13.4049 7.04337 13.3584 7.03066C13.3222 7.02074 13.2689 7.00815 13.1984 6.9929C13.1701 6.9868 13.1491 6.98218 13.1353 6.97904C13.1189 6.97533 13.094 6.96932 13.0605 6.96102C12.996 6.945 12.9465 6.9339 12.912 6.92771C12.8642 6.91909 12.7918 6.90827 12.6947 6.89526L12.6804 6.89333C12.6681 6.89167 12.6494 6.88889 12.6243 6.88497C12.5476 6.87298 12.4874 6.86699 12.4437 6.867C12.4218 6.867 12.3871 6.86568 12.3396 6.86306C12.2865 6.86012 12.2461 6.85866 12.2186 6.85866C12.1966 6.85866 12.1619 6.85735 12.1145 6.85473C12.0614 6.85179 12.0211 6.85033 11.9936 6.85033C11.9659 6.85033 11.9268 6.8518 11.8764 6.85475C11.8319 6.85735 11.7987 6.85866 11.7769 6.85866C11.7493 6.85866 11.709 6.86012 11.6559 6.86306C11.6084 6.86568 11.5738 6.867 11.5518 6.867C11.5068 6.867 11.4422 6.8733 11.358 6.88591C11.3349 6.88937 11.3178 6.89185 11.3067 6.89334C11.2197 6.90508 11.1453 6.91654 11.0834 6.92772C11.0489 6.93396 10.9992 6.94511 10.9344 6.96117C10.9012 6.96939 10.8765 6.97536 10.8602 6.97906C10.846 6.98227 10.8246 6.98698 10.7958 6.9932C10.7259 7.00831 10.673 7.0208 10.637 7.03068C10.5887 7.04394 10.5167 7.06602 10.4211 7.09692L10.4139 7.09927C10.3719 7.11282 10.3111 7.13451 10.2316 7.16433C10.217 7.16979 10.2062 7.17383 10.1992 7.17647C10.13 7.20227 10.0585 7.23087 9.9846 7.26228C9.93255 7.28438 9.86384 7.31586 9.77847 7.3567C9.69418 7.39702 9.6255 7.43137 9.57244 7.45974C9.56071 7.46601 9.54262 7.47556 9.51817 7.4884C9.45019 7.52408 9.39966 7.55173 9.36658 7.57136C9.32606 7.5954 9.2689 7.63163 9.19512 7.68004C9.18722 7.68522 9.18137 7.68906 9.17755 7.69157C9.10257 7.74069 9.03961 7.78362 8.98867 7.82036C8.97719 7.82863 8.95956 7.84118 8.93578 7.858C8.87479 7.9011 8.82952 7.93435 8.79996 7.95774C8.76767 7.98328 8.72236 8.0215 8.66402 8.07242C8.64814 8.08627 8.63617 8.09669 8.62811 8.10368C8.56101 8.1618 8.5038 8.2133 8.45647 8.25817C8.41165 8.30062 8.35728 8.35497 8.29334 8.42123C8.26424 8.45137 8.22261 8.49732 8.16844 8.55907C8.15522 8.57413 8.14534 8.58538 8.13879 8.5928C8.12713 8.606 8.10871 8.62608 8.08353 8.65305C8.03893 8.70079 8.0059 8.73797 7.98443 8.76461C7.96256 8.79173 7.93205 8.83316 7.89289 8.88889C7.87235 8.91812 7.85705 8.93957 7.84699 8.95325C7.84399 8.95732 7.83976 8.96307 7.8343 8.97051C7.78298 9.04025 7.74426 9.09466 7.71812 9.13375C7.71408 9.1398 7.70771 9.14931 7.69902 9.16227C7.64896 9.23693 7.61246 9.29318 7.58953 9.33103C7.56367 9.37368 7.52783 9.43696 7.482 9.52088L7.47783 9.52851C7.45843 9.564 7.43157 9.61721 7.39725 9.68814C7.38722 9.70884 7.37972 9.72428 7.37474 9.73446C7.34656 9.79196 7.31506 9.86065 7.28024 9.94055C7.27361 9.95576 7.26297 9.97933 7.24831 10.0113C7.21938 10.0743 7.19862 10.1222 7.18602 10.1551C7.15682 10.2312 7.13106 10.3028 7.10875 10.3697C7.08498 10.4411 7.0621 10.5154 7.0401 10.5928C7.0306 10.6262 7.019 10.675 7.0053 10.7394C6.99797 10.7738 6.99234 10.7993 6.98841 10.8159C6.98534 10.8289 6.98059 10.8485 6.97417 10.8747C6.95657 10.9465 6.94418 11.0014 6.937 11.0391C6.93229 11.0639 6.927 11.0955 6.92114 11.1339L6.28422 11.1339C6.25781 11.1339 6.22005 11.1353 6.17093 11.1383C6.12785 11.1409 6.09616 11.1422 6.07585 11.1422C6.04648 11.1422 6.00572 11.1453 5.95356 11.1516C5.91341 11.1564 5.88471 11.1589 5.86747 11.1589C5.82344 11.1589 5.76174 11.1653 5.68238 11.1783C5.66198 11.1816 5.64686 11.184 5.63704 11.1855C5.62825 11.1868 5.61476 11.1888 5.59657 11.1914C5.51921 11.2027 5.46083 11.2122 5.42141 11.2201C5.38262 11.2278 5.32505 11.2414 5.24869 11.2608C5.22945 11.2657 5.21517 11.2694 5.20585 11.2717C5.19126 11.2754 5.16919 11.2806 5.13963 11.2875C5.07836 11.3017 5.0314 11.3137 4.99875 11.3237C4.9355 11.3429 4.86648 11.3659 4.79168 11.3927C4.78664 11.3945 4.78177 11.3962 4.77707 11.3979C4.69118 11.4286 4.62709 11.4528 4.5848 11.4703C4.55372 11.4832 4.50921 11.5041 4.45126 11.5331C4.42209 11.5477 4.40046 11.5583 4.38638 11.565C4.31482 11.5988 4.25152 11.6305 4.19646 11.6599C4.16383 11.6774 4.11654 11.705 4.05459 11.7428C4.03311 11.7559 4.01712 11.7656 4.00664 11.7719C3.99294 11.7801 3.9714 11.7926 3.94202 11.8092C3.88636 11.8407 3.84472 11.8657 3.81709 11.8842C3.78931 11.9027 3.75086 11.9312 3.70173 11.9694C3.67616 11.9894 3.65704 12.004 3.64438 12.0134C3.63387 12.0212 3.61793 12.0329 3.59657 12.0484C3.54135 12.0885 3.49979 12.1201 3.47187 12.143C3.44323 12.1665 3.40227 12.2027 3.34899 12.2518C3.33064 12.2687 3.31696 12.2813 3.30795 12.2894C3.24642 12.3452 3.19463 12.3941 3.15258 12.4362C3.14212 12.4467 3.12586 12.4626 3.1038 12.4839C3.05602 12.5302 3.02058 12.566 2.99747 12.5915C2.96932 12.6226 2.93015 12.6689 2.87996 12.7302C2.87096 12.7412 2.86407 12.7496 2.8593 12.7555C2.85448 12.7614 2.84726 12.7701 2.83767 12.7818C2.78501 12.8457 2.74627 12.8944 2.72144 12.9279C2.70105 12.9554 2.67324 12.9965 2.63801 13.0513C2.62133 13.0773 2.60883 13.0965 2.6005 13.1089C2.59244 13.121 2.57994 13.1394 2.563 13.1639C2.52541 13.2184 2.4977 13.2605 2.47988 13.2902C2.46033 13.3228 2.43366 13.3712 2.39987 13.4353C2.38937 13.4552 2.38149 13.4701 2.37622 13.4799C2.37156 13.4886 2.36438 13.502 2.35469 13.52C2.31697 13.5899 2.28971 13.6427 2.27291 13.6782C2.25056 13.7255 2.22178 13.7916 2.18657 13.8766C2.15407 13.9551 2.12818 14.0212 2.10891 14.0751C2.08171 14.1512 2.05871 14.2202 2.03992 14.2821C2.01562 14.3622 1.99552 14.4341 1.97962 14.4976C1.97034 14.5346 1.95905 14.5876 1.94574 14.6565C1.94162 14.6778 1.93848 14.6939 1.93633 14.7048C1.92841 14.7446 1.91875 14.8036 1.90737 14.8818C1.90487 14.899 1.90299 14.9118 1.90173 14.9203C1.89976 14.9336 1.89558 14.9552 1.88921 14.985C1.87425 15.0549 1.86677 15.1102 1.86677 15.1507C1.86677 15.171 1.86547 15.2026 1.86288 15.2457C1.85991 15.2949 1.85843 15.3327 1.85843 15.359C1.85843 15.3795 1.85712 15.4128 1.85451 15.4588C1.85157 15.5105 1.8501 15.5495 1.8501 15.5757C1.8501 15.6021 1.85158 15.6399 1.85454 15.689C1.85713 15.7321 1.85843 15.7638 1.85843 15.7841C1.85843 15.8104 1.85991 15.8482 1.86288 15.8974C1.86547 15.9405 1.86677 15.9722 1.86677 15.9924C1.86677 16.0329 1.87425 16.0882 1.88921 16.1581C1.89558 16.1879 1.89976 16.2095 1.90173 16.2228C1.90299 16.2313 1.90487 16.2441 1.90737 16.2613C1.91875 16.3395 1.92841 16.3985 1.93633 16.4383C1.93848 16.4492 1.94162 16.4653 1.94574 16.4866C1.95905 16.5555 1.97034 16.6085 1.97962 16.6455C1.99551 16.709 2.01561 16.7808 2.03992 16.861C2.05876 16.9231 2.08175 16.9921 2.1089 17.068C2.12814 17.1218 2.15403 17.188 2.18657 17.2665C2.22178 17.3516 2.25056 17.4177 2.2729 17.4649C2.28974 17.5005 2.31706 17.5533 2.35485 17.6234C2.36447 17.6413 2.37159 17.6545 2.37623 17.6632C2.3815 17.6731 2.38937 17.6879 2.39984 17.7078C2.43364 17.7719 2.46032 17.8203 2.47988 17.8529C2.4977 17.8826 2.52541 17.9247 2.563 17.9792C2.57994 18.0037 2.59244 18.0221 2.6005 18.0342C2.60882 18.0466 2.62132 18.0658 2.63801 18.0918C2.67324 18.1465 2.70104 18.1877 2.72142 18.2152C2.74637 18.2488 2.78527 18.2977 2.83815 18.3619C2.84748 18.3732 2.85454 18.3818 2.85932 18.3877C2.86393 18.3933 2.8708 18.4017 2.87996 18.4129C2.93014 18.4742 2.96931 18.5205 2.99746 18.5516C3.02057 18.5771 3.05601 18.6129 3.10379 18.6592C3.12585 18.6805 3.14212 18.6964 3.15258 18.7069C3.16294 18.7173 3.17872 18.7334 3.19992 18.7553C3.24634 18.8032 3.28235 18.8388 3.30795 18.862C3.33866 18.8899 3.38436 18.9286 3.44504 18.9782C3.457 18.9879 3.46594 18.9952 3.47185 19.0001C3.47757 19.0048 3.4853 19.0112 3.49503 19.0192C3.56039 19.073 3.61017 19.1126 3.64438 19.138C3.694 19.1748 3.75158 19.2151 3.81711 19.2589C3.88416 19.3037 3.94734 19.3439 4.00666 19.3795C4.03911 19.399 4.0872 19.4255 4.15093 19.4591C4.17116 19.4698 4.18633 19.4778 4.19644 19.4832C4.25151 19.5126 4.31482 19.5442 4.38638 19.5781C4.4004 19.5848 4.42203 19.5954 4.45125 19.61C4.5092 19.639 4.55372 19.6599 4.58482 19.6728C4.62709 19.6903 4.69115 19.7145 4.77699 19.7452L4.7917 19.7504C4.86646 19.7772 4.93548 19.8002 4.99875 19.8194C5.03139 19.8293 5.07835 19.8414 5.13963 19.8556C5.16915 19.8625 5.19122 19.8677 5.20584 19.8714C5.21494 19.8737 5.22897 19.8772 5.24792 19.8821C5.32462 19.9016 5.38245 19.9153 5.4214 19.923C5.4606 19.9308 5.51865 19.9403 5.59556 19.9515C5.61406 19.9542 5.62789 19.9563 5.63704 19.9576C5.64692 19.9591 5.66213 19.9615 5.68267 19.9648C5.76191 19.9777 5.82351 19.9842 5.86747 19.9842C5.88471 19.9842 5.9134 19.9866 5.95356 19.9915C6.0057 19.9978 6.04647 20.0009 6.07585 20.0009C6.09615 20.0009 6.12785 20.0022 6.17093 20.0048C6.22005 20.0077 6.25781 20.0092 6.28422 20.0092L15.5483 20.0092C15.5544 20.0288 15.561 20.0498 15.5682 20.0721C15.5809 20.1113 15.6013 20.1668 15.6295 20.2387L15.6296 20.239C15.6549 20.3036 15.6783 20.3591 15.6998 20.4056C15.7245 20.459 15.7509 20.5117 15.7789 20.5637C15.7824 20.5703 15.7877 20.5802 15.7948 20.5935C15.825 20.6501 15.849 20.6928 15.8667 20.7215C15.8956 20.7682 15.9306 20.8208 15.9717 20.8791C16.0062 20.928 16.0414 20.9748 16.0772 21.0196C16.0834 21.0274 16.0928 21.0393 16.1054 21.0554C16.1418 21.1018 16.1705 21.1366 16.1914 21.1598C16.2127 21.1835 16.2461 21.2172 16.2915 21.2611C16.3055 21.2746 16.3159 21.2847 16.3227 21.2913C16.3719 21.3396 16.4158 21.3806 16.4543 21.4142C16.4944 21.449 16.5412 21.487 16.5947 21.5282C16.626 21.5523 16.6736 21.586 16.7373 21.6292L16.7434 21.6333C16.8055 21.6756 16.8553 21.7078 16.8929 21.7299C16.9451 21.761 16.9978 21.7903 17.051 21.8178C17.0995 21.8427 17.1551 21.869 17.2176 21.8967C17.2225 21.8988 17.2304 21.9023 17.2412 21.9071C17.3032 21.9345 17.3508 21.9544 17.3841 21.9667C17.4148 21.978 17.4582 21.992 17.5143 22.0086C17.5306 22.0134 17.5429 22.0171 17.5512 22.0196C17.5823 22.029 17.628 22.0407 17.6882 22.0546C17.7053 22.0586 17.718 22.0616 17.7261 22.0635C17.7382 22.0664 17.757 22.0714 17.7825 22.0784C17.8337 22.0925 17.8735 22.102 17.902 22.1071C17.9096 22.1084 17.9217 22.1107 17.9383 22.1139C18.0091 22.1275 18.064 22.1343 18.103 22.1343C18.1182 22.1343 18.1421 22.1356 18.1748 22.1381C18.2152 22.1412 18.2468 22.1427 18.2697 22.1427C18.2853 22.1427 18.3109 22.144 18.3466 22.1465C18.3894 22.1495 18.4221 22.151 18.4448 22.151C18.4675 22.151 18.5002 22.1495 18.543 22.1465C18.5787 22.144 18.6043 22.1427 18.6198 22.1427C18.6465 22.1427 18.6818 22.1393 18.7259 22.1326C18.7549 22.1282 18.7751 22.126 18.7865 22.126C18.8264 22.126 18.8801 22.1191 18.9474 22.1052C18.9626 22.1021 18.9739 22.0998 18.9813 22.0984C19.0136 22.0922 19.0624 22.0808 19.1277 22.0642C19.1444 22.0599 19.1568 22.0568 19.165 22.0548C19.1743 22.0525 19.1881 22.049 19.2066 22.0445C19.2601 22.0315 19.302 22.0202 19.3321 22.0106C19.3916 21.9917 19.4499 21.9713 19.507 21.9494C19.5581 21.9298 19.6137 21.9064 19.674 21.8791C19.7163 21.8598 19.7688 21.8336 19.8317 21.8003C19.9014 21.7635 19.9541 21.7342 19.9899 21.7124C20.0269 21.6898 20.0794 21.6548 20.1474 21.6074C20.1873 21.5797 20.2342 21.5446 20.288 21.5021C20.2935 21.4978 20.3018 21.4913 20.3128 21.4826C20.3642 21.4423 20.4027 21.4108 20.4283 21.3879C20.4837 21.3385 20.5275 21.2976 20.5598 21.2651C20.6004 21.2243 20.6414 21.1804 20.6827 21.1335C20.7103 21.1022 20.7483 21.0554 20.7968 20.9932C20.8175 20.9666 20.8462 20.9264 20.8827 20.8727C20.8914 20.8599 20.8979 20.8504 20.9022 20.8442C20.9093 20.8337 20.9212 20.8174 20.9378 20.7952C20.9693 20.7528 20.9924 20.7194 21.0071 20.6949C21.0339 20.6504 21.0631 20.5978 21.0948 20.5371C21.1153 20.498 21.1416 20.4425 21.1738 20.3706C21.2041 20.3029 21.2275 20.2474 21.2439 20.2039C21.2546 20.1756 21.2676 20.1357 21.2828 20.0841C21.2889 20.0632 21.2936 20.0475 21.2969 20.0371C21.2996 20.0281 21.3039 20.0144 21.3098 19.9961C21.3285 19.9374 21.3417 19.8926 21.3493 19.8617C21.358 19.8262 21.3684 19.7748 21.3807 19.7073C21.3824 19.6976 21.3837 19.6905 21.3845 19.6862C21.3858 19.6792 21.3878 19.6685 21.3906 19.654C21.4049 19.5809 21.412 19.5243 21.412 19.4842C21.412 19.4729 21.4142 19.4527 21.4186 19.4237C21.4253 19.3796 21.4286 19.3443 21.4286 19.3176C21.4286 19.3021 21.4299 19.2764 21.4324 19.2407C21.4355 19.198 21.437 19.1652 21.437 19.1425C21.437 19.1198 21.4355 19.0871 21.4324 19.0444C21.4299 19.0087 21.4286 18.983 21.4286 18.9675C21.4286 18.9408 21.4253 18.9055 21.4186 18.8614C21.4142 18.8324 21.412 18.8122 21.412 18.8009C21.412 18.7608 21.4049 18.7042 21.3907 18.6312C21.3878 18.6166 21.3858 18.6058 21.3845 18.5989C21.3838 18.5949 21.3825 18.5878 21.3806 18.5776C21.3684 18.5102 21.358 18.4588 21.3493 18.4235C21.3417 18.3925 21.3286 18.3477 21.3099 18.2892C21.304 18.2708 21.2997 18.2571 21.2969 18.248C21.2936 18.2376 21.2889 18.2219 21.2828 18.201C21.2676 18.1494 21.2546 18.1095 21.2439 18.0812C21.2275 18.0377 21.2041 17.9821 21.1738 17.9145C21.1417 17.8428 21.1153 17.7873 21.0948 17.748C21.063 17.6871 21.0338 17.6345 21.0071 17.5901C20.9924 17.5657 20.9693 17.5323 20.9378 17.49C20.9213 17.4678 20.9094 17.4514 20.9022 17.4409C20.8978 17.4346 20.8912 17.4249 20.8825 17.412C20.846 17.3584 20.8175 17.3184 20.7968 17.2919C20.7483 17.2296 20.7102 17.1829 20.6827 17.1517C20.6415 17.1049 20.6006 17.061 20.5599 17.02C20.5273 16.9873 20.4834 16.9463 20.4283 16.8972C20.4025 16.8742 20.3637 16.8424 20.312 16.8018C20.3013 16.7935 20.2933 16.7872 20.288 16.783C20.2344 16.7407 20.1875 16.7056 20.1474 16.6777C20.0792 16.6302 20.0267 16.5952 19.9898 16.5727C19.9555 16.5518 19.9043 16.5233 19.8362 16.4872L19.8319 16.4849C19.7698 16.452 19.7171 16.4256 19.6738 16.4059C19.6169 16.38 19.5614 16.3566 19.5071 16.3357C19.4499 16.3138 19.3915 16.2933 19.3319 16.2744C19.3015 16.2648 19.2592 16.2534 19.2049 16.2401C19.1873 16.2358 19.174 16.2326 19.1649 16.2303C19.1579 16.2286 19.1471 16.2258 19.1326 16.2221C19.0651 16.2048 19.0145 16.193 18.981 16.1867C18.9735 16.1852 18.9619 16.1829 18.9462 16.1797C18.8794 16.166 18.8262 16.1591 18.7865 16.1591C18.7751 16.1591 18.7549 16.1569 18.7259 16.1525C18.6818 16.1458 18.6465 16.1424 18.6198 16.1424C18.6043 16.1424 18.5787 16.1411 18.543 16.1386C18.5002 16.1356 18.4675 16.1341 18.4448 16.1341C18.4221 16.1341 18.3894 16.1356 18.3466 16.1386C18.3109 16.1411 18.2853 16.1424 18.2697 16.1424C18.2468 16.1424 18.2152 16.1439 18.1748 16.147C18.1421 16.1495 18.1182 16.1508 18.103 16.1508C18.0641 16.1508 18.0093 16.1576 17.9386 16.1712C17.9219 16.1744 17.9097 16.1767 17.902 16.178C17.8738 16.183 17.8344 16.1925 17.7839 16.2064C17.7579 16.2135 17.7388 16.2186 17.7265 16.2215C17.7178 16.2236 17.7044 16.2268 17.6865 16.2309C17.627 16.2446 17.5819 16.2562 17.551 16.2656C17.5225 16.2742 17.4832 16.2883 17.4329 16.308C17.4112 16.3165 17.3949 16.3228 17.3841 16.3268C17.3728 16.331 17.3554 16.3371 17.332 16.3452C17.2823 16.3623 17.2441 16.3768 17.2174 16.3885C17.1561 16.4155 17.1006 16.4418 17.0509 16.4674C17.0002 16.4935 16.9475 16.5228 16.893 16.5551C16.8561 16.577 16.8063 16.6092 16.7436 16.6516L16.7373 16.6559C16.6736 16.6991 16.626 16.7328 16.5946 16.7569C16.5413 16.7979 16.4946 16.8359 16.4543 16.8709C16.4159 16.9044 16.372 16.9453 16.3227 16.9937C16.3159 17.0004 16.3055 17.0105 16.2915 17.024C16.2461 17.0679 16.2127 17.1016 16.1914 17.1253C16.1704 17.1485 16.1417 17.1833 16.1054 17.2297C16.0929 17.2458 16.0835 17.2577 16.0772 17.2655C16.0414 17.3103 16.0062 17.3571 15.9717 17.406C15.9306 17.4643 15.8956 17.5169 15.8667 17.5636C15.849 17.5923 15.825 17.635 15.7948 17.6917C15.7877 17.705 15.7824 17.7149 15.7789 17.7214C15.751 17.7733 15.7246 17.826 15.6998 17.8795C15.6783 17.926 15.6549 17.9815 15.6296 18.0461L15.6295 18.0464C15.6013 18.1183 15.5809 18.1738 15.5682 18.2129C15.561 18.2353 15.5544 18.2563 15.5483 18.2758L6.07585 18.2758L6.07829 18.2758C6.07577 18.2753 6.07051 18.2741 6.06251 18.2721C6.02849 18.2635 5.99959 18.2592 5.97583 18.2592C5.97075 18.2592 5.9603 18.2582 5.94447 18.2562C5.91624 18.2526 5.89335 18.2508 5.87581 18.2508L5.87826 18.2508C5.87568 18.2503 5.87034 18.2491 5.86224 18.247C5.82819 18.2385 5.79937 18.2342 5.77579 18.2342L5.77826 18.2341C5.77565 18.2336 5.77026 18.2324 5.76209 18.2303C5.72801 18.2218 5.69924 18.2175 5.67577 18.2175L5.67837 18.2173C5.67459 18.2164 5.66704 18.214 5.6557 18.2102C5.63781 18.2043 5.62355 18.1999 5.61291 18.1972C5.60533 18.1953 5.59136 18.1906 5.571 18.1832C5.54838 18.175 5.53073 18.169 5.51805 18.1653C5.50483 18.1614 5.48639 18.1568 5.46273 18.1517C5.44323 18.1474 5.43006 18.1442 5.42324 18.1419C5.40701 18.1365 5.38344 18.128 5.35253 18.1163C5.34621 18.114 5.34092 18.112 5.33664 18.1104C5.32461 18.1059 5.30436 18.0975 5.27588 18.0852C5.26059 18.0787 5.24918 18.0738 5.24165 18.0707C5.2288 18.0654 5.20926 18.0565 5.18302 18.0442C5.17066 18.0385 5.16131 18.0341 5.15495 18.0312C5.14656 18.0273 5.13449 18.022 5.11874 18.0151C5.09548 18.0049 5.07859 17.9971 5.06806 17.9918C5.05576 17.9857 5.03621 17.9751 5.00942 17.9601C4.99689 17.953 4.98747 17.9478 4.98116 17.9444C4.97337 17.9401 4.96183 17.9339 4.94655 17.9258C4.92205 17.9129 4.9046 17.9033 4.89421 17.8971C4.88751 17.8931 4.87798 17.8875 4.86561 17.8802C4.84321 17.8671 4.8266 17.8571 4.81579 17.8501C4.79155 17.8344 4.75322 17.8069 4.70079 17.7676C4.68865 17.7585 4.67953 17.7516 4.67342 17.7471C4.6666 17.742 4.65654 17.7346 4.64325 17.7248C4.59517 17.6894 4.56042 17.6627 4.539 17.6446C4.51827 17.6271 4.48862 17.5996 4.45005 17.5622C4.43733 17.5499 4.42761 17.5405 4.4209 17.5341C4.36784 17.4833 4.32834 17.4438 4.30239 17.4157C4.28591 17.3979 4.26048 17.3673 4.22608 17.3239C4.21088 17.3048 4.19946 17.2905 4.19183 17.2811C4.18285 17.2701 4.16981 17.2545 4.15272 17.2344C4.12324 17.1997 4.10203 17.1733 4.08911 17.1552C4.0581 17.1119 4.0265 17.0644 3.9943 17.0129C3.96664 16.9687 3.93763 16.9186 3.90729 16.8626C3.89547 16.8408 3.87892 16.8063 3.85762 16.7591C3.8484 16.7386 3.84135 16.7231 3.83646 16.7126C3.82966 16.698 3.81948 16.6772 3.80592 16.6502C3.7861 16.6109 3.77249 16.5817 3.7651 16.5628C3.74814 16.5195 3.72974 16.4668 3.70988 16.4049C3.69294 16.3521 3.67712 16.2968 3.66244 16.2389C3.65683 16.2168 3.64986 16.1812 3.64153 16.1321C3.63711 16.1061 3.63363 16.0864 3.63111 16.073C3.62805 16.0568 3.62281 16.0341 3.61539 16.005C3.60537 15.9657 3.60037 15.9392 3.60037 15.9257C3.60037 15.899 3.59708 15.8628 3.59052 15.8172C3.58597 15.7855 3.5837 15.7633 3.5837 15.7507L3.5837 15.3924C3.5837 15.3798 3.58597 15.3577 3.59052 15.326C3.59708 15.2803 3.60037 15.2441 3.60037 15.2174C3.60037 15.2039 3.60537 15.1775 3.61539 15.1382C3.62281 15.109 3.62805 15.0863 3.63111 15.0702C3.63363 15.0567 3.63711 15.037 3.64154 15.0109C3.64987 14.9619 3.65684 14.9263 3.66244 14.9042C3.67056 14.8722 3.68482 14.8244 3.70524 14.7609C3.70732 14.7544 3.70887 14.7496 3.70988 14.7465C3.71274 14.7376 3.71701 14.7241 3.72271 14.706C3.74111 14.6474 3.75525 14.6055 3.76511 14.5803C3.77249 14.5614 3.78609 14.5322 3.80592 14.4929C3.81948 14.4659 3.82966 14.4451 3.83645 14.4305C3.84137 14.4199 3.84845 14.4044 3.8577 14.3839C3.87896 14.3367 3.89549 14.3022 3.90729 14.2805C3.93771 14.2244 3.96672 14.1743 3.9943 14.1302C4.00708 14.1097 4.02819 14.0795 4.05763 14.0395C4.07146 14.0207 4.08196 14.0063 4.08912 13.9962C4.12091 13.9518 4.15514 13.9071 4.1918 13.862C4.22152 13.8255 4.25839 13.7834 4.30242 13.7357C4.30997 13.7275 4.32126 13.7151 4.33629 13.6985C4.37445 13.6563 4.40265 13.6265 4.4209 13.609C4.42766 13.6025 4.43745 13.5931 4.45028 13.5807C4.48876 13.5434 4.51834 13.516 4.539 13.4985C4.56042 13.4804 4.59516 13.4537 4.64323 13.4183C4.65662 13.4084 4.66667 13.401 4.67337 13.396C4.69465 13.3802 4.72966 13.3567 4.7784 13.3254C4.79498 13.3148 4.80726 13.3069 4.81524 13.3017C4.82661 13.2944 4.84173 13.2837 4.86059 13.2696C4.87646 13.2578 4.88763 13.25 4.89411 13.2461C4.90471 13.2398 4.92243 13.23 4.94729 13.2169C4.96221 13.209 4.97348 13.2029 4.9811 13.1988C4.9876 13.1952 4.99724 13.1898 5.01 13.1827C5.03652 13.1679 5.05584 13.1574 5.06796 13.1513C5.0787 13.1459 5.09585 13.138 5.11942 13.1277C5.13482 13.121 5.14661 13.1157 5.15477 13.112C5.16145 13.1089 5.17118 13.1044 5.18395 13.0984C5.20976 13.0863 5.22897 13.0777 5.24157 13.0724C5.24923 13.0693 5.26084 13.0643 5.2764 13.0576C5.3046 13.0455 5.32465 13.0372 5.33655 13.0328C5.34053 13.0313 5.34628 13.0291 5.3538 13.0263C5.38414 13.0149 5.40726 13.0065 5.42317 13.0012C5.42997 12.9989 5.4431 12.9957 5.46256 12.9915C5.48632 12.9863 5.50485 12.9817 5.51815 12.9778C5.53078 12.9741 5.54839 12.9681 5.57099 12.9599C5.59134 12.9525 5.60532 12.9478 5.61292 12.9459C5.64418 12.9379 5.66513 12.9339 5.67577 12.9339C5.70507 12.9339 5.73929 12.9266 5.77841 12.9119C5.78208 12.9105 5.785 12.9094 5.78718 12.9086C5.80847 12.9075 5.83349 12.9033 5.86224 12.8961C5.87034 12.894 5.87568 12.8928 5.87826 12.8923L5.87581 12.8923C5.89336 12.8923 5.91625 12.8905 5.94447 12.8869C5.96031 12.8849 5.97076 12.8839 5.97583 12.8839C5.99345 12.8839 6.01636 12.8821 6.04456 12.8786C6.06032 12.8766 6.07075 12.8756 6.07585 12.8756C6.09281 12.8756 6.11642 12.8739 6.1467 12.8705C6.1659 12.8684 6.1784 12.8673 6.1842 12.8673L6.92114 12.8673C6.92701 12.9057 6.9323 12.9373 6.93701 12.962C6.94652 13.0119 6.96332 13.0877 6.9874 13.1893L6.98842 13.1935C6.9971 13.2302 7.01121 13.2816 7.03076 13.3478C7.03866 13.3745 7.04456 13.3947 7.04845 13.4084C7.05337 13.4257 7.0604 13.4528 7.06955 13.4897C7.08499 13.5521 7.09806 13.5993 7.10876 13.6314C7.13148 13.6995 7.15724 13.7711 7.18604 13.8461C7.19866 13.879 7.21945 13.927 7.24843 13.9901C7.26303 14.0219 7.27364 14.0454 7.28026 14.0606C7.3153 14.1409 7.34679 14.2096 7.37475 14.2667C7.37986 14.2771 7.38757 14.293 7.39788 14.3143C7.43193 14.3846 7.45859 14.4374 7.47785 14.4726L7.48368 14.4833C7.5288 14.5658 7.56409 14.6281 7.58954 14.6701C7.61292 14.7086 7.65012 14.7659 7.70114 14.842C7.70877 14.8534 7.71445 14.8619 7.71817 14.8674C7.72433 14.8767 7.73353 14.8905 7.74575 14.9089C7.78911 14.9743 7.82287 15.0234 7.84701 15.0562C7.86809 15.0849 7.90079 15.1257 7.94511 15.1788C7.96671 15.2047 7.9826 15.2239 7.9928 15.2365C8.03288 15.2862 8.08155 15.3435 8.13881 15.4083C8.14551 15.4159 8.15568 15.4275 8.16932 15.443C8.2231 15.5043 8.26446 15.55 8.29338 15.5799C8.35821 15.647 8.41258 15.7014 8.45649 15.743C8.50501 15.7889 8.56223 15.8404 8.62813 15.8974C8.63627 15.9045 8.64831 15.915 8.66427 15.9289C8.72251 15.9798 8.76775 16.0179 8.8 16.0434C8.82964 16.0669 8.87502 16.1002 8.93612 16.1434C8.95981 16.1601 8.97735 16.1726 8.98873 16.1808C9.04115 16.2185 9.10411 16.2615 9.17759 16.3096C9.21472 16.3339 9.27088 16.3682 9.34607 16.4127C9.35917 16.4204 9.3688 16.4261 9.37497 16.4298C9.44457 16.4711 9.51042 16.5083 9.57252 16.5414C9.5876 16.5495 9.6109 16.5624 9.64244 16.5801C9.70183 16.6136 9.74718 16.6378 9.7785 16.6528C9.8647 16.694 9.93342 16.7255 9.98465 16.7472C10.0159 16.7605 10.0617 16.7773 10.1219 16.7976C10.1567 16.8094 10.1825 16.8184 10.1992 16.8247C10.207 16.8276 10.2188 16.8319 10.2345 16.8378C10.3128 16.8672 10.3726 16.8886 10.4139 16.9019L10.4168 16.9028L10.4196 16.9037L10.4225 16.9046L10.4253 16.9055C10.519 16.9358 10.5896 16.9574 10.637 16.9704C10.6731 16.9803 10.7263 16.9929 10.7964 17.008C10.825 17.0142 10.8462 17.0189 10.8602 17.0221C10.8766 17.0258 10.9014 17.0317 10.9347 17.04C10.9994 17.0561 11.049 17.0672 11.0835 17.0734C11.1311 17.082 11.2032 17.0928 11.2998 17.1057L11.3151 17.1078C11.3274 17.1094 11.346 17.1122 11.371 17.1161C11.4478 17.1281 11.5081 17.1341 11.5518 17.1341C11.571 17.1341 11.603 17.1366 11.6477 17.1415C11.7035 17.1477 11.7466 17.1508 11.7769 17.1508L12.2186 17.1508C12.2489 17.1508 12.292 17.1477 12.3478 17.1415C12.3925 17.1366 12.4245 17.1341 12.4437 17.1341C12.4886 17.1341 12.5531 17.1278 12.6372 17.1152C12.6605 17.1117 12.6776 17.1093 12.6887 17.1078C12.7744 17.0963 12.8488 17.0848 12.912 17.0734C12.9465 17.0672 12.9961 17.0561 13.0608 17.04C13.0941 17.0317 13.119 17.0258 13.1353 17.0221C13.1493 17.0189 13.1706 17.0142 13.1991 17.008C13.2692 16.9929 13.3224 16.9803 13.3585 16.9704C13.4058 16.9575 13.4761 16.9359 13.5695 16.9058L13.5816 16.9019C13.6229 16.8886 13.6827 16.8672 13.761 16.8378C13.7767 16.832 13.7884 16.8276 13.7963 16.8247C13.813 16.8184 13.8388 16.8094 13.8737 16.7976C13.9338 16.7773 13.9796 16.7605 14.0109 16.7472C14.062 16.7255 14.1307 16.694 14.217 16.6528C14.2484 16.6378 14.2938 16.6135 14.3532 16.58C14.3847 16.5623 14.408 16.5495 14.423 16.5414C14.4345 16.5353 14.4521 16.526 14.4759 16.5135C14.5445 16.4775 14.5955 16.4496 14.6289 16.4298C14.6686 16.4063 14.7245 16.3708 14.7967 16.3235C14.8067 16.3169 14.8138 16.3123 14.8179 16.3096C14.8916 16.2613 14.9545 16.2184 15.0068 16.1808C15.0181 16.1726 15.0356 16.1602 15.0591 16.1436C15.1204 16.1003 15.1658 16.0669 15.1955 16.0434C15.2278 16.0179 15.273 15.9798 15.3312 15.9289C15.3472 15.915 15.3593 15.9045 15.3674 15.8975C15.4333 15.8404 15.4905 15.7889 15.539 15.743C15.5828 15.7015 15.6372 15.6472 15.7021 15.5799C15.731 15.5501 15.7722 15.5046 15.8258 15.4435C15.8395 15.4278 15.8498 15.4161 15.8567 15.4083C15.8684 15.3952 15.8868 15.3751 15.9119 15.3482C15.9565 15.3004 15.9896 15.2632 16.0111 15.2365C16.0476 15.1912 16.0934 15.1311 16.1485 15.0562C16.1726 15.0234 16.2064 14.9743 16.2498 14.9089C16.2621 14.8904 16.2713 14.8766 16.2774 14.8674C16.2813 14.8616 16.2869 14.8531 16.2944 14.842C16.3454 14.7659 16.3826 14.7086 16.406 14.6701C16.4312 14.6285 16.4662 14.5668 16.511 14.4849L16.5177 14.4726C16.537 14.4374 16.5636 14.3846 16.5977 14.3142C16.608 14.2928 16.6157 14.277 16.6208 14.2667C16.6285 14.251 16.6407 14.2271 16.6574 14.195C16.6878 14.1369 16.7099 14.0921 16.7236 14.0606C16.7431 14.0158 16.7702 13.9483 16.8048 13.8582L16.8095 13.8461C16.8383 13.7711 16.864 13.6995 16.8867 13.6314C16.9101 13.5614 16.933 13.4871 16.9554 13.4084C16.9655 13.373 16.9778 13.323 16.9923 13.2583C16.9987 13.2298 17.0036 13.2082 17.0071 13.1935L17.0081 13.1893C17.0322 13.0877 17.049 13.0119 17.0585 12.962C17.0632 12.9373 17.0685 12.9057 17.0744 12.8673L17.7113 12.8673C17.7376 12.8673 17.7765 12.8658 17.8282 12.8628C17.8743 12.8602 17.9075 12.8589 17.928 12.8589C17.9574 12.8589 17.9982 12.8558 18.0503 12.8495C18.0904 12.8447 18.1191 12.8423 18.1364 12.8423C18.1803 12.8423 18.2418 12.8358 18.3209 12.8229C18.3415 12.8195 18.3568 12.8171 18.3668 12.8156C18.3755 12.8143 18.3884 12.8124 18.4057 12.8099C18.4838 12.7986 18.5427 12.7889 18.5824 12.781C18.6162 12.7743 18.6638 12.7628 18.7251 12.7463C18.7538 12.7386 18.7753 12.733 18.7896 12.7294C18.8055 12.7255 18.8305 12.7197 18.8646 12.7122C18.9268 12.6986 18.9736 12.687 19.0051 12.6774C19.0673 12.6585 19.1363 12.6356 19.2121 12.6085C19.2664 12.589 19.3326 12.5631 19.4107 12.5308C19.4417 12.5179 19.4861 12.4971 19.5439 12.4682C19.5732 12.4535 19.595 12.4429 19.6091 12.4362C19.6211 12.4305 19.6395 12.422 19.6643 12.4105C19.728 12.3812 19.7757 12.3581 19.8074 12.3412C19.8173 12.3359 19.8323 12.328 19.8526 12.3173C19.9165 12.2836 19.9646 12.2571 19.9971 12.2376C20.0269 12.2197 20.0691 12.192 20.1236 12.1544C20.1481 12.1375 20.1663 12.125 20.1784 12.117C20.2236 12.0867 20.284 12.0436 20.3595 11.9877C20.37 11.9799 20.3858 11.9684 20.4069 11.953C20.4623 11.9127 20.504 11.8811 20.532 11.8582C20.5605 11.8348 20.6012 11.7987 20.6542 11.7498C20.6728 11.7328 20.6867 11.72 20.6959 11.7117C20.7568 11.6565 20.8086 11.6076 20.8513 11.5649C20.8936 11.5226 20.9425 11.4708 20.998 11.4096C21.0063 11.4004 21.0192 11.3864 21.0365 11.3676C21.0852 11.3148 21.1212 11.2741 21.1445 11.2457C21.1676 11.2176 21.1992 11.1759 21.2395 11.1204C21.2549 11.0992 21.2664 11.0835 21.2741 11.0732C21.3299 10.998 21.373 10.9376 21.4033 10.8922C21.4276 10.8558 21.4609 10.8023 21.5031 10.7318C21.5086 10.7226 21.5128 10.7157 21.5156 10.7109C21.5221 10.7002 21.5319 10.684 21.5452 10.6623C21.5828 10.6007 21.6103 10.5537 21.6276 10.5213C21.6449 10.4891 21.6684 10.4406 21.6981 10.3759C21.709 10.352 21.7172 10.3344 21.7225 10.3231C21.7452 10.2753 21.774 10.2092 21.8089 10.1247C21.8405 10.0488 21.8664 9.98253 21.8866 9.92601C21.914 9.84951 21.937 9.78048 21.9556 9.71891C21.9803 9.63722 22.0004 9.56553 22.0158 9.50385C22.0193 9.49009 22.0247 9.46949 22.0321 9.44203C22.0489 9.37937 22.0607 9.3308 22.0675 9.29634C22.0758 9.25475 22.0858 9.1931 22.0977 9.1114C22.0998 9.09687 22.1012 9.0867 22.1021 9.08089C22.1036 9.07113 22.106 9.05607 22.1093 9.03571C22.1223 8.95627 22.1288 8.8945 22.1288 8.85041C22.1288 8.83317 22.1312 8.80449 22.136 8.76437C22.1423 8.71221 22.1454 8.67145 22.1454 8.64207C22.1454 8.62155 22.1467 8.5883 22.1493 8.54231C22.1523 8.49059 22.1538 8.45161 22.1538 8.42539C22.1538 8.39898 22.1523 8.36123 22.1493 8.31214C22.1467 8.26907 22.1454 8.23737 22.1454 8.21705C22.1454 8.18767 22.1423 8.1469 22.136 8.09474C22.1312 8.05462 22.1288 8.02595 22.1288 8.00871C22.1288 7.96461 22.1223 7.90285 22.1093 7.82341C22.106 7.80305 22.1036 7.78812 22.1022 7.77863C22.1013 7.77258 22.0998 7.7623 22.0977 7.74779C22.0858 7.66607 22.0758 7.6044 22.0675 7.56277C22.0596 7.52263 22.0455 7.46303 22.0253 7.38399C22.0211 7.36774 22.018 7.35552 22.0159 7.34732C22.0064 7.30938 21.9908 7.25485 21.9689 7.18371C21.963 7.16461 21.9586 7.15011 21.9556 7.14021C21.9369 7.07852 21.9139 7.00949 21.8866 6.93311C21.8663 6.87641 21.8405 6.81029 21.809 6.73473C21.774 6.65001 21.7452 6.58388 21.7227 6.53636C21.7172 6.52482 21.709 6.5071 21.6981 6.48319C21.6684 6.4185 21.6449 6.37007 21.6276 6.33791C21.6103 6.30547 21.5828 6.25846 21.5452 6.19686C21.5319 6.1751 21.5221 6.15886 21.5156 6.14816C21.5133 6.1443 21.5093 6.13748 21.5034 6.1277C21.4611 6.05702 21.4277 6.00344 21.4033 5.96695C21.3731 5.92172 21.33 5.86137 21.2741 5.78591C21.2664 5.77549 21.2548 5.75965 21.2393 5.73841C21.1991 5.68307 21.1675 5.64142 21.1445 5.61344C21.1212 5.585 21.0852 5.54436 21.0365 5.49151C21.0192 5.47275 21.0064 5.45875 20.998 5.44952C20.9425 5.38832 20.8936 5.33654 20.8513 5.29418C20.8409 5.2838 20.825 5.26759 20.8037 5.24557C20.7574 5.19775 20.7214 5.16225 20.6959 5.13908C20.6649 5.111 20.6188 5.07196 20.5576 5.02196C20.5463 5.01272 20.5378 5.00573 20.532 5.00097C20.5267 4.99659 20.5185 4.98987 20.5075 4.9808C20.4427 4.92748 20.3933 4.88824 20.3594 4.86307C20.3319 4.84269 20.2908 4.81492 20.2361 4.77975C20.2101 4.76302 20.1909 4.75049 20.1784 4.74217C20.1663 4.73411 20.1481 4.72163 20.1236 4.70473C20.0691 4.66712 20.0269 4.6394 19.9971 4.62156C19.9646 4.60206 19.9164 4.57547 19.8525 4.54179C19.8324 4.53124 19.8174 4.52329 19.8074 4.51793C19.7757 4.50097 19.728 4.47786 19.6643 4.44858C19.6395 4.43715 19.6211 4.4286 19.6091 4.42294C19.595 4.41626 19.5732 4.4056 19.5439 4.39094C19.4861 4.36202 19.4417 4.34114 19.4107 4.3283C19.3326 4.29596 19.2664 4.27008 19.2121 4.25065C19.1364 4.22354 19.0674 4.20055 19.0051 4.18167C18.9736 4.17211 18.9267 4.16051 18.8646 4.14688C18.8305 4.13939 18.8055 4.13366 18.7896 4.1297C18.7753 4.12612 18.754 4.12052 18.7255 4.1129C18.664 4.09642 18.6163 4.08482 18.5824 4.07808C18.5427 4.07017 18.4838 4.06054 18.4057 4.0492C18.3883 4.04666 18.3753 4.04475 18.3668 4.04349C18.3568 4.04201 18.3415 4.03958 18.3208 4.03622C18.2417 4.02332 18.1803 4.01687 18.1364 4.01687C18.1191 4.01687 18.0904 4.01445 18.0503 4.00962C17.9982 4.00334 17.9574 4.0002 17.928 4.0002C17.9075 4.0002 17.8742 3.99889 17.8282 3.99627C17.7765 3.99333 17.7376 3.99186 17.7113 3.99186L8.44536 3.99186L8.44482 3.99007C8.44226 3.98163 8.43839 3.96763 8.43321 3.94806C8.42383 3.91269 8.41594 3.88584 8.40956 3.8675C8.40193 3.84561 8.39013 3.81463 8.37416 3.77456C8.37038 3.7651 8.36758 3.75805 8.36575 3.75341C8.36254 3.74529 8.35778 3.73256 8.35146 3.71523C8.33951 3.68246 8.32958 3.65716 8.32167 3.63933C8.30012 3.59078 8.28258 3.55282 8.26906 3.52545C8.26033 3.50776 8.24705 3.48452 8.22921 3.45573C8.21905 3.43933 8.21193 3.4274 8.20785 3.41993C8.20375 3.41242 8.19726 3.40012 8.18839 3.38304C8.17055 3.34868 8.15656 3.32308 8.14643 3.30622C8.14188 3.29866 8.13503 3.28666 8.12587 3.27023C8.10915 3.24027 8.09546 3.21719 8.0848 3.20099C8.07401 3.18461 8.05837 3.16281 8.03787 3.13559C8.0274 3.12168 8.01965 3.11123 8.01462 3.10424C7.9885 3.06792 7.96226 3.03294 7.9359 2.9993C7.91096 2.96747 7.88466 2.93532 7.85698 2.90285C7.83896 2.88171 7.81305 2.85289 7.77925 2.81639L7.77786 2.81488C7.76377 2.79968 7.74277 2.77847 7.71487 2.75128C7.70375 2.74045 7.69553 2.73238 7.6902 2.72709C7.68425 2.72117 7.67512 2.71188 7.66282 2.69921C7.63716 2.67279 7.61702 2.65288 7.60238 2.63948C7.58808 2.6264 7.56704 2.60893 7.53926 2.58708C7.5239 2.575 7.51282 2.56611 7.50604 2.56039C7.46494 2.52579 7.43278 2.49949 7.40956 2.48151C7.40276 2.47625 7.39178 2.46709 7.37662 2.45405C7.35015 2.43127 7.32892 2.4142 7.31292 2.40283C7.29238 2.38824 7.26119 2.36737 7.21935 2.3402C7.21423 2.33687 7.21037 2.33437 7.20778 2.33268C7.1914 2.32204 7.16798 2.30817 7.13752 2.29108C7.12166 2.28219 7.11 2.27553 7.10253 2.2711C7.09717 2.26792 7.08916 2.26313 7.07851 2.25674C7.04365 2.23584 7.01652 2.22016 6.99713 2.20972C6.97999 2.20049 6.95517 2.1888 6.92268 2.17466C6.90428 2.16665 6.89115 2.16073 6.88327 2.1569C6.84553 2.13853 6.80755 2.12101 6.76933 2.10431C6.7613 2.10081 6.74827 2.09465 6.73025 2.08585C6.69839 2.0703 6.67339 2.059 6.65525 2.05195C6.64829 2.04925 6.63778 2.04509 6.62373 2.03947C6.58829 2.02532 6.56075 2.01488 6.5411 2.00817C6.51876 2.00053 6.48726 1.99073 6.4466 1.97877C6.43787 1.97621 6.43128 1.97427 6.42684 1.97295C6.42259 1.97169 6.41613 1.96977 6.40745 1.96718C6.36171 1.95354 6.32729 1.9438 6.30419 1.93798C6.29921 1.93673 6.29083 1.93441 6.27904 1.93102C6.22665 1.91596 6.18392 1.90843 6.15086 1.90843C6.14862 1.90843 6.13968 1.90676 6.12404 1.90343C6.0876 1.89565 6.05765 1.89177 6.03417 1.89177C6.03187 1.89177 6.02294 1.8901 6.0074 1.88677C5.97104 1.87899 5.94107 1.8751 5.91748 1.8751C5.91512 1.8751 5.90621 1.87344 5.89075 1.87012C5.85445 1.86233 5.82446 1.85843 5.80079 1.85843C5.79311 1.85843 5.77903 1.85733 5.75854 1.85513C5.72735 1.85177 5.70254 1.8501 5.68411 1.8501L5.62774 1.8501ZM5.50212 2.1501L5.68411 2.1501C5.69182 2.1501 5.70594 2.1512 5.72648 2.15341C5.75762 2.15676 5.78239 2.15843 5.80079 2.15843C5.80323 2.15843 5.81223 2.1601 5.82779 2.16344C5.864 2.17121 5.8939 2.1751 5.91748 2.1751C5.9199 2.1751 5.92894 2.17677 5.9446 2.18013C5.98084 2.18789 6.01069 2.19177 6.03417 2.19177C6.03655 2.19177 6.04564 2.19345 6.06144 2.19682C6.09772 2.20456 6.12752 2.20843 6.15086 2.20843C6.15576 2.20843 6.17086 2.21207 6.19618 2.21935C6.21115 2.22365 6.22272 2.22683 6.2309 2.22889C6.24981 2.23366 6.28008 2.24225 6.3217 2.25466C6.33056 2.25731 6.33721 2.25928 6.34163 2.26059C6.34626 2.26197 6.35303 2.26396 6.36195 2.26658C6.39846 2.27732 6.42584 2.28581 6.44408 2.29204C6.45892 2.29712 6.48171 2.30579 6.51244 2.31807C6.5274 2.32404 6.53879 2.32855 6.54663 2.3316C6.55697 2.33561 6.57429 2.34356 6.59861 2.35543C6.62045 2.3661 6.63734 2.37403 6.64926 2.37924C6.68371 2.39429 6.71796 2.41009 6.75202 2.42666C6.7637 2.43235 6.78068 2.44003 6.80295 2.44973C6.82778 2.46054 6.84509 2.46857 6.85487 2.47384C6.87019 2.4821 6.89331 2.49549 6.92421 2.51402C6.93532 2.52068 6.94375 2.52572 6.94951 2.52913C6.95905 2.5348 6.9728 2.54266 6.99075 2.55273C7.01553 2.56663 7.03337 2.57713 7.04429 2.58422C7.04705 2.58602 7.05094 2.58855 7.05598 2.59181C7.09432 2.61671 7.12205 2.63524 7.13919 2.64741C7.1476 2.65339 7.16151 2.66473 7.18093 2.68143C7.20002 2.69787 7.21502 2.7103 7.22592 2.71874C7.2459 2.7342 7.27486 2.75791 7.3128 2.78986C7.32212 2.79772 7.33579 2.80873 7.35383 2.82291C7.37572 2.84013 7.39105 2.85275 7.39983 2.86078C7.41012 2.8702 7.42604 2.88601 7.4476 2.90821C7.46114 2.92215 7.47151 2.9327 7.47871 2.93985C7.48473 2.94584 7.49366 2.9546 7.5055 2.96613C7.52973 2.98976 7.54715 3.00729 7.55775 3.01873L7.55914 3.02024C7.59015 3.05372 7.61332 3.07945 7.62865 3.09744C7.65366 3.12678 7.67736 3.15575 7.69976 3.18433C7.72358 3.21473 7.74735 3.24642 7.77107 3.2794C7.77737 3.28816 7.78642 3.30038 7.79821 3.31604C7.81491 3.33822 7.82693 3.35487 7.83425 3.36599C7.84087 3.37605 7.85074 3.39284 7.86386 3.41636C7.8746 3.43562 7.88308 3.45043 7.8893 3.46077C7.89623 3.4723 7.90718 3.49248 7.92215 3.52131C7.93199 3.54025 7.93946 3.55439 7.94457 3.56374C7.95127 3.57602 7.96115 3.59268 7.97419 3.61372C7.98695 3.63434 7.99557 3.64917 8.00005 3.65823C8.01178 3.68198 8.02758 3.71624 8.04746 3.76102C8.05261 3.77263 8.05999 3.79162 8.06961 3.81799C8.07683 3.83782 8.08254 3.85303 8.08673 3.86362C8.08867 3.86855 8.09159 3.87589 8.09549 3.88565C8.10983 3.92163 8.12009 3.94849 8.12626 3.96621C8.13014 3.97735 8.1358 3.99692 8.14322 4.02492C8.1493 4.04785 8.15412 4.0652 8.15768 4.07698C8.16076 4.08716 8.16531 4.10147 8.17131 4.11989C8.17997 4.14651 8.18599 4.16633 8.18935 4.17935L8.21839 4.29186L17.7113 4.29186C17.7318 4.29186 17.7651 4.29317 17.8112 4.29579C17.8629 4.29873 17.9018 4.3002 17.928 4.3002C17.9454 4.3002 17.9742 4.30262 18.0145 4.30747C18.0665 4.31373 18.1071 4.31687 18.1364 4.31687C18.1641 4.31687 18.2094 4.32201 18.2725 4.3323C18.2946 4.3359 18.3113 4.33854 18.3227 4.34024C18.3316 4.34156 18.3449 4.3435 18.3626 4.34607C18.4355 4.35667 18.4892 4.36542 18.5239 4.37232C18.5513 4.37778 18.5926 4.38791 18.6479 4.4027C18.678 4.41074 18.7009 4.41674 18.7167 4.4207C18.7354 4.42538 18.7632 4.43179 18.8003 4.43992C18.8548 4.45186 18.894 4.46147 18.918 4.46874C18.9756 4.4862 19.0399 4.50766 19.111 4.53311C19.1607 4.55089 19.2224 4.575 19.2959 4.60546C19.3204 4.61559 19.3583 4.63352 19.4097 4.65925C19.441 4.67489 19.4648 4.68652 19.4809 4.69416C19.4938 4.70026 19.5131 4.70924 19.5389 4.72112C19.5972 4.7479 19.6395 4.76836 19.666 4.78251C19.6765 4.78811 19.692 4.79634 19.7126 4.80721C19.7717 4.83833 19.8151 4.86222 19.8429 4.87889C19.8672 4.89343 19.9039 4.91769 19.9532 4.95165C19.9789 4.96941 19.9985 4.98273 20.0118 4.99163C20.0257 5.00095 20.0464 5.01444 20.0739 5.03211C20.123 5.06368 20.1587 5.08767 20.1808 5.10407C20.2106 5.12619 20.2559 5.16229 20.3167 5.21237C20.3277 5.22139 20.336 5.22822 20.3416 5.23285C20.3471 5.2373 20.3558 5.24443 20.3678 5.25423C20.425 5.30101 20.4672 5.33673 20.4945 5.36141C20.5152 5.38018 20.5464 5.41113 20.5882 5.45426C20.6106 5.4774 20.6276 5.49475 20.6391 5.50633C20.678 5.54521 20.7236 5.59344 20.7758 5.65101C20.7846 5.66077 20.7979 5.67536 20.8158 5.69477C20.8606 5.7434 20.8929 5.77973 20.9126 5.80376C20.9319 5.8272 20.9599 5.86421 20.9966 5.91479C21.0126 5.93672 21.0248 5.95334 21.0331 5.96464C21.0862 6.03614 21.1264 6.09247 21.1539 6.13362C21.1755 6.16596 21.2062 6.21533 21.2459 6.28175C21.2516 6.29126 21.2558 6.29815 21.2583 6.30243C21.2652 6.31381 21.2754 6.33073 21.2891 6.35319C21.3238 6.40988 21.3484 6.45194 21.363 6.47936C21.3775 6.50628 21.3983 6.54933 21.4255 6.60849C21.4369 6.63325 21.4455 6.65184 21.4513 6.66425C21.4719 6.70759 21.4987 6.76926 21.5317 6.84924C21.5614 6.9206 21.5856 6.98225 21.6041 7.03421C21.6298 7.10592 21.6513 7.17023 21.6685 7.22713C21.6716 7.2372 21.6761 7.2521 21.6822 7.27183C21.7025 7.33785 21.7167 7.38725 21.7249 7.42003C21.7271 7.4287 21.7303 7.44144 21.7346 7.45826C21.7535 7.53207 21.7664 7.58641 21.7733 7.62127C21.7806 7.65773 21.7897 7.71423 21.8008 7.79077C21.8027 7.80427 21.8042 7.81471 21.8053 7.8221C21.807 7.83354 21.8097 7.8501 21.8132 7.87179C21.8236 7.93521 21.8288 7.98085 21.8288 8.00871C21.8288 8.03795 21.8319 8.07858 21.8382 8.13061C21.843 8.17086 21.8454 8.19967 21.8454 8.21705C21.8454 8.24342 21.8469 8.28113 21.8499 8.33019C21.8525 8.37329 21.8538 8.40503 21.8538 8.42539C21.8538 8.44593 21.8525 8.47923 21.8498 8.52527C21.8469 8.57695 21.8454 8.61588 21.8454 8.64207C21.8454 8.65945 21.843 8.68826 21.8382 8.7285C21.8319 8.78052 21.8288 8.82116 21.8288 8.85041C21.8288 8.87826 21.8236 8.9239 21.8132 8.98733C21.8097 9.00901 21.8071 9.02544 21.8054 9.03662C21.8043 9.04413 21.8027 9.05473 21.8008 9.06841C21.7897 9.14494 21.7805 9.20142 21.7733 9.23785C21.7677 9.26587 21.7574 9.30806 21.7423 9.3644C21.7346 9.3932 21.7288 9.41519 21.725 9.43037C21.7106 9.48781 21.6918 9.55501 21.6685 9.63199C21.6513 9.68879 21.6298 9.7531 21.6041 9.82491C21.5856 9.87671 21.5615 9.93825 21.5319 10.0095C21.4988 10.0897 21.472 10.1514 21.4515 10.1945C21.4456 10.2072 21.4369 10.2259 21.4255 10.2506C21.3983 10.3098 21.3775 10.3528 21.3631 10.3797C21.3484 10.4072 21.3238 10.4492 21.2891 10.5059C21.2753 10.5285 21.265 10.5455 21.2583 10.5567C21.2555 10.5614 21.2513 10.5684 21.2457 10.5777C21.2061 10.644 21.1755 10.6932 21.1539 10.7255C21.1262 10.7669 21.086 10.8232 21.0331 10.8945C21.0248 10.9057 21.0127 10.9222 20.9968 10.9441C20.96 10.9948 20.9319 11.0318 20.9126 11.0553C20.8929 11.0794 20.8606 11.1157 20.8159 11.1643C20.798 11.1838 20.7846 11.1983 20.7757 11.2081C20.7236 11.2657 20.678 11.3139 20.6391 11.3528C20.6 11.3919 20.5518 11.4375 20.4945 11.4894C20.4848 11.4982 20.4703 11.5114 20.451 11.5292C20.4022 11.5741 20.3658 11.6065 20.3417 11.6262C20.3182 11.6455 20.2812 11.6735 20.2306 11.7103C20.2085 11.7263 20.1919 11.7384 20.1808 11.7467C20.1093 11.7997 20.0529 11.84 20.0118 11.8675C19.9985 11.8763 19.979 11.8897 19.9532 11.9075C19.904 11.9414 19.8672 11.9657 19.8429 11.9802C19.8151 11.9969 19.7717 12.0207 19.7127 12.0518C19.6922 12.0627 19.6766 12.0709 19.666 12.0766C19.6395 12.0907 19.5972 12.1112 19.5389 12.138C19.5132 12.1499 19.4938 12.1589 19.4809 12.165C19.4648 12.1726 19.441 12.1842 19.4097 12.1999C19.3583 12.2256 19.3204 12.2435 19.2959 12.2537C19.2224 12.2841 19.1607 12.3082 19.111 12.326C19.0399 12.3515 18.9755 12.3729 18.918 12.3904C18.894 12.3977 18.8548 12.4073 18.8003 12.4192C18.7632 12.4273 18.7354 12.4337 18.7167 12.4384C18.7008 12.4424 18.6778 12.4484 18.6476 12.4565C18.5925 12.4712 18.5512 12.4813 18.5239 12.4868C18.4892 12.4937 18.4354 12.5024 18.3625 12.513C18.3448 12.5156 18.3316 12.5176 18.3227 12.5189C18.3113 12.5206 18.2946 12.5232 18.2725 12.5268C18.2094 12.5371 18.1641 12.5423 18.1364 12.5423C18.1071 12.5423 18.0665 12.5454 18.0145 12.5517C17.9742 12.5565 17.9454 12.5589 17.928 12.5589C17.9018 12.5589 17.8629 12.5604 17.8112 12.5633C17.7651 12.566 17.7318 12.5673 17.7113 12.5673L16.8146 12.5673L16.796 12.6958C16.7944 12.7071 16.7921 12.7237 16.789 12.7457C16.7789 12.8172 16.7705 12.8706 16.7638 12.9059C16.7551 12.9514 16.7393 13.0228 16.7162 13.1201L16.7152 13.1243C16.7115 13.1401 16.7063 13.1629 16.6996 13.1926C16.6863 13.2517 16.6754 13.2963 16.6669 13.3262C16.6457 13.4006 16.6241 13.4707 16.6022 13.5365C16.5809 13.6004 16.5566 13.6677 16.5294 13.7386L16.5248 13.7507C16.4918 13.8366 16.4664 13.9 16.4486 13.9407C16.4377 13.9658 16.4187 14.0042 16.3916 14.0561C16.3736 14.0905 16.3602 14.1167 16.3514 14.1346C16.346 14.1456 16.3381 14.1619 16.3276 14.1835C16.2957 14.2494 16.2714 14.2978 16.2545 14.3287L16.2477 14.341C16.2051 14.4189 16.1723 14.4768 16.1494 14.5146C16.1284 14.5492 16.0937 14.6026 16.0453 14.6749C16.0375 14.6865 16.0317 14.6951 16.028 14.7006C16.0217 14.71 16.0123 14.7242 15.9998 14.7431C15.9591 14.8044 15.9281 14.8496 15.9068 14.8785C15.8544 14.9498 15.8113 15.0063 15.7776 15.0482C15.7607 15.0692 15.7323 15.1009 15.6926 15.1434C15.6656 15.1724 15.6453 15.1945 15.6318 15.2098C15.6248 15.2177 15.6143 15.2297 15.6003 15.2457C15.5498 15.3032 15.5119 15.3451 15.4864 15.3715C15.4245 15.4355 15.3733 15.4867 15.3327 15.5251C15.2874 15.568 15.2335 15.6165 15.171 15.6706C15.1627 15.6779 15.1503 15.6886 15.134 15.7029C15.0794 15.7505 15.0379 15.7856 15.0095 15.8081C14.984 15.8282 14.9428 15.8584 14.8859 15.8986C14.8616 15.9158 14.8434 15.9287 14.8314 15.9374C14.7828 15.9724 14.7235 16.0128 14.6536 16.0586C14.6484 16.062 14.6413 16.0667 14.6322 16.0726C14.5638 16.1175 14.5117 16.1505 14.4759 16.1717C14.447 16.1889 14.4005 16.2143 14.3364 16.2479C14.312 16.2607 14.2938 16.2703 14.2817 16.2768C14.2647 16.2859 14.2395 16.2998 14.206 16.3186C14.1524 16.3489 14.1129 16.37 14.0876 16.3821C14.0053 16.4214 13.9407 16.4511 13.8937 16.471C13.8693 16.4813 13.8306 16.4955 13.7775 16.5134C13.7398 16.5262 13.7111 16.5363 13.6915 16.5436C13.6835 16.5465 13.6716 16.551 13.6558 16.5569C13.5819 16.5846 13.5264 16.6045 13.4895 16.6164L13.4773 16.6203C13.3881 16.6491 13.3221 16.6694 13.2792 16.6811C13.2483 16.6896 13.2005 16.7008 13.1357 16.7148C13.1062 16.7212 13.0839 16.7261 13.069 16.7295C13.0507 16.7336 13.0239 16.7401 12.9886 16.7488C12.9302 16.7633 12.8869 16.7731 12.8588 16.7782C12.8 16.7888 12.73 16.7996 12.6487 16.8105C12.6362 16.8122 12.6175 16.8148 12.5928 16.8185C12.5235 16.8289 12.4738 16.8341 12.4437 16.8341C12.4135 16.8341 12.3706 16.8372 12.3149 16.8433C12.27 16.8483 12.2379 16.8508 12.2186 16.8508L11.7769 16.8508C11.7576 16.8508 11.7255 16.8483 11.6807 16.8433C11.625 16.8372 11.582 16.8341 11.5518 16.8341C11.5236 16.8341 11.4788 16.8293 11.4174 16.8197C11.3902 16.8155 11.3695 16.8124 11.3551 16.8105L11.3396 16.8084C11.2475 16.796 11.1799 16.7859 11.1367 16.7782C11.1086 16.7731 11.0653 16.7633 11.0069 16.7488C10.9716 16.7401 10.9448 16.7336 10.9266 16.7295C10.9115 16.7261 10.8893 16.7212 10.8599 16.7148C10.795 16.7008 10.7472 16.6896 10.7163 16.6811C10.6733 16.6693 10.607 16.649 10.5175 16.6201L10.506 16.6164C10.4691 16.6045 10.4137 16.5846 10.3398 16.5569C10.3238 16.551 10.3119 16.5465 10.304 16.5435C10.2844 16.5362 10.2558 16.5262 10.218 16.5134C10.1649 16.4955 10.1262 16.4813 10.1018 16.471C10.0547 16.451 9.99008 16.4214 9.9079 16.3821C9.88262 16.37 9.8432 16.3489 9.78965 16.3187C9.75614 16.2998 9.73086 16.2859 9.71381 16.2768C9.65566 16.2457 9.59371 16.2107 9.52795 16.1717C9.52142 16.1678 9.51167 16.1621 9.49869 16.1544C9.42745 16.1123 9.3752 16.0804 9.34193 16.0586C9.27214 16.0129 9.21285 15.9725 9.16405 15.9374C9.15199 15.9287 9.13375 15.9157 9.10931 15.8984C9.05257 15.8583 9.01149 15.8282 8.98605 15.8081C8.95762 15.7856 8.91612 15.7506 8.86155 15.7029C8.84515 15.6886 8.83281 15.6778 8.82453 15.6707C8.76197 15.6166 8.70806 15.568 8.66278 15.5251C8.6221 15.4866 8.57089 15.4354 8.50916 15.3715C8.48356 15.345 8.44546 15.3029 8.39486 15.2452C8.381 15.2294 8.3706 15.2176 8.36368 15.2098C8.30937 15.1483 8.26358 15.0944 8.2263 15.0482C8.21504 15.0343 8.19805 15.0137 8.17535 14.9865C8.135 14.9382 8.10612 14.9022 8.0887 14.8785C8.06742 14.8496 8.03645 14.8044 7.99577 14.7431C7.98326 14.7242 7.97384 14.7101 7.9675 14.7006C7.96371 14.6949 7.95797 14.6864 7.95027 14.6749C7.90181 14.6026 7.86708 14.5492 7.84608 14.5146C7.82295 14.4765 7.7899 14.4181 7.74692 14.3394L7.74107 14.3287C7.72418 14.2978 7.6998 14.2495 7.66792 14.1836C7.6574 14.1619 7.64947 14.1455 7.64413 14.1346C7.61813 14.0816 7.5885 14.017 7.55526 13.9407C7.54786 13.9238 7.53648 13.8985 7.5211 13.865C7.49478 13.8076 7.47645 13.7654 7.46611 13.7385C7.43891 13.6677 7.41466 13.6004 7.39336 13.5365C7.38516 13.512 7.37429 13.4724 7.36076 13.4177C7.35078 13.3774 7.34286 13.3469 7.33698 13.3262C7.33283 13.3117 7.32666 13.2905 7.31848 13.2628C7.30046 13.2018 7.28775 13.1556 7.28033 13.1243L7.27931 13.1201C7.25625 13.0228 7.24038 12.9514 7.23171 12.9059C7.22498 12.8706 7.2166 12.8171 7.20656 12.7456C7.20347 12.7237 7.20111 12.7071 7.19948 12.6958L7.18088 12.5673L6.1842 12.5673C6.1672 12.5673 6.14354 12.569 6.11322 12.5724C6.09406 12.5745 6.08161 12.5756 6.07585 12.5756C6.05816 12.5756 6.03519 12.5774 6.00694 12.5809C5.99123 12.5829 5.98086 12.5839 5.97583 12.5839C5.95819 12.5839 5.93523 12.5857 5.90694 12.5893C5.89117 12.5913 5.88079 12.5923 5.87581 12.5923C5.85212 12.5923 5.8232 12.5966 5.78906 12.6051C5.78098 12.6072 5.77567 12.6084 5.77313 12.6089L5.77579 12.6089C5.74636 12.6089 5.71203 12.6163 5.6728 12.6311C5.66934 12.6324 5.66655 12.6334 5.66445 12.6341C5.63049 12.6354 5.58853 12.6425 5.53859 12.6553C5.52153 12.6596 5.4982 12.6672 5.46859 12.6779C5.45178 12.684 5.44002 12.6881 5.43332 12.69C5.42692 12.6919 5.41537 12.6947 5.39865 12.6983C5.3687 12.7048 5.34524 12.7109 5.32826 12.7166C5.30874 12.7231 5.28207 12.7328 5.24827 12.7455C5.24083 12.7483 5.23524 12.7504 5.23152 12.7518C5.21506 12.7579 5.19051 12.768 5.15787 12.782C5.14343 12.7883 5.13296 12.7927 5.12646 12.7954C5.10978 12.8023 5.08655 12.8128 5.05676 12.8267C5.04477 12.8323 5.03581 12.8365 5.02989 12.8392C5.02319 12.8423 5.01288 12.8469 4.99894 12.853C4.9706 12.8654 4.94873 12.8755 4.93333 12.8832C4.91717 12.8913 4.89388 12.9039 4.86346 12.9209C4.85144 12.9276 4.84257 12.9326 4.83683 12.9358C4.83059 12.9392 4.82064 12.9445 4.80696 12.9517C4.7776 12.9672 4.75544 12.9795 4.74046 12.9884C4.72526 12.9975 4.7056 13.011 4.6815 13.0289C4.668 13.039 4.65837 13.0459 4.65263 13.0496C4.64459 13.0548 4.63253 13.0626 4.61645 13.0729C4.56193 13.1078 4.52126 13.1353 4.49444 13.1552C4.48794 13.1601 4.47822 13.1673 4.46528 13.1768C4.41186 13.2161 4.3719 13.247 4.34542 13.2694C4.31954 13.2913 4.28492 13.3232 4.24156 13.3652C4.22918 13.3772 4.21982 13.3862 4.21348 13.3923C4.19001 13.4148 4.15679 13.4497 4.11382 13.4972C4.09946 13.5131 4.08882 13.5248 4.08192 13.5323C4.0337 13.5845 3.99278 13.6313 3.95915 13.6726C3.91853 13.7225 3.88052 13.7722 3.84513 13.8217C3.83875 13.8306 3.82904 13.844 3.81598 13.8617C3.78206 13.9078 3.75671 13.9442 3.73992 13.9711C3.70906 14.0204 3.67694 14.0759 3.64356 14.1375C3.62827 14.1657 3.60849 14.2067 3.58421 14.2606C3.57543 14.2801 3.56881 14.2946 3.56437 14.3041C3.5589 14.3159 3.5501 14.3339 3.53797 14.358C3.51392 14.4057 3.49649 14.4434 3.48569 14.4711C3.47335 14.5026 3.45696 14.5509 3.43651 14.616C3.43099 14.6336 3.4269 14.6465 3.42423 14.6548C3.42316 14.6581 3.42163 14.6629 3.41964 14.6691C3.3973 14.7386 3.38131 14.7924 3.37165 14.8305C3.36407 14.8604 3.35545 14.9038 3.34578 14.9607C3.34165 14.985 3.33849 15.0029 3.3363 15.0146C3.33442 15.0245 3.33054 15.041 3.32467 15.0641C3.30847 15.1277 3.30037 15.1788 3.30037 15.2174C3.30037 15.2298 3.2981 15.2518 3.29357 15.2833C3.28699 15.3291 3.2837 15.3655 3.2837 15.3924L3.2837 15.7507C3.2837 15.7776 3.28699 15.814 3.29357 15.8598C3.2981 15.8913 3.30037 15.9133 3.30037 15.9257C3.30037 15.9643 3.30847 16.0154 3.32468 16.079C3.33054 16.1021 3.33442 16.1186 3.3363 16.1285C3.33848 16.1402 3.34164 16.1581 3.34577 16.1824C3.35544 16.2393 3.36407 16.2827 3.37165 16.3126C3.38786 16.3765 3.40539 16.4379 3.42423 16.4966C3.44599 16.5644 3.46647 16.6229 3.48569 16.6721C3.49649 16.6997 3.51392 16.7374 3.53796 16.7851C3.5501 16.8092 3.5589 16.8272 3.56436 16.8389C3.56879 16.8485 3.57538 16.863 3.58413 16.8824C3.60844 16.9363 3.62825 16.9774 3.64356 17.0056C3.67686 17.067 3.70898 17.1225 3.73992 17.172C3.77544 17.2288 3.81051 17.2814 3.84514 17.3298C3.86286 17.3545 3.88915 17.3874 3.92402 17.4285C3.93976 17.4471 3.95147 17.4611 3.95913 17.4705C3.96603 17.479 3.97668 17.4923 3.99107 17.5104C4.03011 17.5596 4.0604 17.5959 4.08194 17.6192C4.11206 17.6519 4.15591 17.6957 4.21348 17.7508C4.21972 17.7568 4.22899 17.7658 4.2413 17.7777C4.28478 17.8198 4.31948 17.8518 4.34542 17.8737C4.37191 17.8961 4.41187 17.927 4.46531 17.9664C4.47831 17.9759 4.488 17.9831 4.49439 17.9879C4.50017 17.9922 4.50903 17.9988 4.52099 18.0077C4.57865 18.0509 4.62235 18.0822 4.65207 18.1015C4.66725 18.1114 4.68803 18.124 4.71441 18.1393C4.72592 18.146 4.73457 18.1511 4.74035 18.1546C4.75519 18.1635 4.77717 18.1756 4.80629 18.191C4.82015 18.1983 4.83031 18.2038 4.83677 18.2073C4.84239 18.2104 4.85111 18.2152 4.86292 18.2219C4.89355 18.239 4.91699 18.2517 4.93323 18.2598C4.94853 18.2675 4.97024 18.2776 4.99836 18.2899C5.0125 18.296 5.02295 18.3007 5.02971 18.3038C5.03554 18.3065 5.04426 18.3105 5.05586 18.316C5.08603 18.3301 5.10954 18.3406 5.12638 18.3477C5.13282 18.3504 5.14315 18.3548 5.15739 18.3609C5.19022 18.375 5.2149 18.3851 5.23142 18.3913C5.23496 18.3926 5.24013 18.3946 5.24693 18.3971C5.28133 18.41 5.30841 18.4198 5.32819 18.4264C5.34522 18.4321 5.36877 18.4383 5.39883 18.4448C5.41549 18.4485 5.42702 18.4512 5.43342 18.4531C5.44006 18.455 5.45179 18.4591 5.46863 18.4652C5.49819 18.4759 5.52152 18.4835 5.5386 18.4878C5.54236 18.4888 5.54974 18.4911 5.56076 18.4948C5.60617 18.5099 5.64451 18.5175 5.67577 18.5175L5.67305 18.5175C5.67562 18.518 5.68098 18.5193 5.68912 18.5213C5.72331 18.5299 5.7522 18.5342 5.77579 18.5342L5.77313 18.5342C5.77565 18.5347 5.78097 18.5359 5.78907 18.538C5.82321 18.5465 5.85212 18.5508 5.87581 18.5508C5.88079 18.5508 5.89117 18.5518 5.90694 18.5538C5.93523 18.5574 5.95819 18.5592 5.97583 18.5592L5.97326 18.5592C5.97573 18.5597 5.98097 18.5609 5.98899 18.5629C6.02306 18.5715 6.05201 18.5758 6.07585 18.5758L15.7771 18.5758L15.8062 18.4634C15.8159 18.4257 15.8317 18.3731 15.8536 18.3054C15.8645 18.2719 15.8829 18.2221 15.9088 18.1559L15.9089 18.1556C15.932 18.0965 15.9531 18.0465 15.9721 18.0055C15.9943 17.9575 16.018 17.9102 16.0431 17.8636C16.0468 17.8566 16.0523 17.8463 16.0595 17.8328C16.0867 17.7818 16.1075 17.7447 16.1219 17.7214C16.1476 17.6798 16.1793 17.6323 16.2169 17.5789C16.2479 17.5349 16.2794 17.4929 16.3115 17.4528C16.3184 17.4442 16.3284 17.4315 16.3415 17.4147C16.3736 17.3738 16.3978 17.3443 16.4141 17.3263C16.4308 17.3077 16.4594 17.2789 16.4999 17.2398C16.5146 17.2255 16.5256 17.2149 16.5328 17.2078C16.5779 17.1636 16.6173 17.1268 16.6512 17.0973C16.6869 17.0662 16.7291 17.032 16.7776 16.9947C16.8041 16.9742 16.8468 16.9441 16.9056 16.9042L16.912 16.8999C16.9696 16.8609 17.0143 16.832 17.046 16.8131C17.0954 16.7838 17.1428 16.7575 17.1882 16.7341C17.2326 16.7113 17.2827 16.6876 17.3384 16.663C17.3574 16.6547 17.3878 16.6433 17.4297 16.6288C17.4553 16.62 17.4749 16.6131 17.4884 16.6081C17.5009 16.6034 17.5188 16.5965 17.5422 16.5874C17.5852 16.5706 17.6172 16.559 17.6382 16.5526C17.6626 16.5452 17.7013 16.5354 17.7542 16.5231C17.7727 16.5188 17.7867 16.5156 17.7962 16.5133C17.8118 16.5096 17.8343 16.5037 17.8636 16.4956C17.905 16.4842 17.9351 16.4768 17.954 16.4735C17.9633 16.4718 17.9771 16.4693 17.9953 16.4658C18.0473 16.4558 18.0832 16.4508 18.103 16.4508C18.1258 16.4508 18.1573 16.4493 18.1976 16.4462C18.2304 16.4437 18.2544 16.4424 18.2697 16.4424C18.2924 16.4424 18.3251 16.4409 18.3678 16.4379C18.4035 16.4354 18.4292 16.4341 18.4448 16.4341C18.4603 16.4341 18.486 16.4354 18.5218 16.4379C18.5645 16.4409 18.5972 16.4424 18.6198 16.4424C18.6313 16.4424 18.6517 16.4446 18.6809 16.4491C18.7248 16.4558 18.76 16.4591 18.7865 16.4591C18.8058 16.4591 18.8389 16.4639 18.8857 16.4735C18.903 16.4771 18.9163 16.4798 18.9254 16.4815C18.9526 16.4866 18.9969 16.497 19.0583 16.5127C19.0733 16.5166 19.0844 16.5194 19.0916 16.5212C19.1014 16.5237 19.1155 16.5271 19.1339 16.5316C19.1816 16.5432 19.2174 16.5528 19.2413 16.5604C19.2952 16.5775 19.3479 16.5959 19.3995 16.6158C19.4481 16.6345 19.4981 16.6555 19.5495 16.6789C19.5873 16.6962 19.6346 16.7199 19.6914 16.75L19.6957 16.7522C19.7585 16.7855 19.8045 16.8111 19.8336 16.8288C19.8653 16.8481 19.9127 16.8798 19.976 16.9239C20.0112 16.9484 20.0533 16.9799 20.1022 17.0185C20.1077 17.0229 20.1159 17.0294 20.1269 17.038C20.1737 17.0746 20.2076 17.1023 20.2286 17.1211C20.2793 17.1662 20.3188 17.203 20.3471 17.2315C20.3836 17.2682 20.4204 17.3077 20.4576 17.3499C20.4812 17.3767 20.5154 17.4188 20.5602 17.4763C20.5769 17.4977 20.6016 17.5325 20.6344 17.5808C20.6435 17.5941 20.6503 17.604 20.6549 17.6107C20.6642 17.6243 20.6783 17.6437 20.6971 17.669C20.7228 17.7035 20.7404 17.7288 20.75 17.7448C20.7736 17.7841 20.7999 17.8315 20.829 17.887C20.8467 17.9209 20.8703 17.9709 20.9 18.0372C20.9279 18.0993 20.949 18.1493 20.9633 18.1872C20.9714 18.2085 20.9819 18.2414 20.995 18.2858C21.0015 18.3081 21.0066 18.3252 21.0103 18.337C21.0134 18.3467 21.018 18.3611 21.0241 18.3804C21.0407 18.4324 21.052 18.4706 21.0579 18.4949C21.0652 18.5243 21.0743 18.5697 21.0854 18.6311C21.0871 18.6406 21.0885 18.6478 21.0894 18.6528C21.0909 18.6608 21.0931 18.6727 21.0962 18.6884C21.1067 18.7425 21.112 18.78 21.112 18.8009C21.112 18.8274 21.1153 18.8626 21.122 18.9065C21.1264 18.9356 21.1286 18.956 21.1286 18.9675C21.1286 18.9901 21.1301 19.0228 21.1332 19.0656C21.1357 19.1013 21.137 19.127 21.137 19.1425C21.137 19.1581 21.1357 19.1838 21.1332 19.2195C21.1301 19.2623 21.1286 19.295 21.1286 19.3176C21.1286 19.3291 21.1264 19.3495 21.122 19.3786C21.1153 19.4225 21.112 19.4577 21.112 19.4842C21.112 19.5051 21.1067 19.5426 21.0962 19.5967C21.0931 19.6125 21.0909 19.6244 21.0894 19.6323C21.0887 19.6364 21.0874 19.6436 21.0855 19.6538C21.0744 19.7153 21.0652 19.7607 21.0579 19.7901C21.052 19.8145 21.0407 19.8528 21.024 19.9049C21.0179 19.924 21.0134 19.9384 21.0103 19.9481C21.0066 19.9599 21.0015 19.977 20.995 19.9993C20.9819 20.0437 20.9714 20.0766 20.9633 20.0979C20.949 20.1357 20.9279 20.1857 20.9 20.2479C20.8703 20.3142 20.8467 20.3643 20.829 20.3981C20.8 20.4535 20.7737 20.5009 20.75 20.5403C20.7403 20.5564 20.7227 20.5817 20.697 20.6162C20.6783 20.6414 20.6642 20.6608 20.6549 20.6743C20.6504 20.6809 20.6436 20.6908 20.6347 20.704C20.6018 20.7524 20.5769 20.7873 20.5602 20.8087C20.5154 20.8662 20.4812 20.9084 20.4576 20.9351C20.4203 20.9776 20.3834 21.017 20.3471 21.0535C20.319 21.0818 20.2795 21.1187 20.2286 21.164C20.2077 21.1826 20.1741 21.2101 20.1277 21.2465C20.1161 21.2556 20.1076 21.2623 20.1022 21.2666C20.0531 21.3053 20.011 21.3369 19.976 21.3612C19.9129 21.4051 19.8655 21.4368 19.8336 21.4563C19.8031 21.4749 19.7558 21.5011 19.6916 21.535C19.6337 21.5656 19.5863 21.5893 19.5493 21.6062C19.4951 21.6308 19.4452 21.6518 19.3996 21.6693C19.3479 21.6891 19.2951 21.7076 19.2411 21.7247C19.2176 21.7322 19.1825 21.7416 19.1357 21.753C19.1166 21.7577 19.1018 21.7613 19.0915 21.7639C19.0836 21.7659 19.071 21.7691 19.0538 21.7734C18.9943 21.7885 18.9514 21.7986 18.9251 21.8037C18.9163 21.8054 18.9035 21.8079 18.8868 21.8114C18.8395 21.8211 18.806 21.826 18.7865 21.826C18.76 21.826 18.7248 21.8293 18.6809 21.836C18.6517 21.8405 18.6313 21.8427 18.6198 21.8427C18.5972 21.8427 18.5645 21.8442 18.5218 21.8472C18.4861 21.8497 18.4604 21.851 18.4448 21.851C18.4292 21.851 18.4035 21.8497 18.3678 21.8472C18.3251 21.8442 18.2924 21.8427 18.2697 21.8427C18.2544 21.8427 18.2304 21.8414 18.1976 21.8389C18.1573 21.8358 18.1258 21.8343 18.103 21.8343C18.0831 21.8343 18.0472 21.8293 17.9951 21.8193C17.977 21.8158 17.9634 21.8133 17.9541 21.8116C17.9349 21.8082 17.9043 21.8007 17.8622 21.7892C17.8336 21.7813 17.8117 21.7756 17.7965 21.7719C17.7871 21.7696 17.7736 21.7665 17.7559 21.7624C17.7022 21.7499 17.6629 21.7399 17.6381 21.7324C17.6293 21.7297 17.6164 21.7259 17.5994 21.7209C17.5497 21.7062 17.5127 21.6944 17.4884 21.6854C17.4609 21.6751 17.4189 21.6576 17.3624 21.6327C17.3515 21.6278 17.3435 21.6243 17.3382 21.622C17.2815 21.5969 17.2315 21.5732 17.188 21.5509C17.1406 21.5264 17.0933 21.5001 17.0461 21.472C17.0136 21.4528 16.9689 21.4239 16.9122 21.3853L16.9088 21.383L16.9056 21.3808C16.8468 21.341 16.8041 21.3109 16.7776 21.2904C16.7289 21.2529 16.6867 21.2187 16.6512 21.1878C16.6172 21.1582 16.5777 21.1214 16.5328 21.0773C16.5256 21.0702 16.5146 21.0596 16.4999 21.0453C16.4594 21.0062 16.4308 20.9774 16.4141 20.9588C16.3978 20.9408 16.3736 20.9113 16.3416 20.8704C16.3284 20.8535 16.3184 20.8408 16.3115 20.8323C16.2794 20.7922 16.2479 20.7502 16.2169 20.7062C16.1793 20.6529 16.1476 20.6054 16.1219 20.5637C16.1075 20.5404 16.0867 20.5033 16.0596 20.4524C16.0523 20.4388 16.0468 20.4285 16.0431 20.4215C16.0179 20.3748 15.9942 20.3275 15.9721 20.2796C15.9531 20.2386 15.9321 20.1886 15.909 20.1296L15.9088 20.1292C15.8829 20.063 15.8645 20.0132 15.8536 19.9797C15.8317 19.912 15.8159 19.8594 15.8062 19.8217L15.7771 19.7092L6.28422 19.7092C6.26385 19.7092 6.2321 19.7079 6.18898 19.7053C6.1399 19.7024 6.10219 19.7009 6.07585 19.7009C6.05848 19.7009 6.02967 19.6985 5.98941 19.6936C5.93736 19.6873 5.89671 19.6842 5.86747 19.6842C5.83973 19.6842 5.79423 19.6791 5.73099 19.6688C5.7091 19.6652 5.69249 19.6626 5.68116 19.6609C5.67164 19.6595 5.65752 19.6574 5.63878 19.6547C5.56705 19.6442 5.51414 19.6356 5.48006 19.6288C5.44625 19.6221 5.39356 19.6096 5.322 19.5914C5.303 19.5865 5.28863 19.5829 5.27888 19.5804C5.26253 19.5763 5.2387 19.5707 5.2074 19.5634C5.15266 19.5507 5.11216 19.5403 5.0859 19.5324C5.02736 19.5146 4.96302 19.4931 4.89287 19.468L4.87811 19.4627C4.79691 19.4336 4.73743 19.4113 4.69968 19.3957C4.67515 19.3855 4.63705 19.3675 4.58539 19.3417C4.55434 19.3262 4.53078 19.3146 4.51472 19.307C4.44762 19.2752 4.38869 19.2457 4.33793 19.2186C4.32751 19.2131 4.31178 19.2047 4.29075 19.1936C4.23192 19.1627 4.18866 19.1389 4.16097 19.1223C4.10585 19.0892 4.04678 19.0516 3.98378 19.0095C3.92235 18.9684 3.8688 18.931 3.82312 18.8971C3.79297 18.8747 3.74718 18.8382 3.68576 18.7876C3.6752 18.7789 3.66737 18.7725 3.66226 18.7683C3.65616 18.7633 3.64705 18.7558 3.63491 18.7459C3.57819 18.6996 3.53637 18.6642 3.50943 18.6397C3.48866 18.6209 3.45732 18.5899 3.41542 18.5466C3.39312 18.5235 3.37623 18.5063 3.36475 18.4948C3.35312 18.4832 3.33568 18.4661 3.31242 18.4436C3.26938 18.4019 3.23851 18.3708 3.21981 18.3501C3.19505 18.3228 3.15918 18.2805 3.11221 18.223C3.10305 18.2118 3.09606 18.2033 3.09124 18.1974C3.08647 18.1916 3.0793 18.1829 3.06972 18.1712C3.02008 18.1109 2.98431 18.066 2.96241 18.0365C2.946 18.0144 2.92198 17.9787 2.89035 17.9295C2.87272 17.9021 2.85925 17.8814 2.84996 17.8675C2.84106 17.8542 2.82771 17.8346 2.80991 17.8088C2.77597 17.7597 2.75173 17.723 2.73721 17.6987C2.72048 17.6708 2.69648 17.6272 2.66523 17.5679C2.65449 17.5475 2.64635 17.5321 2.64082 17.5218C2.63599 17.5127 2.62868 17.4991 2.61888 17.481C2.58361 17.4156 2.55868 17.3675 2.54411 17.3367C2.52386 17.2939 2.49707 17.2322 2.46374 17.1517C2.43309 17.0777 2.40896 17.0161 2.39138 16.9669C2.36588 16.8956 2.34442 16.8313 2.32701 16.7739C2.30412 16.6984 2.28533 16.6314 2.27063 16.5727C2.26268 16.541 2.25257 16.4933 2.2403 16.4297C2.23606 16.4078 2.23282 16.3911 2.23056 16.3798C2.22365 16.3451 2.21488 16.2912 2.20424 16.2181C2.20171 16.2006 2.19979 16.1875 2.19848 16.1787C2.19558 16.1592 2.19027 16.1314 2.18257 16.0954C2.17204 16.0461 2.16677 16.0118 2.16677 15.9924C2.16677 15.9661 2.16529 15.9285 2.16233 15.8794C2.15973 15.8362 2.15843 15.8044 2.15843 15.7841C2.15843 15.7577 2.15695 15.72 2.154 15.6709C2.1514 15.6278 2.1501 15.5961 2.1501 15.5757C2.1501 15.5552 2.15141 15.5219 2.15402 15.4758C2.15696 15.4241 2.15843 15.3852 2.15843 15.359C2.15843 15.3387 2.15973 15.3069 2.16233 15.2637C2.16529 15.2146 2.16677 15.177 2.16677 15.1507C2.16677 15.1313 2.17204 15.097 2.18257 15.0477C2.19027 15.0118 2.19558 14.984 2.19848 14.9644C2.19979 14.9556 2.20171 14.9425 2.20424 14.925C2.21488 14.8519 2.22365 14.798 2.23056 14.7633C2.23283 14.7519 2.23607 14.7353 2.2403 14.7134C2.25257 14.6498 2.26268 14.6022 2.27063 14.5705C2.28533 14.5117 2.30413 14.4446 2.32701 14.3692C2.34438 14.3119 2.36583 14.2476 2.39138 14.1762C2.409 14.1269 2.43312 14.0653 2.46374 13.9914C2.49707 13.9109 2.52386 13.8492 2.54411 13.8064C2.55865 13.7757 2.58352 13.7277 2.61872 13.6624C2.6286 13.6441 2.63597 13.6304 2.64083 13.6213C2.64636 13.611 2.65451 13.5956 2.66527 13.5751C2.6965 13.5158 2.72048 13.4723 2.7372 13.4444C2.75173 13.4201 2.77596 13.3834 2.8099 13.3343C2.8277 13.3085 2.84105 13.2889 2.84996 13.2756C2.85925 13.2617 2.87271 13.241 2.89036 13.2136C2.92198 13.1644 2.94599 13.1287 2.9624 13.1066C2.98422 13.0772 3.01984 13.0325 3.06925 12.9725C3.07919 12.9604 3.08653 12.9515 3.09125 12.9457C3.09593 12.94 3.10292 12.9315 3.11221 12.9201C3.15918 12.8626 3.19504 12.8203 3.2198 12.793C3.23851 12.7723 3.26939 12.7412 3.31243 12.6995C3.33569 12.677 3.35313 12.6599 3.36475 12.6483C3.40332 12.6097 3.45155 12.5642 3.50943 12.5117C3.51897 12.503 3.53323 12.49 3.55221 12.4725C3.60131 12.4273 3.63799 12.3947 3.66223 12.3748C3.68558 12.3557 3.72248 12.3278 3.77293 12.2911C3.79511 12.275 3.81184 12.2627 3.82312 12.2544C3.8377 12.2435 3.85869 12.2274 3.88611 12.2061C3.92951 12.1723 3.96207 12.1481 3.9838 12.1336C4.00526 12.1193 4.04061 12.0982 4.08985 12.0703C4.12142 12.0524 4.14513 12.0387 4.16099 12.0292C4.17206 12.0225 4.1887 12.0124 4.2109 11.9989C4.26797 11.964 4.31031 11.9392 4.33791 11.9245C4.38866 11.8973 4.4476 11.8679 4.51472 11.8361C4.53072 11.8285 4.55428 11.817 4.5854 11.8014C4.63704 11.7756 4.67514 11.7576 4.6997 11.7474C4.73742 11.7318 4.79691 11.7094 4.87818 11.6803C4.88461 11.678 4.88951 11.6763 4.89289 11.6751C4.96302 11.65 5.02736 11.6285 5.0859 11.6107C5.11215 11.6028 5.15265 11.5924 5.20741 11.5797C5.23867 11.5725 5.26249 11.5668 5.27887 11.5627C5.28845 11.5603 5.30306 11.5566 5.32272 11.5516C5.39398 11.5334 5.44642 11.521 5.48005 11.5143C5.51434 11.5075 5.56758 11.4988 5.63976 11.4883C5.65804 11.4856 5.67184 11.4836 5.68116 11.4822C5.6924 11.4806 5.70892 11.4779 5.73073 11.4744C5.79408 11.464 5.83966 11.4589 5.86747 11.4589C5.89671 11.4589 5.93736 11.4557 5.98941 11.4495C6.02967 11.4446 6.05848 11.4422 6.07585 11.4422C6.1022 11.4422 6.13991 11.4407 6.18898 11.4377C6.2321 11.4352 6.26385 11.4339 6.28422 11.4339L7.18095 11.4339L7.19949 11.3053C7.20105 11.2944 7.2033 11.2786 7.20624 11.2576C7.21641 11.1851 7.2249 11.131 7.23172 11.0952C7.23792 11.0625 7.2492 11.0128 7.26556 10.9461C7.27216 10.9191 7.27708 10.8988 7.28034 10.8851C7.28479 10.8662 7.29092 10.8385 7.29872 10.8019C7.31102 10.7441 7.321 10.7018 7.32866 10.6749C7.34944 10.6018 7.37101 10.5317 7.39337 10.4646C7.41426 10.4018 7.43851 10.3345 7.46612 10.2625C7.47642 10.2357 7.49471 10.1936 7.52097 10.1364C7.53642 10.1027 7.54785 10.0774 7.55527 10.0604C7.5883 9.9846 7.61792 9.91995 7.64414 9.86645C7.64934 9.85581 7.65706 9.83994 7.66728 9.81884C7.69945 9.75236 7.72405 9.70354 7.74109 9.67238L7.74528 9.6647C7.78896 9.58472 7.82257 9.52533 7.84609 9.48651C7.86665 9.45257 7.90068 9.40018 7.94819 9.32934C7.95675 9.31657 7.9632 9.30694 7.96755 9.30044C7.99115 9.26513 8.02728 9.21442 8.07593 9.14831C8.08154 9.14069 8.0858 9.13489 8.08872 9.13092C8.10002 9.11554 8.11656 9.09236 8.13834 9.06138C8.17371 9.01104 8.20026 8.97487 8.218 8.95289C8.23488 8.93194 8.26314 8.90025 8.30277 8.85783C8.32987 8.82881 8.35018 8.80665 8.3637 8.79134C8.37046 8.78367 8.38055 8.77219 8.39396 8.75691C8.445 8.69873 8.48341 8.65628 8.5092 8.62956C8.57004 8.56652 8.62124 8.51531 8.6628 8.47595C8.70691 8.43413 8.76083 8.38562 8.82455 8.33042C8.83284 8.32323 8.84508 8.31258 8.86127 8.29846C8.91597 8.25071 8.95758 8.21556 8.9861 8.19301C9.01143 8.17296 9.05238 8.14295 9.10894 8.10297C9.13354 8.08558 9.15194 8.07249 9.16412 8.06371C9.21145 8.02957 9.27073 7.98917 9.34197 7.9425C9.34545 7.94021 9.35136 7.93633 9.35969 7.93087C9.42969 7.88494 9.48302 7.8511 9.51967 7.82936C9.54826 7.81239 9.59424 7.78728 9.6576 7.75403C9.68271 7.74084 9.70147 7.73093 9.71389 7.7243C9.76299 7.69804 9.82767 7.66572 9.90793 7.62733C9.98929 7.58841 10.0539 7.55877 10.1019 7.53841C10.1717 7.50873 10.2391 7.48178 10.304 7.45755C10.3114 7.45479 10.3224 7.45068 10.3369 7.44524C10.4121 7.41704 10.4685 7.39688 10.5061 7.38475L10.5098 7.38355L10.5134 7.38237C10.6047 7.35285 10.6724 7.33206 10.7164 7.31999C10.7471 7.31156 10.7947 7.30037 10.8592 7.28643C10.889 7.27999 10.9115 7.27505 10.9266 7.27161C10.9448 7.26748 10.9714 7.26107 11.0065 7.25237C11.0651 7.23785 11.1085 7.22804 11.1368 7.22294C11.1942 7.21256 11.2643 7.20179 11.3469 7.19065C11.3593 7.18897 11.3779 7.18629 11.4024 7.18261C11.4719 7.1722 11.5217 7.167 11.5518 7.167C11.5793 7.167 11.6195 7.16553 11.6725 7.16261C11.7201 7.15997 11.7549 7.15866 11.7769 7.15866C11.8046 7.15866 11.8436 7.15718 11.8939 7.15424C11.9385 7.15163 11.9717 7.15033 11.9936 7.15033C12.0156 7.15033 12.0504 7.15164 12.0979 7.15427C12.1509 7.15719 12.1911 7.15866 12.2186 7.15866C12.2407 7.15866 12.2755 7.15997 12.323 7.1626C12.376 7.16553 12.4162 7.167 12.4437 7.167C12.4718 7.16699 12.5166 7.17178 12.5779 7.18137C12.6052 7.18562 12.626 7.18872 12.6404 7.19066L12.6549 7.1926C12.7474 7.20501 12.8154 7.21513 12.8588 7.22296C12.8869 7.228 12.9301 7.23775 12.9883 7.2522C13.0238 7.26099 13.0507 7.26747 13.069 7.27163C13.0838 7.27498 13.1058 7.27981 13.1349 7.28612C13.2001 7.30022 13.2482 7.31152 13.2792 7.32001C13.3213 7.33153 13.3862 7.35143 13.4738 7.3797L13.4895 7.38477C13.5264 7.39667 13.5819 7.41648 13.6558 7.44418C13.6716 7.45012 13.6835 7.45459 13.6915 7.45757C13.7543 7.48093 13.8217 7.50789 13.8937 7.53844C13.9398 7.55796 14.0044 7.58761 14.0877 7.62737C14.1662 7.66486 14.2308 7.69718 14.2817 7.72434C14.3395 7.75519 14.4015 7.79021 14.4676 7.8294C14.4739 7.83312 14.4832 7.83862 14.4955 7.8459C14.5673 7.88834 14.62 7.92055 14.6536 7.94254C14.7231 7.98804 14.7824 8.02845 14.8315 8.06377C14.8434 8.07234 14.8613 8.08512 14.8854 8.10212C14.9425 8.14251 14.9839 8.17283 15.0095 8.19308C15.0375 8.21522 15.0784 8.24976 15.1322 8.29672C15.1494 8.31168 15.1624 8.32293 15.1711 8.33049C15.233 8.38402 15.2869 8.43252 15.3328 8.476C15.3729 8.51398 15.4241 8.5652 15.4864 8.62964C15.5118 8.65594 15.5497 8.69777 15.6 8.75514C15.6141 8.77123 15.6248 8.78331 15.6319 8.79138C15.6854 8.85193 15.7312 8.90579 15.7693 8.95297C15.7804 8.96683 15.7973 8.98731 15.82 9.01441C15.8604 9.06285 15.8894 9.09894 15.9069 9.1227C15.928 9.15146 15.9589 9.19637 15.9994 9.25744C16.0121 9.27658 16.0216 9.29095 16.028 9.30054C16.0316 9.30592 16.037 9.31396 16.0442 9.32466C16.0931 9.3976 16.1282 9.45158 16.1495 9.48659C16.1722 9.52403 16.2046 9.58138 16.2469 9.65862L16.2545 9.67246C16.2712 9.70304 16.2954 9.751 16.327 9.81635C16.3378 9.83858 16.3459 9.8553 16.3514 9.86652C16.3601 9.88436 16.3734 9.91038 16.3913 9.94458C16.4185 9.99664 16.4376 10.0353 16.4486 10.0604C16.4663 10.1008 16.4914 10.1636 16.5241 10.2488L16.5294 10.2626C16.5564 10.3329 16.5807 10.4002 16.6022 10.4646C16.6043 10.4708 16.6073 10.4798 16.6112 10.4916C16.6371 10.5689 16.6557 10.6272 16.6669 10.6666C16.6745 10.6934 16.6844 10.7355 16.6967 10.7929C16.7046 10.8299 16.7107 10.8578 16.7152 10.8768L16.7153 10.8773C16.7388 10.9762 16.7549 11.0489 16.7638 11.0953C16.7705 11.1304 16.7788 11.1834 16.7888 11.2543C16.7919 11.2768 16.7944 11.2938 16.7961 11.3054L16.8147 11.4339L17.7113 11.4339C17.862 11.4339 18.0165 11.4222 18.1749 11.3989L18.1781 11.3984L18.3885 11.358C18.4162 11.3556 18.4492 11.348 18.4875 11.3354C18.4981 11.3319 18.5053 11.3296 18.509 11.3286C18.5155 11.3269 18.525 11.3244 18.5377 11.3211C18.5667 11.3135 18.5894 11.3072 18.6057 11.3022C18.6214 11.2973 18.6426 11.2898 18.6694 11.2795C18.6844 11.2737 18.6954 11.2696 18.7024 11.2672C18.7411 11.2537 18.7733 11.242 18.799 11.2321C18.8058 11.2294 18.8169 11.2255 18.8323 11.2202C18.8594 11.211 18.8804 11.2032 18.8955 11.1967C18.9203 11.1861 18.9525 11.1715 18.992 11.1529C18.9987 11.1498 19.0097 11.1449 19.025 11.1382C19.0527 11.1262 19.0739 11.1164 19.0884 11.1089C19.1034 11.1012 19.123 11.0897 19.1471 11.0744C19.1606 11.0658 19.1704 11.0598 19.1764 11.0565C19.1829 11.0528 19.1937 11.047 19.209 11.039C19.2374 11.024 19.2586 11.0123 19.2725 11.0038C19.2787 11.0001 19.2882 10.9945 19.3011 10.987C19.3268 10.9721 19.3465 10.9601 19.3604 10.951C19.3753 10.9413 19.3936 10.9273 19.4153 10.9092C19.4268 10.8996 19.4349 10.8932 19.4397 10.8897C19.4454 10.8857 19.4547 10.8793 19.4674 10.8707C19.4941 10.8525 19.5141 10.8384 19.5274 10.8283L19.5299 10.8263C19.5632 10.8011 19.5887 10.7812 19.6065 10.7667C19.6192 10.7563 19.6369 10.7408 19.6596 10.72C19.6714 10.7092 19.68 10.7015 19.6855 10.6966C19.6888 10.6938 19.6937 10.6895 19.7004 10.6837C19.7289 10.6588 19.7502 10.6398 19.7643 10.6265C19.7694 10.6217 19.7785 10.6138 19.7915 10.6028C19.8142 10.5836 19.8314 10.568 19.8431 10.5562C19.8545 10.5448 19.8698 10.5278 19.889 10.5053C19.9001 10.4923 19.9081 10.4831 19.913 10.4779C19.9175 10.473 19.9252 10.4654 19.9363 10.455C19.9563 10.4361 19.9719 10.4202 19.9831 10.4073C19.9957 10.3929 20.0106 10.3722 20.0278 10.3453C20.0363 10.332 20.0419 10.3236 20.0448 10.32C20.0487 10.3153 20.0563 10.3069 20.0678 10.2948C20.0885 10.2729 20.1041 10.2549 20.1147 10.241C20.1191 10.2352 20.1261 10.2262 20.1358 10.2143C20.1533 10.1926 20.1667 10.1751 20.1761 10.1618C20.186 10.1477 20.1979 10.1282 20.212 10.1031C20.2198 10.0892 20.2255 10.0796 20.229 10.0742C20.2327 10.0684 20.2398 10.0586 20.2501 10.0446C20.268 10.0202 20.2814 10.0009 20.2901 9.98648C20.2985 9.97258 20.3102 9.95144 20.3251 9.92305C20.3332 9.90775 20.339 9.89686 20.3427 9.89037C20.3506 9.87616 20.3604 9.85687 20.3721 9.83249C20.3785 9.81905 20.3834 9.80903 20.3868 9.80244C20.3901 9.79599 20.3963 9.78488 20.4053 9.76912C20.4208 9.742 20.4321 9.72103 20.4391 9.7062C20.4462 9.69106 20.4542 9.67153 20.4631 9.64761C20.468 9.63435 20.4718 9.62451 20.4746 9.61807C20.4775 9.61139 20.4826 9.60036 20.4899 9.58496C20.5028 9.55801 20.5122 9.53692 20.5182 9.5217C20.5263 9.50074 20.5375 9.47023 20.5516 9.43017L20.5524 9.42766L20.5533 9.42516C20.5665 9.38761 20.5782 9.35263 20.5883 9.32021C20.5933 9.3043 20.5994 9.28232 20.6067 9.25426C20.6102 9.24054 20.6129 9.23031 20.6148 9.22355C20.6158 9.21985 20.618 9.21278 20.6215 9.20234C20.6333 9.16657 20.6407 9.13544 20.6436 9.10895C20.6449 9.1046 20.6465 9.0992 20.6485 9.09275C20.663 9.04628 20.6702 9.00717 20.6702 8.97542C20.6702 8.97466 20.6716 8.96805 20.6745 8.95559C20.6827 8.92055 20.6868 8.89104 20.6868 8.86708C20.6868 8.86507 20.6885 8.85596 20.6919 8.83974C20.6996 8.80306 20.7035 8.77329 20.7035 8.75041C20.7035 8.74382 20.7045 8.73164 20.7066 8.71388C20.7101 8.68441 20.7118 8.66047 20.7118 8.64207C20.7118 8.63481 20.7129 8.62063 20.7152 8.59951C20.7185 8.56791 20.7202 8.5432 20.7202 8.5254L20.7202 8.30039C20.7202 8.28197 20.7185 8.25803 20.715 8.22859C20.7129 8.21085 20.7118 8.19867 20.7118 8.19205C20.7118 8.17428 20.7101 8.14956 20.7068 8.11788C20.7046 8.09674 20.7035 8.08258 20.7035 8.07538C20.7035 8.05132 20.6994 8.02179 20.6912 7.98679C20.6883 7.97441 20.6868 7.96783 20.6868 7.96704C20.6868 7.9376 20.6798 7.90293 20.6658 7.86303C20.6639 7.85751 20.6625 7.85343 20.6617 7.85078C20.6606 7.81982 20.6531 7.78 20.6393 7.73132C20.6359 7.71935 20.6336 7.71096 20.6325 7.70616C20.6304 7.69794 20.6275 7.68492 20.6238 7.6671C20.6171 7.63498 20.6111 7.60997 20.6059 7.59207C20.5937 7.54985 20.582 7.51187 20.5708 7.47812C20.5649 7.46024 20.5552 7.43464 20.5418 7.40132C20.5349 7.38427 20.5301 7.37187 20.5272 7.36412C20.5201 7.3452 20.5094 7.31937 20.4953 7.28662C20.49 7.27431 20.486 7.26499 20.4833 7.25865C20.4819 7.25524 20.4793 7.24808 20.4755 7.23717C20.4683 7.21651 20.4621 7.20038 20.4569 7.18876C20.4508 7.17506 20.4417 7.15869 20.4296 7.13963C20.4252 7.13263 20.4227 7.12846 20.422 7.12712C20.4218 7.12666 20.4204 7.12232 20.4177 7.11408C20.4101 7.09044 20.4027 7.07151 20.3954 7.05727C20.3901 7.04667 20.3823 7.03289 20.3721 7.01593C20.3665 7.00649 20.3626 6.99975 20.3604 6.99571C20.3547 6.98525 20.3466 6.97083 20.3359 6.95245C20.3312 6.94436 20.3276 6.93827 20.3253 6.93417C20.323 6.93015 20.3194 6.92384 20.3146 6.91526C20.3044 6.89697 20.2962 6.88278 20.2901 6.8727C20.2831 6.86114 20.2727 6.84631 20.2589 6.8282C20.2522 6.81942 20.2481 6.81377 20.2465 6.81124C20.2448 6.80864 20.2417 6.80304 20.2372 6.79443C20.2273 6.77587 20.2187 6.76102 20.2112 6.74988C20.2047 6.74033 20.1949 6.72646 20.1817 6.70826C20.1751 6.69922 20.1703 6.69265 20.1674 6.68855C20.1654 6.6857 20.1622 6.68111 20.1577 6.67477C20.1427 6.65348 20.1313 6.63766 20.1236 6.62732C20.1163 6.61751 20.1064 6.60539 20.0938 6.59097C20.0871 6.58334 20.0825 6.57785 20.0798 6.5745C20.0776 6.57166 20.0733 6.56548 20.0668 6.55595C20.0544 6.53754 20.0441 6.52333 20.0359 6.51333C20.0338 6.51088 20.0308 6.50718 20.0267 6.50222C20.0122 6.48446 20.0006 6.47058 19.9919 6.46056C19.9832 6.45049 19.9708 6.43789 19.9547 6.42277C19.9467 6.41522 19.9416 6.41022 19.9394 6.40778C19.9371 6.40522 19.933 6.40022 19.9272 6.3928C19.9149 6.37712 19.9043 6.36455 19.8952 6.35508C19.887 6.34645 19.8746 6.33398 19.858 6.31767C19.851 6.31076 19.8459 6.3057 19.8427 6.3025C19.8394 6.29916 19.8341 6.29383 19.8268 6.28649C19.8108 6.27025 19.7986 6.25808 19.7901 6.24998C19.7867 6.24675 19.7808 6.24083 19.7725 6.23221C19.7579 6.21703 19.7462 6.20547 19.7374 6.19751C19.7288 6.1897 19.7172 6.1799 19.7025 6.16812C19.6943 6.16151 19.6883 6.1566 19.6846 6.1534C19.6737 6.1439 19.6583 6.13265 19.6385 6.11963C19.63 6.11406 19.625 6.11065 19.6235 6.1094L19.6238 6.10946C19.6224 6.10803 19.6197 6.10514 19.6158 6.10078C19.5989 6.08195 19.5838 6.0674 19.5707 6.05713C19.5616 6.04997 19.5482 6.0403 19.5305 6.0281C19.5204 6.02113 19.5134 6.01618 19.5095 6.01325C19.4997 6.00597 19.4875 5.99771 19.4728 5.98848C19.4655 5.98384 19.4601 5.98029 19.4566 5.97782C19.4524 5.97486 19.4456 5.96998 19.4363 5.9632C19.4184 5.95012 19.4046 5.9404 19.3951 5.93402C19.3914 5.93155 19.3847 5.92668 19.3749 5.91941C19.3577 5.90657 19.344 5.89691 19.3338 5.89044C19.3238 5.88404 19.3101 5.87611 19.2928 5.86667C19.2832 5.8614 19.2764 5.85756 19.2723 5.85515C19.2622 5.849 19.2478 5.84071 19.2291 5.83027C19.221 5.8257 19.2149 5.82227 19.2109 5.81999C19.2004 5.81398 19.1848 5.8061 19.1643 5.79634C19.1526 5.79079 19.1449 5.78698 19.1411 5.78491C19.137 5.78271 19.1302 5.77879 19.1208 5.77316C19.1039 5.76304 19.0901 5.75528 19.0795 5.74988C19.0767 5.74847 19.0712 5.74521 19.0629 5.7401C19.045 5.72911 19.03 5.72072 19.0179 5.71493C19.005 5.7088 18.9876 5.70207 18.9657 5.69473C18.957 5.69179 18.9513 5.6898 18.9487 5.68876C18.9473 5.6879 18.9445 5.68608 18.9402 5.68328C18.9198 5.67004 18.9018 5.66015 18.8862 5.65361C18.8621 5.64337 18.8263 5.62977 18.7789 5.61281C18.7643 5.60757 18.7534 5.60365 18.7463 5.60105C18.7229 5.5925 18.6895 5.58184 18.6462 5.56908C18.6281 5.56374 18.6147 5.55971 18.6058 5.55697C18.6029 5.55605 18.598 5.55455 18.5913 5.55247C18.5316 5.53395 18.4867 5.52087 18.4568 5.51325C18.3948 5.49743 18.3451 5.48576 18.3077 5.47822C18.3005 5.47677 18.289 5.47402 18.2731 5.46996C18.2216 5.45682 18.1788 5.45026 18.1447 5.45026C18.1378 5.45026 18.123 5.44825 18.1001 5.44423C18.0599 5.43714 18.0275 5.4336 18.003 5.4336C17.9917 5.4336 17.9725 5.4324 17.9455 5.43002C17.9096 5.42684 17.8816 5.42526 17.8613 5.42526L8.21844 5.42526L8.18937 5.53771C8.18738 5.54538 8.18453 5.55661 8.18081 5.57139C8.17123 5.60942 8.16361 5.63761 8.15795 5.65596C8.14505 5.69773 8.13189 5.73719 8.11849 5.77435C8.11074 5.79584 8.09741 5.82932 8.0785 5.87478C8.07516 5.88279 8.07266 5.88882 8.07099 5.89287C8.06599 5.90495 8.05908 5.92266 8.05028 5.94599C8.03862 5.97689 8.02978 5.99873 8.02378 6.01153C8.0073 6.04659 7.9889 6.0834 7.96856 6.12194C7.95754 6.1428 7.93917 6.17504 7.91345 6.21866C7.90978 6.22487 7.90705 6.22949 7.90527 6.23253C7.8817 6.27257 7.86069 6.30672 7.84225 6.33498C7.82363 6.3635 7.79994 6.39769 7.77119 6.43755C7.75468 6.46043 7.7283 6.4947 7.69204 6.54034C7.66688 6.572 7.64057 6.60356 7.61312 6.63504C7.5863 6.66576 7.55732 6.69737 7.52618 6.72986C7.49564 6.76173 7.46671 6.79065 7.4394 6.81663C7.40154 6.85264 7.36992 6.88163 7.34456 6.90361C7.3077 6.93553 7.27615 6.96183 7.2499 6.98251C7.24618 6.98544 7.24084 6.98966 7.23388 6.99516C7.19447 7.02631 7.16555 7.04848 7.14711 7.06167L7.1452 7.06304C7.10046 7.09502 7.06689 7.11826 7.04451 7.13276C7.03224 7.1407 7.01131 7.15277 6.98172 7.16896C6.9606 7.1805 6.94462 7.18944 6.93378 7.19577C6.92775 7.19928 6.91874 7.20457 6.90676 7.21163C6.86893 7.23391 6.84107 7.24972 6.82319 7.25907C6.778 7.28268 6.74118 7.3011 6.71274 7.31433C6.69938 7.32053 6.6768 7.32966 6.64501 7.34172C6.62257 7.35022 6.60559 7.35683 6.59407 7.36155C6.58125 7.3668 6.56376 7.37449 6.54159 7.38462C6.51569 7.39644 6.49648 7.40458 6.48394 7.40904C6.46566 7.41556 6.43482 7.4253 6.39142 7.43825C6.37605 7.44283 6.36463 7.44626 6.35715 7.44855C6.33655 7.45482 6.30512 7.46328 6.26286 7.47393C6.25236 7.47657 6.24436 7.4786 6.23887 7.48C6.22619 7.48322 6.2084 7.48814 6.1855 7.49475C6.15604 7.50325 6.1344 7.50893 6.12059 7.51178C6.11009 7.51394 6.09515 7.51743 6.07577 7.52227C6.04522 7.52988 6.0258 7.53369 6.0175 7.53369C5.99372 7.53369 5.96241 7.5373 5.92357 7.54454C5.90273 7.54842 5.88959 7.55036 5.88414 7.55036C5.86484 7.55036 5.83802 7.55196 5.80367 7.55517C5.77849 7.55751 5.76087 7.55869 5.75079 7.55869C5.73141 7.55869 5.70456 7.56029 5.67022 7.56351C5.64512 7.56585 5.62752 7.56703 5.61743 7.56703L5.48407 7.56703C5.47446 7.56703 5.45873 7.5659 5.43687 7.56365C5.40483 7.56034 5.37889 7.55869 5.35905 7.55869C5.35357 7.55869 5.34047 7.55675 5.31973 7.55289C5.2809 7.54565 5.24955 7.54203 5.22569 7.54203C5.22025 7.54203 5.20709 7.54008 5.18622 7.5362C5.14736 7.52897 5.11607 7.52536 5.09233 7.52536C5.08325 7.52536 5.06254 7.5213 5.03019 7.5132C5.01313 7.50892 5.00005 7.50579 4.99095 7.50381C4.97469 7.50025 4.94986 7.49374 4.91645 7.48427C4.89745 7.47888 4.88287 7.47483 4.87269 7.47211C4.86217 7.46929 4.84704 7.46543 4.82729 7.46051C4.79418 7.45225 4.76987 7.44566 4.75435 7.44073C4.74277 7.43705 4.72317 7.42927 4.69557 7.41739C4.66991 7.40634 4.65004 7.39821 4.63596 7.39301C4.62111 7.38752 4.60015 7.38071 4.57308 7.37257C4.54642 7.36456 4.52786 7.35834 4.5174 7.3539C4.49749 7.34547 4.46554 7.33064 4.42155 7.30942C4.41131 7.30448 4.4037 7.30082 4.3987 7.29842C4.35058 7.27536 4.31376 7.25697 4.28822 7.24324C4.25464 7.22517 4.21777 7.2041 4.17761 7.18002C4.16649 7.17336 4.14881 7.16121 4.12457 7.14357C4.10345 7.1282 4.08696 7.11658 4.0751 7.10871C4.03401 7.08142 3.99981 7.05776 3.97251 7.03773C3.96021 7.02871 3.94256 7.0167 3.91955 7.00168C3.89559 6.98604 3.87896 6.97446 3.86966 6.96696C3.85918 6.9585 3.84221 6.94305 3.81876 6.92062C3.7998 6.90248 3.78519 6.88887 3.77495 6.87978C3.73255 6.84216 3.70092 6.8132 3.68006 6.79289C3.6772 6.7901 3.67323 6.78623 3.66814 6.78129C3.63421 6.74832 3.60924 6.72328 3.59324 6.70617C3.5892 6.70185 3.58308 6.69533 3.57486 6.6866C3.54284 6.65259 3.51995 6.62751 3.50619 6.61136C3.50244 6.60696 3.49691 6.60049 3.4896 6.59196C3.46113 6.55873 3.44034 6.53366 3.42723 6.51675C3.41812 6.50499 3.40443 6.48539 3.38617 6.45796C3.37336 6.43872 3.36343 6.42408 3.35637 6.41403C3.35177 6.4075 3.34497 6.39791 3.33596 6.38527C3.31243 6.35226 3.29552 6.32766 3.28522 6.31147C3.2764 6.29761 3.2631 6.27456 3.24534 6.24232C3.23522 6.22395 3.22749 6.2101 3.22215 6.20078C3.21702 6.19183 3.20933 6.17869 3.19907 6.16135C3.17991 6.12895 3.16648 6.10525 3.15879 6.09023C3.15581 6.08443 3.15145 6.07596 3.14569 6.06484C3.12611 6.02698 3.11204 5.99864 3.10347 5.97981C3.09659 5.96469 3.08649 5.93972 3.07317 5.9049C3.06577 5.88558 3.06012 5.87102 3.0562 5.86122C3.051 5.84824 3.04373 5.82671 3.03438 5.79661C3.0271 5.77316 3.02129 5.75521 3.01696 5.74275C3.01556 5.73871 3.01346 5.73269 3.01067 5.72467C2.99499 5.67975 2.98391 5.64631 2.97742 5.62437C2.96789 5.59217 2.95738 5.55274 2.9459 5.50608C2.94317 5.49502 2.93888 5.47851 2.93302 5.45657C2.92344 5.42069 2.91712 5.39502 2.91407 5.37954C2.91143 5.3662 2.90711 5.34845 2.90109 5.32627C2.89496 5.30368 2.8919 5.28945 2.8919 5.28358C2.8919 5.25978 2.88828 5.22846 2.88104 5.18963C2.87717 5.16882 2.87523 5.15569 2.87523 5.15024C2.87523 5.13092 2.87363 5.1041 2.87042 5.06976C2.86807 5.0446 2.8669 5.02698 2.8669 5.0169L2.8669 4.75023C2.8669 4.74014 2.86807 4.72254 2.87042 4.69742C2.87363 4.66308 2.87523 4.63623 2.87523 4.61689C2.87523 4.60683 2.87641 4.58919 2.87876 4.56398C2.88196 4.52961 2.88356 4.5028 2.88356 4.48355L2.88378 4.48469C2.88451 4.48146 2.88641 4.47487 2.88947 4.46493C2.9022 4.42353 2.90857 4.38806 2.90857 4.35854C2.90857 4.34887 2.91283 4.32714 2.92135 4.29335C2.92519 4.27809 2.92803 4.26644 2.92986 4.2584C2.93428 4.23888 2.94201 4.20955 2.95303 4.17039C2.95676 4.15713 2.95959 4.14705 2.96149 4.14015C2.96804 4.11647 2.98003 4.07801 2.99746 4.02476C2.99916 4.01958 3.00039 4.01582 3.00116 4.01348C3.00385 4.00524 3.00774 3.99312 3.01283 3.97711C3.02472 3.9397 3.03395 3.91235 3.04052 3.89505C3.04676 3.87857 3.05705 3.85429 3.07138 3.82221C3.0786 3.80604 3.0841 3.79358 3.0879 3.78483C3.10171 3.75295 3.12019 3.71339 3.14333 3.66614C3.14661 3.65943 3.1514 3.64957 3.15769 3.63657C3.17539 3.59989 3.18899 3.57292 3.19847 3.55566C3.22431 3.50854 3.24537 3.47166 3.26165 3.44501C3.26673 3.43669 3.27388 3.42478 3.28311 3.40926C3.30098 3.37921 3.3148 3.35697 3.32456 3.34253C3.33226 3.33115 3.34653 3.31247 3.36738 3.28649C3.38368 3.26617 3.39584 3.25063 3.40388 3.23987C3.41354 3.22692 3.42618 3.20838 3.44181 3.18424C3.45667 3.16126 3.4676 3.14552 3.4746 3.13702C3.48402 3.12554 3.50067 3.10724 3.52455 3.08212C3.54108 3.06472 3.55347 3.05144 3.56173 3.0423C3.57196 3.03095 3.58881 3.01396 3.61228 2.99132C3.62814 2.97602 3.64026 2.96414 3.64863 2.95568C3.65501 2.94924 3.66421 2.93983 3.67625 2.92744C3.70229 2.90063 3.72198 2.8811 3.7353 2.86885C3.74259 2.86213 3.75339 2.85202 3.76771 2.83852C3.79606 2.81177 3.81685 2.79286 3.83008 2.78177C3.84409 2.77003 3.8677 2.75175 3.9009 2.72693C3.91521 2.71622 3.92591 2.70818 3.93299 2.70279C3.94636 2.6926 3.96808 2.67744 3.99815 2.6573C4.01465 2.64624 4.02718 2.63776 4.03572 2.63187C4.04466 2.62569 4.05756 2.61656 4.07442 2.60449C4.10314 2.58392 4.12442 2.56932 4.13825 2.56069C4.15474 2.55039 4.18156 2.53496 4.21871 2.51439C4.23211 2.50697 4.24219 2.50136 4.24894 2.49757C4.25964 2.49156 4.27514 2.48251 4.29546 2.47042C4.32482 2.45294 4.34617 2.44085 4.35949 2.43416C4.37163 2.42807 4.39108 2.41964 4.41785 2.40887C4.44013 2.39991 4.45747 2.39267 4.46988 2.38714C4.48794 2.3791 4.51714 2.36732 4.5575 2.3518C4.57126 2.34651 4.58159 2.34251 4.58848 2.33982C4.60002 2.33532 4.6168 2.32843 4.63883 2.31915C4.67025 2.30592 4.69296 2.29694 4.70696 2.2922C4.71576 2.28923 4.72863 2.28478 4.74558 2.27886C4.78155 2.2663 4.80813 2.25755 4.82532 2.25262C4.87217 2.23917 4.9116 2.22864 4.94362 2.22104C4.9503 2.21946 4.96007 2.21703 4.97293 2.21376C5.00869 2.20465 5.03182 2.2001 5.04232 2.2001C5.07046 2.2001 5.10603 2.19411 5.14902 2.18213C5.16583 2.17744 5.17472 2.1751 5.17568 2.1751C5.19539 2.1751 5.22128 2.17345 5.25336 2.17015C5.27534 2.16789 5.29112 2.16676 5.3007 2.16676C5.32463 2.16676 5.356 2.16314 5.39482 2.15589C5.4155 2.15203 5.42858 2.1501 5.43406 2.1501L5.50212 2.1501ZM5.62885 3.28125C5.60371 3.27719 5.58323 3.27516 5.56742 3.27516C5.55008 3.27516 5.52952 3.27746 5.50572 3.28204C5.50203 3.28274 5.4994 3.28323 5.49783 3.2835L5.43406 3.2835C5.4183 3.2835 5.39783 3.28552 5.37263 3.28958C5.36579 3.29068 5.36118 3.29137 5.35878 3.29167L5.35905 3.29183C5.33328 3.29183 5.30477 3.29772 5.27353 3.3095C5.25293 3.31164 5.23068 3.3172 5.2068 3.32618C5.18626 3.32833 5.16402 3.33389 5.14007 3.34286C5.1196 3.34502 5.09734 3.35058 5.0733 3.35956C5.04424 3.36272 5.01238 3.37296 4.97774 3.39029C4.97232 3.39299 4.96916 3.39454 4.96826 3.39492C4.95539 3.40024 4.9379 3.40876 4.91579 3.42047C4.90555 3.42589 4.89856 3.42948 4.89484 3.43124C4.88187 3.43737 4.86595 3.44621 4.84708 3.45776C4.83891 3.46276 4.8332 3.46613 4.82994 3.46787C4.82648 3.46972 4.81952 3.4731 4.80906 3.478C4.78638 3.48862 4.76898 3.49756 4.75686 3.50484C4.75337 3.50692 4.74733 3.51027 4.73873 3.51489C4.71939 3.52527 4.7039 3.53435 4.69227 3.54213C4.67583 3.55311 4.65439 3.5684 4.62795 3.588C4.617 3.59612 4.6036 3.60707 4.58776 3.62086C4.58075 3.62694 4.57552 3.6314 4.57208 3.63424C4.54781 3.65416 4.52651 3.67242 4.50819 3.68903C4.49808 3.69819 4.48457 3.7115 4.46767 3.72896C4.46091 3.73593 4.45598 3.74097 4.45287 3.74408C4.44979 3.74716 4.4448 3.75203 4.43791 3.75871C4.42035 3.77571 4.40697 3.78928 4.39777 3.79943C4.3882 3.80999 4.37625 3.82415 4.36192 3.84191C4.35724 3.8477 4.35368 3.85208 4.35125 3.85505C4.34251 3.86569 4.33145 3.88084 4.31807 3.90052C4.31193 3.90953 4.30761 3.91574 4.30509 3.91914C4.28541 3.94567 4.2701 3.96712 4.25916 3.9835C4.25714 3.98652 4.2529 3.99229 4.24645 4.0008C4.23191 4.01996 4.22093 4.03574 4.21351 4.04812C4.1989 4.0725 4.18659 4.09407 4.17658 4.11281C4.1649 4.13461 4.15267 4.15906 4.13989 4.18614C4.13347 4.19967 4.12581 4.21731 4.1169 4.23906C4.11472 4.24435 4.11307 4.24838 4.11193 4.25114C4.11155 4.25204 4.11001 4.2552 4.10731 4.26061C4.09289 4.28943 4.08337 4.31632 4.07876 4.34128C4.06368 4.36956 4.05463 4.39669 4.05163 4.42267C4.04259 4.44671 4.037 4.46904 4.03485 4.48965C4.02305 4.52101 4.01716 4.54953 4.01716 4.57522L4.017 4.57488C4.0167 4.57729 4.016 4.58193 4.0149 4.58881C4.01112 4.6124 4.0091 4.63182 4.00885 4.64707C4.00859 4.64864 4.00809 4.65135 4.00735 4.65521C4.00305 4.67765 4.00077 4.69718 4.00052 4.7138C4.00025 4.71536 3.99975 4.71805 3.99903 4.72186C3.99445 4.74568 3.99216 4.76625 3.99216 4.78356L3.99216 4.92523C3.99216 4.94103 3.99418 4.96151 3.99824 4.98667C3.99934 4.99347 4.00003 4.99807 4.00033 5.00046L4.00049 5.00024C4.00049 5.0175 4.00277 5.03805 4.00735 5.06191C4.00809 5.06575 4.00859 5.06847 4.00885 5.07005C4.00911 5.08658 4.01138 5.10607 4.01567 5.12852C4.01642 5.13246 4.01693 5.13523 4.0172 5.13683C4.01765 5.15939 4.0228 5.18609 4.03264 5.21691C4.03334 5.21911 4.03393 5.22095 4.03439 5.22243C4.03611 5.24442 4.04185 5.26843 4.05163 5.29446C4.05463 5.32039 4.06365 5.34748 4.07869 5.37572C4.08362 5.40208 4.09427 5.42894 4.11064 5.4563C4.1116 5.4579 4.11235 5.45915 4.11288 5.46005C4.11426 5.46367 4.1163 5.46944 4.119 5.47736C4.12672 5.5 4.13369 5.51791 4.13993 5.53109C4.15267 5.55809 4.1649 5.58253 4.17663 5.60442C4.18652 5.62294 4.19881 5.64446 4.21351 5.669C4.22093 5.68138 4.23191 5.69716 4.24645 5.71632C4.2529 5.72483 4.25714 5.7306 4.25916 5.73362C4.27029 5.75028 4.2856 5.77173 4.30509 5.79799C4.30761 5.80139 4.31194 5.8076 4.31808 5.81662C4.33145 5.83628 4.34251 5.85144 4.35127 5.8621C4.35372 5.86508 4.35729 5.86948 4.36199 5.8753C4.37629 5.89302 4.38819 5.90712 4.3977 5.91762C4.40696 5.92784 4.42039 5.94146 4.43799 5.9585C4.44486 5.96515 4.44983 5.97001 4.4529 5.97308C4.45596 5.97613 4.46085 5.98113 4.46757 5.98807C4.48451 6.00557 4.49805 6.01891 4.50818 6.02809C4.52046 6.03922 4.5374 6.05178 4.55898 6.06577C4.56512 6.06975 4.56916 6.07244 4.57109 6.07382C4.57233 6.07513 4.57468 6.07773 4.57812 6.08161C4.59625 6.10209 4.61284 6.11792 4.62789 6.12909C4.64156 6.13921 4.65926 6.14977 4.681 6.16076C4.68762 6.1641 4.69137 6.16607 4.69227 6.16667C4.69529 6.16869 4.70105 6.17293 4.70957 6.17939C4.72873 6.19392 4.7445 6.20489 4.75689 6.21231C4.76899 6.21955 4.78634 6.22847 4.80895 6.23907C4.81944 6.24398 4.8264 6.24735 4.82982 6.24919C4.83318 6.25098 4.83894 6.25438 4.84712 6.25938C4.86597 6.27092 4.88187 6.27975 4.89482 6.28588C4.90799 6.2921 4.92584 6.29905 4.94838 6.30673C4.95834 6.31013 4.96493 6.3125 4.96816 6.31384C4.96914 6.31424 4.97234 6.3158 4.97775 6.3185C5.00657 6.33291 5.03346 6.34242 5.05842 6.34704C5.0867 6.36212 5.11383 6.37116 5.13981 6.37417C5.16386 6.38319 5.18619 6.38878 5.2068 6.39094C5.23684 6.40224 5.26429 6.40812 5.28913 6.4086C5.29072 6.40886 5.29349 6.40936 5.29743 6.41012C5.32132 6.41468 5.34186 6.41696 5.35905 6.41696L5.35878 6.41712C5.36118 6.41742 5.36579 6.41812 5.37263 6.41922C5.3962 6.423 5.41564 6.42502 5.43096 6.42527C5.43252 6.42553 5.43521 6.42602 5.43904 6.42676C5.46286 6.43134 5.48343 6.43363 5.50074 6.43363L5.64243 6.43363C5.65973 6.43363 5.6803 6.43134 5.70413 6.42676C5.70794 6.42602 5.71063 6.42553 5.7122 6.42527C5.72881 6.42501 5.74834 6.42274 5.77079 6.41844C5.77464 6.4177 5.77736 6.41719 5.77894 6.41693C5.79418 6.41668 5.8136 6.41467 5.8372 6.41089C5.84407 6.40979 5.84872 6.40909 5.85114 6.40879L5.8508 6.40863C5.8765 6.40863 5.90502 6.40273 5.93638 6.39094C5.95698 6.38878 5.97931 6.38319 6.00336 6.37417C6.02933 6.37116 6.05646 6.36212 6.08476 6.34704C6.10972 6.34242 6.13663 6.3329 6.16547 6.31848C6.17087 6.31578 6.17403 6.31424 6.17495 6.31386C6.17821 6.3125 6.18483 6.31013 6.19479 6.30673C6.21732 6.29905 6.23514 6.29211 6.24825 6.28593C6.26127 6.27977 6.27724 6.2709 6.29615 6.25933C6.30429 6.25434 6.31 6.25098 6.31326 6.24924C6.33212 6.23914 6.35368 6.22683 6.37794 6.21231C6.40779 6.19444 6.43211 6.17923 6.45091 6.16667C6.45463 6.16417 6.45991 6.16076 6.46673 6.15642C6.48264 6.14628 6.49604 6.13717 6.50694 6.12909C6.51807 6.12083 6.53331 6.10803 6.55265 6.09071C6.5617 6.08259 6.56784 6.07722 6.57106 6.07458C6.57402 6.07214 6.57844 6.06856 6.58431 6.06383C6.60202 6.04953 6.61614 6.03762 6.62666 6.02809C6.62954 6.02547 6.63567 6.02035 6.64505 6.01271C6.66525 5.99624 6.68036 5.98299 6.69039 5.97295C6.70109 5.96227 6.71315 5.94821 6.72657 5.93077C6.73166 5.92415 6.73516 5.91979 6.73708 5.91769C6.73882 5.91576 6.74325 5.9115 6.75037 5.9049C6.76825 5.88831 6.7821 5.87404 6.79191 5.86209C6.80065 5.85143 6.81172 5.83628 6.8251 5.81662C6.83123 5.8076 6.83556 5.80139 6.83809 5.79799C6.85757 5.77173 6.87287 5.75027 6.88401 5.73362C6.89179 5.72198 6.90088 5.70648 6.91127 5.68713C6.91589 5.67853 6.91924 5.67248 6.92133 5.669C6.92162 5.6685 6.92435 5.66501 6.92952 5.65852C6.94599 5.63779 6.95834 5.61974 6.96657 5.60437C6.97492 5.58875 6.98309 5.56829 6.99107 5.54299C6.99347 5.53538 6.99476 5.5314 6.99493 5.53104C6.9967 5.52727 7.00031 5.52024 7.00576 5.50996C7.0174 5.48795 7.02588 5.47055 7.0312 5.45776L7.03253 5.4563C7.05199 5.42377 7.06337 5.39194 7.06666 5.36081C7.07349 5.34248 7.07834 5.32519 7.08122 5.30894C7.09996 5.27382 7.10934 5.24037 7.10934 5.20858L7.1095 5.20899C7.1098 5.20655 7.1105 5.20187 7.11161 5.19493C7.11423 5.17847 7.11601 5.16407 7.11693 5.15173C7.12806 5.12203 7.13385 5.09481 7.13431 5.07008C7.13457 5.0685 7.13508 5.06578 7.13582 5.06191C7.14039 5.03806 7.14268 5.0175 7.14268 5.00024L7.14284 5.00046C7.14313 4.99808 7.14383 4.99348 7.14493 4.98667C7.14898 4.96151 7.15101 4.94103 7.15101 4.92523L7.15101 4.78356C7.15101 4.76624 7.14872 4.74568 7.14415 4.72186C7.14341 4.71804 7.14292 4.71536 7.14266 4.7138C7.1424 4.69718 7.14012 4.67765 7.13582 4.65521C7.13507 4.65133 7.13457 4.6486 7.13431 4.64704C7.13387 4.62434 7.1287 4.59757 7.11882 4.56675C7.1182 4.56483 7.11767 4.56319 7.11725 4.56184C7.1164 4.54772 7.11427 4.53168 7.11085 4.5137C7.11008 4.50966 7.10957 4.50684 7.10931 4.50522C7.10867 4.47442 7.09931 4.44207 7.08122 4.40819C7.07834 4.39189 7.07347 4.37454 7.06661 4.35616C7.06344 4.3271 7.05319 4.29525 7.03587 4.26061C7.03316 4.2552 7.03162 4.25204 7.03125 4.25114C7.02452 4.23494 7.01442 4.21643 7.00095 4.1956C6.99718 4.18978 6.99518 4.18662 6.99495 4.18614C6.99475 4.18572 6.99346 4.18172 6.99106 4.17413C6.98308 4.14885 6.97494 4.12843 6.96662 4.11286C6.95835 4.09742 6.94599 4.07935 6.92954 4.05865C6.92436 4.05214 6.92163 4.04863 6.92133 4.04813C6.91924 4.04464 6.91589 4.0386 6.91127 4.03C6.90088 4.01064 6.89179 3.99514 6.88401 3.9835C6.87306 3.96712 6.85777 3.94569 6.83813 3.9192C6.83557 3.91576 6.83123 3.90953 6.8251 3.90052C6.81171 3.88084 6.80064 3.86567 6.79189 3.85501C6.78209 3.84307 6.76825 3.8288 6.75035 3.81221C6.74323 3.80561 6.73881 3.80135 6.73707 3.79943C6.73515 3.79732 6.73165 3.79296 6.72656 3.78634C6.71314 3.76892 6.70105 3.75483 6.69029 3.74407C6.68032 3.7341 6.66525 3.72089 6.64508 3.70444C6.63568 3.69678 6.62953 3.69165 6.62665 3.68903C6.62473 3.68729 6.62046 3.68285 6.61385 3.67573C6.59727 3.65786 6.58302 3.64403 6.57108 3.63423C6.56041 3.62547 6.54524 3.6144 6.52556 3.60102C6.51655 3.59489 6.51035 3.59057 6.50695 3.58805C6.50543 3.58692 6.50189 3.58381 6.49633 3.57872C6.47949 3.5633 6.46435 3.55111 6.45091 3.54213C6.43671 3.53263 6.41715 3.52237 6.39225 3.51135C6.38358 3.50751 6.37882 3.50534 6.37798 3.50483C6.35365 3.49025 6.33207 3.47793 6.31323 3.46787C6.31001 3.46615 6.30433 3.46279 6.29619 3.45781C6.27726 3.44623 6.26129 3.43736 6.24828 3.43122C6.24458 3.42947 6.23762 3.42589 6.22738 3.42047C6.20526 3.40876 6.18777 3.40024 6.17491 3.39492C6.17403 3.39455 6.17088 3.39301 6.16548 3.39031C6.13081 3.37297 6.09894 3.36272 6.06988 3.35956C6.04583 3.35058 6.02357 3.34502 6.00311 3.34286C5.97915 3.33389 5.9569 3.32833 5.93637 3.32618C5.9105 3.31646 5.88656 3.31074 5.86456 3.30904C5.86313 3.30859 5.86136 3.30803 5.85925 3.30736C5.82843 3.29747 5.80167 3.2923 5.77897 3.29186C5.77739 3.2916 5.77467 3.2911 5.77079 3.29036C5.74693 3.28578 5.72637 3.2835 5.70911 3.2835L5.64243 3.2835L5.64262 3.28334C5.64024 3.28304 5.63565 3.28234 5.62885 3.28125ZM5.56849 3.57549C5.56695 3.57576 5.56493 3.57614 5.56241 3.57663C5.53861 3.58121 5.51806 3.5835 5.50074 3.5835L5.43406 3.5835L5.43418 3.58367C5.43176 3.58397 5.42712 3.58467 5.42026 3.58577C5.40382 3.58841 5.3894 3.59019 5.377 3.59111C5.35341 3.59995 5.3314 3.60542 5.31097 3.60752C5.28708 3.6165 5.26485 3.62206 5.24428 3.62418C5.22032 3.63316 5.1981 3.63871 5.1776 3.64084C5.1552 3.6492 5.13437 3.6546 5.11511 3.65702C5.11415 3.6575 5.11309 3.65803 5.11193 3.65861C5.10015 3.66449 5.09053 3.66899 5.08305 3.67209C5.07889 3.67381 5.06991 3.67832 5.05613 3.68562C5.04191 3.69314 5.0309 3.69875 5.02311 3.70244C5.01986 3.70397 5.01338 3.70771 5.00368 3.71365C4.99052 3.72169 4.97974 3.72797 4.97132 3.73247C4.96325 3.73678 4.95159 3.74251 4.93634 3.74966C4.92288 3.75596 4.91444 3.76014 4.91104 3.76218C4.90351 3.76669 4.89336 3.77237 4.8806 3.77922C4.86977 3.78503 4.86255 3.78914 4.85895 3.79156C4.84656 3.79983 4.8291 3.81232 4.80658 3.82902C4.80194 3.83246 4.79463 3.83852 4.78463 3.84722C4.77548 3.85518 4.76808 3.86148 4.76243 3.86612C4.74193 3.88294 4.72433 3.89801 4.70963 3.91133C4.70436 3.9161 4.69555 3.92487 4.68319 3.93765C4.67529 3.9458 4.6692 3.95201 4.66493 3.95629C4.66072 3.96049 4.6546 3.96647 4.64657 3.97425C4.63369 3.98672 4.62484 3.99562 4.62002 4.00094C4.61433 4.00721 4.6061 4.01702 4.59533 4.03037C4.59015 4.03678 4.58611 4.04177 4.58319 4.04533C4.58012 4.04906 4.57442 4.05704 4.5661 4.06928C4.55766 4.08167 4.55096 4.09121 4.546 4.09791C4.52929 4.12045 4.51681 4.13788 4.50857 4.15022C4.50323 4.15821 4.49551 4.16885 4.48543 4.18214C4.47751 4.19257 4.47266 4.19928 4.47088 4.20227C4.45877 4.22248 4.44885 4.23981 4.44113 4.25426C4.43179 4.27172 4.42179 4.29172 4.41115 4.31427C4.40693 4.32316 4.40137 4.33603 4.39446 4.35289C4.39217 4.35847 4.39038 4.36281 4.3891 4.36593C4.386 4.37341 4.3815 4.38305 4.37561 4.39483C4.37497 4.39611 4.37439 4.39726 4.37388 4.39829C4.37046 4.42288 4.36165 4.44851 4.34745 4.47518C4.34459 4.49149 4.33972 4.50881 4.33285 4.52715C4.33074 4.54752 4.32527 4.56952 4.31644 4.59316C4.31552 4.6055 4.31375 4.61989 4.31112 4.63631C4.31 4.64323 4.3093 4.64791 4.309 4.65035L4.30883 4.65022C4.30883 4.66742 4.30655 4.68791 4.30199 4.7117C4.30123 4.7156 4.30073 4.71835 4.30047 4.71994C4.30021 4.73656 4.29794 4.75607 4.29364 4.77848C4.29292 4.78221 4.29242 4.78487 4.29216 4.78646L4.29216 4.92523L4.29232 4.9251C4.29262 4.92748 4.29332 4.93209 4.29442 4.93892C4.29821 4.96244 4.30023 4.98186 4.30047 4.99718C4.30073 4.99876 4.30123 5.00151 4.30199 5.00543C4.30628 5.02781 4.30855 5.04728 4.3088 5.06384C4.30906 5.06544 4.30958 5.06824 4.31035 5.07224C4.31377 5.09019 4.31591 5.10623 4.31675 5.12037C4.3172 5.12181 4.31776 5.12357 4.31842 5.12565C4.32606 5.14957 4.33086 5.17098 4.33282 5.1899C4.3397 5.20826 4.34458 5.22561 4.34745 5.24195C4.35986 5.26526 4.36816 5.28778 4.37234 5.30951C4.37938 5.32177 4.38496 5.33287 4.38908 5.34281C4.39288 5.35199 4.3975 5.36457 4.40295 5.38056C4.40701 5.39245 4.40972 5.39985 4.4111 5.40276C4.42176 5.42536 4.43175 5.44536 4.44108 5.46277C4.44877 5.47717 4.4587 5.49453 4.47088 5.51486C4.47266 5.51784 4.47751 5.52455 4.48543 5.53498C4.49551 5.54826 4.50322 5.55891 4.50858 5.56691C4.51698 5.57947 4.52945 5.59691 4.546 5.61922C4.55096 5.6259 4.55766 5.63544 4.5661 5.64784C4.57442 5.66008 4.58011 5.66806 4.58317 5.67178C4.58611 5.67536 4.59018 5.68037 4.59539 5.68683C4.60614 5.70014 4.61437 5.70995 4.62009 5.71626C4.62489 5.72156 4.63374 5.73046 4.64666 5.74296C4.65464 5.75069 4.66072 5.75664 4.6649 5.76081C4.66918 5.76509 4.67524 5.77128 4.68309 5.77938C4.69549 5.79219 4.70434 5.801 4.70964 5.8058C4.70995 5.80608 4.71412 5.80882 4.72214 5.81402C4.73916 5.82505 4.75258 5.83459 4.7624 5.84265C4.77418 5.85232 4.78763 5.86569 4.80275 5.88276C4.80502 5.88533 4.80683 5.88735 4.80817 5.88882C4.81 5.88979 4.81271 5.89119 4.81631 5.89301C4.83375 5.90182 4.84797 5.9099 4.85895 5.91724C4.86695 5.92258 4.87759 5.93029 4.89088 5.94037C4.90131 5.94828 4.90802 5.95313 4.91101 5.95493C4.9144 5.95695 4.92281 5.96111 4.93623 5.96741C4.95156 5.97459 4.9633 5.98036 4.97144 5.98472C4.97977 5.98917 4.99053 5.99543 5.00372 6.0035C5.01341 6.00943 5.01988 6.01316 5.02313 6.0147C5.02597 6.01604 5.03332 6.01873 5.0452 6.02278C5.06128 6.02826 5.07393 6.03292 5.08314 6.03674C5.09055 6.03981 5.10015 6.04429 5.11193 6.05019C5.11321 6.05083 5.11437 6.0514 5.1154 6.05192C5.13999 6.05533 5.16562 6.06414 5.1923 6.07834C5.20861 6.0812 5.22594 6.08606 5.24428 6.09294C5.26466 6.09504 5.28668 6.10052 5.31033 6.10937C5.32327 6.11037 5.33773 6.11239 5.3537 6.11544C5.3577 6.1162 5.36051 6.11672 5.36212 6.11699C5.37736 6.11723 5.39674 6.11924 5.42026 6.12302C5.42713 6.12412 5.43177 6.12483 5.43418 6.12513L5.43406 6.12529C5.45132 6.12529 5.47185 6.12757 5.49565 6.13215C5.49939 6.13287 5.50205 6.13336 5.50364 6.13363L5.63954 6.13363C5.64112 6.13336 5.64378 6.13287 5.64752 6.13215C5.66993 6.12784 5.68945 6.12556 5.70607 6.12532C5.70766 6.12505 5.71041 6.12454 5.71432 6.1238C5.7381 6.11924 5.75859 6.11696 5.77579 6.11696L5.77567 6.11679C5.77812 6.11648 5.7828 6.11577 5.78971 6.11467C5.80613 6.11203 5.82052 6.11026 5.83288 6.10935C5.85651 6.10051 5.87851 6.09504 5.89889 6.09294C5.91723 6.08606 5.93455 6.0812 5.95087 6.07834C5.97755 6.06414 6.00318 6.05533 6.02778 6.05191C6.02882 6.05139 6.02998 6.05081 6.03128 6.05017C6.04302 6.04429 6.05263 6.03981 6.06009 6.03672C6.06925 6.03291 6.08188 6.02826 6.09798 6.02278C6.10984 6.01874 6.11723 6.01603 6.12015 6.01465C6.12336 6.01313 6.12982 6.0094 6.13954 6.00346C6.15267 5.99542 6.16343 5.98915 6.17183 5.98467C6.18638 5.97688 6.20371 5.96697 6.22383 5.95493C6.24942 5.9396 6.26955 5.92703 6.28422 5.91723C6.28976 5.91353 6.29688 5.90891 6.30556 5.90338C6.31547 5.89707 6.32302 5.89199 6.3282 5.88815C6.33191 5.88539 6.34 5.87843 6.35246 5.86727C6.36475 5.85625 6.37419 5.84805 6.38078 5.84265C6.3844 5.83967 6.38944 5.83557 6.39592 5.83035C6.40918 5.81965 6.41894 5.81147 6.4252 5.8058C6.43196 5.79966 6.44206 5.79112 6.45552 5.78016C6.4678 5.77015 6.47534 5.76374 6.47815 5.76093C6.47979 5.75928 6.48336 5.7549 6.48884 5.74778C6.49884 5.73479 6.50749 5.72426 6.51481 5.7162C6.52237 5.70785 6.5329 5.69743 6.54638 5.68493C6.55428 5.67759 6.55882 5.67321 6.56 5.67178C6.56305 5.66806 6.56874 5.66008 6.57708 5.64784C6.58551 5.63544 6.59221 5.6259 6.59717 5.61922C6.61372 5.59691 6.6262 5.57947 6.6346 5.56691C6.63702 5.56329 6.64114 5.55605 6.64696 5.54521C6.6538 5.53248 6.65946 5.52236 6.66396 5.51486C6.67105 5.50302 6.68129 5.48867 6.69468 5.47183C6.6979 5.46777 6.70024 5.46478 6.70169 5.46287C6.70243 5.46068 6.70353 5.45729 6.70498 5.45271C6.71148 5.43211 6.71772 5.41547 6.72372 5.40281C6.7274 5.39499 6.73303 5.38392 6.74061 5.36962C6.74789 5.35587 6.75239 5.34691 6.75412 5.34275C6.75815 5.33301 6.7636 5.32214 6.77048 5.31014C6.77331 5.29336 6.77829 5.27545 6.78542 5.25641C6.7883 5.23105 6.79693 5.20468 6.81131 5.17728C6.81229 5.16828 6.81365 5.1584 6.81537 5.14763C6.81648 5.14065 6.81719 5.13592 6.8175 5.13344L6.81767 5.13358C6.81767 5.10806 6.82347 5.07984 6.83508 5.04891C6.83608 5.0359 6.83812 5.02141 6.84119 5.00543C6.84193 5.00151 6.84244 4.99877 6.8427 4.99719C6.84294 4.98187 6.84495 4.96245 6.84875 4.93892C6.84985 4.9321 6.85055 4.9275 6.85085 4.9251L6.85101 4.92523L6.85101 4.78646C6.85074 4.78487 6.85025 4.78221 6.84954 4.77848C6.84523 4.75607 6.84295 4.73656 6.8427 4.71994C6.84244 4.71836 6.84193 4.71561 6.84119 4.7117C6.83774 4.69372 6.83559 4.67762 6.83475 4.66341C6.83431 4.66203 6.83378 4.66035 6.83315 4.65837C6.82329 4.62764 6.81815 4.60097 6.81771 4.57837C6.81744 4.57673 6.81691 4.57384 6.81613 4.5697C6.81412 4.55916 6.81256 4.5493 6.81145 4.54011C6.79698 4.51261 6.7883 4.48615 6.78542 4.46072C6.777 4.43823 6.77158 4.41733 6.76915 4.39801C6.76867 4.39705 6.76814 4.39599 6.76756 4.39483C6.76209 4.3839 6.75783 4.37482 6.75477 4.36759C6.75396 4.3662 6.75206 4.36319 6.74906 4.35856C6.73806 4.34156 6.72961 4.32679 6.72369 4.31427C6.71771 4.30165 6.71147 4.28503 6.70497 4.26441C6.70353 4.25984 6.70243 4.25646 6.70169 4.25426C6.70023 4.25234 6.6979 4.24935 6.69468 4.24531C6.68128 4.22845 6.67104 4.21411 6.66396 4.20227C6.65946 4.19477 6.6538 4.18465 6.64696 4.17192C6.64114 4.16107 6.63702 4.15384 6.6346 4.15022C6.62636 4.13789 6.61386 4.12043 6.59712 4.09785C6.59218 4.09119 6.5855 4.08167 6.57707 4.06928C6.56875 4.05704 6.56306 4.04907 6.56002 4.04536C6.55882 4.0439 6.55427 4.03951 6.54637 4.03219C6.53289 4.01969 6.52238 4.00928 6.51482 4.00094C6.5075 3.99287 6.49884 3.98234 6.48884 3.96934C6.48335 3.96222 6.47982 3.95787 6.47825 3.9563C6.47539 3.95343 6.46781 3.94699 6.45552 3.93697C6.44207 3.92601 6.43196 3.91746 6.4252 3.91133C6.41685 3.90376 6.40642 3.89324 6.39392 3.87976C6.38658 3.87185 6.38219 3.86731 6.38075 3.86613C6.37703 3.86307 6.36906 3.85739 6.35684 3.84908C6.34444 3.84064 6.33489 3.83394 6.3282 3.82898C6.31841 3.82172 6.30694 3.81207 6.29379 3.80003C6.28818 3.79489 6.28499 3.79207 6.28422 3.79155L6.28421 3.79177C6.28193 3.79065 6.27746 3.78861 6.2708 3.78567C6.25087 3.77684 6.2352 3.76901 6.22379 3.76218C6.20367 3.75012 6.18635 3.74022 6.17185 3.73247C6.16343 3.72797 6.15267 3.72171 6.13957 3.71369C6.12985 3.70773 6.12336 3.70399 6.12012 3.70246C6.11228 3.69875 6.10126 3.69314 6.08704 3.68562C6.07326 3.67832 6.06429 3.67381 6.06013 3.67209C6.05264 3.66898 6.04302 3.66449 6.03128 3.65863C6.0301 3.65803 6.02903 3.6575 6.02807 3.65702C6.00881 3.6546 5.98797 3.6492 5.96557 3.64084C5.94507 3.63871 5.92284 3.63316 5.89889 3.62418C5.87829 3.62206 5.85604 3.61649 5.83212 3.60749C5.8131 3.60553 5.79161 3.60071 5.76765 3.59303C5.76567 3.59239 5.76399 3.59186 5.76261 3.59142C5.74839 3.59058 5.7323 3.58843 5.71432 3.58499C5.71051 3.58426 5.70781 3.58376 5.70621 3.5835L5.64243 3.5835C5.62663 3.5835 5.60618 3.58147 5.58106 3.57742C5.57527 3.57648 5.57108 3.57584 5.56849 3.57549ZM12.1002 8.27994C12.0577 8.2769 12.025 8.27539 12.0019 8.27539C11.9789 8.27539 11.9461 8.2769 11.9037 8.27994C11.8684 8.28246 11.8428 8.28373 11.8269 8.28373C11.8039 8.28373 11.7711 8.28524 11.7285 8.28828C11.6932 8.2908 11.6677 8.29206 11.6519 8.29206C11.616 8.29206 11.5669 8.298 11.5044 8.30989C11.4816 8.31423 11.4651 8.31716 11.4548 8.31868C11.4231 8.32339 11.3763 8.33208 11.3145 8.34476C11.2957 8.34862 11.2817 8.35146 11.2725 8.35328C11.2596 8.35586 11.2391 8.35954 11.2111 8.36432C11.1579 8.3734 11.1177 8.38137 11.0903 8.38822C11.0613 8.3955 11.0199 8.40763 10.9664 8.42462C10.9441 8.43168 10.9275 8.43687 10.9165 8.44019C10.9043 8.44389 10.8856 8.4493 10.8603 8.4564C10.809 8.4708 10.7699 8.48284 10.7429 8.4925C10.7162 8.50206 10.6793 8.51724 10.6324 8.53806C10.608 8.54889 10.5897 8.55681 10.5776 8.56182C10.5322 8.58064 10.4744 8.60663 10.4042 8.6398C10.3456 8.66754 10.2933 8.69365 10.2476 8.71813C10.236 8.72429 10.2177 8.73369 10.1926 8.74633C10.1438 8.77092 10.1072 8.7905 10.0828 8.80507C10.0575 8.82028 10.0207 8.84447 9.97258 8.87763C9.95178 8.89196 9.93644 8.90243 9.92657 8.90903C9.87815 8.94138 9.82891 8.97613 9.77883 9.01329C9.75432 9.03146 9.72052 9.05861 9.67744 9.09473C9.6607 9.10875 9.64811 9.11922 9.63967 9.12616C9.62968 9.13435 9.61429 9.14657 9.59351 9.16283C9.55277 9.19467 9.52185 9.22016 9.50075 9.2393C9.47907 9.25894 9.44873 9.2889 9.40975 9.32916C9.39211 9.34738 9.37899 9.36078 9.37041 9.36937C9.36183 9.37794 9.34842 9.39105 9.3302 9.4087C9.28992 9.44768 9.25996 9.47802 9.2403 9.49972C9.18784 9.55756 9.14735 9.60386 9.11883 9.6386C9.09431 9.66847 9.05919 9.71424 9.01347 9.77592L9.00593 9.78609C8.96865 9.83631 8.9339 9.88555 8.90167 9.93379C8.8838 9.96051 8.85911 10.0005 8.82759 10.0538C8.81802 10.0699 8.81084 10.082 8.80605 10.09C8.78543 10.1244 8.75737 10.1748 8.72188 10.2412L8.71908 10.2464C8.7143 10.2553 8.70687 10.269 8.69681 10.2875C8.66725 10.3418 8.64578 10.3831 8.6324 10.4114C8.61922 10.4392 8.602 10.4795 8.58073 10.5322C8.57279 10.5519 8.56679 10.5666 8.56274 10.5764C8.56034 10.5822 8.55672 10.5909 8.55188 10.6026C8.52477 10.6677 8.50528 10.7168 8.49342 10.75C8.49003 10.7594 8.4848 10.7738 8.47772 10.7932C8.45686 10.8501 8.44188 10.8936 8.43277 10.9236C8.42431 10.9515 8.41407 10.9913 8.40205 11.0431C8.39642 11.0674 8.39211 11.0854 8.38912 11.0974C8.38616 11.1092 8.38151 11.1269 8.37517 11.1506C8.36131 11.2024 8.35153 11.2426 8.34583 11.2713C8.34027 11.2992 8.33416 11.3399 8.32749 11.3936C8.32411 11.4207 8.32147 11.4407 8.31957 11.4535C8.31805 11.4638 8.31512 11.4803 8.31078 11.5031C8.29888 11.5655 8.29294 11.6147 8.29294 11.6505C8.29294 11.6663 8.29168 11.6919 8.28916 11.7272C8.28612 11.7697 8.28461 11.8025 8.28461 11.8255C8.28461 11.8414 8.28335 11.867 8.28083 11.9023C8.27779 11.9447 8.27627 11.9775 8.27627 12.0006C8.27627 12.0236 8.27779 12.0563 8.28083 12.0988C8.28335 12.1341 8.28461 12.1597 8.28461 12.1756C8.28461 12.1986 8.28612 12.2314 8.28916 12.2739C8.29168 12.3092 8.29294 12.3348 8.29294 12.3506C8.29294 12.3864 8.29888 12.4355 8.31078 12.498C8.31512 12.5208 8.31805 12.5373 8.31957 12.5476C8.32147 12.5604 8.32411 12.5804 8.32749 12.6075C8.33416 12.6612 8.34028 12.702 8.34584 12.7299C8.35154 12.7586 8.36131 12.7988 8.37517 12.8505C8.38151 12.8742 8.38616 12.8919 8.38912 12.9037C8.39211 12.9156 8.39642 12.9337 8.40205 12.958C8.41407 13.0098 8.42431 13.0496 8.43277 13.0775C8.44188 13.1075 8.45686 13.151 8.47772 13.208C8.4848 13.2273 8.49003 13.2417 8.49341 13.2511C8.50528 13.2843 8.52477 13.3335 8.55188 13.3986C8.55672 13.4102 8.56034 13.4189 8.56274 13.4247C8.56679 13.4345 8.57279 13.4492 8.58073 13.4689C8.602 13.5216 8.61922 13.5619 8.6324 13.5898C8.64578 13.6181 8.66725 13.6593 8.69681 13.7136C8.70687 13.7321 8.7143 13.7458 8.71908 13.7547L8.72188 13.7599C8.75737 13.8263 8.78543 13.8767 8.80605 13.9111C8.81082 13.919 8.818 13.9311 8.8276 13.9474C8.8591 14.0006 8.8838 14.0406 8.90168 14.0673C8.9339 14.1156 8.96865 14.1648 9.00595 14.215L9.01348 14.2252C9.05919 14.2869 9.0943 14.3326 9.1188 14.3625C9.14734 14.3972 9.18785 14.4435 9.24032 14.5014C9.25996 14.5231 9.28992 14.5534 9.33019 14.5924C9.34841 14.6101 9.36182 14.6232 9.37041 14.6317C9.37899 14.6403 9.3921 14.6537 9.40975 14.672C9.44873 14.7122 9.47907 14.7421 9.50077 14.7618C9.52182 14.7809 9.55267 14.8064 9.59333 14.8381C9.61419 14.8544 9.62963 14.8667 9.63967 14.875C9.64817 14.8819 9.66087 14.8925 9.67775 14.9066C9.7207 14.9426 9.7544 14.9697 9.77885 14.9878C9.82892 15.025 9.87815 15.0598 9.92655 15.0921C9.93645 15.0987 9.95179 15.1092 9.97258 15.1235C10.0207 15.1566 10.0575 15.1808 10.0828 15.196C10.1071 15.2106 10.1437 15.2302 10.1926 15.2548C10.2177 15.2674 10.236 15.2768 10.2476 15.283C10.2933 15.3075 10.3455 15.3336 10.4042 15.3613C10.4743 15.3945 10.5322 15.4205 10.5776 15.4393C10.5897 15.4443 10.608 15.4522 10.6324 15.463C10.6793 15.4839 10.7161 15.4991 10.7428 15.5086C10.7698 15.5183 10.809 15.5303 10.8603 15.5447C10.8856 15.5518 10.9043 15.5572 10.9165 15.5609C10.9275 15.5642 10.9441 15.5694 10.9664 15.5765C11.0199 15.5935 11.0613 15.6056 11.0903 15.6129C11.1177 15.6198 11.1579 15.6277 11.2111 15.6368C11.2391 15.6416 11.2595 15.6453 11.2725 15.6478C11.2816 15.6496 11.2956 15.6524 11.3145 15.6563C11.3763 15.669 11.423 15.6777 11.4548 15.6824C11.5371 15.6946 11.6027 15.7007 11.6519 15.7007C11.6641 15.7007 11.6862 15.703 11.718 15.7075C11.764 15.7141 11.8003 15.7174 11.8269 15.7174C11.8428 15.7174 11.8684 15.7187 11.9037 15.7212C11.9461 15.7242 11.9789 15.7257 12.0019 15.7257C12.025 15.7257 12.0577 15.7242 12.1002 15.7212C12.1355 15.7187 12.1611 15.7174 12.177 15.7174C12.2035 15.7174 12.2398 15.7141 12.2858 15.7075C12.3177 15.703 12.3397 15.7007 12.352 15.7007C12.3959 15.7007 12.4554 15.6951 12.5305 15.6839L12.5407 15.6824C12.5725 15.6777 12.6193 15.669 12.6811 15.6563C12.6999 15.6525 12.7139 15.6497 12.723 15.6478C12.736 15.6453 12.7565 15.6416 12.7844 15.6368C12.8376 15.6277 12.8779 15.6198 12.9052 15.6129C12.9343 15.6056 12.9756 15.5935 13.0292 15.5765C13.0515 15.5694 13.0681 15.5642 13.079 15.5609C13.0912 15.5572 13.1099 15.5518 13.1352 15.5447C13.1865 15.5303 13.2257 15.5183 13.2527 15.5086C13.2859 15.4967 13.3351 15.4772 13.4003 15.4501C13.4118 15.4453 13.4204 15.4417 13.4262 15.4393C13.4531 15.4282 13.4912 15.4104 13.5404 15.3861C13.5633 15.3748 13.5802 15.3666 13.5913 15.3613C13.6023 15.3561 13.6192 15.3483 13.6419 15.338C13.6923 15.3151 13.7304 15.2968 13.7563 15.283L13.7585 15.2818L13.7608 15.2806C13.8275 15.2449 13.8781 15.2167 13.9127 15.196C13.9381 15.1808 13.9749 15.1566 14.0232 15.1233C14.0439 15.109 14.0591 15.0986 14.069 15.0921C14.1172 15.0598 14.1664 15.0251 14.2167 14.9878C14.2411 14.9697 14.2748 14.9426 14.3178 14.9066C14.3346 14.8925 14.3473 14.882 14.3558 14.875C14.3659 14.8667 14.3813 14.8544 14.4022 14.8381C14.4429 14.8064 14.4737 14.7809 14.4948 14.7618C14.5558 14.7065 14.602 14.6632 14.6334 14.6317C14.6599 14.6052 14.6965 14.5662 14.7432 14.5146C14.7485 14.5088 14.7525 14.5044 14.7552 14.5014C14.8078 14.4434 14.8483 14.3971 14.8767 14.3625C14.9011 14.3328 14.9361 14.2872 14.9817 14.2257L14.9896 14.215C15.0269 14.1647 15.0616 14.1155 15.0939 14.0673C15.1118 14.0405 15.1366 14.0003 15.1683 13.9468C15.1777 13.9309 15.1848 13.919 15.1895 13.9111C15.1963 13.8998 15.2072 13.8823 15.2223 13.8586C15.2507 13.8142 15.2715 13.7796 15.2848 13.7547C15.2987 13.7288 15.3171 13.6905 15.34 13.64C15.3503 13.6174 15.358 13.6007 15.3631 13.5898C15.3684 13.5787 15.3766 13.5618 15.3878 13.5391C15.4122 13.4898 15.43 13.4516 15.4411 13.4247C15.4519 13.3986 15.4656 13.3602 15.4823 13.3095C15.491 13.283 15.4976 13.2636 15.5021 13.2512C15.5055 13.2417 15.5107 13.2273 15.5178 13.208C15.5387 13.151 15.5537 13.1075 15.5628 13.0775C15.5712 13.0496 15.5814 13.0098 15.5935 12.958C15.5991 12.9337 15.6034 12.9156 15.6064 12.9037C15.6093 12.8919 15.614 12.8742 15.6204 12.8505C15.6342 12.7988 15.644 12.7586 15.6497 12.7299C15.6552 12.702 15.6613 12.6612 15.668 12.6076C15.6714 12.5804 15.674 12.5604 15.6759 12.5476C15.6774 12.5373 15.6804 12.5208 15.6847 12.498C15.6966 12.4355 15.7026 12.3864 15.7026 12.3506C15.7026 12.3383 15.7049 12.3163 15.7094 12.2844C15.7159 12.2384 15.7192 12.2021 15.7192 12.1756L15.7192 11.8255C15.7192 11.799 15.7159 11.7627 15.7094 11.7167C15.7049 11.6848 15.7026 11.6628 15.7026 11.6505C15.7026 11.6147 15.6966 11.5655 15.6847 11.5031C15.6804 11.4803 15.6774 11.4638 15.6759 11.4535C15.674 11.4407 15.6714 11.4207 15.668 11.3935C15.6613 11.3399 15.6552 11.2992 15.6497 11.2712C15.644 11.2426 15.6342 11.2024 15.6204 11.1507C15.614 11.1269 15.6093 11.1092 15.6064 11.0974C15.6034 11.0855 15.5991 11.0674 15.5935 11.0431C15.5814 10.9913 15.5712 10.9515 15.5628 10.9236C15.5537 10.8936 15.5387 10.8501 15.5178 10.7931C15.5107 10.7739 15.5055 10.7595 15.5021 10.75C15.4976 10.7375 15.491 10.7181 15.4823 10.6916C15.4656 10.6409 15.4519 10.6025 15.4411 10.5764C15.43 10.5495 15.4122 10.5113 15.3878 10.462C15.3766 10.4393 15.3684 10.4224 15.3631 10.4113C15.358 10.4004 15.3503 10.3837 15.34 10.3611C15.3171 10.3106 15.2987 10.2723 15.2848 10.2464C15.2715 10.2216 15.2507 10.1869 15.2223 10.1425C15.2072 10.1189 15.1963 10.1014 15.1895 10.09C15.1848 10.0822 15.1777 10.0703 15.1683 10.0543C15.1366 10.0008 15.1118 9.96063 15.0938 9.93377C15.0616 9.88555 15.0269 9.83632 14.9896 9.78607L14.9817 9.77539C14.9361 9.71394 14.9011 9.66834 14.8767 9.63859C14.8484 9.60403 14.8079 9.55773 14.7552 9.49969C14.7527 9.49692 14.7487 9.49251 14.7432 9.48647C14.6965 9.43486 14.6599 9.39582 14.6334 9.36934C14.602 9.33794 14.5558 9.29458 14.4947 9.23928C14.4736 9.22016 14.4427 9.19467 14.402 9.16283C14.3812 9.14656 14.3658 9.13433 14.3558 9.12613C14.3474 9.11921 14.3348 9.10874 14.3181 9.09472C14.275 9.05861 14.2412 9.03146 14.2167 9.01327C14.1664 8.976 14.1172 8.94125 14.0689 8.90903C14.0591 8.90246 14.0439 8.89205 14.0232 8.87779C13.9749 8.84455 13.9381 8.82032 13.9127 8.80509C13.8781 8.78437 13.8275 8.75618 13.7608 8.72052L13.7585 8.71932L13.7563 8.71813C13.7304 8.7043 13.6923 8.68594 13.6419 8.66306C13.6192 8.65274 13.6023 8.64499 13.5914 8.63982C13.5802 8.63454 13.5632 8.62627 13.5404 8.61499C13.4912 8.59067 13.4531 8.57295 13.4262 8.56182C13.4205 8.55945 13.4119 8.55586 13.4003 8.55104C13.3351 8.52391 13.2859 8.5044 13.2527 8.49251C13.2256 8.48283 13.1865 8.47079 13.1352 8.45638C13.1099 8.44928 13.0912 8.44389 13.079 8.44019C13.0681 8.43688 13.0515 8.4317 13.0293 8.42466C12.9757 8.40766 12.9343 8.39551 12.9052 8.38822C12.8778 8.38137 12.8375 8.3734 12.7844 8.36432C12.7564 8.35954 12.7359 8.35586 12.723 8.35328C12.7138 8.35145 12.6998 8.34861 12.681 8.34476C12.6192 8.33208 12.5724 8.32339 12.5407 8.31868C12.5302 8.31712 12.5137 8.31406 12.4913 8.30951C12.434 8.29787 12.3876 8.29206 12.352 8.29206C12.3362 8.29206 12.3106 8.2908 12.2753 8.28828C12.2328 8.28524 12.2 8.28373 12.177 8.28373C12.1611 8.28373 12.1355 8.28246 12.1002 8.27994ZM11.9251 8.57918C11.9604 8.57665 11.986 8.57539 12.0019 8.57539C12.0178 8.57539 12.0435 8.57665 12.0788 8.57918C12.1212 8.58221 12.1539 8.58373 12.177 8.58373C12.1929 8.58373 12.2185 8.58499 12.254 8.58752C12.2964 8.59054 12.3291 8.59206 12.352 8.59206C12.3675 8.59206 12.394 8.59587 12.4315 8.6035C12.4592 8.60912 12.4809 8.6131 12.4967 8.61544C12.523 8.61934 12.5644 8.62707 12.6208 8.63865C12.6402 8.64263 12.6548 8.64559 12.6645 8.64751C12.6801 8.65062 12.7032 8.6548 12.7339 8.66004C12.7796 8.66784 12.8124 8.67424 12.8323 8.67924C12.8554 8.68503 12.8909 8.6955 12.9386 8.71064C12.962 8.71805 12.9798 8.72359 12.9919 8.72727C13.006 8.73157 13.0267 8.73754 13.054 8.7452C13.0986 8.75772 13.1311 8.76764 13.1516 8.77496C13.1801 8.78514 13.2245 8.80282 13.285 8.82801C13.2968 8.83291 13.3056 8.83658 13.3115 8.839C13.3322 8.84759 13.3642 8.86257 13.4075 8.88395C13.4318 8.89598 13.4504 8.905 13.4631 8.911C13.4754 8.91684 13.4937 8.92526 13.5179 8.93624C13.5624 8.95644 13.5947 8.97192 13.6149 8.9827L13.6171 8.98389L13.6193 8.98509C13.6818 9.01845 13.7282 9.04422 13.7585 9.0624C13.7784 9.07438 13.8099 9.09518 13.8529 9.12482C13.8748 9.1399 13.8913 9.15112 13.9023 9.15848C13.9464 9.18796 13.9917 9.21988 14.038 9.25424C14.0577 9.26888 14.0869 9.29235 14.1254 9.32465C14.1429 9.33936 14.1563 9.3505 14.1655 9.35806C14.1774 9.36776 14.1946 9.38147 14.2172 9.39917C14.2522 9.42653 14.2776 9.44733 14.2933 9.46159C14.3507 9.51359 14.3934 9.55357 14.4214 9.58154C14.4443 9.60448 14.4775 9.63989 14.5208 9.68779C14.5261 9.6936 14.5301 9.69807 14.533 9.70121C14.5823 9.75559 14.6195 9.79818 14.6448 9.82898C14.6661 9.8549 14.6981 9.89658 14.7406 9.95404L14.7487 9.96485C14.783 10.0111 14.8149 10.0563 14.8444 10.1005C14.8593 10.1228 14.8812 10.1583 14.9101 10.2071C14.9198 10.2235 14.9272 10.2359 14.9322 10.2443C14.9404 10.258 14.9528 10.2779 14.9694 10.3039C14.9937 10.3418 15.0106 10.3698 15.0202 10.3879C15.031 10.4081 15.0466 10.4405 15.0669 10.4852C15.0778 10.5092 15.0861 10.5274 15.0919 10.5396C15.0979 10.5523 15.1069 10.5707 15.1189 10.5949C15.1403 10.6383 15.1553 10.6704 15.1639 10.6912C15.1719 10.7104 15.1831 10.7418 15.1974 10.7854C15.2069 10.8143 15.2143 10.8362 15.2196 10.851C15.2233 10.8612 15.2288 10.8763 15.2361 10.8963C15.255 10.948 15.2682 10.9861 15.2757 11.0107C15.2822 11.0322 15.2907 11.0656 15.3012 11.1109C15.3073 11.1369 15.312 11.1567 15.3154 11.1703C15.3187 11.1837 15.3238 11.203 15.3306 11.2282C15.3427 11.2736 15.351 11.3075 15.3555 11.3298C15.3596 11.3506 15.3646 11.3842 15.3703 11.4306C15.374 11.4601 15.3769 11.4824 15.3792 11.4975C15.3813 11.5119 15.3849 11.5324 15.39 11.5592C15.3984 11.6031 15.4026 11.6336 15.4026 11.6505C15.4026 11.677 15.4059 11.7132 15.4124 11.7591C15.4169 11.791 15.4192 11.8132 15.4192 11.8255L15.4192 12.1756C15.4192 12.1879 15.4169 12.2101 15.4124 12.242C15.4059 12.2879 15.4026 12.3241 15.4026 12.3506C15.4026 12.3675 15.3984 12.398 15.39 12.4419C15.3849 12.4687 15.3813 12.4893 15.3792 12.5036C15.3769 12.5187 15.374 12.541 15.3703 12.5705C15.3646 12.6169 15.3596 12.6505 15.3555 12.6713C15.351 12.6936 15.3427 12.7275 15.3306 12.7729C15.3238 12.7981 15.3187 12.8174 15.3154 12.8308C15.312 12.8445 15.3073 12.8643 15.3012 12.8902C15.2907 12.9355 15.2822 12.9689 15.2757 12.9904C15.2682 13.015 15.255 13.0531 15.2361 13.1048C15.2288 13.1249 15.2233 13.1399 15.2197 13.15C15.2144 13.1649 15.2069 13.1868 15.1974 13.2157C15.1831 13.2593 15.1719 13.2907 15.1639 13.3099C15.1553 13.3307 15.1403 13.3628 15.1189 13.4062C15.1069 13.4304 15.0979 13.4488 15.0919 13.4615C15.0861 13.4738 15.0778 13.4919 15.0669 13.5159C15.0466 13.5606 15.031 13.593 15.0202 13.6132C15.0106 13.6313 14.9937 13.6593 14.9694 13.6972C14.9528 13.7232 14.9404 13.7431 14.9322 13.7569C14.9273 13.7651 14.9199 13.7775 14.9101 13.794C14.8812 13.8428 14.8593 13.8783 14.8444 13.9006C14.8149 13.9447 14.783 13.99 14.7486 14.0363L14.7406 14.0471C14.6981 14.1046 14.6661 14.1463 14.6448 14.1722C14.6195 14.2029 14.5822 14.2455 14.5329 14.2999C14.5308 14.3023 14.5267 14.3068 14.5208 14.3133C14.4775 14.3612 14.4443 14.3967 14.4213 14.4196C14.3934 14.4475 14.3507 14.4875 14.2933 14.5395C14.2776 14.5537 14.2523 14.5745 14.2174 14.6018C14.1947 14.6195 14.1774 14.6333 14.1655 14.6431C14.1562 14.6506 14.1428 14.6618 14.1251 14.6767C14.0867 14.7089 14.0576 14.7323 14.0379 14.7469C13.9916 14.7812 13.9464 14.8131 13.9023 14.8426C13.8913 14.85 13.8749 14.8612 13.853 14.8763C13.8099 14.9059 13.7784 14.9267 13.7585 14.9387C13.7282 14.9569 13.6818 14.9827 13.6193 15.016L13.6171 15.0172L13.6149 15.0184C13.5947 15.0292 13.5624 15.0447 13.5179 15.0649C13.4937 15.0758 13.4754 15.0842 13.4631 15.0901C13.4504 15.0961 13.4318 15.1051 13.4075 15.1172C13.3642 15.1385 13.3322 15.1535 13.3115 15.1621C13.3058 15.1644 13.297 15.1681 13.2851 15.1731C13.2246 15.1983 13.1801 15.216 13.1516 15.2261C13.1312 15.2334 13.0987 15.2434 13.0541 15.2559C13.0268 15.2636 13.006 15.2695 12.9919 15.2738C12.9797 15.2775 12.9619 15.2831 12.9385 15.2905C12.8908 15.3056 12.8554 15.3161 12.8323 15.3219C12.8124 15.3269 12.7796 15.3333 12.7339 15.3411C12.7032 15.3463 12.6801 15.3505 12.6645 15.3536C12.6547 15.3555 12.6401 15.3585 12.6208 15.3625C12.5644 15.374 12.523 15.3818 12.4967 15.3857L12.4864 15.3872C12.4259 15.3962 12.3811 15.4007 12.352 15.4007C12.3255 15.4007 12.2893 15.404 12.2434 15.4105C12.2115 15.4151 12.1893 15.4174 12.177 15.4174C12.1539 15.4174 12.1212 15.4189 12.0788 15.4219C12.0435 15.4244 12.0178 15.4257 12.0019 15.4257C11.986 15.4257 11.9604 15.4244 11.9251 15.4219C11.8826 15.4189 11.8499 15.4174 11.8269 15.4174C11.8145 15.4174 11.7924 15.4151 11.7604 15.4105C11.7145 15.404 11.6783 15.4007 11.6519 15.4007C11.6175 15.4007 11.5665 15.3957 11.4988 15.3857C11.4725 15.3818 11.4311 15.374 11.3747 15.3625C11.3553 15.3585 11.3408 15.3555 11.3311 15.3536C11.3154 15.3505 11.2923 15.3463 11.2616 15.3411C11.216 15.3333 11.1832 15.3269 11.1632 15.3219C11.1401 15.3161 11.1047 15.3056 11.057 15.2905C11.0336 15.2831 11.0158 15.2775 11.0036 15.2738C10.9895 15.2695 10.9687 15.2636 10.9414 15.2559C10.8968 15.2434 10.8643 15.2335 10.8439 15.2262C10.8242 15.2191 10.7942 15.2067 10.754 15.1888C10.7273 15.177 10.7068 15.1681 10.6924 15.1621C10.6515 15.1452 10.5981 15.1212 10.5325 15.0901C10.4782 15.0644 10.4304 15.0405 10.389 15.0184C10.3753 15.0111 10.3548 15.0005 10.3275 14.9868C10.2852 14.9655 10.255 14.9495 10.237 14.9387C10.2171 14.9268 10.1857 14.906 10.1428 14.8764C10.1208 14.8613 10.1043 14.85 10.0932 14.8426C10.0489 14.813 10.0037 14.7811 9.95756 14.7469C9.93788 14.7323 9.90885 14.7089 9.87045 14.6767C9.85277 14.6619 9.83929 14.6507 9.83002 14.6431C9.81814 14.6333 9.80083 14.6195 9.77811 14.6018C9.74319 14.5745 9.71789 14.5537 9.70221 14.5395C9.68535 14.5242 9.65971 14.4988 9.62528 14.4633C9.60652 14.4439 9.59227 14.4293 9.58253 14.4196C9.57278 14.4099 9.55822 14.3956 9.53885 14.3768C9.50327 14.3424 9.47784 14.3168 9.46256 14.2999C9.41338 14.2456 9.37609 14.2031 9.35071 14.1722C9.32934 14.1461 9.29726 14.1042 9.25448 14.0465L9.24686 14.0363C9.2125 13.99 9.18058 13.9447 9.15109 13.9006C9.13626 13.8785 9.11449 13.8431 9.08578 13.7946C9.07586 13.7778 9.06839 13.7652 9.06335 13.7568C9.04525 13.7267 9.01961 13.6806 8.98644 13.6185L8.98503 13.6159L8.98363 13.6132C8.97849 13.6036 8.9707 13.5892 8.96025 13.5701C8.93343 13.5208 8.91455 13.4846 8.90361 13.4615C8.89292 13.4389 8.87803 13.4039 8.85894 13.3566C8.85066 13.3361 8.84432 13.3206 8.83991 13.3099C8.83747 13.304 8.83377 13.2951 8.82883 13.2832C8.80367 13.2228 8.78602 13.1784 8.77588 13.1501C8.77224 13.14 8.76676 13.1249 8.75942 13.1048C8.7405 13.0531 8.72731 13.015 8.71984 12.9904C8.71332 12.9689 8.7048 12.9355 8.69428 12.8902C8.68826 12.8643 8.68354 12.8445 8.68013 12.8308C8.67678 12.8175 8.67172 12.7981 8.66495 12.7728C8.65279 12.7275 8.6445 12.6936 8.64007 12.6713C8.63593 12.6505 8.63097 12.6169 8.6252 12.5705C8.62152 12.541 8.61857 12.5187 8.61633 12.5036C8.6142 12.4893 8.61058 12.4687 8.60548 12.4419C8.59712 12.398 8.59294 12.3675 8.59294 12.3506C8.59294 12.3277 8.59142 12.295 8.5884 12.2525C8.58587 12.2171 8.58461 12.1915 8.58461 12.1756C8.58461 12.1525 8.58309 12.1198 8.58006 12.0774C8.57753 12.0421 8.57627 12.0165 8.57627 12.0006C8.57627 11.9846 8.57753 11.959 8.58006 11.9237C8.58309 11.8813 8.58461 11.8486 8.58461 11.8255C8.58461 11.8096 8.58587 11.784 8.5884 11.7486C8.59142 11.7062 8.59294 11.6735 8.59294 11.6505C8.59294 11.6336 8.59712 11.6031 8.60548 11.5592C8.61058 11.5324 8.6142 11.5119 8.61633 11.4975C8.61857 11.4824 8.62152 11.4601 8.6252 11.4306C8.63097 11.3842 8.63593 11.3506 8.64008 11.3297C8.6445 11.3075 8.65279 11.2736 8.66495 11.2283C8.67172 11.203 8.67678 11.1837 8.68013 11.1703C8.68354 11.1567 8.68826 11.1369 8.69428 11.1109C8.7048 11.0656 8.71331 11.0322 8.71983 11.0107C8.72731 10.9861 8.7405 10.948 8.75942 10.8963C8.76676 10.8763 8.77224 10.8612 8.77587 10.851C8.78602 10.8227 8.80367 10.7783 8.82883 10.7179C8.83377 10.706 8.83747 10.6971 8.83991 10.6912C8.84432 10.6806 8.85066 10.665 8.85894 10.6445C8.87803 10.5972 8.89292 10.5622 8.90361 10.5396C8.91455 10.5165 8.93343 10.4803 8.96025 10.4311C8.9707 10.4119 8.97849 10.3975 8.98363 10.3879L8.98503 10.3852L8.98644 10.3826C9.01961 10.3206 9.04525 10.2745 9.06335 10.2443C9.06841 10.2358 9.07589 10.2232 9.08577 10.2065C9.11449 10.158 9.13626 10.1227 9.1511 10.1005C9.18058 10.0563 9.21251 10.0111 9.24688 9.96482L9.25447 9.95458C9.29726 9.89686 9.32933 9.85499 9.35068 9.82898C9.37609 9.79803 9.41339 9.75543 9.46259 9.70118C9.47785 9.68432 9.50327 9.65868 9.53885 9.62426C9.55822 9.6055 9.57278 9.59125 9.58253 9.58151C9.59225 9.57178 9.6065 9.55722 9.62528 9.53784C9.65971 9.50227 9.68536 9.47685 9.70223 9.46157C9.71793 9.44733 9.74328 9.42653 9.77828 9.39917C9.80091 9.38147 9.81816 9.36776 9.83002 9.35804C9.83923 9.35048 9.8526 9.33935 9.87014 9.32465C9.90867 9.29235 9.93781 9.26888 9.95757 9.25423C10.0037 9.22 10.0489 9.18808 10.0932 9.15848C10.1043 9.15108 10.1208 9.13981 10.1428 9.12467C10.1857 9.0951 10.2171 9.07435 10.237 9.06243C10.255 9.05163 10.2852 9.03559 10.3275 9.0143C10.3548 9.00055 10.3753 8.99002 10.389 8.9827C10.4304 8.96054 10.4783 8.93665 10.5324 8.91102C10.5981 8.87995 10.6514 8.85594 10.6924 8.839C10.7068 8.83304 10.7273 8.82414 10.754 8.81231C10.7942 8.79447 10.8242 8.78202 10.8439 8.77497C10.8643 8.76766 10.8968 8.75775 10.9414 8.74523C10.9687 8.73755 10.9895 8.73157 11.0036 8.72727C11.0158 8.72357 11.0336 8.71801 11.057 8.71059C11.1047 8.69547 11.1401 8.68502 11.1632 8.67924C11.1832 8.67424 11.216 8.66784 11.2616 8.66004C11.2923 8.6548 11.3154 8.65062 11.3311 8.64751C11.3407 8.64559 11.3553 8.64264 11.3747 8.63864C11.4312 8.62707 11.4725 8.61934 11.4988 8.61544C11.5132 8.61331 11.5337 8.6097 11.5605 8.6046C11.6044 8.59624 11.6349 8.59206 11.6519 8.59206C11.6748 8.59206 11.7075 8.59054 11.7499 8.58752C11.7853 8.58499 11.811 8.58373 11.8269 8.58373C11.8499 8.58373 11.8826 8.58221 11.9251 8.57918ZM14.1768 10.1356C14.1688 10.1344 14.1606 10.1338 14.1523 10.1338C14.1608 10.1338 14.1689 10.1343 14.1766 10.1353C14.1987 10.1382 14.2179 10.1453 14.234 10.1565C14.2161 10.1457 14.197 10.1387 14.1768 10.1356ZM14.264 10.187C14.2463 10.1793 14.2257 10.1755 14.2023 10.1755C14.2242 10.1755 14.2449 10.1796 14.2645 10.1877L14.264 10.187ZM14.2645 10.1878C14.2686 10.1895 14.2727 10.1913 14.2766 10.1934C14.2726 10.191 14.2684 10.1889 14.2641 10.187L14.2645 10.1878ZM14.2525 10.1694C14.2514 10.1685 14.2502 10.1676 14.249 10.1667C14.2297 10.1436 14.2075 10.1275 14.1823 10.1182C14.1729 10.1126 14.1635 10.1079 14.1541 10.1041C14.1287 10.0751 14.0979 10.0578 14.0617 10.0524C14.0598 10.0517 14.0578 10.0511 14.0559 10.0506C14.0366 10.0391 14.017 10.0316 13.9969 10.028C13.9944 10.0271 13.9918 10.0263 13.9893 10.0256C13.97 10.0141 13.9503 10.0065 13.9301 10.0029C13.9185 9.99901 13.9072 9.99617 13.8962 9.99439C13.8751 9.98733 13.8549 9.9838 13.8356 9.9838L13.8224 9.9838C13.8039 9.97824 13.7861 9.97547 13.7689 9.97547L13.6606 9.97547C13.6433 9.97547 13.6255 9.97824 13.607 9.9838L13.5939 9.9838C13.5746 9.9838 13.5544 9.98732 13.5333 9.99438C13.5224 9.99613 13.5113 9.99891 13.4999 10.0027C13.4898 10.0043 13.479 10.0066 13.4674 10.0098C13.4504 10.0116 13.4338 10.016 13.4177 10.023C13.4014 10.0276 13.3854 10.0348 13.3697 10.0446C13.3584 10.0489 13.3473 10.0545 13.3363 10.0613C13.325 10.0656 13.3139 10.0712 13.3029 10.0781C13.2922 10.0821 13.2817 10.0874 13.2712 10.0937C13.2557 10.0995 13.2411 10.1079 13.2274 10.1188C13.2119 10.1273 13.1978 10.1388 13.1849 10.1532C13.1627 10.1622 13.1428 10.1767 13.1252 10.1967C13.1154 10.2035 13.106 10.2115 13.0969 10.2206C13.0879 10.2296 13.0801 10.2389 13.0734 10.2486C13.0585 10.2618 13.0466 10.2762 13.0377 10.292C13.0322 10.299 13.0273 10.3062 13.023 10.3136L11.9213 11.7018L11.1547 10.9505L11.1496 10.9505C11.1375 10.9376 11.1243 10.9271 11.1101 10.9192C11.103 10.9136 11.0957 10.9086 11.0882 10.9043C11.0775 10.8948 11.0665 10.8867 11.0552 10.8801C11.0404 10.8677 11.0245 10.8584 11.0076 10.852C10.9972 10.8457 10.9866 10.8405 10.976 10.8364C10.9602 10.8266 10.9442 10.8194 10.9279 10.8148C10.9237 10.813 10.9195 10.8113 10.9152 10.8098C10.8954 10.7978 10.8752 10.79 10.8546 10.7863C10.8399 10.7813 10.8256 10.7781 10.8118 10.7766C10.8001 10.7734 10.7891 10.771 10.7789 10.7694C10.7676 10.7656 10.7564 10.7628 10.7456 10.7611C10.7246 10.754 10.7044 10.7505 10.685 10.7505L10.6719 10.7505C10.6534 10.7449 10.6356 10.7422 10.6183 10.7422L10.5433 10.7422C10.5261 10.7422 10.5083 10.7449 10.4898 10.7505L10.4766 10.7505C10.4573 10.7505 10.4371 10.754 10.4161 10.7611C10.4052 10.7628 10.3941 10.7656 10.3827 10.7694C10.3717 10.7712 10.3604 10.7741 10.3488 10.778C10.3286 10.7816 10.3089 10.7891 10.2896 10.8006C10.2871 10.8013 10.2846 10.8021 10.282 10.803C10.2606 10.8069 10.2396 10.8152 10.219 10.828C10.2084 10.8321 10.1979 10.8373 10.1874 10.8436C10.1715 10.8496 10.1566 10.8582 10.1425 10.8696C10.1383 10.8717 10.1342 10.874 10.13 10.8765C10.1066 10.8851 10.0858 10.8995 10.0676 10.9199C10.0455 10.9289 10.0256 10.9434 10.0079 10.9634C9.99811 10.9702 9.98863 10.9783 9.9795 10.9874C9.97058 10.9964 9.96278 11.0057 9.95612 11.0153C9.94118 11.0285 9.92931 11.043 9.92051 11.0586C9.91488 11.0657 9.90992 11.073 9.90562 11.0805C9.896 11.0913 9.8879 11.1023 9.88132 11.1137C9.8698 11.1275 9.86089 11.1421 9.8546 11.1576C9.82594 11.1828 9.80889 11.2135 9.80346 11.2494C9.80282 11.2514 9.80222 11.2533 9.80165 11.2552C9.79587 11.2649 9.79109 11.2748 9.78731 11.2847C9.77451 11.3052 9.76619 11.3262 9.76235 11.3476C9.75844 11.3593 9.75559 11.3706 9.75381 11.3816C9.75 11.393 9.74722 11.4041 9.74546 11.4149C9.7384 11.436 9.73487 11.4562 9.73487 11.4755L9.73487 11.4944C9.72931 11.5155 9.72654 11.5343 9.72654 11.5505L9.72654 11.6839C9.72654 11.7011 9.72966 11.7211 9.7359 11.7439C9.73741 11.7576 9.74059 11.7716 9.74545 11.7861C9.74721 11.797 9.74999 11.8081 9.7538 11.8195C9.75556 11.8303 9.75834 11.8414 9.76215 11.8528C9.76393 11.8638 9.76678 11.8752 9.77069 11.8868C9.77429 11.9069 9.78183 11.9266 9.79331 11.9459C9.79393 11.948 9.7946 11.9501 9.7953 11.9522C9.79966 11.9794 9.81089 12.0042 9.82899 12.0265C9.83169 12.0318 9.83467 12.037 9.83794 12.0422C9.8455 12.0607 9.85685 12.0784 9.87197 12.0953C9.87624 12.1028 9.88118 12.11 9.88679 12.1171C9.89655 12.1348 9.91017 12.1508 9.92765 12.1651C9.93361 12.1724 9.94034 12.1793 9.94785 12.1859C9.95467 12.1957 9.96266 12.2052 9.97183 12.2143C9.98281 12.2252 9.99427 12.2345 10.0062 12.242L11.3908 13.6018C11.4029 13.6181 11.4159 13.6318 11.43 13.6427C11.4492 13.6658 11.4715 13.682 11.4969 13.6913C11.5003 13.6934 11.5038 13.6953 11.5072 13.6971C11.524 13.7122 11.5417 13.7236 11.5603 13.7311C11.5715 13.7381 11.5828 13.7438 11.5942 13.7482C11.6052 13.7551 11.6164 13.7606 11.6277 13.7649C11.6386 13.7718 11.6498 13.7773 11.6611 13.7816C11.6814 13.7944 11.7024 13.8027 11.724 13.8065C11.7355 13.8104 11.7468 13.8133 11.7579 13.8151C11.7724 13.82 11.7865 13.8231 11.8003 13.8246C11.8118 13.8278 11.8228 13.8302 11.833 13.8318C11.8474 13.8367 11.8615 13.8398 11.8753 13.8413C11.8977 13.8475 11.9177 13.8506 11.9352 13.8506L12.0436 13.8506C12.0611 13.8506 12.079 13.8478 12.0973 13.8423L12.1186 13.8423C12.1382 13.8423 12.1584 13.8388 12.1792 13.8318C12.1895 13.8302 12.2004 13.8278 12.2121 13.8246C12.2358 13.8219 12.2588 13.8138 12.2809 13.8005C12.2834 13.7998 12.2858 13.799 12.2882 13.7982C12.3098 13.7944 12.3308 13.7861 12.3512 13.7733C12.3625 13.769 12.3736 13.7634 12.3846 13.7565C12.3959 13.7522 12.407 13.7467 12.418 13.7398C12.4294 13.7354 12.4407 13.7297 12.4519 13.7227C12.4703 13.7152 12.4878 13.7041 12.5044 13.6892C12.5207 13.6799 12.5356 13.6672 12.5489 13.6511C12.5606 13.642 12.5715 13.6311 12.5817 13.6182C12.5927 13.6106 12.6021 13.6033 12.6099 13.5962C12.627 13.5838 12.6411 13.5703 12.6524 13.5558C12.6686 13.5423 12.6814 13.5274 12.6908 13.5109L14.419 11.3362L14.419 11.3326C14.4269 11.3233 14.4337 11.3137 14.4394 11.3039C14.4518 11.2891 14.4612 11.2733 14.4675 11.2564C14.4738 11.246 14.479 11.2354 14.4831 11.2248C14.496 11.2042 14.5043 11.1832 14.5082 11.1618C14.5091 11.1593 14.5099 11.1567 14.5106 11.1542C14.5221 11.1349 14.5296 11.1152 14.5332 11.0951C14.5371 11.0835 14.54 11.0721 14.5418 11.0611C14.5456 11.0497 14.5484 11.0386 14.5501 11.0278C14.5572 11.0067 14.5607 10.9865 14.5607 10.9672L14.5607 10.954C14.5662 10.9356 14.569 10.9177 14.569 10.9005L14.569 10.7588C14.569 10.7395 14.5655 10.7193 14.5585 10.6983C14.5567 10.6874 14.5539 10.6763 14.5501 10.6649C14.5484 10.6541 14.5456 10.6429 14.5418 10.6315C14.54 10.6207 14.5372 10.6096 14.5334 10.5982C14.5316 10.5872 14.5288 10.5759 14.5249 10.5642C14.521 10.5428 14.5127 10.5218 14.4999 10.5013C14.4956 10.49 14.4901 10.4789 14.4832 10.4679C14.4791 10.4573 14.4739 10.4467 14.4675 10.4363C14.4616 10.4204 14.4529 10.4054 14.4416 10.3914C14.4393 10.3868 14.4367 10.3822 14.434 10.3777C14.4276 10.361 14.4182 10.3452 14.4059 10.3303C14.3994 10.3191 14.3913 10.3081 14.3818 10.2974C14.3732 10.2828 14.3618 10.2692 14.3477 10.2568C14.3409 10.2471 14.3329 10.2376 14.3238 10.2285C14.3148 10.2195 14.3055 10.2117 14.2959 10.205C14.2827 10.1901 14.2682 10.1782 14.2525 10.1694ZM14.3597 10.2767C14.3714 10.2996 14.3773 10.3242 14.3773 10.3505C14.3773 10.3216 14.3714 10.297 14.3597 10.2767ZM14.4147 10.3478C14.418 10.3554 14.4206 10.3632 14.4227 10.3711L14.4231 10.3714C14.421 10.3631 14.4182 10.3552 14.4147 10.3478ZM14.4231 10.3715L14.4227 10.3711C14.4258 10.3834 14.4273 10.3959 14.4273 10.4088C14.4273 10.3955 14.4259 10.3831 14.4231 10.3715ZM14.4412 10.4031C14.4431 10.413 14.444 10.4233 14.444 10.4338C14.444 10.4228 14.4431 10.4125 14.4412 10.4031ZM14.4513 10.4137C14.4576 10.4313 14.4607 10.4492 14.4607 10.4671C14.4607 10.4475 14.4576 10.4297 14.4513 10.4137ZM14.4889 10.4856C14.4923 10.4988 14.494 10.5121 14.494 10.5255C14.494 10.5109 14.4923 10.4976 14.4889 10.4856ZM14.5062 10.5213C14.5092 10.5337 14.5107 10.5462 14.5107 10.5588C14.5107 10.5452 14.5092 10.5327 14.5062 10.5213ZM14.5167 11.1279C14.5182 11.1193 14.519 11.1102 14.519 11.1005C14.519 11.1094 14.5182 11.1185 14.5167 11.1279ZM14.4886 11.2079C14.4922 11.1957 14.494 11.1821 14.494 11.1672C14.494 11.1809 14.4922 11.1945 14.4886 11.2079ZM14.4499 11.2823C14.4571 11.2655 14.4607 11.2466 14.4607 11.2255C14.4607 11.2452 14.4571 11.2642 14.4499 11.2823ZM14.4232 11.321L14.4231 11.3211C14.4315 11.3016 14.4357 11.2809 14.4357 11.2589C14.4357 11.2829 14.4315 11.3036 14.4232 11.321ZM14.4231 11.3212L14.4231 11.3211L14.4229 11.3217L14.4231 11.3212ZM12.6722 13.5229L12.6727 13.5232C12.6703 13.5283 12.6676 13.5331 12.6646 13.5378C12.6675 13.5329 12.67 13.528 12.6722 13.5229ZM12.5289 13.6644C12.5057 13.6775 12.4801 13.684 12.452 13.684C12.4823 13.684 12.508 13.6775 12.5289 13.6644ZM12.475 13.702C12.4601 13.7067 12.4441 13.709 12.427 13.709C12.4448 13.709 12.4608 13.7067 12.475 13.702ZM12.4323 13.7292C12.4198 13.7324 12.407 13.734 12.3937 13.734C12.4078 13.734 12.4206 13.7324 12.4323 13.7292ZM12.3981 13.746C12.3856 13.7491 12.373 13.7506 12.3603 13.7506C12.374 13.7506 12.3866 13.7491 12.3981 13.746ZM12.3618 13.7634C12.3503 13.766 12.3387 13.7673 12.327 13.7673C12.3395 13.7673 12.3511 13.766 12.3618 13.7634ZM12.3255 13.7808C12.315 13.7829 12.3044 13.784 12.2936 13.784C12.305 13.784 12.3156 13.7829 12.3255 13.7808ZM12.2466 13.8078C12.2399 13.8086 12.2334 13.809 12.227 13.809C12.2338 13.809 12.2403 13.8086 12.2466 13.8078ZM11.6881 13.7894C11.6975 13.7913 11.7077 13.7923 11.7185 13.7923C11.7083 13.7923 11.6981 13.7913 11.6881 13.7894ZM11.6517 13.772C11.662 13.7744 11.6732 13.7756 11.6852 13.7756C11.6739 13.7756 11.6627 13.7744 11.6517 13.772ZM11.6152 13.7546C11.6264 13.7575 11.6386 13.759 11.6519 13.759C11.6395 13.759 11.6273 13.7575 11.6152 13.7546ZM11.5812 13.7378C11.5926 13.7408 11.605 13.7423 11.6185 13.7423C11.6057 13.7423 11.5933 13.7408 11.5812 13.7378ZM11.5207 13.7036C11.5387 13.7127 11.5602 13.7173 11.5852 13.7173C11.5634 13.7173 11.5419 13.7127 11.5207 13.7036ZM11.4483 13.655C11.4695 13.6687 11.4957 13.6756 11.5268 13.6756C11.4982 13.6756 11.472 13.6687 11.4483 13.655ZM9.93579 12.1659C9.92409 12.143 9.91824 12.1185 9.91824 12.0922C9.91824 12.121 9.92409 12.1456 9.93579 12.1659ZM9.9162 12.1493C9.90089 12.1251 9.89324 12.0977 9.89324 12.0672C9.89324 12.1001 9.90089 12.1275 9.9162 12.1493ZM9.86377 12.0787C9.85563 12.0595 9.85156 12.039 9.85156 12.0172C9.85156 12.0409 9.85563 12.0614 9.86377 12.0787ZM9.83253 12.0267C9.82855 12.0129 9.82656 11.9986 9.82656 11.9839C9.82656 11.9997 9.82855 12.014 9.83253 12.0267ZM9.81857 12.002C9.81278 11.9851 9.80989 11.9679 9.80989 11.9505C9.80989 11.9694 9.81278 11.9866 9.81857 12.002ZM9.78729 11.9202C9.78568 11.9106 9.78488 11.9013 9.78488 11.8922C9.78488 11.9021 9.78568 11.9115 9.78729 11.9202ZM9.78084 11.3056C9.77798 11.3168 9.77655 11.329 9.77655 11.3422C9.77655 11.3299 9.77798 11.3177 9.78084 11.3056ZM9.7958 11.2799C9.79408 11.2889 9.79322 11.2986 9.79322 11.3089C9.79322 11.2995 9.79408 11.2898 9.7958 11.2799ZM9.84646 11.1731C9.83319 11.1941 9.82656 11.2199 9.82656 11.2505C9.82656 11.2243 9.83319 11.1985 9.84646 11.1731ZM9.84553 11.1895C9.84399 11.1981 9.84323 11.2073 9.84323 11.2172C9.84323 11.2077 9.84399 11.1985 9.84553 11.1895ZM9.86537 11.1504C9.86172 11.1632 9.8599 11.1771 9.8599 11.1922C9.8599 11.1777 9.86185 11.1637 9.86576 11.15L9.86537 11.1504ZM9.88647 11.1345C9.88542 11.1422 9.8849 11.1503 9.8849 11.1588C9.8849 11.1505 9.8855 11.1424 9.88672 11.1344C9.88871 11.1212 9.89235 11.1086 9.89764 11.0964L9.89734 11.0967C9.89198 11.1079 9.88836 11.1205 9.88647 11.1345ZM9.87191 11.1326C9.86976 11.1377 9.8679 11.1428 9.86634 11.148L9.86597 11.1483C9.86761 11.1429 9.86959 11.1376 9.87191 11.1326ZM9.89736 11.0966L9.89766 11.0964C9.8981 11.0953 9.89856 11.0943 9.89903 11.0933C9.89845 11.0944 9.8979 11.0955 9.89736 11.0966ZM9.94452 11.0345C9.93256 11.0549 9.92658 11.0797 9.92658 11.1088C9.92658 11.0824 9.93256 11.0576 9.94452 11.0345ZM10.028 10.9513C10.0354 10.9476 10.0428 10.9445 10.0505 10.9419L10.051 10.9412C10.0428 10.9439 10.0352 10.9472 10.028 10.9513ZM10.0513 10.9411L10.0508 10.9418C10.0669 10.9365 10.0839 10.9338 10.1016 10.9338C10.0831 10.9338 10.0663 10.9363 10.0513 10.9411ZM10.1 10.9109C10.1086 10.9095 10.1174 10.9088 10.1266 10.9088C10.1171 10.9088 10.1082 10.9095 10.1 10.9109ZM10.0811 10.9129C10.1073 10.8991 10.1335 10.8922 10.1599 10.8922C10.1286 10.8922 10.1024 10.8991 10.0811 10.9129ZM10.1651 10.8598C10.1827 10.8536 10.2004 10.8505 10.2183 10.8505C10.1987 10.8505 10.181 10.8536 10.1651 10.8598ZM10.2371 10.8222C10.2501 10.8189 10.2633 10.8172 10.2766 10.8172C10.2622 10.8172 10.249 10.8189 10.2371 10.8222ZM10.3168 10.7943C10.3259 10.7929 10.3347 10.7922 10.3433 10.7922C10.3339 10.7922 10.3251 10.7929 10.3168 10.7943ZM10.9592 10.8309C10.9469 10.8273 10.9334 10.8255 10.9184 10.8255C10.9321 10.8255 10.9457 10.8273 10.9592 10.8309ZM11.0337 10.8697C11.0169 10.8625 10.9979 10.8588 10.9767 10.8588C10.9965 10.8588 11.0155 10.8625 11.0337 10.8697ZM11.0723 10.8963L11.0723 10.8964C11.0529 10.888 11.0321 10.8838 11.0101 10.8838C11.0341 10.8838 11.0548 10.888 11.0723 10.8963ZM11.0724 10.8964L11.0724 10.8964L11.0731 10.8967L11.0724 10.8964ZM11.145 10.9505C11.1228 10.9338 11.0945 10.9255 11.0601 10.9255C11.0896 10.9255 11.1176 10.9338 11.1441 10.9505L11.145 10.9505ZM13.0472 10.3088L13.0468 10.3086C13.0497 10.2935 13.0547 10.2799 13.0618 10.2678C13.055 10.2809 13.0501 10.2946 13.0472 10.3088ZM13.1451 10.1848C13.1524 10.181 13.16 10.1778 13.1677 10.1752L13.1682 10.1745C13.1599 10.1772 13.1522 10.1806 13.1451 10.1848ZM13.1686 10.1744L13.168 10.1751C13.1842 10.1698 13.2011 10.1671 13.2188 10.1671C13.2003 10.1671 13.1835 10.1696 13.1686 10.1744ZM13.2158 10.1444C13.2249 10.1429 13.2342 10.1421 13.2438 10.1421C13.2338 10.1421 13.2245 10.1429 13.2158 10.1444ZM13.1983 10.1463C13.2245 10.1324 13.2508 10.1255 13.2772 10.1255C13.2459 10.1255 13.2196 10.1324 13.1983 10.1463ZM13.3023 10.0856C13.3104 10.0844 13.3187 10.0838 13.3272 10.0838C13.3184 10.0838 13.3101 10.0844 13.3023 10.0856ZM13.3185 10.0729C13.3324 10.0691 13.3464 10.0671 13.3605 10.0671C13.345 10.0671 13.331 10.0691 13.3185 10.0729ZM13.3539 10.0556C13.3671 10.0522 13.3804 10.0505 13.3938 10.0505C13.3793 10.0505 13.366 10.0522 13.3539 10.0556ZM13.3897 10.0383C13.402 10.0353 13.4145 10.0338 13.4272 10.0338C13.4136 10.0338 13.4011 10.0353 13.3897 10.0383ZM13.5129 10.0011C13.5179 10.0007 13.5227 10.0005 13.5272 10.0005C13.5221 10.0005 13.5174 10.0007 13.5129 10.0011ZM13.9615 10.0192C13.9534 10.0178 13.9447 10.0171 13.9356 10.0171C13.944 10.0171 13.9526 10.0178 13.9615 10.0192ZM14.0312 10.0447C14.0222 10.043 14.0126 10.0421 14.0023 10.0421C14.0116 10.0421 14.0213 10.043 14.0312 10.0447ZM14.138 10.0954C14.117 10.0821 14.0912 10.0755 14.0606 10.0755C14.0868 10.0755 14.1126 10.0821 14.138 10.0954ZM14.1389 10.0988C14.1257 10.0944 14.1107 10.0921 14.094 10.0921C14.1091 10.0921 14.124 10.0944 14.1389 10.0988ZM14.1288 10.4322L14.129 10.4323C14.1295 10.4361 14.1302 10.4399 14.1311 10.4437L14.1307 10.4436C14.1299 10.4399 14.1293 10.4361 14.1288 10.4322ZM14.1288 10.4322C14.1278 10.4248 14.1273 10.417 14.1273 10.4088C14.1273 10.4168 14.1279 10.4246 14.129 10.4322L14.1288 10.4322ZM14.1119 10.4287L14.1105 10.4283C14.1082 10.4218 14.1064 10.4148 14.1051 10.4075L14.1057 10.4076C14.1072 10.4148 14.1093 10.4218 14.1119 10.4287ZM14.1056 10.4073C14.1128 10.4083 14.12 10.4088 14.1273 10.4088C14.1198 10.4088 14.1126 10.4084 14.1057 10.4076L14.1056 10.4073ZM14.105 10.4072L14.1051 10.4075C14.099 10.4068 14.0931 10.4058 14.0874 10.4044L14.087 10.4034C14.093 10.405 14.099 10.4063 14.105 10.4072ZM14.0829 10.3918C14.0865 10.392 14.0902 10.3921 14.094 10.3921C14.0903 10.3921 14.0866 10.392 14.0829 10.3917L14.0829 10.3918ZM14.0825 10.3917L14.0825 10.3918C14.0704 10.391 14.0593 10.3889 14.0493 10.3856C14.0603 10.3888 14.0714 10.3909 14.0825 10.3917ZM14.0067 10.3667C13.9876 10.3599 13.9704 10.3493 13.9549 10.3348C13.9416 10.3307 13.9285 10.3248 13.9156 10.3171C13.9131 10.3164 13.9106 10.3156 13.9081 10.3147C13.8878 10.3112 13.8681 10.3036 13.8488 10.2921C13.8465 10.2914 13.8442 10.2907 13.8419 10.2899C13.8332 10.2885 13.8244 10.2865 13.8155 10.2838L13.8023 10.2838C13.7851 10.2838 13.7673 10.281 13.7488 10.2755L13.6807 10.2755C13.6622 10.281 13.6444 10.2838 13.6272 10.2838L13.614 10.2838C13.605 10.2865 13.5962 10.2885 13.5876 10.2899C13.5731 10.2948 13.5591 10.2979 13.5454 10.2994C13.5382 10.3014 13.5313 10.3031 13.5247 10.3044C13.5216 10.3057 13.5184 10.3069 13.5153 10.308C13.505 10.3142 13.4947 10.3193 13.4842 10.3232C13.4732 10.33 13.4621 10.3356 13.4509 10.3398C13.4398 10.3467 13.4287 10.3522 13.4175 10.3565C13.4124 10.3596 13.4073 10.3625 13.4022 10.3651C13.4009 10.3661 13.3995 10.3672 13.3982 10.3682C13.3799 10.39 13.3588 10.4056 13.3351 10.415C13.328 10.4228 13.3204 10.4298 13.3125 10.4359C13.3174 10.4311 13.3216 10.4257 13.3253 10.4198C13.3246 10.4202 13.324 10.4206 13.3233 10.4209C13.3241 10.4204 13.3249 10.4199 13.3256 10.4193L13.3264 10.4181L13.324 10.4188C13.3235 10.4197 13.323 10.4205 13.3225 10.4213C13.3174 10.424 13.3124 10.4264 13.3073 10.4286C13.3082 10.4266 13.3091 10.4245 13.3098 10.4224L13.3089 10.4225C13.308 10.4247 13.3071 10.4269 13.3062 10.4291C13.3049 10.4297 13.3035 10.4302 13.3021 10.4307L13.3021 10.432C13.3033 10.4315 13.3045 10.431 13.3056 10.4305C13.3045 10.433 13.3034 10.4354 13.3021 10.4378L13.3021 10.4392C13.3038 10.4362 13.3053 10.4332 13.3067 10.43C13.3122 10.4276 13.3175 10.4247 13.3224 10.4215C13.3194 10.4265 13.3161 10.4313 13.3124 10.436C13.3091 10.4386 13.3056 10.441 13.3021 10.4433L13.3021 10.4444L13.3014 10.4453C13.3053 10.4426 13.3089 10.4395 13.3122 10.4362C13.3057 10.4446 13.2982 10.4525 13.2897 10.4601L11.9492 12.1493L11.0005 11.2194C10.9946 11.2153 10.9888 11.2107 10.9831 11.2056C10.9671 11.1964 10.9525 11.1839 10.9392 11.1682C10.9371 11.1666 10.9349 11.1649 10.9328 11.1631C10.9214 11.1566 10.9103 11.1486 10.8995 11.139C10.8916 11.1345 10.884 11.1294 10.8766 11.1234C10.8715 11.1208 10.8664 11.118 10.8614 11.1149C10.8509 11.1109 10.8406 11.1058 10.8304 11.0996C10.8261 11.0982 10.822 11.0966 10.8178 11.0948C10.8027 11.0906 10.7879 11.0842 10.7733 11.0755C10.771 11.0748 10.7687 11.0741 10.7664 11.0733C10.7562 11.0717 10.7452 11.0694 10.7335 11.0662C10.7198 11.0646 10.7058 11.0615 10.6913 11.0566C10.6827 11.0552 10.6739 11.0532 10.6649 11.0505L10.6517 11.0505C10.6345 11.0505 10.6166 11.0477 10.5982 11.0422L10.5635 11.0422C10.545 11.0477 10.5272 11.0505 10.51 11.0505L10.4968 11.0505C10.4878 11.0532 10.479 11.0552 10.4703 11.0566C10.459 11.0604 10.4479 11.0632 10.437 11.065C10.4347 11.0657 10.4324 11.0665 10.4301 11.0671C10.4108 11.0787 10.391 11.0862 10.3708 11.0898C10.3683 11.0906 10.3658 11.0914 10.3633 11.0921C10.3535 11.098 10.3436 11.1028 10.3336 11.1066C10.3286 11.1097 10.3236 11.1125 10.3185 11.1151C10.3054 11.1256 10.2916 11.1337 10.2769 11.1396C10.2596 11.159 10.2399 11.173 10.2179 11.1817C10.2106 11.1896 10.203 11.1967 10.1951 11.2028C10.1877 11.2123 10.1791 11.2212 10.1692 11.2296C10.1676 11.2318 10.1659 11.234 10.1641 11.2361C10.1576 11.2476 10.1495 11.2587 10.1399 11.2695C10.1355 11.2773 10.1304 11.2849 10.1245 11.2922C10.1224 11.2963 10.1202 11.3003 10.1178 11.3044C10.111 11.3235 10.1004 11.3408 10.0859 11.3563C10.0814 11.3708 10.0747 11.3851 10.066 11.3992C10.0622 11.4092 10.0574 11.4192 10.0515 11.429C10.0508 11.4313 10.0501 11.4336 10.0493 11.4359C10.0476 11.4467 10.0448 11.4579 10.041 11.4692C10.0396 11.4779 10.0376 11.4867 10.0349 11.4956L10.0349 11.5089C10.0349 11.5251 10.0321 11.5438 10.0265 11.565L10.0265 11.6694C10.0292 11.6797 10.0313 11.6894 10.0327 11.6985C10.0365 11.7098 10.0393 11.7209 10.041 11.7318C10.0448 11.7432 10.0476 11.7543 10.0493 11.7652C10.0531 11.7766 10.0559 11.7877 10.0576 11.7985C10.0584 11.8008 10.0592 11.8032 10.0598 11.8054C10.0704 11.8231 10.0776 11.8411 10.0814 11.8595C10.0894 11.8709 10.0957 11.8828 10.1004 11.8954C10.1026 11.8991 10.1047 11.9028 10.1067 11.9066C10.1163 11.9173 10.1244 11.9284 10.1309 11.9399C10.1326 11.942 10.1343 11.9441 10.1359 11.9463C10.145 11.9539 10.153 11.962 10.1599 11.9706C10.1712 11.98 10.1808 11.9901 10.1888 12.0008L11.6065 13.3931C11.6095 13.3961 11.6126 13.3993 11.6157 13.4028C11.6259 13.4101 11.6356 13.4188 11.6446 13.429C11.6625 13.4365 11.6796 13.4475 11.6958 13.4621C11.7002 13.4644 11.7045 13.4668 11.7087 13.4695C11.72 13.4738 11.7311 13.4793 11.7421 13.4861C11.7534 13.4904 11.7645 13.4959 11.7754 13.5027C11.7856 13.5066 11.7956 13.5114 11.8055 13.5173C11.8077 13.518 11.81 13.5187 11.8122 13.5195C11.8231 13.5212 11.8343 13.524 11.8456 13.5278C11.8558 13.5293 11.8667 13.5317 11.8783 13.5349C11.8922 13.5364 11.9063 13.5396 11.9207 13.5445C11.9299 13.5459 11.9396 13.5479 11.9498 13.5506L12.0233 13.5506C12.0416 13.5451 12.0594 13.5423 12.0769 13.5423L12.0983 13.5423C12.1104 13.5386 12.1222 13.5362 12.1339 13.5349C12.1366 13.5342 12.1392 13.5335 12.1419 13.5328C12.1605 13.5219 12.1797 13.5148 12.1995 13.5113C12.202 13.5105 12.2044 13.5097 12.2067 13.509C12.2166 13.5031 12.2266 13.4982 12.2368 13.4944C12.2477 13.4876 12.2588 13.4821 12.2701 13.4778C12.2811 13.471 12.2922 13.4655 12.3034 13.4612C12.3077 13.4585 12.3121 13.4561 12.3164 13.4538C12.3207 13.4499 12.325 13.4463 12.3294 13.443C12.3398 13.4303 12.3511 13.4196 12.3633 13.411C12.3674 13.4064 12.3716 13.4022 12.3757 13.3984C12.3841 13.3907 12.3952 13.3822 12.4091 13.3729C12.4097 13.3725 12.4102 13.3721 12.4107 13.3718C12.4113 13.3712 12.4119 13.3706 12.4126 13.3701C12.4223 13.3564 12.4345 13.3439 12.4494 13.3325L14.1398 11.2053C14.1445 11.1971 14.1501 11.1892 14.1564 11.1815C14.1629 11.1701 14.171 11.159 14.1805 11.1483C14.185 11.1404 14.1902 11.1327 14.1961 11.1253C14.1987 11.1203 14.2016 11.1152 14.2047 11.1101C14.2085 11.1002 14.2133 11.0903 14.2191 11.0805C14.2198 11.078 14.2206 11.0755 14.2214 11.073C14.225 11.0528 14.2326 11.033 14.2441 11.0137C14.2448 11.0114 14.2455 11.0091 14.2463 11.0068C14.248 10.996 14.2508 10.9848 14.2546 10.9735C14.256 10.9648 14.258 10.956 14.2607 10.9471L14.2607 10.9338C14.2607 10.9166 14.2635 10.8988 14.269 10.8803L14.269 10.779C14.2663 10.77 14.2643 10.7612 14.2629 10.7526C14.2591 10.7412 14.2563 10.7301 14.2546 10.7192C14.2508 10.7078 14.248 10.6967 14.2463 10.6859C14.2424 10.6745 14.2396 10.6633 14.2379 10.6525C14.2372 10.6502 14.2364 10.6479 14.2357 10.6456C14.2299 10.6358 14.2251 10.6259 14.2213 10.6158C14.2144 10.6048 14.2089 10.5937 14.2047 10.5825C14.2016 10.5775 14.1987 10.5724 14.1961 10.5674C14.1848 10.5533 14.1762 10.5383 14.1703 10.5224C14.1676 10.5178 14.165 10.5133 14.1627 10.5087C14.1569 10.5014 14.1518 10.4939 14.1475 10.4862C14.1435 10.4818 14.1398 10.4773 14.1364 10.4727C14.1256 10.4638 14.1163 10.4542 14.1084 10.444C14.0989 10.4367 14.09 10.4281 14.0816 10.4182C14.0807 10.4175 14.0797 10.4168 14.0788 10.416C14.0628 10.4074 14.0481 10.3955 14.0348 10.3806C14.0254 10.3768 14.016 10.3722 14.0067 10.3667ZM14.0489 10.3882C14.0542 10.3917 14.0599 10.3948 14.0659 10.3973L14.065 10.3959L14.066 10.3973C14.0724 10.4001 14.0792 10.4024 14.0864 10.4042L14.086 10.4032C14.079 10.4012 14.072 10.3988 14.065 10.3959C14.0596 10.3936 14.0542 10.3911 14.0489 10.3882ZM14.0984 10.4293C14.0972 10.4286 14.096 10.4279 14.0949 10.4272C14.0961 10.4281 14.0974 10.429 14.0987 10.4298L14.0984 10.4293ZM14.123 10.454C14.1251 10.4573 14.1274 10.4605 14.1298 10.4635C14.1279 10.4607 14.1262 10.4578 14.1245 10.4549L14.123 10.4541L14.123 10.454ZM14.1212 10.4492C14.1205 10.4486 14.1197 10.448 14.1189 10.4473C14.1173 10.4444 14.1158 10.4414 14.1144 10.4384L14.1162 10.4392C14.1177 10.4425 14.1194 10.4459 14.1212 10.4492ZM14.1356 10.4609C14.1371 10.465 14.1388 10.469 14.1407 10.4728C14.139 10.469 14.1374 10.4651 14.136 10.4611L14.1356 10.4609L14.1356 10.4609ZM14.1353 10.4589L14.1348 10.4586C14.1333 10.4541 14.132 10.4493 14.1309 10.4444L14.1313 10.4445C14.1324 10.4494 14.1337 10.4542 14.1353 10.4589ZM14.1471 10.4658C14.1484 10.4724 14.1502 10.4787 14.1525 10.4848L14.1526 10.4849C14.1505 10.4786 14.1487 10.4723 14.1474 10.4659L14.1471 10.4658L14.1471 10.4658ZM14.1472 10.4649L14.1469 10.4648C14.1458 10.4593 14.1451 10.4535 14.1446 10.4476L14.1446 10.4476C14.1451 10.4534 14.146 10.4592 14.1472 10.4649ZM14.1446 10.4472C14.1552 10.4494 14.1661 10.4505 14.1773 10.4505C14.1657 10.4505 14.1548 10.4495 14.1446 10.4476L14.1446 10.4472L14.1446 10.4472ZM14.1446 10.4472L14.1445 10.4471C14.1442 10.4428 14.144 10.4384 14.144 10.4338C14.144 10.4383 14.1442 10.4427 14.1446 10.4472ZM14.1445 10.4471C14.14 10.4462 14.1355 10.445 14.1311 10.4437L14.1313 10.4445C14.1356 10.4457 14.14 10.4468 14.1446 10.4476L14.1445 10.4471ZM14.1527 10.485L14.1525 10.4849C14.1529 10.486 14.1533 10.4871 14.1538 10.4882C14.1534 10.4871 14.153 10.486 14.1527 10.485ZM14.1816 10.5292L14.1819 10.5295C14.183 10.534 14.1843 10.5385 14.1858 10.543C14.1842 10.5386 14.1828 10.534 14.1816 10.5292ZM14.2129 10.5856L14.213 10.5858C14.2136 10.5894 14.2144 10.5929 14.2153 10.5965C14.2144 10.593 14.2136 10.5894 14.2129 10.5856ZM14.213 10.5856L14.2129 10.5855C14.2114 10.5771 14.2107 10.5682 14.2107 10.5588C14.2107 10.5678 14.2115 10.5768 14.213 10.5856ZM14.1991 10.5653C14.1957 10.5533 14.194 10.5401 14.194 10.5255C14.194 10.5389 14.1957 10.5522 14.1991 10.5653ZM14.1816 10.5292C14.1788 10.5177 14.1774 10.5053 14.1774 10.4921C14.1774 10.5047 14.1789 10.5172 14.1819 10.5295L14.1816 10.5292ZM14.1157 10.438C14.1206 10.4402 14.1256 10.442 14.1307 10.4436L14.1309 10.4444C14.1258 10.4429 14.1209 10.4412 14.1162 10.4392L14.1157 10.438ZM14.114 10.4373L14.1144 10.4384C14.1113 10.437 14.1084 10.4355 14.1055 10.4339L14.1045 10.4327C14.1076 10.4343 14.1108 10.4359 14.114 10.4373ZM14.1106 10.4286C14.1116 10.4315 14.1127 10.4344 14.114 10.4373L14.1157 10.438C14.1144 10.435 14.1131 10.432 14.112 10.4289L14.1106 10.4286L14.1106 10.4286ZM14.2296 10.6193C14.2281 10.6108 14.2274 10.6018 14.2274 10.5922C14.2274 10.601 14.2281 10.6101 14.2296 10.6193ZM14.2378 11.041C14.2364 11.0492 14.2357 11.058 14.2357 11.0672C14.2357 11.0587 14.2364 11.0499 14.2378 11.041ZM14.2133 11.1045L14.2129 11.107L14.2129 11.107L14.2133 11.1045ZM14.2129 11.1071L14.2128 11.1072C14.2114 11.1155 14.2107 11.1244 14.2107 11.1338C14.2107 11.1252 14.2114 11.1163 14.2129 11.1071ZM14.1861 11.149C14.1803 11.1644 14.1774 11.1816 14.1774 11.2005C14.1774 11.1831 14.1803 11.1659 14.1861 11.149ZM14.172 11.1659C14.1675 11.1759 14.1644 11.1871 14.1625 11.1992L14.1627 11.1994C14.1646 11.1878 14.1677 11.1766 14.172 11.1659ZM14.1994 11.1266C14.1958 11.1399 14.194 11.1535 14.194 11.1672C14.194 11.1523 14.1958 11.1387 14.1994 11.1266ZM12.4451 13.338C12.4398 13.3433 12.4352 13.3491 12.4311 13.3553L12.4315 13.355L12.4451 13.338ZM12.4315 13.3551L12.4311 13.3554L12.4304 13.3564L12.4315 13.3551ZM12.4104 13.3889C12.4068 13.3899 12.4033 13.391 12.3999 13.3922L12.3998 13.3923C12.4033 13.3911 12.4068 13.39 12.4104 13.3891L12.4104 13.3889ZM12.4164 13.3876L12.4165 13.3875C12.4275 13.3852 12.4393 13.384 12.452 13.384C12.4396 13.384 12.4277 13.3852 12.4164 13.3876ZM12.4104 13.4097C12.404 13.4102 12.3978 13.4111 12.3919 13.4123C12.3935 13.4071 12.3953 13.4021 12.3974 13.3972C12.3952 13.402 12.3933 13.407 12.3917 13.4123C12.3754 13.4156 12.3609 13.4215 12.3482 13.4298L12.3474 13.4309C12.3615 13.4226 12.3762 13.4166 12.3915 13.413C12.3895 13.4197 12.388 13.4267 12.387 13.4341C12.3652 13.4348 12.3463 13.4392 12.3302 13.4472C12.3488 13.4393 12.3677 13.4349 12.387 13.4341C12.3859 13.442 12.3854 13.4503 12.3854 13.459C12.3854 13.4504 12.386 13.4421 12.3871 13.4341L12.3937 13.434L12.3871 13.4341C12.3882 13.4268 12.3897 13.4198 12.3917 13.4129C12.3978 13.4115 12.4041 13.4105 12.4104 13.4098L12.4104 13.4097ZM12.4119 13.4097L12.4119 13.4095C12.4168 13.4092 12.4219 13.409 12.427 13.409C12.4219 13.409 12.4169 13.4092 12.4119 13.4097ZM12.3871 13.4341L12.387 13.4341L12.387 13.4341L12.3871 13.4341L12.3871 13.4341ZM12.342 13.4342C12.3437 13.4331 12.3455 13.432 12.3473 13.4309L12.348 13.4299C12.3459 13.4313 12.3439 13.4327 12.342 13.4342ZM12.3118 13.468C12.3049 13.4686 12.2984 13.4697 12.2922 13.4712C12.2987 13.4697 12.3052 13.4687 12.3118 13.468C12.3169 13.4675 12.3219 13.4673 12.327 13.4673C12.3218 13.4673 12.3167 13.4675 12.3118 13.468ZM12.3225 13.4552C12.335 13.4521 12.3476 13.4506 12.3603 13.4506C12.3466 13.4506 12.334 13.4521 12.3225 13.4552ZM12.3917 13.4129L12.3919 13.4123L12.3917 13.4123L12.3915 13.413L12.3917 13.4129ZM12.395 13.394C12.3965 13.3934 12.3981 13.3929 12.3996 13.3924L12.3996 13.3923C12.3981 13.3928 12.3965 13.3934 12.395 13.394ZM12.2383 13.5021C12.2453 13.5011 12.2526 13.5006 12.2603 13.5006C12.2531 13.5006 12.2458 13.5011 12.2383 13.5021ZM12.2619 13.4871C12.2718 13.485 12.2823 13.484 12.2936 13.484C12.2829 13.484 12.2724 13.485 12.2619 13.4871ZM12.1722 13.527C12.179 13.5261 12.1861 13.5256 12.1936 13.5256C12.1869 13.5256 12.1797 13.5261 12.1722 13.527ZM11.7729 13.5103C11.7658 13.5094 11.7588 13.509 11.7519 13.509C11.7592 13.509 11.7662 13.5094 11.7729 13.5103ZM11.7489 13.4952C11.7395 13.4933 11.7293 13.4923 11.7185 13.4923C11.7288 13.4923 11.7389 13.4933 11.7489 13.4952ZM11.7186 13.4792C11.7163 13.4787 11.714 13.4782 11.7117 13.4778C11.7034 13.4763 11.6946 13.4756 11.6852 13.4756C11.6941 13.4756 11.703 13.4764 11.7117 13.4779C11.714 13.4782 11.7163 13.4787 11.7186 13.4792ZM11.6814 13.4553C11.6743 13.4518 11.6668 13.4491 11.6587 13.447L11.6592 13.4476C11.6666 13.4496 11.674 13.4522 11.6814 13.4553ZM11.6587 13.4475L11.6581 13.4468C11.6461 13.4438 11.6329 13.4423 11.6185 13.4423C11.6321 13.4423 11.6454 13.444 11.6587 13.4475ZM11.5881 13.3874C11.5706 13.3795 11.5502 13.3756 11.5268 13.3756C11.549 13.3756 11.5694 13.3795 11.5881 13.3874ZM11.6297 13.4208C11.6086 13.4073 11.5827 13.4006 11.5518 13.4006C11.5782 13.4006 11.6041 13.4073 11.6297 13.4208ZM11.6256 13.4226C11.6135 13.4191 11.6001 13.4173 11.5852 13.4173C11.5991 13.4173 11.6126 13.4191 11.6256 13.4226ZM11.6884 13.4632C11.6764 13.4604 11.6642 13.459 11.6519 13.459C11.6651 13.459 11.6773 13.4604 11.6884 13.4632ZM10.176 11.9948L10.1767 11.9954C10.1877 12.0153 10.1932 12.0392 10.1932 12.0672C10.1932 12.0407 10.1875 12.0165 10.176 11.9948ZM10.1465 11.9621C10.1477 11.9638 10.1488 11.9655 10.1498 11.9672L10.1495 11.9672C10.1485 11.9655 10.1475 11.9638 10.1465 11.9621ZM10.1188 11.9333C10.1174 11.9294 10.1159 11.9256 10.1141 11.922L10.1137 11.9216L10.1141 11.9219C10.1136 11.9209 10.1131 11.9198 10.1125 11.9187C10.1129 11.9197 10.1133 11.9206 10.1137 11.9216C10.1153 11.9253 10.1167 11.929 10.1179 11.9327L10.1188 11.9333ZM10.118 11.9329C10.1219 11.9442 10.1244 11.9557 10.1257 11.9672L10.1258 11.9672C10.1247 11.955 10.1224 11.9438 10.1188 11.9335L10.118 11.9329ZM10.1261 11.9706L10.126 11.9706C10.1264 11.975 10.1266 11.9794 10.1266 11.9839C10.1266 11.9793 10.1264 11.9749 10.1261 11.9706ZM10.1463 11.9769L10.1465 11.977C10.1499 11.9894 10.1516 12.0028 10.1516 12.0172C10.1516 12.0034 10.1498 11.9899 10.1463 11.9769ZM10.1434 11.9672L10.1433 11.9672C10.1426 11.9651 10.1418 11.963 10.141 11.9609C10.1419 11.963 10.1427 11.9651 10.1434 11.9672ZM10.1563 11.9816C10.1643 12.0005 10.1682 12.0207 10.1682 12.0422C10.1682 12.0195 10.1646 11.9995 10.1573 11.9821L10.1563 11.9816ZM10.0674 11.8419C10.067 11.8385 10.0666 11.8352 10.066 11.832C10.0665 11.8353 10.067 11.8386 10.0673 11.8419L10.0674 11.8419ZM10.0675 11.8434L10.0675 11.8435C10.068 11.8485 10.0682 11.8536 10.0682 11.8589C10.0682 11.8538 10.068 11.8486 10.0675 11.8434ZM10.0898 11.892C10.0921 11.9036 10.0932 11.9147 10.0932 11.9255C10.0932 11.9137 10.0921 11.9025 10.0898 11.892ZM10.0723 11.3787C10.0732 11.375 10.074 11.3712 10.0746 11.3673L10.0745 11.3674C10.0739 11.3712 10.0732 11.3749 10.0723 11.3787ZM10.0753 11.3619L10.0754 11.3617C10.0762 11.3555 10.0765 11.349 10.0765 11.3422C10.0765 11.3488 10.0761 11.3553 10.0753 11.3619ZM10.0929 11.3298C10.0987 11.3138 10.1015 11.2957 10.1015 11.2755C10.1015 11.2926 10.0987 11.3107 10.0929 11.3298ZM10.1338 11.2706C10.1388 11.2578 10.1419 11.2438 10.1429 11.2287L10.1428 11.2287C10.1417 11.2428 10.1388 11.2567 10.1338 11.2706ZM10.1428 11.2283L10.1429 11.2283C10.1431 11.2247 10.1432 11.221 10.1432 11.2172C10.1432 11.2209 10.1431 11.2246 10.1428 11.2283ZM10.1568 11.2242C10.1555 11.2306 10.1538 11.2368 10.1518 11.2429L10.1523 11.2425C10.1543 11.2367 10.1559 11.2306 10.1571 11.2241L10.1568 11.2242L10.1568 11.2242ZM10.1573 11.223L10.157 11.2232C10.1581 11.2175 10.1589 11.2118 10.1593 11.206L10.1594 11.206C10.159 11.2119 10.1583 11.2176 10.1573 11.223ZM10.1736 11.2167C10.1732 11.2176 10.1729 11.2185 10.1725 11.2194C10.1729 11.2184 10.1733 11.2175 10.1737 11.2166L10.1736 11.2167ZM10.1752 11.2131L10.1749 11.2133C10.1765 11.2092 10.1779 11.205 10.1791 11.2008L10.1794 11.2007C10.1782 11.205 10.1768 11.2091 10.1752 11.2131ZM10.1804 11.2128C10.1797 11.214 10.179 11.2152 10.1782 11.2164C10.1791 11.2151 10.18 11.2138 10.1809 11.2125L10.1804 11.2128ZM10.185 11.2056L10.1838 11.2067C10.1854 11.2036 10.187 11.2004 10.1884 11.1972L10.1895 11.1967C10.1881 11.1998 10.1866 11.2028 10.185 11.2056ZM10.1984 11.1923C10.1955 11.1939 10.1925 11.1954 10.1895 11.1967L10.1901 11.1953C10.1932 11.194 10.1963 11.1926 10.1994 11.191L10.1984 11.1923L10.1984 11.1923ZM10.2051 11.1882L10.2059 11.1877L10.2052 11.1881L10.2051 11.1882ZM10.2351 11.1599C10.2452 11.1567 10.2545 11.1523 10.263 11.1468C10.2541 11.1515 10.2451 11.1554 10.2361 11.1585L10.2351 11.1599ZM10.236 11.1586C10.2297 11.1607 10.2233 11.1624 10.217 11.1638L10.2167 11.1645C10.2231 11.1633 10.2291 11.1618 10.2349 11.16L10.236 11.1586ZM10.2157 11.1647L10.216 11.164C10.2103 11.1652 10.2045 11.166 10.1987 11.1666C10.2006 11.1564 10.2016 11.1454 10.2016 11.1338C10.2016 11.1451 10.2005 11.156 10.1982 11.1666C10.1938 11.167 10.1894 11.1672 10.1849 11.1672C10.1895 11.1672 10.1939 11.167 10.1982 11.1667C10.1966 11.1744 10.1944 11.1818 10.1917 11.1891L10.1926 11.1889C10.1952 11.1819 10.1972 11.1745 10.1987 11.1667C10.2046 11.1663 10.2102 11.1656 10.2157 11.1647ZM10.1818 11.1908C10.1839 11.1808 10.1849 11.1701 10.1849 11.1588C10.1849 11.1697 10.1838 11.1804 10.1816 11.1908C10.1809 11.1938 10.1802 11.1966 10.1794 11.1995C10.1728 11.2019 10.1661 11.2038 10.1595 11.2052C10.1598 11.201 10.1599 11.1966 10.1599 11.1922C10.1599 11.1966 10.1597 11.2009 10.1594 11.2052C10.1485 11.2076 10.1375 11.2088 10.1266 11.2088C10.1382 11.2088 10.1491 11.2079 10.1593 11.206L10.1594 11.2052L10.1595 11.2052L10.1594 11.206C10.1663 11.2047 10.1728 11.203 10.1791 11.2008L10.1794 11.1995L10.1798 11.1994L10.1794 11.2007C10.1825 11.1997 10.1855 11.1985 10.1884 11.1972L10.189 11.1958L10.1901 11.1953C10.191 11.1933 10.1918 11.1912 10.1926 11.1891L10.1916 11.1893C10.1908 11.1915 10.1899 11.1936 10.189 11.1958C10.1859 11.1971 10.1829 11.1983 10.1798 11.1994C10.1806 11.1966 10.1812 11.1937 10.1818 11.1908ZM10.1987 11.1667L10.1987 11.1666L10.1982 11.1666L10.1982 11.1667L10.1987 11.1667L10.1987 11.1667ZM10.2866 11.1279C10.2891 11.1271 10.2915 11.1263 10.2939 11.1255C10.2915 11.1263 10.2891 11.127 10.2867 11.1277L10.2866 11.1279ZM10.295 11.1162C10.3023 11.1154 10.3093 11.114 10.3159 11.1122C10.309 11.114 10.302 11.1153 10.295 11.1161L10.295 11.1162L10.295 11.1162ZM10.2949 11.1161L10.2948 11.1162C10.289 11.1168 10.2829 11.1172 10.2766 11.1172C10.2827 11.1172 10.2888 11.1168 10.2949 11.1161ZM10.3368 11.0983L10.3368 11.0983L10.3383 11.098L10.3368 11.0983ZM10.3366 11.0983L10.3366 11.0983C10.3282 11.0998 10.3194 11.1005 10.3099 11.1005C10.3186 11.1005 10.3275 11.0998 10.3366 11.0983ZM10.2851 11.1281L10.2849 11.1284C10.2721 11.132 10.2582 11.1338 10.2433 11.1338C10.2574 11.1338 10.2713 11.1319 10.2851 11.1281ZM10.1522 11.2427L10.1518 11.243C10.1505 11.2467 10.1491 11.2504 10.1476 11.254L10.1472 11.2547L10.1476 11.2539C10.1493 11.2503 10.1509 11.2466 10.1522 11.2427ZM10.402 11.0735C10.394 11.0749 10.3856 11.0755 10.3766 11.0755C10.3849 11.0755 10.3934 11.0749 10.402 11.0735ZM10.779 11.0748C10.7835 11.0753 10.7883 11.0755 10.7934 11.0755C10.7888 11.0755 10.784 11.0753 10.779 11.0748ZM10.8005 11.0817C10.8088 11.0831 10.8175 11.0838 10.8267 11.0838C10.8182 11.0838 10.8095 11.0831 10.8005 11.0817ZM10.8777 11.1201C10.8898 11.1237 10.9034 11.1255 10.9184 11.1255C10.9047 11.1255 10.8911 11.1237 10.8777 11.1201ZM10.9002 11.1335C10.9156 11.1393 10.9328 11.1422 10.9517 11.1422C10.9343 11.1422 10.9172 11.1393 10.9002 11.1335ZM10.9169 11.1474C10.9199 11.1487 10.923 11.15 10.9262 11.1511L10.926 11.1508C10.9229 11.1497 10.9199 11.1486 10.9169 11.1474ZM10.9261 11.1508L10.9264 11.1512C10.9411 11.1563 10.9579 11.1588 10.9767 11.1588C10.959 11.1588 10.9421 11.1562 10.9261 11.1508ZM10.9541 11.1783C10.9671 11.1872 10.982 11.1934 10.9989 11.197L10.9993 11.1966C10.9835 11.1929 10.9684 11.1868 10.9541 11.1783ZM10.9523 11.1726C10.9707 11.1801 10.99 11.1838 11.0101 11.1838C10.9885 11.1838 10.9693 11.1801 10.9523 11.1726ZM10.8616 11.1072C10.869 11.1083 10.8768 11.1088 10.8851 11.1088C10.8772 11.1088 10.8694 11.1083 10.8616 11.1072ZM13.296 10.4489C13.2967 10.4479 13.2974 10.4469 13.2981 10.4458L13.2976 10.4461C13.2971 10.4471 13.2965 10.448 13.2959 10.449L13.296 10.4489ZM13.2898 10.4525C13.2902 10.4516 13.2906 10.4508 13.291 10.4499C13.2693 10.4614 13.2453 10.4671 13.2188 10.4671C13.2473 10.4671 13.271 10.4623 13.2898 10.4525ZM13.2967 10.434L13.297 10.4327C13.2793 10.439 13.2616 10.4421 13.2438 10.4421C13.2634 10.4421 13.281 10.4394 13.2967 10.434ZM13.3089 10.4224L13.3099 10.4222C13.3124 10.4152 13.3144 10.4078 13.3159 10.4C13.3222 10.3996 13.3282 10.3988 13.334 10.3978C13.3313 10.4048 13.3281 10.4115 13.3244 10.4181C13.3253 10.4178 13.3261 10.4175 13.3269 10.4171C13.3304 10.4111 13.3334 10.4046 13.3358 10.3974C13.3415 10.3964 13.3469 10.395 13.3522 10.3933L13.3528 10.3924C13.3473 10.3943 13.3416 10.3958 13.3359 10.397C13.3374 10.3927 13.3386 10.3881 13.3397 10.3834C13.3542 10.3823 13.3676 10.3794 13.3799 10.3747C13.3666 10.3793 13.3532 10.3822 13.3397 10.3833C13.3424 10.3709 13.3438 10.3572 13.3438 10.3421C13.3438 10.3566 13.3421 10.3703 13.3386 10.3834C13.3348 10.3837 13.331 10.3838 13.3272 10.3838C13.3311 10.3838 13.3349 10.3837 13.3386 10.3834C13.3373 10.3882 13.3358 10.3928 13.3341 10.3974C13.3282 10.3986 13.3221 10.3994 13.316 10.3999C13.3179 10.3897 13.3188 10.3788 13.3188 10.3671C13.3188 10.3784 13.3177 10.3893 13.3155 10.4C13.3111 10.4003 13.3067 10.4005 13.3022 10.4005C13.3067 10.4005 13.3112 10.4003 13.3155 10.4C13.3139 10.4077 13.3117 10.4151 13.3089 10.4224ZM13.3155 10.4L13.3159 10.4L13.316 10.3999L13.3155 10.4L13.3155 10.4L13.3155 10.4ZM13.3386 10.3834L13.3397 10.3834L13.3397 10.3833L13.3386 10.3834L13.3386 10.3834L13.3386 10.3834ZM13.3808 10.3797C13.3719 10.3849 13.3626 10.3891 13.3529 10.3924L13.3523 10.3932C13.3627 10.3899 13.3722 10.3854 13.3808 10.3797ZM13.4205 10.3483C13.4178 10.3488 13.415 10.3492 13.4122 10.3495L13.4123 10.3494C13.4151 10.3491 13.4179 10.3486 13.4206 10.3482L13.4205 10.3483ZM13.4206 10.3483L13.4208 10.3481C13.4251 10.3474 13.4294 10.3465 13.4337 10.3453C13.4295 10.3465 13.4251 10.3475 13.4206 10.3483ZM13.4121 10.3494L13.412 10.3495C13.4062 10.3501 13.4001 10.3505 13.3938 10.3505C13.3999 10.3505 13.406 10.3501 13.4121 10.3494ZM13.3341 10.3974L13.334 10.3978L13.3358 10.3974L13.3359 10.397L13.3341 10.3974L13.3341 10.3974ZM13.3122 10.4362L13.3125 10.4359L13.3124 10.436L13.3122 10.4362ZM13.3067 10.43L13.3073 10.4286L13.3062 10.4291L13.3056 10.4305L13.3067 10.43L13.3067 10.43ZM13.3224 10.4215L13.3233 10.4209L13.3225 10.4213L13.3224 10.4215L13.3224 10.4215ZM13.4649 10.3292C13.4525 10.3323 13.4399 10.3338 13.4272 10.3338C13.4409 10.3338 13.4535 10.3323 13.4649 10.3292ZM13.8775 10.2986C13.8853 10.2998 13.8936 10.3005 13.9023 10.3005C13.8942 10.3005 13.8859 10.2998 13.8775 10.2986ZM13.9413 10.3231L13.9439 10.3236L13.9438 10.3235L13.9413 10.3231ZM13.9493 10.3243L13.9494 10.3243C13.9557 10.3251 13.9622 10.3255 13.969 10.3255C13.9625 10.3255 13.956 10.3251 13.9493 10.3243ZM13.9814 10.3418C13.9974 10.3476 14.0155 10.3505 14.0356 10.3505C14.0185 10.3505 14.0005 10.3476 13.9814 10.3418ZM14.105 10.4072C14.1032 10.3973 14.1023 10.3867 14.1023 10.3755C14.1023 10.3863 14.1034 10.3969 14.1056 10.4073L14.105 10.4072L14.105 10.4072ZM18.4581 17.5675L18.3614 17.5675C18.3456 17.5675 18.3251 17.5695 18.3 17.5736C18.2932 17.5747 18.2886 17.5754 18.2862 17.5757L18.2864 17.5758C18.2691 17.5758 18.2486 17.5781 18.2247 17.5827C18.2209 17.5834 18.2182 17.5839 18.2166 17.5842C18.2001 17.5845 18.1806 17.5867 18.1581 17.591C18.1542 17.5917 18.1514 17.5922 18.1498 17.5925C18.1272 17.593 18.1005 17.5981 18.0697 17.608C18.0675 17.6087 18.0657 17.6092 18.0642 17.6097C18.0422 17.6114 18.0182 17.6172 17.9922 17.6269C17.9662 17.63 17.9391 17.639 17.9108 17.6541C17.8859 17.6587 17.859 17.6682 17.8302 17.6826C17.8248 17.6853 17.8217 17.6868 17.8208 17.6872C17.8181 17.6883 17.8145 17.6897 17.81 17.6916C17.7877 17.7007 17.7696 17.7086 17.7557 17.7152C17.7292 17.7277 17.7048 17.7399 17.6825 17.7518C17.6641 17.7615 17.6425 17.7739 17.6176 17.7888C17.6052 17.7962 17.5894 17.8072 17.5703 17.8217C17.5618 17.8282 17.556 17.8324 17.553 17.8344C17.5521 17.835 17.5483 17.837 17.5417 17.8404C17.52 17.8513 17.5023 17.8618 17.4887 17.8719C17.4775 17.8802 17.4622 17.8931 17.4429 17.9104C17.4338 17.9185 17.4277 17.9238 17.4245 17.9265C17.4216 17.9288 17.4174 17.9323 17.4118 17.9368C17.3939 17.9513 17.3796 17.9633 17.3689 17.973C17.3588 17.9821 17.3454 17.9953 17.3286 18.0126C17.3218 18.0197 17.3168 18.0249 17.3137 18.028C17.3105 18.0312 17.3054 18.0361 17.2985 18.0428C17.281 18.0597 17.2677 18.0733 17.2585 18.0834C17.2568 18.0853 17.2523 18.0896 17.2451 18.0962C17.2273 18.1128 17.2135 18.127 17.2037 18.1389C17.1949 18.1496 17.1838 18.1649 17.1704 18.1846C17.1643 18.1935 17.1599 18.1997 17.1574 18.2031C17.1379 18.2294 17.1227 18.2509 17.1116 18.2674C17.1037 18.2791 17.0946 18.2946 17.0843 18.3139C17.0797 18.3225 17.0763 18.3285 17.0742 18.332C17.0599 18.3559 17.0476 18.3775 17.0373 18.3967C17.0258 18.4181 17.0136 18.4425 17.0006 18.47C17.0003 18.4705 16.9983 18.4737 16.9946 18.4796C16.9811 18.5004 16.971 18.5189 16.9643 18.535C16.9639 18.5359 16.9624 18.5391 16.9597 18.5446C16.9424 18.5792 16.9321 18.611 16.9289 18.6401C16.92 18.6642 16.9144 18.6864 16.9122 18.7069C16.9025 18.7328 16.8968 18.7568 16.8951 18.7787C16.8946 18.7802 16.894 18.782 16.8933 18.7842C16.8856 18.8081 16.8808 18.8296 16.8789 18.8486C16.8676 18.8786 16.8617 18.9061 16.8612 18.931C16.8609 18.9326 16.8604 18.9353 16.8597 18.9392C16.8551 18.9631 16.8528 18.9836 16.8528 19.0009L16.8528 19.073C16.8525 19.0745 16.8521 19.0771 16.8514 19.0808C16.8468 19.1046 16.8445 19.1252 16.8445 19.1425C16.8445 19.1584 16.8465 19.1789 16.8506 19.204C16.8517 19.2107 16.8524 19.2153 16.8527 19.2177L16.8528 19.2176L16.8528 19.2842C16.8528 19.3015 16.8551 19.322 16.8597 19.3459C16.8604 19.3498 16.8609 19.3525 16.8612 19.3541C16.8617 19.3768 16.8668 19.4035 16.8767 19.4344C16.8774 19.4365 16.8779 19.4382 16.8784 19.4397C16.8801 19.4617 16.8858 19.4856 16.8955 19.5115C16.8977 19.532 16.9033 19.5543 16.9122 19.5782C16.9144 19.5987 16.92 19.6209 16.9289 19.6449C16.9321 19.674 16.9424 19.7059 16.9597 19.7405C16.9624 19.746 16.9639 19.7491 16.9643 19.75C16.971 19.7662 16.9811 19.7847 16.9946 19.8055C16.9983 19.8114 17.0003 19.8145 17.0006 19.815C17.0137 19.8427 17.0259 19.8671 17.0373 19.8884C17.0476 19.9076 17.0599 19.9292 17.0742 19.9531C17.0763 19.9566 17.0797 19.9626 17.0843 19.9712C17.0946 19.9905 17.1037 20.006 17.1115 20.0176C17.1229 20.0346 17.1382 20.0561 17.1574 20.082C17.1599 20.0853 17.1642 20.0915 17.1703 20.1004C17.1838 20.1202 17.1949 20.1355 17.2037 20.1462C17.2135 20.1581 17.2273 20.1723 17.2451 20.1889C17.2523 20.1955 17.2568 20.1998 17.2585 20.2017C17.2677 20.2119 17.2811 20.2255 17.2987 20.2425C17.3056 20.2492 17.3105 20.254 17.3136 20.2571C17.3167 20.2602 17.3217 20.2652 17.3285 20.2723C17.3453 20.2897 17.3588 20.303 17.3689 20.3121C17.3708 20.3138 17.3751 20.3182 17.3816 20.3253C17.3982 20.3432 17.4125 20.3571 17.4246 20.367C17.4352 20.3757 17.4504 20.3868 17.4701 20.4002C17.479 20.4063 17.4852 20.4106 17.4887 20.4132C17.5156 20.4331 17.537 20.4483 17.553 20.459C17.5647 20.4668 17.5802 20.4759 17.5995 20.4863C17.6081 20.4909 17.6141 20.4942 17.6176 20.4963C17.6425 20.5112 17.6641 20.5235 17.6824 20.5333C17.7048 20.5452 17.7292 20.5574 17.7557 20.5699C17.7561 20.5702 17.7592 20.5721 17.765 20.5758C17.7859 20.5894 17.8045 20.5996 17.8208 20.6063C17.8217 20.6066 17.8248 20.6082 17.8302 20.6109C17.8648 20.6282 17.8966 20.6384 17.9256 20.6416C17.9497 20.6505 17.9719 20.6561 17.9924 20.6582C18.0183 20.6679 18.0423 20.6737 18.0642 20.6754C18.0657 20.6759 18.0675 20.6764 18.0697 20.6771C18.0937 20.6848 18.1152 20.6896 18.1341 20.6916C18.1641 20.7029 18.1916 20.7088 18.2166 20.7093C18.2182 20.7095 18.2209 20.71 18.2247 20.7108C18.2486 20.7153 18.2691 20.7176 18.2864 20.7176L18.3585 20.7176C18.3601 20.7179 18.3627 20.7184 18.3664 20.7191C18.3902 20.7236 18.4108 20.7259 18.4281 20.7259C18.4454 20.7259 18.466 20.7236 18.4898 20.7191C18.4935 20.7184 18.4961 20.7179 18.4977 20.7176L18.5698 20.7176C18.5871 20.7176 18.6076 20.7153 18.6315 20.7108C18.6353 20.71 18.638 20.7095 18.6396 20.7093C18.6646 20.7088 18.6921 20.7029 18.7221 20.6916C18.741 20.6896 18.7625 20.6848 18.7865 20.6771C18.7887 20.6764 18.7905 20.6759 18.792 20.6754C18.8139 20.6737 18.8379 20.6679 18.8638 20.6582C18.8843 20.6561 18.9067 20.6505 18.9308 20.6415C18.9645 20.6375 18.9997 20.6232 19.0365 20.5987C19.0384 20.5974 19.0399 20.5964 19.0411 20.5956C19.043 20.5948 19.0451 20.5939 19.0476 20.5929C19.0694 20.584 19.0871 20.5763 19.1007 20.5699C19.1277 20.5571 19.1521 20.5449 19.174 20.5332C19.1927 20.5232 19.2143 20.5109 19.2386 20.4963C19.2421 20.4942 19.2482 20.4909 19.2567 20.4862C19.2761 20.4759 19.2916 20.4668 19.3033 20.459C19.32 20.4479 19.3414 20.4326 19.3676 20.4131C19.371 20.4106 19.3772 20.4062 19.3862 20.4001C19.4059 20.3867 19.4211 20.3756 19.4318 20.3669C19.4437 20.3571 19.458 20.3433 19.4745 20.3254C19.4811 20.3183 19.4854 20.3138 19.4873 20.3121C19.4974 20.3029 19.511 20.2896 19.528 20.2721C19.5347 20.2651 19.5396 20.2601 19.5427 20.257C19.5458 20.2539 19.5508 20.249 19.5577 20.2423C19.5752 20.2253 19.5886 20.2117 19.5978 20.2016C19.6073 20.1911 19.6192 20.177 19.6335 20.1593C19.6382 20.1534 19.6418 20.149 19.6443 20.1461C19.6469 20.1428 19.6522 20.1367 19.6603 20.1277C19.6777 20.1084 19.6905 20.0931 19.6988 20.0819C19.7183 20.0557 19.7336 20.0343 19.7447 20.0176C19.7525 20.0059 19.7616 19.9904 19.772 19.9711C19.7766 19.9625 19.7799 19.9565 19.782 19.953C19.7966 19.9286 19.8089 19.907 19.8189 19.8883C19.8306 19.8664 19.8429 19.842 19.8556 19.815C19.862 19.8015 19.8697 19.7838 19.8786 19.7621C19.8808 19.7568 19.8825 19.7527 19.8836 19.75C19.884 19.7491 19.8855 19.7459 19.8882 19.7405C19.9026 19.7117 19.9121 19.6848 19.9168 19.6598C19.9319 19.6315 19.9409 19.6044 19.9439 19.5784C19.9529 19.5544 19.9585 19.5321 19.9607 19.5115C19.9704 19.4856 19.9761 19.4617 19.9778 19.4397C19.9783 19.4382 19.9788 19.4365 19.9795 19.4344C19.9894 19.4035 19.9945 19.3768 19.995 19.3541C19.9953 19.3526 19.9958 19.3498 19.9965 19.3459C20.0011 19.322 20.0034 19.3015 20.0034 19.2842L20.0034 19.0009C20.0034 18.9836 20.0011 18.9631 19.9965 18.9392C19.9958 18.9353 19.9953 18.9325 19.995 18.931C19.9945 18.9061 19.9886 18.8786 19.9773 18.8486C19.9754 18.8296 19.9706 18.8081 19.9629 18.7842C19.9622 18.782 19.9616 18.7802 19.9611 18.7787C19.9594 18.7567 19.9537 18.7327 19.9439 18.7066C19.9409 18.6807 19.9319 18.6537 19.9168 18.6254C19.9119 18.5991 19.9012 18.5722 19.8849 18.5448C19.8839 18.5432 19.8832 18.542 19.8827 18.5411C19.8812 18.5374 19.8792 18.5316 19.8765 18.5237C19.8688 18.5011 19.8618 18.4832 19.8556 18.4701C19.8428 18.4429 19.8306 18.4184 19.8189 18.3967C19.809 18.3782 19.7967 18.3566 19.782 18.3321C19.7799 18.3286 19.7766 18.3226 19.772 18.314C19.7616 18.2946 19.7525 18.2791 19.7447 18.2675C19.7336 18.2508 19.7183 18.2294 19.6988 18.2031C19.6905 18.192 19.6777 18.1767 19.6604 18.1574C19.6523 18.1483 19.6469 18.1422 19.6443 18.139C19.6417 18.1359 19.6381 18.1315 19.6335 18.1258C19.6192 18.1081 19.6073 18.0939 19.5978 18.0834C19.5886 18.0733 19.5752 18.0597 19.5575 18.0426C19.5507 18.036 19.5457 18.0311 19.5426 18.028C19.5396 18.025 19.5347 18.02 19.528 18.013C19.511 17.9955 19.4974 17.9822 19.4873 17.973C19.4768 17.9635 19.4627 17.9516 19.445 17.9373C19.4391 17.9325 19.4347 17.9289 19.4317 17.9265C19.4285 17.9239 19.4224 17.9186 19.4134 17.9105C19.394 17.8931 19.3787 17.8803 19.3676 17.872C19.354 17.8619 19.3363 17.8513 19.3145 17.8403C19.3079 17.837 19.3042 17.835 19.3033 17.8344C19.3002 17.8324 19.2945 17.8282 19.286 17.8217C19.2668 17.8072 19.251 17.7962 19.2386 17.7888C19.2145 17.7743 19.193 17.762 19.174 17.7519C19.1522 17.7402 19.1278 17.728 19.1007 17.7152C19.0871 17.7088 19.0694 17.7011 19.0477 17.6922C19.0423 17.69 19.0383 17.6883 19.0356 17.6872C19.0347 17.6869 19.0315 17.6853 19.0261 17.6826C18.9973 17.6682 18.9704 17.6587 18.9454 17.6541C18.9171 17.639 18.89 17.63 18.864 17.6269C18.838 17.6172 18.814 17.6114 18.792 17.6097C18.7905 17.6092 18.7887 17.6087 18.7865 17.608C18.7557 17.5981 18.729 17.593 18.7064 17.5925C18.7048 17.5922 18.702 17.5917 18.6981 17.591C18.6756 17.5867 18.6561 17.5845 18.6396 17.5842C18.638 17.5839 18.6353 17.5834 18.6315 17.5827C18.6076 17.5781 18.5871 17.5758 18.5698 17.5758L18.57 17.5757C18.5676 17.5754 18.563 17.5747 18.5562 17.5736C18.5311 17.5695 18.5106 17.5675 18.4948 17.5675L18.4581 17.5675ZM18.3909 17.8675L18.4948 17.8675L18.4947 17.8676C18.4971 17.8679 18.5017 17.8686 18.5085 17.8697C18.532 17.8735 18.5514 17.8755 18.5667 17.8758C18.5683 17.8761 18.5711 17.8766 18.575 17.8773C18.5974 17.8816 18.6169 17.8838 18.6334 17.8841C18.635 17.8844 18.6378 17.8849 18.6418 17.8857C18.6598 17.8891 18.6759 17.8912 18.69 17.8921C18.6914 17.8925 18.6931 17.893 18.6952 17.8937C18.7191 17.9014 18.7406 17.9062 18.7595 17.9081C18.7778 17.915 18.7952 17.9199 18.8116 17.9228C18.8383 17.937 18.8639 17.9458 18.8885 17.9492C18.8895 17.9497 18.8906 17.9503 18.8919 17.9509C18.9037 17.9568 18.9133 17.9613 18.9208 17.9644C18.9238 17.9657 18.9281 17.9675 18.9338 17.9698C18.9507 17.9767 18.9635 17.9822 18.9724 17.9864C18.9951 17.9971 19.0151 18.0071 19.0324 18.0164C19.0471 18.0243 19.0645 18.0342 19.0845 18.0462C19.0875 18.048 19.0942 18.0528 19.1047 18.0607C19.118 18.0708 19.1286 18.0786 19.1366 18.0839C19.1476 18.0912 19.1618 18.0993 19.1792 18.1081C19.1843 18.1107 19.1877 18.1124 19.1892 18.1133L19.1889 18.113C19.1926 18.1157 19.2007 18.1227 19.2132 18.1339C19.2255 18.1449 19.2349 18.1531 19.2415 18.1585C19.245 18.1614 19.25 18.1654 19.2566 18.1707C19.2699 18.1814 19.2796 18.1896 19.2859 18.1953C19.2912 18.2001 19.3 18.2089 19.3124 18.2217C19.3203 18.2298 19.3263 18.236 19.3306 18.2403C19.3347 18.2444 19.3408 18.2504 19.3489 18.2582C19.3618 18.2707 19.3706 18.2796 19.3755 18.2849C19.3812 18.2912 19.3894 18.3009 19.4001 18.3142C19.4053 18.3207 19.4094 18.3257 19.4124 18.3293C19.4177 18.3359 19.4259 18.3453 19.437 18.3576C19.4481 18.3701 19.4551 18.3782 19.4579 18.3819C19.4744 18.4042 19.4869 18.4216 19.4953 18.4342C19.4977 18.4378 19.5018 18.445 19.5076 18.4559C19.5145 18.4686 19.5201 18.4788 19.5246 18.4863C19.5368 18.5066 19.5467 18.5239 19.5544 18.5383C19.5637 18.5556 19.5737 18.5756 19.5844 18.5983C19.5858 18.6012 19.5885 18.6086 19.5926 18.6205C19.598 18.6366 19.6026 18.6491 19.6064 18.6582C19.6105 18.6682 19.6161 18.6793 19.6232 18.6916C19.6274 18.7133 19.6357 18.7359 19.6481 18.7592C19.651 18.7755 19.6558 18.7929 19.6627 18.8112C19.6646 18.8301 19.6694 18.8516 19.6771 18.8755C19.6778 18.8778 19.6784 18.8796 19.6789 18.8811C19.6806 18.903 19.6862 18.9267 19.6958 18.9522C19.6968 18.9652 19.6988 18.9797 19.7019 18.9957C19.7026 18.9995 19.7031 19.0022 19.7034 19.0038L19.7034 19.2813C19.7031 19.2829 19.7026 19.2856 19.7019 19.2894C19.6984 19.3074 19.6963 19.3235 19.6954 19.3377C19.695 19.3391 19.6945 19.3408 19.6938 19.3427C19.6861 19.3667 19.6813 19.3882 19.6794 19.4072C19.6704 19.4311 19.6648 19.4534 19.6627 19.474C19.6558 19.4923 19.651 19.5096 19.6481 19.5259C19.6339 19.5526 19.6251 19.5782 19.6216 19.6028C19.6211 19.6039 19.6206 19.605 19.6199 19.6063C19.614 19.6181 19.6095 19.6277 19.6064 19.6352C19.6051 19.6383 19.6034 19.6427 19.6011 19.6482C19.5942 19.6651 19.5886 19.678 19.5844 19.6869C19.5737 19.7094 19.5637 19.7293 19.5544 19.7468C19.5467 19.7613 19.5367 19.7786 19.5246 19.7988C19.5201 19.8063 19.5145 19.8165 19.5076 19.8292C19.5018 19.8401 19.4977 19.8473 19.4953 19.8509C19.4869 19.8635 19.4744 19.881 19.4578 19.9033C19.4551 19.907 19.4481 19.915 19.437 19.9275C19.426 19.9398 19.4178 19.9492 19.4124 19.9558C19.4093 19.9595 19.4052 19.9645 19.4001 19.9709C19.3894 19.9842 19.3811 19.994 19.3754 20.0003C19.3707 20.0055 19.3619 20.0143 19.3491 20.0267C19.341 20.0345 19.3349 20.0406 19.3306 20.0449C19.3263 20.0491 19.3203 20.0553 19.3124 20.0634C19.3 20.0762 19.2912 20.085 19.2859 20.0897C19.2776 20.0973 19.2671 20.1079 19.2546 20.1214C19.2473 20.1293 19.2429 20.1338 19.2415 20.135C19.2377 20.1381 19.2297 20.1438 19.2174 20.1521C19.2051 20.1605 19.1956 20.1672 19.1889 20.1721C19.1666 20.1887 19.1491 20.2012 19.1366 20.2096C19.1329 20.212 19.1257 20.2161 19.1149 20.2219C19.1022 20.2288 19.092 20.2344 19.0845 20.2389C19.0643 20.251 19.047 20.261 19.0325 20.2687C19.015 20.278 18.995 20.288 18.9724 20.2987C18.9635 20.3029 18.9507 20.3084 18.9338 20.3153C18.9283 20.3176 18.924 20.3194 18.9208 20.3207C18.9073 20.3263 18.8917 20.3349 18.874 20.3465C18.8589 20.3494 18.843 20.354 18.8263 20.3603C18.8058 20.3624 18.7835 20.368 18.7595 20.377C18.7406 20.3789 18.7191 20.3837 18.6952 20.3913C18.6929 20.392 18.6911 20.3926 18.6896 20.3931C18.6677 20.3948 18.644 20.4004 18.6185 20.41C18.6055 20.411 18.591 20.413 18.575 20.4161C18.5712 20.4168 18.5685 20.4173 18.5669 20.4176L18.4948 20.4176C18.4775 20.4176 18.4569 20.4199 18.4331 20.4245C18.4312 20.4248 18.4295 20.4251 18.4281 20.4254C18.4267 20.4251 18.425 20.4248 18.4231 20.4245C18.3993 20.4199 18.3787 20.4176 18.3614 20.4176L18.2893 20.4176C18.2877 20.4173 18.285 20.4168 18.2812 20.4161C18.2652 20.413 18.2507 20.411 18.2377 20.41C18.2122 20.4004 18.1885 20.3948 18.1666 20.3931C18.1651 20.3926 18.1633 20.3921 18.161 20.3914C18.1371 20.3837 18.1156 20.3789 18.0967 20.377C18.0727 20.368 18.0504 20.3624 18.0299 20.3603C18.0076 20.3519 17.9868 20.3465 17.9675 20.3441C17.9666 20.3436 17.9655 20.3431 17.9644 20.3425C17.9534 20.337 17.9442 20.3328 17.9369 20.3297C17.9355 20.3288 17.9325 20.3269 17.928 20.324C17.911 20.313 17.8962 20.3045 17.8837 20.2986C17.8617 20.2883 17.8417 20.2783 17.8236 20.2686C17.8096 20.2611 17.7923 20.2512 17.7716 20.2389C17.7642 20.2344 17.7541 20.2288 17.7414 20.222C17.7305 20.2161 17.7233 20.212 17.7196 20.2095C17.7077 20.2016 17.6902 20.1891 17.6672 20.172C17.6606 20.1671 17.6512 20.1605 17.6389 20.1522C17.6266 20.1438 17.6185 20.138 17.6146 20.1349C17.6132 20.1338 17.6089 20.1293 17.6016 20.1214C17.5891 20.1079 17.5786 20.0973 17.5703 20.0898C17.5651 20.0851 17.5563 20.0763 17.544 20.0636C17.536 20.0553 17.5299 20.0491 17.5256 20.0448C17.5214 20.0406 17.5153 20.0347 17.5074 20.027C17.4945 20.0145 17.4855 20.0055 17.4806 20.0001C17.4731 19.9918 17.4626 19.9814 17.4492 19.969C17.4413 19.9616 17.4367 19.9571 17.4354 19.9556C17.4323 19.9519 17.4267 19.944 17.4184 19.9317C17.41 19.9194 17.4033 19.9099 17.3983 19.9032C17.382 19.8811 17.3695 19.8637 17.3609 19.8509C17.3585 19.8473 17.3544 19.8401 17.3486 19.8293C17.3417 19.8165 17.336 19.8063 17.3315 19.7988C17.3196 19.779 17.3097 19.7617 17.3018 19.7468C17.2927 19.7299 17.2827 19.7099 17.2718 19.6868C17.2659 19.6743 17.2574 19.6595 17.2465 19.6426C17.2435 19.6379 17.2416 19.6349 17.2408 19.6335C17.2377 19.6263 17.2335 19.6172 17.228 19.6063C17.2274 19.6051 17.2269 19.604 17.2264 19.6031C17.2239 19.5838 17.2185 19.563 17.2102 19.5406C17.2081 19.5201 17.2025 19.4979 17.1935 19.474C17.1914 19.4534 17.1858 19.4311 17.1768 19.4072C17.1749 19.3882 17.1701 19.3667 17.1624 19.3427C17.1617 19.3408 17.1612 19.3391 17.1608 19.3377C17.1599 19.3235 17.1578 19.3074 17.1543 19.2894C17.1536 19.2856 17.1531 19.2829 17.1528 19.2813L17.1528 19.2176C17.1528 19.2017 17.1508 19.1813 17.1468 19.1562C17.1459 19.1504 17.1452 19.1462 17.1448 19.1436C17.1451 19.1421 17.1455 19.14 17.146 19.1375C17.1505 19.1138 17.1528 19.0932 17.1528 19.0759L17.1528 19.0038C17.1531 19.0022 17.1536 18.9995 17.1543 18.9957C17.1574 18.9797 17.1594 18.9652 17.1604 18.9522C17.17 18.9267 17.1756 18.903 17.1773 18.8811C17.1778 18.8796 17.1784 18.8778 17.1791 18.8755C17.1868 18.8516 17.1916 18.8301 17.1935 18.8112C17.2025 18.7872 17.2081 18.765 17.2102 18.7445C17.2185 18.7221 17.2239 18.7013 17.2264 18.682C17.2269 18.6811 17.2274 18.68 17.228 18.6788C17.2335 18.6679 17.2377 18.6588 17.2408 18.6516C17.2416 18.6502 17.2435 18.6472 17.2465 18.6425C17.2574 18.6256 17.2659 18.6109 17.2718 18.5984C17.2827 18.5753 17.2927 18.5553 17.3018 18.5383C17.3097 18.5234 17.3196 18.5061 17.3315 18.4863C17.336 18.4788 17.3417 18.4686 17.3486 18.4558C17.3544 18.445 17.3585 18.4378 17.3609 18.4343C17.3693 18.4217 17.3818 18.4042 17.3983 18.3819C17.4033 18.3752 17.41 18.3657 17.4185 18.3532C17.4268 18.3411 17.4324 18.3331 17.4355 18.3294C17.4367 18.3279 17.4413 18.3235 17.4492 18.3161C17.4626 18.3036 17.4731 18.2933 17.4806 18.285C17.4855 18.2797 17.4943 18.2708 17.5072 18.2583C17.5153 18.2504 17.5214 18.2445 17.5255 18.2404C17.5299 18.236 17.5361 18.2296 17.5442 18.2213C17.5564 18.2087 17.5651 18.2001 17.5703 18.1954C17.5767 18.1895 17.5867 18.1811 17.6002 18.1702C17.6063 18.1653 17.6112 18.1614 17.6147 18.1585C17.6214 18.153 17.6308 18.1448 17.6431 18.1338C17.6555 18.1227 17.6635 18.1158 17.6672 18.1131L17.667 18.1133C17.6686 18.1124 17.6719 18.1107 17.677 18.1081C17.6944 18.0993 17.7086 18.0912 17.7196 18.0839C17.7277 18.0785 17.7383 18.0708 17.7516 18.0607C17.762 18.0528 17.7687 18.048 17.7716 18.0462C17.7923 18.0339 17.8096 18.024 17.8235 18.0166C17.8416 18.0069 17.8616 17.9969 17.8837 17.9865C17.8929 17.9821 17.9063 17.9763 17.9238 17.9692C17.9287 17.9671 17.9325 17.9656 17.9352 17.9645C17.9428 17.9614 17.9525 17.9568 17.9644 17.9509C17.9657 17.9502 17.9668 17.9497 17.9678 17.9492C17.9924 17.9458 18.018 17.937 18.0446 17.9228C18.061 17.9199 18.0784 17.915 18.0967 17.9081C18.1156 17.9062 18.1371 17.9014 18.161 17.8937C18.1631 17.893 18.1648 17.8925 18.1663 17.8921C18.1804 17.8912 18.1965 17.8891 18.2144 17.8857C18.2184 17.8849 18.2212 17.8844 18.2228 17.8841C18.2393 17.8838 18.2588 17.8816 18.2812 17.8773C18.2851 17.8766 18.2879 17.8761 18.2895 17.8758C18.3048 17.8755 18.3242 17.8735 18.3477 17.8697C18.3546 17.8686 18.3592 17.8679 18.3615 17.8676L18.3614 17.8675L18.3909 17.8675Z' fill-rule='evenodd' fill='%237E84A3' %3E%3C/path%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:backtop{background:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M2.88 18.054a35.9 35.9 0 0 1 8.531-16.32.8.8 0 0 1 1.178 0q.25.27.413.455a35.9 35.9 0 0 1 8.118 15.865c-2.141.451-4.34.747-6.584.874l-2.089 4.178a.5.5 0 0 1-.894 0l-2.089-4.178a44 44 0 0 1-6.584-.874m6.698-1.123 1.157.066L12 19.527l1.265-2.53 1.157-.066a42 42 0 0 0 4.227-.454A33.9 33.9 0 0 0 12 4.09a33.9 33.9 0 0 0-6.649 12.387q2.093.334 4.227.454M12 15a3 3 0 1 1 0-6 3 3 0 0 1 0 6m0-2a1 1 0 1 0 0-2 1 1 0 0 0 0 2'/%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;width:1em;height:1em;}.i-svg\:bell{background:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='19.199951171875' height='19.2001953125' viewBox='0 0 19.199951171875 19.2001953125' fill='none'%3E%3Cpath d='M15.1985 10.2096L15.1985 7.00961C15.097 4.00596 12.6269 1.59961 9.59849 1.59961C6.50566 1.59961 3.99849 4.10682 3.99849 7.19961L3.99849 10.2096L2.53849 13.1296L2.50849 13.2096C2.29393 13.7745 2.70546 14.3996 3.32849 14.3996L15.9585 14.3996C16.5597 14.3389 16.9371 13.6869 16.6585 13.1296L15.1985 10.2096ZM4.49509 12.8002L5.43509 10.9302L5.49509 10.7902C5.56676 10.6058 5.60509 10.4089 5.60509 10.2102L5.60509 7.03021C5.69594 4.90157 7.45405 3.20021 9.60509 3.20021C11.8142 3.20021 13.6051 4.99107 13.6051 7.20021L13.6051 10.3602C13.6234 10.5572 13.6763 10.7524 13.7651 10.9302L14.7051 12.8002L4.49509 12.8002ZM7.20019 15.2002L7.20019 15.3202C7.26127 16.1481 7.9567 16.8002 8.80019 16.8002L10.5202 16.8002C11.3481 16.7391 12.0002 16.0437 12.0002 15.2002L7.20019 15.2002Z' fill-rule='evenodd' fill='%23FF9B85' %3E%3C/path%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;width:1em;height:1em;}.i-svg\:bilibili{background:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' t='1733556119022' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='60026' width='128' height='128'%3E%3Cpath d='M0 0m184.32 0l655.36 0q184.32 0 184.32 184.32l0 655.36q0 184.32-184.32 184.32l-655.36 0q-184.32 0-184.32-184.32l0-655.36q0-184.32 184.32-184.32Z' fill='%23EC5D85' p-id='60027'%3E%3C/path%3E%3Cpath d='M512 241.96096h52.224l65.06496-96.31744c49.63328-50.31936 89.64096 0.43008 63.85664 45.71136l-34.31424 51.5072c257.64864 5.02784 257.64864 43.008 257.64864 325.03808 0 325.94944 0 336.46592-404.48 336.46592S107.52 893.8496 107.52 567.90016c0-277.69856 0-318.80192 253.14304-324.95616l-39.43424-58.368c-31.26272-54.90688 37.33504-90.40896 64.68608-42.37312l60.416 99.80928c18.18624-0.0512 41.18528-0.0512 65.66912-0.0512z' fill='%23EF85A7' p-id='60028'%3E%3C/path%3E%3Cpath d='M512 338.5856c332.8 0 332.8 0 332.8 240.64s0 248.39168-332.8 248.39168-332.8-7.75168-332.8-248.39168 0-240.64 332.8-240.64z' fill='%23EC5D85' p-id='60029'%3E%3C/path%3E%3Cpath d='M281.6 558.08a30.72 30.72 0 0 1-27.47392-16.97792 30.72 30.72 0 0 1 13.73184-41.216l122.88-61.44a30.72 30.72 0 0 1 41.216 13.74208 30.72 30.72 0 0 1-13.74208 41.216l-122.88 61.44a30.59712 30.59712 0 0 1-13.73184 3.23584zM752.64 558.08a30.60736 30.60736 0 0 1-12.8512-2.83648l-133.12-61.44a30.72 30.72 0 0 1-15.04256-40.7552 30.72 30.72 0 0 1 40.76544-15.02208l133.12 61.44A30.72 30.72 0 0 1 752.64 558.08zM454.656 666.88a15.36 15.36 0 0 1-12.288-6.1952 15.36 15.36 0 0 1 3.072-21.49376l68.5056-50.91328 50.35008 52.62336a15.36 15.36 0 0 1-22.20032 21.23776l-31.5904-33.024-46.71488 34.72384a15.28832 15.28832 0 0 1-9.13408 3.04128z' fill='%23EF85A7' p-id='60030'%3E%3C/path%3E%3Cpath d='M65.536 369.31584c15.03232 101.90848 32.84992 147.17952 44.544 355.328 14.63296 2.18112 177.70496 10.04544 204.05248-74.62912a16.14848 16.14848 0 0 0 1.64864-10.87488c-30.60736-80.3328-169.216-60.416-169.216-60.416s-10.36288-146.50368-11.49952-238.83776zM362.25024 383.03744l34.816 303.17568h34.64192L405.23776 381.1328zM309.52448 536.28928h45.48608l16.09728 158.6176-31.82592 1.85344zM446.86336 542.98624h45.80352V705.3312h-33.87392zM296.6016 457.97376h21.39136l5.2736 58.99264-18.91328 2.26304zM326.99392 457.97376h21.39136l2.53952 55.808-17.408 1.61792zM470.62016 459.88864h19.456v62.27968h-19.456zM440.23808 459.88864h22.20032v62.27968h-16.62976z' fill='%23FFFFFF' p-id='60031'%3E%3C/path%3E%3Cpath d='M243.56864 645.51936a275.456 275.456 0 0 1-28.4672 23.74656 242.688 242.688 0 0 1-29.53216 17.52064 2.70336 2.70336 0 0 1-4.4032-1.95584 258.60096 258.60096 0 0 1-5.12-29.57312c-1.41312-12.1856-1.95584-25.68192-2.16064-36.36224 0-0.3072 0-2.5088 3.01056-1.90464a245.92384 245.92384 0 0 1 34.22208 9.5744 257.024 257.024 0 0 1 32.3584 15.17568c0.52224 0.256 2.51904 1.4848 0.09216 3.77856z' fill='%23EB5480' p-id='60032'%3E%3C/path%3E%3Cpath d='M513.29024 369.31584c15.03232 101.90848 32.84992 147.17952 44.544 355.328 14.63296 2.18112 177.70496 10.04544 204.05248-74.62912a16.14848 16.14848 0 0 0 1.64864-10.87488c-30.60736-80.3328-169.216-60.416-169.216-60.416s-10.36288-146.50368-11.49952-238.83776zM810.00448 383.03744l34.816 303.17568h34.64192L852.992 381.1328zM757.27872 536.28928h45.48608l16.09728 158.6176-31.82592 1.85344zM894.6176 542.98624h45.80352V705.3312H906.5472zM744.35584 457.97376h21.39136l5.2736 58.99264-18.91328 2.26304zM774.74816 457.97376h21.39136l2.53952 55.808-17.408 1.61792zM918.3744 459.88864h19.456v62.27968h-19.456zM887.99232 459.88864h22.20032v62.27968h-16.62976z' fill='%23FFFFFF' p-id='60033'%3E%3C/path%3E%3Cpath d='M691.32288 645.51936a275.456 275.456 0 0 1-28.4672 23.74656 242.688 242.688 0 0 1-29.53216 17.52064 2.70336 2.70336 0 0 1-4.4032-1.95584 258.60096 258.60096 0 0 1-5.12-29.57312c-1.41312-12.1856-1.95584-25.68192-2.16064-36.36224 0-0.3072 0-2.5088 3.01056-1.90464a245.92384 245.92384 0 0 1 34.22208 9.5744 257.024 257.024 0 0 1 32.3584 15.17568c0.52224 0.256 2.51904 1.4848 0.09216 3.77856z' fill='%23EB5480' p-id='60034'%3E%3C/path%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;width:1em;height:1em;}.i-svg\:browser{background:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' t='1733620744216' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='13366' width='128' height='128'%3E%3Cpath d='M512.956 741.549c24.671-8.545 73.221-25.811 120.072-46.486 12.131-5.394 24.087-12.036 47.412-25.31a109.078 109.078 0 0 0 37.94-29.11 83.344 83.344 0 0 0 12.227-23.053V219.281c-0.096-24.831-20.211-44.936-45.045-45.043-9.34 1.573-22.76 4.209-38.757 8.543 24.439 62.406 18.146 132.708-17.021 189.792-34.498 55.993-92.88 92.712-158.098 99.992-1.275 0.137-2.499 0.463-3.776 0.585v223.354c0.11 24.835 20.213 44.934 45.046 45.045zM378.672 741.549c24.833-0.108 44.939-20.21 45.046-45.047V472.779a213.556 213.556 0 0 1-158.787-101.461c-34.357-56.592-40.495-125.929-16.655-187.697a423.782 423.782 0 0 0-42.873-9.482c-24.833 0.098-44.938 20.214-45.047 45.047v398.308a82.748 82.748 0 0 0 12.242 23.039c10.5 12.524 23.704 22.495 38.591 29.219 23.801 13.273 35.756 20.011 47.424 25.311 46.84 20.673 95.405 37.942 120.059 46.486z' fill='%23FFBA00' opacity='.4' p-id='13367'%3E%3C/path%3E%3Cpath d='M744.827 708.729a57 57 0 0 0 32.919-11.275 53.974 53.974 0 0 0 17.343-27.226V271.907c-0.066-23.054-17.548-42.33-40.493-44.667 0.528 2.635 0.815 5.297 0.855 7.974v398.309a82.915 82.915 0 0 1-12.227 23.037 108.602 108.602 0 0 1-37.941 29.126c-22.944 12.799-34.805 19.428-46.568 24.752 12.528 0.003 49.706 0.761 86.112-1.709zM141.202 227.432c-22.861 2.335-40.317 21.49-40.495 44.475V670.23a53.882 53.882 0 0 0 17.362 27.4 56.9 56.9 0 0 0 32.902 11.291c36.421 2.471 73.585 1.984 86.112 1.711-11.764-5.324-23.61-11.958-46.565-24.751a108.597 108.597 0 0 1-37.928-29.128 82.787 82.787 0 0 1-12.242-23.036V235.404c0.041-2.676 0.327-5.338 0.854-7.972z' fill='%23FFBA00' opacity='.4' p-id='13368'%3E%3C/path%3E%3Cpath d='M629.782 372.569c35.172-57.083 41.463-127.383 17.023-189.792-0.007-0.026-0.016-0.066-0.029-0.096-51.497 13.939-127.844 45.508-165.674 117.207a189.132 189.132 0 0 0-13.288 31.87v141.388c1.307-0.123 2.569-0.447 3.872-0.585 65.218-7.28 123.598-44 158.096-99.992zM248.658 183.62c-23.842 61.769-17.701 131.105 16.639 187.697 34.357 56.608 93.013 94.084 158.8 101.461h0.099v-141.02a190.385 190.385 0 0 0-13.273-31.87c-36.989-70.079-110.861-101.855-162.265-116.268z' fill='%23FEC744' opacity='.4' p-id='13369'%3E%3C/path%3E%3Cpath d='M593.104 570.52v223.357c0.105 24.83 20.215 44.938 45.05 45.046 24.668-8.544 73.218-25.811 120.071-46.488 12.127-5.392 24.086-12.036 47.409-25.306a109.116 109.116 0 0 0 37.941-29.114 83.408 83.408 0 0 0 12.225-23.051v-398.31c-0.092-24.833-20.21-44.938-45.045-45.047-9.481 1.602-23.134 4.265-39.446 8.723 24.355 62.297 18.091 132.42-16.915 189.423a213.388 213.388 0 0 1-161.29 100.767zM330.601 271.513c-24.833 0.094-44.939 20.214-45.048 45.045v398.31a82.678 82.678 0 0 0 12.24 23.039c10.502 12.524 23.708 22.493 38.595 29.22 23.799 13.271 35.753 20.013 47.422 25.307 46.841 20.677 95.404 37.944 120.062 46.488 24.831-0.109 44.938-20.216 45.045-45.046v-223.72c-65.791-7.377-124.448-44.86-158.79-101.463-34.354-56.591-40.496-125.93-16.655-187.696a423.057 423.057 0 0 0-42.871-9.484z' fill='%23FFBA00' p-id='13370'%3E%3C/path%3E%3Cpath d='M868.422 753.937a108.626 108.626 0 0 1-37.943 29.126c-22.944 12.796-34.805 19.428-46.567 24.75 12.526 0 49.702 0.765 86.112-1.71a56.988 56.988 0 0 0 32.916-11.274 54.009 54.009 0 0 0 17.346-27.228v-398.32c-0.069-23.053-17.552-42.328-40.496-44.667 0.529 2.635 0.815 5.299 0.855 7.974v398.31a83.035 83.035 0 0 1-12.223 23.039zM266.399 324.804c-22.863 2.338-40.319 21.491-40.496 44.477v398.323a53.886 53.886 0 0 0 17.361 27.4 56.879 56.879 0 0 0 32.901 11.291c36.419 2.471 73.587 1.983 86.111 1.708-11.764-5.323-23.608-11.953-46.566-24.75a108.578 108.578 0 0 1-37.928-29.124 82.698 82.698 0 0 1-12.238-23.039V332.779c0.039-2.675 0.326-5.338 0.855-7.975z' fill='%23FFBA00' p-id='13371'%3E%3C/path%3E%3Cpath d='M771.97 280.058c-51.497 13.939-127.844 45.508-165.675 117.207a188.947 188.947 0 0 0-13.289 31.871v141.386c66.797-6.206 126.786-43.472 161.969-100.58 35.184-57.11 41.473-127.45 16.995-189.884z' fill='%23FFBA00' p-id='13372'%3E%3C/path%3E%3Cpath d='M771.97 280.058c-51.497 13.939-127.844 45.508-165.675 117.207a188.947 188.947 0 0 0-13.289 31.871v141.386c66.797-6.206 126.786-43.472 161.969-100.58 35.184-57.11 41.473-127.45 16.995-189.884z' fill='%23FEC744' p-id='13373'%3E%3C/path%3E%3Cpath d='M549.294 570.155h0.095V429.132a189.948 189.948 0 0 0-13.271-31.871c-36.992-70.081-110.863-101.856-162.266-116.268-23.839 61.769-17.701 131.105 16.642 187.696 34.352 56.608 93.012 94.089 158.8 101.466z' fill='%23FFBA00' p-id='13374'%3E%3C/path%3E%3Cpath d='M549.294 570.155h0.095V429.132a189.948 189.948 0 0 0-13.271-31.871c-36.992-70.081-110.863-101.856-162.266-116.268-23.839 61.769-17.701 131.105 16.642 187.696 34.352 56.608 93.012 94.089 158.8 101.466z' fill='%23FEC744' p-id='13375'%3E%3C/path%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;width:1em;height:1em;}.i-svg\:business{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M11.6702 17.1997L11.7102 17.1997L11.7402 17.1997L11.7702 17.1997L11.8002 17.1897L11.8302 17.1897L11.8602 17.1797L11.8802 17.1697L11.9102 17.1597L11.9402 17.1497L11.9702 17.1397L12.0002 17.1297L12.0202 17.1097L12.0502 17.0897L12.0702 17.0797L12.1002 17.0597L12.1202 17.0397L12.1402 17.0197L12.1602 16.9997L12.1802 16.9697L12.2002 16.9497L12.2202 16.9297L12.2302 16.8997L12.2502 16.8697L12.2602 16.8497L12.2702 16.8197L12.2902 16.7897L12.2902 16.7597L12.3002 16.7397L12.3102 16.7097L12.3202 16.6797L12.3202 16.6497L12.3202 16.6197L12.3202 16.5897L12.3202 16.0797L14.5402 16.0797L14.5702 16.0797L14.6002 16.0797L14.6402 16.0797L14.6702 16.0697L14.7002 16.0697C14.7106 16.0697 14.7199 16.0597 14.7302 16.0597C14.7404 16.0597 14.7501 16.0497 14.7602 16.0497C14.7703 16.0497 14.7902 16.0397 14.7902 16.0397L14.8202 16.0297L14.8502 16.0197L14.8802 15.9997L14.9002 15.9897L14.9302 15.9697L14.9602 15.9497L14.9802 15.9297L15.0002 15.9097L15.0302 15.8897L15.0502 15.8597L15.0702 15.8397L15.0902 15.8197L15.1102 15.7897L15.1202 15.7597L15.1402 15.7297L15.1502 15.6997L15.1602 15.6797C15.1602 15.6797 15.1702 15.6598 15.1702 15.6497C15.1702 15.6497 15.1802 15.6299 15.1802 15.6197C15.1802 15.6095 15.1902 15.59 15.1902 15.5797C15.1902 15.5694 15.1902 15.5601 15.1902 15.5497C15.1902 15.5393 15.2002 15.5302 15.2002 15.5197C15.2002 15.5093 15.2002 15.5002 15.2002 15.4897C15.2002 15.4792 15.2002 15.4703 15.2002 15.4597C15.2002 15.4492 15.2002 15.4402 15.2002 15.4297C15.2002 15.4192 15.2002 15.4101 15.2002 15.3997C15.2002 15.3892 15.1902 15.3801 15.1902 15.3697C15.1902 15.3593 15.1902 15.34 15.1902 15.3297C15.1902 15.3194 15.1802 15.3099 15.1802 15.2997C15.1802 15.2895 15.1702 15.2697 15.1702 15.2697C15.1702 15.2596 15.1602 15.2397 15.1602 15.2397L15.1502 15.2097L15.1402 15.1897L15.1202 15.1597L15.1102 15.1297L15.0902 15.0997L15.0702 15.0797L15.0502 15.0497L15.0302 15.0297L15.0002 15.0097L14.9802 14.9897L14.9602 14.9697L14.9302 14.9497L14.9002 14.9297L14.8802 14.9197L14.8502 14.8997L14.8202 14.8897L14.7902 14.8797C14.7902 14.8797 14.7703 14.8697 14.7602 14.8697C14.7501 14.8697 14.7404 14.8597 14.7302 14.8597C14.7199 14.8597 14.7106 14.8497 14.7002 14.8497C14.6898 14.8497 14.6807 14.8397 14.6702 14.8397C14.6597 14.8397 14.6508 14.8397 14.6402 14.8397C14.6297 14.8397 14.6108 14.8397 14.6002 14.8397C14.5896 14.8397 14.5808 14.8397 14.5702 14.8397C14.5596 14.8397 14.5508 14.8397 14.5402 14.8397L12.3202 14.8397L12.3202 13.8197L14.5502 13.8197L14.5802 13.8197L14.6102 13.8197L14.6402 13.8097L14.6702 13.8097L14.7002 13.7997L14.7302 13.7897L14.7602 13.7797L14.7802 13.7697L14.8102 13.7497L14.8402 13.7397L14.8602 13.7197L14.8902 13.7097L14.9102 13.6897L14.9302 13.6697L14.9502 13.6497L14.9802 13.6297L14.9902 13.6097L15.0102 13.5797L15.0302 13.5597L15.0502 13.5297L15.0602 13.5097L15.0802 13.4797L15.0902 13.4597L15.1002 13.4297L15.1102 13.3997L15.1202 13.3697L15.1302 13.3397L15.1302 13.3197L15.1402 13.2897L15.1402 13.2597L15.1402 13.2297L15.1402 13.1997L15.1402 13.1697L15.1402 13.1397L15.1402 13.1097L15.1302 13.0797L15.1302 13.0497L15.1202 13.0197L15.1102 12.9897L15.1002 12.9697L15.0902 12.9397L15.0702 12.9097L15.0602 12.8897L15.0402 12.8597L15.0202 12.8397L15.0102 12.8097L14.9902 12.7897L14.9702 12.7697L14.9502 12.7497L14.9202 12.7297L14.9002 12.7097L14.8802 12.6897L14.8502 12.6797L14.8302 12.6597L14.8002 12.6497L14.7702 12.6397L14.7502 12.6197L14.7202 12.6097L14.6902 12.5997L14.6602 12.5997L14.6302 12.5897L14.6002 12.5897L14.5702 12.5797L14.5402 12.5797L12.3202 12.5797L12.3202 12.2597C12.3635 12.2442 12.4082 12.2286 12.4502 12.2097C12.4922 12.1908 12.5398 12.1718 12.5802 12.1497C12.6205 12.1275 12.6517 12.1049 12.6902 12.0797C12.7286 12.0545 12.7739 12.0279 12.8102 11.9997L14.9502 10.3097L14.9802 10.2897L15.0002 10.2597L15.0202 10.2397L15.0402 10.2197L15.0602 10.1897L15.0802 10.1697L15.0902 10.1397L15.1102 10.1197L15.1202 10.0897L15.1302 10.0597L15.1402 10.0297L15.1502 10.0097L15.1602 9.97971L15.1702 9.94971C15.1702 9.94971 15.1702 9.92972 15.1702 9.91971C15.1702 9.90969 15.1802 9.89978 15.1802 9.88971C15.1802 9.87963 15.1802 9.86983 15.1802 9.85971C15.1802 9.84959 15.1802 9.83984 15.1802 9.82971C15.1802 9.81958 15.1802 9.80983 15.1802 9.79971C15.1802 9.78958 15.1802 9.7698 15.1802 9.75971C15.1802 9.74962 15.1802 9.73975 15.1802 9.72971C15.1802 9.71967 15.1702 9.69971 15.1702 9.69971L15.1702 9.67971L15.1602 9.64971L15.1502 9.61971L15.1402 9.58971L15.1302 9.55971L15.1102 9.52971L15.1002 9.50971L15.0802 9.47971L15.0702 9.44971L15.0502 9.42971L15.0302 9.39971L15.0002 9.37971L14.9802 9.35971L14.9502 9.32971L14.9202 9.30971L14.8902 9.28971C14.8902 9.28971 14.8703 9.27971 14.8602 9.27971C14.8501 9.27971 14.8405 9.25971 14.8302 9.25971C14.8198 9.25971 14.8109 9.24971 14.8002 9.24971C14.7896 9.24971 14.7811 9.22971 14.7702 9.22971C14.7593 9.22971 14.7512 9.21971 14.7402 9.21971C14.7291 9.21971 14.7114 9.20971 14.7002 9.20971C14.6889 9.20971 14.6815 9.20971 14.6702 9.20971C14.6588 9.20971 14.6517 9.19971 14.6402 9.19971C14.6288 9.19971 14.6117 9.19971 14.6002 9.19971C14.5887 9.19971 14.5817 9.19971 14.5702 9.19971L14.5402 9.19971L14.5102 9.19971L14.4902 9.19971L14.4602 9.20971L14.4302 9.20971L14.4102 9.21971L14.3802 9.22971L14.3602 9.22971L14.3302 9.23971L14.3102 9.24971L14.2802 9.26971L14.2602 9.27971L14.2402 9.28971L14.2102 9.30971L14.1902 9.31971L14.1702 9.33971L12.0302 11.0297L12.0202 11.0397L12.0002 11.0597L11.9802 11.0697L11.9602 11.0797L11.9402 11.0897L11.9202 11.0997L11.9002 11.1097L11.8802 11.1197L11.8602 11.1297L11.8402 11.1297L11.8202 11.1397L11.8002 11.1397L11.7802 11.1397L11.7602 11.1497L11.7302 11.1497L11.7102 11.1397C11.6957 11.1397 11.6846 11.1397 11.6702 11.1397C11.6558 11.1397 11.6445 11.1397 11.6302 11.1397C11.6159 11.1397 11.5942 11.1297 11.5802 11.1297C11.5662 11.1297 11.5539 11.1097 11.5402 11.1097C11.5266 11.1097 11.5134 11.0997 11.5002 11.0997C11.487 11.0997 11.4728 11.0797 11.4602 11.0797C11.4476 11.0797 11.4422 11.0597 11.4302 11.0597C11.4182 11.0597 11.4015 11.0297 11.3902 11.0297L9.2502 9.33971L9.2302 9.31971L9.2102 9.30971L9.1902 9.28971L9.1602 9.27971L9.14019 9.26971L9.1202 9.24971L9.0902 9.23971L9.0702 9.22971L9.0402 9.22971L9.0202 9.21971L8.9902 9.20971L8.9602 9.20971L8.9402 9.19971L8.9102 9.19971L8.8802 9.19971L8.8602 9.19971C8.84867 9.19971 8.83171 9.19971 8.8202 9.19971C8.80868 9.19971 8.80165 9.19971 8.7902 9.19971C8.77873 9.19971 8.76157 9.20971 8.7502 9.20971C8.73882 9.20971 8.73144 9.20971 8.7202 9.20971C8.70896 9.20971 8.70127 9.21971 8.6902 9.21971C8.67912 9.21971 8.66108 9.22971 8.6502 9.22971C8.63932 9.22971 8.63086 9.24971 8.6202 9.24971C8.60955 9.24971 8.60058 9.25971 8.5902 9.25971C8.57981 9.25971 8.57028 9.27971 8.56019 9.27971C8.55011 9.27971 8.5302 9.28971 8.5302 9.28971L8.5002 9.30971L8.4702 9.32971L8.4502 9.35971L8.4202 9.37971L8.4002 9.39971L8.3802 9.42971L8.3602 9.44971L8.3402 9.47971L8.3202 9.50971L8.31019 9.52971L8.2902 9.55971L8.2802 9.58971L8.2702 9.61971L8.2602 9.63971L8.2502 9.66971C8.2502 9.66971 8.2502 9.6897 8.2502 9.69971C8.2502 9.70972 8.2402 9.71962 8.2402 9.72971C8.2402 9.7398 8.2402 9.74957 8.2402 9.75971C8.2402 9.76987 8.2402 9.78952 8.2402 9.79971C8.2402 9.80989 8.2402 9.81953 8.2402 9.82971C8.2402 9.8399 8.2402 9.84954 8.2402 9.85971C8.2402 9.86989 8.2402 9.87957 8.2402 9.88971C8.2402 9.89984 8.2402 9.90964 8.2402 9.91971C8.2402 9.92978 8.2502 9.94971 8.2502 9.94971L8.2602 9.97971L8.2602 10.0097L8.2702 10.0397L8.2902 10.0597L8.3002 10.0897L8.31019 10.1197L8.3302 10.1497L8.3402 10.1697L8.3602 10.1997L8.3802 10.2197L8.4002 10.2397L8.4202 10.2597L8.4502 10.2897L8.4702 10.3097L10.6002 11.9897C10.6372 12.0169 10.6715 12.0351 10.7102 12.0597C10.7489 12.0844 10.7899 12.1176 10.8302 12.1397C10.8705 12.1618 10.9085 12.1803 10.9502 12.1997C10.9919 12.2191 11.0373 12.2331 11.0802 12.2497L11.0802 12.5697L8.8602 12.5697C8.8496 12.5697 8.84081 12.5697 8.8302 12.5697C8.8196 12.5697 8.81079 12.5697 8.8002 12.5697C8.78961 12.5697 8.77075 12.5697 8.7602 12.5697C8.74964 12.5697 8.74069 12.5797 8.7302 12.5797C8.71971 12.5797 8.71058 12.5797 8.7002 12.5797C8.6898 12.5797 8.68047 12.5897 8.6702 12.5897C8.65993 12.5897 8.65032 12.5997 8.64019 12.5997C8.63008 12.5997 8.6102 12.6097 8.6102 12.6097L8.5802 12.6197L8.5502 12.6297L8.5202 12.6497L8.5002 12.6597L8.4702 12.6797L8.4402 12.6997L8.4202 12.7197L8.4002 12.7397L8.3702 12.7597L8.35019 12.7897L8.3302 12.8097L8.31019 12.8397L8.3002 12.8597L8.2802 12.8897L8.2602 12.9197L8.2502 12.9497L8.2402 12.9797C8.2402 12.9797 8.2302 12.9996 8.2302 13.0097C8.2302 13.0097 8.2202 13.0295 8.2202 13.0397C8.2202 13.0499 8.2102 13.0594 8.2102 13.0697C8.2102 13.08 8.2102 13.0893 8.2102 13.0997C8.2102 13.1101 8.2002 13.1193 8.2002 13.1297C8.2002 13.1402 8.2002 13.1492 8.2002 13.1597C8.2002 13.1702 8.2002 13.1792 8.2002 13.1897C8.2002 13.2002 8.2002 13.2092 8.2002 13.2197C8.2002 13.2302 8.2002 13.2393 8.2002 13.2497C8.2002 13.2602 8.2102 13.2793 8.2102 13.2897C8.2102 13.3001 8.2102 13.3094 8.2102 13.3197C8.2102 13.33 8.2202 13.3395 8.2202 13.3497C8.2202 13.3599 8.2302 13.3797 8.2302 13.3797L8.2402 13.4097L8.2502 13.4397L8.2602 13.4697L8.2802 13.4897L8.3002 13.5197L8.31019 13.5497L8.3302 13.5697L8.35019 13.5997L8.3702 13.6197L8.4002 13.6397L8.4202 13.6597L8.4402 13.6797L8.4702 13.6997L8.5002 13.7197L8.5202 13.7397L8.5502 13.7497L8.5802 13.7597L8.6102 13.7797C8.6102 13.7797 8.63008 13.7897 8.64019 13.7897C8.65032 13.7897 8.65993 13.7897 8.6702 13.7897C8.68047 13.7897 8.6898 13.7997 8.7002 13.7997C8.71058 13.7997 8.71971 13.8097 8.7302 13.8097C8.74069 13.8097 8.74964 13.8097 8.7602 13.8097C8.77075 13.8097 8.78961 13.8097 8.8002 13.8097C8.81079 13.8097 8.8196 13.8097 8.8302 13.8097C8.84081 13.8097 8.8496 13.8097 8.8602 13.8097L11.0802 13.8097L11.0802 14.8297L8.8602 14.8297C8.8496 14.8297 8.84081 14.8297 8.8302 14.8297C8.8196 14.8297 8.81079 14.8297 8.8002 14.8297C8.78961 14.8297 8.77075 14.8297 8.7602 14.8297C8.74964 14.8297 8.74069 14.8297 8.7302 14.8297C8.71971 14.8297 8.71058 14.8397 8.7002 14.8397C8.6898 14.8397 8.68047 14.8497 8.6702 14.8497C8.65993 14.8497 8.65031 14.8497 8.64019 14.8497C8.63006 14.8497 8.6102 14.8597 8.6102 14.8597L8.5802 14.8797L8.5502 14.8897L8.5202 14.8997L8.5002 14.9197L8.4702 14.9397L8.4402 14.9597L8.4202 14.9797L8.4002 14.9997L8.3702 15.0197L8.35019 15.0397L8.3302 15.0697L8.31019 15.0897L8.3002 15.1197L8.2802 15.1497L8.2602 15.1697L8.2502 15.1997L8.2402 15.2297L8.2302 15.2597C8.2302 15.2597 8.2202 15.2796 8.2202 15.2897C8.2202 15.2999 8.2102 15.3094 8.2102 15.3197C8.2102 15.33 8.2102 15.3393 8.2102 15.3497C8.2102 15.3601 8.2002 15.3793 8.2002 15.3897C8.2002 15.4002 8.2002 15.4092 8.2002 15.4197C8.2002 15.4302 8.2002 15.4392 8.2002 15.4497C8.2002 15.4602 8.2002 15.4692 8.2002 15.4797C8.2002 15.4902 8.2002 15.4992 8.2002 15.5097C8.2002 15.5201 8.2102 15.5293 8.2102 15.5397C8.2102 15.5501 8.2102 15.5594 8.2102 15.5697C8.2102 15.58 8.2202 15.5896 8.2202 15.5997C8.2202 15.6099 8.2302 15.6196 8.2302 15.6297L8.2402 15.6597L8.2502 15.6897L8.2602 15.7197L8.2802 15.7497L8.3002 15.7797L8.31019 15.7997L8.3302 15.8297L8.35019 15.8497L8.3702 15.8797L8.4002 15.8997L8.4202 15.9197L8.4402 15.9397L8.4702 15.9597L8.5002 15.9797L8.5202 15.9897L8.5502 16.0097L8.5802 16.0197L8.6102 16.0297C8.6102 16.0297 8.63006 16.0397 8.64019 16.0397C8.65031 16.0397 8.65993 16.0497 8.6702 16.0497C8.68047 16.0497 8.6898 16.0597 8.7002 16.0597C8.71058 16.0597 8.71971 16.0597 8.7302 16.0597C8.74069 16.0597 8.74964 16.0697 8.7602 16.0697C8.77075 16.0697 8.78961 16.0697 8.8002 16.0697C8.81079 16.0697 8.8196 16.0697 8.8302 16.0697C8.84081 16.0697 8.8496 16.0697 8.8602 16.0697L11.0802 16.0697L11.0802 16.5797C11.0802 16.5899 11.0802 16.5995 11.0802 16.6097C11.0802 16.6199 11.0802 16.6296 11.0802 16.6397C11.0802 16.6499 11.0802 16.6596 11.0802 16.6697C11.0802 16.6798 11.0902 16.6896 11.0902 16.6997L11.1002 16.7297L11.1002 16.7597L11.1102 16.7897L11.1202 16.8197L11.1402 16.8397L11.1502 16.8697L11.1702 16.8997L11.1802 16.9197L11.2002 16.9497L11.2202 16.9697L11.2402 16.9997L11.2602 17.0197L11.2802 17.0397L11.3102 17.0597L11.3302 17.0797L11.3602 17.0997L11.3802 17.1097L11.4102 17.1297L11.4402 17.1397L11.4602 17.1497L11.4902 17.1597L11.5202 17.1697L11.5502 17.1797C11.5502 17.1797 11.5701 17.1897 11.5802 17.1897C11.5903 17.1897 11.6 17.1897 11.6102 17.1897C11.6204 17.1897 11.6299 17.1997 11.6402 17.1997C11.6504 17.1997 11.6599 17.1997 11.6702 17.1997Z' fill-rule='evenodd' fill='%237E84A3' %3E%3C/path%3E%3Cpath d='M11.8025 17.4L11.64 17.4C11.6183 17.4 11.5967 17.3966 11.5751 17.3899C11.5431 17.3892 11.51 17.3812 11.4758 17.3661L11.4568 17.3597L11.4268 17.3497L11.3833 17.3352L11.3633 17.3252L11.3213 17.3113L11.2794 17.2833L11.2594 17.2733L11.2026 17.2354L11.1826 17.2154L11.1526 17.1954L11.1186 17.1614L11.0846 17.1274L11.0646 17.0974L11.0446 17.0774L11.0067 17.0206L10.9967 17.0006L10.9687 16.9587L10.9652 16.948L10.9452 16.928L10.9203 16.8533L10.9 16.7925L10.9 16.7625L10.8984 16.7578C10.8862 16.7286 10.88 16.6993 10.88 16.67L10.88 16.27L8.76 16.27C8.73821 16.27 8.71653 16.2666 8.69496 16.2599C8.66828 16.2593 8.6417 16.2536 8.61522 16.2428C8.60593 16.2404 8.59665 16.2374 8.58737 16.2337C8.57044 16.2297 8.55323 16.2238 8.53574 16.2161L8.51675 16.2097L8.46134 16.1913L8.41942 16.1633L8.39942 16.1533L8.35906 16.1264L8.31258 16.0954L8.27858 16.0614L8.27258 16.0554L8.22578 16.0242L8.19458 15.9774L8.17457 15.9574L8.13668 15.9006L8.12668 15.8806L8.11359 15.8609L8.07873 15.8087L8.06026 15.7533L8.05026 15.7232L8.03852 15.688C8.03385 15.677 8.03007 15.6659 8.02717 15.6548C8.01639 15.6282 8.01069 15.6016 8.01006 15.575C8.00335 15.5534 8 15.5317 8 15.51L8 15.39C8 15.3696 8.00333 15.3476 8.01 15.3238L8.01 15.32C8.01 15.2924 8.01544 15.2648 8.02632 15.2373C8.0303 15.2204 8.03617 15.2033 8.04392 15.1858L8.05026 15.1667L8.06026 15.1368L8.08519 15.062L8.12019 15.027L8.13519 14.982L8.17457 14.9426L8.19458 14.9126L8.24258 14.8646L8.27258 14.8446L8.27858 14.8386L8.31258 14.8046L8.35906 14.7736L8.37258 14.7646L8.41196 14.7252L8.48675 14.7003L8.49135 14.6987L8.5092 14.6868L8.52009 14.6814C8.55983 14.6614 8.59814 14.6509 8.63502 14.6501C8.63844 14.649 8.64185 14.648 8.64527 14.6471C8.67336 14.6357 8.7016 14.63 8.73 14.63L10.88 14.63L10.88 14.01L8.73 14.01C8.7016 14.01 8.67336 14.0043 8.64526 13.9929C8.64185 13.992 8.63843 13.991 8.63503 13.9899C8.59816 13.9891 8.55986 13.9787 8.52012 13.9587L8.50922 13.9532L8.49135 13.9413L8.48675 13.9397L8.41196 13.9148L8.37258 13.8754L8.35906 13.8664L8.31258 13.8354L8.27858 13.8014L8.27258 13.7954L8.24258 13.7754L8.19458 13.7274L8.17457 13.6974L8.13519 13.658L8.12019 13.613L8.08519 13.578L8.06026 13.5033L8.05026 13.4732L8.04397 13.4543C8.03617 13.4368 8.03027 13.4195 8.02628 13.4025C8.01543 13.3751 8.01 13.3476 8.01 13.32L8.01 13.3162C8.00333 13.2925 8 13.2704 8 13.25L8 13.13C8 13.1083 8.00335 13.0866 8.01006 13.065C8.01067 13.0391 8.01608 13.0132 8.02628 12.9874C8.02929 12.9746 8.03338 12.9617 8.03856 12.9485C8.04239 12.9345 8.04751 12.9202 8.05392 12.9058L8.06026 12.8868L8.07873 12.8314L8.11359 12.7791L8.12668 12.7594L8.13668 12.7394L8.17457 12.6826L8.19458 12.6626L8.22578 12.6158L8.27258 12.5846L8.27858 12.5786L8.31258 12.5446L8.35906 12.5136L8.39942 12.4867L8.41942 12.4767L8.46134 12.4487L8.51675 12.4303L8.53575 12.4239C8.55324 12.4162 8.57044 12.4103 8.58736 12.4063C8.59664 12.4026 8.60593 12.3996 8.61523 12.3972C8.6417 12.3864 8.66828 12.3807 8.69496 12.3801C8.71653 12.3734 8.73821 12.37 8.76 12.37L10.8415 12.37C10.8007 12.3506 10.7648 12.3324 10.7338 12.3153C10.7109 12.3027 10.68 12.2827 10.6412 12.2552C10.6229 12.2423 10.6101 12.2335 10.6028 12.2288C10.5954 12.2242 10.5842 12.2172 10.569 12.2081C10.532 12.1858 10.5029 12.1668 10.4816 12.1512L10.4788 12.1491L8.3369 10.4597L8.30858 10.4314L8.27858 10.4014L8.25858 10.3814L8.23858 10.3614L8.20458 10.3274L8.16668 10.2706L8.15668 10.2506L8.12873 10.2086L8.11519 10.168L8.09519 10.148L8.06 10.0425L8.06 10.015C8.04667 9.9823 8.04 9.95063 8.04 9.92L8.04 9.73C8.04 9.70844 8.04333 9.68688 8.05 9.66533L8.05 9.63754L8.07476 9.56327L8.08476 9.54327L8.09026 9.52675L8.10873 9.47134L8.13668 9.42942L8.14668 9.40942L8.17359 9.36906L8.20458 9.32258L8.22458 9.30258L8.24458 9.27258L8.29258 9.22458L8.30578 9.21578L8.32578 9.18578L8.38906 9.14359L8.42927 9.11678L8.44023 9.11128C8.45002 9.10636 8.45972 9.10202 8.46933 9.09827C8.4878 9.08537 8.50721 9.07574 8.52756 9.06936C8.55407 9.05046 8.58266 9.03836 8.61335 9.03308C8.62098 9.03066 8.62847 9.02857 8.6358 9.02683C8.66347 9.01561 8.69154 9.01 8.72 9.01L8.72353 9.01C8.74706 9.00333 8.76922 9 8.79 9L8.98721 9L9.00721 9.01L9.02246 9.01L9.08246 9.03L9.11721 9.03L9.16673 9.05476L9.22804 9.07519L9.25304 9.10019L9.29804 9.11519L9.32847 9.14563L9.34847 9.15563L9.38314 9.1903L11.4987 10.861C11.5107 10.8683 11.5223 10.8769 11.5336 10.8869C11.5431 10.8923 11.5523 10.8985 11.5611 10.9056C11.5648 10.9074 11.5684 10.9094 11.572 10.9116C11.5739 10.9121 11.5758 10.9127 11.5776 10.9134C11.6023 10.9178 11.6262 10.9266 11.6495 10.9399L11.6499 10.94L11.7728 10.94L11.7928 10.93L11.8128 10.93L11.8815 10.8956L11.8969 10.8803L14.0369 9.1903L14.0715 9.15563L14.1094 9.13668L14.1394 9.11668L14.1706 9.10111L14.1794 9.09668L14.2094 9.07668L14.2533 9.05476L14.3275 9.03L14.3428 9.03L14.3828 9.01L14.4275 9.01L14.4575 9L14.64 9C14.6621 9 14.6839 9.00336 14.7055 9.01008C14.7277 9.0107 14.7516 9.01509 14.7772 9.02324C14.793 9.02603 14.8088 9.03061 14.8245 9.03698C14.8485 9.04338 14.8712 9.05418 14.8925 9.06937C14.9128 9.07575 14.9322 9.08537 14.9506 9.09824C14.9602 9.10201 14.97 9.10636 14.9798 9.11129L14.9907 9.1168L15.0309 9.14359L15.0774 9.17457L15.1214 9.21858L15.1274 9.22458L15.1742 9.25578L15.2054 9.30258L15.2448 9.34196L15.2613 9.39135L15.2733 9.40942L15.2833 9.42942L15.3113 9.47134L15.3297 9.52676L15.3397 9.55675L15.3497 9.58676L15.37 9.64754L15.37 9.66349C15.3767 9.68618 15.38 9.70835 15.38 9.73L15.38 9.89C15.38 9.91156 15.3767 9.93311 15.37 9.95466L15.37 9.98246L15.3497 10.0432L15.3352 10.0867L15.3252 10.1067L15.3197 10.1232L15.3097 10.1532L15.2848 10.228L15.2648 10.248L15.2548 10.278L15.2154 10.3174L15.1954 10.3474L15.1614 10.3814L15.1554 10.3874L15.1242 10.4342L15.0676 10.472L12.9327 12.1579C12.9105 12.1752 12.8768 12.1981 12.8317 12.2267C12.8169 12.2361 12.8062 12.243 12.7995 12.2473C12.7934 12.2513 12.7844 12.2573 12.7724 12.2654C12.7334 12.2915 12.7013 12.3115 12.676 12.3255C12.6511 12.3391 12.6141 12.3565 12.5651 12.3779C12.5634 12.3786 12.5618 12.3793 12.5602 12.38L14.6025 12.38L14.6325 12.39L14.6625 12.39L14.6925 12.4L14.7225 12.4L14.7832 12.4203L14.858 12.4452L14.878 12.4652L14.938 12.4852L14.958 12.5052L14.988 12.5152L15.0414 12.5686L15.0474 12.5746L15.0774 12.5946L15.1314 12.6486L15.1848 12.702L15.1948 12.732L15.1954 12.7326L15.2333 12.7894L15.2433 12.8094L15.2713 12.8513L15.2852 12.8933L15.2952 12.9133L15.3097 12.9568L15.33 13.0175L15.33 13.0475L15.34 13.0775L15.34 13.3225L15.33 13.3525L15.33 13.3724L15.3097 13.4333L15.2997 13.4632L15.2897 13.4932L15.2752 13.5367L15.2533 13.5806L15.2333 13.6106L15.2233 13.6306L15.1854 13.6874L15.1654 13.7074L15.1633 13.7106L15.1351 13.767L15.0774 13.8054L15.0714 13.8114L15.0514 13.8314L14.998 13.8848L14.968 13.8948L14.948 13.9148L14.8987 13.9313L14.8806 13.9433L14.8367 13.9652L14.7932 13.9797L14.7633 13.9897L14.7025 14.01L14.6725 14.01L14.6425 14.02L12.52 14.02L12.52 14.64L14.67 14.64C14.6984 14.64 14.7266 14.6457 14.7547 14.6571C14.7648 14.6598 14.7748 14.6631 14.7848 14.6672C14.7941 14.6696 14.8033 14.6726 14.8126 14.6763C14.8295 14.6803 14.8467 14.6862 14.8642 14.6939L14.8832 14.7003L14.9387 14.7187L14.9806 14.7467L15.0006 14.7567L15.0409 14.7836L15.0874 14.8146L15.1274 14.8546L15.1574 14.8746L15.2054 14.9226L15.2254 14.9526L15.2454 14.9726L15.2913 15.0413L15.3013 15.0714L15.3133 15.0894L15.3352 15.1333L15.3461 15.1658C15.3525 15.1802 15.3576 15.1945 15.3614 15.2085C15.3666 15.2217 15.3707 15.2346 15.3737 15.2474C15.3846 15.2749 15.39 15.3024 15.39 15.33L15.39 15.3352C15.3967 15.3567 15.4 15.3783 15.4 15.4L15.4 15.52C15.4 15.5418 15.3966 15.5635 15.3899 15.585C15.3893 15.6069 15.385 15.6307 15.3769 15.6565C15.374 15.6744 15.3688 15.6927 15.3615 15.7113C15.3563 15.7303 15.3488 15.7497 15.3389 15.7694L15.3352 15.7767L15.3213 15.8186L15.3013 15.8486L15.2913 15.8787L15.2454 15.9474L15.2054 15.9874L15.1742 16.0342L15.1274 16.0654L15.0874 16.1054L15.0409 16.1364L15.0006 16.1633L14.9806 16.1733L14.9387 16.2013L14.8833 16.2197L14.8642 16.2261C14.8467 16.2338 14.8295 16.2397 14.8126 16.2437C14.8033 16.2474 14.7941 16.2504 14.7848 16.2528C14.7575 16.2639 14.7301 16.2697 14.7025 16.27L14.6725 16.28L12.52 16.28L12.52 16.7125L12.4997 16.7733L12.49 16.8025L12.49 16.8506L12.4513 16.9086L12.4452 16.9267L12.4233 16.9706L12.4113 16.9887L12.3948 17.038L12.3354 17.0974L12.3154 17.1274L12.2614 17.1814L12.2274 17.2154L12.1706 17.2533L12.1506 17.2633L12.1474 17.2654L12.108 17.3048L12.0332 17.3297L12.0033 17.3397L11.9732 17.3497L11.9567 17.3552L11.9367 17.3652L11.8624 17.39L11.8325 17.39L11.8025 17.4ZM8.69 9.02C8.6827 9.02 8.67521 9.02042 8.66753 9.02125C8.6748 9.02042 8.68229 9.02 8.69 9.02ZM14.74 9.02C14.7496 9.02 14.7582 9.02052 14.7659 9.02157C14.7573 9.02052 14.7487 9.02 14.74 9.02ZM8.65 9.03C8.6425 9.03 8.63511 9.03037 8.62783 9.0311C8.63455 9.03037 8.64194 9.03 8.65 9.03ZM8.62 9.05C8.59979 9.05 8.57968 9.05288 8.55965 9.05864C8.57807 9.05288 8.59818 9.05 8.62 9.05ZM14.8 9.05C14.8218 9.05 14.842 9.05289 14.8604 9.05865C14.8404 9.05289 14.8202 9.05 14.8 9.05ZM8.56 9.08C8.54395 9.08 8.52761 9.08183 8.511 9.08549C8.52624 9.08183 8.54258 9.08 8.56 9.08ZM14.86 9.08C14.8774 9.08 14.8936 9.08181 14.9088 9.08544C14.8923 9.08181 14.876 9.08 14.86 9.08ZM11.58 17.19C11.5699 17.19 11.55 17.18 11.55 17.18L11.52 17.17L11.49 17.16L11.46 17.15L11.44 17.14L11.41 17.13L11.38 17.11L11.36 17.1L11.33 17.08L11.31 17.06L11.28 17.04L11.24 17L11.22 16.97L11.2 16.95L11.18 16.92L11.17 16.9L11.15 16.87L11.14 16.84L11.12 16.82L11.11 16.79L11.1 16.76L11.1 16.73L11.09 16.7C11.09 16.6899 11.08 16.6801 11.08 16.67L11.08 16.07L8.76 16.07C8.74944 16.07 8.74049 16.06 8.73 16.06L8.7 16.06C8.6896 16.06 8.68027 16.05 8.67 16.05C8.65973 16.05 8.65011 16.04 8.64 16.04C8.62987 16.04 8.61 16.03 8.61 16.03L8.58 16.02L8.55 16.01L8.52 15.99L8.5 15.98L8.47 15.96L8.44 15.94L8.4 15.9L8.37 15.88L8.35 15.85L8.33 15.83L8.31 15.8L8.3 15.78L8.28 15.75L8.26 15.72L8.25 15.69L8.24 15.66L8.23 15.63C8.23 15.6199 8.22 15.6102 8.22 15.6C8.22 15.5899 8.21 15.5803 8.21 15.57L8.21 15.54C8.21 15.5296 8.2 15.5204 8.2 15.51L8.2 15.39C8.2 15.3796 8.21 15.3604 8.21 15.35L8.21 15.32C8.21 15.3097 8.22 15.3002 8.22 15.29C8.22 15.2799 8.23 15.26 8.23 15.26L8.24 15.23L8.25 15.2L8.26 15.17L8.28 15.15L8.3 15.12L8.31 15.09L8.33 15.07L8.35 15.04L8.37 15.02L8.4 15L8.44 14.96L8.47 14.94L8.5 14.92L8.52 14.9L8.55 14.89L8.58 14.88L8.61 14.86C8.61 14.86 8.62987 14.85 8.64 14.85L8.67 14.85C8.68027 14.85 8.6896 14.84 8.7 14.84C8.71038 14.84 8.71951 14.83 8.73 14.83L11.08 14.83L11.08 13.81L8.73 13.81C8.71951 13.81 8.71038 13.8 8.7 13.8C8.6896 13.8 8.68027 13.79 8.67 13.79L8.64 13.79C8.62988 13.79 8.61 13.78 8.61 13.78L8.58 13.76L8.55 13.75L8.52 13.74L8.5 13.72L8.47 13.7L8.44 13.68L8.4 13.64L8.37 13.62L8.35 13.6L8.33 13.57L8.31 13.55L8.3 13.52L8.28 13.49L8.26 13.47L8.25 13.44L8.24 13.41L8.23 13.38C8.23 13.38 8.22 13.3602 8.22 13.35C8.22 13.3398 8.21 13.3303 8.21 13.32L8.21 13.29C8.21 13.2796 8.2 13.2605 8.2 13.25L8.2 13.13C8.2 13.1196 8.21 13.1104 8.21 13.1L8.21 13.07C8.21 13.0597 8.22 13.0502 8.22 13.04C8.22 13.0298 8.23 13.01 8.23 13.01C8.23 12.9999 8.24 12.98 8.24 12.98L8.25 12.95L8.26 12.92L8.28 12.89L8.3 12.86L8.31 12.84L8.33 12.81L8.35 12.79L8.37 12.76L8.4 12.74L8.44 12.7L8.47 12.68L8.5 12.66L8.52 12.65L8.55 12.63L8.61 12.61C8.61 12.61 8.62988 12.6 8.64 12.6C8.65012 12.6 8.65973 12.59 8.67 12.59C8.68027 12.59 8.6896 12.58 8.7 12.58L8.73 12.58C8.74049 12.58 8.74944 12.57 8.76 12.57L11.08 12.57L11.08 12.25C11.0371 12.2334 10.9917 12.2194 10.95 12.2C10.9083 12.1806 10.8703 12.1621 10.83 12.14C10.7897 12.1179 10.7487 12.0847 10.71 12.06C10.6713 12.0354 10.637 12.0172 10.6 11.99L8.47 10.31L8.45 10.29L8.42 10.26L8.38 10.22L8.36 10.2L8.34 10.17L8.33 10.15L8.31 10.12L8.3 10.09L8.29 10.06L8.27 10.04L8.26 10.01L8.26 9.98L8.25 9.95C8.25 9.95 8.24 9.93007 8.24 9.92L8.24 9.73C8.24 9.71991 8.25 9.71001 8.25 9.7L8.25 9.67L8.26 9.64L8.27 9.62L8.28 9.59L8.29 9.56L8.31 9.53L8.32 9.51L8.34 9.48L8.36 9.45L8.38 9.43L8.4 9.4L8.42 9.38L8.45 9.36L8.47 9.33L8.53 9.29C8.53 9.29 8.54991 9.28 8.56 9.28C8.57008 9.28 8.57962 9.26 8.59 9.26C8.60039 9.26 8.60935 9.25 8.62 9.25C8.63066 9.25 8.63912 9.23 8.65 9.23C8.66088 9.23 8.67892 9.22 8.69 9.22C8.70108 9.22 8.70876 9.21 8.72 9.21L8.75 9.21C8.76137 9.21 8.77853 9.2 8.79 9.2L8.94 9.2L8.96 9.21L8.99 9.21L9.02 9.22L9.04 9.23L9.07 9.23L9.09 9.24L9.12 9.25L9.14 9.27L9.16 9.28L9.19 9.29L9.21 9.31L9.23 9.32L9.25 9.34L11.39 11.03C11.4013 11.03 11.418 11.06 11.43 11.06C11.442 11.06 11.4474 11.08 11.46 11.08C11.4726 11.08 11.4868 11.1 11.5 11.1C11.5132 11.1 11.5264 11.11 11.54 11.11C11.5537 11.11 11.566 11.13 11.58 11.13C11.594 11.13 11.6157 11.14 11.63 11.14L11.71 11.14L11.73 11.15L11.76 11.15L11.78 11.14L11.82 11.14L11.84 11.13L11.86 11.13L12 11.06L12.03 11.03L14.17 9.34L14.19 9.32L14.21 9.31L14.24 9.29L14.26 9.28L14.28 9.27L14.31 9.25L14.33 9.24L14.36 9.23L14.38 9.23L14.41 9.22L14.43 9.21L14.46 9.21L14.49 9.2L14.64 9.2C14.6515 9.2 14.6586 9.21 14.67 9.21L14.7 9.21C14.7112 9.21 14.7289 9.22 14.74 9.22C14.751 9.22 14.7591 9.23 14.77 9.23C14.7809 9.23 14.7894 9.25 14.8 9.25C14.8107 9.25 14.8196 9.26 14.83 9.26C14.8403 9.26 14.8499 9.28 14.86 9.28C14.8701 9.28 14.89 9.29 14.89 9.29L14.92 9.31L14.95 9.33L14.98 9.36L15 9.38L15.03 9.4L15.05 9.43L15.07 9.45L15.08 9.48L15.1 9.51L15.11 9.53L15.13 9.56L15.14 9.59L15.15 9.62L15.16 9.65L15.17 9.68L15.17 9.7C15.17 9.7 15.18 9.71996 15.18 9.73L15.18 9.89C15.18 9.90007 15.17 9.90998 15.17 9.92L15.17 9.95L15.16 9.98L15.15 10.01L15.14 10.03L15.13 10.06L15.12 10.09L15.11 10.12L15.09 10.14L15.08 10.17L15.06 10.19L15.04 10.22L15 10.26L14.98 10.29L14.95 10.31L12.81 12C12.7737 12.0282 12.7284 12.0548 12.69 12.08C12.6515 12.1052 12.6203 12.1278 12.58 12.15C12.5396 12.1721 12.492 12.1911 12.45 12.21C12.408 12.2289 12.3633 12.2445 12.32 12.26L12.32 12.58L14.57 12.58L14.6 12.59L14.63 12.59L14.66 12.6L14.69 12.6L14.75 12.62L14.77 12.64L14.8 12.65L14.83 12.66L14.85 12.68L14.88 12.69L14.92 12.73L14.95 12.75L15.01 12.81L15.02 12.84L15.04 12.86L15.06 12.89L15.07 12.91L15.09 12.94L15.1 12.97L15.11 12.99L15.12 13.02L15.13 13.05L15.13 13.08L15.14 13.11L15.14 13.29L15.13 13.32L15.13 13.34L15.12 13.37L15.11 13.4L15.1 13.43L15.09 13.46L15.08 13.48L15.06 13.51L15.05 13.53L15.03 13.56L15.01 13.58L14.99 13.61L14.98 13.63L14.95 13.65L14.91 13.69L14.89 13.71L14.86 13.72L14.84 13.74L14.81 13.75L14.78 13.77L14.76 13.78L14.73 13.79L14.7 13.8L14.67 13.81L14.64 13.81L14.61 13.82L12.32 13.82L12.32 14.84L14.67 14.84C14.6805 14.84 14.6896 14.85 14.7 14.85C14.7104 14.85 14.7197 14.86 14.73 14.86C14.7402 14.86 14.7499 14.87 14.76 14.87C14.7701 14.87 14.79 14.88 14.79 14.88L14.82 14.89L14.85 14.9L14.88 14.92L14.9 14.93L14.96 14.97L15 15.01L15.03 15.03L15.05 15.05L15.07 15.08L15.09 15.1L15.11 15.13L15.12 15.16L15.14 15.19L15.15 15.21L15.16 15.24C15.16 15.24 15.17 15.2599 15.17 15.27C15.17 15.27 15.18 15.2898 15.18 15.3C15.18 15.3102 15.19 15.3197 15.19 15.33L15.19 15.37C15.19 15.3804 15.2 15.3895 15.2 15.4L15.2 15.52C15.2 15.5305 15.19 15.5396 15.19 15.55L15.19 15.58C15.19 15.5903 15.18 15.6098 15.18 15.62C15.18 15.6302 15.17 15.65 15.17 15.65C15.17 15.6601 15.16 15.68 15.16 15.68L15.15 15.7L15.14 15.73L15.12 15.76L15.11 15.79L15.09 15.82L15.05 15.86L15.03 15.89L15 15.91L14.96 15.95L14.9 15.99L14.88 16L14.85 16.02L14.82 16.03L14.79 16.04C14.79 16.04 14.7701 16.05 14.76 16.05C14.7499 16.05 14.7402 16.06 14.73 16.06C14.7197 16.06 14.7104 16.07 14.7 16.07L14.67 16.07L14.64 16.08L12.32 16.08L12.32 16.68L12.31 16.71L12.3 16.74L12.29 16.76L12.29 16.79L12.27 16.82L12.26 16.85L12.25 16.87L12.23 16.9L12.22 16.93L12.18 16.97L12.16 17L12.1 17.06L12.07 17.08L12.05 17.09L12.02 17.11L12 17.13L11.97 17.14L11.94 17.15L11.91 17.16L11.88 17.17L11.86 17.18L11.83 17.19L11.8 17.19L11.77 17.2L11.64 17.2C11.6298 17.2 11.6202 17.19 11.61 17.19L11.58 17.19ZM11.5267 10.8909C11.5194 10.8884 11.512 10.8864 11.5047 10.8848L11.5048 10.8846C11.5124 10.8863 11.5196 10.8883 11.5267 10.8909ZM11.5 10.9C11.5128 10.9 11.5249 10.901 11.5363 10.903C11.524 10.901 11.5119 10.9 11.5 10.9ZM11.58 10.93L11.5877 10.9301L11.5877 10.9302L11.58 10.93ZM11.6118 10.9323C11.6035 10.9312 11.5955 10.9305 11.5879 10.9302L11.5879 10.9301C11.5961 10.9304 11.6041 10.9312 11.6118 10.9323Z' fill-rule='evenodd' fill='%237E84A3' %3E%3C/path%3E%3Cpath d='M18.5621 5.6001C18.3753 4.63161 17.5231 3.9001 16.5001 3.9001L6.0001 3.9001C4.8403 3.9001 3.9001 4.8403 3.9001 6.0001L3.9001 18.0001C3.9001 19.1599 4.8403 20.1001 6.0001 20.1001L18.0001 20.1001C19.1599 20.1001 20.1001 19.1599 20.1001 18.0001L20.1001 8.0001C20.1001 7.66873 19.8315 7.4001 19.5001 7.4001L6.5001 7.4001C6.00304 7.4001 5.6001 6.99716 5.6001 6.5001C5.6001 6.00304 6.00304 5.6001 6.5001 5.6001L18.5621 5.6001ZM20.3935 5.77191C21.2766 6.1263 21.9001 6.99038 21.9001 8.0001L21.9001 18.0001C21.9001 20.154 20.154 21.9001 18.0001 21.9001L6.0001 21.9001C3.84619 21.9001 2.1001 20.154 2.1001 18.0001L2.1001 6.0001C2.1001 3.84619 3.84619 2.1001 6.0001 2.1001L16.5001 2.1001C18.5774 2.1001 20.2754 3.7242 20.3935 5.77191Z' fill-rule='evenodd' fill='%237E84A3' %3E%3C/path%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:business1{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M4.3802 3.90515C4.37238 3.90515 4.36459 3.90534 4.35682 3.90572C4.34902 3.90612 4.34125 3.9067 4.33348 3.90745C4.32571 3.90821 4.31799 3.90917 4.31026 3.91033C4.30254 3.91146 4.29486 3.91279 4.2872 3.91431C4.27954 3.91583 4.27193 3.91754 4.26437 3.91944C4.2568 3.92134 4.24929 3.92342 4.24183 3.92568C4.23435 3.92795 4.22695 3.9304 4.21961 3.93302C4.21226 3.93565 4.20498 3.93846 4.19778 3.94145C4.19056 3.94443 4.18343 3.94759 4.17638 3.95093C4.16933 3.95426 4.16236 3.95776 4.15548 3.96144C4.1486 3.96512 4.14182 3.96896 4.13513 3.97297C4.12843 3.97698 4.12184 3.98116 4.11535 3.9855C4.10886 3.98983 4.10249 3.99432 4.09623 3.99897C4.08996 4.00362 4.08381 4.00842 4.07777 4.01337C4.07174 4.01831 4.06584 4.0234 4.06007 4.02864C4.05428 4.03388 4.04863 4.03926 4.04311 4.04478C4.0376 4.05029 4.03222 4.05594 4.02698 4.06173C4.02174 4.0675 4.01665 4.07341 4.01171 4.07944C4.00676 4.08547 4.00196 4.09162 3.99731 4.0979C3.99266 4.10416 3.98817 4.11053 3.98384 4.11702C3.9795 4.1235 3.97532 4.1301 3.97131 4.1368C3.9673 4.14348 3.96345 4.15026 3.95978 4.15715C3.9561 4.16403 3.9526 4.17099 3.94927 4.17804C3.94593 4.18509 3.94277 4.19222 3.93979 4.19944C3.9368 4.20664 3.93399 4.21392 3.93136 4.22127C3.92873 4.22861 3.92628 4.23602 3.92402 4.24349C3.92176 4.25095 3.91968 4.25846 3.91778 4.26603C3.91588 4.27359 3.91417 4.28121 3.91265 4.28886C3.91113 4.29652 3.9098 4.3042 3.90866 4.31192C3.90751 4.31965 3.90655 4.32738 3.90579 4.33515C3.90503 4.34292 3.90445 4.35069 3.90406 4.35848C3.90368 4.36627 3.90349 4.37407 3.90349 4.38186L3.90349 20.5732C3.90349 20.8366 4.11683 21.0499 4.3802 21.0499L16.2829 21.0499L16.2829 4.38186C16.2829 4.37409 16.2827 4.3663 16.2823 4.35853C16.2819 4.35076 16.2813 4.34299 16.2806 4.33524C16.2798 4.32749 16.2789 4.31976 16.2777 4.31206C16.2766 4.30438 16.2753 4.2967 16.2737 4.28907C16.2722 4.28143 16.2705 4.27383 16.2686 4.26628C16.2667 4.25873 16.2647 4.25123 16.2624 4.24379C16.2602 4.23633 16.2577 4.22894 16.2551 4.22161C16.2525 4.21428 16.2497 4.20701 16.2467 4.19983C16.2438 4.19263 16.2406 4.18551 16.2373 4.17848C16.234 4.17143 16.2305 4.16447 16.2268 4.1576C16.2232 4.15074 16.2193 4.14396 16.2153 4.13727C16.2113 4.13059 16.2072 4.12401 16.2029 4.11754C16.1986 4.11107 16.1941 4.1047 16.1894 4.09844C16.1848 4.09218 16.18 4.08604 16.1751 4.08001C16.1702 4.07398 16.1651 4.06807 16.1599 4.0623C16.1547 4.05653 16.1493 4.05088 16.1438 4.04537C16.1383 4.03985 16.1327 4.03448 16.1269 4.02923C16.1212 4.02401 16.1153 4.01892 16.1093 4.01397C16.1033 4.00902 16.0972 4.00421 16.0909 3.99956C16.0847 3.99492 16.0783 3.99042 16.0719 3.98607C16.0654 3.98174 16.0588 3.97757 16.0522 3.97354C16.0455 3.96953 16.0387 3.96568 16.0319 3.96199C16.025 3.95829 16.0181 3.95478 16.0111 3.95144C16.004 3.94809 15.9969 3.94493 15.9897 3.94193C15.9826 3.93892 15.9753 3.9361 15.968 3.93346C15.9607 3.93081 15.9533 3.92835 15.9458 3.92607C15.9384 3.92379 15.9309 3.9217 15.9233 3.91978C15.9158 3.91787 15.9082 3.91614 15.9006 3.91461C15.8929 3.91306 15.8853 3.9117 15.8776 3.91053C15.8699 3.90938 15.8622 3.9084 15.8544 3.90761C15.8467 3.90682 15.8389 3.90622 15.8312 3.90581C15.8234 3.9054 15.8156 3.90518 15.8078 3.90515L4.3802 3.90515ZM20.0948 10.5724C21.1466 10.5724 22 11.4275 22 12.4775L22 20.5732C22 21.89 20.9333 22.9551 19.6181 22.9551L4.38186 22.9551C3.06508 22.9551 2 21.8883 2 20.5732L2 4.38186C2 3.06509 3.06675 2 4.38186 2L15.8112 2C17.1263 2 18.1914 3.06676 18.1914 4.38186L18.1914 10.5724L20.0965 10.5724L20.0948 10.5724ZM18.1897 12.4775L18.1897 21.0499L19.6181 21.0499C19.6259 21.0499 19.6337 21.0497 19.6415 21.0493C19.6493 21.049 19.6571 21.0484 19.6649 21.0476C19.6726 21.0469 19.6803 21.0459 19.6881 21.0448C19.6958 21.0436 19.7035 21.0423 19.7111 21.0408C19.7188 21.0392 19.7264 21.0375 19.734 21.0356C19.7415 21.0338 19.7491 21.0317 19.7565 21.0294C19.764 21.0271 19.7714 21.0247 19.7787 21.0221C19.7861 21.0194 19.7934 21.0166 19.8006 21.0136C19.8078 21.0106 19.8149 21.0075 19.822 21.0041C19.829 21.0008 19.836 20.9973 19.8429 20.9936C19.8497 20.99 19.8565 20.9861 19.8632 20.9821C19.8699 20.9781 19.8765 20.9739 19.883 20.9696C19.8895 20.9652 19.8958 20.9608 19.9021 20.9561C19.9084 20.9515 19.9145 20.9467 19.9206 20.9417C19.9266 20.9368 19.9325 20.9317 19.9383 20.9264C19.9441 20.9212 19.9497 20.9158 19.9552 20.9103C19.9607 20.9048 19.9661 20.8991 19.9714 20.8934C19.9766 20.8876 19.9817 20.8817 19.9866 20.8756C19.9916 20.8696 19.9964 20.8635 20.001 20.8572C20.0057 20.8509 20.0102 20.8446 20.0145 20.8381C20.0188 20.8316 20.023 20.825 20.027 20.8183C20.031 20.8116 20.0349 20.8048 20.0386 20.7979C20.0422 20.7911 20.0457 20.7841 20.0491 20.777C20.0524 20.77 20.0556 20.7628 20.0585 20.7556C20.0615 20.7484 20.0644 20.7412 20.067 20.7338C20.0696 20.7265 20.0721 20.7191 20.0743 20.7116C20.0766 20.7041 20.0787 20.6966 20.0806 20.6891C20.0825 20.6815 20.0842 20.6739 20.0857 20.6662C20.0872 20.6586 20.0885 20.6509 20.0897 20.6432C20.0908 20.6354 20.0918 20.6277 20.0925 20.6199C20.0933 20.6122 20.0939 20.6044 20.0943 20.5966C20.0947 20.5888 20.0948 20.581 20.0948 20.5732L20.0948 12.4775L18.1897 12.4775ZM4.85524 6.76206C4.85524 6.23702 5.28193 5.81199 5.80864 5.81199L9.61564 5.81199C9.63121 5.81199 9.64677 5.81238 9.66234 5.81313C9.6779 5.81388 9.69342 5.81505 9.70892 5.81657C9.72443 5.8181 9.73988 5.81999 9.75529 5.82229C9.77069 5.82457 9.78603 5.82724 9.80132 5.83027C9.81659 5.8333 9.83179 5.83672 9.8469 5.8405C9.86201 5.84428 9.877 5.84843 9.89191 5.85296C9.90681 5.8575 9.9216 5.86238 9.93627 5.86762C9.95093 5.87286 9.96547 5.87847 9.97985 5.88444C9.99423 5.89038 10.0085 5.8967 10.0226 5.90337C10.0366 5.91003 10.0505 5.91702 10.0643 5.92436C10.078 5.93172 10.0916 5.9394 10.1049 5.9474C10.1183 5.9554 10.1314 5.96374 10.1444 5.97238C10.1573 5.98104 10.1701 5.99001 10.1826 5.99929C10.1951 6.00856 10.2074 6.01813 10.2194 6.02802C10.2315 6.03789 10.2432 6.04808 10.2548 6.05854C10.2663 6.069 10.2776 6.07973 10.2886 6.09074C10.2996 6.10175 10.3104 6.11303 10.3208 6.12458C10.3313 6.13613 10.3415 6.14791 10.3513 6.15995C10.3612 6.172 10.3708 6.18426 10.3801 6.19677C10.3894 6.20928 10.3983 6.22202 10.407 6.23497C10.4156 6.24793 10.424 6.26108 10.432 6.27444C10.44 6.28779 10.4476 6.30135 10.455 6.31509C10.4623 6.32883 10.4693 6.34273 10.476 6.35682C10.4827 6.37088 10.489 6.38512 10.4949 6.39952C10.5009 6.4139 10.5065 6.42844 10.5117 6.44309C10.517 6.45777 10.5219 6.47256 10.5264 6.48746C10.5309 6.50236 10.5351 6.51736 10.5389 6.53247C10.5427 6.54758 10.5461 6.56278 10.5491 6.57804C10.5521 6.59334 10.5548 6.60867 10.5571 6.62408C10.5594 6.63948 10.5613 6.65493 10.5628 6.67045C10.5643 6.68595 10.5655 6.70147 10.5662 6.71703C10.567 6.7326 10.5674 6.74816 10.5674 6.76372C10.5674 6.77931 10.567 6.79488 10.5662 6.81044C10.5655 6.826 10.5643 6.84152 10.5628 6.85702C10.5613 6.87252 10.5594 6.88797 10.5571 6.90337C10.5548 6.9188 10.5521 6.93414 10.5491 6.9494C10.5461 6.96469 10.5427 6.97987 10.5389 6.99498C10.5351 7.01009 10.5309 7.02511 10.5264 7.04001C10.5219 7.05491 10.517 7.0697 10.5117 7.08436C10.5065 7.09903 10.5009 7.11357 10.4949 7.12795C10.489 7.14233 10.4827 7.15657 10.476 7.17066C10.4693 7.18474 10.4623 7.19864 10.455 7.21238C10.4476 7.22612 10.44 7.23966 10.432 7.25304C10.424 7.26639 10.4156 7.27954 10.407 7.29248C10.3983 7.30545 10.3894 7.31817 10.3801 7.33068C10.3708 7.34319 10.3612 7.35547 10.3513 7.3675C10.3415 7.37956 10.3313 7.39134 10.3208 7.40289C10.3104 7.41442 10.2996 7.4257 10.2886 7.43671C10.2776 7.44772 10.2663 7.45847 10.2548 7.46893C10.2432 7.47939 10.2315 7.48956 10.2194 7.49945C10.2074 7.50931 10.1951 7.51891 10.1826 7.52818C10.1701 7.53746 10.1573 7.54644 10.1444 7.55507C10.1314 7.56373 10.1183 7.57207 10.1049 7.58007C10.0916 7.58807 10.078 7.59575 10.0643 7.60309C10.0505 7.61045 10.0366 7.61744 10.0226 7.6241C10.0085 7.63075 9.99423 7.63707 9.97985 7.64304C9.96547 7.64898 9.95093 7.65459 9.93627 7.65983C9.9216 7.6651 9.90681 7.66997 9.89191 7.67448C9.877 7.67902 9.86201 7.68317 9.8469 7.68695C9.83179 7.69073 9.81659 7.69415 9.80132 7.69718C9.78603 7.70021 9.77069 7.70288 9.75529 7.70518C9.73988 7.70746 9.72443 7.70937 9.70892 7.7109C9.69342 7.71243 9.6779 7.71357 9.66234 7.71434C9.64677 7.71509 9.63121 7.71548 9.61564 7.71548L5.80864 7.71548C5.79303 7.7155 5.77744 7.71516 5.76183 7.71441C5.74625 7.71366 5.73068 7.71254 5.71514 7.71104C5.69962 7.70953 5.68413 7.70764 5.66868 7.70539C5.65322 7.70311 5.63784 7.70046 5.62253 7.69743C5.60721 7.6944 5.59199 7.69101 5.57684 7.68725C5.56168 7.68346 5.54664 7.67932 5.53169 7.6748C5.51677 7.67029 5.50193 7.66541 5.48723 7.66015C5.47254 7.65491 5.45795 7.6493 5.44353 7.64336C5.4291 7.63738 5.41484 7.63107 5.40073 7.62442C5.3866 7.61774 5.37265 7.61074 5.35889 7.60338C5.3451 7.59605 5.33152 7.58837 5.31814 7.58035C5.30475 7.57232 5.29155 7.56398 5.27856 7.5553C5.26559 7.54664 5.25283 7.53766 5.24028 7.52837C5.22774 7.51907 5.21544 7.50947 5.20336 7.49958C5.19131 7.48967 5.17948 7.47948 5.1679 7.469C5.15635 7.45852 5.14504 7.44776 5.13399 7.43671C5.12296 7.42568 5.11221 7.41438 5.10172 7.4028C5.09124 7.39125 5.08105 7.37942 5.07114 7.36734C5.06123 7.35529 5.05163 7.34298 5.04234 7.33043C5.03306 7.31789 5.02408 7.30513 5.0154 7.29214C5.00674 7.27917 4.9984 7.26598 4.99038 7.25258C4.98236 7.23918 4.97468 7.2256 4.96732 7.21183C4.95996 7.19805 4.95296 7.1841 4.94631 7.17C4.93963 7.15589 4.93332 7.1416 4.92737 7.12718C4.9214 7.11275 4.91579 7.09819 4.91055 7.08349C4.90531 7.06879 4.90043 7.05396 4.89592 7.03901C4.89141 7.02408 4.88726 7.00902 4.88348 6.99386C4.87972 6.97871 4.8763 6.96349 4.87327 6.94817C4.87024 6.93286 4.8676 6.91748 4.86534 6.90205C4.86308 6.8866 4.86119 6.8711 4.85969 6.85556C4.85816 6.84002 4.85705 6.82446 4.85632 6.80887C4.85556 6.79328 4.85522 6.77767 4.85524 6.76206ZM4.85524 10.0957C4.85524 9.57063 5.28193 9.14559 5.80864 9.14559L11.5225 9.14559C11.538 9.14559 11.5536 9.14597 11.5692 9.14675C11.5847 9.1475 11.6002 9.14866 11.6158 9.15019C11.6313 9.15172 11.6467 9.15361 11.6621 9.15589C11.6775 9.15819 11.6928 9.16085 11.7081 9.16389C11.7234 9.16692 11.7386 9.17033 11.7537 9.17412C11.7688 9.1779 11.7838 9.18205 11.7987 9.18658C11.8136 9.1911 11.8284 9.19597 11.8431 9.20124C11.8577 9.20648 11.8723 9.21208 11.8867 9.21805C11.9011 9.224 11.9153 9.23031 11.9294 9.23697C11.9435 9.24364 11.9574 9.25064 11.9711 9.25798C11.9849 9.26532 11.9984 9.273 12.0117 9.281C12.0251 9.28899 12.0383 9.29733 12.0512 9.30599C12.0642 9.31465 12.0769 9.32361 12.0894 9.33288C12.1019 9.34216 12.1142 9.35175 12.1262 9.36164C12.1383 9.37151 12.1501 9.38167 12.1616 9.39213C12.1732 9.40259 12.1844 9.41335 12.1954 9.42436C12.2065 9.43536 12.2172 9.44664 12.2277 9.4582C12.2381 9.46973 12.2483 9.48151 12.2582 9.49356C12.268 9.5056 12.2776 9.51788 12.2869 9.53039C12.2962 9.5429 12.3051 9.55562 12.3138 9.56858C12.3225 9.58153 12.3308 9.59468 12.3388 9.60805C12.3468 9.62141 12.3545 9.63494 12.3618 9.64869C12.3692 9.66243 12.3762 9.67635 12.3828 9.69041C12.3895 9.70449 12.3958 9.71874 12.4018 9.73312C12.4077 9.74752 12.4133 9.76206 12.4186 9.77671C12.4238 9.79136 12.4287 9.80615 12.4332 9.82106C12.4378 9.83596 12.4419 9.85098 12.4457 9.86609C12.4495 9.8812 12.4529 9.89639 12.4559 9.91166C12.4589 9.92695 12.4616 9.94229 12.4639 9.9577C12.4662 9.9731 12.4681 9.98855 12.4696 10.004C12.4712 10.0196 12.4723 10.0351 12.4731 10.0506C12.4738 10.0662 12.4742 10.0818 12.4742 10.0973C12.4742 10.1129 12.4738 10.1285 12.4731 10.144C12.4723 10.1596 12.4712 10.1751 12.4696 10.1906C12.4681 10.2061 12.4662 10.2216 12.4639 10.237C12.4616 10.2524 12.4589 10.2677 12.4559 10.283C12.4529 10.2983 12.4495 10.3135 12.4457 10.3286C12.4419 10.3437 12.4378 10.3587 12.4332 10.3736C12.4287 10.3885 12.4238 10.4033 12.4186 10.418C12.4133 10.4326 12.4077 10.4472 12.4018 10.4616C12.3958 10.4759 12.3895 10.4902 12.3828 10.5043C12.3762 10.5183 12.3692 10.5323 12.3618 10.546C12.3545 10.5597 12.3468 10.5733 12.3388 10.5866C12.3308 10.6 12.3225 10.6132 12.3138 10.6261C12.3051 10.6391 12.2962 10.6518 12.2869 10.6643C12.2776 10.6768 12.268 10.6891 12.2582 10.7011C12.2483 10.7132 12.2381 10.725 12.2277 10.7365C12.2172 10.748 12.2065 10.7593 12.1954 10.7703C12.1844 10.7813 12.1732 10.7921 12.1616 10.8026C12.1501 10.813 12.1383 10.8232 12.1262 10.833C12.1142 10.8429 12.1019 10.8525 12.0894 10.8618C12.0769 10.8711 12.0642 10.88 12.0512 10.8887C12.0383 10.8974 12.0251 10.9057 12.0117 10.9137C11.9984 10.9217 11.9849 10.9294 11.9711 10.9367C11.9574 10.944 11.9435 10.951 11.9294 10.9577C11.9153 10.9644 11.9011 10.9707 11.8867 10.9766C11.8723 10.9826 11.8577 10.9882 11.8431 10.9934C11.8284 10.9987 11.8136 11.0036 11.7987 11.0081C11.7838 11.0126 11.7688 11.0168 11.7537 11.0206C11.7386 11.0244 11.7234 11.0278 11.7081 11.0308C11.6928 11.0338 11.6775 11.0365 11.6621 11.0388C11.6467 11.0411 11.6313 11.043 11.6158 11.0445C11.6002 11.046 11.5847 11.0472 11.5692 11.0479C11.5536 11.0487 11.538 11.0491 11.5225 11.0491L5.80864 11.0491C5.79303 11.0491 5.77744 11.0488 5.76183 11.048C5.74625 11.0473 5.73068 11.0462 5.71514 11.0447C5.69962 11.0432 5.68413 11.0413 5.66868 11.039C5.65322 11.0367 5.63784 11.0341 5.62253 11.031C5.60721 11.028 5.59199 11.0246 5.57684 11.0208C5.56168 11.0171 5.54664 11.0129 5.53169 11.0084C5.51677 11.0039 5.50193 10.999 5.48723 10.9938C5.47254 10.9885 5.45795 10.9829 5.44353 10.977C5.4291 10.971 5.41484 10.9647 5.40073 10.958C5.3866 10.9514 5.37265 10.9444 5.35889 10.937C5.3451 10.9296 5.33152 10.922 5.31814 10.914C5.30475 10.9059 5.29155 10.8976 5.27856 10.8889C5.26559 10.8803 5.25283 10.8713 5.24028 10.862C5.22774 10.8527 5.21544 10.8431 5.20336 10.8332C5.19131 10.8233 5.17948 10.8131 5.1679 10.8026C5.15635 10.7921 5.14504 10.7814 5.13399 10.7703C5.12296 10.7593 5.11221 10.748 5.10172 10.7364C5.09124 10.7249 5.08105 10.713 5.07114 10.701C5.06123 10.6889 5.05163 10.6766 5.04234 10.664C5.03306 10.6515 5.02408 10.6387 5.0154 10.6258C5.00674 10.6128 4.9984 10.5996 4.99038 10.5862C4.98236 10.5728 4.97468 10.5592 4.96732 10.5455C4.95996 10.5317 4.95296 10.5177 4.94631 10.5036C4.93963 10.4895 4.93332 10.4752 4.92737 10.4608C4.9214 10.4464 4.91579 10.4318 4.91055 10.4171C4.90531 10.4024 4.90043 10.3876 4.89592 10.3726C4.89141 10.3577 4.88726 10.3426 4.88348 10.3275C4.87972 10.3123 4.8763 10.2971 4.87327 10.2818C4.87024 10.2665 4.8676 10.2511 4.86534 10.2356C4.86308 10.2202 4.86119 10.2047 4.85967 10.1892C4.85816 10.1736 4.85705 10.1581 4.85632 10.1425C4.85556 10.1269 4.85522 10.1113 4.85524 10.0957Z' fill='%237E84A3' %3E%3C/path%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:captcha{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' fill='currentColor' class='icon' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cpath d='M917.6 267.2c-36.1-2.5-72.4-9.3-103.6-19.3-10.1-3-20.2-6.4-30.3-10-21.4-6.3-50.5-18.8-83.6-36.6-.4-.2-.7-.4-1.1-.6-7.8-4.2-15.7-8.7-23.8-13.4-10.9-6.3-21.7-12.9-32.5-19.9-.4-.3-.8-.5-1.2-.8-7.7-5-15.5-10.2-23.1-15.5-5-3.4-10-7.1-15-10.7-3.8-2.8-7.5-5.3-11.3-8.2-27.4-20.5-54.5-43.5-79.9-68.3-25.4 24.8-52.5 47.8-79.9 68.3-3.7 2.8-7.5 5.4-11.3 8.2-5 3.6-10 7.3-15 10.7-7.7 5.4-15.4 10.5-23.1 15.5-.4.3-.8.5-1.2.8-10.8 6.9-21.6 13.6-32.5 19.9-8.1 4.7-16 9.2-23.8 13.4-.3.2-.7.4-1 .6-33 17.8-62.2 30.3-83.6 36.6-10.1 3.6-20.2 7-30.3 10-31.1 10-67.4 16.8-103.6 19.3h.1c1.1 16.2 2.1 37.7 3.4 60.9h.7c6.1 86.8 23.5 210.2 49.7 282.8 1.2 3.2 2.2 6.5 3.3 9.6.6 1.5 1.2 2.8 1.8 4.3 62.8 162.1 171.9 280.1 303 323.4v.4c17.3 5.7 31.9 9.3 43.5 11.5 11.5-2.2 26.1-5.8 43.5-11.5v-.4C687 905 796.1 787 858.9 624.8c.6-1.5 1.2-2.8 1.8-4.3 1.2-3.1 2.2-6.4 3.3-9.6 26.2-72.5 43.6-196 49.7-282.8h.7c1.1-23.3 2.2-44.7 3.2-60.9zm-47.4 41.9-.5 9.5c-.5 2.2-.9 4.4-1 6.6C863 406 847 525.7 821.3 596.7c-.7 1.9-1.4 3.9-2 5.8-.4 1.2-.8 2.5-1.4 4.1-.5 1.2-1 2.5-1.4 3.4C758.1 760.8 657.7 869.3 541 907.8c-1.9.6-3.7 1.4-5.5 2.2-7.9 2.5-15.7 4.6-23.2 6.3-7.5-1.7-15.2-3.8-23.1-6.3-1.8-.9-3.6-1.6-5.5-2.2-116.7-38.5-217.1-147-275.4-297.5-.5-1.2-.9-2.4-1.7-4.1-.4-1.2-.8-2.4-1.3-3.6-.7-2-1.3-3.9-1.9-5.6-25.8-71.2-41.7-191-47.4-271.7-.2-2.3-.5-4.5-1-6.6l-.5-9.3c-.1-1.5-.2-3-.2-4.5 24.6-3.8 48.4-9.3 70-16.2 10.1-3 20.4-6.4 31.4-10.4 25.2-7.6 56.5-21.2 90.5-39.6.6-.3 1.2-.6 1.7-.9 8.2-4.4 16.7-9.2 24.8-14 10.7-6.1 22-13 34.5-21.1.4-.2 1-.6 1.3-.8 8.2-5.3 16.4-10.8 24.1-16.2 4.5-3.1 9.1-6.4 13.7-9.7l2.4-1.8 4-2.9c2.6-1.9 5.2-3.7 7.5-5.5 17.9-13.4 35.3-27.5 52-42.1 16.7 14.7 34 28.7 51.8 42 2.6 1.9 5.1 3.8 7.7 5.6l4.3 3.1 1.5 1.1c4.8 3.5 9.6 6.9 14 9.9 8.1 5.7 16.3 11.2 23.7 16l2.1 1.3c12.4 8 23.7 14.9 34.1 20.8 8.6 5 17 9.8 25 14.1.4.2 1 .5 1.5.8 34.2 18.4 65.6 32.1 90.9 39.7 11 3.9 21.3 7.3 30.6 10.1 22.1 7.1 46.1 12.6 70.8 16.5.1 1.5.1 3 0 4.4z'/%3E%3Cpath d='M710.6 411.2 476.1 651.6l-120-123c-8.3-8.5-21.8-8.5-30.1 0s-8.3 22.3 0 30.9L461.1 698c4.2 4.3 9.6 6.4 15.1 6.4 5.4 0 10.9-2.1 15-6.4l249.5-255.7c8.3-8.5 8.3-22.3 0-30.9-8.3-8.7-21.8-8.7-30.1-.2z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:cascader{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' fill='currentColor' class='icon' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cpath d='M832.128 768c33.195 0 60.501 25.173 63.573 57.813L896 832a64 64 0 0 1-63.872 64H533.205a63.787 63.787 0 0 1-63.872-64 64 64 0 0 1 63.872-64h298.923zM213.333 874.667c-23.722 0-42.666-19.072-42.666-42.624V362.667A42.667 42.667 0 0 1 213.333 320l4.992.299C239.66 322.73 256 340.779 256 362.624l-.043 128.043h128.299c21.248 0 39.595 16.469 42.112 37.674l.299 4.992-.299 4.992A42.368 42.368 0 0 1 384.256 576H256l.043 213.333h128.256c22.869 0 42.41 19.115 42.41 42.667l-.298 4.992a42.368 42.368 0 0 1-42.112 37.675zm618.795-405.334c33.195 0 60.501 25.174 63.573 57.814l.299 6.186a64 64 0 0 1-63.872 64H533.205a63.787 63.787 0 0 1-63.872-64 64 64 0 0 1 63.872-64h298.923zM576.171 128c33.194 0 60.458 25.173 63.573 57.813L640 192c0 35.328-29.013 64-63.83 64H191.83A63.744 63.744 0 0 1 128 192c0-35.328 29.013-64 63.83-64h384.34z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:client{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' fill='currentColor' class='icon' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cpath d='M962.184 55.874H61.818C27.732 55.874 0 83.606 0 117.692v621.64c0 34.086 27.732 61.818 61.818 61.818h308.52v44.98c0 41.234-33.547 74.782-74.781 74.782h-67.995c-13.036 0-23.606 10.568-23.606 23.606 0 13.038 10.57 23.606 23.606 23.606h568.874c13.036 0 23.606-10.568 23.606-23.606 0-13.038-10.57-23.606-23.606-23.606h-67.997c-41.234 0-74.782-33.548-74.782-74.782v-44.978h308.52c34.087 0 61.821-27.732 61.821-61.819v-621.64c.004-34.087-27.728-61.819-61.814-61.819zM391.84 920.916c16.092-20.672 25.714-46.616 25.714-74.782v-44.98h188.894v44.98c0 28.166 9.622 54.112 25.714 74.782H391.841zm584.95-181.583c0 8.054-6.552 14.608-14.608 14.608H61.818c-8.054 0-14.608-6.552-14.608-14.608V615.267h929.58v124.066zm0-171.28H47.212v-450.36c0-8.055 6.552-14.609 14.608-14.609h900.362c8.054 0 14.61 6.552 14.61 14.608v450.361z'/%3E%3Cpath d='M486.531 684.611a25.476 25.476 0 1 0 50.952 0 25.476 25.476 0 1 0-50.952 0zm65.946-466.103c-9.22-9.218-24.162-9.218-33.386 0L352.263 385.337c-9.218 9.218-9.218 24.166 0 33.386a23.534 23.534 0 0 0 16.694 6.914 23.526 23.526 0 0 0 16.692-6.914l166.828-166.829c9.218-9.218 9.218-24.166 0-33.386zm98.88 96.679c-9.216-9.218-24.158-9.218-33.384-.002l-66.46 66.456c-9.218 9.22-9.218 24.168 0 33.386a23.53 23.53 0 0 0 16.692 6.914c6.04 0 12.082-2.304 16.692-6.914l66.46-66.456c9.218-9.218 9.218-24.166 0-33.384z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:close{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' aria-hidden='true' width='1em' height='1em' viewBox='0 0 36 36'%3E%3Cpath d='m19.41 18 8.29-8.29a1 1 0 0 0-1.41-1.41L18 16.59l-8.29-8.3a1 1 0 0 0-1.42 1.42l8.3 8.29-8.3 8.29A1 1 0 1 0 9.7 27.7l8.3-8.29 8.29 8.29a1 1 0 0 0 1.41-1.41z' fill='currentColor'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:close_all{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' aria-hidden='true' width='1em' height='1em' viewBox='0 0 36 36'%3E%3Cpath d='M26 17H10a1 1 0 0 0 0 2h16a1 1 0 0 0 0-2z' fill='currentColor'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:close_left{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' aria-hidden='true' width='1em' height='1em' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m7 12 7 7m-7-7 7-7' stroke-linejoin='round'/%3E%3Cpath d='M21 12H7.5'/%3E%3Cpath d='M3 3v18' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:close_other{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' aria-hidden='true' width='1em' height='1em' viewBox='0 0 20 20'%3E%3Cpath d='M3 5h14V3H3v2zm12 8V7H5v6h10zM3 17h14v-2H3v2z' fill='currentColor'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:close_right{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' aria-hidden='true' width='1em' height='1em' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m17 12-7 7m7-7-7-7' stroke-linejoin='round'/%3E%3Cpath d='M3 12h13.5'/%3E%3Cpath d='M21 3v18' stroke-linejoin='round'/%3E%3C/g%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:cnblogs{background:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' t='1733555747788' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='10924' width='128' height='128'%3E%3Cpath d='M851.404 172.596c-187.462-187.461-491.346-187.461-678.808 0-187.461 187.462-187.461 491.346 0 678.808 187.462 187.461 491.346 187.461 678.808 0 187.461-187.462 187.461-491.346 0-678.808zM387.33 728.087a47.084 47.084 0 1 1-66.633-66.502 47.084 47.084 0 0 1 66.633 66.502z m205.527 1.397a38.75 38.75 0 0 1-76.625-11.52h-0.044a6.545 6.545 0 0 0-0.044 0.305v-0.349c0.306-2.618 2.051-20.727-2.967-44.99a174.24 174.24 0 0 0-48.567-89.28 172.102 172.102 0 0 0-88.8-48.305 156.698 156.698 0 0 0-42.458-2.923 38.662 38.662 0 0 1-35.39-65.324 38.618 38.618 0 0 1 21.12-10.822v-0.218c4.452-0.742 111.142-16.45 200.335 72.742 89.018 89.018 74.182 196.145 73.44 200.727z m175.2 7.592a38.75 38.75 0 0 1-65.673 21.382 39.49 39.49 0 0 1-11.65-33.73c0.087-0.35 5.105-37.484-5.062-88.975-13.31-67.375-45.295-126.895-94.953-176.902-50.007-49.702-109.527-81.644-176.945-94.953-51.491-10.167-88.582-5.193-89.019-5.149h0.219-0.044a39.927 39.927 0 0 1-44.684-32.902 38.836 38.836 0 0 1 32.204-44.378c1.92-0.305 47.869-7.33 111.273 4.364a411.753 411.753 0 0 1 106.254 34.952 425.76 425.76 0 0 1 114.633 82.255l0.916 0.96 0.96 0.873a425.89 425.89 0 0 1 82.255 114.72c16.407 33.6 28.145 69.294 34.996 106.21 11.651 63.404 4.67 109.353 4.32 111.273z' fill='%231296DB' p-id='10925'%3E%3C/path%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;width:1em;height:1em;}.i-svg\:code{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' fill='currentColor' t='1720831003829' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='5159' width='200' height='200'%3E%3Cpath d='M438.4 849.1l222.7-646.7c0.2-0.5 0.3-1.1 0.4-1.6L438.4 849.1z' opacity='.224' p-id='5160'%3E%3C/path%3E%3Cpath d='M661.2 168.7h-67.5c-3.4 0-6.5 2.2-7.6 5.4L354.7 846c-0.3 0.8-0.4 1.7-0.4 2.6 0 4.4 3.6 8 8 8h67.8c3.4 0 6.5-2.2 7.6-5.4l0.7-2.1 223.1-648.3 7.4-21.4c0.3-0.8 0.4-1.7 0.4-2.6-0.1-4.5-3.6-8.1-8.1-8.1zM954.6 502.1c-0.8-1-1.7-1.9-2.7-2.7l-219-171.3c-3.5-2.7-8.5-2.1-11.2 1.4-1.1 1.4-1.7 3.1-1.7 4.9v81.3c0 2.5 1.1 4.8 3.1 6.3l115 90-115 90c-1.9 1.5-3.1 3.8-3.1 6.3v81.3c0 4.4 3.6 8 8 8 1.8 0 3.5-0.6 4.9-1.7l219-171.3c6.9-5.4 8.2-15.5 2.7-22.5zM291.1 328.1l-219 171.3c-1 0.8-1.9 1.7-2.7 2.7-5.4 7-4.2 17 2.7 22.5l219 171.3c1.4 1.1 3.1 1.7 4.9 1.7 4.4 0 8-3.6 8-8v-81.3c0-2.5-1.1-4.8-3.1-6.3l-115-90 115-90c1.9-1.5 3.1-3.8 3.1-6.3v-81.3c0-1.8-0.6-3.5-1.7-4.9-2.7-3.5-7.7-4.1-11.2-1.4z' p-id='5161'%3E%3C/path%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:collapse{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M3 4h18v2H3V4zm0 15h18v2H3v-2zm8-5h10v2H11v-2zm0-5h10v2H11V9zm-8 3.5L7 9v7l-4-3.5z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:csdn{background:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='30px' height='30px' viewBox='0 0 30 30' version='1.1'%3E%3Ctitle%3Eic/csdn%3C/title%3E%3Cg id='ic/csdn' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cpath d='M24.7385612,21.818791 C24.4728206,21.5662432 24.1090763,21.4267765 23.7575825,21.4343152 C23.3966653,21.4399693 23.0696724,21.5907441 22.8378562,21.8555424 C20.7581061,24.2349574 17.1347988,24.4922169 15.6732254,24.4922169 C12.9611634,24.4922169 10.886125,23.8043069 9.50559315,22.4501605 C8.19385225,21.1638629 7.50594216,19.2678696 7.46070972,16.8168365 C7.35516735,11.1345107 10.5732673,5.25806226 16.139685,5.25806226 C18.7980335,5.25806226 20.8627061,7.14368979 21.6260036,7.95410443 C21.8917442,8.23586486 22.2583155,8.39794779 22.6352525,8.39983247 C23.0131319,8.4092559 23.362741,8.24151892 23.599269,7.96164317 L23.8160078,7.70532598 C24.2607935,7.18232584 24.4605701,6.50572386 24.380471,5.80179394 C24.2984872,5.09126763 23.9422817,4.44293592 23.3778185,3.97459165 C22.0133064,2.84472288 19.6951436,1.5 16.3969445,1.5 C12.9715292,1.5 9.58757695,3.07465447 7.1129853,5.82441016 C4.51306208,8.71269021 3.1240491,12.6441435 3.20320588,16.895051 C3.26634283,20.3063311 4.38490349,23.1729373 6.44015269,25.1886081 C8.64806138,27.3550537 11.8821812,28.5 15.7947876,28.5 C20.3849384,28.5 23.2289283,27.1401996 24.8082945,26.0009074 C25.4198749,25.5608334 25.7845615,24.8644423 25.8128317,24.093606 C25.8392173,23.3190004 25.5225902,22.5604146 24.9430495,22.0119712 L24.7385612,21.818791 Z' id='Fill-1' fill='%23FC5533'/%3E%3C/g%3E%3Cscript xmlns=''/%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;width:1em;height:1em;}.i-svg\:data{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M21.0748 18.1369L4.71155 18.1369C4.257 18.1369 3.88084 17.7612 3.88084 17.3072L3.88084 4.93932C3.88084 4.4227 3.45765 4 2.94042 4C2.42319 4 2 4.4227 2 4.93932L2 17.3072C2 18.7945 3.20687 19.9999 4.69586 19.9999L21.0592 19.9999C21.5764 19.9999 21.9996 19.5772 21.9996 19.0606C22.0152 18.5596 21.592 18.1369 21.0748 18.1369Z' fill='%237E84A3' %3E%3C/path%3E%3Cpath d='M6.98407 11.8901C7.23487 11.8901 7.46996 11.7962 7.64238 11.624L10.8398 8.43027L14.0372 11.624C14.2096 11.7962 14.4447 11.8901 14.6955 11.8901C14.9463 11.8901 15.1814 11.7962 15.3538 11.624L15.4322 11.5457C15.4949 11.5144 15.5419 11.4674 15.5889 11.4205L20.9023 6.11326C21.2628 5.75318 21.2628 5.15828 20.9023 4.78253C20.7299 4.61033 20.4948 4.50073 20.244 4.50073C19.9932 4.50073 19.7581 4.59466 19.5857 4.78253L14.7269 9.63575L11.6235 6.53595C10.9965 5.94104 10.3382 6.28546 10.0875 6.53595L6.32579 10.2933C6.15339 10.4655 6.04366 10.7003 6.05935 10.9508C6.05935 11.2013 6.15339 11.4361 6.34147 11.6083C6.49821 11.7962 6.7333 11.8901 6.98407 11.8901Z' fill='%237E84A3' %3E%3C/path%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:dict{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' fill='currentColor' class='icon' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cpath d='M449.6 116.2H303.8c-14.2 0-25.7-11.5-25.7-25.7s11.5-25.7 25.7-25.7h145.8c14.2 0 25.7 11.5 25.7 25.7s-11.5 25.7-25.7 25.7zm0 0'/%3E%3Cpath d='M160.1 859.3c-14.2 0-25.7-11.5-25.7-25.7V167.4c0-56.6 46-102.6 102.6-102.6h66.8c14.2 0 25.7 11.5 25.7 25.7s-11.5 25.7-25.7 25.7H237c-28.2 0-51.1 22.9-51.1 51.1v666.2c-.1 14.3-11.6 25.8-25.8 25.8zm373.5-512.6c-6.3 0-12.4-1.3-17.6-3.5-13.5-5.8-21.9-17.9-21.9-31.6v-221c0-14.2 11.5-25.7 25.7-25.7s25.7 11.5 25.7 25.7v189l27.7-26.6c14.1-13.5 36.1-13.5 50.1 0l22.1 21.3V90.5c0-14.2 11.5-25.7 25.7-25.7s25.7 11.5 25.7 25.7v219.6c0 14.5-8.6 27.5-22 33.2-13.3 5.7-28.7 2.9-39.2-7.2l-37.5-36-37.5 36c-7.6 7.6-17.5 10.6-27 10.6zm0 0'/%3E%3Cpath d='M846.1 958.9H236.9c-56.6 0-102.6-46-102.6-102.6v-22.8c0-14.2 11.5-25.7 25.7-25.7s25.7 11.5 25.7 25.7v22.8c0 28.2 22.9 51.1 51.1 51.1H846c14.2 0 25.7 11.5 25.7 25.7.1 14.3-11.4 25.8-25.6 25.8zm0 0'/%3E%3Cpath d='M160.1 876h-.9c-14.2-.5-25.3-12.4-24.8-26.6 1-28.2 6.3-48.5 16.7-63.6 13.8-20.1 35.4-30.3 64.3-30.3h615c3.2-2.7 6.4-6.1 8.6-8.6V133.1c-1.8-5.1-11.7-15-16.8-16.8H449.6c-14.2 0-25.7-11.5-25.7-25.7s11.5-25.7 25.7-25.7h373.6c19.8 0 36.7 13.9 45 22.2 8.3 8.3 22.2 25.2 22.2 45v621.6c0 10.8-6.2 19.6-12.3 26.7-4.6 5.4-10.3 11-15.6 15.4-1 .9-2.1 1.7-3.2 2.5-5.4 4.1-12.9 8.8-22.3 8.8H215.3c-15 0-28 0-29.5 44.2-.5 13.8-11.9 24.7-25.7 24.7zm0 0'/%3E%3Cpath d='M284.4 806.4c-14.2 0-25.7-11.5-25.7-25.7V90.5c0-14.2 11.5-25.7 25.7-25.7s25.7 11.5 25.7 25.7v690.1c0 14.3-11.5 25.8-25.7 25.8zM844.9 959h-1.6c-6.6-.3-30-2.3-52.2-16.9-19.5-12.7-42.6-38-42.6-86.3 0-62.3 35.7-101 93.1-101 14.2 0 25.7 11.5 25.7 25.7s-11.5 25.7-25.7 25.7c-12.5 0-41.7 0-41.7 49.6 0 21 6.6 35.3 20.1 43.8 10.6 6.6 22.1 7.8 25 8 1.4-.1 2.9 0 4.4.2 13.7 1.7 23.6 14 22.5 27.7-.9 9.5-8.8 23.5-27 23.5zm-1.8-51.3c-1.1.1-2.3.3-3.4.6 1.1-.3 2.2-.5 3.4-.6zm0 0'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:document{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' fill='currentColor' class='icon' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cpath d='M832.1 185.1H609.4l-17.1-62c-9.6-34.6-40.5-58.8-75.3-58.8H196c-43.2 0-78.3 36.4-78.3 81.1V897c0 35.3 28.7 64 64 64H832c35.3 0 64-28.7 64-64V249c.1-35.2-28.6-63.9-63.9-63.9zm-644.4-39.7c0-6.6 4.4-11.1 8.3-11.1h321c3.4 0 6.6 3.1 7.8 7.4l12 43.4H187.7v-39.7zm638.4 745.8H187.7V255.1h638.4v636.1z'/%3E%3Cpath d='M311.1 415.1a35 35 0 1 0 70 0 35 35 0 1 0-70 0zm151.2-35h257.8v70H462.3zM311.1 582.3a35 35 0 1 0 70 0 35 35 0 1 0-70 0zm151.2-35h257.8v70H462.3zM311.1 749.5a35 35 0 1 0 70 0 35 35 0 1 0-70 0zm151.2-35h257.8v70H462.3z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:down{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' width='15' height='15' aria-label='向下键' role='img'%3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.2'%3E%3Cpath d='M7.5 3.5v8M10.5 8.5l-3 3-3-3'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:download{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' fill='currentColor' class='icon' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cpath d='M624 706.3h-74.1V464c0-4.4-3.6-8-8-8h-60c-4.4 0-8 3.6-8 8v242.3H400c-6.7 0-10.4 7.7-6.3 12.9l112 141.7c3.2 4.1 9.4 4.1 12.6 0l112-141.7c4.1-5.2.4-12.9-6.3-12.9z'/%3E%3Cpath d='M811.4 366.7C765.6 245.9 648.9 160 512.2 160S258.8 245.8 213 366.6C127.3 389.1 64 467.2 64 560c0 110.5 89.5 200 199.9 200H304c4.4 0 8-3.6 8-8v-60c0-4.4-3.6-8-8-8h-40.1c-33.7 0-65.4-13.4-89-37.7-23.5-24.2-36-56.8-34.9-90.6.9-26.4 9.9-51.2 26.2-72.1 16.7-21.3 40.1-36.8 66.1-43.7l37.9-9.9 13.9-36.6c8.6-22.8 20.6-44.1 35.7-63.4 14.9-19.2 32.6-35.9 52.4-49.9 41.1-28.9 89.5-44.2 140-44.2s98.9 15.3 140 44.2c19.9 14 37.5 30.8 52.4 49.9 15.1 19.3 27.1 40.7 35.7 63.4l13.8 36.5 37.8 10C846.1 454.5 884 503.8 884 560c0 33.1-12.9 64.3-36.3 87.7-23.4 23.4-54.5 36.3-87.6 36.3H720c-4.4 0-8 3.6-8 8v60c0 4.4 3.6 8 8 8h40.1C870.5 760 960 670.5 960 560c0-92.7-63.1-170.7-148.6-193.3z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:download_task{background:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='11.7998046875' height='17.39990234375' viewBox='0 0 11.7998046875 17.39990234375' fill='none'%3E%3Cpath stroke='rgba(255, 155, 133, 1)' stroke-width='2' stroke-linejoin='round' stroke-linecap='round' d='M5.8999 11.5002L5.8999 1'%3E%3C/path%3E%3Cpath stroke='rgba(255, 155, 133, 1)' stroke-width='2' stroke-linejoin='round' stroke-linecap='round' d='M9.8999 9.33301L5.8999 13.4996L1.8999 9.33301'%3E%3C/path%3E%3Cpath stroke='rgba(255, 155, 133, 1)' stroke-width='1.8' stroke-linecap='round' d='M0.899902 16.5L10.8999 16.5'%3E%3C/path%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;width:1em;height:1em;}.i-svg\:enter{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' width='15' height='15' aria-label='回车键' role='img'%3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.2'%3E%3Cpath d='M12 3.53088v3c0 1-1 2-2 2H4M7 11.53088l-3-3 3-3'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:esc{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' width='15' height='15' aria-label='Esc 键' role='img'%3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.2'%3E%3Cpath d='M13.6167 8.936c-.1065.3583-.6883.962-1.4875.962-.7993 0-1.653-.9165-1.653-2.1258v-.5678c0-1.2548.7896-2.1016 1.653-2.1016.8634 0 1.3601.4778 1.4875 1.0724M9 6c-.1352-.4735-.7506-.9219-1.46-.8972-.7092.0246-1.344.57-1.344 1.2166s.4198.8812 1.3445.9805C8.465 7.3992 8.968 7.9337 9 8.5c.032.5663-.454 1.398-1.4595 1.398C6.6593 9.898 6 9 5.963 8.4851m-1.4748.5368c-.2635.5941-.8099.876-1.5443.876s-1.7073-.6248-1.7073-2.204v-.4603c0-1.0416.721-2.131 1.7073-2.131.9864 0 1.6425 1.031 1.5443 2.2492h-2.956'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:file{background:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' t='1721541550402' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='1592' width='200' height='200'%3E%3Cpath d='M979.096493 980.950486H44.904061C19.829898 980.950486 0.000277 960.442811 0.000277 935.839135v-740.047567c0-25.184865 20.410811-45.111351 44.903784-45.111352h934.192432c25.074162 0 44.903784 20.507676 44.903784 45.111352v740.047567c0 25.184865-20.410811 45.111351-44.903784 45.111351z' fill='%23FFA000' p-id='1593'%3E%3C/path%3E%3Cpath d='M512.000277 344.409946H0.000277V112.902919a45.097514 45.097514 0 0 1 44.903784-45.24973h350.470918c19.829622 0 37.320649 12.924541 43.146379 32.311352L512.000277 344.423784z' fill='%23FFA000' p-id='1594'%3E%3C/path%3E%3Cpath d='M909.699736 925.599135H114.300817c-25.184865 0-45.111351-20.134054-45.111351-44.281081v-603.32973c0-24.728216 20.493838-44.281081 45.111351-44.281081h795.398919c25.184865 0 45.111351 20.134054 45.111352 44.281081v603.32973c0.567351 24.147027-19.926486 44.281081-45.111352 44.281081z' fill='%23FFFFFF' p-id='1595'%3E%3C/path%3E%3Cpath d='M979.096493 980.950486H44.904061C19.829898 980.950486 0.000277 960.802595 0.000277 936.627892V361.056865c0-24.755892 20.410811-44.322595 44.903784-44.322595h934.192432c25.074162 0 44.903784 20.147892 44.903784 44.322595v575.571027c0 24.755892-20.410811 44.322595-44.903784 44.322594z' fill='%23FFCA28' p-id='1596'%3E%3C/path%3E%3Cpath d='M364.46125 485.708108H106.634655C93.917682 485.708108 83.027304 476.021622 83.027304 463.512216c0-11.96973 10.295351-22.223568 23.607351-22.223567h257.21773c12.716973 0 23.607351 9.686486 23.607351 22.223567 0 11.955892-10.295351 22.223568-22.998486 22.223568z m0 149.296433H106.634655c-12.716973 0-23.607351-9.686486-23.607351-22.223568 0-12.537081 10.295351-22.223568 23.607351-22.223568h257.21773c12.716973 0 23.607351 9.686486 23.607351 22.223568 0 12.537081-10.295351 22.223568-22.998486 22.223568z' fill='%23FFF8E1' p-id='1597'%3E%3C/path%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;width:1em;height:1em;}.i-svg\:finance{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M5.7502 5.54995L6.2502 5.54995L6.2502 3.94995L5.7502 3.94995C4.2038 3.94995 2.9502 5.20355 2.9502 6.74995L2.9502 14.75L4.5502 14.75L4.5502 6.74995C4.5502 6.08721 5.08746 5.54995 5.7502 5.54995Z' fill-rule='evenodd' fill='%237E84A3' %3E%3C/path%3E%3Cpath d='M10.0672 14.3975C9.7011 14.0991 9.28987 13.95 8.83352 13.95L3.83353 13.95C2.79339 13.95 1.9502 14.7931 1.9502 15.8333L1.9502 20.1666C1.9502 21.2068 2.79339 22.05 3.83353 22.05L20.1669 22.05C21.207 22.05 22.0502 21.2068 22.0502 20.1666L22.0502 15.8333C22.0502 14.7931 21.207 13.95 20.1669 13.95L15.6669 13.95C15.2001 13.95 14.7836 14.1062 14.4174 14.4186C13.8175 14.9304 13.2445 15.2318 12.6983 15.3228C11.8705 15.4607 10.9935 15.1523 10.0672 14.3975ZM6.7502 15.55L8.83352 15.55C8.9103 15.55 8.98463 15.5792 9.05651 15.6378C10.3564 16.6971 11.658 17.1181 12.9612 16.901C13.7993 16.7614 14.6309 16.3397 15.4559 15.6358C15.523 15.5786 15.5933 15.55 15.6669 15.55L20.1669 15.55C20.3233 15.55 20.4502 15.6768 20.4502 15.8333L20.4502 20.1666C20.4502 20.3231 20.3233 20.45 20.1669 20.45L3.83353 20.45C3.67705 20.45 3.5502 20.3231 3.5502 20.1666L3.5502 15.8333C3.5502 15.6768 3.67705 15.55 3.83353 15.55L6.7502 15.55Z' fill-rule='evenodd' fill='%237E84A3' %3E%3C/path%3E%3Cpath d='M5.9502 3.82995L5.9502 14.75L7.5502 14.75L7.5502 3.82995C7.5502 3.67531 7.67556 3.54995 7.8302 3.54995L18.6702 3.54995C18.8248 3.54995 18.9502 3.67531 18.9502 3.82995L18.9502 14.75L20.5502 14.75L20.5502 3.82995C20.5502 2.79166 19.7085 1.94995 18.6702 1.94995L7.8302 1.94995C6.7919 1.94995 5.9502 2.79166 5.9502 3.82995Z' fill-rule='evenodd' fill='%237E84A3' %3E%3C/path%3E%3Cpath d='M9.94995 7.74995C9.94995 8.19178 10.3081 8.54995 10.75 8.54995L16.15 8.54995C16.5918 8.54995 16.95 8.19178 16.95 7.74995C16.95 7.30812 16.5918 6.94995 16.15 6.94995L10.75 6.94995C10.3081 6.94995 9.94995 7.30812 9.94995 7.74995Z' fill-rule='evenodd' fill='%237E84A3' %3E%3C/path%3E%3Cpath d='M9.94995 10.75C9.94995 11.1918 10.3081 11.55 10.75 11.55L16.15 11.55C16.5918 11.55 16.95 11.1918 16.95 10.75C16.95 10.3081 16.5918 9.94995 16.15 9.94995L10.75 9.94995C10.3081 9.94995 9.94995 10.3081 9.94995 10.75Z' fill-rule='evenodd' fill='%237E84A3' %3E%3C/path%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:fullscreen{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M8 3v2H4v4H2V3h6zM2 21v-6h2v4h4v2H2zm20 0h-6v-2h4v-4h2v6zm0-12h-2V5h-4V3h6v6z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:fullscreen-exit{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M18 7h4v2h-6V3h2v4zM8 9H2V7h4V3h2v6zm10 8v4h-2v-6h6v2h-4zM8 15v6H6v-4H2v-2h6z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:function{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M8.13 13.24C8.17302 13.24 8.21703 13.24 8.26 13.24C8.30295 13.24 8.34719 13.25 8.39 13.25C8.43279 13.25 8.47744 13.27 8.52 13.27C8.56254 13.27 8.6078 13.29 8.65 13.29C8.69217 13.29 8.72828 13.3095 8.77 13.32C8.81172 13.3304 8.85883 13.3375 8.9 13.35C8.94115 13.3625 8.97949 13.3755 9.02 13.39C9.06049 13.4045 9.10026 13.4235 9.14 13.44C9.17974 13.4564 9.22113 13.4716 9.26 13.49C9.29887 13.5084 9.33206 13.5297 9.37 13.55C9.40791 13.5703 9.45309 13.5879 9.49 13.61C9.52687 13.6321 9.55423 13.6561 9.59 13.68C9.62575 13.7039 9.66546 13.7344 9.7 13.76C9.73454 13.7856 9.76673 13.8127 9.8 13.84C9.83324 13.8673 9.86812 13.8911 9.9 13.92C9.93185 13.9489 9.95958 13.9796 9.99 14.01C10.0204 14.0404 10.0511 14.0681 10.08 14.1C10.1089 14.1319 10.1427 14.1668 10.17 14.2C10.1973 14.2333 10.2144 14.2655 10.24 14.3C10.2656 14.3345 10.2961 14.3742 10.32 14.41C10.3439 14.4458 10.3679 14.4831 10.39 14.52C10.4121 14.5569 10.4297 14.5921 10.45 14.63C10.4703 14.6679 10.4916 14.7011 10.51 14.74C10.5284 14.7789 10.5435 14.8203 10.56 14.86C10.5764 14.8997 10.5955 14.9395 10.61 14.98C10.6245 15.0205 10.6375 15.0588 10.65 15.1C10.6625 15.1412 10.6695 15.1883 10.68 15.23C10.6904 15.2717 10.71 15.3078 10.71 15.35C10.71 15.3922 10.73 15.4375 10.73 15.48C10.73 15.5226 10.75 15.5672 10.75 15.61C10.75 15.6528 10.76 15.697 10.76 15.74C10.76 15.783 10.76 15.827 10.76 15.87L10.76 19.37C10.76 19.413 10.76 19.457 10.76 19.5C10.76 19.543 10.75 19.5872 10.75 19.63C10.75 19.6728 10.73 19.7174 10.73 19.76C10.73 19.8026 10.71 19.8378 10.71 19.88C10.71 19.9222 10.6904 19.9682 10.68 20.01C10.6696 20.0517 10.6625 20.0888 10.65 20.13C10.6375 20.1712 10.6245 20.2195 10.61 20.26C10.5955 20.3005 10.5764 20.3403 10.56 20.38C10.5435 20.4198 10.5284 20.4511 10.51 20.49C10.4916 20.5289 10.4703 20.5721 10.45 20.61C10.4297 20.648 10.4121 20.6831 10.39 20.72C10.3679 20.7569 10.3439 20.7942 10.32 20.83C10.2961 20.8658 10.2756 20.9054 10.25 20.94C10.2244 20.9745 10.1973 21.0068 10.17 21.04C10.1427 21.0733 10.1089 21.1081 10.08 21.14C10.0511 21.1719 10.0204 21.1996 9.99 21.23C9.95958 21.2604 9.93185 21.2911 9.9 21.32C9.86812 21.3489 9.83324 21.3727 9.8 21.4C9.76673 21.4273 9.73454 21.4543 9.7 21.48C9.66546 21.5056 9.62577 21.5361 9.59 21.56C9.55423 21.5839 9.52689 21.6079 9.49 21.63C9.45309 21.6521 9.40791 21.6697 9.37 21.69C9.33204 21.7103 9.29887 21.7316 9.26 21.75C9.22111 21.7684 9.17974 21.7835 9.14 21.8C9.10024 21.8165 9.06049 21.8355 9.02 21.85C8.97949 21.8645 8.94115 21.8775 8.9 21.89C8.85883 21.9025 8.81172 21.9095 8.77 21.92C8.72826 21.9305 8.69217 21.95 8.65 21.95C8.6078 21.95 8.56256 21.97 8.52 21.97C8.47744 21.97 8.43281 21.99 8.39 21.99C8.34719 21.99 8.30297 22 8.26 22C8.21703 22 8.17302 22 8.13 22L4.63 22C4.58694 22 4.54297 22 4.5 22C4.45701 22 4.41284 21.99 4.37 21.99C4.32716 21.99 4.28259 21.97 4.24 21.97C4.19742 21.97 4.16221 21.95 4.12 21.95C4.07777 21.95 4.03176 21.9304 3.99 21.92C3.94824 21.9096 3.91119 21.9025 3.87 21.89C3.8288 21.8775 3.78054 21.8645 3.74 21.85C3.69947 21.8355 3.65978 21.8165 3.62 21.8C3.58023 21.7835 3.54892 21.7684 3.51 21.75C3.47107 21.7316 3.42796 21.7103 3.39 21.69C3.35202 21.6697 3.31693 21.6521 3.28 21.63C3.24307 21.6079 3.20579 21.5839 3.17 21.56C3.1342 21.5361 3.09459 21.5056 3.06 21.48C3.02543 21.4544 2.99328 21.4273 2.96 21.4C2.92672 21.3727 2.8919 21.3489 2.86 21.32C2.8281 21.2911 2.80044 21.2604 2.77 21.23C2.73956 21.1996 2.70891 21.1719 2.68 21.14C2.65108 21.1081 2.6273 21.0733 2.6 21.04C2.57269 21.0067 2.54564 20.9746 2.52 20.94C2.49436 20.9054 2.46391 20.8658 2.44 20.83C2.41609 20.7942 2.39213 20.7569 2.37 20.72C2.34787 20.6831 2.33029 20.648 2.31 20.61C2.28971 20.572 2.2684 20.5389 2.25 20.5C2.2316 20.4611 2.21647 20.4198 2.2 20.38C2.18353 20.3402 2.1645 20.3005 2.15 20.26C2.13551 20.2195 2.12249 20.1712 2.11 20.13C2.09751 20.0888 2.09045 20.0517 2.08 20.01C2.06955 19.9683 2.05 19.9222 2.05 19.88C2.05 19.8378 2.03 19.8026 2.03 19.76C2.03 19.7174 2.01 19.6728 2.01 19.63C2.01 19.5872 2 19.543 2 19.5C2 19.457 2 19.413 2 19.37L2 15.87C2 15.827 2 15.783 2 15.74C2 15.697 2.01 15.6528 2.01 15.61C2.01 15.5672 2.03 15.5226 2.03 15.48C2.03 15.4374 2.05 15.3922 2.05 15.35C2.05 15.3078 2.06954 15.2718 2.08 15.23C2.09046 15.1883 2.09751 15.1412 2.11 15.1C2.12249 15.0588 2.1355 15.0205 2.15 14.98C2.1645 14.9395 2.18353 14.8998 2.2 14.86C2.21647 14.8203 2.2316 14.7789 2.25 14.74C2.2684 14.7011 2.28972 14.668 2.31 14.63C2.33029 14.5921 2.34788 14.5569 2.37 14.52C2.39212 14.4831 2.41609 14.4458 2.44 14.41C2.46391 14.3742 2.49437 14.3345 2.52 14.3C2.54563 14.2655 2.5727 14.2333 2.6 14.2C2.62729 14.1668 2.65109 14.1319 2.68 14.1C2.70889 14.0681 2.73958 14.0404 2.77 14.01C2.80042 13.9796 2.82812 13.9489 2.86 13.92C2.89188 13.8911 2.92673 13.8573 2.96 13.83C2.99325 13.8027 3.02544 13.7856 3.06 13.76C3.09457 13.7344 3.13423 13.7039 3.17 13.68C3.20577 13.6561 3.24309 13.6321 3.28 13.61C3.3169 13.5879 3.35206 13.5703 3.39 13.55C3.42796 13.5297 3.47111 13.5084 3.51 13.49C3.5489 13.4716 3.58025 13.4565 3.62 13.44C3.65975 13.4235 3.6995 13.4045 3.74 13.39C3.78051 13.3755 3.82882 13.3625 3.87 13.35C3.91117 13.3375 3.94826 13.3305 3.99 13.32C4.03173 13.3096 4.0778 13.29 4.12 13.29C4.1622 13.29 4.19744 13.27 4.24 13.27C4.28257 13.27 4.32719 13.25 4.37 13.25C4.41281 13.25 4.45703 13.24 4.5 13.24C4.54295 13.24 4.58696 13.24 4.63 13.24L8.13 13.24ZM18.73 13.24C18.773 13.24 18.817 13.24 18.86 13.24C18.9029 13.24 18.9472 13.25 18.99 13.25C19.0328 13.25 19.0774 13.27 19.12 13.27C19.1625 13.27 19.2078 13.29 19.25 13.29C19.2922 13.29 19.3283 13.3095 19.37 13.32C19.4117 13.3304 19.4588 13.3375 19.5 13.35C19.5411 13.3625 19.5795 13.3755 19.62 13.39C19.6605 13.4045 19.7003 13.4235 19.74 13.44C19.7797 13.4564 19.8211 13.4716 19.86 13.49C19.8989 13.5084 19.9321 13.5297 19.97 13.55C20.0079 13.5703 20.0531 13.5879 20.09 13.61C20.1269 13.6321 20.1542 13.6561 20.19 13.68C20.2258 13.7039 20.2655 13.7344 20.3 13.76C20.3345 13.7856 20.3667 13.8127 20.4 13.84C20.4332 13.8673 20.4681 13.8911 20.5 13.92C20.5319 13.9489 20.5596 13.9796 20.59 14.01C20.6204 14.0404 20.6511 14.0681 20.68 14.1C20.7089 14.1319 20.7427 14.1668 20.77 14.2C20.7973 14.2333 20.8144 14.2655 20.84 14.3C20.8656 14.3345 20.8961 14.3742 20.92 14.41C20.9439 14.4458 20.9679 14.4831 20.99 14.52C21.0121 14.5569 21.0297 14.5921 21.05 14.63C21.0703 14.6679 21.0916 14.7011 21.11 14.74C21.1284 14.7789 21.1435 14.8203 21.16 14.86C21.1764 14.8997 21.1955 14.9395 21.21 14.98C21.2245 15.0205 21.2375 15.0588 21.25 15.1C21.2625 15.1412 21.2695 15.1883 21.28 15.23C21.2904 15.2717 21.31 15.3078 21.31 15.35C21.31 15.3922 21.33 15.4375 21.33 15.48C21.33 15.5226 21.35 15.5672 21.35 15.61C21.35 15.6528 21.36 15.697 21.36 15.74C21.36 15.783 21.36 15.827 21.36 15.87L21.36 19.37C21.36 19.413 21.36 19.457 21.36 19.5C21.36 19.543 21.35 19.5872 21.35 19.63C21.35 19.6728 21.33 19.7174 21.33 19.76C21.33 19.8026 21.31 19.8378 21.31 19.88C21.31 19.9222 21.2904 19.9682 21.28 20.01C21.2695 20.0517 21.2625 20.0888 21.25 20.13C21.2375 20.1712 21.2245 20.2195 21.21 20.26C21.1955 20.3005 21.1764 20.3403 21.16 20.38C21.1435 20.4198 21.1284 20.4511 21.11 20.49C21.0916 20.5289 21.0703 20.5721 21.05 20.61C21.0297 20.648 21.0121 20.6831 20.99 20.72C20.9679 20.7569 20.9439 20.7942 20.92 20.83C20.8961 20.8658 20.8756 20.9054 20.85 20.94C20.8244 20.9745 20.7973 21.0068 20.77 21.04C20.7427 21.0733 20.7089 21.1081 20.68 21.14C20.6511 21.1719 20.6204 21.1996 20.59 21.23C20.5596 21.2604 20.5319 21.2911 20.5 21.32C20.4681 21.3489 20.4332 21.3727 20.4 21.4C20.3668 21.4273 20.3345 21.4543 20.3 21.48C20.2654 21.5056 20.2257 21.5361 20.19 21.56C20.1542 21.5839 20.1269 21.6079 20.09 21.63C20.0531 21.6521 20.0079 21.6697 19.97 21.69C19.932 21.7103 19.8989 21.7316 19.86 21.75C19.8211 21.7684 19.7797 21.7835 19.74 21.8C19.7003 21.8165 19.6605 21.8355 19.62 21.85C19.5795 21.8645 19.5411 21.8775 19.5 21.89C19.4588 21.9025 19.4117 21.9095 19.37 21.92C19.3283 21.9305 19.2922 21.95 19.25 21.95C19.2078 21.95 19.1626 21.97 19.12 21.97C19.0774 21.97 19.0328 21.99 18.99 21.99C18.9472 21.99 18.903 22 18.86 22C18.817 22 18.773 22 18.73 22L15.23 22C15.187 22 15.143 22 15.1 22C15.057 22 15.0128 21.99 14.97 21.99C14.9272 21.99 14.8826 21.97 14.84 21.97C14.7974 21.97 14.7622 21.95 14.72 21.95C14.6778 21.95 14.6317 21.9305 14.59 21.92C14.5483 21.9096 14.5112 21.9025 14.47 21.89C14.4288 21.8775 14.3805 21.8645 14.34 21.85C14.2995 21.8355 14.2598 21.8165 14.22 21.8C14.1802 21.7835 14.1489 21.7684 14.11 21.75C14.0711 21.7316 14.028 21.7103 13.99 21.69C13.952 21.6697 13.9169 21.6521 13.88 21.63C13.8431 21.6079 13.8058 21.5839 13.77 21.56C13.7342 21.5361 13.6945 21.5056 13.66 21.48C13.6254 21.4544 13.5933 21.4273 13.56 21.4C13.5267 21.3727 13.4919 21.3489 13.46 21.32C13.4281 21.2911 13.4004 21.2604 13.37 21.23C13.3396 21.1996 13.3089 21.1719 13.28 21.14C13.2511 21.1081 13.2273 21.0733 13.2 21.04C13.1727 21.0068 13.1456 20.9746 13.12 20.94C13.0943 20.9055 13.0639 20.8658 13.04 20.83C13.0161 20.7942 12.9921 20.7569 12.97 20.72C12.9479 20.6831 12.9303 20.648 12.91 20.61C12.8897 20.572 12.8684 20.5389 12.85 20.5C12.8316 20.4611 12.8164 20.4197 12.8 20.38C12.7835 20.3402 12.7645 20.3005 12.75 20.26C12.7355 20.2195 12.7225 20.1712 12.71 20.13C12.6975 20.0888 12.6904 20.0517 12.68 20.01C12.6695 19.9683 12.65 19.9222 12.65 19.88C12.65 19.8378 12.63 19.8026 12.63 19.76C12.63 19.7175 12.61 19.6728 12.61 19.63C12.61 19.5872 12.6 19.543 12.6 19.5C12.6 19.457 12.6 19.413 12.6 19.37L12.6 15.87C12.6 15.827 12.6 15.783 12.6 15.74C12.6 15.697 12.61 15.6528 12.61 15.61C12.61 15.5672 12.63 15.5226 12.63 15.48C12.63 15.4374 12.65 15.3922 12.65 15.35C12.65 15.3078 12.6695 15.2718 12.68 15.23C12.6904 15.1883 12.6975 15.1412 12.71 15.1C12.7225 15.0588 12.7355 15.0205 12.75 14.98C12.7645 14.9395 12.7835 14.8998 12.8 14.86C12.8164 14.8203 12.8316 14.7789 12.85 14.74C12.8684 14.7011 12.8897 14.668 12.91 14.63C12.9303 14.5921 12.9579 14.5569 12.98 14.52C13.0021 14.4831 13.0161 14.4458 13.04 14.41C13.0639 14.3742 13.0943 14.3345 13.12 14.3C13.1456 14.2655 13.1727 14.2333 13.2 14.2C13.2273 14.1668 13.2511 14.1319 13.28 14.1C13.3089 14.0681 13.3396 14.0404 13.37 14.01C13.4004 13.9796 13.4281 13.9489 13.46 13.92C13.4919 13.8911 13.5267 13.8573 13.56 13.83C13.5933 13.8027 13.6254 13.7856 13.66 13.76C13.6945 13.7344 13.7342 13.7039 13.77 13.68C13.8058 13.6561 13.8431 13.6321 13.88 13.61C13.9169 13.5879 13.952 13.5703 13.99 13.55C14.0279 13.5297 14.0711 13.5084 14.11 13.49C14.1489 13.4716 14.1802 13.4565 14.22 13.44C14.2597 13.4235 14.2995 13.4045 14.34 13.39C14.3805 13.3755 14.4288 13.3625 14.47 13.35C14.5112 13.3375 14.5483 13.3305 14.59 13.32C14.6317 13.3096 14.6778 13.29 14.72 13.29C14.7622 13.29 14.7974 13.27 14.84 13.27C14.8826 13.27 14.9272 13.25 14.97 13.25C15.0128 13.25 15.057 13.24 15.1 13.24C15.143 13.24 15.187 13.24 15.23 13.24L18.73 13.24ZM8.13 14.99L4.63 14.99C4.61565 14.99 4.60431 14.99 4.59 14.99C4.57567 14.99 4.55426 14.99 4.54 14.99C4.52571 14.99 4.51417 15 4.5 15C4.4858 15 4.47404 15.01 4.46 15.01C4.44592 15.01 4.4339 15.02 4.42 15.02C4.4061 15.02 4.39372 15.03 4.38 15.03C4.36626 15.03 4.35349 15.04 4.34 15.04C4.32649 15.04 4.30324 15.06 4.29 15.06C4.27674 15.06 4.27296 15.07 4.26 15.07C4.24704 15.07 4.23264 15.09 4.22 15.09C4.20735 15.09 4.19229 15.12 4.18 15.12C4.1677 15.12 4.15192 15.14 4.14 15.14C4.12809 15.14 4.12151 15.16 4.11 15.16C4.09847 15.16 4.08107 15.19 4.07 15.19C4.05891 15.19 4.05062 15.22 4.04 15.22C4.02938 15.22 4.02015 15.2399 4.01 15.25C3.99987 15.2601 3.98 15.2694 3.98 15.28C3.98 15.2906 3.95 15.2989 3.95 15.31C3.95 15.3211 3.93 15.3285 3.93 15.34C3.93 15.3515 3.9 15.3681 3.9 15.38C3.9 15.3919 3.88 15.4077 3.88 15.42C3.88 15.4323 3.86 15.4374 3.86 15.45C3.86 15.4627 3.84 15.477 3.84 15.49C3.84 15.5029 3.82 15.5168 3.82 15.53C3.82 15.5433 3.81 15.5565 3.81 15.57C3.81 15.5835 3.79 15.5963 3.79 15.61C3.79 15.6237 3.78 15.6361 3.78 15.65C3.78 15.6639 3.77 15.686 3.77 15.7C3.77 15.7141 3.76 15.7258 3.76 15.74C3.76 15.7542 3.76 15.7657 3.76 15.78C3.76 15.7943 3.76 15.8057 3.76 15.82C3.76 15.8343 3.75 15.8557 3.75 15.87L3.75 19.37C3.75 19.8547 4.14638 20.25 4.63 20.25L8.13 20.25C8.61361 20.25 9.01 19.8536 9.01 19.37L9.01 15.87C9.01 15.8557 9.01 15.8343 9.01 15.82C9.01 15.8057 9.01 15.7943 9.01 15.78C9.01 15.7657 9 15.7542 9 15.74C9 15.7258 8.99 15.7141 8.99 15.7C8.99 15.6859 8.98 15.6639 8.98 15.65C8.98 15.6361 8.97 15.6237 8.97 15.61C8.97 15.5963 8.96 15.5835 8.96 15.57C8.96 15.5565 8.94 15.5433 8.94 15.53C8.94 15.5168 8.93 15.5029 8.93 15.49C8.93 15.477 8.91 15.4627 8.91 15.45C8.91 15.4374 8.89 15.4323 8.89 15.42C8.89 15.4077 8.86 15.3919 8.86 15.38C8.86 15.3681 8.84 15.3515 8.84 15.34C8.84 15.3285 8.81 15.3211 8.81 15.31C8.81 15.2989 8.78 15.2906 8.78 15.28C8.78 15.2694 8.76012 15.2601 8.75 15.25C8.73986 15.2399 8.73062 15.22 8.72 15.22C8.70938 15.22 8.70107 15.19 8.69 15.19C8.67893 15.19 8.67151 15.16 8.66 15.16C8.64847 15.16 8.63192 15.14 8.62 15.14C8.60806 15.14 8.59228 15.12 8.58 15.12C8.5677 15.12 8.56262 15.09 8.55 15.09C8.53733 15.09 8.52294 15.07 8.51 15.07C8.49704 15.07 8.48324 15.06 8.47 15.06C8.45674 15.06 8.44349 15.04 8.43 15.04C8.41651 15.04 8.40372 15.03 8.39 15.03C8.37628 15.03 8.3639 15.02 8.35 15.02C8.33608 15.02 8.31404 15.01 8.3 15.01C8.28592 15.01 8.27417 15 8.26 15C8.2458 15 8.23426 14.99 8.22 14.99C8.20571 14.99 8.19431 14.99 8.18 14.99C8.16567 14.99 8.14433 14.99 8.13 14.99ZM18.73 14.99L15.23 14.99C15.2156 14.99 15.2043 14.99 15.19 14.99C15.1757 14.99 15.1543 14.99 15.14 14.99C15.1257 14.99 15.1142 15 15.1 15C15.0858 15 15.0741 15.01 15.06 15.01C15.0459 15.01 15.0339 15.02 15.02 15.02C15.0061 15.02 14.9937 15.03 14.98 15.03C14.9663 15.03 14.9435 15.04 14.93 15.04C14.9165 15.04 14.9032 15.06 14.89 15.06C14.8767 15.06 14.8729 15.07 14.86 15.07C14.847 15.07 14.8326 15.09 14.82 15.09C14.8074 15.09 14.7923 15.12 14.78 15.12C14.7677 15.12 14.7519 15.14 14.74 15.14C14.7281 15.14 14.7215 15.16 14.71 15.16C14.6985 15.16 14.6811 15.19 14.67 15.19C14.6589 15.19 14.6506 15.22 14.64 15.22C14.6294 15.22 14.6201 15.2399 14.61 15.25C14.5999 15.2601 14.58 15.2694 14.58 15.28C14.58 15.2906 14.55 15.2989 14.55 15.31C14.55 15.3211 14.53 15.3285 14.53 15.34C14.53 15.3515 14.5 15.3681 14.5 15.38C14.5 15.3919 14.48 15.4077 14.48 15.42C14.48 15.4323 14.46 15.4374 14.46 15.45C14.46 15.4627 14.44 15.477 14.44 15.49C14.44 15.5029 14.42 15.5168 14.42 15.53C14.42 15.5433 14.41 15.5565 14.41 15.57C14.41 15.5835 14.39 15.5963 14.39 15.61C14.39 15.6237 14.38 15.6361 14.38 15.65C14.38 15.6639 14.37 15.686 14.37 15.7C14.37 15.7141 14.36 15.7258 14.36 15.74C14.36 15.7542 14.36 15.7657 14.36 15.78C14.36 15.7943 14.36 15.8057 14.36 15.82C14.36 15.8343 14.35 15.8557 14.35 15.87L14.35 19.37C14.35 19.8547 14.7464 20.25 15.23 20.25L18.73 20.25C19.2136 20.25 19.61 19.8536 19.61 19.37L19.61 15.87C19.61 15.8557 19.61 15.8343 19.61 15.82C19.61 15.8057 19.61 15.7943 19.61 15.78C19.61 15.7657 19.6 15.7542 19.6 15.74C19.6 15.7258 19.59 15.7141 19.59 15.7C19.59 15.6859 19.58 15.6639 19.58 15.65C19.58 15.6361 19.57 15.6237 19.57 15.61C19.57 15.5963 19.56 15.5835 19.56 15.57C19.56 15.5565 19.54 15.5433 19.54 15.53C19.54 15.5168 19.53 15.5029 19.53 15.49C19.53 15.477 19.51 15.4627 19.51 15.45C19.51 15.4374 19.49 15.4323 19.49 15.42C19.49 15.4077 19.46 15.3919 19.46 15.38C19.46 15.3681 19.44 15.3515 19.44 15.34C19.44 15.3285 19.41 15.3211 19.41 15.31C19.41 15.2989 19.38 15.2906 19.38 15.28C19.38 15.2694 19.3601 15.2601 19.35 15.25C19.3398 15.2399 19.3306 15.22 19.32 15.22C19.3094 15.22 19.3011 15.19 19.29 15.19C19.2789 15.19 19.2715 15.16 19.26 15.16C19.2485 15.16 19.2319 15.14 19.22 15.14C19.2081 15.14 19.1923 15.12 19.18 15.12C19.1677 15.12 19.1626 15.09 19.15 15.09C19.1373 15.09 19.1229 15.07 19.11 15.07C19.097 15.07 19.0832 15.06 19.07 15.06C19.0567 15.06 19.0435 15.04 19.03 15.04C19.0165 15.04 19.0037 15.03 18.99 15.03C18.9763 15.03 18.9639 15.02 18.95 15.02C18.9361 15.02 18.914 15.01 18.9 15.01C18.8859 15.01 18.8742 15 18.86 15C18.8458 15 18.8343 14.99 18.82 14.99C18.8057 14.99 18.7943 14.99 18.78 14.99C18.7657 14.99 18.7443 14.99 18.73 14.99ZM18.75 2.77L21.23 5.25C21.2604 5.28042 21.2911 5.30812 21.32 5.34C21.3489 5.37185 21.3727 5.40673 21.4 5.44C21.4273 5.47324 21.4544 5.50546 21.48 5.54C21.5056 5.57457 21.5361 5.61423 21.56 5.65C21.5839 5.68575 21.6079 5.72311 21.63 5.76C21.6521 5.79687 21.6697 5.83206 21.69 5.87C21.7103 5.90792 21.7316 5.9411 21.75 5.98C21.7684 6.01887 21.7835 6.06028 21.8 6.1C21.8164 6.13974 21.8355 6.17953 21.85 6.22C21.8645 6.26051 21.8775 6.29885 21.89 6.34C21.9025 6.38115 21.9095 6.4283 21.92 6.47C21.9304 6.51172 21.95 6.54782 21.95 6.59C21.95 6.6322 21.97 6.67748 21.97 6.72C21.97 6.76254 21.99 6.80719 21.99 6.85C21.99 6.89277 22 6.93705 22 6.98C22 7.02295 22 7.06698 22 7.11C22 7.153 22 7.19703 22 7.24C22 7.28293 21.99 7.31721 21.99 7.36C21.99 7.40279 21.97 7.44744 21.97 7.49C21.97 7.53252 21.95 7.5778 21.95 7.62C21.95 7.66215 21.9304 7.69828 21.92 7.74C21.9095 7.78172 21.9025 7.82887 21.89 7.87C21.8775 7.91117 21.8645 7.94951 21.85 7.99C21.8355 8.03049 21.8164 8.07026 21.8 8.11C21.7835 8.14972 21.7684 8.19113 21.75 8.23C21.7316 8.26887 21.7103 8.30208 21.69 8.34C21.6697 8.37794 21.6521 8.42311 21.63 8.46C21.6079 8.49689 21.5839 8.53425 21.56 8.57C21.5361 8.60577 21.5056 8.63546 21.48 8.67C21.4544 8.70457 21.4273 8.73676 21.4 8.77C21.3727 8.80324 21.3489 8.83815 21.32 8.87C21.2911 8.90188 21.2604 8.9296 21.23 8.96L18.75 11.44C18.7196 11.4704 18.6919 11.5011 18.66 11.53C18.6281 11.5589 18.5932 11.5927 18.56 11.62C18.5267 11.6473 18.4945 11.6744 18.46 11.7C18.4255 11.7256 18.3857 11.7461 18.35 11.77C18.3142 11.7939 18.2769 11.8179 18.24 11.84C18.2031 11.8621 18.1679 11.8797 18.13 11.9C18.0921 11.9203 18.0589 11.9416 18.02 11.96C17.9811 11.9784 17.9397 11.9935 17.9 12.01C17.8603 12.0264 17.8205 12.0455 17.78 12.06C17.7395 12.0745 17.7011 12.0875 17.66 12.1C17.6189 12.1125 17.5717 12.1196 17.53 12.13C17.4883 12.1405 17.4522 12.16 17.41 12.16C17.3678 12.16 17.3225 12.18 17.28 12.18C17.2375 12.18 17.1928 12.2 17.15 12.2C17.1072 12.2 17.0629 12.21 17.02 12.21C16.9771 12.21 16.933 12.21 16.89 12.21C16.847 12.21 16.8129 12.21 16.77 12.21C16.7271 12.21 16.6828 12.2 16.64 12.2C16.5972 12.2 16.5525 12.18 16.51 12.18C16.4675 12.18 16.4222 12.16 16.38 12.16C16.3378 12.16 16.3017 12.1404 16.26 12.13C16.2183 12.1196 16.1711 12.1125 16.13 12.1C16.0889 12.0875 16.0505 12.0745 16.01 12.06C15.9695 12.0455 15.9297 12.0264 15.89 12.01C15.8503 11.9935 15.8089 11.9784 15.77 11.96C15.7311 11.9416 15.6979 11.9203 15.66 11.9C15.6221 11.8797 15.5769 11.8621 15.54 11.84C15.5031 11.8179 15.4657 11.7939 15.43 11.77C15.3942 11.7461 15.3645 11.7256 15.33 11.7C15.2955 11.6744 15.2632 11.6473 15.23 11.62C15.1968 11.5927 15.1619 11.5589 15.13 11.53C15.0981 11.5011 15.0704 11.4704 15.04 11.44L12.56 8.96C12.5296 8.9296 12.4989 8.90188 12.47 8.87C12.4411 8.83815 12.4073 8.80324 12.38 8.77C12.3527 8.73676 12.3356 8.70457 12.31 8.67C12.2844 8.63546 12.2539 8.60577 12.23 8.57C12.2061 8.53425 12.1821 8.49689 12.16 8.46C12.1379 8.42311 12.1203 8.37794 12.1 8.34C12.0797 8.30208 12.0584 8.26887 12.04 8.23C12.0216 8.19113 12.0064 8.14972 11.99 8.11C11.9735 8.07026 11.9545 8.03049 11.94 7.99C11.9255 7.94951 11.9125 7.91117 11.9 7.87C11.8875 7.82887 11.8804 7.78172 11.87 7.74C11.8596 7.69828 11.84 7.66215 11.84 7.62C11.84 7.5778 11.82 7.53252 11.82 7.49C11.82 7.44744 11.8 7.40279 11.8 7.36C11.8 7.31721 11.79 7.28293 11.79 7.24C11.79 7.19703 11.79 7.153 11.79 7.11C11.79 7.06698 11.79 7.02295 11.79 6.98C11.79 6.93705 11.8 6.89277 11.8 6.85C11.8 6.80719 11.82 6.76254 11.82 6.72C11.82 6.67748 11.84 6.6322 11.84 6.59C11.84 6.54782 11.8595 6.51172 11.87 6.47C11.8804 6.4283 11.8875 6.38115 11.9 6.34C11.9125 6.29885 11.9255 6.26051 11.94 6.22C11.9545 6.17953 11.9735 6.13974 11.99 6.1C12.0064 6.06028 12.0216 6.01887 12.04 5.98C12.0584 5.9411 12.0797 5.90792 12.1 5.87C12.1203 5.83206 12.1379 5.79687 12.16 5.76C12.1821 5.72311 12.2061 5.68575 12.23 5.65C12.2539 5.61423 12.2844 5.57457 12.31 5.54C12.3356 5.50546 12.3527 5.47324 12.38 5.44C12.4073 5.40673 12.4411 5.37185 12.47 5.34C12.4989 5.30812 12.5296 5.28042 12.56 5.25L15.04 2.77C15.0704 2.73959 15.0981 2.70888 15.13 2.68C15.1619 2.65112 15.1968 2.62727 15.23 2.6C15.2632 2.57272 15.2955 2.54561 15.33 2.52C15.3645 2.49439 15.3942 2.46389 15.43 2.44C15.4657 2.41611 15.5031 2.3921 15.54 2.37C15.5769 2.34789 15.6221 2.33027 15.66 2.31C15.6979 2.28973 15.7311 2.26839 15.77 2.25C15.8089 2.23162 15.8503 2.21645 15.89 2.2C15.9297 2.18355 15.9695 2.16449 16.01 2.15C16.0505 2.13551 16.0889 2.12248 16.13 2.11C16.1711 2.09752 16.2183 2.09045 16.26 2.08C16.3017 2.06955 16.3378 2.05 16.38 2.05C16.4221 2.05 16.4675 2.03 16.51 2.03C16.5525 2.03 16.5972 2.01 16.64 2.01C16.6828 2.01 16.7271 2 16.77 2C16.8129 2 16.847 2 16.89 2C16.933 2 16.9771 2 17.02 2C17.0629 2 17.1072 2.01 17.15 2.01C17.1928 2.01 17.2375 2.03 17.28 2.03C17.3225 2.03 17.3678 2.05 17.41 2.05C17.4522 2.05 17.4883 2.06955 17.53 2.08C17.5717 2.09045 17.6189 2.09752 17.66 2.11C17.7011 2.12248 17.7395 2.13551 17.78 2.15C17.8205 2.16449 17.8603 2.18355 17.9 2.2C17.9397 2.21645 17.9811 2.23162 18.02 2.25C18.0589 2.26839 18.0921 2.28973 18.13 2.31C18.1679 2.33027 18.2031 2.34789 18.24 2.37C18.2769 2.3921 18.3142 2.41611 18.35 2.44C18.3857 2.46389 18.4255 2.49439 18.46 2.52C18.4945 2.54561 18.5268 2.57272 18.56 2.6C18.5932 2.62727 18.6281 2.65112 18.66 2.68C18.6919 2.70888 18.7196 2.73959 18.75 2.77ZM8.13 2.73C8.17302 2.73 8.21703 2.73 8.26 2.73C8.30295 2.73 8.34719 2.74 8.39 2.74C8.43279 2.74 8.47744 2.75 8.52 2.75C8.56254 2.75 8.6078 2.78 8.65 2.78C8.69217 2.78 8.72828 2.78955 8.77 2.8C8.81172 2.81045 8.85883 2.82751 8.9 2.84C8.94115 2.85249 8.97949 2.86551 9.02 2.88C9.06049 2.89449 9.10026 2.91355 9.14 2.93C9.17974 2.94647 9.22113 2.96162 9.26 2.98C9.29887 2.99839 9.33206 3.01972 9.37 3.04C9.40791 3.06026 9.45309 3.07788 9.49 3.1C9.52687 3.12212 9.55423 3.1461 9.59 3.17C9.62575 3.1939 9.66546 3.21437 9.7 3.24C9.73454 3.26561 9.76673 3.29272 9.8 3.32C9.83324 3.3473 9.86812 3.38112 9.9 3.41C9.93185 3.43889 9.95958 3.46959 9.99 3.5C10.0204 3.53041 10.0511 3.55813 10.08 3.59C10.1089 3.62187 10.1427 3.65675 10.17 3.69C10.1973 3.72324 10.2144 3.75546 10.24 3.79C10.2656 3.82456 10.2961 3.85424 10.32 3.89C10.3439 3.92576 10.3679 3.9631 10.39 4C10.4121 4.03688 10.4297 4.08207 10.45 4.12C10.4703 4.15795 10.4916 4.19113 10.51 4.23C10.5284 4.26889 10.5435 4.31028 10.56 4.35C10.5764 4.38974 10.5955 4.42953 10.61 4.47C10.6245 4.51051 10.6375 4.54883 10.65 4.59C10.6625 4.63115 10.6695 4.67828 10.68 4.72C10.6904 4.76174 10.71 4.79782 10.71 4.84C10.71 4.8822 10.73 4.92748 10.73 4.97C10.73 5.01256 10.75 5.05721 10.75 5.1C10.75 5.14281 10.76 5.18705 10.76 5.23C10.76 5.27297 10.76 5.307 10.76 5.35L10.76 8.86C10.76 8.90302 10.76 8.94705 10.76 8.99C10.76 9.03297 10.75 9.07721 10.75 9.12C10.75 9.16282 10.73 9.19744 10.73 9.24C10.73 9.28254 10.71 9.3278 10.71 9.37C10.71 9.41218 10.6904 9.45826 10.68 9.5C10.6695 9.5417 10.6625 9.57885 10.65 9.62C10.6375 9.66117 10.6245 9.69951 10.61 9.74C10.5955 9.78051 10.5764 9.82028 10.56 9.86C10.5435 9.89974 10.5284 9.9411 10.51 9.98C10.4916 10.0189 10.4703 10.0621 10.45 10.1C10.4297 10.1379 10.4121 10.1731 10.39 10.21C10.3679 10.2469 10.3439 10.2842 10.32 10.32C10.2961 10.3558 10.2656 10.3855 10.24 10.42C10.2144 10.4545 10.1973 10.4967 10.17 10.53C10.1427 10.5632 10.1089 10.5881 10.08 10.62C10.0511 10.6519 10.0204 10.6896 9.99 10.72C9.95958 10.7504 9.93185 10.7811 9.9 10.81C9.86812 10.8389 9.83324 10.8627 9.8 10.89C9.76673 10.9173 9.73454 10.9444 9.7 10.97C9.66546 10.9956 9.62575 11.0161 9.59 11.04C9.55423 11.0639 9.52687 11.0879 9.49 11.11C9.45309 11.1321 9.40791 11.1597 9.37 11.18C9.33206 11.2003 9.29887 11.2116 9.26 11.23C9.22113 11.2484 9.17974 11.2736 9.14 11.29C9.10026 11.3065 9.06049 11.3155 9.02 11.33C8.97949 11.3445 8.94115 11.3575 8.9 11.37C8.85883 11.3825 8.81172 11.3996 8.77 11.41C8.72828 11.4205 8.69217 11.44 8.65 11.44C8.6078 11.44 8.56254 11.46 8.52 11.46C8.47744 11.46 8.43279 11.47 8.39 11.47C8.34719 11.47 8.30295 11.48 8.26 11.48C8.21703 11.48 8.17302 11.49 8.13 11.49L4.63 11.49C4.58696 11.49 4.54297 11.48 4.5 11.48C4.45701 11.48 4.41281 11.47 4.37 11.47C4.32716 11.47 4.28257 11.46 4.24 11.46C4.19742 11.46 4.16221 11.44 4.12 11.44C4.07779 11.44 4.03174 11.4204 3.99 11.41C3.94826 11.3996 3.91119 11.3825 3.87 11.37C3.82882 11.3575 3.78053 11.3445 3.74 11.33C3.69947 11.3155 3.65977 11.3065 3.62 11.29C3.58023 11.2736 3.54892 11.2484 3.51 11.23C3.4711 11.2116 3.42796 11.2003 3.39 11.18C3.35204 11.1597 3.31693 11.1321 3.28 11.11C3.24307 11.0879 3.20579 11.0639 3.17 11.04C3.13421 11.0161 3.09457 10.9956 3.06 10.97C3.02541 10.9444 2.99327 10.9173 2.96 10.89C2.92672 10.8627 2.8919 10.8389 2.86 10.81C2.8281 10.7811 2.80044 10.7504 2.77 10.72C2.73958 10.6896 2.70892 10.6519 2.68 10.62C2.65109 10.5881 2.62731 10.5632 2.6 10.53C2.57269 10.4967 2.54564 10.4545 2.52 10.42C2.49436 10.3854 2.46392 10.3558 2.44 10.32C2.41608 10.2842 2.39213 10.2469 2.37 10.21C2.34787 10.1731 2.33029 10.138 2.31 10.1C2.28971 10.0621 2.26841 10.0189 2.25 9.98C2.23159 9.9411 2.21648 9.89974 2.2 9.86C2.18353 9.82024 2.1645 9.78054 2.15 9.74C2.1355 9.69951 2.1225 9.6612 2.11 9.62C2.0975 9.57885 2.09046 9.54177 2.08 9.5C2.06954 9.45828 2.05 9.4122 2.05 9.37C2.05 9.3278 2.03 9.28259 2.03 9.24C2.03 9.19746 2.01 9.16284 2.01 9.12C2.01 9.07718 2 9.03297 2 8.99C2 8.947 2 8.90302 2 8.86L2 5.35C2 5.30698 2 5.27297 2 5.23C2 5.187 2.01 5.14281 2.01 5.1C2.01 5.05716 2.03 5.01256 2.03 4.97C2.03 4.92746 2.05 4.88222 2.05 4.84C2.05 4.79782 2.06954 4.76174 2.08 4.72C2.09046 4.67826 2.0975 4.63117 2.11 4.59C2.1225 4.5488 2.1355 4.51051 2.15 4.47C2.1645 4.42949 2.18352 4.38974 2.2 4.35C2.21648 4.31024 2.23159 4.2689 2.25 4.23C2.26841 4.19111 2.28971 4.14795 2.31 4.11C2.33029 4.07205 2.34787 4.03691 2.37 4C2.39213 3.9631 2.41608 3.92577 2.44 3.89C2.46392 3.85423 2.49436 3.82456 2.52 3.79C2.54564 3.75544 2.57269 3.72325 2.6 3.69C2.62731 3.65675 2.65109 3.62188 2.68 3.59C2.70892 3.55813 2.73958 3.53041 2.77 3.5C2.80044 3.46957 2.8281 3.43888 2.86 3.41C2.8919 3.38111 2.92672 3.34728 2.96 3.32C2.99327 3.29272 3.02541 3.26561 3.06 3.24C3.09457 3.21437 3.13421 3.1939 3.17 3.17C3.20579 3.14612 3.24307 3.1221 3.28 3.1C3.31693 3.0779 3.35204 3.06026 3.39 3.04C3.42796 3.01972 3.4711 2.99837 3.51 2.98C3.54892 2.96162 3.58023 2.94644 3.62 2.93C3.65977 2.91355 3.69947 2.89448 3.74 2.88C3.78053 2.86554 3.82882 2.85247 3.87 2.84C3.91119 2.82753 3.94826 2.81042 3.99 2.8C4.03174 2.78958 4.07779 2.78 4.12 2.78C4.16221 2.78 4.19742 2.75 4.24 2.75C4.28257 2.75 4.32716 2.74 4.37 2.74C4.41281 2.74 4.45701 2.73 4.5 2.73C4.54297 2.73 4.58696 2.73 4.63 2.73L8.13 2.73ZM16.27 4.01L13.8 6.49C13.7899 6.50012 13.77 6.50936 13.77 6.52C13.77 6.53062 13.74 6.53893 13.74 6.55C13.74 6.5611 13.71 6.56849 13.71 6.58C13.71 6.59153 13.69 6.60811 13.69 6.62C13.69 6.63194 13.67 6.64772 13.67 6.66C13.67 6.6723 13.64 6.67735 13.64 6.69C13.64 6.70265 13.62 6.71706 13.62 6.73C13.62 6.74297 13.61 6.75676 13.61 6.77C13.61 6.78324 13.59 6.79651 13.59 6.81C13.59 6.82351 13.58 6.83628 13.58 6.85C13.58 6.86374 13.57 6.8761 13.57 6.89C13.57 6.90392 13.56 6.92594 13.56 6.94C13.56 6.95406 13.55 6.96583 13.55 6.98C13.55 6.9942 13.55 7.00571 13.55 7.02C13.55 7.03426 13.54 7.04571 13.54 7.06C13.54 7.07433 13.54 7.09567 13.54 7.11C13.54 7.12433 13.54 7.13571 13.54 7.15C13.54 7.16433 13.55 7.17576 13.55 7.19C13.55 7.20426 13.55 7.2158 13.55 7.23C13.55 7.24417 13.56 7.26592 13.56 7.28C13.56 7.29404 13.57 7.3061 13.57 7.32C13.57 7.33392 13.58 7.34626 13.58 7.36C13.58 7.37369 13.59 7.38649 13.59 7.4C13.59 7.41349 13.61 7.42674 13.61 7.44C13.61 7.45324 13.62 7.46706 13.62 7.48C13.62 7.49297 13.64 7.50738 13.64 7.52C13.64 7.53267 13.67 7.5477 13.67 7.56C13.67 7.57228 13.69 7.57806 13.69 7.59C13.69 7.60192 13.71 7.61847 13.71 7.63C13.71 7.64151 13.74 7.64893 13.74 7.66C13.74 7.67107 13.77 7.67938 13.77 7.69C13.77 7.70062 13.7899 7.71986 13.8 7.73L16.27 10.2C16.2801 10.2101 16.2994 10.23 16.31 10.23C16.3206 10.23 16.3289 10.26 16.34 10.26C16.3511 10.26 16.3585 10.29 16.37 10.29C16.3815 10.29 16.3981 10.31 16.41 10.31C16.4219 10.31 16.4277 10.34 16.44 10.34C16.4523 10.34 16.4673 10.36 16.48 10.36C16.4926 10.36 16.507 10.38 16.52 10.38C16.5329 10.38 16.5467 10.39 16.56 10.39C16.5732 10.39 16.5865 10.41 16.6 10.41C16.6135 10.41 16.6263 10.42 16.64 10.42C16.6537 10.42 16.6661 10.43 16.68 10.43C16.6939 10.43 16.7059 10.44 16.72 10.44C16.7341 10.44 16.7558 10.45 16.77 10.45C16.7842 10.45 16.7957 10.46 16.81 10.46C16.8243 10.46 16.8357 10.46 16.85 10.46C16.8643 10.46 16.8756 10.46 16.89 10.46C16.9043 10.46 16.9257 10.46 16.94 10.46C16.9543 10.46 16.9657 10.46 16.98 10.46C16.9943 10.46 17.0058 10.45 17.02 10.45C17.0342 10.45 17.0459 10.44 17.06 10.44C17.0741 10.44 17.0961 10.43 17.11 10.43C17.1239 10.43 17.1363 10.42 17.15 10.42C17.1637 10.42 17.1765 10.41 17.19 10.41C17.2035 10.41 17.2168 10.39 17.23 10.39C17.2432 10.39 17.257 10.38 17.27 10.38C17.2829 10.38 17.2973 10.36 17.31 10.36C17.3226 10.36 17.3277 10.34 17.34 10.34C17.3523 10.34 17.3681 10.31 17.38 10.31C17.3919 10.31 17.4085 10.29 17.42 10.29C17.4315 10.29 17.4389 10.26 17.45 10.26C17.4611 10.26 17.4694 10.23 17.48 10.23C17.4906 10.23 17.4999 10.2101 17.51 10.2L19.99 7.73C20.0001 7.71986 20.02 7.70062 20.02 7.69C20.02 7.67938 20.05 7.67107 20.05 7.66C20.05 7.64893 20.08 7.64151 20.08 7.63C20.08 7.61847 20.1 7.60192 20.1 7.59C20.1 7.57806 20.12 7.57228 20.12 7.56C20.12 7.5477 20.14 7.53267 20.14 7.52C20.14 7.50738 20.16 7.49297 20.16 7.48C20.16 7.46706 20.18 7.45324 20.18 7.44C20.18 7.42674 20.2 7.41349 20.2 7.4C20.2 7.38649 20.21 7.37369 20.21 7.36C20.21 7.34626 20.22 7.33392 20.22 7.32C20.22 7.3061 20.23 7.29404 20.23 7.28C20.23 7.26592 20.24 7.24417 20.24 7.23C20.24 7.2158 20.24 7.20426 20.24 7.19C20.24 7.17576 20.25 7.16433 20.25 7.15C20.25 7.13571 20.25 7.12433 20.25 7.11C20.25 7.09567 20.25 7.07433 20.25 7.06C20.25 7.04571 20.24 7.03426 20.24 7.02C20.24 7.00571 20.24 6.9942 20.24 6.98C20.24 6.96583 20.23 6.95406 20.23 6.94C20.23 6.92594 20.22 6.90392 20.22 6.89C20.22 6.8761 20.21 6.86374 20.21 6.85C20.21 6.83628 20.2 6.82351 20.2 6.81C20.2 6.79651 20.18 6.78324 20.18 6.77C20.18 6.75676 20.16 6.74297 20.16 6.73C20.16 6.71706 20.14 6.70265 20.14 6.69C20.14 6.67735 20.12 6.6723 20.12 6.66C20.12 6.64772 20.1 6.63194 20.1 6.62C20.1 6.60811 20.08 6.59153 20.08 6.58C20.08 6.56849 20.05 6.5611 20.05 6.55C20.05 6.53893 20.02 6.53062 20.02 6.52C20.02 6.50936 20.0001 6.50012 19.99 6.49L17.51 4.01C17.4999 3.99987 17.4906 3.98 17.48 3.98C17.4694 3.98 17.4611 3.95 17.45 3.95C17.4389 3.95 17.4315 3.92 17.42 3.92C17.4085 3.92 17.3919 3.9 17.38 3.9C17.3681 3.9 17.3523 3.88 17.34 3.88C17.3277 3.88 17.3226 3.86 17.31 3.86C17.2974 3.86 17.283 3.84 17.27 3.84C17.257 3.84 17.2432 3.82 17.23 3.82C17.2167 3.82 17.2035 3.8 17.19 3.8C17.1765 3.8 17.1637 3.79 17.15 3.79C17.1363 3.79 17.1239 3.78 17.11 3.78C17.0961 3.78 17.0741 3.77 17.06 3.77C17.0459 3.77 17.0342 3.76 17.02 3.76C17.0058 3.76 16.9943 3.76 16.98 3.76C16.9657 3.76 16.9543 3.75 16.94 3.75C16.9257 3.75 16.9043 3.75 16.89 3.75C16.8756 3.75 16.8643 3.75 16.85 3.75C16.8357 3.75 16.8243 3.76 16.81 3.76C16.7957 3.76 16.7842 3.76 16.77 3.76C16.7558 3.76 16.7341 3.77 16.72 3.77C16.7059 3.77 16.6939 3.78 16.68 3.78C16.6661 3.78 16.6537 3.79 16.64 3.79C16.6263 3.79 16.6135 3.8 16.6 3.8C16.5865 3.8 16.5732 3.82 16.56 3.82C16.5467 3.82 16.5329 3.84 16.52 3.84C16.507 3.84 16.4926 3.86 16.48 3.86C16.4673 3.86 16.4523 3.88 16.44 3.88C16.4277 3.88 16.4219 3.9 16.41 3.9C16.3981 3.9 16.3815 3.92 16.37 3.92C16.3585 3.92 16.3511 3.95 16.34 3.95C16.3289 3.95 16.3206 3.98 16.31 3.98C16.2994 3.98 16.2801 3.99987 16.27 4.01ZM8.13 4.48L4.63 4.48C4.61565 4.48 4.60431 4.48 4.59 4.48C4.57567 4.48 4.55426 4.48 4.54 4.48C4.52571 4.48 4.51417 4.49 4.5 4.49C4.4858 4.49 4.47404 4.49 4.46 4.49C4.44592 4.49 4.4339 4.5 4.42 4.5C4.4061 4.5 4.39372 4.52 4.38 4.52C4.36626 4.52 4.35349 4.53 4.34 4.53C4.32649 4.53 4.30324 4.54 4.29 4.54C4.27674 4.54 4.27296 4.56 4.26 4.56C4.24704 4.56 4.23264 4.58 4.22 4.58C4.20735 4.58 4.19229 4.6 4.18 4.6C4.1677 4.6 4.15192 4.63 4.14 4.63C4.12809 4.63 4.12151 4.65 4.11 4.65C4.09847 4.65 4.08107 4.68 4.07 4.68C4.05891 4.68 4.05062 4.71 4.04 4.71C4.02938 4.71 4.02015 4.71986 4.01 4.73C3.99987 4.74014 3.98 4.7594 3.98 4.77C3.98 4.78062 3.95 4.78893 3.95 4.8C3.95 4.8111 3.93 4.81849 3.93 4.83C3.93 4.84153 3.9 4.85811 3.9 4.87C3.9 4.88194 3.88 4.8877 3.88 4.9C3.88 4.9123 3.86 4.92733 3.86 4.94C3.86 4.95262 3.84 4.96703 3.84 4.98C3.84 4.99294 3.82 5.00676 3.82 5.02C3.82 5.03326 3.81 5.04651 3.81 5.06C3.81 5.07351 3.79 5.08626 3.79 5.1C3.79 5.11369 3.78 5.1261 3.78 5.14C3.78 5.15392 3.77 5.16594 3.77 5.18C3.77 5.19406 3.76 5.21583 3.76 5.23C3.76 5.24417 3.76 5.25571 3.76 5.27C3.76 5.28424 3.76 5.29567 3.76 5.31C3.76 5.32429 3.75 5.33567 3.75 5.35L3.75 8.86C3.75 9.34361 4.14638 9.73 4.63 9.73L8.13 9.73C8.61361 9.73 9.01 9.34361 9.01 8.86L9.01 5.35C9.01 5.33567 9.01 5.32429 9.01 5.31C9.01 5.29567 9.01 5.28424 9.01 5.27C9.01 5.25571 9 5.24417 9 5.23C9 5.21583 8.99 5.19406 8.99 5.18C8.99 5.16594 8.98 5.15392 8.98 5.14C8.98 5.1261 8.97 5.11369 8.97 5.1C8.97 5.08626 8.96 5.07351 8.96 5.06C8.96 5.04651 8.94 5.03326 8.94 5.02C8.94 5.00676 8.93 4.99294 8.93 4.98C8.93 4.96703 8.91 4.95262 8.91 4.94C8.91 4.92733 8.89 4.9123 8.89 4.9C8.89 4.8877 8.86 4.88194 8.86 4.87C8.86 4.85811 8.84 4.84153 8.84 4.83C8.84 4.81849 8.81 4.8111 8.81 4.8C8.81 4.78893 8.78 4.78062 8.78 4.77C8.78 4.7594 8.76012 4.74014 8.75 4.73C8.73986 4.71986 8.73062 4.71 8.72 4.71C8.70938 4.71 8.70107 4.68 8.69 4.68C8.6789 4.68 8.67151 4.65 8.66 4.65C8.64847 4.65 8.63192 4.63 8.62 4.63C8.60806 4.63 8.59228 4.6 8.58 4.6C8.5677 4.6 8.56262 4.58 8.55 4.58C8.53733 4.58 8.52294 4.56 8.51 4.56C8.49704 4.56 8.48324 4.54 8.47 4.54C8.45674 4.54 8.44349 4.53 8.43 4.53C8.41651 4.53 8.40372 4.52 8.39 4.52C8.37628 4.52 8.3639 4.5 8.35 4.5C8.33608 4.5 8.31404 4.49 8.3 4.49C8.28592 4.49 8.27417 4.49 8.26 4.49C8.2458 4.49 8.23426 4.48 8.22 4.48C8.20571 4.48 8.19431 4.48 8.18 4.48C8.16567 4.48 8.14433 4.48 8.13 4.48Z' fill='%237E84A3' %3E%3C/path%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:gitcode{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' width='24' height='24' class='icon' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.4791 4.97677C15.6201 4.89789 15.7691 4.8145 15.93 4.72314C15.9494 4.82848 15.9683 4.92046 15.9854 5.00383C16.0157 5.15091 16.0406 5.2719 16.0525 5.39144C16.1479 6.4296 16.6697 7.1933 17.4092 7.36527C18.4908 7.61639 19.5106 7.20133 20.06 6.28555C20.72 5.18673 20.4334 3.84099 19.3097 3.03098C16.1851 0.777435 12.7523 0.155888 9.05448 1.24127C1.08137 3.59371 -1.64675 13.3884 4.01196 19.3949C6.43291 21.9642 9.50695 23.0727 12.9963 22.9889C17.4663 22.8839 20.6857 20.6563 22.7408 16.7954C24.1978 14.0561 22.6139 11.0619 19.5805 10.4396C17.8481 10.0908 16.0765 9.97756 14.3137 10.103C13.7272 10.1594 13.1579 10.3325 12.6394 10.6124C12.0592 10.9135 11.8915 11.5383 11.9565 12.1575C12.0171 12.7217 12.4498 13.0601 12.965 13.1453C14.0024 13.3077 15.0522 13.402 16.1 13.4881C16.4032 13.5136 16.7093 13.5166 17.0149 13.5197C17.4534 13.5241 17.8912 13.5285 18.3187 13.5991C19.5385 13.8007 19.9574 14.7905 19.33 15.8495C19.1763 16.1041 18.9971 16.3424 18.7951 16.5607C17.9745 17.4632 16.9014 18.0981 15.7152 18.3827C13.55 18.9127 11.3827 18.9425 9.22755 18.2617C6.77347 17.4875 5.31042 15.6849 5.25902 13.2584C5.2398 11.7619 5.61972 10.2874 6.35969 8.9865C6.694 8.38013 6.87751 7.75562 6.82593 7.06851C6.80422 6.77557 6.79219 6.48231 6.77927 6.16716C6.77239 5.99944 6.76526 5.82551 6.75628 5.64214C7.00484 5.69431 7.25032 5.76016 7.49161 5.83943C8.43027 6.21622 9.35415 6.38811 10.3702 6.11155C10.9481 5.97335 11.5455 5.93511 12.1363 5.9985C13.0877 6.07606 14.0387 5.84361 14.847 5.33586C15.0488 5.2176 15.2539 5.10279 15.4791 4.97677Z' fill='currentColor'%3E%3C/path%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:gitee{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' fill='currentColor' t='1725812178308' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='4564' width='200' height='200'%3E%3Cpath d='M512 1024C229.234 1024 0 794.766 0 512S229.234 0 512 0s512 229.234 512 512-229.234 512-512 512z m259.157-568.889l-290.759 0.014c-13.966 0-25.287 11.321-25.287 25.273l-0.028 63.218c0 13.966 11.306 25.287 25.273 25.287H657.38c13.966 0 25.287 11.307 25.287 25.273v12.644a75.847 75.847 0 0 1-75.847 75.847H366.606a25.287 25.287 0 0 1-25.287-25.273v-240.2a75.847 75.847 0 0 1 75.847-75.846l353.92-0.015c13.966 0 25.273-11.306 25.287-25.273l0.071-63.189c0-13.966-11.306-25.287-25.272-25.301l-353.992 0.014c-104.718-0.014-189.624 84.892-189.624 189.61v353.963c0 13.967 11.32 25.287 25.287 25.287h372.935c94.265 0 170.666-76.401 170.666-170.666v-145.38c0-13.952-11.32-25.273-25.287-25.273z' p-id='4565'%3E%3C/path%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:github{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' fill='currentColor' class='icon' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cpath d='M511.543 14.057C228.914 13.943 0 242.743 0 525.143 0 748.457 143.2 938.286 342.629 1008c26.857 6.743 22.742-12.343 22.742-25.371v-88.572C210.286 912.23 204 809.6 193.6 792.457c-21.029-35.886-70.743-45.028-55.886-62.171 35.315-18.172 71.315 4.571 113.029 66.171 30.171 44.686 89.028 37.143 118.857 29.714 6.514-26.857 20.457-50.857 39.657-69.485C248.571 727.886 181.6 629.829 181.6 513.257c0-56.571 18.629-108.571 55.2-150.514-23.314-69.143 2.171-128.343 5.6-137.143 66.4-5.943 135.429 47.543 140.8 51.771C420.914 267.2 464 261.83 512.229 261.83c48.457 0 91.657 5.6 129.714 15.885 12.914-9.828 76.914-55.771 138.628-50.171 3.315 8.8 28.229 66.628 6.286 134.857 37.029 42.057 55.886 94.514 55.886 151.2 0 116.8-67.429 214.971-228.572 243.314a145.714 145.714 0 0 1 43.543 104v128.572c.915 10.285 0 20.457 17.143 20.457 202.4-68.229 348.114-259.429 348.114-484.686 0-282.514-229.028-511.2-511.428-511.2z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:homepage{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' fill='currentColor' class='icon' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cpath d='M958.401 451.55a20.01 20.01 0 0 0-6.966-14.972L524.345 69.511c-7.499-6.446-18.581-6.446-26.08 0L309.583 231.676V129.657c0-11.05-8.902-19.533-19.952-19.533h-88.034c-11.048 0-19.928 8.482-19.928 19.533v211.954L71.176 436.578a20.003 20.003 0 0 0-6.968 15.174v105.5a20.007 20.007 0 0 0 33.052 15.172l53.298-45.826V850.7c0 60.678 49.364 110.042 110.042 110.042h504.192c60.678 0 110.043-49.364 110.043-110.042V527.026l51.586 44.336a20.001 20.001 0 0 0 21.48 2.966 20.006 20.006 0 0 0 11.566-18.343l-1.066-104.436zM221.579 150.033h48.095v115.942l-48.095 41.336V150.034zm349.14 770.692H436.665V700.642c0-11.03 8.977-20.007 20.008-20.007h94.036c11.03 0 20.007 8.976 20.007 20.007v220.084zm264.1-424.83v354.803c0 38.612-31.415 70.027-70.028 70.027H610.733V700.642c0-33.096-26.927-60.023-60.023-60.023h-94.036c-33.097 0-60.023 26.927-60.023 60.023v220.085H260.599c-38.612 0-70.027-31.415-70.027-70.027V495.895a20.07 20.07 0 0 0-.315-3.432L512.37 215.504l322.703 277.349a20.158 20.158 0 0 0-.255 3.042zM525.41 173.947c-7.502-6.446-18.587-6.447-26.086.003l-395.1 339.714v-52.727l407.081-349.87 407.177 349.952.522 51.205L525.41 173.948z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:index{background:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9.99429 3.68193L4.55057 7.84476C4.06192 8.21844 3.68133 8.68103 3.4088 9.23251C3.13627 9.78401 3 10.3673 3 10.9825L3 18C3 20.1815 4.76848 21.95 6.95 21.95L17.45 21.95C19.6315 21.95 21.4 20.1815 21.4 18L21.4 10.9279C21.4 10.3331 21.2722 9.76728 21.0166 9.23027C20.761 8.69327 20.4024 8.23726 19.9408 7.86222L14.8846 3.75399C14.535 3.46996 14.1489 3.25226 13.7263 3.10089C13.3147 2.95347 12.8899 2.87652 12.4519 2.87007C12.014 2.86362 11.5871 2.92801 11.1713 3.06324C10.7444 3.20209 10.3521 3.40832 9.99429 3.68193ZM5.11216 10.0743C5.2536 9.78805 5.45112 9.54798 5.70473 9.35404L11.1484 5.1912C11.5249 4.90333 11.9501 4.76288 12.4239 4.76986C12.8978 4.77685 13.3186 4.92976 13.6864 5.2286L18.7427 9.33684C18.9822 9.53148 19.1683 9.76814 19.301 10.0468C19.4337 10.3255 19.5 10.6192 19.5 10.9279L19.5 18C19.5 19.1322 18.5822 20.05 17.45 20.05L6.95 20.05C5.81782 20.05 4.9 19.1322 4.9 18L4.9 10.9825C4.9 10.6632 4.97072 10.3605 5.11216 10.0743Z' fill-rule='evenodd' fill='%237E84A3' %3E%3C/path%3E%3Cpath d='M12.5217 15.7752C10.0496 15.7752 9.14632 14.2646 9.10903 14.2003C8.89147 13.8248 9.00972 13.3377 9.37278 13.1128C9.73139 12.8905 10.1951 13.0071 10.4164 13.3718C10.4529 13.4272 10.9862 14.1894 12.5217 14.1894C14.0572 14.1894 14.6065 13.4036 14.6282 13.3699C14.8592 13.0123 15.3293 12.9015 15.681 13.1318C16.0325 13.3621 16.1478 13.8314 15.9341 14.2003C15.8968 14.2646 14.9937 15.7752 12.5217 15.7752Z' fill='%237E84A3' %3E%3C/path%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;width:1em;height:1em;}.i-svg\:java{background:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' t='1721534999310' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='2348' width='200' height='200'%3E%3Cpath d='M558.08 472.064c48.128 53.248-13.312 103.424-13.312 103.424s119.808-61.44 65.536-139.264c-51.2-71.68-91.136-107.52 122.88-232.448 0 1.024-335.872 86.016-175.104 268.288' fill='%23FF0000' p-id='2349'%3E%3C/path%3E%3Cpath d='M610.304 5.12s101.376 101.376-96.256 258.048C356.352 389.12 478.208 460.8 514.048 543.744 420.864 459.776 354.304 386.048 399.36 317.44 463.872 216.064 651.264 166.912 610.304 5.12' fill='%23FF0000' p-id='2350'%3E%3C/path%3E%3Cpath d='M720.896 757.76c183.296-95.232 98.304-188.416 39.936-175.104-15.36 3.072-21.504 5.12-21.504 5.12s5.12-8.192 16.384-11.264c117.76-40.96 207.872 120.832-37.888 186.368-1.024 0 2.048-3.072 3.072-5.12m-337.92 38.912s-37.888 21.504 26.624 29.696c76.8 8.192 117.76 8.192 202.752-8.192 0 0 23.552 15.36 53.248 26.624-191.488 80.896-433.152-5.12-282.624-48.128m-23.552-106.496s-43.008 31.744 23.552 37.888c82.944 8.192 149.504 10.24 261.12-13.312 0 0 16.384 16.384 40.96 24.576-231.424 68.608-490.496 5.12-325.632-49.152' fill='%236699FF' p-id='2351'%3E%3C/path%3E%3Cpath d='M811.008 876.544s27.648 23.552-31.744 40.96c-111.616 34.816-460.8 45.056-558.08 2.048-34.816-15.36 31.744-35.84 51.2-40.96 21.504-5.12 34.816-3.072 34.816-3.072-38.912-28.672-251.904 52.224-107.52 75.776 390.144 62.464 712.704-28.672 611.328-74.752M400.384 578.56s-178.176 43.008-63.488 56.32c49.152 6.144 146.432 5.12 235.52-3.072 73.728-6.144 147.456-19.456 147.456-19.456s-26.624 11.264-45.056 24.576c-181.248 48.128-530.432 26.624-430.08-23.552 88.064-39.936 155.648-34.816 155.648-34.816' fill='%236699FF' p-id='2352'%3E%3C/path%3E%3Cpath d='M418.816 1015.808c176.128 11.264 446.464-6.144 453.632-90.112 0 0-13.312 31.744-146.432 56.32-150.528 27.648-336.896 24.576-446.464 6.144 2.048 1.024 24.576 20.48 139.264 27.648' fill='%236699FF' p-id='2353'%3E%3C/path%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;width:1em;height:1em;}.i-svg\:juejin{background:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' t='1733555774238' class='icon' viewBox='0 0 1316 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='46620' width='128' height='128'%3E%3Cpath d='M643.181714 247.698286l154.916572-123.172572L643.181714 0.256 643.072 0l-154.660571 124.269714 154.660571 123.245715 0.109714 0.182857z m0 388.461714h0.109715l399.579428-315.245714-108.361143-87.04-291.218285 229.888h-0.146286l-0.109714 0.146285L351.817143 234.093714l-108.251429 87.04 399.433143 315.136 0.146286-0.146285z m-0.146285 215.552l0.146285-0.146286 534.893715-422.034285 108.397714 87.04-243.309714 192L643.145143 1024 10.422857 525.056 0 516.754286l108.251429-86.893715L643.035429 851.748571z' fill='%231E80FF' p-id='46621'%3E%3C/path%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;width:1em;height:1em;}.i-svg\:language{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='m18.5 10 4.4 11h-2.155l-1.201-3h-4.09l-1.199 3h-2.154L16.5 10h2zM10 2v2h6v2h-1.968a18.221 18.221 0 0 1-3.62 6.301 14.865 14.865 0 0 0 2.335 1.707l-.75 1.878A17.016 17.016 0 0 1 9 13.725a16.677 16.677 0 0 1-6.201 3.548l-.536-1.929a14.7 14.7 0 0 0 5.327-3.042A18.078 18.078 0 0 1 4.767 8h2.24A16.031 16.031 0 0 0 9 10.877a16.165 16.165 0 0 0 2.91-4.876L2 6V4h6V2h2zm7.5 10.885L16.253 16h2.492L17.5 12.885z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:menu{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' fill='currentColor' class='icon' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cpath d='M374.272 440.832H127.488c-33.792 0-61.44-27.648-61.44-61.44V132.608c0-33.792 27.648-61.44 61.44-61.44h247.296c33.792 0 61.44 27.648 61.44 61.44v247.296c-.512 33.792-27.648 60.928-61.952 60.928zM127.488 132.608v247.296h247.296V132.608H127.488zM762.88 492.032c-16.384 0-31.744-6.144-43.52-17.92L544.768 299.52c-11.776-11.776-17.92-27.136-17.92-43.52s6.144-31.744 17.92-43.52L719.36 37.888c11.776-11.776 27.136-17.92 43.52-17.92s31.744 6.144 43.52 17.92L980.992 212.48c11.776 11.776 17.92 27.136 17.92 43.52s-6.144 31.744-17.92 43.52L806.4 474.112c-11.776 11.776-27.136 17.92-43.52 17.92zm0-410.624L588.288 256 762.88 430.592 937.472 256 762.88 81.408zM374.272 952.832H127.488c-33.792 0-61.44-27.648-61.44-61.44V644.096c0-33.792 27.648-61.44 61.44-61.44h247.296c33.792 0 61.44 27.648 61.44 61.44v247.296c-.512 34.304-27.648 61.44-61.952 61.44zM127.488 644.608v247.296h247.296V644.608H127.488zm758.784 308.224H638.976c-33.792 0-61.44-27.648-61.44-61.44V644.096c0-33.792 27.648-61.44 61.44-61.44h247.296c33.792 0 61.44 27.648 61.44 61.44v247.296c0 34.304-27.136 61.44-61.44 61.44zM639.488 644.608v247.296h247.296V644.608H639.488z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:message{background:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' t='1719845783644' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='277659' width='200' height='200'%3E%3Cpath d='M392.297931 841.021793a130.01269 128.635586 90 1 0 257.271172 0 130.01269 128.635586 90 1 0-257.271172 0Z' fill='%23FFD08D' p-id='277660'%3E%3C/path%3E%3Cpath d='M456.174345 52.965517m50.458483 0l-0.035311 0q50.458483 0 50.458483 50.458483l0 59.568552q0 50.458483-50.458483 50.458482l0.035311 0q-50.458483 0-50.458483-50.458482l0-59.568552q0-50.458483 50.458483-50.458483Z' fill='%23FFD293' p-id='277661'%3E%3C/path%3E%3Cpath d='M520.933517 1006.344828c-90.641655 0-163.945931-74.081103-163.945931-165.323035 0-91.206621 73.304276-165.323034 163.945931-165.323034 90.606345 0 163.945931 74.116414 163.945931 165.323034 0 91.241931-73.339586 165.323034-163.945931 165.323035z m0-70.62069c51.447172 0 93.325241-42.301793 93.325242-94.702345 0-52.365241-41.878069-94.702345-93.325242-94.702345-51.482483 0-93.325241 42.337103-93.325241 94.702345 0 52.400552 41.842759 94.702345 93.325241 94.702345z' fill='%23FCA100' p-id='277662'%3E%3C/path%3E%3Cpath d='M506.632828 88.275862a15.148138 15.148138 0 0 0-15.148138 15.148138v59.603862a15.148138 15.148138 0 0 0 30.296276 0V103.424a15.148138 15.148138 0 0 0-15.183449-15.148138z m85.768827 15.148138v59.603862a85.768828 85.768828 0 1 1-171.537655 0V103.424a85.768828 85.768828 0 1 1 171.537655 0z' fill='%23FB9C00' p-id='277663'%3E%3C/path%3E%3Cpath d='M177.893517 494.344828c0-183.472552 147.173517-332.270345 328.739311-332.270345 181.530483 0 346.394483 148.797793 346.394482 332.270345v260.025379l100.034207 129.977379H77.85931l100.034207-129.977379V494.344828z' fill='%23FFA300' p-id='277664'%3E%3C/path%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;width:1em;height:1em;}.i-svg\:monitor{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' fill='currentColor' class='icon' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cdefs%3E%3Cstyle%3E@font-face{font-family:rbicon;src:url(chrome-extension://dipiagiiohfljcicegpgffpbnjmgjcnf/fonts/rbicon.woff2) format(&quot;woff2&quot;);font-weight:400;font-style:normal}%3C/style%3E%3C/defs%3E%3Cpath d='M64 64v576h832V64H64zM0 0h960v704H0V0z'/%3E%3Cpath d='M192 896h576v64H192zm256-256h64v256h-64zm31.232-78.396 309.99-348.33-47.803-42.548-259.567 291.67-177.895-222.387L163.21 438.605l52.224 37.009 91.622-129.28z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:operate{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M5.09608 17.2018L4.41463 17.2018C4.40537 17.2017 4.39611 17.2019 4.38688 17.2024C4.37762 17.2028 4.3684 17.2034 4.3592 17.2043C4.34998 17.2051 4.34078 17.2062 4.33162 17.2076C4.32246 17.2089 4.31334 17.2104 4.30426 17.2122C4.29516 17.214 4.28613 17.2159 4.27715 17.2182C4.26817 17.2204 4.25924 17.2228 4.25037 17.2255C4.2415 17.2281 4.2327 17.231 4.22397 17.2341C4.21524 17.2371 4.20658 17.2404 4.19803 17.2439C4.18945 17.2474 4.18098 17.2511 4.1726 17.2551C4.1642 17.259 4.15592 17.2631 4.14775 17.2674C4.13957 17.2718 4.13151 17.2763 4.12354 17.281C4.11557 17.2857 4.10774 17.2906 4.10002 17.2957C4.09229 17.3008 4.08471 17.3061 4.07725 17.3116C4.06979 17.3171 4.06246 17.3228 4.05527 17.3286C4.04809 17.3344 4.04106 17.3404 4.03418 17.3466C4.02729 17.3528 4.02055 17.3591 4.01399 17.3657C4.00738 17.3722 4.00098 17.3788 3.99473 17.3857C3.98848 17.3925 3.9824 17.3995 3.9765 17.4066C3.97059 17.4137 3.96484 17.421 3.9593 17.4284C3.95375 17.4358 3.94838 17.4433 3.9432 17.451C3.93801 17.4587 3.93302 17.4665 3.92822 17.4744C3.92342 17.4823 3.91882 17.4903 3.91441 17.4985C3.91 17.5066 3.90579 17.5148 3.90179 17.5232C3.89779 17.5315 3.89399 17.5399 3.8904 17.5485C3.88681 17.557 3.88343 17.5656 3.88026 17.5743C3.8771 17.583 3.87415 17.5918 3.87141 17.6007C3.86867 17.6095 3.86615 17.6184 3.86385 17.6273C3.86155 17.6363 3.85947 17.6453 3.85761 17.6544C3.85575 17.6635 3.85411 17.6726 3.8527 17.6817C3.85129 17.6909 3.8501 17.7 3.84914 17.7092C3.84817 17.7184 3.84744 17.7277 3.84693 17.7369C3.84642 17.7462 3.84613 17.7554 3.84608 17.7647L3.84608 21.4336C3.84608 21.4429 3.8463 21.4522 3.84676 21.4615C3.84722 21.4707 3.8479 21.48 3.84882 21.4892C3.84973 21.4985 3.85087 21.5077 3.85224 21.5169C3.8536 21.5261 3.85519 21.5352 3.85701 21.5443C3.85883 21.5535 3.86087 21.5625 3.86313 21.5715C3.86539 21.5807 3.86788 21.5897 3.87058 21.5984C3.87328 21.6072 3.8762 21.616 3.87934 21.6248C3.88248 21.6336 3.88583 21.6422 3.88939 21.6508C3.89296 21.6594 3.89673 21.668 3.90071 21.6764C3.9047 21.6848 3.90888 21.693 3.91327 21.7012C3.91766 21.7094 3.92225 21.7174 3.92704 21.7254C3.93182 21.7334 3.9368 21.7412 3.94198 21.749C3.94715 21.7566 3.95251 21.7643 3.95807 21.7717C3.96361 21.7791 3.96934 21.7863 3.97526 21.7936C3.98115 21.8008 3.98723 21.8078 3.99348 21.8147C3.99973 21.8215 4.00615 21.8283 4.01274 21.8348C4.01932 21.8414 4.02606 21.8479 4.03295 21.8541C4.03984 21.8602 4.0469 21.8662 4.0541 21.8723C4.06129 21.8781 4.06861 21.8838 4.07609 21.8893C4.08358 21.8949 4.09119 21.9002 4.09893 21.9053C4.10666 21.9106 4.11451 21.9154 4.1225 21.9201C4.13047 21.925 4.13858 21.9295 4.14678 21.9338C4.15498 21.9383 4.1633 21.9424 4.17172 21.9463C4.18012 21.9502 4.18863 21.9539 4.19723 21.9574C4.20582 21.9611 4.21449 21.9645 4.22324 21.9674C4.23199 21.9705 4.24084 21.9734 4.24975 21.9762C4.25863 21.9787 4.2676 21.9813 4.27662 21.9834C4.28565 21.9856 4.29471 21.9877 4.30383 21.9895C4.31293 21.9912 4.32209 21.9928 4.33131 21.9941C4.34049 21.9955 4.34971 21.9965 4.35897 21.9975C4.36822 21.9984 4.37748 21.999 4.38678 21.9994C4.39606 21.9998 4.40533 22 4.41463 22L5.11033 22C5.11959 22 5.12883 21.9998 5.13809 21.9994C5.14733 21.999 5.15656 21.9984 5.16578 21.9975C5.17498 21.9965 5.18416 21.9955 5.19334 21.9941C5.2025 21.9928 5.21162 21.9914 5.22071 21.9897C5.22979 21.9879 5.23883 21.9858 5.24781 21.9836C5.2568 21.9815 5.26572 21.9789 5.27461 21.9764C5.28348 21.9736 5.29227 21.9707 5.301 21.9678C5.30971 21.9647 5.31836 21.9613 5.32694 21.9578C5.33549 21.9543 5.34397 21.9506 5.35237 21.9467C5.36074 21.9428 5.36903 21.9387 5.37721 21.9344C5.38539 21.9301 5.39346 21.9256 5.40143 21.9207C5.4094 21.916 5.41723 21.9111 5.42494 21.9061C5.43266 21.901 5.44026 21.8957 5.44772 21.8902C5.45518 21.8846 5.4625 21.8789 5.46969 21.8733C5.47688 21.8674 5.48391 21.8613 5.4908 21.8551C5.49768 21.849 5.50442 21.8426 5.511 21.8361C5.51756 21.8297 5.52399 21.8229 5.53024 21.816C5.53649 21.8092 5.54256 21.8024 5.54848 21.7951C5.55438 21.7881 5.5601 21.7809 5.56567 21.7734C5.57121 21.766 5.57656 21.7584 5.58176 21.7508C5.58694 21.7432 5.59194 21.7354 5.59674 21.7274C5.60154 21.7193 5.60613 21.7113 5.61055 21.7033C5.61496 21.6951 5.61916 21.6869 5.62317 21.6785C5.62717 21.6701 5.63096 21.6617 5.63455 21.6533C5.63815 21.6447 5.64153 21.6361 5.64469 21.6274C5.64785 21.6188 5.65082 21.61 5.65356 21.6012C5.65629 21.5924 5.65881 21.5834 5.66112 21.5744C5.66342 21.5654 5.66549 21.5565 5.66735 21.5475C5.6692 21.5383 5.67084 21.5292 5.67227 21.5201C5.67367 21.5109 5.67485 21.5017 5.67582 21.4925C5.67678 21.4833 5.67752 21.4741 5.67803 21.4649C5.67854 21.4556 5.67883 21.4464 5.67889 21.4371L5.67889 17.7746C5.67899 17.7654 5.67887 17.7561 5.67852 17.7469C5.67817 17.7376 5.6776 17.7284 5.6768 17.7192C5.676 17.7099 5.67498 17.7007 5.67373 17.6916C5.67248 17.6824 5.671 17.6733 5.6693 17.6642C5.6676 17.6551 5.66569 17.646 5.66354 17.637C5.66139 17.628 5.65903 17.619 5.65645 17.6102C5.65387 17.6013 5.65108 17.5925 5.64807 17.5837C5.64504 17.575 5.64182 17.5663 5.63838 17.5577C5.63494 17.5491 5.63129 17.5406 5.62744 17.5322C5.62358 17.5238 5.61951 17.5154 5.61526 17.5072C5.611 17.499 5.60653 17.4909 5.60188 17.4829C5.59721 17.4749 5.59235 17.467 5.58731 17.4593C5.58227 17.4515 5.57703 17.4439 5.5716 17.4364C5.56617 17.4289 5.56059 17.4215 5.55481 17.4143C5.54903 17.4071 5.54307 17.4 5.53694 17.393C5.5308 17.3861 5.52449 17.3793 5.51805 17.3727C5.51158 17.3661 5.50496 17.3596 5.49819 17.3533C5.49139 17.347 5.48446 17.3409 5.47738 17.3349C5.47031 17.3289 5.46309 17.3232 5.45572 17.3175C5.44836 17.3119 5.44086 17.3065 5.43324 17.3013C5.42561 17.296 5.41785 17.291 5.40998 17.2861C5.40209 17.2813 5.3941 17.2766 5.386 17.2721C5.37789 17.2676 5.36969 17.2634 5.36137 17.2593C5.35305 17.2553 5.34465 17.2514 5.33615 17.2477C5.32764 17.2441 5.31904 17.2406 5.31037 17.2374C5.3017 17.2342 5.29295 17.2312 5.28414 17.2283C5.27531 17.2255 5.26643 17.223 5.25748 17.2206C5.24854 17.2182 5.23953 17.2161 5.23049 17.2141C5.22143 17.2122 5.21233 17.2105 5.2032 17.209C5.19406 17.2075 5.18488 17.2063 5.17568 17.2053C5.16649 17.2042 5.15727 17.2034 5.14803 17.2028C5.13879 17.2023 5.12955 17.2019 5.12029 17.2018L5.09588 17.2018L5.09608 17.2018ZM10.0488 15.0619L9.29723 15.0619C9.28741 15.0619 9.2776 15.0622 9.2678 15.0627C9.25799 15.0631 9.24819 15.0639 9.23842 15.0648C9.22866 15.0658 9.21891 15.067 9.2092 15.0684C9.19948 15.0699 9.18981 15.0715 9.18018 15.0735C9.17053 15.0754 9.16096 15.0775 9.15145 15.0799C9.14192 15.0823 9.13244 15.0849 9.12307 15.0878C9.11366 15.0906 9.10434 15.0937 9.0951 15.097C9.08584 15.1003 9.07668 15.1039 9.06762 15.1076C9.05854 15.1114 9.04957 15.1153 9.04071 15.1196C9.03182 15.1237 9.02305 15.1281 9.0144 15.1328C9.00573 15.1374 8.99719 15.1423 8.98877 15.1473C8.98034 15.1523 8.97205 15.1576 8.96389 15.1631C8.95573 15.1685 8.9477 15.1742 8.93981 15.18C8.93192 15.1859 8.92418 15.1919 8.9166 15.1981C8.90901 15.2044 8.90157 15.2108 8.8943 15.2174C8.88701 15.224 8.87991 15.2307 8.87297 15.2377C8.86602 15.2446 8.85926 15.2517 8.85266 15.259C8.84606 15.2663 8.83965 15.2737 8.83342 15.2813C8.82719 15.2889 8.82116 15.2966 8.81532 15.3045C8.80946 15.3124 8.80379 15.3204 8.79834 15.3286C8.79289 15.3368 8.78764 15.345 8.7826 15.3535C8.77754 15.3619 8.7727 15.3704 8.76809 15.3791C8.76344 15.3878 8.75903 15.3965 8.75485 15.4054C8.75063 15.4143 8.74666 15.4232 8.74291 15.4323C8.73914 15.4414 8.73561 15.4506 8.73231 15.4598C8.72899 15.469 8.72592 15.4784 8.72307 15.4878C8.72022 15.4972 8.7176 15.5066 8.71522 15.5162C8.71284 15.5257 8.71069 15.5352 8.70877 15.5449C8.70684 15.5545 8.70516 15.5642 8.70373 15.5739C8.70229 15.5836 8.70108 15.5934 8.70012 15.6031C8.69914 15.6129 8.69842 15.6227 8.69795 15.6325C8.69746 15.6423 8.69723 15.6521 8.69723 15.6619L8.69723 21.4C8.69723 21.4098 8.69746 21.4196 8.69795 21.4294C8.69842 21.4392 8.69914 21.4491 8.7001 21.4588C8.70106 21.4686 8.70225 21.4783 8.7037 21.4881C8.70514 21.4978 8.70682 21.5074 8.70873 21.5171C8.71065 21.5266 8.7128 21.5361 8.71518 21.5457C8.71756 21.5553 8.72018 21.5649 8.72303 21.5742C8.72588 21.5836 8.72895 21.593 8.73227 21.6022C8.73557 21.6113 8.73911 21.6205 8.74286 21.6297C8.7466 21.6387 8.75059 21.6477 8.75479 21.6566C8.75897 21.6654 8.76338 21.6742 8.76803 21.6828C8.77264 21.6916 8.77748 21.7002 8.78254 21.7086C8.78758 21.717 8.79284 21.7252 8.79828 21.7334C8.80373 21.7416 8.8094 21.7496 8.81526 21.7574C8.8211 21.7654 8.82713 21.7731 8.83336 21.7807C8.83959 21.7883 8.846 21.7957 8.8526 21.8029C8.8592 21.8102 8.86596 21.8174 8.87291 21.8244C8.87985 21.8313 8.88696 21.8381 8.89424 21.8445C8.90151 21.8512 8.90895 21.8576 8.91655 21.8639C8.92412 21.8701 8.93188 21.8762 8.93977 21.882C8.94766 21.8879 8.95569 21.8936 8.96385 21.899C8.97202 21.9043 8.9803 21.9096 8.98873 21.9147C8.99715 21.9197 9.00569 21.9246 9.01436 21.9293C9.02301 21.9338 9.03178 21.9383 9.04067 21.9424C9.04953 21.9467 9.05852 21.9506 9.0676 21.9543C9.07666 21.958 9.08582 21.9617 9.09508 21.965C9.10432 21.9684 9.11364 21.9713 9.12303 21.9742C9.13243 21.9772 9.1419 21.9797 9.15143 21.982C9.16096 21.9844 9.17053 21.9865 9.18016 21.9885C9.18979 21.9904 9.19946 21.9922 9.20918 21.9936C9.21889 21.9949 9.22864 21.9961 9.23842 21.9971C9.24819 21.9981 9.25797 21.9988 9.2678 21.9992C9.2776 21.9998 9.28741 22 9.29723 22L10.0572 22C10.067 22 10.0768 21.9998 10.0866 21.9992C10.0964 21.9988 10.1062 21.9981 10.116 21.9971C10.1258 21.9961 10.1355 21.9949 10.1452 21.9936C10.1549 21.9922 10.1646 21.9904 10.1742 21.9885C10.1839 21.9865 10.1934 21.9844 10.203 21.982C10.2125 21.9797 10.222 21.9772 10.2314 21.9742C10.2407 21.9713 10.2501 21.9682 10.2593 21.9649C10.2686 21.9615 10.2777 21.958 10.2868 21.9543C10.2959 21.9506 10.3048 21.9465 10.3137 21.9424C10.3226 21.9383 10.3314 21.9338 10.34 21.9291C10.3487 21.9246 10.3572 21.9197 10.3656 21.9147C10.3741 21.9096 10.3824 21.9043 10.3905 21.8988C10.3987 21.8934 10.4067 21.8877 10.4146 21.8818C10.4225 21.876 10.4302 21.8699 10.4378 21.8639C10.4454 21.8576 10.4528 21.8512 10.4601 21.8445C10.4674 21.8381 10.4745 21.8313 10.4814 21.8242C10.4884 21.8174 10.4952 21.8102 10.5018 21.8029C10.5083 21.7957 10.5148 21.7883 10.521 21.7807C10.5272 21.7731 10.5332 21.7654 10.5391 21.7574C10.545 21.7494 10.5506 21.7414 10.5561 21.7334C10.5615 21.7252 10.5668 21.7168 10.5718 21.7084C10.5769 21.7 10.5817 21.6916 10.5863 21.6828C10.591 21.6742 10.5954 21.6654 10.5996 21.6565C10.6038 21.6477 10.6078 21.6387 10.6115 21.6297C10.6153 21.6205 10.6188 21.6113 10.6221 21.6022C10.6254 21.593 10.6285 21.5836 10.6314 21.5742C10.6342 21.5649 10.6368 21.5553 10.6392 21.5457C10.6416 21.5361 10.6437 21.5266 10.6456 21.5171C10.6476 21.5074 10.6492 21.4977 10.6507 21.488C10.6521 21.4783 10.6533 21.4686 10.6543 21.4588C10.6553 21.449 10.656 21.4392 10.6565 21.4294C10.6569 21.4196 10.6572 21.4098 10.6572 21.4L10.6572 15.6524C10.657 15.6425 10.6567 15.6327 10.656 15.623C10.6554 15.6131 10.6546 15.6034 10.6535 15.5936C10.6524 15.5839 10.651 15.5741 10.6494 15.5644C10.6479 15.5548 10.646 15.5451 10.644 15.5355C10.6419 15.5259 10.6397 15.5164 10.6371 15.5069C10.6346 15.4974 10.6319 15.488 10.6289 15.4786C10.6259 15.4692 10.6227 15.46 10.6192 15.4508C10.6158 15.4416 10.6121 15.4325 10.6083 15.4234C10.6044 15.4144 10.6003 15.4055 10.5959 15.3967C10.5916 15.3879 10.5871 15.3792 10.5823 15.3706C10.5776 15.362 10.5726 15.3535 10.5675 15.3452C10.5623 15.3368 10.5569 15.3286 10.5514 15.3205C10.5458 15.3124 10.54 15.3045 10.5341 15.2967C10.5281 15.2889 10.5219 15.2812 10.5156 15.2737C10.5093 15.2662 10.5028 15.2589 10.4961 15.2517C10.4894 15.2445 10.4825 15.2375 10.4755 15.2307C10.4684 15.2238 10.4612 15.2172 10.4539 15.2107C10.4465 15.2042 10.4389 15.1979 10.4313 15.1918C10.4236 15.1856 10.4158 15.1797 10.4078 15.174C10.3998 15.1682 10.3917 15.1627 10.3835 15.1573C10.3753 15.152 10.3669 15.1469 10.3584 15.142C10.3499 15.137 10.3413 15.1323 10.3326 15.1278C10.3239 15.1233 10.315 15.119 10.3061 15.1149C10.2972 15.1109 10.2881 15.107 10.279 15.1034C10.2699 15.0998 10.2607 15.0964 10.2514 15.0932C10.2421 15.09 10.2327 15.0871 10.2233 15.0843C10.2139 15.0816 10.2044 15.0791 10.1948 15.0769C10.1852 15.0746 10.1756 15.0726 10.166 15.0708C10.1563 15.069 10.1466 15.0675 10.1369 15.0662C10.1272 15.0649 10.1174 15.0639 10.1076 15.063C10.0978 15.0622 10.0881 15.0616 10.0782 15.0613C10.0684 15.0609 10.0586 15.0608 10.0488 15.061L10.0488 15.0619ZM14.5144 13.2377C14.5029 13.2376 14.4915 13.2377 14.48 13.2381C14.4686 13.2386 14.4572 13.2393 14.4457 13.2403C14.4343 13.2412 14.4229 13.2425 14.4116 13.244C14.4002 13.2456 14.3889 13.2474 14.3777 13.2495C14.3664 13.2516 14.3552 13.254 14.344 13.2566C14.3329 13.2593 14.3218 13.2622 14.3108 13.2654C14.2998 13.2686 14.2889 13.272 14.2781 13.2757C14.2672 13.2795 14.2565 13.2835 14.2459 13.2877C14.2352 13.292 14.2247 13.2965 14.2143 13.3013C14.2039 13.306 14.1936 13.311 14.1834 13.3163C14.1732 13.3216 14.1632 13.3271 14.1533 13.3329C14.1434 13.3387 14.1336 13.3447 14.124 13.3509C14.1144 13.3572 14.105 13.3636 14.0957 13.3704C14.0864 13.3771 14.0773 13.384 14.0684 13.3912C14.0594 13.3983 14.0507 13.4057 14.0421 13.4133C14.0335 13.4209 14.0251 13.4287 14.0169 13.4367C14.0087 13.4447 14.0007 13.4529 13.9929 13.4613C13.9851 13.4697 13.9775 13.4782 13.9701 13.487C13.9628 13.4957 13.9556 13.5047 13.9487 13.5138C13.9417 13.5229 13.935 13.5322 13.9285 13.5417C13.9221 13.5511 13.9158 13.5607 13.9098 13.5705C13.9038 13.5802 13.898 13.5901 13.8925 13.6002C13.887 13.6102 13.8817 13.6204 13.8767 13.6307C13.8716 13.6409 13.8669 13.6514 13.8624 13.6619C13.8578 13.6724 13.8536 13.6831 13.8496 13.6938C13.8456 13.7045 13.8419 13.7154 13.8384 13.7263C13.835 13.7372 13.8318 13.7482 13.8289 13.7593C13.8259 13.7704 13.8233 13.7815 13.8209 13.7927C13.8185 13.804 13.8165 13.8152 13.8146 13.8265C13.8128 13.8378 13.8113 13.8492 13.81 13.8606C13.8088 13.8719 13.8078 13.8833 13.8071 13.8948C13.8064 13.9062 13.8059 13.9177 13.8058 13.9291L13.8058 21.301C13.8058 21.3124 13.8061 21.3239 13.8067 21.3353C13.8073 21.3468 13.8081 21.3582 13.8093 21.3696C13.8104 21.381 13.8118 21.3924 13.8135 21.4037C13.8152 21.415 13.8172 21.4263 13.8195 21.4376C13.8217 21.4488 13.8242 21.46 13.827 21.4711C13.8298 21.4822 13.8329 21.4932 13.8363 21.5042C13.8396 21.5152 13.8432 21.5261 13.8471 21.5369C13.8509 21.5477 13.8551 21.5582 13.8595 21.569C13.8639 21.5795 13.8686 21.5899 13.8735 21.6002C13.8784 21.6106 13.8835 21.6209 13.889 21.6309C13.8944 21.641 13.9001 21.651 13.906 21.6607C13.9119 21.6707 13.918 21.6803 13.9244 21.6899C13.9308 21.6994 13.9374 21.7088 13.9442 21.718C13.9511 21.7272 13.9581 21.7361 13.9654 21.7449C13.9727 21.7537 13.9802 21.7625 13.9879 21.7709C13.9956 21.7793 14.0035 21.7877 14.0117 21.7957C14.0198 21.8039 14.0281 21.8119 14.0366 21.8195C14.0451 21.8272 14.0538 21.8346 14.0627 21.8418C14.0715 21.849 14.0806 21.8561 14.0898 21.8629C14.099 21.8697 14.1084 21.8764 14.1179 21.8826C14.1274 21.8891 14.1372 21.8951 14.147 21.901C14.1568 21.9068 14.1668 21.9125 14.1769 21.918C14.187 21.9233 14.1973 21.9285 14.2077 21.9334C14.218 21.9383 14.2285 21.9428 14.2391 21.9473C14.2497 21.9516 14.2604 21.9557 14.2712 21.9596C14.282 21.9633 14.2929 21.967 14.3039 21.9703C14.3148 21.9736 14.3258 21.9766 14.337 21.9793C14.3481 21.982 14.3593 21.9846 14.3705 21.9867C14.3818 21.9889 14.3931 21.9908 14.4044 21.9926C14.4157 21.9943 14.4271 21.9957 14.4385 21.9967C14.4499 21.9979 14.4614 21.9986 14.4728 21.9992C14.4843 21.9998 14.4957 22 14.5072 22L15.0115 22C15.0229 22 15.0344 21.9998 15.0458 21.9992C15.0573 21.9986 15.0687 21.9979 15.0801 21.9969C15.0915 21.9959 15.1029 21.9945 15.1143 21.9928C15.1256 21.9912 15.1369 21.9893 15.1482 21.9871C15.1594 21.985 15.1706 21.9824 15.1818 21.9797C15.1929 21.977 15.204 21.974 15.2149 21.9707C15.2259 21.9674 15.2368 21.9639 15.2476 21.9602C15.2584 21.9563 15.2691 21.9522 15.2798 21.9479C15.2904 21.9436 15.3009 21.9389 15.3113 21.934C15.3217 21.9291 15.3319 21.924 15.3421 21.9188C15.3522 21.9135 15.3622 21.9078 15.3721 21.902C15.3819 21.8961 15.3916 21.89 15.4012 21.8838C15.4107 21.8774 15.4201 21.8709 15.4294 21.8641C15.4386 21.8572 15.4477 21.8502 15.4566 21.843C15.4655 21.8358 15.4742 21.8283 15.4828 21.8207C15.4913 21.8131 15.4996 21.8051 15.5078 21.7971C15.5159 21.7891 15.5239 21.7807 15.5316 21.7723C15.5394 21.7639 15.5469 21.7553 15.5542 21.7465C15.5615 21.7377 15.5686 21.7287 15.5755 21.7195C15.5824 21.7104 15.589 21.701 15.5955 21.6914C15.6019 21.6818 15.6081 21.6723 15.614 21.6625C15.6199 21.6527 15.6257 21.6428 15.6311 21.6326C15.6366 21.6227 15.6418 21.6123 15.6467 21.602C15.6517 21.5916 15.6564 21.5813 15.6609 21.5707C15.6653 21.5602 15.6695 21.5494 15.6734 21.5387C15.6773 21.5279 15.681 21.517 15.6844 21.5061C15.6878 21.4951 15.6909 21.4841 15.6938 21.473C15.6966 21.4619 15.6992 21.4507 15.7015 21.4395C15.7038 21.4283 15.7058 21.417 15.7076 21.4057C15.7093 21.3943 15.7108 21.383 15.712 21.3716C15.7132 21.3602 15.7141 21.3487 15.7147 21.3373C15.7153 21.3258 15.7157 21.3144 15.7158 21.3029L15.7158 13.9377C15.7158 13.9263 15.7155 13.9148 15.7149 13.9034C15.7143 13.8919 15.7135 13.8805 15.7124 13.8691C15.7113 13.8577 15.7099 13.8464 15.7082 13.835C15.7065 13.8237 15.7045 13.8124 15.7023 13.8012C15.7001 13.7899 15.6975 13.7788 15.6948 13.7676C15.692 13.7565 15.6889 13.7455 15.6856 13.7345C15.6823 13.7236 15.6787 13.7127 15.6749 13.7019C15.671 13.6911 15.6668 13.6804 15.6625 13.6698C15.6581 13.6593 15.6534 13.6488 15.6486 13.6384C15.6436 13.6281 15.6385 13.6179 15.6331 13.6078C15.6277 13.5976 15.6221 13.5877 15.6162 13.5779C15.6103 13.568 15.6041 13.5583 15.5978 13.5488C15.5914 13.5393 15.5848 13.5299 15.578 13.5207C15.5712 13.5115 15.5641 13.5025 15.5569 13.4937C15.5496 13.4848 15.5421 13.4761 15.5344 13.4676C15.5267 13.4591 15.5188 13.4508 15.5107 13.4428C15.5026 13.4347 15.4943 13.4268 15.4858 13.4191C15.4774 13.4114 15.4687 13.4039 15.4598 13.3966C15.451 13.3894 15.4419 13.3823 15.4328 13.3755C15.4235 13.3687 15.4142 13.3621 15.4047 13.3557C15.3951 13.3493 15.3855 13.3432 15.3756 13.3373C15.3658 13.3314 15.3558 13.3258 15.3457 13.3204C15.3356 13.315 15.3254 13.3098 15.315 13.3049C15.3047 13.3 15.2942 13.2954 15.2836 13.291C15.2731 13.2866 15.2624 13.2825 15.2516 13.2787C15.2408 13.2748 15.2299 13.2712 15.219 13.2679C15.208 13.2646 15.197 13.2615 15.1858 13.2587C15.1747 13.2559 15.1636 13.2534 15.1523 13.2512C15.1411 13.249 15.1298 13.247 15.1185 13.2453C15.1071 13.2436 15.0958 13.2422 15.0844 13.2411C15.073 13.24 15.0615 13.2391 15.0501 13.2386C15.0387 13.238 15.0272 13.2377 15.0158 13.2377L14.5144 13.2377ZM19.3699 10.6938C19.36 10.6938 19.3502 10.694 19.3404 10.6945C19.3306 10.695 19.3208 10.6957 19.311 10.6967C19.3013 10.6976 19.2915 10.6989 19.2818 10.7003C19.2721 10.7017 19.2624 10.7034 19.2528 10.7053C19.2432 10.7072 19.2336 10.7094 19.2241 10.7118C19.2145 10.7142 19.2051 10.7168 19.1957 10.7196C19.1863 10.7225 19.177 10.7256 19.1677 10.7289C19.1585 10.7322 19.1493 10.7357 19.1402 10.7395C19.1312 10.7432 19.1222 10.7472 19.1133 10.7514C19.1044 10.7556 19.0957 10.76 19.087 10.7647C19.0783 10.7693 19.0698 10.7741 19.0614 10.7792C19.053 10.7842 19.0447 10.7894 19.0365 10.7949C19.0283 10.8004 19.0203 10.806 19.0124 10.8119C19.0045 10.8177 18.9968 10.8238 18.9892 10.83C18.9816 10.8362 18.9742 10.8426 18.9669 10.8492C18.9596 10.8558 18.9525 10.8626 18.9456 10.8695C18.9386 10.8765 18.9319 10.8836 18.9253 10.8909C18.9187 10.8981 18.9123 10.9056 18.906 10.9132C18.8998 10.9207 18.8938 10.9285 18.8879 10.9364C18.8821 10.9443 18.8764 10.9523 18.871 10.9605C18.8655 10.9686 18.8602 10.9769 18.8552 10.9853C18.8502 10.9938 18.8453 11.0023 18.8407 11.011C18.8361 11.0196 18.8316 11.0284 18.8274 11.0373C18.8232 11.0461 18.8193 11.0551 18.8155 11.0642C18.8118 11.0732 18.8082 11.0824 18.8049 11.0917C18.8016 11.1009 18.7985 11.1102 18.7957 11.1196C18.7928 11.129 18.7902 11.1385 18.7878 11.148C18.7854 11.1575 18.7833 11.1671 18.7814 11.1767C18.7795 11.1864 18.7778 11.196 18.7763 11.2058C18.7749 11.2155 18.7737 11.2252 18.7727 11.235C18.7718 11.2448 18.771 11.2546 18.7706 11.2644C18.7701 11.2742 18.7699 11.284 18.7699 11.2938L18.7699 21.3986C18.7699 21.4084 18.7701 21.4183 18.7706 21.4281C18.771 21.4379 18.7717 21.4477 18.7727 21.4574C18.7737 21.4672 18.7749 21.477 18.7763 21.4867C18.7778 21.4964 18.7794 21.5061 18.7814 21.5157C18.7833 21.5253 18.7854 21.535 18.7878 21.5445C18.7902 21.5541 18.7928 21.5635 18.7956 21.5729C18.7985 21.5822 18.8016 21.5916 18.8049 21.6008C18.8082 21.61 18.8117 21.6191 18.8155 21.6283C18.8192 21.6373 18.8232 21.6463 18.8274 21.6553C18.8316 21.6641 18.836 21.6729 18.8406 21.6815C18.8453 21.6902 18.8501 21.6988 18.8552 21.7072C18.8602 21.7156 18.8654 21.7238 18.8709 21.732C18.8764 21.7402 18.882 21.7483 18.8879 21.7561C18.8937 21.7641 18.8998 21.7717 18.906 21.7793C18.9122 21.7869 18.9186 21.7943 18.9252 21.8016C18.9318 21.8088 18.9386 21.816 18.9455 21.8229C18.9525 21.8299 18.9596 21.8367 18.9669 21.8432C18.9741 21.8498 18.9816 21.8563 18.9892 21.8625C18.9967 21.8688 19.0045 21.8748 19.0124 21.8807C19.0203 21.8865 19.0283 21.8922 19.0365 21.8977C19.0446 21.9029 19.0529 21.9082 19.0614 21.9133C19.0698 21.9184 19.0783 21.9233 19.087 21.9279C19.0956 21.9324 19.1044 21.9369 19.1133 21.941C19.1222 21.9453 19.1311 21.9492 19.1402 21.9529C19.1493 21.9566 19.1584 21.9604 19.1677 21.9637C19.1769 21.967 19.1863 21.9699 19.1957 21.9729C19.205 21.9758 19.2145 21.9783 19.2241 21.9807C19.2336 21.983 19.2431 21.9852 19.2528 21.9871C19.2624 21.9891 19.2721 21.9908 19.2818 21.9922C19.2915 21.9936 19.3013 21.9947 19.311 21.9957C19.3208 21.9967 19.3306 21.9975 19.3404 21.9979C19.3502 21.9984 19.36 21.9986 19.3699 21.9986L20.112 21.9986C20.1218 21.9988 20.1317 21.9986 20.1415 21.9984C20.1513 21.9981 20.1611 21.9975 20.1709 21.9967C20.1807 21.9959 20.1904 21.9949 20.2002 21.9936C20.2099 21.9922 20.2196 21.9908 20.2293 21.9891C20.2389 21.9873 20.2485 21.9854 20.2581 21.983C20.2677 21.9809 20.2772 21.9783 20.2866 21.9758C20.296 21.9731 20.3054 21.9701 20.3147 21.967C20.324 21.9639 20.3332 21.9606 20.3424 21.9568C20.3515 21.9531 20.3605 21.9494 20.3695 21.9453C20.3784 21.9412 20.3873 21.9371 20.396 21.9326C20.4047 21.9281 20.4133 21.9233 20.4219 21.9184C20.4304 21.9135 20.4387 21.9084 20.447 21.9031C20.4552 21.8979 20.4634 21.8922 20.4714 21.8865C20.4793 21.8809 20.4872 21.8748 20.4949 21.8688C20.5026 21.8627 20.5101 21.8565 20.5175 21.85C20.5249 21.8436 20.5321 21.8369 20.5392 21.8301C20.5462 21.8232 20.5531 21.8162 20.5598 21.809C20.5666 21.8018 20.5731 21.7945 20.5794 21.7871C20.5858 21.7795 20.592 21.7719 20.5979 21.7641C20.6039 21.7565 20.6097 21.7484 20.6153 21.7404C20.6209 21.7324 20.6263 21.7242 20.6315 21.7158C20.6367 21.7074 20.6416 21.699 20.6464 21.6904C20.6512 21.6818 20.6557 21.6731 20.6601 21.6643C20.6644 21.6555 20.6686 21.6467 20.6725 21.6375C20.6764 21.6285 20.68 21.6195 20.6835 21.6104C20.687 21.6012 20.6902 21.5918 20.6932 21.5824C20.6962 21.5732 20.699 21.5639 20.7016 21.5543C20.7041 21.5447 20.7064 21.5352 20.7085 21.5256C20.7106 21.516 20.7124 21.5064 20.714 21.4967C20.7156 21.487 20.717 21.4773 20.7181 21.4675C20.7192 21.4578 20.7201 21.448 20.7208 21.4382C20.7214 21.4284 20.7218 21.4186 20.722 21.4088L20.722 11.2995C20.7221 11.2896 20.722 11.2798 20.7217 11.27C20.7213 11.2602 20.7207 11.2504 20.7199 11.2406C20.7191 11.2308 20.718 11.2211 20.7167 11.2113C20.7154 11.2016 20.7138 11.1919 20.712 11.1823C20.7102 11.1726 20.7082 11.163 20.706 11.1534C20.7037 11.1439 20.7012 11.1344 20.6985 11.1249C20.6958 11.1155 20.6928 11.1061 20.6896 11.0969C20.6864 11.0876 20.683 11.0783 20.6794 11.0692C20.6758 11.0601 20.6719 11.0511 20.6678 11.0422C20.6637 11.0332 20.6594 11.0244 20.6549 11.0157C20.6504 11.0069 20.6457 10.9983 20.6408 10.9898C20.6358 10.9814 20.6307 10.973 20.6253 10.9647C20.62 10.9565 20.6144 10.9484 20.6087 10.9405C20.603 10.9325 20.597 10.9247 20.5909 10.917C20.5848 10.9093 20.5784 10.9018 20.572 10.8944C20.5655 10.8871 20.5588 10.8799 20.5519 10.8728C20.5451 10.8658 20.5381 10.8589 20.5309 10.8523C20.5237 10.8456 20.5163 10.839 20.5088 10.8327C20.5013 10.8264 20.4937 10.8202 20.4859 10.8143C20.4781 10.8083 20.4701 10.8026 20.462 10.797C20.4539 10.7914 20.4457 10.7861 20.4373 10.7809C20.429 10.7757 20.4205 10.7708 20.4119 10.7661C20.4033 10.7613 20.3946 10.7568 20.3858 10.7525C20.3769 10.7481 20.368 10.744 20.359 10.7402C20.35 10.7363 20.3409 10.7326 20.3317 10.7292C20.3225 10.7258 20.3132 10.7226 20.3038 10.7196C20.2945 10.7166 20.285 10.7139 20.2756 10.7114C20.2661 10.7089 20.2565 10.7066 20.2469 10.7045C20.2373 10.7025 20.2276 10.7007 20.218 10.6991C20.2083 10.6975 20.1985 10.6962 20.1888 10.6951C20.179 10.694 20.1692 10.6932 20.1594 10.6926C20.1496 10.6919 20.1398 10.6916 20.13 10.6914L19.3699 10.6914L19.3699 10.6938ZM15.6718 3.14577C15.6668 3.14675 15.6618 3.14781 15.6569 3.14895C15.6519 3.15009 15.647 3.15131 15.6421 3.15262C15.6372 3.15393 15.6323 3.15532 15.6274 3.15679C15.6225 3.15826 15.6177 3.15981 15.6129 3.16145C15.608 3.16308 15.6032 3.1648 15.5985 3.16659C15.5937 3.16839 15.589 3.17026 15.5843 3.17222C15.5796 3.17417 15.5749 3.1762 15.5703 3.17831C15.5657 3.18043 15.5611 3.18261 15.5565 3.18488C15.5519 3.18714 15.5474 3.18949 15.543 3.1919C15.5385 3.19432 15.534 3.19681 15.5297 3.19938C15.5253 3.20195 15.5209 3.20458 15.5166 3.2073C15.5123 3.21001 15.508 3.21279 15.5038 3.21565C15.4996 3.21851 15.4954 3.22143 15.4913 3.22443C15.4872 3.22742 15.4832 3.23049 15.4791 3.23362C15.4751 3.23675 15.4712 3.23995 15.4673 3.24321C15.4634 3.24648 15.4595 3.24981 15.4557 3.2532C15.4519 3.2566 15.4482 3.26005 15.4445 3.26357C15.4409 3.26709 15.4373 3.27067 15.4337 3.27431C15.4301 3.27796 15.4266 3.28166 15.4232 3.28541C15.4198 3.28917 15.4164 3.29299 15.4131 3.29686C15.4098 3.30073 15.4066 3.30466 15.4034 3.30864C15.4002 3.31262 15.3971 3.31665 15.3941 3.32074C15.3911 3.32482 15.3881 3.32896 15.3852 3.33314C15.3823 3.33733 15.3795 3.34156 15.3767 3.34584C15.374 3.35012 15.3713 3.35444 15.3687 3.35881C15.3661 3.36318 15.3635 3.36759 15.3611 3.37205C15.3586 3.3765 15.3562 3.38099 15.3539 3.38553C15.3516 3.39006 15.3494 3.39464 15.3472 3.39925C15.3451 3.40386 15.343 3.4085 15.341 3.41318C15.339 3.41786 15.3371 3.42257 15.3352 3.42731C15.3334 3.43206 15.3316 3.43683 15.33 3.44164C15.3283 3.44644 15.3267 3.45127 15.3252 3.45613C15.3236 3.46098 15.3222 3.46587 15.3208 3.47077C15.3195 3.47568 15.3182 3.4806 15.317 3.48555C15.3158 3.4905 15.3147 3.49547 15.3137 3.50045C15.3127 3.50544 15.3118 3.51044 15.3109 3.51545C15.31 3.52047 15.3093 3.5255 15.3086 3.53054C15.3079 3.53558 15.3073 3.54064 15.3068 3.5457C15.3063 3.55076 15.3058 3.55583 15.3055 3.56091C15.3052 3.56599 15.3049 3.57107 15.3047 3.57615C15.3046 3.58124 15.3045 3.58633 15.3045 3.59142C15.3045 3.5965 15.3045 3.60159 15.3047 3.60668C15.3049 3.61176 15.3051 3.61685 15.3055 3.62192C15.3058 3.627 15.3062 3.63207 15.3067 3.63714C15.3073 3.6422 15.3078 3.64725 15.3085 3.6523C15.3092 3.65734 15.31 3.66237 15.3108 3.66739C15.3117 3.6724 15.3126 3.6774 15.3136 3.68239C15.3146 3.68738 15.3157 3.69235 15.3169 3.6973C15.3181 3.70224 15.3194 3.70717 15.3207 3.71208C15.3221 3.71699 15.3235 3.72187 15.325 3.72673C15.3265 3.73159 15.3281 3.73642 15.3298 3.74122C15.3315 3.74603 15.3332 3.75081 15.3351 3.75555C15.3369 3.7603 15.3388 3.76501 15.3408 3.76969C15.3428 3.77437 15.3449 3.77902 15.347 3.78363C15.3492 3.78824 15.3514 3.79282 15.3537 3.79736C15.356 3.8019 15.3584 3.80639 15.3608 3.81085C15.3633 3.81531 15.3658 3.81972 15.3684 3.82409C15.371 3.82847 15.3737 3.83279 15.3765 3.83708C15.3792 3.84136 15.382 3.84559 15.3849 3.84978C15.3878 3.85397 15.3907 3.85811 15.3938 3.8622C15.3968 3.86628 15.3999 3.87032 15.4031 3.8743C15.4063 3.87829 15.4095 3.88222 15.4128 3.88609C15.4161 3.88997 15.4194 3.89379 15.4229 3.89755C15.4263 3.90131 15.4298 3.90502 15.4333 3.90866L17.149 5.63717L11.5529 11.1909L9.29586 8.94674C9.28539 8.9374 9.27473 8.9283 9.26387 8.91948C9.25297 8.91065 9.2419 8.90207 9.23063 8.89375C9.21934 8.88543 9.20786 8.87737 9.19621 8.86959C9.18455 8.86182 9.17272 8.85432 9.16071 8.84709C9.14869 8.83987 9.13653 8.83291 9.1242 8.82627C9.11186 8.81959 9.09936 8.81322 9.08674 8.80717C9.07411 8.8011 9.06133 8.79531 9.04844 8.78985C9.03553 8.78438 9.0225 8.7792 9.00938 8.77434C8.99621 8.76946 8.98297 8.7649 8.96961 8.76067C8.95625 8.75641 8.94282 8.75248 8.92928 8.74887C8.91573 8.74526 8.90211 8.74196 8.88842 8.73899C8.87471 8.736 8.86096 8.73334 8.84715 8.73102C8.83332 8.72867 8.81946 8.72666 8.80555 8.72498C8.79162 8.72328 8.77768 8.72192 8.76369 8.7209C8.74971 8.71987 8.73573 8.71916 8.72172 8.71879C8.7077 8.7184 8.6937 8.71836 8.67969 8.71864C8.66567 8.71891 8.65166 8.71951 8.63768 8.72045C8.62369 8.72139 8.60973 8.72264 8.59582 8.72422C8.58188 8.7258 8.56801 8.72772 8.55418 8.72996C8.54033 8.73219 8.52657 8.73475 8.51285 8.73764C8.49912 8.74051 8.48547 8.74371 8.47192 8.74723C8.45834 8.75074 8.44487 8.75457 8.43149 8.75873C8.41809 8.76287 8.40481 8.76735 8.39164 8.77211C8.37846 8.77688 8.36539 8.78196 8.35246 8.78735C8.33951 8.79272 8.3267 8.7984 8.31403 8.8044C8.30135 8.81037 8.28883 8.81664 8.27645 8.82323C8.26407 8.82979 8.25184 8.83662 8.23979 8.84377C8.22772 8.85092 8.21582 8.85834 8.20412 8.86604C8.19241 8.87373 8.18086 8.8817 8.16953 8.88994C8.15819 8.89817 8.14705 8.90666 8.13612 8.91543C8.12516 8.92418 8.11442 8.93319 8.10391 8.94244C8.09338 8.9517 8.08309 8.96119 8.07301 8.97096L2.24471 14.7619C2.23509 14.7715 2.22571 14.7813 2.21657 14.7913C2.20742 14.8013 2.19853 14.8115 2.18989 14.822C2.18125 14.8325 2.17287 14.8431 2.16476 14.854C2.15664 14.8648 2.1488 14.8759 2.14122 14.8872C2.13365 14.8984 2.12636 14.9098 2.11934 14.9215C2.11233 14.9331 2.10561 14.9448 2.09917 14.9568C2.09274 14.9687 2.0866 14.9808 2.08076 14.993C2.07492 15.0053 2.06939 15.0176 2.06415 15.0302C2.05892 15.0427 2.054 15.0553 2.04939 15.0681C2.04477 15.0808 2.04048 15.0937 2.0365 15.1066C2.03252 15.1196 2.02885 15.1326 2.02552 15.1458C2.02218 15.1589 2.01916 15.1722 2.01647 15.1855C2.01378 15.1987 2.01142 15.2121 2.00938 15.2255C2.00735 15.2389 2.00564 15.2524 2.00427 15.2659C2.00289 15.2793 2.00185 15.2929 2.00114 15.3064C2.00043 15.3199 2.00005 15.3335 2 15.3471C1.99996 15.3606 2.00025 15.3742 2.00087 15.3877C2.00149 15.4013 2.00244 15.4148 2.00373 15.4283C2.00501 15.4418 2.00662 15.4553 2.00857 15.4687C2.01052 15.4821 2.01279 15.4955 2.01539 15.5088C2.01799 15.5221 2.02092 15.5353 2.02417 15.5485C2.02742 15.5617 2.031 15.5747 2.03489 15.5877C2.03879 15.6007 2.043 15.6136 2.04752 15.6264C2.05205 15.6392 2.05689 15.6518 2.06204 15.6644C2.06719 15.6769 2.07264 15.6893 2.0784 15.7016C2.08416 15.7139 2.09022 15.726 2.09657 15.738C2.10292 15.75 2.10957 15.7618 2.1165 15.7735C2.12344 15.7851 2.13065 15.7966 2.13815 15.8079C2.14565 15.8192 2.15342 15.8303 2.16147 15.8412C2.16951 15.8522 2.17782 15.8629 2.18639 15.8734C2.19496 15.8839 2.20378 15.8942 2.21286 15.9043C2.22193 15.9143 2.23125 15.9242 2.24081 15.9338L2.24471 15.9377C2.25444 15.9474 2.2644 15.9568 2.27459 15.966C2.28478 15.9751 2.29519 15.984 2.30581 15.9927C2.31644 16.0014 2.32727 16.0098 2.3383 16.0179C2.34934 16.026 2.36056 16.0339 2.37198 16.0415C2.3834 16.049 2.395 16.0563 2.40677 16.0634C2.41855 16.0704 2.43049 16.0771 2.44259 16.0835C2.4547 16.09 2.46695 16.0961 2.47936 16.102C2.49176 16.1078 2.5043 16.1133 2.51697 16.1185C2.52965 16.1238 2.54244 16.1287 2.55535 16.1333C2.56827 16.1379 2.58129 16.1421 2.59441 16.1461C2.60753 16.15 2.62074 16.1537 2.63405 16.157C2.64735 16.1603 2.66072 16.1633 2.67417 16.166C2.68762 16.1686 2.70112 16.171 2.71468 16.173C2.72824 16.175 2.74184 16.1766 2.75548 16.178C2.76913 16.1793 2.78279 16.1803 2.79648 16.181C2.81018 16.1817 2.82388 16.182 2.83758 16.182C2.85129 16.182 2.86499 16.1817 2.87868 16.181C2.89237 16.1803 2.90604 16.1793 2.91968 16.178C2.93332 16.1766 2.94693 16.175 2.96049 16.173C2.97405 16.171 2.98755 16.1686 3.001 16.166C3.01445 16.1633 3.02782 16.1603 3.04112 16.157C3.05442 16.1537 3.06763 16.15 3.08076 16.1461C3.09388 16.1421 3.1069 16.1379 3.11981 16.1333C3.13273 16.1287 3.14552 16.1238 3.15819 16.1185C3.17087 16.1133 3.18341 16.1078 3.19581 16.102C3.20822 16.0961 3.22047 16.09 3.23257 16.0835C3.24468 16.0771 3.25662 16.0704 3.26839 16.0634C3.28017 16.0563 3.29176 16.049 3.30318 16.0415C3.3146 16.0339 3.32583 16.026 3.33686 16.0179C3.3479 16.0098 3.35873 16.0014 3.36935 15.9927C3.37998 15.984 3.39039 15.9751 3.40057 15.966C3.41076 15.9568 3.42072 15.9474 3.43045 15.9377L8.69743 10.7034L10.9472 12.942C10.9574 12.9516 10.9677 12.9609 10.9783 12.97C10.9889 12.979 10.9997 12.9878 11.0107 12.9964C11.0217 13.0049 11.0329 13.0132 11.0443 13.0213C11.0557 13.0293 11.0673 13.037 11.0791 13.0445C11.0908 13.052 11.1027 13.0592 11.1148 13.0661C11.127 13.073 11.1392 13.0797 11.1516 13.086C11.164 13.0923 11.1766 13.0984 11.1893 13.1041C11.202 13.1099 11.2148 13.1153 11.2278 13.1204C11.2407 13.1256 11.2538 13.1304 11.267 13.1349C11.2802 13.1395 11.2934 13.1437 11.3068 13.1476C11.3202 13.1515 11.3337 13.155 11.3473 13.1583C11.3608 13.1615 11.3744 13.1645 11.3881 13.1671C11.4018 13.1697 11.4156 13.172 11.4293 13.174C11.4431 13.1759 11.457 13.1776 11.4709 13.1789C11.4847 13.1802 11.4986 13.1812 11.5126 13.1819C11.5265 13.1825 11.5404 13.1828 11.5544 13.1828C11.5683 13.1828 11.5822 13.1825 11.5961 13.1819C11.6101 13.1812 11.624 13.1802 11.6378 13.1789C11.6517 13.1776 11.6656 13.1759 11.6794 13.174C11.6931 13.172 11.7069 13.1697 11.7206 13.1671C11.7343 13.1645 11.7479 13.1615 11.7614 13.1583C11.775 13.155 11.7885 13.1515 11.8019 13.1476C11.8152 13.1437 11.8285 13.1395 11.8417 13.1349C11.8549 13.1304 11.868 13.1256 11.8809 13.1204C11.8939 13.1153 11.9067 13.1099 11.9194 13.1041C11.9321 13.0984 11.9447 13.0923 11.9571 13.086C11.9695 13.0797 11.9817 13.073 11.9939 13.0661C12.0059 13.0592 12.0179 13.052 12.0297 13.0445C12.0414 13.037 12.053 13.0293 12.0644 13.0213C12.0758 13.0132 12.087 13.0049 12.098 12.9964C12.109 12.9878 12.1198 12.979 12.1304 12.97C12.141 12.9609 12.1513 12.9516 12.1615 12.942L18.3056 6.83112L19.9699 8.47662C19.9734 8.48026 19.9771 8.48385 19.9808 8.48738C19.9845 8.49092 19.9883 8.4944 19.9922 8.4978C19.996 8.50119 19.9999 8.50451 20.0039 8.5078C20.0078 8.51108 20.0118 8.51428 20.0159 8.51742C20.0199 8.52055 20.024 8.52362 20.0282 8.52662C20.0324 8.52961 20.0366 8.53254 20.0408 8.53541C20.0451 8.53826 20.0494 8.54104 20.0537 8.54375C20.0581 8.54647 20.0625 8.5491 20.0669 8.55166C20.0714 8.55422 20.0759 8.55672 20.0804 8.55914C20.0849 8.56155 20.0895 8.56387 20.0941 8.56614C20.0987 8.5684 20.1033 8.57059 20.108 8.5727C20.1127 8.57479 20.1174 8.5768 20.1222 8.57875C20.1269 8.58071 20.1317 8.58256 20.1365 8.58436C20.1413 8.58614 20.1461 8.58784 20.151 8.58946C20.1559 8.59108 20.1608 8.59262 20.1657 8.59408C20.1706 8.59553 20.1755 8.5969 20.1805 8.59819C20.1855 8.59948 20.1905 8.60069 20.1955 8.60182C20.2005 8.60293 20.2055 8.60397 20.2105 8.60493C20.2156 8.60586 20.2206 8.60674 20.2257 8.60752C20.2308 8.6083 20.2358 8.60901 20.2409 8.60961C20.246 8.61024 20.2511 8.61076 20.2562 8.61119C20.2613 8.61162 20.2665 8.61199 20.2716 8.61227C20.2767 8.61252 20.2818 8.6127 20.287 8.61282C20.2921 8.61289 20.2972 8.61291 20.3024 8.61283C20.3075 8.61276 20.3126 8.61258 20.3177 8.61235C20.3228 8.61209 20.328 8.61176 20.3331 8.61133C20.3382 8.6109 20.3433 8.61039 20.3484 8.60981C20.3535 8.60922 20.3586 8.60854 20.3636 8.60778C20.3687 8.60699 20.3738 8.60616 20.3788 8.60524C20.3839 8.6043 20.3889 8.60326 20.3939 8.60217C20.3989 8.60106 20.4039 8.59987 20.4089 8.59862C20.4138 8.59733 20.4188 8.59598 20.4237 8.59453C20.4286 8.59309 20.4335 8.59159 20.4384 8.58998C20.4433 8.58838 20.4481 8.58668 20.4529 8.58492C20.4577 8.58315 20.4625 8.58129 20.4673 8.57938C20.472 8.57744 20.4767 8.57543 20.4814 8.57336C20.4861 8.57127 20.4908 8.5691 20.4954 8.56688C20.5 8.56463 20.5046 8.56231 20.5091 8.55991C20.5136 8.5575 20.5181 8.55504 20.5226 8.5525C20.527 8.54994 20.5314 8.54733 20.5358 8.54463C20.5402 8.54194 20.5445 8.53916 20.5488 8.53633C20.553 8.53348 20.5573 8.53057 20.5614 8.52758C20.5656 8.52459 20.5697 8.52155 20.5738 8.51842C20.5779 8.5153 20.5819 8.51211 20.5858 8.50885C20.5898 8.50559 20.5937 8.50227 20.5975 8.49889C20.6014 8.49549 20.6052 8.49205 20.6089 8.48854C20.6127 8.48502 20.6163 8.48143 20.62 8.4778C20.6236 8.47416 20.6271 8.47045 20.6306 8.4667C20.6341 8.46293 20.6375 8.45912 20.6409 8.45526C20.6442 8.45137 20.6475 8.44744 20.6508 8.44346C20.654 8.43948 20.6572 8.43543 20.6603 8.43133C20.6633 8.42723 20.6664 8.42309 20.6693 8.41891C20.6723 8.41471 20.6752 8.41047 20.678 8.40617C20.6808 8.40188 20.6835 8.39754 20.6862 8.39317C20.6888 8.38879 20.6914 8.38436 20.694 8.37988C20.6965 8.37541 20.6989 8.3709 20.7013 8.36635C20.7036 8.3618 20.7059 8.35721 20.7081 8.35258C20.7103 8.34795 20.7125 8.34328 20.7145 8.3386C20.7166 8.33389 20.7185 8.32916 20.7204 8.3244C20.7223 8.31961 20.7241 8.31481 20.7259 8.31C20.7276 8.30516 20.7292 8.30031 20.7308 8.29543C20.7324 8.29055 20.7339 8.28563 20.7353 8.28071C20.7367 8.27576 20.738 8.2708 20.7392 8.26582C20.7405 8.26084 20.7416 8.25584 20.7427 8.25084L21.9885 2.55867C21.9904 2.54943 21.9924 2.54013 21.994 2.53078C21.9953 2.52142 21.9965 2.51203 21.9977 2.5026C21.9984 2.49317 21.9992 2.48372 21.9996 2.47425C21.9998 2.46478 21.9998 2.45531 21.9998 2.44583C21.9994 2.43636 21.999 2.4269 21.9983 2.41746C21.9973 2.40801 21.9961 2.39861 21.9947 2.38923C21.9934 2.37986 21.9916 2.37054 21.9897 2.36128C21.9877 2.35201 21.9854 2.34281 21.9828 2.33369C21.9803 2.32456 21.9775 2.31552 21.9744 2.30657C21.9713 2.29762 21.9678 2.28878 21.9643 2.28004C21.9606 2.2713 21.9566 2.26269 21.9524 2.2542C21.9481 2.2457 21.9438 2.23735 21.9391 2.22913C21.9342 2.22092 21.9291 2.21286 21.924 2.20495C21.9188 2.19705 21.9133 2.18931 21.9076 2.18174C21.9018 2.17418 21.8959 2.1668 21.8899 2.1596C21.8836 2.15241 21.8774 2.14541 21.8707 2.13861C21.8641 2.13181 21.8572 2.12523 21.8502 2.11885C21.8432 2.11247 21.8359 2.10632 21.8287 2.1004C21.8213 2.09447 21.8137 2.08878 21.8059 2.08332C21.7981 2.07787 21.7902 2.07266 21.7822 2.06769C21.774 2.06273 21.7658 2.05802 21.7576 2.05357C21.749 2.04912 21.7406 2.04493 21.732 2.04101C21.7234 2.03708 21.7147 2.03343 21.7059 2.03005C21.6969 2.02667 21.6879 2.02357 21.6789 2.02075C21.6699 2.01792 21.6608 2.01538 21.6516 2.01313C21.6422 2.01087 21.633 2.00891 21.6238 2.00723C21.6145 2.00555 21.6051 2.00416 21.5957 2.00307C21.5863 2.00197 21.5768 2.00117 21.5674 2.00066C21.5578 2.00015 21.5483 1.99994 21.5389 2.00002C21.5294 2.0001 21.52 2.00047 21.5105 2.00114C21.5011 2.00181 21.4916 2.00277 21.4823 2.00403C21.4728 2.00529 21.4635 2.00683 21.4542 2.00867L15.6718 3.14577Z' fill='%237E84A3' %3E%3C/path%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:permission{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M9.70592 11.0899C11.9523 11.0899 13.7903 9.28315 13.7903 7.04494C13.7903 4.80674 11.966 3 9.70592 3C7.44588 3 5.62151 4.82023 5.62151 7.04494C5.62151 9.26966 7.4595 11.0899 9.70592 11.0899ZM9.70592 4.78876C10.9585 4.78876 11.975 5.80449 11.975 7.04494C11.975 8.28539 10.9585 9.29214 9.70592 9.29214C8.45337 9.29214 7.42773 8.28539 7.42773 7.04494C7.42773 5.80449 8.45337 4.78876 9.70592 4.78876ZM15.4241 8.96854C15.002 9.22472 14.8477 9.78202 15.1064 10.2C15.2698 10.4831 15.5739 10.6315 15.887 10.6315C16.0504 10.6315 16.2001 10.591 16.3499 10.4966C17.5752 9.76854 18.3195 8.4427 18.3195 7.02697C18.3195 5.61124 17.5616 4.29438 16.3499 3.56629C16.3372 3.56629 16.3266 3.54831 16.3136 3.54831C16.3006 3.54831 16.2816 3.52135 16.2682 3.52135C16.2548 3.52135 16.2456 3.50337 16.2319 3.50337C16.2182 3.50337 16.2005 3.49438 16.1865 3.49438C16.1726 3.49438 16.1644 3.4764 16.1502 3.4764C16.136 3.4764 16.1192 3.46742 16.1048 3.46742C16.0905 3.46742 16.074 3.45843 16.0595 3.45843C16.0449 3.45843 16.0287 3.44944 16.0141 3.44944C15.9994 3.44944 15.9925 3.44045 15.9778 3.44045C15.963 3.44045 15.9472 3.44045 15.9324 3.44045C15.9176 3.44045 15.9018 3.44045 15.887 3.44045C15.8722 3.44045 15.8564 3.44045 15.8416 3.44045C15.8268 3.44045 15.811 3.44045 15.7962 3.44045C15.7815 3.44045 15.7655 3.44944 15.7508 3.44944C15.7362 3.44944 15.72 3.44944 15.7055 3.44944C15.6909 3.44944 15.6835 3.46742 15.6692 3.46742C15.6548 3.46742 15.638 3.4764 15.6238 3.4764C15.6096 3.4764 15.5924 3.48539 15.5784 3.48539C15.5645 3.48539 15.5558 3.50337 15.5421 3.50337C15.5284 3.50337 15.5101 3.52135 15.4967 3.52135C15.4833 3.52135 15.4734 3.53933 15.4604 3.53933C15.4474 3.53933 15.4277 3.56629 15.415 3.56629C15.4023 3.56629 15.391 3.59326 15.3787 3.59326C15.3664 3.59326 15.3543 3.61124 15.3424 3.61124C15.3306 3.61124 15.3266 3.62879 15.3152 3.6382C15.3038 3.64761 15.2898 3.6642 15.2789 3.67416C15.268 3.6841 15.253 3.69063 15.2426 3.70112C15.2322 3.7116 15.2252 3.72611 15.2153 3.73708C15.2055 3.74806 15.1974 3.7526 15.1881 3.76405C15.1788 3.77551 15.1609 3.78812 15.1609 3.8C15.1609 3.8119 15.1336 3.82365 15.1336 3.83596C15.1336 3.84827 15.1064 3.85923 15.1064 3.87191C14.8477 4.28989 14.9884 4.84719 15.4241 5.10337C16.1184 5.50787 16.5224 6.23146 16.5224 7.02697C16.5224 7.82247 16.1184 8.55506 15.4241 8.95955L15.4241 8.96854ZM14.943 13.382C13.9764 12.8966 12.8781 12.8966 10.7134 12.8966L8.70751 12.8966C6.52916 12.8966 5.44452 12.8966 4.47788 13.382C3.62015 13.8135 2.93941 14.4876 2.49013 15.3506C2 16.3079 2 17.382 2 19.5393L2 20.0787C2 20.5775 2.4039 20.9865 2.90765 20.9865L16.5224 20.9865C17.0261 20.9865 17.4391 20.5775 17.4391 20.0787L17.4391 19.5393C17.4391 17.382 17.4391 16.3079 16.9489 15.3506C16.5133 14.5011 15.8189 13.8135 14.9612 13.382L14.943 13.382ZM3.80622 19.1798C3.80622 17.5483 3.81983 16.6989 4.10574 16.1596C4.36442 15.6472 4.78648 15.2382 5.30383 14.982C5.88927 14.6854 6.83322 14.6854 8.72566 14.6854L10.7225 14.6854C12.6013 14.6854 13.5589 14.6854 14.1443 14.982C14.6617 15.2382 15.0656 15.6607 15.3243 16.1596C15.5965 16.6989 15.6238 17.5483 15.6238 19.1798L3.80622 19.1798ZM21.469 15.3506C21.4557 15.3244 21.4466 15.2956 21.4327 15.2697C21.4189 15.2438 21.4017 15.2234 21.3873 15.1978C21.373 15.1722 21.3568 15.1422 21.342 15.1169C21.3271 15.0915 21.312 15.07 21.2966 15.0449C21.2812 15.0199 21.2671 14.9977 21.2512 14.973C21.2353 14.9483 21.2222 14.9165 21.2058 14.8921C21.1894 14.8677 21.1682 14.8443 21.1513 14.8202C21.1345 14.7962 21.1142 14.7721 21.0969 14.7483C21.0796 14.7246 21.0693 14.6998 21.0515 14.6764C21.0337 14.653 21.0153 14.6365 20.997 14.6135C20.9788 14.5905 20.9523 14.5642 20.9335 14.5416C20.9148 14.5189 20.8982 14.5009 20.8791 14.4787C20.8599 14.4564 20.8442 14.4287 20.8246 14.4067C20.805 14.3848 20.7811 14.3653 20.7611 14.3438C20.741 14.3223 20.7271 14.302 20.7066 14.2809C20.6861 14.2598 20.664 14.2387 20.6431 14.218C20.6222 14.1973 20.6009 14.1753 20.5795 14.1551C20.5582 14.1347 20.5377 14.112 20.516 14.0921C20.4943 14.0723 20.4655 14.0576 20.4434 14.0382C20.4213 14.0188 20.4024 13.9943 20.3798 13.9753C20.3573 13.9563 20.3301 13.9399 20.3072 13.9213C20.2843 13.9028 20.267 13.8855 20.2437 13.8674C20.2204 13.8493 20.1947 13.8311 20.1711 13.8135C20.1475 13.7959 20.1224 13.7767 20.0985 13.7596C20.0745 13.7424 20.0502 13.7223 20.0259 13.7056C20.0016 13.6889 19.9779 13.6769 19.9533 13.6607C19.9286 13.6445 19.9056 13.6315 19.8806 13.6157C19.8557 13.6 19.8333 13.577 19.808 13.5618C19.7828 13.5466 19.7519 13.5316 19.7263 13.5169C19.7008 13.5021 19.6796 13.4951 19.6537 13.4809C19.6279 13.4667 19.5982 13.4497 19.572 13.436C19.5459 13.4222 19.5168 13.4042 19.4904 13.391C19.4773 13.391 19.4675 13.373 19.454 13.373C19.4406 13.373 19.4315 13.3551 19.4177 13.3551C19.404 13.3551 19.3863 13.3461 19.3724 13.3461C19.3584 13.3461 19.3412 13.3281 19.327 13.3281C19.3128 13.3281 19.3051 13.3191 19.2907 13.3191C19.2763 13.3191 19.2599 13.3101 19.2453 13.3101C19.2307 13.3101 19.2146 13.3011 19.1999 13.3011C19.1852 13.3011 19.1693 13.3011 19.1545 13.3011C19.1398 13.3011 19.1239 13.2921 19.1091 13.2921C19.0944 13.2921 19.0786 13.2921 19.0638 13.2921C19.0489 13.2921 19.0422 13.2921 19.0275 13.2921C19.0127 13.2921 18.9968 13.3011 18.9821 13.3011C18.9674 13.3011 18.9513 13.3101 18.9367 13.3101C18.9221 13.3101 18.9058 13.3101 18.8913 13.3101C18.8768 13.3101 18.8602 13.3281 18.8459 13.3281C18.8316 13.3281 18.8237 13.3371 18.8096 13.3371C18.7955 13.3371 18.7781 13.3551 18.7642 13.3551C18.7504 13.3551 18.7324 13.364 18.7189 13.364C18.7053 13.364 18.6958 13.391 18.6825 13.391C18.6693 13.391 18.6591 13.409 18.6462 13.409C18.6334 13.409 18.6134 13.427 18.6009 13.427C18.5884 13.427 18.5767 13.4539 18.5646 13.4539C18.5525 13.4539 18.5399 13.4719 18.5282 13.4809C18.5166 13.49 18.5122 13.4982 18.501 13.5079C18.4899 13.5175 18.4754 13.5247 18.4647 13.5348C18.454 13.545 18.4476 13.5601 18.4375 13.5708C18.4273 13.5815 18.4108 13.5956 18.4012 13.6067C18.3916 13.6179 18.3739 13.6221 18.3739 13.6337C18.3739 13.6453 18.3467 13.6576 18.3467 13.6697C18.3467 13.6817 18.3286 13.6931 18.3286 13.7056C18.3286 13.7181 18.3013 13.7377 18.3013 13.7506C18.3013 13.7634 18.2832 13.7734 18.2832 13.7865C18.0517 14.2315 18.2242 14.7663 18.6735 14.982C19.1772 15.2382 19.5993 15.6562 19.8716 16.1685C20.1711 16.7483 20.1711 17.6831 20.1711 19.5573L20.1711 20.0966C20.1711 20.1114 20.1802 20.1268 20.1802 20.1416C20.1802 20.1563 20.1802 20.1718 20.1802 20.1865C20.1802 20.2012 20.1892 20.2168 20.1892 20.2315C20.1892 20.2461 20.1892 20.2619 20.1892 20.2764C20.1892 20.2909 20.2074 20.298 20.2074 20.3124C20.2074 20.3267 20.2165 20.3432 20.2165 20.3573C20.2165 20.3715 20.2255 20.3883 20.2255 20.4022C20.2255 20.4162 20.2437 20.4246 20.2437 20.4382C20.2437 20.4519 20.2619 20.4698 20.2619 20.4831C20.2619 20.4965 20.28 20.5061 20.28 20.5191C20.28 20.5321 20.3072 20.5514 20.3072 20.564C20.3072 20.5767 20.3254 20.5877 20.3254 20.6C20.3254 20.6123 20.3526 20.6241 20.3526 20.636C20.3526 20.6478 20.3704 20.6605 20.3798 20.6719C20.3893 20.6833 20.4061 20.6879 20.4162 20.6989C20.4262 20.7098 20.4328 20.7244 20.4434 20.7348C20.454 20.7453 20.4686 20.7519 20.4797 20.7618C20.4908 20.7717 20.4954 20.7884 20.5069 20.7978C20.5185 20.8071 20.5312 20.8247 20.5432 20.8247C20.5552 20.8247 20.5671 20.8517 20.5795 20.8517C20.5919 20.8517 20.603 20.8697 20.6158 20.8697C20.6286 20.8697 20.6481 20.8966 20.6612 20.8966C20.6744 20.8966 20.684 20.9146 20.6975 20.9146C20.711 20.9146 20.7291 20.9326 20.7429 20.9326C20.7567 20.9326 20.7652 20.9506 20.7792 20.9506C20.7933 20.9506 20.8103 20.9596 20.8246 20.9596C20.8389 20.9596 20.8555 20.9685 20.87 20.9685C20.8845 20.9685 20.8916 20.9865 20.9063 20.9865C20.9209 20.9865 20.9369 20.9865 20.9517 20.9865C20.9664 20.9865 20.9822 20.9955 20.997 20.9955C21.0119 20.9955 21.0275 20.9955 21.0424 20.9955C21.0573 20.9955 21.0729 20.9955 21.0878 20.9955C21.1027 20.9955 21.1183 20.9955 21.1332 20.9955C21.1481 20.9955 21.1637 20.9955 21.1786 20.9955C21.1934 20.9955 21.2092 20.9865 21.224 20.9865C21.2387 20.9865 21.2547 20.9865 21.2693 20.9865C21.284 20.9865 21.2912 20.9685 21.3056 20.9685C21.3201 20.9685 21.3368 20.9596 21.351 20.9596C21.3653 20.9596 21.3824 20.9506 21.3964 20.9506C21.4105 20.9506 21.4189 20.9326 21.4327 20.9326C21.4465 20.9326 21.4646 20.9146 21.4781 20.9146C21.4916 20.9146 21.5012 20.8966 21.5144 20.8966C21.5276 20.8966 21.547 20.8697 21.5598 20.8697C21.5726 20.8697 21.5837 20.8517 21.5961 20.8517C21.6085 20.8517 21.6204 20.8247 21.6324 20.8247C21.6444 20.8247 21.6572 20.8071 21.6687 20.7978C21.6803 20.7884 21.6849 20.7717 21.6959 20.7618C21.707 20.7519 21.7217 20.7453 21.7322 20.7348C21.7428 20.7244 21.7495 20.7098 21.7595 20.6989C21.7695 20.6879 21.7863 20.6833 21.7958 20.6719C21.8052 20.6605 21.823 20.6478 21.823 20.636C21.823 20.6241 21.8502 20.6123 21.8502 20.6C21.8502 20.5877 21.8684 20.5767 21.8684 20.564C21.8684 20.5514 21.8956 20.5321 21.8956 20.5191C21.8956 20.5061 21.9138 20.4965 21.9138 20.4831C21.9138 20.4698 21.9319 20.4519 21.9319 20.4382C21.9319 20.4246 21.9501 20.4162 21.9501 20.4022C21.9501 20.3883 21.9592 20.3715 21.9592 20.3573C21.9592 20.3432 21.9682 20.3267 21.9682 20.3124C21.9682 20.298 21.9864 20.2909 21.9864 20.2764C21.9864 20.2619 21.9864 20.2461 21.9864 20.2315C21.9864 20.2168 21.9955 20.2012 21.9955 20.1865C21.9955 20.1718 21.9955 20.1563 21.9955 20.1416C21.9955 20.1268 21.9955 20.1114 21.9955 20.0966L21.9955 19.5573C21.9955 17.4 21.9955 16.3169 21.5053 15.3596L21.469 15.3506Z' fill='%237E84A3' %3E%3C/path%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:project{background:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' t='1719844718926' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='266272' width='200' height='200'%3E%3Cpath d='M138.0173018 383.04044608h747.9653964c7.09277447 0 12.89595271-5.80317818 12.89595812-12.89595273v-64.47977419c0-28.37110348-23.21271811-51.58382158-51.58382153-51.58382161H497.81445089c-24.50231446 0-47.71503251-11.60636172-62.54538509-31.59508902l-24.50231442-33.52948343c-14.83034722-19.98873261-38.04306533-31.59508889-62.54537971-31.59509427h-145.72429566c-42.55665253 0-77.37573228 34.81907982-77.37573233 77.37573236v135.40753016c0 7.09277447 5.80317818 12.89595271 12.89595812 12.89595273zM885.9826982 415.2803386h-747.9653964c-7.09277447 0-12.89595271 5.80317818-12.89595812 12.89595272V787.97344057c0 42.55665253 34.81907982 77.37573228 77.37573233 77.37573223l619.00584798 1.28959637c42.55665253 0 77.37573228-34.81907982 77.37573233-77.37573236v-361.08674549c0-7.09277447-5.80317818-12.89595271-12.89595812-12.89595272z m-606.1098899 310.14771686c-1.28959636 1.93439451-3.22399088 3.86878903-5.8031835 5.80318347-32.88468534 20.63353074-67.05896691-13.54075089-46.4254362-46.42544153 1.28959636-1.93439451 3.22399088-3.86878903 5.80317822-5.80317821 32.88468534-20.63353074 67.70376514 14.18554911 46.42544148 46.42543627z m0-137.98671761c-1.28959636 1.93439451-3.22399088 3.86878903-5.8031835 5.80317817-32.88468534 20.63353074-67.05896691-13.54075089-46.4254362-46.4254362 1.28959636-1.93439451 3.22399088-3.86878903 5.80317822-5.80317818 32.88468534-21.27832364 67.70376514 13.54075089 46.42544148 46.42543621z m361.08674562 149.59307926h-264.36708411c-6.44797635 0-12.25115989-2.57919268-16.11994359-7.73757266-21.27832364-27.08150713-2.57919268-56.74220161 23.212718-56.74220164h264.36708417c6.44797635 0 12.25115989 2.57919268 16.11994364 7.73757283 21.27832364 27.08150713 2.57919268 56.74220161-23.21271811 56.74220147z m128.95954853-137.98671756h-393.32663264c-6.44797635 0-12.25115989-2.57919268-16.11994359-7.73757269-21.27832364-27.08150713-2.57919268-56.74220161 23.212718-56.74220692h393.32663275c6.44797635 0 12.25115989 2.57919268 16.11994354 7.7375727 21.27832364 27.08150713 2.57919268 56.74220161-23.21271806 56.74220691z' fill='%2308D19F' p-id='266273'%3E%3C/path%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;width:1em;height:1em;}.i-svg\:project_1{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M18.4671 21.8884L5.46704 21.8884C3.91147 21.8884 2.57812 20.5552 2.57812 18.9997L2.57812 6.00012C2.57812 4.44462 3.91147 3.11133 5.46704 3.11133L7.8004 3.11133C8.91152 3.11133 9.91153 3.77797 10.356 4.77793L11.0227 6.11123C11.2449 6.55564 11.6893 6.88897 12.2449 6.88897L18.4671 6.88897C20.0227 6.88897 21.3561 8.22227 21.3561 9.77776L21.3561 18.9997C21.3561 20.5552 20.0227 21.8884 18.4671 21.8884ZM5.46704 4.66682C4.80037 4.66682 4.1337 5.22237 4.1337 6.00012L4.1337 18.9997C4.1337 19.6663 4.68926 20.333 5.46704 20.333L18.4671 20.333C19.1338 20.333 19.8005 19.7774 19.8005 18.9997L19.8005 9.77776C19.8005 9.11112 19.2449 8.44448 18.4671 8.44448L12.1338 8.44448C11.0227 8.44448 10.0226 7.77783 9.57819 6.77786L8.91152 5.44459C8.68929 5.00015 8.24485 4.66682 7.8004 4.66682L5.46704 4.66682Z' fill='%237E84A3' %3E%3C/path%3E%3Cpath d='M18.4679 21.9993L5.4678 21.9993C3.80112 21.9993 2.46777 20.666 2.46777 18.9994L2.46777 5.9999C2.46777 4.33329 3.80112 3 5.4678 3L7.80116 3C8.91228 3 10.0234 3.66664 10.4678 4.77771L11.1345 6.11101C11.3568 6.55542 11.8012 6.77764 12.2457 6.77764L18.4679 6.77764C20.0235 6.77764 21.4679 8.11094 21.4679 9.77754L21.4679 18.9994C21.4679 20.5549 20.0235 21.9993 18.4679 21.9993ZM5.4678 3.22221C3.91223 3.22221 2.69 4.4444 2.69 5.9999L2.69 18.9994C2.69 20.5549 3.91223 21.7771 5.4678 21.7771L18.4679 21.7771C20.0235 21.7771 21.2457 20.5549 21.2457 18.9994L21.2457 9.77754C21.2457 8.22204 20.0235 6.99986 18.4679 6.99986L12.1345 6.99986C11.579 6.99986 11.1345 6.66653 10.8012 6.22211L10.2456 4.77771C9.80118 3.88886 8.80117 3.22221 7.80116 3.22221L5.4678 3.22221ZM18.4679 20.3327L5.4678 20.3327C4.69002 20.3327 4.02335 19.6661 4.02335 18.8883L4.02335 5.9999C4.02335 5.22215 4.69002 4.55549 5.4678 4.55549L7.80116 4.55549C8.35673 4.55549 8.80117 4.88882 9.13451 5.33326L9.80118 6.66653C10.2456 7.6665 11.2456 8.22204 12.3568 8.22204L18.579 8.22204C19.3568 8.22204 20.0235 8.88868 20.0235 9.66643L20.0235 18.8883C19.8013 19.7772 19.2457 20.3327 18.4679 20.3327ZM5.4678 4.77771C4.80113 4.77771 4.24557 5.33326 4.24557 5.9999L4.24557 18.9994C4.24557 19.6661 4.80113 20.2216 5.4678 20.2216L18.4679 20.2216C19.1346 20.2216 19.6901 19.6661 19.6901 18.9994L19.6901 9.77754C19.6901 9.1109 19.1346 8.55535 18.4679 8.55535L12.1345 8.55535C11.0234 8.55535 9.91229 7.88872 9.46783 6.77764L8.80117 5.44437C8.57894 4.99993 8.1345 4.77771 7.69004 4.77771L5.4678 4.77771Z' fill='%237E84A3' %3E%3C/path%3E%3Cpath d='M19.1339 7.66653L17.5783 7.66653L17.5783 6.88879C17.5783 6.22215 17.0228 5.55549 16.245 5.55549L9.46714 5.55549L9.46714 4L16.245 4C17.8005 4 19.1339 5.33329 19.1339 6.88879L19.1339 7.66653ZM11.1338 18.7773L6.91157 18.7773C6.46711 18.7773 6.13379 18.444 6.13379 17.9995C6.13379 17.5551 6.46711 17.2218 6.91157 17.2218L11.2449 17.2218C11.6894 17.2218 12.0227 17.5551 12.0227 17.9995C11.9116 18.3328 11.5783 18.7773 11.1338 18.7773Z' fill='%237E84A3' %3E%3C/path%3E%3Cpath d='M11.1336 18.8901L6.91136 18.8901C6.4669 18.8901 6.02246 18.4457 6.02246 18.0013C6.02246 17.5568 6.4669 17.1124 6.91136 17.1124L11.2447 17.1124C11.6892 17.1124 12.1336 17.5568 12.1336 18.0013C12.0225 18.4457 11.6892 18.8901 11.1336 18.8901ZM6.91136 17.2235C6.57801 17.2235 6.24469 17.5568 6.24469 17.8901C6.24469 18.2235 6.57801 18.5568 6.91136 18.5568L11.2447 18.5568C11.5781 18.5568 11.9114 18.2235 11.9114 17.8901C11.9114 17.5568 11.5781 17.2235 11.2447 17.2235L6.91136 17.2235ZM19.2448 7.77938L17.467 7.77938L17.467 6.89052C17.467 6.22389 16.9114 5.66834 16.2448 5.66834L9.35583 5.66834L9.35583 3.89062L16.2448 3.89062C17.9114 3.89062 19.2448 5.22392 19.2448 6.89052L19.2448 7.77938ZM17.6892 7.55716L19.0226 7.55716L19.0226 6.89052C19.0226 5.33503 17.8003 4.11284 16.2448 4.11284L9.57804 4.11284L9.57804 5.44614L16.2448 5.44614C17.0226 5.44614 17.6892 6.11278 17.6892 6.89052L17.6892 7.55716Z' fill='%237E84A3' %3E%3C/path%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:qq{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M19.9139 14.529C19.7336 13.955 19.4877 13.2856 19.2385 12.643L18.3288 10.3969C18.3295 10.371 18.3408 9.92858 18.3408 9.70053C18.3408 5.8599 16.5082 2.00037 12.0009 2C7.49403 2.00037 5.66113 5.8599 5.66113 9.70053C5.66113 9.92858 5.67237 10.371 5.67312 10.3969L4.76379 12.643C4.51453 13.2856 4.26827 13.955 4.08798 14.529C3.2285 17.2657 3.507 18.3982 3.71915 18.4238C4.17419 18.4779 5.49021 16.3635 5.49021 16.3635C5.49021 17.5879 6.12741 19.1858 7.5064 20.3398C6.99064 20.4971 6.35868 20.7388 5.95237 21.0355C5.58729 21.3025 5.63302 21.5743 5.69861 21.6841C5.9876 22.1661 10.6542 21.9918 12.0017 21.8417C13.3488 21.9918 18.0158 22.1661 18.3044 21.6841C18.3704 21.5743 18.4157 21.3025 18.0507 21.0355C17.6443 20.7388 17.012 20.4971 16.4959 20.3395C17.8745 19.1858 18.5117 17.5879 18.5117 16.3635C18.5117 16.3635 19.8281 18.4779 20.2831 18.4238C20.4949 18.3982 20.7734 17.2657 19.9139 14.529Z'%3E%3C/path%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:refresh{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' aria-hidden='true' width='1em' height='1em' viewBox='0 0 512 512'%3E%3Cpath d='m400 148-21.12-24.57A191.43 191.43 0 0 0 240 64C134 64 48 150 48 256s86 192 192 192a192.09 192.09 0 0 0 181.07-128' fill='none' stroke='currentColor' stroke-linecap='square' stroke-miterlimit='10' stroke-width='32'/%3E%3Cpath d='M464 68.45V220a4 4 0 0 1-4 4H308.45a4 4 0 0 1-2.83-6.83L457.17 65.62a4 4 0 0 1 6.83 2.83z' fill='currentColor'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:role{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' fill='currentColor' class='icon' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cpath d='M79.238 961.896v-25.442c0-109.28 28.835-214.892 81.139-297.416 48.427-76.396 115.304-131.573 195.508-161.896A240.785 240.785 0 0 1 279.488 300.5c0-131.538 104.331-238.535 232.547-238.535S744.546 168.962 744.546 300.5a240.854 240.854 0 0 1-76.742 176.988c190.87 73.004 276.992 277.131 276.992 458.966v25.442H79.238zM694.908 300.5c0-103.43-82.039-187.615-182.873-187.615-100.835 0-182.873 84.184-182.873 187.615 0 103.465 82.038 187.65 182.873 187.65 100.834 0 182.873-84.185 182.873-187.65zm-79.166 213.508a226.454 226.454 0 0 1-103.707 25.096A225.935 225.935 0 0 1 407.912 513.8C212.888 564.927 136.804 752.854 129.5 910.977h765.035c-7.997-167.4-95.227-347.746-278.793-396.97zm-143.411 37.246h79.407l39.739-8.48-45.242 65.664 30.6 227.527-64.8 56.908-69.197-56.908 40.535-227.527-50.78-65.665 39.738 8.48z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:search{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M11 2C15.968 2 20 6.032 20 11C20 15.968 15.968 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2ZM11 18C14.8675 18 18 14.8675 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18ZM19.4853 18.0711L22.3137 20.8995L20.8995 22.3137L18.0711 19.4853L19.4853 18.0711Z'%3E%3C/path%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:setting{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='m12 1 9.5 5.5v11L12 23l-9.5-5.5v-11L12 1zm0 2.311L4.5 7.653v8.694l7.5 4.342 7.5-4.342V7.653L12 3.311zM12 16a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm0-2a2 2 0 1 0 0-4 2 2 0 0 0 0 4z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:size{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M10 6v15H8V6H2V4h14v2h-6zm8 8v7h-2v-7h-3v-2h8v2h-3z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:system{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' fill='currentColor' class='icon' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cpath d='M139 669.6V164.3c0-12.7 10.3-23.1 23.1-23.1h694.4c12.7 0 23.1 10.4 23.1 23.1v248.5h70V164.3c0-51.3-41.8-93.1-93.1-93.1H162c-51.3.1-93 41.8-93 93.1v505.3c0 51.3 41.8 93.1 93.1 93.1h224.7v-70H162c-12.7 0-23-10.4-23-23.1zm-34.3 131h282v70h-282z'/%3E%3Cpath d='m954.9 599.4-5.1-15c-11.5-33.9-29.4-64.9-53.2-91.9l-10.5-11.9h-83.2l-41.7-72.2-15.6-3.1c-34.8-6.9-71.3-6.9-106.1 0l-15.6 3.1-41.7 72.2H499l-10.5 11.9c-23.8 27.1-41.7 58-53.2 91.9l-5.1 15 41.7 72.2-41.7 72.2 5.1 15c11.5 33.9 29.4 64.9 53.2 91.9l10.5 11.9h83.2l41.7 72.2 15.6 3.1c17.4 3.5 35.3 5.2 53.1 5.2s35.6-1.8 53.1-5.2l15.6-3.1 41.7-72.2h83.2l10.5-11.9c23.8-27.1 41.7-58 53.2-91.9l5.1-15-41.7-72.2 41.6-72.2zm-76.8 151.2c-6.4 14.9-14.5 29-24.3 42h-91.2l-45.6 79c-16.1 1.9-32.4 1.9-48.5 0l-45.6-79h-91.2c-9.8-13-17.9-27-24.3-42l45.6-79.1-45.6-79.1c6.4-14.9 14.5-29 24.3-42h91.2l45.6-79c16.1-1.9 32.4-1.9 48.5 0l45.6 79h91.2c9.8 13 17.9 27 24.3 42l-45.6 79.1 45.6 79.1z'/%3E%3Cpath d='M692.7 560.2c-61.4 0-111.3 49.9-111.3 111.3s49.9 111.3 111.3 111.3S804 732.9 804 671.5c0-61.3-49.9-111.3-111.3-111.3zm0 152.7c-22.8 0-41.3-18.5-41.3-41.3s18.5-41.3 41.3-41.3 41.3 18.5 41.3 41.3-18.5 41.3-41.3 41.3z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:system_1{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M19.6622 2.22667L4.19212 2.22667C2.94264 2.22667 1.92969 3.26882 1.92969 4.55454L1.92969 15.9357C1.92969 17.2243 2.94485 18.2688 4.19706 18.2688L11.1755 18.2688L11.1755 20.6744L5.92664 20.6744C5.51011 20.6744 5.17243 21.0218 5.17243 21.4504C5.17243 21.879 5.51011 22.2264 5.92664 22.2264L17.9629 22.2264C18.3794 22.2264 18.717 21.879 18.717 21.4504C18.717 21.0218 18.3794 20.6744 17.9629 20.6744L12.6838 20.6744L12.6838 18.274L19.6622 18.274C19.6808 18.274 19.6994 18.2738 19.7179 18.2733C19.7365 18.2728 19.755 18.2721 19.7735 18.2712C19.7921 18.2703 19.8106 18.2691 19.8291 18.2677C19.8476 18.2663 19.8661 18.2646 19.8846 18.2628C19.903 18.2609 19.9215 18.2588 19.9399 18.2564C19.9583 18.2541 19.9767 18.2515 19.9951 18.2487C20.0134 18.2459 20.0317 18.2429 20.05 18.2396C20.0683 18.2363 20.0865 18.2328 20.1047 18.2291C20.1229 18.2254 20.1411 18.2214 20.1592 18.2173C20.1773 18.2131 20.1953 18.2087 20.2133 18.204C20.2313 18.1994 20.2493 18.1945 20.2671 18.1894C20.285 18.1843 20.3029 18.179 20.3206 18.1735C20.3384 18.1679 20.3561 18.1622 20.3737 18.1562C20.3913 18.1502 20.4088 18.144 20.4263 18.1375C20.4438 18.1311 20.4612 18.1245 20.4785 18.1176C20.4958 18.1107 20.513 18.1036 20.5301 18.0963C20.5473 18.089 20.5643 18.0815 20.5813 18.0738C20.5983 18.066 20.6151 18.0581 20.6319 18.0499C20.6487 18.0418 20.6653 18.0334 20.6819 18.0248C20.6985 18.0162 20.7149 18.0074 20.7313 17.9984C20.7476 17.9894 20.7639 17.9802 20.78 17.9708C20.7962 17.9614 20.8122 17.9518 20.8281 17.942C20.844 17.9322 20.8598 17.9222 20.8755 17.912C20.8911 17.9018 20.9067 17.8913 20.9221 17.8808C20.9375 17.8701 20.9528 17.8593 20.968 17.8484C20.9831 17.8374 20.9982 17.8262 21.0131 17.8148C21.028 17.8035 21.0427 17.7919 21.0573 17.7802C21.0719 17.7684 21.0864 17.7565 21.1008 17.7444C21.1151 17.7323 21.1293 17.72 21.1433 17.7075C21.1574 17.6951 21.1712 17.6824 21.185 17.6696C21.1987 17.6568 21.2123 17.6438 21.2257 17.6307C21.2391 17.6175 21.2524 17.6042 21.2655 17.5907C21.2786 17.5772 21.2916 17.5635 21.3044 17.5497C21.3172 17.5358 21.3298 17.5218 21.3423 17.5077C21.3547 17.4935 21.367 17.4792 21.3792 17.4648C21.3913 17.4503 21.4032 17.4357 21.415 17.4209C21.4268 17.4062 21.4384 17.3913 21.4498 17.3762C21.4612 17.3612 21.4724 17.346 21.4835 17.3306C21.4945 17.3153 21.5054 17.2998 21.5161 17.2842C21.5268 17.2686 21.5373 17.2528 21.5476 17.237C21.5579 17.2211 21.568 17.2051 21.5779 17.189C21.5879 17.1728 21.5976 17.1566 21.6071 17.1402C21.6167 17.1238 21.626 17.1073 21.6352 17.0907C21.6443 17.0741 21.6533 17.0574 21.662 17.0405C21.6708 17.0237 21.6793 17.0068 21.6876 16.9897C21.696 16.9727 21.7041 16.9555 21.7121 16.9383C21.72 16.921 21.7277 16.9037 21.7352 16.8862C21.7428 16.8687 21.7501 16.8512 21.7572 16.8336C21.7643 16.816 21.7712 16.7982 21.7778 16.7804C21.7845 16.7626 21.791 16.7447 21.7972 16.7268C21.8035 16.7088 21.8095 16.6907 21.8153 16.6726C21.8211 16.6545 21.8267 16.6363 21.8321 16.618C21.8375 16.5998 21.8427 16.5814 21.8476 16.563C21.8526 16.5447 21.8573 16.5262 21.8618 16.5077C21.8663 16.4892 21.8706 16.4706 21.8747 16.452C21.8787 16.4334 21.8826 16.4147 21.8862 16.396C21.8898 16.3773 21.8932 16.3585 21.8964 16.3397C21.8995 16.3209 21.9025 16.3021 21.9052 16.2832C21.9079 16.2643 21.9104 16.2454 21.9127 16.2265C21.915 16.2075 21.917 16.1886 21.9188 16.1696C21.9206 16.1506 21.9222 16.1316 21.9236 16.1125C21.9249 16.0935 21.9261 16.0745 21.927 16.0554C21.9279 16.0363 21.9286 16.0173 21.929 15.9982C21.9295 15.9791 21.9297 15.9601 21.9297 15.941L21.9297 4.55961C21.9297 3.27109 20.9145 2.22656 19.6622 2.22656L19.6622 2.22667ZM20.4214 15.9409C20.4214 16.148 20.3414 16.3467 20.199 16.4933C20.1902 16.5023 20.1812 16.5111 20.172 16.5197C20.1628 16.5283 20.1534 16.5367 20.1438 16.5448C20.1342 16.5529 20.1244 16.5607 20.1145 16.5683C20.1045 16.576 20.0943 16.5833 20.084 16.5904C20.0737 16.5975 20.0632 16.6043 20.0525 16.6109C20.0419 16.6175 20.0311 16.6238 20.0201 16.6298C20.0091 16.6358 19.998 16.6416 19.9868 16.647C19.9756 16.6525 19.9642 16.6577 19.9528 16.6626C19.9413 16.6675 19.9297 16.6721 19.918 16.6764C19.9063 16.6807 19.8945 16.6847 19.8826 16.6884C19.8707 16.6921 19.8587 16.6955 19.8467 16.6986C19.8346 16.7017 19.8225 16.7045 19.8103 16.707C19.7981 16.7095 19.7859 16.7117 19.7736 16.7136C19.7613 16.7155 19.749 16.717 19.7366 16.7183C19.7242 16.7195 19.7118 16.7205 19.6994 16.7211C19.687 16.7217 19.6746 16.7221 19.6621 16.7221L4.19726 16.7221C4.18485 16.7221 4.17243 16.7217 4.16001 16.7211C4.14759 16.7205 4.1352 16.7195 4.12282 16.7183C4.11044 16.717 4.09813 16.7155 4.08583 16.7136C4.07354 16.7117 4.06129 16.7095 4.0491 16.707C4.03691 16.7045 4.02478 16.7017 4.01273 16.6986C4.00069 16.6955 3.98871 16.6921 3.97682 16.6884C3.96492 16.6847 3.95312 16.6807 3.94143 16.6763C3.92972 16.672 3.91813 16.6674 3.90665 16.6625C3.89518 16.6576 3.88382 16.6525 3.87258 16.647C3.86136 16.6415 3.85026 16.6358 3.83929 16.6297C3.82834 16.6237 3.81754 16.6174 3.80688 16.6108C3.79623 16.6043 3.78574 16.5974 3.77541 16.5903C3.76508 16.5832 3.75493 16.5759 3.74495 16.5682C3.73498 16.5606 3.72519 16.5528 3.71559 16.5447C3.70599 16.5365 3.69659 16.5282 3.68739 16.5196C3.67819 16.511 3.6692 16.5022 3.66042 16.4932C3.65164 16.4841 3.64307 16.4749 3.63472 16.4654C3.62637 16.4559 3.61826 16.4462 3.61038 16.4364C3.60249 16.4265 3.59484 16.4164 3.58744 16.4061C3.58003 16.3959 3.57288 16.3854 3.56598 16.3748C3.55908 16.3641 3.55243 16.3533 3.54604 16.3424C3.53965 16.3314 3.53352 16.3203 3.52767 16.309C3.52182 16.2977 3.51623 16.2863 3.51091 16.2748C3.5056 16.2632 3.50056 16.2515 3.49581 16.2397C3.49106 16.2279 3.48659 16.216 3.4824 16.2039C3.47821 16.1919 3.47431 16.1798 3.4707 16.1675C3.46709 16.1553 3.46378 16.143 3.46077 16.1306C3.45775 16.1182 3.45503 16.1058 3.4526 16.0932C3.45018 16.0807 3.44805 16.0681 3.44622 16.0554C3.4444 16.0428 3.44288 16.0301 3.44166 16.0174C3.44044 16.0047 3.43953 15.992 3.43892 15.9792C3.43831 15.9664 3.43801 15.9536 3.43801 15.9409L3.43801 4.55982C3.43801 4.1313 3.7757 3.78384 4.19222 3.78384L19.6624 3.78384C19.6747 3.78376 19.6871 3.78399 19.6995 3.78454C19.7119 3.7851 19.7243 3.78596 19.7366 3.78713C19.749 3.78831 19.7613 3.78979 19.7736 3.79159C19.7858 3.79339 19.798 3.79549 19.8102 3.79791C19.8224 3.80033 19.8345 3.80305 19.8465 3.80608C19.8586 3.80912 19.8705 3.81246 19.8824 3.8161C19.8943 3.81973 19.9061 3.82367 19.9178 3.82792C19.9295 3.83215 19.9411 3.83668 19.9525 3.8415C19.964 3.84632 19.9754 3.85144 19.9866 3.85684C19.9978 3.86223 20.0089 3.86791 20.0198 3.87388C20.0308 3.87984 20.0416 3.88607 20.0523 3.89258C20.0629 3.89908 20.0734 3.90586 20.0837 3.9129C20.0941 3.91995 20.1042 3.92725 20.1142 3.9348C20.1242 3.94236 20.134 3.95016 20.1436 3.95821C20.1532 3.96626 20.1626 3.97455 20.1718 3.98308C20.181 3.99161 20.19 4.00037 20.1988 4.00935C20.2076 4.01835 20.2161 4.02756 20.2245 4.03698C20.2329 4.04642 20.241 4.05605 20.2489 4.06588C20.2568 4.07573 20.2644 4.08576 20.2718 4.09597C20.2793 4.1062 20.2864 4.11661 20.2933 4.12721C20.3002 4.13779 20.3069 4.14854 20.3133 4.15946C20.3197 4.1704 20.3258 4.18148 20.3317 4.19271C20.3376 4.20395 20.3432 4.21532 20.3485 4.22684C20.3538 4.23835 20.3588 4.24999 20.3636 4.26176C20.3684 4.27355 20.3729 4.28544 20.3771 4.29744C20.3812 4.30943 20.3852 4.32153 20.3888 4.33372C20.3924 4.34592 20.3957 4.35819 20.3987 4.37056C20.4017 4.38293 20.4045 4.39537 20.4069 4.40787C20.4093 4.42037 20.4115 4.43293 20.4133 4.44553C20.4151 4.45814 20.4166 4.47079 20.4179 4.48347C20.4191 4.49616 20.42 4.50888 20.4206 4.52161C20.4212 4.53434 20.4215 4.54707 20.4215 4.55982L20.4215 15.941L20.4214 15.9409Z' fill='%237E84A3' %3E%3C/path%3E%3Cpath d='M12.6834 10.5087L12.6834 6.80479C12.6834 6.37616 12.3457 6.02881 11.9293 6.02881C11.5128 6.02881 11.1751 6.37616 11.1751 6.80479L11.1751 10.5036C11.1635 10.5115 11.152 10.5196 11.1406 10.5279C11.1292 10.5362 11.118 10.5447 11.1069 10.5533C11.0957 10.562 11.0848 10.5708 11.0739 10.5798C11.0631 10.5888 11.0523 10.598 11.0418 10.6073C11.0312 10.6167 11.0208 10.6262 11.0105 10.6358C11.0002 10.6455 10.99 10.6553 10.98 10.6653C10.97 10.6753 10.9602 10.6855 10.9505 10.6958C10.9408 10.706 10.9312 10.7165 10.9219 10.7271C10.9125 10.7377 10.9033 10.7485 10.8942 10.7594C10.8851 10.7702 10.8762 10.7813 10.8675 10.7925C10.8588 10.8036 10.8502 10.815 10.8418 10.8264C10.8334 10.8378 10.8252 10.8494 10.8172 10.8611C10.8091 10.8728 10.8012 10.8846 10.7935 10.8966C10.7859 10.9085 10.7784 10.9206 10.771 10.9328C10.7637 10.945 10.7565 10.9573 10.7496 10.9697C10.7426 10.9821 10.7359 10.9946 10.7293 11.0073C10.7227 11.0199 10.7163 11.0326 10.7101 11.0455C10.7039 11.0583 10.6979 11.0712 10.692 11.0842C10.6862 11.0973 10.6806 11.1104 10.6752 11.1236C10.6697 11.1368 10.6645 11.1501 10.6595 11.1634C10.6545 11.1768 10.6496 11.1902 10.645 11.2037C10.6404 11.2173 10.636 11.2308 10.6317 11.2445C10.6275 11.2582 10.6235 11.2719 10.6197 11.2857C10.6159 11.2994 10.6123 11.3133 10.6089 11.3272C10.6055 11.3411 10.6023 11.355 10.5993 11.369C10.5964 11.383 10.5936 11.3971 10.5911 11.4111C10.5885 11.4252 10.5862 11.4393 10.584 11.4535C10.5819 11.4676 10.58 11.4818 10.5783 11.4961C10.5765 11.5103 10.5751 11.5245 10.5738 11.5388C10.5725 11.5531 10.5714 11.5673 10.5706 11.5816C10.5697 11.5959 10.5691 11.6102 10.5687 11.6246C10.5682 11.6389 10.568 11.6532 10.568 11.6675C10.568 12.1358 10.7959 12.5728 11.1751 12.8315L11.1751 13.9128C11.1751 14.3413 11.5128 14.6888 11.9293 14.6888C12.3457 14.6888 12.6834 14.3413 12.6834 13.9128L12.6834 12.8211C12.6949 12.8133 12.7062 12.8052 12.7175 12.797C12.7288 12.7887 12.7399 12.7803 12.7509 12.7717C12.7619 12.7632 12.7727 12.7544 12.7834 12.7455C12.7942 12.7365 12.8048 12.7274 12.8152 12.7182C12.8257 12.7089 12.836 12.6995 12.8462 12.6899C12.8563 12.6803 12.8664 12.6705 12.8762 12.6606C12.8861 12.6507 12.8958 12.6406 12.9054 12.6304C12.915 12.6202 12.9244 12.6098 12.9337 12.5993C12.943 12.5888 12.9521 12.5782 12.961 12.5674C12.97 12.5566 12.9788 12.5456 12.9874 12.5345C12.996 12.5234 13.0045 12.5122 13.0128 12.5009C13.021 12.4895 13.0291 12.4781 13.0371 12.4665C13.045 12.4548 13.0528 12.4431 13.0604 12.4313C13.068 12.4194 13.0754 12.4074 13.0826 12.3954C13.0898 12.3833 13.0969 12.3711 13.1037 12.3588C13.1106 12.3465 13.1173 12.3341 13.1238 12.3215C13.1303 12.309 13.1366 12.2964 13.1427 12.2837C13.1488 12.271 13.1547 12.2582 13.1605 12.2453C13.1662 12.2323 13.1717 12.2193 13.1771 12.2063C13.1824 12.1932 13.1876 12.18 13.1925 12.1668C13.1974 12.1535 13.2022 12.1402 13.2067 12.1268C13.2113 12.1134 13.2156 12.1 13.2198 12.0864C13.2239 12.0729 13.2278 12.0593 13.2316 12.0457C13.2353 12.032 13.2388 12.0183 13.2422 12.0045C13.2455 11.9908 13.2486 11.9769 13.2515 11.9631C13.2544 11.9492 13.2571 11.9353 13.2596 11.9213C13.2621 11.9074 13.2644 11.8934 13.2665 11.8794C13.2685 11.8654 13.2704 11.8513 13.2721 11.8372C13.2737 11.8232 13.2752 11.8091 13.2764 11.7949C13.2776 11.7808 13.2786 11.7666 13.2794 11.7525C13.2802 11.7383 13.2808 11.7241 13.2812 11.71C13.2816 11.6958 13.2818 11.6816 13.2817 11.6674C13.2817 11.6532 13.2815 11.639 13.2811 11.6248C13.2807 11.6106 13.2801 11.5963 13.2792 11.5821C13.2784 11.5679 13.2774 11.5538 13.2761 11.5396C13.2749 11.5254 13.2734 11.5113 13.2717 11.4972C13.2701 11.4831 13.2682 11.469 13.2661 11.4549C13.264 11.4409 13.2617 11.4268 13.2592 11.4129C13.2567 11.3989 13.2539 11.3849 13.251 11.371C13.2481 11.3571 13.245 11.3433 13.2416 11.3295C13.2383 11.3156 13.2347 11.3019 13.231 11.2882C13.2273 11.2745 13.2233 11.2609 13.2192 11.2473C13.215 11.2338 13.2107 11.2203 13.2061 11.2068C13.2016 11.1934 13.1968 11.18 13.1919 11.1667C13.1869 11.1535 13.1818 11.1403 13.1764 11.1271C13.1711 11.114 13.1655 11.101 13.1598 11.088C13.1541 11.0751 13.1482 11.0622 13.1421 11.0495C13.136 11.0367 13.1297 11.024 13.1232 11.0115C13.1167 10.9989 13.11 10.9865 13.1031 10.9741C13.0963 10.9617 13.0892 10.9495 13.082 10.9373C13.0748 10.9252 13.0674 10.9132 13.0598 10.9013C13.0522 10.8894 13.0445 10.8776 13.0366 10.8659C13.0286 10.8543 13.0205 10.8427 13.0123 10.8314C13.004 10.8199 12.9955 10.8087 12.9869 10.7975C12.9783 10.7864 12.9695 10.7754 12.9606 10.7645C12.9517 10.7536 12.9426 10.7429 12.9333 10.7323C12.9241 10.7218 12.9147 10.7113 12.9051 10.701C12.8955 10.6908 12.8858 10.6806 12.8759 10.6706C12.8661 10.6607 12.8561 10.6508 12.8459 10.6412C12.8358 10.6315 12.8254 10.622 12.815 10.6126C12.8046 10.6033 12.794 10.5941 12.7833 10.5851C12.7726 10.5761 12.7617 10.5672 12.7508 10.5586C12.7398 10.5499 12.7287 10.5414 12.7174 10.5331C12.7062 10.5247 12.6949 10.5166 12.6834 10.5086L12.6834 10.5087ZM7.95235 7.88608L7.95235 6.80479C7.95235 6.37616 7.61477 6.02881 7.19824 6.02881C6.78172 6.02881 6.44402 6.37616 6.44402 6.80479L6.44402 7.89635C6.43254 7.90427 6.42118 7.91237 6.40992 7.92065C6.39868 7.92894 6.38757 7.9374 6.37658 7.94603C6.36558 7.95466 6.35472 7.96346 6.34399 7.97243C6.33328 7.9814 6.32268 7.99053 6.31221 7.99984C6.30176 8.00914 6.29145 8.0186 6.28128 8.02824C6.2711 8.03786 6.26107 8.04764 6.2512 8.05758C6.24131 8.06753 6.23158 8.07763 6.222 8.08788C6.21242 8.09813 6.20299 8.10853 6.19372 8.11908C6.18445 8.12962 6.17534 8.14031 6.16638 8.15114C6.15743 8.16199 6.14864 8.17296 6.14002 8.18406C6.13139 8.19515 6.12294 8.2064 6.11464 8.21777C6.10635 8.22915 6.09823 8.24065 6.09028 8.2523C6.08234 8.26393 6.07456 8.27568 6.06695 8.28755C6.05937 8.29941 6.05195 8.3114 6.0447 8.32351C6.03747 8.33563 6.03041 8.34785 6.02352 8.36018C6.01665 8.37251 6.00996 8.38495 6.00346 8.39749C5.99696 8.41003 5.99064 8.42265 5.98451 8.43541C5.97838 8.44814 5.97245 8.46098 5.9667 8.4739C5.96096 8.48682 5.95541 8.49983 5.95005 8.51293C5.94469 8.52602 5.93953 8.53922 5.93455 8.55248C5.92959 8.56574 5.92483 8.57907 5.92025 8.59248C5.91568 8.60589 5.91131 8.61937 5.90716 8.63293C5.903 8.64648 5.89903 8.66009 5.89527 8.67377C5.89151 8.68744 5.88795 8.70117 5.88459 8.71496C5.88124 8.72873 5.8781 8.74257 5.87517 8.75645C5.87222 8.77035 5.86949 8.78427 5.86697 8.79825C5.86445 8.81221 5.86213 8.82622 5.86002 8.84027C5.85792 8.85429 5.85602 8.86836 5.85434 8.88247C5.85265 8.89659 5.85117 8.9107 5.84992 8.92485C5.84865 8.939 5.8476 8.95318 5.84676 8.96735C5.84591 8.98155 5.84527 8.99573 5.84486 9.00992C5.84443 9.02412 5.84423 9.03834 5.84424 9.05255C5.84423 9.06675 5.84443 9.08097 5.84486 9.09516C5.84527 9.10936 5.84591 9.12356 5.84676 9.13775C5.8476 9.15193 5.84865 9.16608 5.84992 9.18023C5.85117 9.19439 5.85265 9.2085 5.85434 9.22261C5.85602 9.23672 5.85792 9.25079 5.86002 9.26484C5.86213 9.27889 5.86445 9.29289 5.86697 9.30686C5.86949 9.32084 5.87222 9.33476 5.87517 9.34864C5.8781 9.36254 5.88124 9.37637 5.88459 9.39015C5.88795 9.40392 5.89151 9.41765 5.89527 9.43133C5.89903 9.44502 5.903 9.45862 5.90716 9.47216C5.91131 9.48572 5.91568 9.4992 5.92025 9.51261C5.92483 9.52602 5.92959 9.53937 5.93455 9.55263C5.93953 9.56589 5.94469 9.57907 5.95005 9.59216C5.95541 9.60525 5.96096 9.61828 5.9667 9.63121C5.97245 9.64413 5.97838 9.65697 5.98451 9.6697C5.99064 9.68243 5.99696 9.69508 6.00346 9.70762C6.00996 9.72016 6.01665 9.7326 6.02352 9.74492C6.03041 9.75725 6.03747 9.76945 6.0447 9.78157C6.05195 9.79369 6.05937 9.80568 6.06695 9.81756C6.07456 9.82942 6.08234 9.84118 6.09028 9.85281C6.09823 9.86444 6.10635 9.87594 6.11464 9.88731C6.12294 9.89869 6.13139 9.90993 6.14002 9.92105C6.14864 9.93215 6.15743 9.94312 6.16638 9.95396C6.17534 9.96479 6.18445 9.97548 6.19372 9.98603C6.20299 9.99657 6.21242 10.007 6.222 10.0172C6.23158 10.0275 6.24131 10.0376 6.2512 10.0475C6.26107 10.0575 6.2711 10.0672 6.28128 10.0769C6.29145 10.0865 6.30176 10.0959 6.31221 10.1053C6.32268 10.1146 6.33328 10.1237 6.34399 10.1327C6.35472 10.1417 6.36558 10.1504 6.37658 10.1591C6.38757 10.1677 6.39868 10.1762 6.40992 10.1844C6.42118 10.1927 6.43254 10.2008 6.44402 10.2088L6.44402 13.9128C6.44402 14.3413 6.78172 14.6888 7.19824 14.6888C7.61477 14.6888 7.95235 14.3413 7.95235 13.9128L7.95235 10.219C7.96396 10.211 7.97545 10.2029 7.98683 10.1946C7.99819 10.1862 8.00943 10.1777 8.02055 10.169C8.03167 10.1604 8.04266 10.1515 8.05351 10.1424C8.06435 10.1334 8.07508 10.1242 8.08566 10.1148C8.09624 10.1055 8.10667 10.0959 8.11696 10.0862C8.12725 10.0765 8.13739 10.0667 8.1474 10.0566C8.1574 10.0466 8.16725 10.0364 8.17694 10.0261C8.18663 10.0158 8.19616 10.0053 8.20554 9.99467C8.21492 9.98403 8.22413 9.97328 8.2332 9.96235C8.24228 9.95142 8.25116 9.94036 8.25988 9.92916C8.26862 9.91795 8.27717 9.90662 8.28556 9.89514C8.29395 9.88366 8.30218 9.87208 8.31021 9.86034C8.31825 9.84861 8.32612 9.83677 8.33381 9.82478C8.34149 9.81279 8.349 9.80069 8.35633 9.78849C8.36366 9.77627 8.37079 9.76394 8.37776 9.7515C8.38472 9.73907 8.3915 9.72653 8.39809 9.71386C8.40468 9.70121 8.41106 9.68846 8.41726 9.6756C8.42346 9.66274 8.42947 9.6498 8.4353 9.63674C8.44111 9.62369 8.44673 9.61056 8.45216 9.59734C8.45757 9.58412 8.4628 9.57084 8.46782 9.55744C8.47284 9.54405 8.47768 9.53058 8.48231 9.51704C8.48691 9.5035 8.49134 9.4899 8.49557 9.47621C8.49979 9.46255 8.5038 9.44882 8.5076 9.435C8.51142 9.42119 8.51501 9.40733 8.5184 9.39341C8.52179 9.37949 8.52497 9.36553 8.52795 9.3515C8.53092 9.3375 8.53369 9.32343 8.53625 9.30932C8.5388 9.29521 8.54115 9.28107 8.54328 9.2669C8.54541 9.25272 8.54733 9.23851 8.54905 9.22427C8.55076 9.21003 8.55225 9.19577 8.55353 9.18149C8.55481 9.16721 8.55588 9.1529 8.55673 9.13858C8.55758 9.12426 8.55822 9.10991 8.55865 9.09559C8.55909 9.08124 8.55929 9.0669 8.55929 9.05255C8.55929 8.58369 8.3316 8.14596 7.95245 7.88598L7.95235 7.88608ZM17.5503 7.88608L17.5503 6.80479C17.5503 6.37616 17.2126 6.02881 16.796 6.02881C16.3795 6.02881 16.0418 6.37616 16.0418 6.80479L16.0418 7.89635C16.0303 7.90427 16.019 7.91237 16.0077 7.92065C15.9965 7.92894 15.9854 7.9374 15.9744 7.94603C15.9634 7.95466 15.9525 7.96346 15.9418 7.97243C15.9311 7.9814 15.9205 7.99053 15.91 7.99984C15.8996 8.00914 15.8893 8.0186 15.8791 8.02824C15.8689 8.03786 15.8589 8.04764 15.849 8.05758C15.8391 8.06753 15.8294 8.07763 15.8198 8.08788C15.8102 8.09813 15.8008 8.10853 15.7915 8.11908C15.7823 8.12962 15.7731 8.14031 15.7642 8.15114C15.7552 8.16199 15.7464 8.17296 15.7378 8.18406C15.7292 8.19515 15.7207 8.2064 15.7125 8.21777C15.7042 8.22915 15.696 8.24065 15.6881 8.25228C15.6801 8.26393 15.6724 8.27568 15.6648 8.28755C15.6572 8.29941 15.6497 8.3114 15.6425 8.32351C15.6353 8.33563 15.6282 8.34785 15.6213 8.36018C15.6145 8.37251 15.6078 8.38495 15.6013 8.39749C15.5948 8.41003 15.5884 8.42265 15.5823 8.43541C15.5762 8.44814 15.5703 8.46098 15.5645 8.4739C15.5587 8.48682 15.5532 8.49983 15.5478 8.51293C15.5425 8.52602 15.5373 8.53922 15.5324 8.55248C15.5274 8.56574 15.5226 8.57907 15.5181 8.59248C15.5135 8.60589 15.5091 8.61937 15.505 8.63293C15.5008 8.64648 15.4968 8.66009 15.4931 8.67375C15.4893 8.68744 15.4858 8.70117 15.4824 8.71496C15.4791 8.72873 15.4759 8.74257 15.473 8.75645C15.47 8.77035 15.4673 8.78427 15.4648 8.79825C15.4623 8.81221 15.4599 8.82622 15.4578 8.84027C15.4557 8.85429 15.4538 8.86836 15.4522 8.88247C15.4505 8.89659 15.449 8.9107 15.4477 8.92485C15.4465 8.939 15.4454 8.95318 15.4445 8.96735C15.4437 8.98155 15.4431 8.99573 15.4427 9.00992C15.4422 9.02412 15.442 9.03834 15.442 9.05255C15.442 9.06675 15.4422 9.08097 15.4427 9.09516C15.4431 9.10936 15.4437 9.12356 15.4445 9.13775C15.4454 9.15193 15.4465 9.16608 15.4477 9.18023C15.449 9.19439 15.4505 9.2085 15.4522 9.22261C15.4538 9.23672 15.4557 9.25079 15.4578 9.26484C15.4599 9.27889 15.4623 9.29289 15.4648 9.30686C15.4673 9.32084 15.47 9.33476 15.473 9.34864C15.4759 9.36254 15.4791 9.37637 15.4824 9.39015C15.4858 9.40392 15.4893 9.41765 15.4931 9.43133C15.4968 9.44502 15.5008 9.45862 15.505 9.47216C15.5091 9.48572 15.5135 9.4992 15.5181 9.51261C15.5226 9.52602 15.5274 9.53937 15.5324 9.55263C15.5373 9.56589 15.5425 9.57907 15.5478 9.59216C15.5532 9.60525 15.5587 9.61828 15.5645 9.63121C15.5703 9.64413 15.5762 9.65697 15.5823 9.6697C15.5884 9.68243 15.5948 9.69508 15.6013 9.70762C15.6078 9.72016 15.6145 9.7326 15.6213 9.74492C15.6282 9.75725 15.6353 9.76945 15.6425 9.78157C15.6498 9.79369 15.6572 9.80568 15.6648 9.81756C15.6724 9.82942 15.6801 9.84118 15.6881 9.85281C15.696 9.86444 15.7042 9.87594 15.7125 9.88731C15.7207 9.89869 15.7292 9.90993 15.7378 9.92105C15.7464 9.93215 15.7552 9.94312 15.7642 9.95396C15.7731 9.96479 15.7823 9.97548 15.7915 9.98603C15.8008 9.99657 15.8102 10.007 15.8198 10.0172C15.8294 10.0275 15.8391 10.0376 15.849 10.0475C15.8589 10.0575 15.8689 10.0672 15.8791 10.0769C15.8893 10.0865 15.8996 10.0959 15.91 10.1053C15.9205 10.1146 15.9311 10.1237 15.9418 10.1327C15.9525 10.1417 15.9634 10.1504 15.9744 10.1591C15.9854 10.1677 15.9965 10.1762 16.0077 10.1844C16.019 10.1927 16.0303 10.2008 16.0418 10.2088L16.0418 13.9128C16.0418 14.3413 16.3795 14.6888 16.796 14.6888C17.2126 14.6888 17.5502 14.3413 17.5502 13.9128L17.5502 10.219C17.5618 10.211 17.5733 10.2029 17.5846 10.1946C17.596 10.1862 17.6072 10.1777 17.6184 10.169C17.6295 10.1603 17.6405 10.1515 17.6513 10.1424C17.6622 10.1334 17.6729 10.1242 17.6835 10.1148C17.694 10.1055 17.7045 10.0959 17.7148 10.0862C17.7251 10.0765 17.7352 10.0666 17.7452 10.0566C17.7552 10.0466 17.765 10.0364 17.7747 10.0261C17.7844 10.0158 17.794 10.0053 17.8033 9.99464C17.8127 9.98401 17.8219 9.97323 17.831 9.9623C17.8401 9.95138 17.8489 9.94032 17.8577 9.92912C17.8664 9.91791 17.875 9.90658 17.8834 9.8951C17.8917 9.88362 17.9 9.87203 17.908 9.8603C17.916 9.84856 17.9239 9.8367 17.9316 9.82473C17.9393 9.81274 17.9468 9.80065 17.9541 9.78843C17.9615 9.77623 17.9686 9.7639 17.9755 9.75144C17.9825 9.739 17.9893 9.72646 17.9959 9.71379C18.0024 9.70115 18.0088 9.68839 18.015 9.67554C18.0212 9.66268 18.0272 9.64973 18.0331 9.63668C18.0389 9.62363 18.0445 9.6105 18.0499 9.59727C18.0553 9.58405 18.0606 9.57075 18.0656 9.55736C18.0706 9.54397 18.0754 9.53052 18.0801 9.51696C18.0847 9.50342 18.0891 9.48982 18.0933 9.47615C18.0975 9.46246 18.1015 9.44873 18.1053 9.43492C18.1091 9.42111 18.1127 9.40725 18.1162 9.39333C18.1195 9.37941 18.1227 9.36545 18.1257 9.35142C18.1287 9.33739 18.1314 9.32334 18.134 9.30923C18.1365 9.29512 18.1389 9.28099 18.141 9.26679C18.1431 9.25262 18.1451 9.23842 18.1468 9.22418C18.1485 9.20994 18.15 9.19566 18.1512 9.18138C18.1525 9.1671 18.1536 9.1528 18.1544 9.13847C18.1553 9.12415 18.1559 9.10981 18.1564 9.09548C18.1568 9.08114 18.157 9.06679 18.157 9.05245C18.157 8.58359 17.9293 8.14586 17.5502 7.88587L17.5503 7.88608Z' fill='%237E84A3' %3E%3C/path%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:table{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' fill='currentColor' class='icon' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cpath d='M0 64v896h1024V64H0zm384 576V448h256v192H384zm256 64v192H384V704h256zm0-512v192H384V192h256zm-320 0v192H64V192h256zM64 448h256v192H64V448zm640 0h256v192H704V448zm0-64V192h256v192H704zM64 704h256v192H64V704zm640 192V704h256v192H704z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:todo{background:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' t='1719844784164' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='269353' width='200' height='200'%3E%3Cpath d='M920.78 322.56L700.878 102.656c-36.199-36.198-94.925-36.198-131.123 0s-36.199 94.925 0 131.123l23.5 23.501-86.272 86.323c-123.033-75.11-285.798-59.494-392.192 46.9l-37.376 37.375L293.94 644.403l-89.088 89.088c-23.5 23.501-23.5 61.645 0 85.146s61.645 23.5 85.146 0l89.088-89.088L595.61 946.074l37.376-37.376c106.393-106.394 122.01-269.21 46.899-392.192l86.323-86.324 23.5 23.501c36.2 36.199 94.926 36.199 131.124 0s36.198-94.925-0.051-131.123z m-454.758 132.3a41.206 41.206 0 0 1-34.304 18.28 41.057 41.057 0 0 1-22.988-7.015c-55.91-37.581-122.266-8.09-122.932-7.783-20.633 9.728-45.21 0.87-54.886-19.763a41.196 41.196 0 0 1 19.763-54.886c4.403-2.048 108.851-50.023 204.083 13.926 18.893 12.698 23.962 38.349 11.264 57.242z' fill='%23FF5C64' p-id='269354'%3E%3C/path%3E%3Cpath d='M569.754 102.656c-36.199 36.198-36.199 94.925 0 131.123l23.5 23.501-86.272 86.323c-123.033-75.11-285.798-59.494-392.192 46.9l-37.376 37.375L293.94 644.403l-89.088 89.088c-23.5 23.501-23.5 61.645 0 85.146s61.645 23.5 85.146 0l89.088-89.088 105.83 105.83c99.226-42.445 182.119-115.558 236.851-207.462a319.145 319.145 0 0 0-41.881-111.411l86.323-86.324 20.173 20.173c4.3-26.624 6.656-53.862 6.656-81.664 0-82.073-19.61-159.539-54.221-228.147l-37.888-37.888c-36.25-36.198-94.976-36.198-131.174 0zM466.022 454.861a41.206 41.206 0 0 1-34.304 18.278 41.057 41.057 0 0 1-22.988-7.014c-55.91-37.581-122.266-8.09-122.932-7.783-20.633 9.728-45.21 0.87-54.886-19.763a41.196 41.196 0 0 1 19.763-54.886c4.403-2.048 108.851-50.023 204.083 13.926 18.893 12.698 23.962 38.349 11.264 57.242z' fill='%23FF5C64' p-id='269355'%3E%3C/path%3E%3Cpath d='M253.85 684.442c228.812-49.152 400.332-252.468 400.332-495.924 0-38.758-4.505-76.441-12.697-112.69-25.754-1.69-52.07 7.167-71.731 26.88-36.199 36.198-36.199 94.924 0 131.122l23.5 23.501-86.272 86.272c-123.033-75.11-285.798-59.494-392.192 46.9l-37.376 37.375L293.94 644.403l-40.09 40.039z m32-226.15c-20.634 9.727-45.21 0.87-54.887-19.764a41.196 41.196 0 0 1 19.763-54.886c4.404-2.048 108.852-50.023 204.084 13.926 18.892 12.698 23.961 38.349 11.264 57.242a41.206 41.206 0 0 1-34.304 18.278 41.057 41.057 0 0 1-22.99-7.014c-55.96-37.53-122.316-8.09-122.93-7.783z' fill='%23FF5C64' p-id='269356'%3E%3C/path%3E%3Cpath d='M230.912 438.58a41.196 41.196 0 0 1 19.763-54.887c3.226-1.536 60.058-27.546 127.642-16.333 18.022-18.074 34.662-37.53 49.817-58.112-107.827-30.618-228.505-3.584-313.395 81.306L77.363 427.93l71.629 71.628a502.748 502.748 0 0 0 103.885-40.243 41.861 41.861 0 0 1-21.965-20.736z' fill='%23FF5C64' p-id='269357'%3E%3C/path%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;width:1em;height:1em;}.i-svg\:tree{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' fill='currentColor' class='icon' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cpath d='M977.455 558.545h-34.91V453.818c0-44.218-37.236-81.454-81.454-81.454H546.909v-93.091h197.818c25.6 0 46.546-20.946 46.546-46.546V93.091c0-25.6-20.946-46.546-46.546-46.546H279.273c-25.6 0-46.546 20.946-46.546 46.546v139.636c0 25.6 20.946 46.546 46.546 46.546H477.09v93.09H162.909c-44.218 0-81.454 37.237-81.454 81.455v104.727h-34.91C20.945 558.545 0 579.491 0 605.091v325.818c0 25.6 20.945 46.546 46.545 46.546h139.637c25.6 0 46.545-20.946 46.545-46.546V605.091c0-25.6-20.945-46.546-46.545-46.546h-34.91V453.818c0-6.982 4.655-11.636 11.637-11.636h314.182v116.363h-34.91c-25.6 0-46.545 20.946-46.545 46.546v325.818c0 25.6 20.946 46.546 46.546 46.546h139.636c25.6 0 46.546-20.946 46.546-46.546V605.091c0-25.6-20.946-46.546-46.546-46.546H546.91V442.182h314.182c6.982 0 11.636 4.654 11.636 11.636v104.727h-34.909c-25.6 0-46.545 20.946-46.545 46.546v325.818c0 25.6 20.945 46.546 46.545 46.546h139.637c25.6 0 46.545-20.946 46.545-46.546V605.091c0-25.6-20.945-46.546-46.545-46.546zm-814.546 69.819v279.272H69.82V628.364h93.09zm395.636 0v279.272h-93.09V628.364h93.09zm-256-418.91v-93.09h418.91v93.09h-418.91zm651.637 698.182H861.09V628.364h93.09v279.272z'/%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:typescript{background:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' t='1721541160105' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='13856' width='200' height='200'%3E%3Cpath d='M762.464 263.776a141.568 141.568 0 0 1 71.136 40.992 187.296 187.296 0 0 1 27.264 36.576c0.352 1.44-49.088 34.656-79.072 53.184-1.088 0.736-5.408-3.968-10.304-11.2a64.448 64.448 0 0 0-53.44-32c-34.464-2.368-56.672 15.68-56.512 45.856a41.6 41.6 0 0 0 4.896 21.312c7.584 15.68 21.664 25.088 65.888 44.256 81.408 35.04 116.352 58.144 137.92 90.976a165.056 165.056 0 0 1 13.312 138.656 152.448 152.448 0 0 1-125.824 90.08 348.8 348.8 0 0 1-86.656-0.896 208.992 208.992 0 0 1-115.712-60.288 200.896 200.896 0 0 1-29.632-43.872 84.96 84.96 0 0 1 10.464-6.656c5.056-2.88 24.192-13.888 42.24-24.352l32.768-19.2 6.848 9.984a152.672 152.672 0 0 0 43.2 41.344 105.6 105.6 0 0 0 110.656-5.6 49.44 49.44 0 0 0 6.4-63.168c-8.832-12.64-26.88-23.264-78.176-45.504a281.6 281.6 0 0 1-107.168-65.76 149.984 149.984 0 0 1-31.232-56.864 227.712 227.712 0 0 1-1.984-72.576 138.624 138.624 0 0 1 116.608-107.968 288 288 0 0 1 86.112 2.688z m-266.976 47.456l0.352 46.528h-148.16v420.736H243.2V357.856H95.04V312.16a447.552 447.552 0 0 1 1.28-46.912c0.544-0.736 90.624-1.088 199.84-0.896l198.752 0.544z' fill='%23007ACC' p-id='13857'%3E%3C/path%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;width:1em;height:1em;}.i-svg\:up{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' width='15' height='15' aria-label='向上键' role='img'%3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.2'%3E%3Cpath d='M7.5 11.5v-8M10.5 6.5l-3-3-3 3'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:user{background:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' t='1719843414729' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='175406' width='200' height='200'%3E%3Cpath d='M512 1024C229.236364 1024 0 794.763636 0 512S229.236364 0 512 0s512 229.236364 512 512-229.236364 512-512 512z m56.599273-542.72a153.134545 153.134545 0 0 0 97.652363-142.149818C666.251636 254.789818 597.038545 186.181818 512 186.181818S357.794909 254.789818 357.794909 339.130182a153.134545 153.134545 0 0 0 97.605818 142.149818C328.471273 507.345455 232.727273 619.054545 232.727273 752.500364c0 32.488727 22.993455 43.240727 41.425454 51.851636l1.070546 0.465455c74.333091 26.065455 181.992727 33.000727 233.797818 33.000727 56.552727 0 167.191273-9.122909 240.686545-34.304 27.601455-10.472727 41.565091-27.648 41.565091-51.013818 0-133.492364-95.744-245.201455-222.673454-271.220364z' fill='%2317E3C7' p-id='175407'%3E%3C/path%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;width:1em;height:1em;}.i-svg\:User1{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='24' height='24' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M7 7C7 9.76142 9.23858 12 12 12C14.7614 12 17 9.76142 17 7C17 4.23858 14.7614 2 12 2C9.23858 2 7 4.23858 7 7ZM9 7C9 8.65685 10.3431 10 12 10C13.6569 10 15 8.65685 15 7C15 5.34315 13.6569 4 12 4C10.3431 4 9 5.34315 9 7ZM21 20L21 18.78C20.8864 16.1192 18.6887 14 16 14L7.78 14C5.1192 14.1136 3 16.3113 3 19L3 20L3.01 20.15C3.08635 21.1849 3.94564 22 5 22L19 22L19.15 21.99C20.1849 21.9137 21 21.0544 21 20ZM8 16C6.40232 16 5.10125 17.2452 5.01 18.82L5 19L5 20L19 20L19 19C19 17.4023 17.7548 16.1012 16.18 16.01L16 16L8 16Z' fill-rule='evenodd' fill='%237E84A3' %3E%3C/path%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:visitor{background:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' t='1733620604471' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='1596' width='128' height='128'%3E%3Cpath d='M604.766 304.391c55.072 0 101.33 31.359 125.567 76.137v-94.054c0-51.505-41.856-91.812-92.513-91.812H250.118c-50.659 0-92.518 40.307-92.518 91.812v423.255c0 49.268 41.859 89.574 92.518 89.574h171.824c-30.848-11.195-48.466-33.586-50.672-71.662-4.402-85.105 48.465-161.231 90.321-197.066 6.608-6.728 11.01-11.194 17.616-15.685-8.813-20.149-15.421-42.548-15.421-67.176 0-78.385 61.679-143.323 140.98-143.323z' fill='%23C4F7F0' p-id='1597'%3E%3C/path%3E%3Cpath d='M804.423 349.242c0-51.507-41.855-91.814-92.515-91.814H324.204c-50.658 0-92.514 40.308-92.514 91.814v423.254c0 49.268 41.855 89.576 92.514 89.576h171.828c-30.846-11.197-48.466-33.587-50.67-71.668-4.404-85.101 48.462-161.239 90.319-197.063 6.608-6.727 11.009-11.196 17.617-15.682-8.813-20.152-15.422-42.549-15.422-67.182 0-78.384 61.68-143.318 140.977-143.318 55.071 0 101.336 31.356 125.57 76.133v-94.05zM394.702 638.123h-66.081c-6.612 0-11.024-4.474-11.024-11.187 0-6.729 4.413-11.2 11.024-11.2h66.081c6.608 0 11.008 4.471 11.008 11.2 0 6.713-4.4 11.187-11.008 11.187z m66.081-89.572H328.62c-4.417 0-11.025-4.477-11.025-11.199 0-6.707 4.413-11.189 11.025-11.189h132.163c6.609 0 11.01 4.482 11.01 11.189 0.001 6.72-4.401 11.199-11.01 11.199z m0-89.577H328.62c-4.417 0-11.025-4.481-11.025-11.2s6.608-11.198 11.025-11.198h132.163c6.609 0 11.01 4.481 11.01 11.198 0.001 6.719-4.401 11.2-11.01 11.2z' fill='%2300DFC1' p-id='1598'%3E%3C/path%3E%3Cpath d='M566.516 620.21c-33.043 26.875-72.692 85.096-70.484 152.288 2.193 67.177 72.686 67.177 176.216 67.177 103.535 0 174.03 0 176.228-67.177 2.205-67.192-39.651-123.183-70.485-152.288-24.239-22.396-44.066-26.868-50.672-26.868 28.64-15.683 46.256-47.039 46.256-82.861 0-53.743-41.841-96.294-94.722-96.294-52.863 0-94.707 42.551-92.511 96.294 0 35.822 17.628 64.951 46.253 82.861H621.59c-0.002 0-22.034 0-55.074 26.868z' fill='%2300DFC1' p-id='1599'%3E%3C/path%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;width:1em;height:1em;}.i-svg\:vue{background:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' t='1721541029594' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='3336' width='200' height='200'%3E%3Cpath d='M615.6 123.6h165.5L512 589.7 242.9 123.6H63.5L512 900.4l448.5-776.9z' fill='%2341B883' p-id='3337'%3E%3C/path%3E%3Cpath d='M781.1 123.6H615.6L512 303 408.4 123.6H242.9L512 589.7z' fill='%2334495E' p-id='3338'%3E%3C/path%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;width:1em;height:1em;}.i-svg\:wechat{--un-icon:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' width='1em' height='1em' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M18.5753 13.7114C19.0742 13.7114 19.4733 13.2873 19.4733 12.8134C19.4733 12.3145 19.0742 11.9155 18.5753 11.9155C18.0765 11.9155 17.6774 12.3145 17.6774 12.8134C17.6774 13.3123 18.0765 13.7114 18.5753 13.7114ZM14.1497 13.7114C14.6485 13.7114 15.0476 13.2873 15.0476 12.8134C15.0476 12.3145 14.6485 11.9155 14.1497 11.9155C13.6508 11.9155 13.2517 12.3145 13.2517 12.8134C13.2517 13.3123 13.6508 13.7114 14.1497 13.7114ZM20.717 18.7516C20.5942 18.8253 20.5205 18.9482 20.5451 19.1202C20.5451 19.1693 20.5451 19.2185 20.5696 19.2676C20.6679 19.6854 20.8643 20.349 20.8643 20.3736C20.8643 20.4473 20.8889 20.4964 20.8889 20.5456C20.8889 20.6685 20.7907 20.7668 20.6679 20.7668C20.6187 20.7668 20.5942 20.7422 20.5451 20.7176L19.0961 19.882C18.9978 19.8329 18.875 19.7837 18.7522 19.7837C18.6786 19.7837 18.6049 19.7837 18.5558 19.8083C17.8681 20.0049 17.1559 20.1032 16.3946 20.1032C12.7352 20.1032 9.78815 17.6456 9.78815 14.5983C9.78815 11.5509 12.7352 9.09329 16.3946 9.09329C20.0539 9.09329 23.001 11.5509 23.001 14.5983C23.001 16.2448 22.1168 17.7439 20.717 18.7516ZM16.6737 8.09757C16.581 8.09473 16.488 8.09329 16.3946 8.09329C12.2199 8.09329 8.78815 10.9536 8.78815 14.5983C8.78815 15.1519 8.86733 15.6874 9.01626 16.1975H8.92711C8.04096 16.1975 7.15481 16.0503 6.3425 15.8296C6.26866 15.805 6.19481 15.805 6.12097 15.805C5.97327 15.805 5.82558 15.8541 5.7025 15.9277L3.95482 16.9334C3.90559 16.958 3.85635 16.9825 3.80712 16.9825C3.65943 16.9825 3.53636 16.8599 3.53636 16.7127C3.53636 16.6391 3.56097 16.59 3.58559 16.5164C3.6102 16.4919 3.83174 15.6824 3.95482 15.1918C3.95482 15.1427 3.97943 15.0691 3.97943 15.0201C3.97943 14.8238 3.88097 14.6766 3.75789 14.5785C2.05944 13.3765 1.00098 11.5858 1.00098 9.59876C1.00098 5.94369 4.5702 3 8.95173 3C12.7157 3 15.8802 5.16856 16.6737 8.09757ZM11.5199 8.51604C12.0927 8.51604 12.5462 8.03871 12.5462 7.4898C12.5462 6.91701 12.0927 6.46356 11.5199 6.46356C10.9471 6.46356 10.4937 6.91701 10.4937 7.4898C10.4937 8.06258 10.9471 8.51604 11.5199 8.51604ZM6.26045 8.51604C6.83324 8.51604 7.28669 8.03871 7.28669 7.4898C7.28669 6.91701 6.83324 6.46356 6.26045 6.46356C5.68767 6.46356 5.23421 6.91701 5.23421 7.4898C5.23421 8.06258 5.68767 8.51604 6.26045 8.51604Z'%3E%3C/path%3E%3C/svg%3E");-webkit-mask:var(--un-icon) no-repeat;mask:var(--un-icon) no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:inherit;display:inline-block;width:1em;height:1em;}.i-svg\:xml{background:url("data:image/svg+xml;utf8,%3Csvg display='inline-block' t='1721557951693' class='icon' viewBox='0 0 1024 1024' version='1.1' xmlns='http://www.w3.org/2000/svg' p-id='19605' width='200' height='200'%3E%3Cpath d='M692.497067 546.133333h52.087466l40.482134-260.642133V273.066667h-63.624534L605.730133 471.722667 542.037333 279.210667V273.066667h-63.6928L443.733333 546.133333h52.087467l23.1424-161.3824L570.9824 546.133333h46.2848l98.372267-155.170133-23.1424 148.957867z' fill='%23FF7D19' p-id='19606'%3E%3C/path%3E%3Cpath d='M845.2096 572.074667c-12.0832 0-18.090667 0-24.1664 11.400533-6.007467 5.7344-12.0832 17.2032-12.0832 22.9376v85.8112H597.674667c-54.340267 0-96.597333 40.004267-96.597334 91.477333v165.888H150.869333c-18.0224 0-36.181333-5.666133-48.264533-17.066666-12.014933-11.4688-24.098133-28.672-24.098133-45.806934V137.216c0-40.004267 36.181333-68.608 72.362666-68.608h585.728c42.1888 0 72.362667 28.603733 72.362667 68.608v51.473067c0 17.2032 18.158933 34.338133 36.2496 34.338133s36.181333-11.400533 42.257067-34.338133v-51.473067C887.466667 62.8736 821.0432 0 742.6048 0H144.861867C66.3552 0 0 57.207467 0 137.284267V886.784C0 961.1264 66.423467 1024 144.861867 1024H615.765333c12.0832 0 18.158933-5.7344 24.1664-11.4688l229.376-211.626667c6.144-5.7344 12.151467-17.2032 12.151467-22.869333v-165.888c0-22.9376-18.158933-40.072533-36.2496-40.072533z m-42.325333 183.022933l-205.2096 188.8256h-24.1664v-165.888c0-5.7344 0-11.4688 6.075733-17.2032 6.007467-5.7344 12.0832-5.7344 18.090667-5.7344h205.277866z' fill='%23FF7D19' p-id='19607'%3E%3C/path%3E%3Cpath d='M372.804267 273.066667L303.650133 366.1824 251.767467 273.066667H182.613333l80.6912 136.533333L136.533333 546.133333h74.888534L292.181333 453.0176 344.064 546.133333h69.154133L332.458667 409.6l115.234133-136.533333H372.804267z m501.3504 229.649066l28.808533-217.224533V273.066667h-51.882667l-40.277333 266.922666V546.133333h207.4624L1024 502.715733h-149.845333z' fill='%23FF7D19' p-id='19608'%3E%3C/path%3E%3C/svg%3E") no-repeat;background-size:100% 100%;background-color:transparent;display:inline-block;width:1em;height:1em;}.wh-full{width:100%;height:100%;}.flex-center{display:flex;align-items:center;justify-content:center;}.flex-x-between{display:flex;align-items:center;justify-content:space-between;}.flex-x-end{display:flex;align-items:center;justify-content:flex-end;}.flex-y-center,[flex-y-center=""]{display:flex;align-items:center;}.visible{visibility:visible;}.absolute{position:absolute;}.fixed{position:fixed;}.relative{position:relative;}.sticky{position:sticky;}.grid{display:grid;}.col-\[auto\/-1\]{grid-column:auto/-1;}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr));}.mx-1{margin-left:0.25rem;margin-right:0.25rem;}.mx-auto{margin-left:auto;margin-right:auto;}.\!ml-2{margin-left:0.5rem !important;}.mb-10,.mb10{margin-bottom:2.5rem;}.mb-16px,.mb16px{margin-bottom:16px;}.mb-2\.5{margin-bottom:0.625rem;}.mb-24px{margin-bottom:24px;}.mb-4{margin-bottom:1rem;}.mb-5{margin-bottom:1.25rem;}.mb-7{margin-bottom:1.75rem;}.mb10px{margin-bottom:10px;}.mb1px{margin-bottom:1px;}.mb20px{margin-bottom:20px;}.mb6{margin-bottom:1.5rem;}.ml-0\.5{margin-left:0.125rem;}.ml-1{margin-left:0.25rem;}.ml-2{margin-left:0.5rem;}.ml-3{margin-left:0.75rem;}.ml-5{margin-left:1.25rem;}.ml0{margin-left:0;}.ml20px{margin-left:20px;}.mr20px{margin-right:20px;}.mr2px{margin-right:2px;}.mt-4{margin-top:1rem;}.mt-5{margin-top:1.25rem;}.mt10{margin-top:2.5rem;}.mt12px{margin-top:12px;}.mt16px{margin-top:16px;}.mt18px{margin-top:18px;}.mt40px{margin-top:40px;}.mt60px{margin-top:60px;}.inline{display:inline;}.block{display:block;}.inline-block{display:inline-block;}.contents{display:contents;}.hidden{display:none;}[size~="\31 4"]{width:3.5rem;height:3.5rem;}[size~="\33 80"]{width:95rem;height:95rem;}[size~="\34 2"]{width:10.5rem;height:10.5rem;}[size~="\35 0\%"]{width:50%;height:50%;}[size~="\38 0\%"]{width:80%;height:80%;}.\!h28px{height:28px !important;}.\!w250px{width:250px !important;}.h-150px{height:150px;}.h-26px,[h-26px=""]{height:26px;}.h-4,.h4{height:1rem;}.h-41px{height:41px;}.h-6,.h6{height:1.5rem;}.h-8\!{height:2rem !important;}.h-9{height:2.25rem;}.h-full,[h-full=""]{height:100%;}.h1{height:0.25rem;}.h16px{height:16px;}.h2{height:0.5rem;}.h28px{height:28px;}.h3{height:0.75rem;}.h48px{height:48px;}.max-h-60vh{max-height:60vh;}.min-h-470px{min-height:470px;}.min-h-60vh{min-height:60vh;}.w-200px{width:200px;}.w-28{width:7rem;}.w-32vw{width:32vw;}.w-350px{width:350px;}.w-4{width:1rem;}.w-500px,.w500px{width:500px;}.w-6{width:1.5rem;}.w-75{width:18.75rem;}.w-90\%{width:90%;}.w-full{width:100%;}.w154px{width:154px;}.w16px{width:16px;}.w28px{width:28px;}.flex{display:flex;}.inline-flex{display:inline-flex;}.\!flex-1{flex:1 1 0% !important;}.flex-1{flex:1 1 0%;}.flex-shrink{flex-shrink:1;}.flex-shrink-0{flex-shrink:0;}.flex-col{flex-direction:column;}.flex-wrap{flex-wrap:wrap;}.table-column{display:table-column;}.transform{transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.cursor-pointer,[cursor-pointer=""]{cursor:pointer;}.resize,[resize=""]{resize:both;}.items-start{align-items:flex-start;}.flex-justify-between,.justify-between{justify-content:space-between;}.justify-self-end{justify-self:end;}[justify-self-end~="default\:"]:default{justify-self:end;}.gap-1\.5{gap:0.375rem;}.gap-2{gap:0.5rem;}.gap-5{gap:1.25rem;}.gap-8px,[gap-8px=""]{gap:8px;}.gap-x-2{column-gap:0.5rem;}.gap-x-8{column-gap:2rem;}.gap-y-2\.5{row-gap:0.625rem;}.gap-y-4{row-gap:1rem;}.flex-items-center{align-items:center;}.overflow-y-auto{overflow-y:auto;}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.break-all{word-break:break-all;}.border,[border=""]{border-width:1px;}.border-t{border-top-width:1px;}.border-solid{border-style:solid;}.bg-amber{--un-bg-opacity:1;background-color:rgb(251 191 36 / var(--un-bg-opacity)) /* #fbbf24 */;}[stroke-width~="\32 0"]{stroke-width:20px;}.p-10{padding:2.5rem;}.p-5{padding:1.25rem;}.p-x-20px{padding-left:20px;padding-right:20px;}.px{padding-left:1rem;padding-right:1rem;}.py-3{padding-top:0.75rem;padding-bottom:0.75rem;}[px~="\31 00"]{padding-left:25rem;padding-right:25rem;}[px~="default\:"]:default{padding-left:1rem;padding-right:1rem;}.\!pl20px{padding-left:20px !important;}.\!pr20px{padding-right:20px !important;}.p-l-0,.pl0{padding-left:0;}.p-r-0,.pr0{padding-right:0;}.pb-0{padding-bottom:0;}.pra{padding-right:auto;}.pt-16px{padding-top:16px;}.pt-40px{padding-top:40px;}.pie{padding-inline-end:1rem;}.text-\[0\.8125rem\]{font-size:0.8125rem;}.text-\[2rem\]{font-size:2rem;}.font-size-13px,.text-13px{font-size:13px;}.text-6xl{font-size:3.75rem;line-height:1;}.text-sm{font-size:0.875rem;line-height:1.25rem;}.text-xl{font-size:1.25rem;line-height:1.75rem;}.text-xs{font-size:0.75rem;line-height:1rem;}.font-size-15px{font-size:15px;}.text-\[\#222\]{--un-text-opacity:1;color:rgb(34 34 34 / var(--un-text-opacity)) /* #222 */;}.text-\[\#484848\]{--un-text-opacity:1;color:rgb(72 72 72 / var(--un-text-opacity)) /* #484848 */;}.text-gray{--un-text-opacity:1;color:rgb(156 163 175 / var(--un-text-opacity)) /* #9ca3af */;}.c-\#373C52{--un-text-opacity:1;color:rgb(55 60 82 / var(--un-text-opacity)) /* #373C52 */;}.color-\[--el-color-primary\]{color:var(--el-color-primary) /* var(--el-color-primary) */;}.color-\#888{--un-text-opacity:1;color:rgb(136 136 136 / var(--un-text-opacity)) /* #888 */;}[color~="\#FF5733"]{--un-text-opacity:1;color:rgb(255 87 51 / var(--un-text-opacity)) /* #FF5733 */;}[color~="\#FF8D1A"]{--un-text-opacity:1;color:rgb(255 141 26 / var(--un-text-opacity)) /* #FF8D1A */;}.font-bold{font-weight:700;}.underline{text-decoration-line:underline;}.tab,[tab=""]{-moz-tab-size:4;-o-tab-size:4;tab-size:4;}.active-tab:active{-moz-tab-size:4;-o-tab-size:4;tab-size:4;}.shadow{--un-shadow:var(--un-shadow-inset) 0 1px 3px 0 var(--un-shadow-color, rgb(0 0 0 / 0.1)),var(--un-shadow-inset) 0 1px 2px -1px var(--un-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.blur{--un-blur:blur(8px);filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}[blur~="\$event\)\,"]{--un-blur:blur(var(--event\)));filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}[blur~="\31 "]{--un-blur:blur(1px);filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}[blur~="\31 00\%"]{--un-blur:blur(100%);filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}[blur~="\31 00px"]{--un-blur:blur(100px);filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}[blur~="\31 0px"]{--un-blur:blur(10px);filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}[blur~="\31 2"]{--un-blur:blur(12px);filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}[blur~="\32 "]{--un-blur:blur(2px);filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}[blur~="\33 0"]{--un-blur:blur(30px);filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}[blur~="default\:"]:default{--un-blur:blur(8px);filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}[blur~="required\:"]:required{--un-blur:blur(8px);filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}[blur~="placeholder\:"]::placeholder{--un-blur:blur(8px);filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}.filter{filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}.backdrop-filter{-webkit-backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia);backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia);}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.ease,.ease-in-out{transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);}.ease-in{transition-timing-function:cubic-bezier(0.4, 0, 1, 1);}.ease-out{transition-timing-function:cubic-bezier(0, 0, 0.2, 1);}@media (min-width: 640px){.sm\:p-10{padding:2.5rem;}}@media (min-width: 768px){.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr));}.md\:flex{display:flex;}.md\:flex-row{flex-direction:row;}.md\:gap-x-3{column-gap:0.75rem;}.md\:overflow-auto{overflow:auto;}}@media (min-width: 1024px){.lg\:p-20{padding:5rem;}}@media (min-width: 1280px){.xl\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr));}}@media (min-width: 1536px){.\32 xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr));}}@media (min-width: 1920px){.\33 xl\:grid-cols-5{grid-template-columns:repeat(5,minmax(0,1fr));}}@media (min-width: 2560px){.\34 xl\:grid-cols-6{grid-template-columns:repeat(6,minmax(0,1fr));}}/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}
@-webkit-keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
