@beweco/aurora-ui 1.0.0-beta.134 → 1.0.0-beta.135
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +130 -29
- package/dist/index.esm.js +130 -30
- package/dist/types/components/area-line-chart/AreaLineChart.d.ts +1 -1
- package/dist/types/components/area-line-chart/AreaLineChart.d.ts.map +1 -1
- package/dist/types/components/area-line-chart/AreaLineChart.types.d.ts +12 -0
- package/dist/types/components/area-line-chart/AreaLineChart.types.d.ts.map +1 -1
- package/dist/types/components/currency/Currency.d.ts.map +1 -1
- package/dist/types/components/currency/currency.constants.d.ts.map +1 -1
- package/dist/types/components/donut-chart/DonutChart.d.ts.map +1 -1
- package/dist/types/components/donut-chart/DonutChart.types.d.ts +2 -0
- package/dist/types/components/donut-chart/DonutChart.types.d.ts.map +1 -1
- package/dist/types/components/donut-chart/donut-chart.utils.d.ts +7 -0
- package/dist/types/components/donut-chart/donut-chart.utils.d.ts.map +1 -1
- package/dist/types/components/donut-chart/index.d.ts +1 -1
- package/dist/types/components/donut-chart/index.d.ts.map +1 -1
- package/dist/types/components/drawer-filters/DrawerFilters.types.d.ts +4 -1
- package/dist/types/components/drawer-filters/DrawerFilters.types.d.ts.map +1 -1
- package/dist/types/components/drawer-filters/_internal/FilterSection.d.ts.map +1 -1
- package/dist/types/components/drawer-filters/_internal/multiselect-search.d.ts +16 -0
- package/dist/types/components/drawer-filters/_internal/multiselect-search.d.ts.map +1 -0
- package/dist/types/components/phone/Phone.d.ts.map +1 -1
- package/dist/types/components/phone/flags/Canada.d.ts +2 -0
- package/dist/types/components/phone/flags/Canada.d.ts.map +1 -0
- package/dist/types/components/phone/flags/FlagIcon.d.ts.map +1 -1
- package/dist/types/components/phone/flags/index.d.ts +1 -0
- package/dist/types/components/phone/flags/index.d.ts.map +1 -1
- package/dist/types/components/phone/phone.constants.d.ts.map +1 -1
- package/dist/types/utils/dismiss-control.d.ts +23 -1
- package/dist/types/utils/dismiss-control.d.ts.map +1 -1
- package/dist/types/utils/text-search.d.ts +18 -0
- package/dist/types/utils/text-search.d.ts.map +1 -0
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -2022,9 +2022,9 @@ function ChartTooltip({ active, payload, label, series, formatValue, }) {
|
|
|
2022
2022
|
return (jsxRuntime.jsxs(P, { className: "font-semibold", style: { color: entry.color }, children: [labelText, ": ", format(Number(entry.value), entry.dataKey)] }, index));
|
|
2023
2023
|
})] }));
|
|
2024
2024
|
}
|
|
2025
|
-
function AreaLineChart({ data, xAxisKey, series, title, value, trend, height = 200, className = "", wrappedInCard = false, animated = true, formatTooltipValue, yAxisDomain = [0, "dataMax + 100"], }) {
|
|
2025
|
+
function AreaLineChart({ data, xAxisKey, series, title, value, trend, height = 200, className = "", wrappedInCard = false, animated = true, formatTooltipValue, yAxisDomain = [0, "dataMax + 100"], xAxisInterval = "preserveStartEnd", }) {
|
|
2026
2026
|
const hasHeader = title != null || value != null || trend != null || series.length > 0;
|
|
2027
|
-
const content = (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [hasHeader && (jsxRuntime.jsxs("div", { className: "flex items-start justify-between mb-6", children: [jsxRuntime.jsxs("div", { children: [title != null && (jsxRuntime.jsx(H3, { className: "text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1", children: title })), value != null && (jsxRuntime.jsxs("div", { className: "flex items-baseline gap-2", children: [jsxRuntime.jsx("span", { className: "text-2xl font-bold text-gray-900", children: value }), trend != null && (jsxRuntime.jsx("span", { className: "text-xs font-medium text-yellow-600 bg-yellow-50 px-2 py-1 rounded", children: trend }))] }))] }), series.length > 0 && (jsxRuntime.jsx("div", { className: "flex flex-wrap items-center gap-4", children: series.map((s) => (jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [jsxRuntime.jsx("svg", { width: "16", height: "2", viewBox: "0 0 16 2", fill: "none", children: jsxRuntime.jsx("line", { x1: "0", y1: "1", x2: "16", y2: "1", stroke: s.color, strokeWidth: "2" }) }), jsxRuntime.jsx("span", { className: "text-xs text-gray-600 font-medium", children: s.label })] }, s.dataKey))) }))] })), jsxRuntime.jsx("div", { className: "w-full", style: { height: `${height}px` }, children: jsxRuntime.jsx(recharts.ResponsiveContainer, { width: "100%", height: "100%", children: jsxRuntime.jsxs(recharts.LineChart, { data: data, margin: { top: 5, right: 5, left: 5, bottom: 5 }, children: [jsxRuntime.jsx("defs", { children: series.map((s) => (jsxRuntime.jsxs("linearGradient", { id: `area-line-chart-${s.dataKey}`, x1: "0", y1: "0", x2: "0", y2: "1", children: [jsxRuntime.jsx("stop", { offset: "0%", stopColor: s.color, stopOpacity: 0.3 }), jsxRuntime.jsx("stop", { offset: "50%", stopColor: s.color, stopOpacity: 0.15 }), jsxRuntime.jsx("stop", { offset: "100%", stopColor: s.color, stopOpacity: 0 })] }, s.dataKey))) }), jsxRuntime.jsx(recharts.XAxis, { dataKey: xAxisKey, axisLine: false, tickLine: false, tick: { fill: "#9ca3af", fontSize: 12 }, dy: 10 }), jsxRuntime.jsx(recharts.YAxis, { axisLine: false, tickLine: false, tick: { fill: "transparent", fontSize: 0 }, width: 0, tickCount: 6, domain: yAxisDomain, allowDecimals: false }), jsxRuntime.jsx(recharts.CartesianGrid, { strokeDasharray: "3 3", stroke: "#d1d5db", strokeOpacity: 0.5, vertical: false, horizontal: true }), jsxRuntime.jsx(recharts.Tooltip, { content: jsxRuntime.jsx(ChartTooltip, { series: series, formatValue: formatTooltipValue }) }), series.map((s) => (jsxRuntime.jsx(recharts.Area, { type: "natural", dataKey: s.dataKey, stroke: "none", fill: `url(#area-line-chart-${s.dataKey})`, isAnimationActive: animated, animationDuration: 1500, animationEasing: "ease-in-out" }, `area-${s.dataKey}`))), series.map((s) => (jsxRuntime.jsx(recharts.Line, { type: "natural", dataKey: s.dataKey, name: s.dataKey, stroke: s.color, strokeWidth: 3, dot: false, activeDot: {
|
|
2027
|
+
const content = (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [hasHeader && (jsxRuntime.jsxs("div", { className: "flex items-start justify-between mb-6", children: [jsxRuntime.jsxs("div", { children: [title != null && (jsxRuntime.jsx(H3, { className: "text-xs font-semibold text-gray-500 uppercase tracking-wide mb-1", children: title })), value != null && (jsxRuntime.jsxs("div", { className: "flex items-baseline gap-2", children: [jsxRuntime.jsx("span", { className: "text-2xl font-bold text-gray-900", children: value }), trend != null && (jsxRuntime.jsx("span", { className: "text-xs font-medium text-yellow-600 bg-yellow-50 px-2 py-1 rounded", children: trend }))] }))] }), series.length > 0 && (jsxRuntime.jsx("div", { className: "flex flex-wrap items-center gap-4", children: series.map((s) => (jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [jsxRuntime.jsx("svg", { width: "16", height: "2", viewBox: "0 0 16 2", fill: "none", children: jsxRuntime.jsx("line", { x1: "0", y1: "1", x2: "16", y2: "1", stroke: s.color, strokeWidth: "2" }) }), jsxRuntime.jsx("span", { className: "text-xs text-gray-600 font-medium", children: s.label })] }, s.dataKey))) }))] })), jsxRuntime.jsx("div", { className: "w-full", style: { height: `${height}px` }, children: jsxRuntime.jsx(recharts.ResponsiveContainer, { width: "100%", height: "100%", children: jsxRuntime.jsxs(recharts.LineChart, { data: data, margin: { top: 5, right: 5, left: 5, bottom: 5 }, children: [jsxRuntime.jsx("defs", { children: series.map((s) => (jsxRuntime.jsxs("linearGradient", { id: `area-line-chart-${s.dataKey}`, x1: "0", y1: "0", x2: "0", y2: "1", children: [jsxRuntime.jsx("stop", { offset: "0%", stopColor: s.color, stopOpacity: 0.3 }), jsxRuntime.jsx("stop", { offset: "50%", stopColor: s.color, stopOpacity: 0.15 }), jsxRuntime.jsx("stop", { offset: "100%", stopColor: s.color, stopOpacity: 0 })] }, s.dataKey))) }), jsxRuntime.jsx(recharts.XAxis, { dataKey: xAxisKey, axisLine: false, tickLine: false, tick: { fill: "#9ca3af", fontSize: 12 }, dy: 10, interval: xAxisInterval }), jsxRuntime.jsx(recharts.YAxis, { axisLine: false, tickLine: false, tick: { fill: "transparent", fontSize: 0 }, width: 0, tickCount: 6, domain: yAxisDomain, allowDecimals: false }), jsxRuntime.jsx(recharts.CartesianGrid, { strokeDasharray: "3 3", stroke: "#d1d5db", strokeOpacity: 0.5, vertical: false, horizontal: true }), jsxRuntime.jsx(recharts.Tooltip, { content: jsxRuntime.jsx(ChartTooltip, { series: series, formatValue: formatTooltipValue }) }), series.map((s) => (jsxRuntime.jsx(recharts.Area, { type: "natural", dataKey: s.dataKey, stroke: "none", fill: `url(#area-line-chart-${s.dataKey})`, isAnimationActive: animated, animationDuration: 1500, animationEasing: "ease-in-out" }, `area-${s.dataKey}`))), series.map((s) => (jsxRuntime.jsx(recharts.Line, { type: "natural", dataKey: s.dataKey, name: s.dataKey, stroke: s.color, strokeWidth: 3, dot: false, activeDot: {
|
|
2028
2028
|
r: 6,
|
|
2029
2029
|
fill: s.color,
|
|
2030
2030
|
stroke: "#fff",
|
|
@@ -3682,6 +3682,32 @@ const useCloseOnAncestorScroll = ({ isOpen, onClose, contentRef, }) => {
|
|
|
3682
3682
|
}, [isOpen, onClose, contentRef]);
|
|
3683
3683
|
};
|
|
3684
3684
|
|
|
3685
|
+
/**
|
|
3686
|
+
* Comparación de texto para los buscadores de los desplegables (país, moneda).
|
|
3687
|
+
*
|
|
3688
|
+
* El problema que resuelve: los nombres de la lista de países mezclan idiomas y
|
|
3689
|
+
* algunos llevan tilde ("Canadá", "República Dominicana"). Un `includes` crudo
|
|
3690
|
+
* exige que quien busca escriba la tilde, así que teclear "canada" no encontraba
|
|
3691
|
+
* Canadá y "republica" no encontraba República Dominicana — el desplegable
|
|
3692
|
+
* respondía "No se encontraron países" con el país delante.
|
|
3693
|
+
*/
|
|
3694
|
+
/** Minúsculas y sin diacríticos, para comparar lo que se escribe con lo que se muestra. */
|
|
3695
|
+
const normalizeForSearch = (value) => value
|
|
3696
|
+
.normalize("NFD")
|
|
3697
|
+
// Rango de marcas combinantes (tildes, diéresis, cedilla) que deja NFD.
|
|
3698
|
+
// Se usa en vez de \p{Diacritic} porque el flag `u` exige target es6+.
|
|
3699
|
+
.replace(/[̀-ͯ]/g, "")
|
|
3700
|
+
.toLowerCase();
|
|
3701
|
+
/**
|
|
3702
|
+
* `true` si el término aparece en alguno de los campos, ignorando tildes y
|
|
3703
|
+
* mayúsculas. Los campos ausentes se descartan. Un término vacío casa siempre,
|
|
3704
|
+
* igual que el `includes` que sustituye.
|
|
3705
|
+
*/
|
|
3706
|
+
const matchesSearchTerm = (fields, term) => {
|
|
3707
|
+
const needle = normalizeForSearch(term);
|
|
3708
|
+
return fields.some((field) => field != null && normalizeForSearch(field).includes(needle));
|
|
3709
|
+
};
|
|
3710
|
+
|
|
3685
3711
|
const Andorra = () => {
|
|
3686
3712
|
return (jsxRuntime.jsxs("svg", { width: "50", height: "45", viewBox: "0 0 21 14", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [jsxRuntime.jsxs("g", { clipPath: "url(#clip0_11_9194)", children: [jsxRuntime.jsx("path", { d: "M0 0H21V14H0V0Z", fill: "#D50032" }), jsxRuntime.jsx("path", { d: "M0 0H14.28V14H0V0Z", fill: "#FEDD00" }), jsxRuntime.jsx("path", { d: "M0 0H6.72V14H0V0Z", fill: "#10069F" }), jsxRuntime.jsx("path", { d: "M9.85674 3.76961C10.1098 3.76961 10.2133 3.97637 10.4664 3.97637C10.6226 3.97637 10.7137 3.92777 10.8498 3.85463C10.9448 3.80339 11.0054 3.77609 11.1145 3.77609C11.2262 3.77609 11.2947 3.80825 11.3519 3.89943C11.3841 3.95103 11.411 4.05199 11.3968 4.10993C11.3769 4.19913 11.3469 4.28601 11.3073 4.36899C11.2854 4.41775 11.2647 4.44695 11.2647 4.50031C11.2647 4.62823 11.4475 4.67219 11.5717 4.67401C11.5988 4.67441 11.8267 4.67797 11.9668 4.54281C11.8908 4.53961 11.8057 4.48351 11.8057 4.41105C11.8057 4.32907 11.8662 4.27359 11.9482 4.24991C11.9637 4.24567 11.9903 4.25877 12.0044 4.25171C12.0244 4.24181 12.015 4.22035 12.0328 4.20691C12.0737 4.17581 12.1002 4.15641 12.1525 4.15641C12.1818 4.15445 12.2108 4.16273 12.2341 4.17971C12.2486 4.18961 12.2539 4.20185 12.2717 4.20185C12.3092 4.20185 12.3278 4.17925 12.3652 4.17925C12.3916 4.17821 12.4178 4.18407 12.4409 4.19621C12.4632 4.20717 12.4627 4.24319 12.4879 4.24319C12.5005 4.24319 12.5673 4.21727 12.6022 4.21727C12.6745 4.21727 12.7131 4.24223 12.7599 4.29453C12.7725 4.30867 12.7806 4.33727 12.7934 4.33727C12.8391 4.34075 12.8823 4.35878 12.9159 4.38845C12.9295 4.40047 12.9414 4.41419 12.9512 4.42921C12.9597 4.44229 12.9728 4.47421 12.9879 4.47973C13.0074 4.48359 13.0261 4.49013 13.0436 4.49915C13.099 4.53209 13.1335 4.58919 13.1356 4.65137C13.1328 4.67391 13.1275 4.6961 13.1198 4.71757C13.058 4.92325 12.9111 4.98853 12.7626 5.16521C12.6995 5.24047 12.6497 5.30055 12.6497 5.39701C12.6497 5.42035 12.6799 5.46307 12.6933 5.48251C12.6851 5.43717 12.7069 5.38149 12.7572 5.37891C12.7899 5.37793 12.8217 5.38893 12.8462 5.40965C12.8706 5.43036 12.8858 5.45922 12.8886 5.49027C12.8892 5.50979 12.8855 5.52919 12.8777 5.54727C12.9172 5.52349 12.9618 5.50845 13.0083 5.50323C13.029 5.50083 13.0499 5.49997 13.0708 5.50063C13.181 5.50323 13.3026 5.56223 13.3763 5.62191C13.6021 5.80451 13.6294 6.07175 13.617 6.14597C13.5896 6.31089 13.6069 6.60933 13.1643 6.72831C13.2461 6.76113 13.3018 6.81977 13.3018 6.89187C13.3028 6.92954 13.288 6.96604 13.2607 6.99334C13.2334 7.02064 13.1959 7.03651 13.1563 7.03747C13.114 7.03993 13.0727 7.02441 13.0435 6.99507C12.9515 7.08269 12.9337 7.17211 12.9337 7.29615C12.933 7.36069 12.9494 7.42435 12.9812 7.48131C13.0157 7.55235 13.0406 7.59405 13.1029 7.64531C13.1359 7.59793 13.1708 7.56331 13.2305 7.56331C13.2884 7.56331 13.3374 7.58097 13.3612 7.63115C13.3682 7.64635 13.3619 7.65873 13.3701 7.67355C13.3805 7.69265 13.3979 7.69689 13.4087 7.71597C13.4254 7.74531 13.409 7.77039 13.4235 7.80077C13.4328 7.82057 13.4532 7.82341 13.4621 7.84319C13.475 7.86969 13.4812 7.89877 13.4799 7.92799C13.4799 8.02201 13.3901 8.08915 13.2914 8.08915C13.2617 8.08915 13.2454 8.07785 13.2157 8.08067C13.2721 8.13439 13.3152 8.15771 13.3582 8.22203C13.4205 8.31497 13.4361 8.38105 13.4502 8.49061C13.4525 8.50843 13.4535 8.52637 13.4532 8.54433C13.4532 8.68497 13.4302 8.76909 13.3641 8.89489C13.3011 9.01539 13.2473 9.08219 13.1326 9.16063C12.9537 9.28325 12.8235 9.31861 12.6072 9.35853C12.4888 9.38207 12.3687 9.39719 12.248 9.40377L11.7849 9.42637C11.5489 9.44157 11.3853 9.47337 11.2179 9.63277C11.2969 9.68789 11.3515 9.74197 11.3515 9.83491C11.3515 9.93031 11.2895 9.99851 11.1942 10.0286C11.1719 10.0356 11.1556 10.0293 11.1348 10.0399C11.1099 10.0522 11.111 10.0795 11.0873 10.0936C11.0504 10.1165 11.0066 10.1275 10.9626 10.1247C10.8743 10.1247 10.8142 10.1049 10.7518 10.0455C10.6795 10.1028 10.655 10.1544 10.5737 10.1982C10.547 10.2123 10.5333 10.2321 10.5025 10.2321C10.4539 10.2321 10.4316 10.2028 10.3926 10.1756C10.3385 10.1394 10.2896 10.0967 10.2472 10.0484C10.1733 10.0904 10.1281 10.1247 10.0423 10.1247C9.9961 10.1272 9.95026 10.1153 9.91172 10.0908C9.88835 10.077 9.88463 10.0565 9.86126 10.0427C9.83677 10.0282 9.81636 10.0335 9.79003 10.0229C9.69095 9.98227 9.62675 9.91229 9.62675 9.80947C9.62675 9.71935 9.6865 9.66209 9.77222 9.62427C9.60783 9.46773 9.44605 9.44053 9.21412 9.42639L8.75399 9.40377C8.63247 9.39519 8.51156 9.38009 8.39183 9.35853C8.28531 9.34193 8.22225 9.33663 8.12467 9.29351C7.78885 9.14437 7.57474 8.93977 7.53095 8.58955C7.5281 8.56373 7.52711 8.53775 7.52797 8.51181C7.52797 8.32945 7.6033 8.21815 7.73873 8.08915C7.70387 8.08135 7.68047 8.09233 7.6467 8.08067C7.5621 8.05133 7.50126 7.99549 7.50126 7.90961C7.4988 7.88167 7.505 7.85367 7.51907 7.82905C7.53057 7.80961 7.55246 7.80571 7.55764 7.78381C7.56432 7.75483 7.55542 7.73433 7.56953 7.70747C7.57881 7.68947 7.59624 7.68591 7.60515 7.66789C7.63446 7.60995 7.67121 7.56329 7.73873 7.56329C7.79662 7.56329 7.83373 7.59227 7.8634 7.63963C7.91981 7.61489 7.93539 7.57459 7.96731 7.52371C8.02038 7.43925 8.04449 7.38023 8.04449 7.28199C8.046 7.22279 8.03594 7.16383 8.01481 7.10813C7.99848 7.06147 7.9918 7.02967 7.95545 6.99505C7.92628 7.02439 7.88497 7.03991 7.84263 7.03745C7.74839 7.03505 7.67398 6.96041 7.6764 6.87065C7.67417 6.80779 7.71325 6.75027 7.77436 6.72645C7.72352 6.68477 7.67936 6.68123 7.62295 6.64731C7.53725 6.59571 7.5072 6.54129 7.4508 6.46071C7.41405 6.40805 7.40439 6.37131 7.38549 6.31087C7.36243 6.24913 7.35038 6.18416 7.34985 6.11863C7.34954 6.10162 7.35053 6.08461 7.35281 6.06773C7.37398 5.91437 7.40292 5.81823 7.50422 5.69737C7.56432 5.62563 7.60515 5.58147 7.69421 5.54471C7.76989 5.51361 7.81517 5.49099 7.89755 5.49099C7.91887 5.49051 7.94021 5.49146 7.96139 5.49383C7.99463 5.49555 8.02706 5.50423 8.05637 5.51927C8.06897 5.52599 8.09199 5.54613 8.09199 5.53199C8.09199 5.51573 8.08308 5.50725 8.08308 5.49099C8.08308 5.42599 8.13206 5.36659 8.20035 5.36659C8.2497 5.36659 8.26973 5.40795 8.29386 5.44859C8.3093 5.42795 8.31759 5.40325 8.31759 5.37791C8.31759 5.27047 8.25711 5.21571 8.18697 5.13195C8.03409 4.94995 7.84263 4.86479 7.84263 4.63155C7.84263 4.56195 7.87787 4.51457 7.9406 4.47889C7.95876 4.46863 7.98323 4.47889 8.00102 4.46803C8.01624 4.45883 8.0145 4.44013 8.02414 4.42529C8.03766 4.40593 8.05453 4.38885 8.07397 4.37479C8.10885 4.34581 8.13949 4.35449 8.17807 4.32905C8.19737 4.31633 8.20192 4.29979 8.21677 4.28285C8.25982 4.23337 8.29846 4.20947 8.36635 4.20947C8.39523 4.20745 8.42421 4.21159 8.45119 4.22161C8.46195 4.22551 8.48206 4.24095 8.48467 4.23797C8.4977 4.22304 8.51371 4.21072 8.53177 4.20171C8.5535 4.18928 8.5785 4.18299 8.60384 4.18357C8.64022 4.18357 8.66403 4.20299 8.7004 4.20299C8.71376 4.20299 8.71684 4.19029 8.7276 4.18357C8.75987 4.16273 8.77846 4.15093 8.81779 4.15093C8.8508 4.15161 8.88268 4.16261 8.90847 4.18227C8.9385 4.20031 8.94285 4.22443 8.97363 4.24141C8.9907 4.25095 9.00517 4.24671 9.02412 4.25271C9.1087 4.27957 9.17254 4.33329 9.17254 4.41811C9.17592 4.45955 9.15826 4.50001 9.12504 4.52695C9.09646 4.55097 9.06939 4.54675 9.03302 4.55805C9.15102 4.64781 9.25369 4.67007 9.40434 4.67007C9.54237 4.67007 9.71119 4.61633 9.71119 4.48487C9.71119 4.42373 9.6757 4.39087 9.65046 4.33469C9.60519 4.23469 9.58064 4.17585 9.58064 4.06701C9.58064 3.98079 9.59051 3.92847 9.6432 3.85849C9.69738 3.78641 9.76355 3.76959 9.8567 3.76959L9.85674 3.76961Z", fill: "#C6AA76" }), jsxRuntime.jsx("path", { d: "M8.93738 4.46916C8.94855 4.50602 8.97887 4.53478 9.0176 4.5453C9.06483 4.55546 9.11397 4.53844 9.1433 4.50176C9.15657 4.48362 9.16508 4.46272 9.16812 4.44081C9.17116 4.4189 9.16865 4.39661 9.1608 4.37582C9.14981 4.34772 9.13004 4.32351 9.10414 4.30646L8.93744 4.4676L8.9374 4.46918L8.93738 4.46916Z", stroke: "#713F2A", strokeWidth: "0.021861", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M13.1588 6.87877C13.1196 6.78857 13.0184 6.82901 13.0122 6.87877C12.9978 6.99341 13.1033 7.02805 13.1784 7.00937C13.1956 7.00512 13.2118 6.99755 13.2259 6.98713C13.2399 6.97671 13.2516 6.96366 13.2602 6.94877C13.2704 6.93115 13.2768 6.91176 13.279 6.89176C13.2812 6.87176 13.2791 6.85154 13.273 6.83229C13.2611 6.79577 13.2365 6.76422 13.2032 6.74287C13.1743 6.72531 13.1428 6.72357 13.0935 6.72357C12.9106 6.72357 12.7506 6.92935 12.6969 7.14311C12.667 7.26667 12.6641 7.39477 12.6886 7.51941C12.7158 7.65183 12.7826 7.77395 12.8809 7.87111C12.9372 7.92229 13.0007 7.96562 13.0697 7.99981C13.1134 8.0216 13.159 8.03956 13.2061 8.05347C13.2483 8.06476 13.2928 8.06573 13.3355 8.05631C13.4438 8.03391 13.4942 7.93791 13.4396 7.83971C13.3949 7.75931 13.2633 7.71533 13.2012 7.81795C13.1927 7.83274 13.1882 7.84931 13.188 7.86617C13.1875 7.87986 13.1902 7.89348 13.1959 7.90606C13.2016 7.91865 13.2101 7.92988 13.2208 7.93897C13.268 7.96753 13.3434 7.95945 13.3399 7.88015", stroke: "#713F2A", strokeWidth: "0.021777", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M12.5935 8.06138C12.65 8.00075 12.7267 7.96047 12.8107 7.94732C12.9084 7.93588 12.9934 7.96298 13.0801 8.0074C13.2493 8.0941 13.3437 8.1873 13.4066 8.36022C13.4264 8.41845 13.4357 8.47947 13.434 8.54066C13.431 8.65274 13.4012 8.77526 13.3691 8.8345C13.341 8.88616 13.2678 9.11438 12.8662 9.27186C12.6318 9.36374 12.2719 9.38492 12.0237 9.39426C11.6823 9.4071 11.3674 9.41914 11.1845 9.63372", stroke: "#713F2A", strokeWidth: "0.026796" }), jsxRuntime.jsx("path", { d: "M12.6788 8.42897C12.669 8.39477 12.6781 8.36197 12.7066 8.32479C12.7446 8.27507 12.8257 8.25793 12.8992 8.29679C12.9317 8.31237 12.9602 8.33468 12.9825 8.36211L13.02 8.41187C13.0349 8.43645 13.0469 8.46252 13.0558 8.48961C13.1366 8.70817 13.0082 8.94503 12.8404 9.04005C12.7101 9.11385 12.5547 9.14677 12.3686 9.16755C12.285 9.17691 12.2372 9.17629 12.1531 9.18001C12.0854 9.18299 12.0269 9.18193 11.9718 9.18129L11.8396 9.18001C11.7607 9.1772 11.6816 9.17823 11.6028 9.18311C11.5073 9.18973 11.4354 9.19207 11.3547 9.20489C11.3019 9.21325 11.2401 9.22133 11.1753 9.23519C11.1558 9.23933 11.1361 9.24273 11.1163 9.24841L11.0768 9.25991C10.9644 9.28959 10.8566 9.33345 10.7564 9.39033C10.7277 9.4061 10.7004 9.42422 10.675 9.44449C10.661 9.45703 10.6441 9.46961 10.6304 9.48245C10.5676 9.54127 10.5034 9.60497 10.4884 9.69121C10.486 9.70783 10.4851 9.72459 10.4856 9.74135C10.4856 9.79731 10.5334 9.87351 10.6624 9.89839M10.8438 4.58217C10.8708 4.62865 10.8856 4.65693 10.8699 4.70501C10.8521 4.75947 10.8116 4.79209 10.754 4.79209C10.6234 4.79209 10.5466 4.64481 10.6054 4.55107C10.7099 4.38469 10.9108 4.47813 11.0969 4.56055C11.0879 4.51787 11.0722 4.50399 11.0739 4.45113C11.0779 4.31983 11.1801 4.26029 11.221 4.13903C11.2453 4.06677 11.2549 4.00403 11.1994 3.95271C11.151 3.90791 11.0948 3.90861 11.0316 3.93221C10.9052 3.97939 10.7534 4.11497 10.4862 4.11873C10.219 4.11497 10.066 3.97939 9.93957 3.93221C9.87632 3.90861 9.82017 3.90793 9.7717 3.95271C9.7162 4.00403 9.72586 4.06677 9.75017 4.13903C9.791 4.26031 9.89323 4.31983 9.89728 4.45113C9.8989 4.50399 9.88323 4.51787 9.87426 4.56053C10.0604 4.47813 10.269 4.37631 10.3657 4.55107C10.4196 4.64845 10.3477 4.79207 10.2171 4.79207C10.1595 4.79207 10.1191 4.75713 10.1012 4.70501C10.0947 4.68405 10.0937 4.66191 10.0983 4.6405C10.1028 4.6191 10.1128 4.59907 10.1273 4.58217", stroke: "#713F2A", strokeWidth: "0.023541" }), jsxRuntime.jsx("path", { d: "M10.3215 4.49579C10.372 4.53255 10.4076 4.57779 10.4017 4.65129C10.3952 4.73101 10.3749 4.75023 10.3096 4.79265M10.3883 4.67399C10.389 4.71889 10.3589 4.75901 10.3141 4.77293", stroke: "#713F2A", strokeWidth: "0.023541", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M9.08035 4.28979L9.1032 4.30533L9.12768 4.33023L9.14402 4.36133L9.15219 4.38775L9.15383 4.42195L9.15219 4.44529L9.14402 4.47173L9.12768 4.49037L9.10809 4.51059L9.08035 4.52459L9.04444 4.53237L9.0134 4.53703L8.98075 4.52303L8.95137 4.50283L8.93341 4.47793L8.92035 4.44683V4.43441L9.08037 4.28979H9.08035Z", fill: "#C6AA76" }), jsxRuntime.jsx("path", { d: "M9.03021 4.41141C9.02017 4.35979 8.9568 4.34921 8.93225 4.37969C8.89445 4.42665 8.92206 4.50483 8.99894 4.52771C9.02208 4.53269 9.04623 4.53124 9.06852 4.52352C9.09081 4.5158 9.1103 4.50214 9.12467 4.48417C9.14655 4.45489 9.15533 4.41853 9.14908 4.38309C9.14283 4.34765 9.12207 4.31601 9.09134 4.29515L9.08548 4.29137C8.99619 4.22671 8.85201 4.24161 8.80465 4.35045C8.74356 4.49085 8.87647 4.59613 8.99894 4.67545C9.15308 4.77527 9.32875 4.79343 9.46101 4.79205C9.76143 4.78895 9.99 4.65211 10.1386 4.57437C10.1732 4.55627 10.2088 4.55997 10.2267 4.58059C10.2484 4.60661 10.2448 4.64423 10.2186 4.66611", stroke: "#713F2A", strokeWidth: "0.021861", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M8.13962 8.28699L8.07267 8.31031L8.0041 8.36007L7.9747 8.39895L7.93716 8.46115L7.92084 8.50779L7.90778 8.56533L7.90125 8.60887M8.52497 8.29319L8.52007 8.34919L8.51027 8.38805L8.48087 8.45491L8.43517 8.51245L8.38618 8.54975L8.35027 8.56687L8.29966 8.57775", stroke: "#713F2A", strokeWidth: "0.022197" }), jsxRuntime.jsx("path", { d: "M10.4916 9.78461C10.4794 9.83637 10.4285 9.89557 10.3177 9.91695L10.2962 9.92119", stroke: "#713F2A", strokeWidth: "0.025137" }), jsxRuntime.jsx("path", { d: "M13.2634 8.13141C13.3365 8.19815 13.3906 8.28147 13.4207 8.37359C13.4405 8.43181 13.4497 8.49282 13.448 8.55401C13.4451 8.66609 13.4152 8.78861 13.3831 8.84785C13.3551 8.89953 13.2819 9.12773 12.8802 9.28521C12.6459 9.37711 12.2859 9.39829 12.0378 9.40761C11.7013 9.42027 11.3905 9.43215 11.2065 9.63795", stroke: "#713F2A", strokeWidth: "0.028476" }), jsxRuntime.jsx("path", { d: "M12.7145 8.33898C12.7394 8.30656 12.8303 8.26552 12.9038 8.30438C12.9353 8.31923 12.9621 8.34157 12.9818 8.36924", stroke: "#713F2A", strokeWidth: "0.019509" }), jsxRuntime.jsx("path", { d: "M13.1777 8.05579L13.2249 8.07113C13.2668 8.08383 13.3117 8.08483 13.3542 8.07397C13.4471 8.04743 13.5067 7.96479 13.4583 7.85737C13.4454 7.83103 13.4258 7.80813 13.4013 7.79071", stroke: "#713F2A", strokeWidth: "0.028476" }), jsxRuntime.jsx("path", { d: "M7.88424 5.74261C7.82189 5.77937 7.77542 5.78807 7.72691 5.84155C7.6886 5.90869 7.65967 5.98029 7.64081 6.05455M9.15348 4.43921C9.15348 4.49293 9.1119 4.52685 9.05552 4.53815", stroke: "#713F2A", strokeWidth: "0.021861", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M13.0303 5.50061C13.1855 5.49761 13.6363 5.61341 13.6395 6.11813C13.6427 6.61663 13.3165 6.69807 13.1858 6.73125", stroke: "#713F2A", strokeWidth: "0.020937" }), jsxRuntime.jsx("path", { d: "M13.071 5.50058C13.3386 5.4895 13.6148 5.6771 13.627 6.1453C13.6364 6.51108 13.3641 6.67698 13.2334 6.71016", stroke: "#713F2A", strokeWidth: "0.021777" }), jsxRuntime.jsx("path", { d: "M12.9219 7.26323L12.9261 7.21319L12.9436 7.13371L12.9683 7.07189L12.9961 7.02087L13.0322 6.97967M13.2876 6.87343L13.2835 6.92241L13.2688 6.95585L13.2459 6.98773L13.2198 7.00639L13.1798 7.02039L13.1447 7.02271L13.1186 7.01881M12.6489 5.36843L12.6604 5.31557L12.6849 5.26657L12.7167 5.21759L12.7714 5.15073L12.8147 5.10487L12.8849 5.03723L12.9453 4.97891L12.9836 4.93693L13.0343 4.87863L13.0792 4.81409L13.1061 4.76123L13.1208 4.69281L13.1252 4.60797L13.1171 4.58337M12.7143 8.58883L12.7673 8.57873L12.8073 8.55851L12.8294 8.53751L12.8449 8.51341L12.8555 8.47455L12.8563 8.44733M7.66376 8.06763L7.70294 8.07073L7.75355 8.06685L7.80416 8.04975M7.96826 6.90763L7.96175 6.95117L7.95112 6.97061L7.9356 6.98927L7.91439 7.00481L7.8907 7.01491L7.85969 7.01959L7.83846 7.02115M8.16335 6.53303L8.15192 6.60067L8.13804 6.63021L8.10948 6.66753L8.07109 6.69553L8.03191 6.71417L7.95599 6.73205M8.45798 5.48963L8.44328 5.53005L8.42532 5.55961L8.40084 5.59225L8.36654 5.62179L8.32574 5.64047L8.29145 5.64823L8.27024 5.64667M8.28263 5.45303L8.28347 5.48413", stroke: "#713F2A", strokeWidth: "0.018501" }), jsxRuntime.jsx("path", { d: "M8.34377 6.50177C8.32367 6.51912 8.30045 6.53287 8.27521 6.54235M13.2141 7.94317C13.2169 7.94607 13.2263 7.94751 13.2296 7.94937C13.2761 7.97583 13.3677 7.94287 13.3408 7.87445", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M13.0523 6.98759C13.0854 7.02869 13.1476 7.03935 13.1969 7.02711C13.2141 7.02286 13.2303 7.01529 13.2444 7.00487C13.2584 6.99445 13.2701 6.9814 13.2787 6.96651C13.2889 6.94889 13.2952 6.92951 13.2974 6.9095C13.2996 6.88949 13.2976 6.86927 13.2915 6.85001C13.2858 6.83127 13.2763 6.81377 13.2637 6.79841C13.2511 6.78155 13.236 6.76652 13.2189 6.75381C13.2153 6.75159 13.2118 6.74857 13.208 6.74615M13.4188 7.80919C13.4228 7.78849 13.4212 7.76715 13.4142 7.74717C13.4072 7.7272 13.395 7.70924 13.3788 7.69497C13.3703 7.68565 13.3607 7.67737 13.3502 7.67031M13.3659 7.68499C13.3643 7.62675 13.3143 7.58509 13.2523 7.57473M13.1153 7.66339C13.1003 7.65301 13.086 7.64172 13.0725 7.62959C12.9827 7.53948 12.9321 7.42029 12.9309 7.29605C12.9301 7.16659 12.9848 7.03481 13.0484 6.98351M11.1945 9.62879L11.2533 9.57747L11.2941 9.54793L11.3708 9.50283L11.4426 9.47019L11.4932 9.45775L11.5945 9.43597L11.712 9.41887M10.7438 10.024C10.7014 10.0862 10.6001 10.1795 10.494 10.2168C10.3879 10.1795 10.2866 10.0862 10.2442 10.024", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M10.3169 9.89459C10.3038 9.94253 10.2789 9.98677 10.2441 10.0236", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M10.3273 9.82939L10.3126 9.89779M10.236 10.0284L10.205 10.0579L10.1494 10.0875L10.0858 10.1062M9.90061 4.54899C9.91144 4.52352 9.91652 4.49617 9.91553 4.46871C9.91147 4.33741 9.80927 4.27787 9.76842 4.15659M9.76842 4.15659C9.74412 4.08435 9.73444 4.02159 9.78997 3.97027C9.83841 3.92547 9.89457 3.92617 9.95782 3.94977M9.76842 4.15659C9.74412 4.08435 9.72921 4.01537 9.78474 3.96405C9.83318 3.91927 9.89457 3.92617 9.95782 3.94977M9.76842 4.15659C9.80924 4.27787 9.90624 4.33741 9.9103 4.46871C9.91059 4.49636 9.90462 4.52374 9.89278 4.54899M9.95782 3.94977C10.0842 3.99697 10.2373 4.13253 10.5045 4.13629C10.2373 4.13253 10.0842 3.99695 9.95782 3.94977ZM10.5037 4.12739C10.7666 4.11417 10.9919 3.94597 11.0646 3.93225C11.1294 3.92001 11.1655 3.92553 11.2131 3.96667C11.1655 3.92553 11.1114 3.92681 11.0499 3.94977C10.9235 3.99695 10.7717 4.13253 10.5045 4.13629M13.1163 7.66399C12.9888 7.57293 12.9133 7.43031 12.9123 7.27851C12.9115 7.14903 12.9661 7.01729 13.0298 6.96597M10.7345 10.0152C10.6921 10.0774 10.5908 10.1707 10.4847 10.208C10.3786 10.1707 10.2774 10.0774 10.2349 10.0152", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M10.0626 4.61479L10.1387 4.57443C10.1733 4.55631 10.2149 4.56011 10.2328 4.58075C10.2438 4.59336 10.2494 4.60943 10.2485 4.62579C10.2476 4.64214 10.2403 4.65758 10.2281 4.66907", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M9.67009 4.78975C9.85044 4.75391 9.99738 4.67699 10.1085 4.61781M11.1674 9.74855C11.1779 9.75657 11.1862 9.76679 11.1919 9.77841C11.1965 9.78687 11.2001 9.79575 11.2028 9.80493C11.2114 9.84105 11.1876 9.87695 11.1496 9.88509C11.1458 9.88591 11.142 9.88642 11.1381 9.88663C11.1143 9.8894 11.0901 9.88471 11.0694 9.87328C11.0486 9.86184 11.0323 9.84427 11.023 9.82323M9.66085 4.78095C9.8412 4.74511 9.98814 4.66819 10.0992 4.60901M13.301 7.94975C13.2667 7.96235 13.2479 7.96063 13.2053 7.94259C13.1878 7.93519 13.1677 7.92373 13.1442 7.91103C13.0607 7.86581 12.9614 7.79455 12.8683 7.62817C12.8434 7.58403 12.8246 7.53703 12.8122 7.48833C12.803 7.4542 12.7976 7.41928 12.7958 7.38409C12.7942 7.31875 12.801 7.25346 12.8161 7.18969C12.8353 7.08623 12.8813 6.98896 12.95 6.90669C12.9877 6.85743 13.0202 6.82737 13.0904 6.82583M8.37544 5.59755C8.40332 5.61902 8.42562 5.64632 8.44063 5.67732C8.45563 5.70833 8.46293 5.74222 8.46196 5.77635C8.46196 5.87319 8.37691 6.03135 8.16794 6.08735C8.0983 6.10607 8.02371 6.09757 7.96067 6.06375M8.40967 5.92555C8.42737 5.93619 8.44163 5.95131 8.45085 5.96921C8.46008 5.98711 8.46391 6.0071 8.46192 6.02695C8.46192 6.06023 8.43932 6.10339 8.40087 6.14427C8.36413 6.18247 8.3197 6.21324 8.27021 6.23475C8.22073 6.25626 8.16721 6.26806 8.11284 6.26947C8.04249 6.27143 7.97327 6.25231 7.91497 6.21477C7.85239 6.17583 7.8075 6.11587 7.78925 6.04683", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M8.40631 6.13419C8.44885 6.17143 8.46192 6.21805 8.46192 6.27677C8.46192 6.36257 8.42533 6.42877 8.34117 6.49891C8.32144 6.51532 8.30012 6.5299 8.27749 6.54247M12.5244 5.85259V5.96297M12.5152 5.82539V5.98087M12.5244 5.48879V5.69249M12.5152 5.44379V5.72215M12.4528 8.28339C12.4193 8.35021 12.3727 8.41037 12.3157 8.46065C12.2607 8.51387 12.1959 8.55708 12.1246 8.58815C12.0565 8.62052 11.984 8.64355 11.9091 8.65657C11.8351 8.67275 11.7597 8.68161 11.6838 8.68301C11.6144 8.68575 11.5449 8.68405 11.4757 8.67791C11.389 8.67221 11.3409 8.66071 11.2544 8.65347C11.1934 8.64662 11.1322 8.64284 11.0708 8.64215C11.0076 8.64039 10.9444 8.64471 10.8821 8.65501C10.8238 8.66339 10.7668 8.67853 10.7123 8.70011C10.6242 8.73411 10.5246 8.79341 10.5033 8.81985C10.4821 8.79341 10.3825 8.73413 10.2944 8.70011C10.2399 8.67853 10.1829 8.66339 10.1246 8.65501C10.0623 8.6447 9.99909 8.64039 9.93591 8.64215C9.87454 8.64283 9.81325 8.64661 9.7523 8.65347C9.66576 8.66071 9.61769 8.67221 9.531 8.67791C9.46183 8.68402 9.39231 8.68573 9.32289 8.68301C9.24704 8.68165 9.17155 8.67279 9.09761 8.65657C9.02276 8.64351 8.95021 8.62047 8.88208 8.58817C8.81076 8.55713 8.74601 8.51391 8.69105 8.46065L8.67114 8.44159M10.0548 10.1094L10.1136 10.1024M11.1069 10.0288L11.1662 10.0234L11.2227 10.0019L11.2623 9.97901L11.316 9.91847L11.3273 9.89559L11.3357 9.84313L11.3386 9.81893M12.8778 5.54719C12.9033 5.46463 12.8722 5.37753 12.7883 5.37987M8.4586 6.83499C8.43966 6.89589 8.39757 6.94789 8.34058 6.98085M8.46007 5.52099C8.44102 5.57739 8.39713 5.62309 8.33986 5.64619C8.27926 5.67227 8.2091 5.64791 8.17157 5.62035", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M7.99994 5.82398C8.05017 5.84904 8.10116 5.8123 8.0907 5.75006C8.08628 5.73178 8.07592 5.71531 8.06109 5.70298C8.04626 5.69065 8.02771 5.6831 8.00811 5.6814", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M8.20829 8.45718C8.21912 8.46688 8.22143 8.47948 8.23605 8.48206C8.2581 8.48594 8.27524 8.49372 8.29726 8.46574C8.32444 8.43124 8.30984 8.37756 8.28158 8.34378C8.25724 8.31994 8.22547 8.30421 8.19099 8.29894C8.15651 8.29368 8.12117 8.29916 8.09023 8.31456C8.0577 8.33014 8.02924 8.35244 8.00696 8.37986L7.96941 8.42962C7.95452 8.4542 7.94253 8.48028 7.93363 8.50736C7.86643 8.68932 7.94623 8.88064 8.0699 8.99722", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M11.1634 9.74457C11.1712 9.75226 11.1783 9.76058 11.1846 9.76945C11.1886 9.77794 11.1917 9.78685 11.1936 9.79599C11.2021 9.83211 11.1783 9.86799 11.1404 9.87613C11.1366 9.87695 11.1327 9.87745 11.1289 9.87767C11.1057 9.88047 11.0822 9.87577 11.0621 9.86432C11.042 9.85288 11.0266 9.83535 11.0182 9.81455", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M12.7785 4.33624C12.8935 4.35322 12.9796 4.4454 12.984 4.55608C12.984 4.69448 12.935 4.746 12.8585 4.845C12.7767 4.95094 12.5091 5.1451 12.5091 5.3659C12.5091 5.49962 12.5483 5.58514 12.6495 5.62868C12.7148 5.65676 12.7911 5.62636 12.8259 5.59648C12.9108 5.52338 12.8768 5.39522 12.7883 5.3799C12.6806 5.36124 12.6603 5.5228 12.7655 5.51208M13.3504 7.67024C13.3459 7.64138 13.33 7.61523 13.306 7.59714C13.282 7.57905 13.2516 7.57038 13.2211 7.57291C13.1906 7.57544 13.1622 7.58897 13.1419 7.61075C13.1215 7.63252 13.1106 7.66088 13.1114 7.69004C13.1113 7.7204 13.1235 7.74966 13.1454 7.77174M12.5956 5.59764C12.5677 5.61911 12.5454 5.64641 12.5304 5.67742C12.5154 5.70843 12.5081 5.74231 12.5091 5.77644C12.5091 5.87328 12.5941 6.03144 12.8031 6.08744C12.8832 6.10888 12.9597 6.10686 13.0077 6.0791M7.88783 5.75604C7.8241 5.77468 7.76845 5.81255 7.72928 5.86394C7.69031 5.91654 7.66758 5.98966 7.65351 6.05364C7.64294 6.12283 7.64473 6.19322 7.65881 6.26184C7.67175 6.32468 7.69744 6.3845 7.73445 6.43796C7.74438 6.45191 7.75578 6.46486 7.76847 6.4766C7.78025 6.48651 7.7927 6.49568 7.80572 6.50406M9.90614 9.38044C10.0652 9.44762 10.1819 9.49794 10.2808 9.64664C10.3074 9.69338 10.3209 9.74588 10.3199 9.79904C10.3208 9.88956 10.281 9.97612 10.2105 10.0369C10.151 10.0878 10.071 10.1111 9.99178 10.1007C9.92863 10.0948 9.86933 10.0509 9.85952 10.0198M8.3345 6.50404C8.4243 6.5709 8.46185 6.63576 8.46185 6.73884C8.4659 6.83338 8.41592 6.92262 8.33123 6.97208", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M8.25281 6.88818C8.38668 7.04678 8.45773 7.14092 8.4618 7.32978C8.4656 7.50704 8.40628 7.62832 8.29527 7.75584", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M10.8198 4.79141C10.8452 4.77459 10.8637 4.74998 10.8723 4.72171C10.8881 4.67521 10.8884 4.63555 10.8623 4.59979C10.8945 4.63997 10.8975 4.67389 10.8884 4.72263C10.8827 4.75367 10.8619 4.77001 10.836 4.79233M12.5244 7.48481V7.98963H12.5258C12.5257 8.01559 12.5242 8.04155 12.5213 8.06737L12.5123 8.12143", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M12.5152 7.43618V7.98064H12.5166C12.5165 8.00661 12.515 8.03256 12.5121 8.05838L12.4968 8.14088M12.5152 6.79878V7.25282M12.5244 6.83458V7.20384M12.5244 6.36498V6.6418M12.5152 6.33238V6.67366M12.5244 6.08198V6.18938M12.5152 6.06018V6.2157M12.4547 8.25298L12.4436 8.27466C12.4101 8.34148 12.3635 8.40164 12.3065 8.45192C12.2515 8.50515 12.1867 8.54836 12.1154 8.57944C12.0473 8.6118 11.9748 8.63483 11.8999 8.64784C11.8259 8.66404 11.7504 8.6729 11.6746 8.67428C11.6052 8.67698 11.5356 8.67528 11.4665 8.66918C11.3798 8.66348 11.3317 8.65198 11.2452 8.64474C11.1843 8.6379 11.123 8.63412 11.0616 8.63342C10.9984 8.63166 10.9352 8.63598 10.8729 8.6463C10.8146 8.65467 10.7576 8.66981 10.7031 8.69138C10.615 8.72538 10.5154 8.78468 10.4942 8.81112C10.4729 8.78468 10.3733 8.7254 10.2852 8.69138C10.2307 8.6698 10.1737 8.65466 10.1154 8.6463C10.0531 8.63597 9.98989 8.63165 9.92671 8.63342C9.86535 8.6341 9.80406 8.63788 9.74311 8.64474C9.65655 8.65198 9.6085 8.66348 9.52181 8.66918C9.45264 8.6753 9.38311 8.677 9.3137 8.67428C9.23784 8.67292 9.16233 8.66406 9.08839 8.64786C9.01355 8.63478 8.94099 8.61174 8.87287 8.57944C8.80155 8.5484 8.73681 8.50518 8.68185 8.45192C8.6523 8.42513 8.62519 8.39599 8.60084 8.36482M8.53485 8.26518C8.54045 8.30798 8.53677 8.35142 8.52404 8.39282C8.51132 8.43421 8.48982 8.47269 8.46087 8.50586C8.43313 8.53386 8.37267 8.58734 8.2976 8.58826C8.17353 8.58982 8.13648 8.50854 8.12897 8.48876M8.38743 8.21398C8.41183 8.23729 8.43232 8.26404 8.44819 8.29328C8.4792 8.34926 8.46965 8.44288 8.44508 8.48608C8.4421 8.49127 8.43876 8.49628 8.4351 8.50106M7.77087 9.06398C7.84467 9.13772 7.95626 9.21782 8.12766 9.28502C8.36204 9.37692 8.72196 9.3981 8.97014 9.40742C9.30016 9.41982 9.60419 9.43274 9.78935 9.62738M10.3591 9.50018C10.4137 9.5513 10.4693 9.60608 10.4928 9.67614M10.2518 10.034C10.2212 10.0649 10.1834 10.0887 10.1415 10.1033C10.0996 10.1179 10.0547 10.1231 10.0103 10.1183C9.9537 10.1115 9.90273 10.0823 9.86991 10.0378M9.69426 9.94698C9.69731 9.95094 9.70051 9.95479 9.70386 9.95852C9.74725 10.0037 9.80727 10.0311 9.8714 10.0352M10.7531 10.0328C10.7106 10.095 10.6094 10.1883 10.5033 10.2256C10.3972 10.1883 10.2959 10.095 10.2535 10.0328L10.2436 10.0182M10.7548 10.0324C10.7624 10.0403 10.7705 10.0477 10.779 10.0546C10.8085 10.0797 10.8433 10.0984 10.881 10.1094C10.9188 10.1204 10.9587 10.1234 10.9978 10.1183C11.0531 10.1125 11.1024 10.0826 11.1314 10.0374C11.1377 10.0309 11.1427 10.0231 11.1459 10.0147", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M11.1247 10.0198L11.1004 10.0571L11.0633 10.0864L11.0071 10.1086L10.9563 10.1106", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M11.2566 9.66441C11.2892 9.68832 11.3152 9.71945 11.3322 9.75509C11.3423 9.77862 11.3479 9.80366 11.3487 9.82905C11.3514 9.87633 11.3346 9.92274 11.3021 9.95853C11.2567 10.0063 11.1927 10.0343 11.1251 10.0358H11.1096M11.1157 10.027C11.084 10.0279 11.0524 10.0223 11.0231 10.0106C10.9939 9.99901 10.9675 9.98158 10.9458 9.95951M13.0351 7.83861C12.9709 7.78045 12.9176 7.71229 12.8775 7.63707C12.8526 7.59292 12.8337 7.54593 12.8214 7.49723C12.8122 7.46311 12.8067 7.42819 12.805 7.39301C12.8034 7.32765 12.8102 7.26235 12.8252 7.19857C12.8453 7.09535 12.8913 6.99827 12.9591 6.91557C12.9784 6.88941 13.0013 6.86593 13.0274 6.84581M12.9822 4.47661C13.0655 4.48281 13.1426 4.56821 13.1416 4.65189C13.1401 4.77345 13.0973 4.82369 12.9969 4.94279C12.9104 5.04541 12.6508 5.22579 12.6573 5.39839C12.6609 5.43048 12.6741 5.46093 12.6952 5.48619M12.5914 5.59441C12.611 5.61251 12.6338 5.62711 12.6587 5.63753C12.7044 5.65451 12.7556 5.65127 12.7985 5.62867M12.1038 4.27801C12.1353 4.29799 12.1602 4.32619 12.1755 4.35923C12.2366 4.49963 12.1037 4.60491 11.9812 4.68423C11.899 4.73631 11.8062 4.77126 11.7089 4.78679M11.9635 4.54861C11.9438 4.54835 11.9243 4.54404 11.9065 4.53596C11.8886 4.52788 11.8729 4.51623 11.8602 4.50181C11.8505 4.49291 11.8426 4.48239 11.837 4.47077M11.3495 4.62401C11.3333 4.61651 11.3186 4.60632 11.3061 4.59393C11.2698 4.55715 11.2596 4.50345 11.2801 4.45687C11.3008 4.39761 11.4007 4.23139 11.4056 4.11633C11.4131 3.94053 11.3421 3.83679 11.2311 3.79633", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M11.3963 4.07703L11.392 4.14313L11.3732 4.21061L11.337 4.30287L11.3095 4.36207L11.2806 4.42129L11.2662 4.46261L11.2604 4.49291L11.2647 4.52183M12.512 8.46803C12.517 8.47772 12.5236 8.48656 12.5316 8.49415C12.5528 8.52789 12.6354 8.58725 12.7104 8.58817C12.8345 8.58973 12.864 8.50703 12.8671 8.48867C12.8828 8.39849 12.8504 8.37381 12.8018 8.34841C12.7822 8.33973 12.7604 8.33671 12.739 8.33975", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M7.77483 8.07341C7.73535 8.08411 7.69354 8.08433 7.65393 8.07407C7.56105 8.04755 7.48578 7.96279 7.52415 7.85749M7.96341 6.86301C7.9717 6.87241 7.97652 6.88414 7.97712 6.89641C7.99146 7.01105 7.88598 7.04445 7.81089 7.02579C7.77029 7.01361 7.73535 6.98846 7.71198 6.95459C7.69885 6.93265 7.6919 6.90785 7.69175 6.88259M8.41554 6.14301C8.43324 6.15825 8.4471 6.17709 8.45609 6.19815M8.4189 5.93201C8.43482 5.94261 8.44794 5.95659 8.45722 5.97285", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M8.46113 6.07878C8.44864 6.10612 8.43139 6.13127 8.4101 6.15314C8.33586 6.23032 8.23191 6.2755 8.12206 6.27834C8.05172 6.28029 7.9825 6.26115 7.9242 6.22362C7.85824 6.18352 7.81046 6.12132 7.79028 6.04932", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M8.38129 5.6026C8.41676 5.63055 8.4436 5.66716 8.45895 5.7085", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M8.46008 5.8512C8.43924 5.91187 8.40221 5.96636 8.35261 6.0093C8.30301 6.05224 8.24255 6.08217 8.17714 6.09616C8.09726 6.11544 7.9944 6.09134 7.95929 6.06288", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M7.87628 5.82979C7.88504 5.91219 7.94294 5.97397 8.0527 5.97595C8.20705 5.97871 8.30088 5.76447 8.16373 5.61407", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M7.52893 6.54784C7.5517 6.57447 7.57724 6.59884 7.60516 6.62056C7.66201 6.66718 7.72828 6.70226 7.79987 6.72362M7.97308 6.73904C8.11103 6.72326 8.18879 6.62536 8.17338 6.51084C8.16162 6.42358 8.07756 6.35648 8.02039 6.3526", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M8.19818 5.37842C8.24995 5.37858 8.29178 5.41868 8.29161 5.46798L8.29151 5.47172", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M8.18414 4.59619C8.21556 4.67312 8.27385 4.73739 8.3492 4.77817M13.0801 5.74579C13.1365 5.81937 13.0996 5.96443 12.9461 5.96719C12.8865 5.96717 12.8312 5.93739 12.8004 5.88871", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M12.5244 4.78503V5.27875", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M7.99822 5.82284C8.04557 5.85548 8.10637 5.80036 8.08285 5.74184C8.06695 5.70234 8.00803 5.65972 7.9264 5.71258C7.83623 5.77098 7.86109 5.95518 8.03413 5.95826C8.18848 5.96104 8.28233 5.74678 8.14516 5.5964C8.01324 5.45172 7.77289 5.48556 7.61617 5.60432C7.49945 5.69816 7.41805 5.82571 7.38433 5.9676C7.3715 6.01958 7.36505 6.0728 7.36518 6.1262C7.36824 6.25592 7.40865 6.38235 7.48198 6.49172C7.49459 6.50997 7.50891 6.52711 7.52475 6.54292C7.54427 6.56418 7.56498 6.58442 7.58679 6.60356C7.67547 6.67386 7.78975 6.72896 7.92966 6.7233C8.08312 6.71708 8.1713 6.61446 8.15496 6.49316C8.13913 6.37556 8.01447 6.31706 7.93291 6.37188C7.87739 6.4092 7.85765 6.52476 7.95576 6.55224C8.01128 6.5678 8.06025 6.50094 8.02107 6.46206M12.2724 4.21364C12.3609 4.16784 12.4292 4.1763 12.4797 4.24304C12.5265 4.3092 12.5446 4.39004 12.5303 4.46864C12.5124 4.55262 12.4869 4.58748 12.4168 4.6484M12.4861 4.25104C12.5874 4.1873 12.697 4.21436 12.7572 4.29924C12.8013 4.36144 12.8125 4.41348 12.8094 4.4905C12.8027 4.6107 12.7319 4.71926 12.6216 4.77816", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M12.9628 4.47339C13.0491 4.48261 13.1139 4.55249 13.113 4.63511C13.113 4.75483 13.078 4.80677 12.9775 4.92589C12.891 5.02851 12.6314 5.20889 12.6379 5.38149C12.6404 5.44675 12.6982 5.50825 12.748 5.51169", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M12.9728 5.82281C12.9254 5.85545 12.865 5.80273 12.8912 5.74675C12.9092 5.70811 12.963 5.65969 13.0446 5.71255C13.1348 5.77095 13.1099 5.95515 12.9369 5.95823C12.7825 5.96101 12.6782 5.75229 12.8258 5.59637C12.9606 5.45405 13.2105 5.48191 13.3672 5.60065C13.4339 5.65119 13.5681 5.78997 13.5968 5.97211C13.6317 6.19251 13.6272 6.46361 13.3882 6.63055C13.2863 6.69667 13.1645 6.72924 13.0413 6.72329C12.8879 6.71689 12.7997 6.61443 12.816 6.49315C12.8319 6.37555 12.9508 6.32579 13.0381 6.37185C13.1288 6.41971 13.1129 6.54117 13.0152 6.55223C12.9578 6.55873 12.9107 6.50091 12.9499 6.46203", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M12.8911 5.74681C12.9165 5.63773 13.0146 5.62757 13.0939 5.62867C13.3101 5.63169 13.4596 5.87595 13.4621 6.11223C13.4653 6.41069 13.3291 6.58645 13.1 6.59579C13.0408 6.59821 12.9387 6.57137 12.9369 6.50249", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M13.0242 5.698C13.2522 5.74626 13.3323 5.94192 13.3323 6.12864C13.3323 6.28096 13.3164 6.48908 13.0052 6.56228", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "square" }), jsxRuntime.jsx("path", { d: "M13.4003 7.7916C13.4134 7.72534 13.3675 7.66156 13.298 7.64914C13.2284 7.63672 13.1614 7.68038 13.1484 7.74664C13.1396 7.79118 13.1575 7.83666 13.1948 7.8648", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M12.9429 7.60657C12.9928 7.68425 13.0634 7.74799 13.1475 7.79133M13.1063 8.12097C12.9988 8.05379 12.7947 7.96575 12.6102 8.05241C12.5418 8.08457 12.4959 8.12435 12.47 8.18921C12.452 8.23964 12.448 8.29363 12.4582 8.34599C12.4685 8.39836 12.4927 8.44732 12.5286 8.48819C12.5563 8.51619 12.6168 8.56967 12.6918 8.57059C12.8159 8.57217 12.8454 8.48947 12.8486 8.47109C12.8633 8.38557 12.811 8.35135 12.7833 8.34203C12.762 8.33487 12.6927 8.33671 12.678 8.38333C12.6717 8.40439 12.6743 8.42697 12.6853 8.44621", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M11.1718 9.76318C11.2061 9.83004 11.1671 9.86366 11.1196 9.86892C11.0493 9.87668 11.0118 9.82382 11.0069 9.77562C11.004 9.73931 11.0164 9.7034 11.0413 9.67577C11.0662 9.64815 11.1017 9.63107 11.1398 9.6283L11.1506 9.6279C11.223 9.6303 11.287 9.6733 11.3136 9.73744C11.3237 9.76097 11.3293 9.786 11.3302 9.81138C11.3328 9.85866 11.3161 9.90508 11.2835 9.94086C11.2381 9.98866 11.1741 10.0166 11.1065 10.0182C10.9679 10.0235 10.8599 9.90002 10.8599 9.77406C10.8599 9.53306 11.2353 9.4016 11.384 9.36778C11.5669 9.32624 11.6782 9.31068 11.9718 9.29514C12.0894 9.28892 12.1755 9.29208 12.3049 9.2793C12.4044 9.272 12.5032 9.25754 12.6004 9.23606C12.7535 9.20514 12.8953 9.13651 13.0118 9.03702C13.1074 8.9544 13.1621 8.89552 13.2063 8.78202C13.2445 8.68406 13.262 8.4901 13.1653 8.34662C13.1289 8.2895 13.0794 8.24088 13.0207 8.20432C12.9619 8.16775 12.8953 8.14418 12.8257 8.13532C12.7033 8.11846 12.596 8.16876 12.5318 8.28444C12.5008 8.34044 12.5104 8.43404 12.535 8.47724C12.5511 8.50385 12.5738 8.52628 12.6012 8.54255C12.6285 8.55882 12.6597 8.56844 12.6918 8.57056C12.8159 8.57212 12.8454 8.48942 12.8486 8.47104C12.8633 8.38552 12.811 8.3513 12.7833 8.34198C12.762 8.33482 12.6927 8.33666 12.678 8.38328C12.6717 8.40434 12.6743 8.42692 12.6853 8.44616M11.0649 9.38038C10.9058 9.44756 10.7892 9.49788 10.6903 9.64658C10.6637 9.69332 10.6502 9.74582 10.6511 9.79898C10.6503 9.8895 10.6901 9.97606 10.7605 10.0369C10.8201 10.0877 10.9001 10.111 10.9793 10.1006C11.0424 10.0947 11.1017 10.0509 11.1115 10.0198", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M12.6363 6.50403C12.5619 6.52769 12.509 6.63575 12.509 6.73883C12.5049 6.83337 12.5549 6.92261 12.6396 6.97207", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M12.718 6.88818C12.5841 7.04678 12.5131 7.14092 12.509 7.32978C12.5052 7.50704 12.5645 7.62832 12.6756 7.75584", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M12.0045 4.25159L12.0159 4.23539C12.0715 4.15765 12.1695 4.13717 12.2413 4.18875C12.3278 4.25095 12.3496 4.35679 12.3262 4.46863C12.3172 4.50408 12.3008 4.53744 12.278 4.56672C12.2551 4.596 12.2264 4.6206 12.1933 4.63905", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M8.69861 4.2136C8.6137 4.17628 8.54382 4.18346 8.49125 4.243C8.43084 4.31142 8.42855 4.41206 8.44064 4.4686C8.4586 4.55258 8.48407 4.58744 8.55419 4.64836", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M8.48465 4.25102C8.38343 4.18728 8.27378 4.21434 8.21362 4.29922C8.16952 4.36142 8.15826 4.41346 8.16137 4.49048C8.16805 4.61068 8.2389 4.71924 8.34913 4.77814", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M8.19251 4.33624C8.13863 4.3423 8.0889 4.36681 8.05258 4.4052C8.01627 4.44358 7.99584 4.49324 7.99511 4.5449C7.99511 4.6833 8.03087 4.73926 8.1125 4.845C8.19434 4.95098 8.4619 5.1451 8.4619 5.3659C8.4619 5.49962 8.42271 5.58514 8.32149 5.62868C8.25622 5.65676 8.17991 5.62636 8.14515 5.59648C8.06025 5.52338 8.09421 5.39522 8.1827 5.3799C8.29045 5.36124 8.31072 5.5228 8.20557 5.51208M8.00792 4.47344C7.92465 4.47964 7.84271 4.5479 7.84271 4.6316C7.84271 4.75132 7.8928 4.80682 7.99322 4.92592C8.07976 5.02854 8.32422 5.20536 8.31769 5.37796C8.31523 5.44322 8.26918 5.52302 8.22344 5.51368", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M7.81198 6.87883C7.85116 6.78863 7.95238 6.82907 7.95862 6.87883C7.97296 6.99347 7.86748 7.02811 7.79238 7.00943C7.7575 7.00085 7.72789 6.97891 7.71057 6.94883C7.7004 6.93121 7.69402 6.91183 7.69182 6.89182C7.68962 6.87182 7.69164 6.8516 7.69776 6.83235C7.7035 6.81361 7.71295 6.79609 7.7256 6.78073C7.73711 6.76585 7.75133 6.75305 7.76758 6.74293C7.79646 6.72537 7.82794 6.72363 7.87729 6.72363C8.06016 6.72363 8.22016 6.92941 8.27389 7.14317C8.30384 7.26673 8.30668 7.39483 8.28221 7.51947C8.25497 7.65189 8.18817 7.77401 8.08985 7.87117C8.03362 7.92235 7.97006 7.96568 7.90106 7.99987C7.85739 8.02166 7.81173 8.03962 7.76464 8.05353C7.72271 8.06623 7.67783 8.06723 7.63533 8.05637C7.54244 8.02983 7.48282 7.94717 7.53117 7.83977C7.5688 7.75617 7.7075 7.71539 7.76954 7.81801C7.77805 7.8328 7.78258 7.84937 7.78272 7.86623C7.78375 7.89393 7.77172 7.92063 7.74994 7.93903C7.70278 7.96759 7.62735 7.95951 7.63085 7.88021", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M7.67003 7.94979C7.70432 7.96239 7.72307 7.96067 7.76572 7.94263C7.78324 7.93523 7.80329 7.92377 7.82677 7.91107C7.91035 7.86585 8.00964 7.79459 8.10269 7.62821C8.12758 7.58406 8.14644 7.53707 8.1588 7.48837C8.16797 7.45424 8.17346 7.41931 8.17518 7.38413C8.17679 7.31878 8.16999 7.2535 8.15494 7.18973C8.1357 7.08627 8.08967 6.98899 8.02104 6.90673C7.98335 6.85747 7.95084 6.82741 7.88064 6.82587M7.5707 7.79159C7.55766 7.72533 7.6035 7.66155 7.67307 7.64913C7.74265 7.63671 7.80961 7.68037 7.82266 7.74663C7.83141 7.79117 7.81356 7.83665 7.77627 7.86479M7.62047 7.67019C7.62492 7.64133 7.64078 7.61518 7.66481 7.59709C7.68884 7.57899 7.71921 7.57033 7.74972 7.57285C7.78024 7.57538 7.80858 7.58892 7.82897 7.61069C7.84935 7.63246 7.86023 7.66083 7.85938 7.68999C7.85949 7.72035 7.84735 7.74959 7.82547 7.77169", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M7.85443 7.66396C7.98196 7.5729 8.05748 7.43028 8.05851 7.27848C8.05927 7.149 8.00464 7.01726 7.94097 6.96594", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M8.02809 7.60657C7.9782 7.68425 7.90764 7.74799 7.82355 7.79133", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M8.35404 8.05259C8.32361 7.98441 8.26313 7.95289 8.16464 7.94287C8.06674 7.93293 7.98199 7.95855 7.89526 8.00297C7.726 8.08967 7.63162 8.18287 7.56871 8.35579C7.54887 8.414 7.53961 8.47502 7.54134 8.53621C7.54428 8.64829 7.57417 8.77081 7.60625 8.83005C7.63427 8.88173 7.70747 9.10993 8.10912 9.26741C8.3435 9.35931 8.70342 9.38049 8.9516 9.38981C9.29297 9.40265 9.60795 9.41471 9.7908 9.62927", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M7.8645 8.12096C7.97202 8.05378 8.1761 7.96574 8.36061 8.0524C8.42904 8.08456 8.47489 8.12434 8.50078 8.1892C8.51878 8.23964 8.52284 8.29363 8.51259 8.34599C8.50234 8.39835 8.47811 8.44732 8.44223 8.48818C8.41449 8.51618 8.35403 8.56966 8.27896 8.57058C8.15489 8.57216 8.12539 8.48946 8.12224 8.47108C8.10754 8.38556 8.15978 8.35134 8.18754 8.34202C8.20884 8.33486 8.2781 8.3367 8.29278 8.38332C8.2991 8.40438 8.29649 8.42696 8.28549 8.4462", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M8.29203 8.42901C8.29765 8.41087 8.29804 8.39163 8.29315 8.3733C8.28827 8.35497 8.27831 8.33823 8.26429 8.32483C8.21286 8.27741 8.13556 8.26619 8.07162 8.29683C8.03909 8.31241 8.01064 8.33473 7.98835 8.36215L7.95081 8.41191C7.93592 8.43649 7.92393 8.46257 7.91502 8.48965C7.83428 8.70821 7.96569 8.94029 8.1304 9.04009C8.27408 9.12717 8.42104 9.15205 8.60227 9.16759C8.68612 9.17479 8.73364 9.17633 8.81779 9.18005C8.88547 9.18303 8.94396 9.18197 8.99902 9.18133L9.13124 9.18005C9.21016 9.17725 9.28918 9.17828 9.36799 9.18315C9.46354 9.18977 9.53542 9.19211 9.61617 9.20493C9.66892 9.21329 9.73074 9.22137 9.79557 9.23523C9.81502 9.23937 9.83474 9.24277 9.85454 9.24845L9.89406 9.25995C10.0065 9.28963 10.1142 9.3335 10.2145 9.39037C10.2434 9.40579 10.2707 9.42393 10.2959 9.44453C10.3126 9.46043 10.3268 9.46965 10.3405 9.48249C10.4032 9.54131 10.4675 9.60501 10.4825 9.69125C10.4848 9.70787 10.4858 9.72463 10.4853 9.74139C10.4853 9.79735 10.4374 9.87355 10.3084 9.89843", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M9.79899 9.76318C9.7647 9.83004 9.8037 9.86366 9.85124 9.86892C9.92144 9.87668 9.95899 9.82382 9.96388 9.77562C9.96676 9.73931 9.95438 9.7034 9.92946 9.67577C9.90455 9.64815 9.86914 9.63107 9.83102 9.6283L9.8202 9.6279C9.74782 9.6303 9.68381 9.6733 9.65716 9.73744C9.64712 9.76096 9.64151 9.786 9.64061 9.81138C9.63799 9.85866 9.65472 9.90508 9.68729 9.94086C9.70974 9.96452 9.73701 9.98358 9.76744 9.99687C9.79788 10.0102 9.83083 10.0174 9.8643 10.0182C10.0029 10.0235 10.1108 9.90002 10.1108 9.77406C10.1108 9.53306 9.73551 9.4016 9.58675 9.36778C9.40388 9.32624 9.29262 9.31068 8.99896 9.29514C8.88142 9.28892 8.79532 9.29208 8.6659 9.2793C8.56638 9.272 8.46759 9.25754 8.37036 9.23606C8.2173 9.20514 8.07543 9.13651 7.95893 9.03702C7.86338 8.9544 7.80872 8.89552 7.76447 8.78202C7.72631 8.68406 7.70878 8.4901 7.80544 8.34662C7.84191 8.2895 7.89134 8.24087 7.9501 8.20431C8.00887 8.16775 8.07548 8.14418 8.14505 8.13532C8.26748 8.11846 8.37484 8.16876 8.43895 8.28444C8.46999 8.34044 8.46041 8.43404 8.43584 8.47724C8.4031 8.53128 8.3443 8.56626 8.27895 8.57056C8.15486 8.57212 8.12538 8.48942 8.12221 8.47104C8.10751 8.38552 8.15975 8.3513 8.18752 8.34198C8.20881 8.33482 8.27807 8.33666 8.29277 8.38328C8.29908 8.40434 8.29646 8.42692 8.28548 8.44616", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M8.96637 4.25159L8.95489 4.23539C8.89936 4.15765 8.80134 4.13717 8.72956 4.18875C8.64304 4.25095 8.6212 4.35679 8.64468 4.46863C8.66282 4.54025 8.71076 4.60175 8.77748 4.63905", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M12.0338 4.48736C11.9016 4.6242 11.7693 4.66788 11.5718 4.67396C11.5101 4.67586 11.3922 4.6553 11.3236 4.6088C11.2795 4.57892 11.2305 4.5278 11.2616 4.43916C11.2823 4.37992 11.3822 4.2137 11.3871 4.09862C11.3946 3.92282 11.3236 3.8265 11.2126 3.78918C11.0073 3.72018 10.787 3.9134 10.6542 3.95556C10.6003 3.974 10.5432 3.98244 10.486 3.98042C10.4284 3.98245 10.3709 3.97401 10.3166 3.95556C10.1838 3.9134 9.96347 3.72016 9.75822 3.78916C9.64719 3.8265 9.57619 3.92282 9.58367 4.09862C9.58858 4.21368 9.6885 4.3799 9.70925 4.43916C9.74026 4.52778 9.69125 4.57892 9.64719 4.60878C9.57863 4.6553 9.46071 4.67584 9.39901 4.67396C9.20147 4.66788 9.06921 4.6242 8.93695 4.48736", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M9.75616 9.32538C9.78233 9.33512 9.76253 9.31948 9.92826 9.38944C10.0874 9.45662 10.2003 9.51544 10.2992 9.66416C10.3258 9.7109 10.3393 9.7634 10.3384 9.81656C10.3383 9.84244 10.3351 9.86822 10.3287 9.89338", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M9.76691 10.0012C9.80016 10.0169 9.83653 10.0257 9.87361 10.027C10.0122 10.0323 10.1201 9.90881 10.1201 9.78287C10.1201 9.69555 10.0702 9.62199 10.0003 9.56287", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M9.79691 9.76302C9.76344 9.83408 9.81113 9.87253 9.85865 9.87779C9.87211 9.87924 9.88574 9.87815 9.89876 9.87459C9.91177 9.87102 9.92393 9.86505 9.93452 9.85701C9.94511 9.84897 9.95394 9.83903 9.96049 9.82774C9.96705 9.81645 9.97121 9.80404 9.97273 9.79122L9.97327 9.78448C9.97541 9.75893 9.97011 9.73331 9.95797 9.71043C9.94583 9.68755 9.92731 9.6683 9.90443 9.65479", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M12.8001 4.3374C12.9055 4.3374 12.9974 4.4491 12.9974 4.56374C12.9974 4.69584 12.9236 4.7767 12.8696 4.83784C12.8261 4.88704 12.7789 4.9311 12.723 4.9848", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M12.6751 4.23156C12.7123 4.24866 12.7438 4.27506 12.7664 4.30794C12.8105 4.37014 12.8217 4.42218 12.8186 4.4992C12.8134 4.6312 12.7137 4.7226 12.6245 4.77838M12.4679 4.23156C12.4754 4.23776 12.4825 4.24454 12.4889 4.25184C12.5493 4.32026 12.554 4.4214 12.5395 4.47746C12.5177 4.56172 12.4885 4.59804 12.4167 4.64844M12.2505 4.19696C12.337 4.25916 12.3628 4.36674 12.3341 4.47748C12.3136 4.55662 12.2614 4.60404 12.1962 4.64182M12.5613 5.92556C12.5717 5.9545 12.5887 5.96454 12.6103 5.986C12.6662 6.03916 12.7359 6.07716 12.8124 6.09608C12.8824 6.11566 12.9579 6.10572 13.0196 6.06874M7.67105 7.75736C7.71172 7.75666 7.7523 7.78282 7.77884 7.82672C7.78736 7.8415 7.79189 7.85806 7.79203 7.87492C7.79283 7.90166 7.78046 7.9272 7.75858 7.94398C7.71143 7.97258 7.6277 7.96028 7.63121 7.88098", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M7.92395 6.72797C8.08571 6.75673 8.24144 6.94255 8.29241 7.14527C8.32237 7.26882 8.3252 7.39693 8.30073 7.52157C8.27349 7.65399 8.20669 7.77611 8.10837 7.87327C8.08684 7.89415 8.06351 7.91325 8.03858 7.93037L8.00408 7.95263M7.74398 7.57337C7.81042 7.57337 7.86859 7.63401 7.86859 7.69883C7.86869 7.72919 7.85656 7.75843 7.83467 7.78053M7.69904 7.64697C7.73459 7.64896 7.7681 7.66345 7.79306 7.68764C7.81802 7.71184 7.83266 7.744 7.83413 7.77789C7.83415 7.79631 7.82978 7.81449 7.82136 7.83107C7.81293 7.84765 7.80067 7.86219 7.78549 7.87361", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M8.33358 6.98401C8.39715 7.06527 8.43911 7.13523 8.45862 7.22541M8.45643 7.49061C8.44618 7.53448 8.4302 7.57695 8.40889 7.61705C8.37867 7.67119 8.33927 7.72019 8.2923 7.76211", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M8.34369 6.51038C8.39824 6.54686 8.43881 6.59931 8.45921 6.65976", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M8.4609 6.35844C8.44479 6.41164 8.40827 6.45192 8.35031 6.5023M8.04993 5.96544L8.12068 5.94772L8.16255 5.91756L8.18953 5.88122L8.2128 5.82448L8.22213 5.77838", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M7.90673 5.72821C7.87909 5.73452 7.85219 5.74345 7.82642 5.75487C7.78019 5.77529 7.74034 5.80684 7.7108 5.84639C7.67182 5.89899 7.6491 5.97211 7.63503 6.03607C7.62445 6.10526 7.62624 6.17565 7.64032 6.24427C7.65326 6.30711 7.67896 6.36693 7.71594 6.42041C7.72592 6.43529 7.7373 6.44927 7.74998 6.46215C7.79245 6.50257 7.83163 6.52745 7.89692 6.51501", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M8.30295 5.43158C8.29149 5.47172 8.26883 5.52144 8.2027 5.516", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M8.0613 5.70402C7.99779 5.6449 7.86327 5.6295 7.72954 5.71006C7.71159 5.7214 7.69442 5.73382 7.67813 5.74724C7.66032 5.7619 7.64447 5.77858 7.63088 5.79688C7.61356 5.82104 7.59823 5.84644 7.58506 5.87288C7.57151 5.8993 7.56114 5.92708 7.55411 5.95572C7.53634 6.01944 7.52912 6.0854 7.53269 6.15124C7.53638 6.1815 7.53941 6.2093 7.54459 6.23488C7.55673 6.30286 7.58143 6.36825 7.61757 6.428C7.64711 6.47466 7.72059 6.5818 7.87079 6.59594C7.92982 6.6015 8.03064 6.57574 8.03391 6.50264", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M11.936 4.40836C11.946 4.35674 12.0114 4.34676 12.0359 4.37726C12.0737 4.42422 12.0487 4.5049 11.9719 4.52778C11.9487 4.53276 11.9246 4.53131 11.9023 4.52359C11.88 4.51587 11.8605 4.50221 11.8461 4.48424C11.8242 4.45496 11.8155 4.41861 11.8217 4.38318C11.8279 4.34774 11.8487 4.31611 11.8794 4.29524L11.8853 4.29144C11.9746 4.22676 12.1188 4.24168 12.1661 4.35052C12.2272 4.49092 12.0943 4.5962 11.9718 4.6755C11.8177 4.77534 11.642 4.7935 11.5098 4.79212C11.2093 4.789 10.9808 4.65218 10.8322 4.57444C10.7976 4.55632 10.762 4.56004 10.744 4.58064C10.7224 4.60668 10.726 4.6443 10.7522 4.66618M11.9965 4.35996C12.0168 4.35894 12.0361 4.36868 12.0466 4.3853C12.0844 4.43226 12.0568 4.51296 11.9799 4.53582M12.5652 6.14656C12.4507 6.26522 12.556 6.46888 12.6415 6.51492C12.6711 6.53686 12.6838 6.52522 12.7075 6.53842", stroke: "#713F2A", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M12.5713 5.91983C12.5337 5.94471 12.5205 5.97267 12.519 6.02123C12.5151 6.06739 12.532 6.11295 12.5653 6.14667C12.6277 6.20851 12.7498 6.26235 12.8681 6.26377C12.9385 6.26571 13.0076 6.24657 13.066 6.20905C13.1286 6.17011 13.1734 6.11015 13.1917 6.04111M12.5072 7.97203C12.5071 7.99799 12.5056 8.02394 12.5028 8.04977C12.4837 8.19953 12.4111 8.33847 12.2971 8.44319C12.2421 8.49641 12.1773 8.53961 12.106 8.57069C12.0379 8.60305 11.9654 8.62608 11.8905 8.63909C11.8166 8.65529 11.7411 8.66415 11.6652 8.66553C11.5958 8.66823 11.5263 8.66653 11.4571 8.66045C11.3704 8.65473 11.3223 8.64325 11.2358 8.63599C11.1748 8.62915 11.1136 8.62537 11.0522 8.62467C10.989 8.62291 10.9258 8.62723 10.8635 8.63755C10.8052 8.64591 10.7482 8.66105 10.6937 8.68265C10.6056 8.71665 10.506 8.77593 10.4847 8.80237C10.4635 8.77593 10.3639 8.71665 10.2758 8.68265C10.2213 8.66107 10.1643 8.64593 10.106 8.63755C10.0437 8.62723 9.9805 8.62291 9.91731 8.62467C9.85595 8.62535 9.79465 8.62913 9.7337 8.63599C9.64716 8.64323 9.59909 8.65473 9.51241 8.66045C9.44323 8.66657 9.3737 8.66825 9.3043 8.66553C9.22844 8.66413 9.15295 8.65529 9.07901 8.63911C9.00414 8.62609 8.93158 8.60306 8.86349 8.57069C8.79219 8.53963 8.72745 8.49641 8.67245 8.44319C8.55844 8.33847 8.48578 8.19953 8.46673 8.04977C8.46386 8.02395 8.46236 7.99799 8.46228 7.97203V4.79163H12.5058V7.97203H12.5072Z", stroke: "#713F2A", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M8.13563 8.42638C8.13562 8.40566 8.14425 8.38579 8.15962 8.37112C8.17498 8.35645 8.19583 8.3482 8.21759 8.34816C8.23934 8.34815 8.26021 8.35637 8.27561 8.37101C8.29101 8.38564 8.29968 8.4055 8.29972 8.42622V8.4264C8.29968 8.44712 8.29101 8.46698 8.27561 8.48161C8.26021 8.49625 8.23934 8.50446 8.21759 8.50446C8.19586 8.50442 8.17504 8.49619 8.15968 8.48156C8.14431 8.46692 8.13566 8.44709 8.13563 8.4264V8.42638ZM7.63184 7.87418C7.63184 7.83554 7.65779 7.8042 7.6898 7.8042C7.7218 7.8042 7.74776 7.83554 7.74776 7.87418C7.74776 7.91282 7.7218 7.94416 7.6898 7.94416C7.65779 7.94416 7.63184 7.91282 7.63184 7.87418Z", fill: "#C6AA76", stroke: "#C7B37F", strokeWidth: "0.010773" }), jsxRuntime.jsx("path", { d: "M7.91807 6.4872C7.9204 6.45776 7.94734 6.4357 7.97823 6.4379C8.00912 6.4401 8.03231 6.46578 8.03 6.4952C8.02779 6.52308 8.00339 6.54464 7.97403 6.54464C7.94195 6.54346 7.91691 6.51778 7.91807 6.4872ZM8.92313 4.4362C8.924 4.42304 8.93032 4.41074 8.94069 4.40201C8.95107 4.39327 8.96466 4.38882 8.97848 4.38962C8.99231 4.39045 9.00522 4.39646 9.01439 4.40635C9.02355 4.41623 9.02823 4.42917 9.02739 4.44234C9.02582 4.46658 9.0061 4.48618 8.98075 4.48874C8.96582 4.48897 8.95139 4.48359 8.9406 4.47375C8.92981 4.46391 8.92353 4.45042 8.92313 4.4362Z", fill: "#C6AA76" }), jsxRuntime.jsx("path", { d: "M7.85228 6.81079C7.83157 6.81901 7.81534 6.83497 7.80738 6.85495C7.80278 6.86689 7.80008 6.87941 7.79938 6.89211M7.95413 7.72799L7.98334 7.69425C7.9914 7.68484 7.99892 7.67503 8.00587 7.66485C8.01309 7.65407 8.01633 7.64751 8.02269 7.63625L8.04474 7.59505M8.00327 8.03059L7.95348 8.05235L7.91757 8.07241L7.87672 8.09855L7.83674 8.12901M8.32772 6.94499L8.30077 6.91857L8.27137 6.89213C8.2597 6.88275 8.25226 6.87847 8.24004 6.86973", stroke: "#C7B37F", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M8.34055 6.52942C8.32757 6.5358 8.31422 6.54146 8.30054 6.54638C8.28477 6.55194 8.2682 6.55518 8.2514 6.55602", stroke: "#C7B37F", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M7.79095 6.01359C7.79459 6.02933 7.79917 6.04485 7.80467 6.06009C7.81242 6.079 7.82262 6.09691 7.83503 6.11341C7.84682 6.13134 7.86085 6.14784 7.87682 6.16255C7.89058 6.17571 7.90587 6.18735 7.92239 6.19723C7.93821 6.20633 7.9545 6.21463 7.97122 6.22211M7.93879 6.03899C7.95197 6.04667 7.96561 6.05363 7.97962 6.05983C7.99251 6.06505 8.00589 6.06905 8.0196 6.07179C8.03805 6.07602 8.05697 6.07817 8.07595 6.07819C8.09648 6.07899 8.11704 6.07742 8.13718 6.07351M8.37244 4.80299L8.30533 4.76567C8.28328 4.75183 8.26272 4.73595 8.24395 4.71825C8.22998 4.70593 8.21725 4.69239 8.20591 4.67781C8.19409 4.66261 8.18958 4.65267 8.17914 4.63661M8.42515 4.49439C8.43099 4.51267 8.43803 4.53059 8.44622 4.54803C8.4581 4.57153 8.47387 4.59305 8.49292 4.61179C8.52262 4.64283 8.54779 4.65163 8.58286 4.67709M8.63053 4.49219C8.63641 4.50867 8.64339 4.52477 8.65143 4.54039C8.65907 4.55399 8.66821 4.56675 8.67871 4.57849C8.69148 4.59397 8.7063 4.60781 8.72279 4.61969C8.7424 4.63281 8.76304 4.64451 8.78451 4.65469", stroke: "#C7B37F", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M10.9364 4.23817C10.9347 4.18519 10.8799 4.17969 10.8589 4.17969C10.7983 4.17969 10.7819 4.21569 10.7063 4.25433C10.6116 4.30281 10.5708 4.31357 10.4866 4.31429C10.4023 4.31357 10.3604 4.30279 10.2657 4.25433C10.1901 4.21569 10.1774 4.18085 10.1168 4.18085C10.0965 4.18149 10.0774 4.18977 10.0635 4.20386C10.0497 4.21795 10.0423 4.2367 10.0429 4.25599L10.043 4.25749C10.0427 4.26651 10.0433 4.27554 10.045 4.28443C10.046 4.28851 10.0512 4.28723 10.0528 4.29083C10.051 4.27185 10.057 4.25295 10.0696 4.23817C10.0825 4.22241 10.102 4.21281 10.123 4.21191C10.1835 4.21191 10.206 4.24893 10.2816 4.28759C10.3763 4.33605 10.4171 4.34683 10.5013 4.34755C10.5855 4.34683 10.6275 4.33605 10.7222 4.28759C10.7978 4.24893 10.8195 4.20883 10.8801 4.20883C10.8901 4.209 10.8998 4.21239 10.9076 4.21844C10.9153 4.22449 10.9207 4.23285 10.9228 4.24217C10.925 4.25063 10.926 4.25932 10.9257 4.26803C10.9263 4.27045 10.9294 4.27021 10.9301 4.27283C10.9348 4.26185 10.937 4.25002 10.9364 4.23817Z", fill: "#713F2A", stroke: "#713F2A", strokeWidth: "0.005817" }), jsxRuntime.jsx("path", { d: "M8.67555 8.68841C8.69256 8.67097 8.70543 8.67753 8.70858 8.66949C8.71089 8.66355 8.70586 8.66295 8.69893 8.66049C8.68969 8.65719 8.6799 8.65529 8.67066 8.65201C8.66106 8.64861 8.65239 8.64391 8.64279 8.64049C8.63882 8.63909 8.62967 8.63463 8.62704 8.64129C8.62225 8.65349 8.66068 8.65245 8.64779 8.68529C8.64155 8.69935 8.63246 8.71209 8.62104 8.72279L8.53407 8.81293C8.53212 8.81501 8.52887 8.81945 8.52689 8.81873C8.52492 8.81801 8.52517 8.81255 8.52515 8.80973L8.52641 8.68193C8.52561 8.66415 8.52775 8.64635 8.53277 8.62921C8.53855 8.61453 8.55629 8.62683 8.56001 8.61741C8.56234 8.61145 8.56056 8.61121 8.54999 8.60745C8.5447 8.60557 8.53458 8.60355 8.51345 8.59603L8.48063 8.58275C8.47567 8.58099 8.46652 8.57455 8.46324 8.58295C8.46228 8.58541 8.46574 8.58903 8.4666 8.58973C8.47761 8.59561 8.48374 8.60725 8.48214 8.61917L8.48454 8.85187C8.48472 8.86867 8.48664 8.87333 8.48995 8.87451C8.49359 8.87581 8.49604 8.87429 8.50325 8.86651L8.67555 8.68841Z", fill: "#713F2A" }), jsxRuntime.jsx("path", { d: "M8.77697 8.72437C8.78817 8.69057 8.80915 8.71095 8.81316 8.69885C8.81456 8.69457 8.81314 8.69335 8.80304 8.69033L8.75919 8.67873L8.72164 8.66589C8.71862 8.66497 8.71057 8.66139 8.70856 8.66743C8.70444 8.67989 8.74573 8.68133 8.73502 8.71371L8.67846 8.88455C8.66727 8.91835 8.64612 8.90183 8.64201 8.91427C8.64142 8.91607 8.64125 8.91875 8.6443 8.91967L8.68243 8.92955L8.73308 8.94633C8.74081 8.94865 8.7443 8.94813 8.7456 8.94421C8.74938 8.93281 8.70629 8.93789 8.72078 8.89411L8.77697 8.72437ZM8.89835 8.75857C8.90503 8.73711 8.91551 8.74005 8.92803 8.74357C8.96217 8.75323 8.97286 8.78503 8.96196 8.82011C8.95539 8.84121 8.94714 8.86067 8.89575 8.84617C8.88561 8.84331 8.87309 8.83977 8.87588 8.83085L8.89835 8.75857ZM8.80524 8.91249C8.79123 8.95757 8.7675 8.93805 8.76395 8.94949C8.76173 8.95665 8.76916 8.95757 8.77288 8.95863L8.82538 8.97189C8.8396 8.97589 8.84827 8.97989 8.85402 8.98151C8.86179 8.98371 8.86515 8.98231 8.86618 8.97911C8.87017 8.96623 8.83214 8.97145 8.84405 8.93317L8.86331 8.87127C8.86719 8.85875 8.86595 8.85567 8.88386 8.86073C8.90077 8.86549 8.90585 8.87043 8.90873 8.88837L8.91954 8.95291C8.92358 8.97663 8.9274 9.00221 8.95409 9.00975C8.96761 9.01355 8.99239 9.01199 8.99584 9.00089C8.9968 8.99833 8.99539 8.99549 8.99271 8.99457C8.98895 8.99349 8.9849 8.99467 8.98151 8.99373C8.97645 8.99291 8.97236 8.98931 8.97112 8.98457L8.94886 8.87049C8.94997 8.86691 8.96079 8.86647 8.97313 8.86099C8.98989 8.85335 9.00218 8.83897 9.00665 8.82181C9.01177 8.80535 9.02072 8.75301 8.94668 8.73211L8.87792 8.71427L8.83882 8.70167C8.83477 8.70055 8.83082 8.70137 8.82971 8.70495C8.82572 8.71783 8.86666 8.71499 8.85421 8.75505L8.80524 8.91249ZM9.08168 8.98957C9.07081 9.03275 9.03645 9.00647 9.03288 9.02061C9.03086 9.02861 9.03679 9.02957 9.04296 9.03099L9.09132 9.04051L9.13897 9.05295C9.1489 9.05521 9.1555 9.05787 9.15768 9.04915C9.16025 9.03901 9.11371 9.03949 9.12497 8.99485L9.16629 8.83085C9.1707 8.81345 9.17459 8.81241 9.18864 8.81563L9.21779 8.82229C9.25758 8.82985 9.23645 8.86763 9.25017 8.87075C9.25909 8.87279 9.25888 8.85779 9.2593 8.85327L9.26392 8.81903C9.26451 8.81533 9.26579 8.81023 9.26065 8.80907L9.15535 8.78653L9.05081 8.76109C9.04567 8.75989 9.04439 8.76499 9.04313 8.76853L9.02557 8.81517C9.02368 8.81973 9.01963 8.82725 9.02683 8.82889C9.04225 8.83241 9.04395 8.78253 9.08269 8.79139L9.1115 8.79799C9.12555 8.80119 9.12851 8.80379 9.12412 8.82121L9.08171 8.98957H9.08168ZM9.49832 8.88837C9.51189 8.86837 9.52575 8.87273 9.52741 8.86429C9.52861 8.85805 9.52355 8.85829 9.51628 8.85701C9.50656 8.85529 9.49656 8.85505 9.48686 8.85333C9.4768 8.85155 9.46737 8.84837 9.45733 8.84659C9.45317 8.84585 9.44333 8.84299 9.44196 8.84995C9.43946 8.86281 9.47714 8.85541 9.47042 8.88989C9.46685 8.90477 9.46021 8.91882 9.45088 8.93123L9.38169 9.03439C9.38016 9.03677 9.37776 9.04167 9.37568 9.04129C9.3736 9.04091 9.37287 9.03549 9.37232 9.03273L9.35023 8.90663C9.34622 8.88925 9.3451 8.87138 9.34691 8.85367C9.34992 8.83827 9.36966 8.84745 9.37159 8.83753C9.37279 8.83129 9.37098 8.83135 9.35989 8.82939C9.35435 8.82841 9.34402 8.82811 9.32182 8.82419L9.28709 8.81655C9.28188 8.81563 9.27171 8.81079 9.26999 8.81959C9.26949 8.82217 9.27356 8.82517 9.27455 8.82571C9.28643 8.82969 9.2946 8.84015 9.29521 8.85213L9.33998 9.08093C9.34324 9.09743 9.34599 9.10171 9.34946 9.10233C9.35328 9.10301 9.35544 9.10111 9.36111 9.09223L9.49832 8.88837ZM9.51785 9.09857C9.51804 9.10769 9.51718 9.11057 9.52548 9.11417C9.54328 9.12409 9.56235 9.13185 9.58222 9.13721C9.62777 9.14445 9.66553 9.11681 9.67399 9.06861C9.6822 9.02185 9.66202 9.00237 9.62785 8.97915C9.58507 8.95001 9.56678 8.94215 9.57111 8.91751C9.57235 8.89795 9.59001 8.88305 9.61055 8.88423C9.61254 8.88435 9.61454 8.88461 9.61651 8.88503C9.67634 8.89455 9.66952 8.96383 9.67752 8.96511C9.68516 8.96633 9.68697 8.96209 9.68772 8.95387L9.69255 8.90395C9.69335 8.89537 9.69537 8.89001 9.69014 8.88919C9.68562 8.88847 9.67588 8.89299 9.67136 8.89225C9.66095 8.89059 9.64885 8.87391 9.62033 8.86937C9.57964 8.86287 9.54639 8.88937 9.53896 8.93169C9.53215 8.97033 9.55015 8.98795 9.5776 9.00669C9.62901 9.04175 9.65009 9.05003 9.64459 9.08131C9.64211 9.10587 9.61918 9.12387 9.59339 9.12151C9.59169 9.12135 9.58999 9.12111 9.58831 9.12077C9.54971 9.11461 9.53402 9.07769 9.52909 9.04057C9.52856 9.03557 9.52846 9.03217 9.52287 9.03127C9.51418 9.02989 9.5158 9.04111 9.51594 9.04643L9.51785 9.09857ZM10.037 8.95917C10.0483 8.93793 10.0625 8.94087 10.0632 8.93231C10.0638 8.92599 10.0588 8.92673 10.0514 8.92619C10.0415 8.92545 10.0316 8.92619 10.0217 8.92547C10.0115 8.92471 10.0018 8.92247 9.99161 8.92171C9.98739 8.92139 9.97729 8.91951 9.9767 8.92657C9.97563 8.93959 10.0123 8.92849 10.0094 8.96347C10.0075 8.97861 10.0024 8.99324 9.99451 9.00651L9.93699 9.11599C9.93573 9.11851 9.93389 9.12361 9.93179 9.12347C9.92969 9.12333 9.92834 9.11797 9.9275 9.11527L9.89172 8.99207C9.88579 8.97519 9.88273 8.95753 9.88258 8.93973C9.88388 8.92413 9.90451 8.93127 9.90535 8.92123C9.90585 8.91491 9.90409 8.91515 9.89283 8.91431C9.8872 8.91391 9.87687 8.91463 9.8544 8.91291L9.81902 8.90877C9.81374 8.90837 9.80308 8.90457 9.80234 8.91351C9.80211 8.91611 9.80652 8.91871 9.80753 8.91915C9.81979 8.92191 9.82907 8.93149 9.83101 8.94335L9.90064 9.16643C9.90568 9.18253 9.9089 9.18651 9.9124 9.18677C9.91627 9.18705 9.91822 9.18495 9.92288 9.17557L10.037 8.95917Z", fill: "#713F2A" }), jsxRuntime.jsx("path", { d: "M10.0926 9.14C10.0922 9.17806 10.0584 9.17106 10.0583 9.186C10.0583 9.19234 10.0653 9.19052 10.0692 9.19056L10.0995 9.18932L10.1411 9.19116C10.1457 9.19116 10.1545 9.19164 10.1546 9.18642C10.1547 9.16888 10.1094 9.19388 10.11 9.12222L10.1112 8.99538C10.1112 8.99202 10.1119 8.9894 10.1141 8.98942C10.1158 8.98942 10.1179 8.99132 10.1204 8.99432L10.2882 9.18976C10.29 9.193 10.2935 9.19504 10.2973 9.19506C10.3016 9.19506 10.3016 9.19212 10.3016 9.1839L10.3036 8.97458C10.3039 8.93542 10.3338 8.94462 10.3339 8.93342C10.3339 8.9323 10.334 8.92856 10.3273 8.92852C10.3241 8.92852 10.3117 8.92988 10.2895 8.9297L10.2493 8.92788C10.2448 8.92788 10.2437 8.93156 10.2436 8.93416C10.2435 8.94648 10.2866 8.94012 10.2863 8.97408L10.2852 9.09834C10.285 9.10766 10.2843 9.11214 10.2822 9.11212C10.2801 9.1121 10.2759 9.10758 10.2714 9.10232L10.1311 8.9366C10.1248 8.92944 10.1291 8.92688 10.1178 8.92678C10.0991 8.92658 10.0899 8.92804 10.0808 8.92796C10.0741 8.92796 10.0677 8.92636 10.061 8.9263C10.0577 8.92622 10.055 8.92866 10.0549 8.93178C10.0549 8.93206 10.0549 8.93232 10.055 8.9326C10.0548 8.9505 10.0945 8.92658 10.0939 8.99822L10.0926 9.14002V9.14ZM10.434 8.972C10.4344 8.93656 10.4607 8.9502 10.4608 8.93752C10.4608 8.93304 10.4591 8.93228 10.4485 8.93218C10.4284 8.93198 10.4157 8.9334 10.403 8.9333C10.3907 8.9333 10.3769 8.93158 10.3632 8.9315C10.36 8.93146 10.3512 8.93026 10.3512 8.93662C10.3511 8.94968 10.389 8.93956 10.3887 8.97352L10.389 9.15262C10.3887 9.18806 10.3634 9.17816 10.3633 9.19122C10.3633 9.19308 10.3639 9.1957 10.3671 9.19572C10.3763 9.19592 10.3915 9.19444 10.4066 9.19456L10.4602 9.1965C10.4683 9.1965 10.4715 9.1951 10.4715 9.191C10.4717 9.17906 10.432 9.1959 10.4324 9.15L10.434 8.972ZM10.5819 9.1454C10.5823 9.1898 10.5423 9.17222 10.5424 9.18678C10.5425 9.19498 10.5485 9.19458 10.5548 9.1945L10.6042 9.1926L10.6536 9.19368C10.6638 9.19368 10.6709 9.19468 10.6708 9.1857C10.6707 9.17526 10.6256 9.18644 10.6252 9.14056L10.6237 8.9719C10.6235 8.954 10.627 8.9521 10.6415 8.95198L10.6714 8.95176C10.712 8.94994 10.7011 8.99144 10.7152 8.99132C10.7243 8.99132 10.7203 8.97672 10.7196 8.97226L10.7154 8.93796C10.715 8.93422 10.715 8.929 10.7097 8.92904L10.6018 8.93144C10.5503 8.93184 10.5267 8.93056 10.4939 8.93084C10.4886 8.93084 10.4886 8.9361 10.4883 8.93984L10.4831 8.98914C10.4825 8.994 10.4804 9.00222 10.4878 9.00216C10.5037 9.00196 10.4927 8.95324 10.5325 8.95292L10.5621 8.95264C10.5766 8.95244 10.5801 8.95436 10.5803 8.97224L10.5819 9.1454ZM10.7873 9.0748C10.7809 9.07528 10.7761 9.07602 10.7757 9.0723C10.7757 9.06749 10.7766 9.06272 10.7785 9.05824L10.8001 8.99038C10.8015 8.98614 10.8029 8.98566 10.8036 8.98562C10.8053 8.98542 10.8043 8.98562 10.8066 8.98838L10.841 9.05356C10.8436 9.05771 10.8453 9.06228 10.846 9.06702C10.8463 9.07074 10.8414 9.07074 10.8351 9.07122L10.7873 9.0748ZM10.8476 9.09048C10.8568 9.0898 10.8588 9.0934 10.8728 9.12154C10.8772 9.12912 10.88 9.13741 10.8812 9.14598C10.8831 9.16868 10.8578 9.16646 10.8587 9.17724C10.8591 9.18244 10.8636 9.18136 10.87 9.1809L10.9085 9.1765L10.954 9.17458C10.9635 9.17388 10.9667 9.17438 10.9662 9.16806C10.9652 9.15578 10.9474 9.17172 10.9339 9.14614L10.8202 8.92558C10.8147 8.91478 10.814 8.91408 10.8108 8.91432C10.8062 8.91468 10.8051 8.92186 10.8031 8.928L10.7264 9.1602C10.7194 9.18168 10.7012 9.1808 10.7019 9.18936C10.7024 9.1942 10.7079 9.19302 10.7128 9.19266C10.723 9.1919 10.7331 9.18964 10.7436 9.18886L10.7768 9.18786C10.7842 9.1873 10.7953 9.1891 10.7947 9.18128C10.7938 9.17124 10.7564 9.18004 10.7541 9.15326C10.7544 9.14312 10.7561 9.13306 10.7591 9.12332C10.7651 9.09816 10.7724 9.09612 10.7784 9.09568L10.8476 9.09048ZM11.1201 8.9358C11.1166 8.91028 11.1179 8.90972 11.1602 8.90442C11.2277 8.89596 11.2064 8.94266 11.2228 8.94062C11.2309 8.93962 11.2275 8.92762 11.2264 8.92284L11.22 8.8864C11.2196 8.88264 11.2161 8.87986 11.2122 8.88022L11.1325 8.89172L11.0393 8.9019C11.0355 8.90196 11.0324 8.90498 11.0325 8.90864L11.0325 8.90916C11.0345 8.92396 11.0724 8.90716 11.077 8.94044L11.1009 9.1136C11.1072 9.15872 11.0778 9.14208 11.0802 9.1591C11.0805 9.16132 11.0829 9.1629 11.0874 9.16234L11.132 9.15524L11.1737 9.15152C11.1825 9.15042 11.19 9.15098 11.189 9.14358C11.1876 9.13358 11.1494 9.14778 11.1437 9.10672L11.1362 9.05196C11.1332 9.0305 11.1312 9.02624 11.1473 9.02422L11.1731 9.02098C11.2095 9.01642 11.2051 9.05688 11.2163 9.05546C11.2247 9.0544 11.2208 9.04136 11.2198 9.0366L11.2082 8.97106C11.2065 8.9611 11.2027 8.96232 11.2003 8.96264C11.1933 8.96352 11.197 8.99768 11.1669 9.00144L11.1449 9.00422C11.1298 9.0061 11.1295 9.00352 11.1273 8.9876L11.1201 8.9358ZM11.2491 9.0206C11.2635 9.09508 11.32 9.13634 11.3897 9.12404C11.5003 9.10452 11.5039 9.0109 11.494 8.95954C11.4788 8.88174 11.4179 8.84354 11.3505 8.85622C11.2677 8.87156 11.2334 8.94024 11.2491 9.0206ZM11.2876 8.99216C11.2773 8.93896 11.2848 8.88526 11.3431 8.87382C11.3877 8.8652 11.4383 8.90028 11.4541 8.98138C11.4659 9.04228 11.4561 9.09488 11.3967 9.1065C11.3348 9.11856 11.298 9.04572 11.2876 8.99216ZM11.5611 8.8622C11.5556 8.84042 11.5663 8.838 11.5789 8.8351C11.6136 8.82718 11.6395 8.84964 11.6485 8.8852C11.6539 8.9066 11.657 8.9274 11.6048 8.9393C11.5945 8.94166 11.5819 8.94456 11.5796 8.9355L11.5611 8.8622ZM11.5613 9.03984C11.5728 9.08556 11.542 9.07992 11.545 9.09154C11.5468 9.0988 11.5537 9.09606 11.5575 9.0952L11.6099 9.08168C11.6243 9.07838 11.6339 9.07772 11.6398 9.07638C11.6477 9.07458 11.6499 9.07178 11.649 9.06852C11.6457 9.05544 11.6155 9.07808 11.6058 9.03926L11.5899 8.9765C11.5867 8.9638 11.584 8.96172 11.6022 8.95756C11.6157 8.95216 11.6313 8.9574 11.6383 8.96966L11.6815 9.0204C11.6974 9.03902 11.7142 9.05938 11.7413 9.0532C11.755 9.05004 11.7756 9.03688 11.7728 9.02564C11.7723 9.02296 11.7696 9.02118 11.7668 9.02166L11.7663 9.02174C11.7629 9.02252 11.76 9.02548 11.7566 9.02626C11.7542 9.02708 11.7517 9.02724 11.7492 9.02671C11.7468 9.02618 11.7446 9.02499 11.7428 9.02328L11.6636 8.93508C11.6627 8.93146 11.6718 8.92592 11.6797 8.91528C11.6849 8.90808 11.6883 8.89987 11.6898 8.89124C11.6912 8.88262 11.6907 8.8738 11.6881 8.8654C11.6839 8.8487 11.6642 8.79912 11.5891 8.81628L11.5202 8.83356L11.4797 8.84128C11.4756 8.84222 11.4726 8.84482 11.4735 8.84846C11.4768 8.86152 11.5108 8.83954 11.5211 8.88018L11.5613 9.03984ZM11.8442 8.9796C11.8559 9.0226 11.8126 9.01476 11.8164 9.02884C11.8186 9.0368 11.8243 9.035 11.8304 9.03348L11.8778 9.02028L11.926 9.00994C11.9359 9.0075 11.943 9.0069 11.9407 8.99824C11.9379 8.98812 11.8971 9.00936 11.885 8.96492L11.8407 8.80164C11.836 8.7843 11.8389 8.78164 11.8529 8.7782L11.8819 8.77104C11.9208 8.75994 11.9207 8.80272 11.9344 8.79936C11.9433 8.79716 11.9357 8.78402 11.9338 8.77984L11.921 8.74754C11.9197 8.744 11.9183 8.73894 11.9132 8.7402L11.8091 8.7674L11.7043 8.79168C11.6992 8.79294 11.7005 8.798 11.7012 8.80168L11.7087 8.85072C11.7093 8.85558 11.7094 8.86404 11.7165 8.86226C11.7319 8.85848 11.7088 8.81368 11.7474 8.80418L11.776 8.79712C11.7901 8.79368 11.794 8.79464 11.7987 8.81198L11.8442 8.9796ZM12.0246 8.7504C12.0146 8.71624 12.0439 8.72246 12.0403 8.71022C12.0391 8.70592 12.0372 8.70564 12.027 8.70832L11.9836 8.72134L11.9447 8.73004C11.9417 8.73084 11.9329 8.732 11.9347 8.73814C11.9383 8.75072 11.9738 8.7305 11.9833 8.76322L12.0336 8.93582C12.0435 8.96998 12.0163 8.9671 12.02 8.97968C12.0205 8.98148 12.0219 8.98382 12.025 8.98302L12.0626 8.97152L12.1147 8.95932C12.1225 8.95726 12.1252 8.95502 12.124 8.95106C12.1206 8.93954 12.0874 8.96614 12.0745 8.9219L12.0246 8.7504ZM12.0998 8.8338C12.125 8.90564 12.1869 8.93902 12.2542 8.9176C12.3608 8.8836 12.3508 8.7904 12.3333 8.74088C12.307 8.66586 12.2411 8.63608 12.1762 8.65756C12.0965 8.68376 12.0725 8.7563 12.0998 8.8338ZM12.1338 8.80052C12.1158 8.74922 12.1153 8.69506 12.1715 8.67598C12.2144 8.66152 12.2696 8.68958 12.2971 8.76778C12.3177 8.82652 12.3156 8.8799 12.2585 8.8993C12.199 8.91942 12.152 8.85218 12.1338 8.80052ZM12.3841 8.6312C12.3755 8.61038 12.3857 8.60656 12.3978 8.602C12.4309 8.58956 12.46 8.60836 12.474 8.6424C12.4825 8.66288 12.4886 8.68306 12.4387 8.70176C12.4288 8.70546 12.4167 8.71 12.4131 8.7013L12.3841 8.63118V8.6312ZM12.4103 8.80708C12.4283 8.85082 12.397 8.84934 12.4016 8.86046C12.4045 8.8674 12.4109 8.86378 12.4146 8.86242L12.4645 8.84208C12.4783 8.8369 12.4877 8.83498 12.4933 8.83288C12.5008 8.83004 12.5026 8.82698 12.5013 8.82384C12.4961 8.81134 12.4696 8.83778 12.4542 8.80064L12.4293 8.74056C12.4243 8.7284 12.4214 8.72672 12.4387 8.7202C12.4513 8.71306 12.4675 8.71618 12.4762 8.7274L12.5264 8.7719C12.5449 8.78822 12.5645 8.80616 12.5904 8.79644C12.6035 8.79152 12.622 8.77576 12.6176 8.765C12.6167 8.76242 12.6138 8.761 12.6111 8.76184L12.6107 8.76198C12.6074 8.76322 12.6049 8.76652 12.6017 8.76776C12.5994 8.76889 12.5969 8.76939 12.5944 8.76919C12.5919 8.76899 12.5895 8.76811 12.5876 8.76664L12.4963 8.68978C12.4948 8.68632 12.503 8.67962 12.5093 8.66808C12.5175 8.65222 12.5179 8.6337 12.5103 8.61754C12.5037 8.60154 12.4769 8.55508 12.4051 8.58202L12.3394 8.60828L12.3004 8.62128C12.2965 8.62278 12.2939 8.62572 12.2954 8.6292C12.3005 8.6417 12.331 8.61544 12.3471 8.65432L12.4103 8.80708Z", fill: "#713F2A" }), jsxRuntime.jsx("path", { d: "M8.66589 4.98499H10.3917V6.62545H8.66589V4.98499Z", fill: "#D52B1E" }), jsxRuntime.jsx("path", { d: "M9.47522 6.2766C9.4742 6.31245 9.46816 6.34802 9.45726 6.38234C9.43767 6.43676 9.43752 6.43676 9.41954 6.4632C9.39886 6.49416 9.3716 6.52064 9.33953 6.54094C9.30313 6.56542 9.25912 6.57747 9.21463 6.57514C9.09934 6.56542 9.04583 6.44634 9.01968 6.34968C8.99194 6.24708 8.91315 6.19122 8.86296 6.2284C8.83356 6.25018 8.8319 6.28668 8.85643 6.3217C8.87905 6.34768 8.90888 6.36708 8.94251 6.3777L8.88091 6.45232C8.84177 6.44618 8.80557 6.42868 8.77725 6.40222C8.74893 6.37576 8.72987 6.34162 8.72268 6.30446C8.71289 6.2547 8.73826 6.16178 8.82539 6.13402C8.93663 6.09854 9.0078 6.1741 9.04207 6.23784C9.08923 6.32552 9.10948 6.48652 9.2401 6.46164C9.31116 6.4481 9.3446 6.34968 9.3446 6.3046L9.3964 6.25172L9.47314 6.27506L9.47522 6.27662V6.2766ZM9.58274 6.2766C9.58375 6.31245 9.58979 6.34802 9.60069 6.38234C9.62028 6.43676 9.62043 6.43676 9.63841 6.4632C9.65909 6.49416 9.68635 6.52064 9.71842 6.54094C9.75482 6.56542 9.79883 6.57747 9.84332 6.57514C9.95861 6.56542 10.0121 6.44634 10.0383 6.34968C10.066 6.24708 10.1448 6.19122 10.195 6.2284C10.2244 6.25018 10.226 6.28668 10.2015 6.3217C10.1789 6.34768 10.1491 6.36708 10.1154 6.3777L10.177 6.45232C10.2162 6.44618 10.2524 6.42868 10.2807 6.40222C10.309 6.37576 10.3281 6.34162 10.3353 6.30446C10.3451 6.2547 10.3197 6.16178 10.2326 6.13402C10.1213 6.09854 10.0502 6.1741 10.0159 6.23784C9.96872 6.32552 9.94847 6.48652 9.81785 6.46164C9.74679 6.4481 9.71336 6.34968 9.71336 6.3046L9.66155 6.25172L9.58481 6.27506L9.58274 6.27662V6.2766Z", fill: "white" }), jsxRuntime.jsx("path", { d: "M9.68349 5.57898L9.90945 5.34612C9.91971 5.33762 9.92802 5.32719 9.93384 5.31548C9.93965 5.30377 9.94286 5.29104 9.94326 5.2781L9.89666 5.285L9.88623 5.26216L9.88392 5.23922L9.94652 5.22662C9.94753 5.21694 9.94667 5.20962 9.94845 5.19894C9.95013 5.18906 9.95244 5.18374 9.95498 5.17406L9.88642 5.17842C9.8899 5.167 9.8891 5.16092 9.89293 5.1503C9.89527 5.14248 9.89884 5.13504 9.90351 5.12824L9.94356 5.12216C9.95885 5.1207 9.96756 5.12136 9.98289 5.12046C10.0203 5.05404 10.1759 4.993 10.2864 5.10238C10.3664 5.18154 10.3492 5.32676 10.2455 5.36516C10.2218 5.37528 10.1955 5.37857 10.1699 5.37462C10.1443 5.37067 10.1205 5.35967 10.1014 5.34296L10.1427 5.26564C10.1999 5.29814 10.2472 5.25772 10.244 5.21574C10.2436 5.19245 10.234 5.17016 10.217 5.15341C10.2 5.13665 10.177 5.12668 10.1525 5.12554C10.1052 5.1216 10.0712 5.1474 10.0497 5.18774C10.0365 5.21236 10.0426 5.23042 10.0383 5.25774C10.0367 5.28338 10.0329 5.30885 10.027 5.33392C10.0169 5.36143 9.99982 5.38612 9.97722 5.40576L9.74559 5.64446L8.84383 6.57336L8.77606 6.5137L9.68349 5.57896V5.57898Z", fill: "#FEDD00" }), jsxRuntime.jsx("path", { d: "M9.01971 5.66083C9.01971 5.66083 9.07641 5.92827 9.26907 6.32945C9.36703 6.29525 9.42489 6.27345 9.52867 6.27345C9.63245 6.27345 9.69031 6.29213 9.78827 6.32945C9.98093 5.92827 10.0376 5.66083 10.0376 5.66083L9.52867 5.03729L9.01971 5.66083Z", fill: "white" }), jsxRuntime.jsx("path", { d: "M9.57849 5.24819L9.93171 5.68093C9.93171 5.68093 9.88461 5.89133 9.74107 6.20801C9.6878 6.19494 9.63349 6.18611 9.57868 6.18161L9.57849 5.24821V5.24819ZM9.47895 5.24819L9.12573 5.68093C9.12573 5.68093 9.17284 5.89133 9.31637 6.20801C9.36964 6.19494 9.42396 6.18611 9.47876 6.18161L9.47895 5.24821V5.24819ZM10.5756 4.98499H12.3013V6.62545H10.5756V4.98499Z", fill: "#FEDD00" }), jsxRuntime.jsx("path", { d: "M10.8173 4.98499H11.0746V6.62545H10.8173V4.98499ZM11.3104 4.98499H11.5677V6.62545H11.3104V4.98499ZM11.8035 4.98499H12.0608V6.62545H11.8035V4.98499Z", fill: "#D52B1E" }), jsxRuntime.jsx("path", { d: "M8.67233 8.04823C8.67956 8.09441 8.69491 8.13909 8.71775 8.18041C8.74877 8.22705 8.73732 8.22579 8.80755 8.30041C8.84577 8.33689 8.88993 8.36725 8.93831 8.39031C8.98361 8.41307 9.03195 8.42985 9.082 8.44023C9.1954 8.46899 9.31297 8.47979 9.43005 8.47219C9.50213 8.46869 9.57397 8.4616 9.64528 8.45095C9.72269 8.44041 9.80062 8.43367 9.87876 8.43075C9.92355 8.42895 9.96589 8.42855 10.0077 8.43075C10.0593 8.43399 10.1106 8.44073 10.1612 8.45095C10.2394 8.46693 10.3164 8.48824 10.3914 8.51471L10.3917 6.80161L8.66565 6.80115V7.97203C8.66565 7.97203 8.66918 8.02923 8.67233 8.04823Z", fill: "#FEDD00" }), jsxRuntime.jsx("path", { d: "M8.8727 8.34856L8.95359 8.39338L9.06443 8.43138L9.06433 6.80082H8.87268L8.8727 8.34856ZM9.83156 8.42276L9.83179 6.80078H9.63979V8.4487L9.83154 8.42894L9.83156 8.42276ZM10.2146 6.80096H10.0232V8.42858C10.088 8.4351 10.152 8.44636 10.215 8.46224L10.2146 6.80096ZM9.44831 6.80096V8.46758C9.38416 8.47104 9.31983 8.47102 9.25568 8.46752L9.25572 6.80124L9.44831 6.80096Z", fill: "#D52B1E", stroke: "#D52B1E", strokeWidth: "0.010773" }), jsxRuntime.jsx("path", { d: "M12.2951 8.0478C12.2879 8.09398 12.2725 8.13866 12.2497 8.17996C12.2187 8.22662 12.2301 8.22536 12.1599 8.29998C12.1217 8.33646 12.0775 8.3668 12.0291 8.38988C11.9838 8.41264 11.9355 8.42942 11.8854 8.43978C11.7721 8.46855 11.6545 8.47935 11.5374 8.47176C11.4653 8.46826 11.3935 8.46116 11.3221 8.45052C11.2447 8.43998 11.1668 8.43324 11.0887 8.43032C11.0439 8.42852 11.0015 8.42812 10.9597 8.43032C10.9081 8.43355 10.8568 8.4403 10.8062 8.45052C10.7275 8.46662 10.6501 8.48792 10.5745 8.51428L10.5757 6.80118L12.3018 6.80072V7.97158C12.3018 7.97158 12.2982 8.02878 12.2951 8.04778V8.0478Z", fill: "#FEDD00" }), jsxRuntime.jsx("path", { d: "M11.017 6.93821L11.0045 6.94383C10.9994 6.94959 10.994 6.95503 10.9881 6.96009C10.9797 6.96622 10.971 6.97185 10.9619 6.97695C10.9573 6.97921 10.953 6.98217 10.9494 6.98571C10.9441 6.99211 10.9477 6.99831 10.9441 7.00571C10.9406 7.01261 10.936 7.01894 10.9304 7.02447C10.9234 7.03159 10.9159 7.03827 10.9081 7.04447C10.9015 7.05219 10.8937 7.05893 10.8851 7.06447C10.8828 7.06597 10.8804 7.06722 10.8779 7.06821C10.8733 7.06955 10.8705 7.06799 10.8661 7.06945C10.8579 7.07213 10.8553 7.08071 10.8497 7.08383C10.852 7.08819 10.8519 7.09127 10.8542 7.09571C10.8576 7.10217 10.8691 7.12001 10.8713 7.12445C10.8757 7.13055 10.877 7.13845 10.8825 7.14007C10.8914 7.14278 10.9008 7.14363 10.91 7.14257C10.9245 7.14438 10.9388 7.14752 10.9527 7.15195C10.9655 7.15703 10.9708 7.16345 10.9835 7.16883C10.9921 7.17285 11.0011 7.17579 11.0104 7.17757C11.0173 7.17931 11.0244 7.17995 11.0314 7.17945C11.0367 7.17897 11.0393 7.17705 11.0446 7.17633C11.0454 7.17623 11.0463 7.17623 11.0472 7.17633L11.0465 7.18383C11.0464 7.18383 11.0466 7.18439 11.0465 7.18445V7.18569H11.0478L11.0911 7.20381C11.0861 7.21097 11.0842 7.21973 11.0859 7.22819C11.0991 7.26595 11.1103 7.28957 11.1167 7.29195C11.1297 7.29667 11.1337 7.30925 11.141 7.32195C11.1384 7.32459 11.1363 7.32595 11.1338 7.32819C11.1205 7.33871 11.1088 7.35091 11.099 7.36445C11.0834 7.38821 11.0728 7.38851 11.0925 7.42005C11.104 7.43857 11.1096 7.44205 11.1246 7.46819C11.1319 7.48058 11.1374 7.49382 11.141 7.50757C11.145 7.52037 11.1472 7.53361 11.1476 7.54695L11.1679 7.55445L11.1817 7.54131L11.1948 7.51757L11.1955 7.49945C11.1907 7.49561 11.1887 7.48955 11.1902 7.48381C11.1917 7.47645 11.201 7.47801 11.2053 7.47131C11.2113 7.46209 11.1984 7.45663 11.1916 7.44945C11.1788 7.43605 11.1615 7.43279 11.1574 7.41257C11.1563 7.40711 11.1591 7.40403 11.1653 7.39819L11.2067 7.36195C11.2129 7.36498 11.2201 7.36586 11.227 7.36445C11.2329 7.36339 11.2381 7.36695 11.2565 7.37195C11.2648 7.37443 11.2737 7.37464 11.2821 7.37255L11.29 7.37069C11.2914 7.37518 11.2922 7.37978 11.2926 7.38443C11.2937 7.40563 11.2894 7.44433 11.2959 7.45443C11.2982 7.458 11.3002 7.46177 11.3018 7.46569C11.3043 7.46971 11.3058 7.47418 11.3064 7.47881V7.51631C11.3056 7.52805 11.3041 7.53974 11.3018 7.55131C11.301 7.55909 11.2978 7.56647 11.2926 7.57255C11.2867 7.57983 11.2801 7.58091 11.2723 7.58631L11.2703 7.60631L11.2939 7.61569L11.3208 7.62193L11.3353 7.61631C11.3351 7.61194 11.3363 7.60761 11.3386 7.60381C11.3412 7.59887 11.3434 7.59503 11.3484 7.59319C11.356 7.59033 11.3644 7.59577 11.3674 7.59131C11.3708 7.58647 11.3687 7.58455 11.3681 7.57631C11.3671 7.56307 11.3642 7.55651 11.3622 7.54317C11.3588 7.52502 11.3577 7.50656 11.3589 7.48817C11.3591 7.47769 11.3602 7.46724 11.3622 7.45693C11.3658 7.43927 11.3724 7.43071 11.3766 7.41317C11.3802 7.39688 11.3829 7.3804 11.3845 7.36381C11.4498 7.37341 11.5164 7.37087 11.5807 7.35631C11.5843 7.35557 11.5965 7.35131 11.5965 7.35131C11.6132 7.36541 11.6326 7.37641 11.6536 7.38381C11.6534 7.38583 11.6532 7.40071 11.6536 7.40317C11.6543 7.40893 11.6527 7.41281 11.6562 7.41757C11.6579 7.42041 11.6607 7.42243 11.6641 7.42317C11.6664 7.42388 11.669 7.42397 11.6714 7.42342C11.6738 7.42287 11.6761 7.42171 11.6778 7.42005C11.6826 7.41603 11.6817 7.41097 11.6831 7.40505C11.6835 7.40047 11.6835 7.39589 11.6831 7.39131C11.6892 7.39229 11.6953 7.39269 11.7015 7.39255C11.7076 7.39279 11.7138 7.39259 11.7198 7.39193L11.7205 7.40129C11.7211 7.40619 11.7189 7.40999 11.7211 7.41443C11.7229 7.41873 11.7269 7.42183 11.7316 7.42255C11.7335 7.423 11.7355 7.42307 11.7374 7.42275C11.7394 7.42242 11.7412 7.42171 11.7428 7.42067C11.749 7.41697 11.7483 7.41071 11.7494 7.40379C11.7497 7.40159 11.7496 7.38995 11.7494 7.38817L11.771 7.38067C11.7708 7.38613 11.7702 7.39156 11.7691 7.39691C11.7679 7.40331 11.7662 7.40959 11.7638 7.41567C11.7596 7.42536 11.7543 7.43458 11.7481 7.44317C11.7417 7.45411 11.7345 7.46457 11.7264 7.47441L11.7146 7.48755C11.7092 7.49429 11.7074 7.49887 11.7021 7.50567C11.6967 7.51366 11.6901 7.52083 11.6824 7.52691C11.6679 7.53791 11.6583 7.52911 11.6385 7.54379L11.6339 7.56441L11.6641 7.57505L11.691 7.58005L11.7001 7.57505C11.6998 7.57239 11.7001 7.56969 11.7009 7.56711C11.7017 7.56454 11.703 7.56214 11.7047 7.56005C11.7088 7.55525 11.7147 7.55229 11.7211 7.55191C11.7287 7.55073 11.7368 7.55259 11.7428 7.54755C11.7502 7.54133 11.7501 7.52927 11.7559 7.51815C11.7714 7.48845 11.7928 7.46191 11.8189 7.44005C11.8318 7.42811 11.8428 7.42489 11.8537 7.41129C11.8589 7.40485 11.8646 7.40191 11.8649 7.39379C11.865 7.38813 11.8618 7.38549 11.8603 7.38005C11.8586 7.37346 11.8573 7.36678 11.8563 7.36005C11.8883 7.37493 11.8767 7.37297 11.8826 7.38817C11.8873 7.40047 11.8819 7.40897 11.8839 7.42191C11.8862 7.43703 11.8937 7.44419 11.8951 7.45941C11.8955 7.47507 11.8932 7.49067 11.8885 7.50567C11.8873 7.51939 11.8839 7.53286 11.8786 7.54567C11.8735 7.55789 11.8651 7.56865 11.8544 7.57691C11.8499 7.58041 11.8466 7.58191 11.8419 7.58505L11.8393 7.60565L11.8629 7.61317L11.897 7.62191L11.9049 7.61505C11.9083 7.60195 11.9037 7.58271 11.9134 7.58129C11.922 7.58005 11.928 7.58129 11.9298 7.57505C11.9308 7.57093 11.9314 7.56675 11.9318 7.56255L11.9449 7.47255L11.9535 7.43441C11.9547 7.42285 11.9576 7.41151 11.962 7.40067C11.9774 7.35873 11.9576 7.35317 11.9397 7.32755C11.932 7.31903 11.927 7.30865 11.9252 7.29755C11.9232 7.28121 11.9287 7.26765 11.9279 7.24255V7.18505C11.9303 7.18399 11.9325 7.18263 11.9351 7.18129C11.9467 7.177 11.9571 7.17036 11.9657 7.16183C11.9744 7.1533 11.9809 7.14309 11.985 7.13191C11.9894 7.12271 11.9916 7.11268 11.9915 7.10255C11.9914 7.09591 11.9902 7.08951 11.9896 7.08191C11.9886 7.07534 11.9863 7.06899 11.983 7.06317C11.98 7.05697 11.976 7.05129 11.9712 7.04629C11.9555 7.03145 11.9357 7.02125 11.9141 7.01691C11.886 7.00905 11.8568 7.00526 11.8275 7.00567C11.7976 7.00297 11.7675 7.00257 11.7376 7.00443C11.6954 7.00671 11.6719 7.01481 11.6299 7.01943C11.5958 7.02399 11.5614 7.02671 11.5269 7.02755C11.4794 7.02839 11.4341 7.01835 11.4055 7.02067C11.354 7.02487 11.3531 7.03591 11.2756 7.04193L11.1948 7.04567L11.1496 7.03193C11.1622 7.02907 11.1733 7.02169 11.1804 7.01131C11.1861 7.00399 11.1853 6.99773 11.1922 6.99005C11.1978 6.98381 11.2015 6.97761 11.2086 6.97067C11.2029 6.96631 11.1961 6.96332 11.1889 6.96193C11.1824 6.96075 11.1758 6.96075 11.1692 6.96193C11.1603 6.96255 11.1516 6.96489 11.1436 6.96881C11.137 6.97167 11.131 6.9757 11.1259 6.98067C11.1112 6.97163 11.0958 6.96349 11.08 6.95631C11.0602 6.94687 11.0389 6.94073 11.017 6.93817V6.93821V6.93821ZM11.0583 7.17633H11.0596C11.0594 7.17653 11.0593 7.17677 11.059 7.17695L11.0583 7.17633Z", fill: "#D52B1E" }), jsxRuntime.jsx("path", { d: "M11.9441 7.19041L11.9281 7.19529C11.9108 7.20197 11.8922 7.20535 11.8735 7.20521C11.818 7.20925 11.7838 7.18407 11.7266 7.18827C11.6971 7.19043 11.684 7.21207 11.6539 7.21923C11.6422 7.22217 11.6303 7.22405 11.6182 7.22487L11.6289 7.20419C11.6143 7.20705 11.5994 7.20881 11.5845 7.20947C11.5738 7.20964 11.5631 7.20877 11.5525 7.20687L11.5739 7.18787C11.5646 7.18643 11.5556 7.18419 11.5467 7.18115C11.5387 7.17809 11.5312 7.17385 11.5245 7.16855L11.56 7.16149C11.5926 7.15379 11.6028 7.13855 11.6417 7.13499C11.6658 7.13277 11.7053 7.13407 11.8022 7.14933C11.8659 7.15937 11.8942 7.15467 11.9184 7.14417C11.9254 7.14085 11.9312 7.13574 11.9353 7.12942C11.9394 7.12311 11.9416 7.11583 11.9416 7.10841C11.9419 7.10141 11.9403 7.09445 11.9371 7.08813C11.9339 7.08182 11.9292 7.07636 11.9232 7.07221C11.9165 7.06729 11.9083 7.06473 11.8999 7.06495", stroke: "#FEDF00", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M11.0208 7.01218C11.011 7.01059 11.0009 7.01268 10.9926 7.018C10.9826 7.02392 10.9813 7.03194 10.974 7.04084C10.9833 7.04284 10.9887 7.04806 10.998 7.04592C11.0044 7.04444 11.0101 7.04086 11.014 7.03578C11.017 7.03271 11.0194 7.02908 11.021 7.0251C11.0225 7.02113 11.0232 7.01689 11.0229 7.01266L11.0208 7.01218Z", fill: "#FCD900", stroke: "#FEDF00", strokeWidth: "0.010773" }), jsxRuntime.jsx("path", { d: "M11.2568 7.27581L11.2654 7.29181C11.2701 7.30121 11.2738 7.31103 11.2764 7.32115C11.2788 7.33505 11.2805 7.34905 11.2814 7.36311L11.283 7.37063L11.282 7.39321M11.4248 7.25421L11.4174 7.28087L11.3976 7.35007L11.3954 7.36295M11.1674 7.28341C11.1839 7.28693 11.1788 7.35061 11.2049 7.36521", stroke: "#FEDF00", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M11.7625 7.39558L11.7706 7.3906C11.7917 7.38236 11.8109 7.3702 11.827 7.3548", stroke: "#FEDF00", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M11.6 7.36036H11.6001C11.6743 7.3427 11.7237 7.3074 11.7593 7.30298", stroke: "#FEDF00", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M11.6754 7.27219C11.6812 7.27202 11.687 7.27156 11.6928 7.27083C11.7236 7.26663 11.7285 7.28457 11.75 7.29599C11.789 7.31677 11.7941 7.34213 11.8403 7.36311L11.847 7.36621L11.8648 7.37479", stroke: "#FEDF00", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M10.8717 7.09061C10.8765 7.09189 10.8816 7.09227 10.8866 7.09169C10.8935 7.09107 10.8967 7.08693 10.9037 7.08671C10.9087 7.08581 10.9138 7.08671 10.9181 7.08921C10.9206 7.09094 10.9227 7.0933 10.924 7.09605C10.9261 7.09871 10.927 7.10205 10.9266 7.10537C10.925 7.11079 10.9195 7.11435 10.9137 7.11377C10.9114 7.11403 10.9091 7.11365 10.9071 7.11269C10.9051 7.11172 10.9034 7.1102 10.9022 7.10833C10.9008 7.10597 10.9005 7.10313 10.9014 7.10055C10.8903 7.10453 10.8778 7.10035 10.8717 7.09061V7.09061Z", fill: "#FCD900", stroke: "#FEDF00", strokeWidth: "0.010773" }), jsxRuntime.jsx("path", { d: "M11.0277 7.2834C11.0135 7.2788 10.9997 7.27328 10.9864 7.26688C10.9932 7.26188 10.9987 7.26158 11.0045 7.25578C11.0127 7.24762 11.0124 7.24002 11.017 7.2294C11.0215 7.219 11.0209 7.21032 11.0311 7.20254C11.038 7.19814 11.0466 7.19692 11.0546 7.19924C11.0627 7.20136 11.0693 7.20704 11.0724 7.21456C11.0752 7.22578 11.069 7.23228 11.0672 7.24364C11.0639 7.25304 11.0626 7.26294 11.0631 7.27284C11.0651 7.27906 11.0676 7.28513 11.0705 7.29098C11.0561 7.28937 11.0418 7.28683 11.0277 7.28338V7.2834ZM11.0069 7.3024C11.0068 7.29548 11.0126 7.2898 11.0199 7.28974C11.0272 7.28968 11.0331 7.2952 11.0332 7.30212C11.0333 7.30904 11.0275 7.31472 11.0202 7.31478C11.0129 7.31484 11.007 7.30936 11.0069 7.30248V7.3024ZM10.9699 6.9722L10.9669 6.97012C10.9589 6.96392 10.9581 6.95706 10.9543 6.94792C10.9509 6.94058 10.9487 6.9328 10.9477 6.92484C10.9472 6.91786 10.9472 6.91086 10.9477 6.90388C10.9481 6.8976 10.9481 6.89128 10.9477 6.885C10.9477 6.87848 10.9462 6.87202 10.9433 6.86612C10.9412 6.86252 10.935 6.85938 10.9367 6.85772C10.9387 6.8558 10.9421 6.85732 10.9455 6.85772C10.9529 6.85841 10.9598 6.86136 10.9653 6.86612C10.9724 6.87136 10.9774 6.87876 10.9794 6.8871L10.988 6.91646C10.9892 6.9216 10.9912 6.92656 10.9939 6.93114C10.9972 6.93566 11.0009 6.93987 11.0049 6.94372L11.0047 6.94418C10.9996 6.95006 10.9942 6.95564 10.9884 6.96086C10.9829 6.96526 10.977 6.9691 10.9706 6.97232L10.9699 6.97212L10.9699 6.9722ZM11.0455 7.185L11.0924 7.20562C11.1243 7.18682 11.1498 7.15959 11.1658 7.12724C11.1803 7.10018 11.1899 7.07104 11.1945 7.04098L11.1569 7.02936L11.1494 7.03082C11.1424 7.06018 11.1309 7.08842 11.1154 7.11466C11.1007 7.13782 11.0819 7.15834 11.0598 7.17534L11.0455 7.185ZM11.1493 7.5474C11.1552 7.53862 11.1617 7.53018 11.1687 7.52212C11.1773 7.51386 11.1865 7.50617 11.1962 7.49912C11.1996 7.4989 11.2031 7.4994 11.2063 7.50054C11.206 7.5109 11.2047 7.52122 11.2025 7.53136C11.2007 7.53958 11.1983 7.54768 11.1952 7.55556C11.1936 7.56244 11.1908 7.56904 11.187 7.57514C11.184 7.57885 11.1807 7.58232 11.1771 7.5855C11.1663 7.57066 11.1491 7.55956 11.1493 7.54738V7.5474ZM11.8425 7.5844C11.8651 7.58982 11.8862 7.59994 11.9042 7.61404C11.9053 7.61714 11.9058 7.62042 11.9055 7.6237C11.8949 7.62624 11.8842 7.62792 11.8733 7.62872C11.8645 7.62935 11.8557 7.62935 11.8469 7.62872C11.8395 7.62909 11.8321 7.62838 11.8249 7.62662C11.8203 7.62487 11.8159 7.62277 11.8117 7.62034C11.8237 7.60642 11.8302 7.5876 11.8425 7.5844ZM11.6375 7.5436C11.6601 7.54903 11.6812 7.55915 11.6992 7.57324C11.7003 7.57633 11.7008 7.57961 11.7005 7.58288C11.69 7.58544 11.6792 7.58713 11.6684 7.58792C11.6596 7.58855 11.6507 7.58855 11.6419 7.58792C11.6345 7.58829 11.6271 7.58758 11.6199 7.58582C11.6154 7.58407 11.6109 7.58197 11.6067 7.57954C11.6187 7.56562 11.6252 7.5468 11.6375 7.5436ZM11.2734 7.5862C11.2839 7.58919 11.2942 7.59278 11.3042 7.59696C11.315 7.60259 11.3253 7.6089 11.3351 7.61584C11.3362 7.61894 11.3367 7.62222 11.3364 7.6255C11.3259 7.62804 11.3151 7.62972 11.3042 7.63052C11.2955 7.63115 11.2866 7.63115 11.2778 7.63052C11.2704 7.6309 11.263 7.6302 11.2558 7.62842C11.2512 7.62668 11.2468 7.62458 11.2426 7.62214C11.2546 7.60822 11.2611 7.5894 11.2734 7.5862ZM11.0848 6.9902C11.0719 6.98464 11.0628 6.9693 11.071 6.95832C11.0742 6.95392 11.0796 6.95484 11.0828 6.95042C11.0858 6.94534 11.0869 6.93938 11.0857 6.93364C11.0848 6.92723 11.0834 6.92091 11.0813 6.91476C11.0795 6.90788 11.0786 6.90086 11.0784 6.8938C11.0767 6.88282 11.0793 6.87161 11.0857 6.86234C11.0901 6.85676 11.0961 6.85252 11.103 6.8501C11.1061 6.85282 11.1018 6.86014 11.1023 6.86654C11.1031 6.87448 11.1051 6.88226 11.1084 6.8896C11.1126 6.90086 11.1184 6.90578 11.1231 6.91686C11.128 6.92529 11.131 6.93456 11.1319 6.94412C11.1326 6.95204 11.1311 6.96 11.1275 6.9672C11.1249 6.97376 11.1205 6.97956 11.1147 6.98398C11.11 6.98804 11.1042 6.99092 11.098 6.99236C11.0935 6.99284 11.0889 6.99209 11.0848 6.9902Z", fill: "#005EB8" }), jsxRuntime.jsx("path", { d: "M11.017 7.67002L11.0045 7.67564C10.9994 7.6814 10.994 7.68684 10.9881 7.6919C10.9797 7.69803 10.971 7.70366 10.9619 7.70876C10.9573 7.71102 10.953 7.71398 10.9494 7.71752C10.9441 7.72392 10.9477 7.73012 10.9441 7.73752C10.9406 7.74442 10.936 7.75075 10.9304 7.75628C10.9234 7.7634 10.9159 7.77008 10.9081 7.77628C10.9015 7.784 10.8937 7.79074 10.8851 7.79628C10.8828 7.79778 10.8804 7.79903 10.8779 7.80002C10.8733 7.80136 10.8705 7.7998 10.8661 7.80126C10.8579 7.80394 10.8553 7.81252 10.8497 7.81564C10.852 7.82 10.8519 7.82308 10.8542 7.82752C10.8576 7.83398 10.8691 7.85182 10.8713 7.85626C10.8757 7.86236 10.877 7.87026 10.8825 7.87188C10.8914 7.87459 10.9008 7.87544 10.91 7.87438C10.9245 7.87619 10.9388 7.87933 10.9527 7.88376C10.9655 7.88884 10.9708 7.89526 10.9835 7.90064C10.9921 7.90466 11.0011 7.9076 11.0104 7.90938C11.0173 7.91112 11.0244 7.91176 11.0314 7.91126C11.0367 7.91078 11.0393 7.90886 11.0446 7.90814C11.0454 7.90804 11.0463 7.90804 11.0472 7.90814L11.0465 7.91564C11.0464 7.91564 11.0466 7.9162 11.0465 7.91626V7.9175H11.0478L11.0911 7.93562C11.0861 7.94278 11.0842 7.95154 11.0859 7.96C11.0991 7.99776 11.1103 8.02138 11.1167 8.02376C11.1297 8.02848 11.1337 8.04106 11.141 8.05376C11.1384 8.0564 11.1363 8.05776 11.1338 8.06C11.1205 8.07052 11.1088 8.08272 11.099 8.09626C11.0834 8.12002 11.0728 8.12032 11.0925 8.15186C11.104 8.17038 11.1096 8.17386 11.1246 8.2C11.1319 8.21239 11.1374 8.22563 11.141 8.23938C11.145 8.25218 11.1472 8.26542 11.1476 8.27876L11.1679 8.28626L11.1817 8.27312L11.1948 8.24938L11.1955 8.23126C11.1907 8.22742 11.1887 8.22136 11.1902 8.21562C11.1917 8.20826 11.201 8.20982 11.2053 8.20312C11.2113 8.1939 11.1984 8.18844 11.1916 8.18126C11.1788 8.16786 11.1615 8.1646 11.1574 8.14438C11.1563 8.13892 11.1591 8.13584 11.1653 8.13L11.2067 8.09376C11.2129 8.09679 11.2201 8.09768 11.227 8.09626C11.2329 8.0952 11.2381 8.09876 11.2565 8.10376C11.2648 8.10625 11.2737 8.10645 11.2821 8.10436L11.29 8.1025C11.2914 8.10699 11.2922 8.11159 11.2926 8.11624C11.2937 8.13744 11.2894 8.17614 11.2959 8.18624C11.2982 8.18981 11.3002 8.19358 11.3018 8.1975C11.3043 8.20153 11.3058 8.20599 11.3064 8.21062V8.24812C11.3056 8.25987 11.3041 8.27155 11.3018 8.28312C11.301 8.2909 11.2978 8.29828 11.2926 8.30436C11.2867 8.31164 11.2801 8.31272 11.2723 8.31812L11.2703 8.33812L11.2939 8.3475L11.3208 8.35374L11.3353 8.34812C11.3351 8.34375 11.3363 8.33942 11.3386 8.33562C11.3412 8.33068 11.3434 8.32684 11.3484 8.325C11.356 8.32214 11.3644 8.32758 11.3674 8.32312C11.3708 8.31828 11.3687 8.31636 11.3681 8.30812C11.3671 8.29488 11.3642 8.28832 11.3622 8.27498C11.3588 8.25683 11.3577 8.23838 11.3589 8.21998C11.3591 8.2095 11.3602 8.19905 11.3622 8.18874C11.3658 8.17108 11.3724 8.16252 11.3766 8.14498C11.3802 8.12869 11.3829 8.11221 11.3845 8.09562C11.4498 8.10522 11.5164 8.10268 11.5807 8.08812C11.5843 8.08738 11.5965 8.08312 11.5965 8.08312C11.6132 8.09722 11.6326 8.10822 11.6536 8.11562C11.6534 8.11764 11.6532 8.13252 11.6536 8.13498C11.6543 8.14074 11.6527 8.14462 11.6562 8.14938C11.6579 8.15222 11.6607 8.15424 11.6641 8.15498C11.6664 8.15569 11.669 8.15578 11.6714 8.15523C11.6738 8.15468 11.6761 8.15352 11.6778 8.15186C11.6826 8.14784 11.6817 8.14278 11.6831 8.13686C11.6835 8.13228 11.6835 8.1277 11.6831 8.12312C11.6892 8.1241 11.6953 8.1245 11.7015 8.12436C11.7076 8.1246 11.7138 8.1244 11.7198 8.12374L11.7205 8.1331C11.7211 8.138 11.7189 8.1418 11.7211 8.14624C11.7229 8.15054 11.7269 8.15364 11.7316 8.15436C11.7335 8.15482 11.7355 8.15488 11.7374 8.15456C11.7394 8.15423 11.7412 8.15353 11.7428 8.15248C11.749 8.14878 11.7483 8.14252 11.7494 8.1356C11.7497 8.1334 11.7496 8.12176 11.7494 8.11998L11.771 8.11248C11.7708 8.11794 11.7702 8.12337 11.7691 8.12872C11.7679 8.13512 11.7662 8.14141 11.7638 8.14748C11.7596 8.15717 11.7543 8.16639 11.7481 8.17498C11.7417 8.18592 11.7345 8.19638 11.7264 8.20622L11.7146 8.21936C11.7092 8.2261 11.7074 8.23068 11.7021 8.23748C11.6967 8.24548 11.6901 8.25264 11.6824 8.25872C11.6679 8.26972 11.6583 8.26092 11.6385 8.2756L11.6339 8.29622L11.6641 8.30686L11.691 8.31186L11.7001 8.30686C11.6998 8.3042 11.7001 8.3015 11.7009 8.29892C11.7017 8.29635 11.703 8.29395 11.7047 8.29186C11.7088 8.28706 11.7147 8.2841 11.7211 8.28372C11.7287 8.28254 11.7368 8.2844 11.7428 8.27936C11.7502 8.27314 11.7501 8.26108 11.7559 8.24996C11.7714 8.22026 11.7928 8.19372 11.8189 8.17186C11.8318 8.15992 11.8428 8.1567 11.8537 8.1431C11.8589 8.13666 11.8646 8.13372 11.8649 8.1256C11.865 8.11994 11.8618 8.1173 11.8603 8.11186C11.8586 8.10527 11.8573 8.09859 11.8563 8.09186C11.8883 8.10674 11.8767 8.10478 11.8826 8.11998C11.8873 8.13228 11.8819 8.14078 11.8839 8.15372C11.8862 8.16884 11.8937 8.176 11.8951 8.19122C11.8955 8.20688 11.8932 8.22248 11.8885 8.23748C11.8873 8.2512 11.8839 8.26467 11.8786 8.27748C11.8735 8.2897 11.8651 8.30046 11.8544 8.30872C11.8499 8.31222 11.8466 8.31372 11.8419 8.31686L11.8393 8.33746L11.8629 8.34498L11.897 8.35372L11.9049 8.34686C11.9083 8.33376 11.9037 8.31452 11.9134 8.3131C11.922 8.31186 11.928 8.3131 11.9298 8.30686C11.9308 8.30274 11.9314 8.29857 11.9318 8.29436L11.9449 8.20436L11.9535 8.16622C11.9547 8.15466 11.9576 8.14332 11.962 8.13248C11.9774 8.09054 11.9576 8.08498 11.9397 8.05936C11.932 8.05084 11.927 8.04046 11.9252 8.02936C11.9232 8.01302 11.9287 7.99946 11.9279 7.97436V7.91686C11.9303 7.9158 11.9325 7.91444 11.9351 7.9131C11.9467 7.90881 11.9571 7.90217 11.9657 7.89364C11.9744 7.88511 11.9809 7.87491 11.985 7.86372C11.9894 7.85452 11.9916 7.84449 11.9915 7.83436C11.9914 7.82772 11.9902 7.82132 11.9896 7.81372C11.9886 7.80715 11.9863 7.8008 11.983 7.79498C11.98 7.78878 11.976 7.7831 11.9712 7.7781C11.9555 7.76326 11.9357 7.75306 11.9141 7.74872C11.886 7.74086 11.8568 7.73707 11.8275 7.73748C11.7976 7.73478 11.7675 7.73438 11.7376 7.73624C11.6954 7.73852 11.6719 7.74662 11.6299 7.75124C11.5958 7.75581 11.5614 7.75852 11.5269 7.75936C11.4794 7.7602 11.4341 7.75016 11.4055 7.75248C11.354 7.75668 11.3531 7.76772 11.2756 7.77374L11.1948 7.77748L11.1496 7.76374C11.1622 7.76088 11.1733 7.7535 11.1804 7.74312C11.1861 7.7358 11.1853 7.72954 11.1922 7.72186C11.1978 7.71562 11.2015 7.70942 11.2086 7.70248C11.2029 7.69812 11.1961 7.69513 11.1889 7.69374C11.1824 7.69256 11.1758 7.69256 11.1692 7.69374C11.1603 7.69436 11.1516 7.6967 11.1436 7.70062C11.137 7.70348 11.131 7.70751 11.1259 7.71248C11.1112 7.70344 11.0958 7.6953 11.08 7.68812C11.0602 7.67868 11.0389 7.67254 11.017 7.66998V7.67002V7.67002ZM11.0583 7.90814H11.0596C11.0594 7.90834 11.0593 7.90858 11.059 7.90876L11.0583 7.90814Z", fill: "#D52B1E" }), jsxRuntime.jsx("path", { d: "M11.9441 7.92229L11.9281 7.92717C11.9108 7.93385 11.8922 7.93723 11.8735 7.93709C11.818 7.94113 11.7838 7.91595 11.7266 7.92015C11.6971 7.92231 11.684 7.94395 11.6539 7.95111C11.6422 7.95405 11.6303 7.95593 11.6182 7.95675L11.6289 7.93607C11.6143 7.93893 11.5994 7.94069 11.5845 7.94135C11.5738 7.94151 11.5631 7.94064 11.5525 7.93875L11.5739 7.91975C11.5646 7.91831 11.5556 7.91607 11.5467 7.91303C11.5387 7.90997 11.5312 7.90573 11.5245 7.90043L11.56 7.89337C11.5926 7.88567 11.6028 7.87043 11.6417 7.86687C11.6658 7.86465 11.7053 7.86595 11.8022 7.88121C11.8659 7.89125 11.8942 7.88655 11.9184 7.87605C11.9254 7.87272 11.9312 7.86761 11.9353 7.8613C11.9394 7.85498 11.9416 7.84771 11.9416 7.84029C11.9419 7.83328 11.9403 7.82632 11.9371 7.82001C11.9339 7.8137 11.9292 7.80823 11.9232 7.80409C11.9165 7.79917 11.9083 7.79661 11.8999 7.79683", stroke: "#FEDF00", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M11.0208 7.74405C11.011 7.74246 11.0009 7.74455 10.9926 7.74987C10.9826 7.75579 10.9813 7.76381 10.974 7.77271C10.9833 7.77471 10.9887 7.77993 10.998 7.77779C11.0044 7.77631 11.0101 7.77273 11.014 7.76765C11.017 7.76459 11.0194 7.76095 11.021 7.75698C11.0225 7.753 11.0232 7.74876 11.0229 7.74453L11.0208 7.74405Z", fill: "#FCD900", stroke: "#FEDF00", strokeWidth: "0.010773" }), jsxRuntime.jsx("path", { d: "M11.2568 8.00768L11.2654 8.02368C11.2701 8.03308 11.2738 8.0429 11.2764 8.05302C11.2788 8.06692 11.2805 8.08092 11.2814 8.09498L11.283 8.1025L11.282 8.12508M11.4248 7.98608L11.4174 8.01274L11.3976 8.08194L11.3954 8.09482M11.1674 8.01528C11.1839 8.0188 11.1788 8.08248 11.2049 8.09708", stroke: "#FEDF00", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M11.7625 8.12745L11.7706 8.12247C11.7917 8.11423 11.8109 8.10207 11.827 8.08667", stroke: "#FEDF00", strokeWidth: "0.020727" }), jsxRuntime.jsx("path", { d: "M11.6 8.09223H11.6001C11.6743 8.07457 11.7237 8.03927 11.7593 8.03485", stroke: "#FEDF00", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M11.6754 8.00406C11.6812 8.00389 11.687 8.00344 11.6928 8.0027C11.7236 7.9985 11.7285 8.01644 11.75 8.02786C11.789 8.04864 11.7941 8.074 11.8403 8.09498L11.847 8.09808L11.8648 8.10666", stroke: "#FEDF00", strokeWidth: "0.020727", strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M10.8717 7.82242C10.8765 7.8237 10.8816 7.82408 10.8866 7.8235C10.8935 7.82288 10.8967 7.81874 10.9037 7.81852C10.9087 7.81762 10.9138 7.81852 10.9181 7.82102C10.9206 7.82275 10.9227 7.82511 10.924 7.82786C10.9261 7.83052 10.927 7.83386 10.9266 7.83718C10.925 7.8426 10.9195 7.84616 10.9137 7.84558C10.9114 7.84584 10.9091 7.84547 10.9071 7.8445C10.9051 7.84353 10.9034 7.84201 10.9022 7.84014C10.9008 7.83778 10.9005 7.83494 10.9014 7.83236C10.8903 7.83634 10.8778 7.83216 10.8717 7.82242V7.82242Z", fill: "#FCD900", stroke: "#FEDF00", strokeWidth: "0.010773" }), jsxRuntime.jsx("path", { d: "M11.0277 8.01521C11.0135 8.01061 10.9997 8.00509 10.9864 7.99869C10.9932 7.99369 10.9987 7.99339 11.0045 7.98759C11.0127 7.97943 11.0124 7.97183 11.017 7.96121C11.0215 7.95081 11.0209 7.94213 11.0311 7.93435C11.038 7.92995 11.0466 7.92873 11.0546 7.93105C11.0627 7.93317 11.0693 7.93885 11.0724 7.94637C11.0752 7.95759 11.069 7.96409 11.0672 7.97545C11.0639 7.98485 11.0626 7.99475 11.0631 8.00465C11.0651 8.01088 11.0676 8.01694 11.0705 8.02279C11.0561 8.02118 11.0418 8.01866 11.0277 8.01521ZM11.0069 8.03421C11.0068 8.02729 11.0126 8.02161 11.0199 8.02155C11.0272 8.02149 11.0331 8.02701 11.0332 8.03393C11.0333 8.04085 11.0275 8.04653 11.0202 8.04659C11.0129 8.04665 11.007 8.04117 11.0069 8.03429V8.03421ZM10.9699 7.70401L10.9669 7.70193C10.9589 7.69573 10.9581 7.68887 10.9543 7.67973C10.9509 7.67239 10.9487 7.66461 10.9477 7.65665C10.9472 7.64967 10.9472 7.64267 10.9477 7.63569C10.9481 7.62941 10.9481 7.62309 10.9477 7.61681C10.9477 7.61029 10.9462 7.60383 10.9433 7.59793C10.9412 7.59433 10.935 7.59119 10.9367 7.58953C10.9387 7.58761 10.9421 7.58913 10.9455 7.58953C10.9529 7.59023 10.9598 7.59317 10.9653 7.59793C10.9724 7.60317 10.9774 7.61057 10.9794 7.61891L10.988 7.64827C10.9892 7.65341 10.9912 7.65837 10.9939 7.66295C10.9972 7.66747 11.0009 7.67168 11.0049 7.67553L11.0047 7.67599C10.9996 7.68187 10.9942 7.68745 10.9884 7.69267C10.9829 7.69707 10.977 7.70091 10.9706 7.70413L10.9699 7.70393L10.9699 7.70401ZM11.0455 7.91681L11.0924 7.93743C11.1243 7.91863 11.1498 7.8914 11.1658 7.85905C11.1803 7.83199 11.1899 7.80285 11.1945 7.77279L11.1569 7.76117L11.1494 7.76263C11.1424 7.79199 11.1309 7.82023 11.1154 7.84647C11.1007 7.86963 11.0819 7.89015 11.0598 7.90715L11.0455 7.91681ZM11.1493 8.27921C11.1552 8.27043 11.1617 8.26199 11.1687 8.25393C11.1773 8.24567 11.1865 8.23799 11.1962 8.23093C11.1996 8.23071 11.2031 8.23121 11.2063 8.23235C11.206 8.24271 11.2047 8.25303 11.2025 8.26317C11.2007 8.27139 11.1983 8.27949 11.1952 8.28737C11.1936 8.29425 11.1908 8.30086 11.187 8.30695C11.184 8.31067 11.1807 8.31413 11.1771 8.31731C11.1663 8.30247 11.1491 8.29137 11.1493 8.27919V8.27921ZM11.8425 8.31621C11.8651 8.32163 11.8862 8.33175 11.9042 8.34585C11.9053 8.34895 11.9058 8.35223 11.9055 8.35551C11.8949 8.35805 11.8842 8.35973 11.8733 8.36053C11.8645 8.36116 11.8557 8.36116 11.8469 8.36053C11.8395 8.3609 11.8321 8.36019 11.8249 8.35843C11.8203 8.35668 11.8159 8.35458 11.8117 8.35215C11.8237 8.33823 11.8302 8.31941 11.8425 8.31621ZM11.6375 8.27541C11.6601 8.28084 11.6812 8.29096 11.6992 8.30505C11.7003 8.30814 11.7008 8.31142 11.7005 8.31469C11.69 8.31725 11.6792 8.31894 11.6684 8.31973C11.6596 8.32036 11.6507 8.32036 11.6419 8.31973C11.6345 8.3201 11.6271 8.31939 11.6199 8.31763C11.6154 8.31588 11.6109 8.31378 11.6067 8.31135C11.6187 8.29743 11.6252 8.27861 11.6375 8.27541ZM11.2734 8.31801C11.2839 8.321 11.2942 8.3246 11.3042 8.32877C11.315 8.33441 11.3253 8.34071 11.3351 8.34765C11.3362 8.35075 11.3367 8.35403 11.3364 8.35731C11.3259 8.35985 11.3151 8.36153 11.3042 8.36233C11.2955 8.36296 11.2866 8.36296 11.2778 8.36233C11.2704 8.36271 11.263 8.36201 11.2558 8.36023C11.2512 8.35849 11.2468 8.35639 11.2426 8.35395C11.2546 8.34003 11.2611 8.32121 11.2734 8.31801ZM11.0848 7.72201C11.0719 7.71645 11.0628 7.70111 11.071 7.69013C11.0742 7.68573 11.0796 7.68665 11.0828 7.68223C11.0858 7.67715 11.0869 7.67119 11.0857 7.66545C11.0848 7.65904 11.0834 7.65272 11.0813 7.64657C11.0795 7.63969 11.0786 7.63267 11.0784 7.62561C11.0767 7.61463 11.0793 7.60343 11.0857 7.59415C11.0901 7.58857 11.0961 7.58433 11.103 7.58191C11.1061 7.58463 11.1018 7.59195 11.1023 7.59835C11.1031 7.60629 11.1051 7.61407 11.1084 7.62141C11.1126 7.63267 11.1184 7.63759 11.1231 7.64867C11.128 7.6571 11.131 7.66637 11.1319 7.67593C11.1326 7.68386 11.1311 7.69181 11.1275 7.69901C11.1249 7.70557 11.1205 7.71137 11.1147 7.71579C11.11 7.71985 11.1042 7.72273 11.098 7.72417C11.0935 7.72465 11.0889 7.7239 11.0848 7.72201Z", fill: "#005EB8" }), jsxRuntime.jsx("path", { d: "M8.66582 4.98499H10.3916V6.62545H8.66582V4.98499ZM10.5756 4.98499H12.3013V6.62545H10.5756V4.98499ZM8.67233 8.04819C8.67956 8.09436 8.69491 8.13905 8.71775 8.18037C8.74877 8.22701 8.73732 8.22575 8.80755 8.30037C8.84577 8.33685 8.88993 8.36721 8.93831 8.39027C8.98361 8.41303 9.03195 8.42981 9.082 8.44019C9.1954 8.46895 9.31297 8.47975 9.43005 8.47215C9.50213 8.46865 9.57397 8.46156 9.64528 8.45091C9.72269 8.44037 9.80062 8.43363 9.87876 8.43071C9.92355 8.42891 9.96589 8.42851 10.0077 8.43071C10.0593 8.43395 10.1106 8.44069 10.1612 8.45091C10.2394 8.46689 10.3164 8.4882 10.3914 8.51467L10.3917 6.80157L8.66565 6.80111V7.97199C8.66565 7.97199 8.66918 8.02919 8.67233 8.04819ZM12.295 8.04779C12.2878 8.09397 12.2725 8.13864 12.2496 8.17994C12.2186 8.2266 12.23 8.22535 12.1598 8.29997C12.1216 8.33645 12.0774 8.36679 12.0291 8.38987C11.9838 8.41262 11.9354 8.42941 11.8854 8.43977C11.772 8.46853 11.6544 8.47933 11.5373 8.47175C11.4652 8.46825 11.3934 8.46115 11.3221 8.45051C11.2447 8.43997 11.1668 8.43323 11.0886 8.43031C11.0438 8.42851 11.0015 8.42811 10.9596 8.43031C10.908 8.43353 10.8567 8.44028 10.8062 8.45051C10.7275 8.4666 10.65 8.48791 10.5745 8.51427L10.5757 6.80117L12.3017 6.80071V7.97157C12.3017 7.97157 12.2982 8.02877 12.295 8.04777V8.04779Z", stroke: "#713F2A", strokeWidth: "0.016737" })] }), jsxRuntime.jsx("defs", { children: jsxRuntime.jsx("clipPath", { id: "clip0_11_9194", children: jsxRuntime.jsx("rect", { width: "21", height: "14", fill: "white" }) }) })] }));
|
|
3687
3713
|
};
|
|
@@ -3730,6 +3756,10 @@ const Bulgaria = () => {
|
|
|
3730
3756
|
return (jsxRuntime.jsxs("svg", { width: "50", height: "40", viewBox: "0 0 21 14", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [jsxRuntime.jsxs("g", { clipPath: "url(#clip0_13_10424)", children: [jsxRuntime.jsx("path", { d: "M21 0H0V14H21V0Z", fill: "white" }), jsxRuntime.jsx("path", { d: "M21 4.66669H0V14H21V4.66669Z", fill: "#00966E" }), jsxRuntime.jsx("path", { d: "M21 9.33331H0V14H21V9.33331Z", fill: "#D62612" })] }), jsxRuntime.jsx("defs", { children: jsxRuntime.jsx("clipPath", { id: "clip0_13_10424", children: jsxRuntime.jsx("rect", { width: "21", height: "14", fill: "white" }) }) })] }));
|
|
3731
3757
|
};
|
|
3732
3758
|
|
|
3759
|
+
const Canada = () => {
|
|
3760
|
+
return (jsxRuntime.jsxs("svg", { width: "50", height: "40", viewBox: "0 0 21 14", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [jsxRuntime.jsx("rect", { width: "21", height: "14", fill: "white" }), jsxRuntime.jsx("rect", { width: "5.25", height: "14", fill: "#D80621" }), jsxRuntime.jsx("rect", { x: "15.75", width: "5.25", height: "14", fill: "#D80621" }), jsxRuntime.jsx("path", { d: "M10.50 2.90 L10.92 4.25 L11.75 3.95 L11.45 5.30 L13.30 4.95 L12.85 5.95 L13.20 6.60 L12.00 7.45 L12.30 8.10 L10.95 8.05 L10.50 9.90 L10.05 8.05 L8.70 8.10 L9.00 7.45 L7.80 6.60 L8.15 5.95 L7.70 4.95 L9.55 5.30 L9.25 3.95 L10.08 4.25 Z", fill: "#D80621" }), jsxRuntime.jsx("rect", { x: "10.34", y: "9.7", width: "0.32", height: "1.5", fill: "#D80621" })] }));
|
|
3761
|
+
};
|
|
3762
|
+
|
|
3733
3763
|
const Chile = () => {
|
|
3734
3764
|
return (jsxRuntime.jsxs("svg", { width: "50", height: "40", viewBox: "0 0 21 14", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [jsxRuntime.jsxs("g", { clipPath: "url(#clip0_13_10428)", children: [jsxRuntime.jsx("path", { d: "M0 0H21V14H0V0Z", fill: "white" }), jsxRuntime.jsx("path", { d: "M0 7V0H7V10.5L0 7Z", fill: "#0039A6" }), jsxRuntime.jsx("path", { d: "M0 7H21V14H0V7Z", fill: "#D72B1F" }), jsxRuntime.jsx("path", { d: "M3.5 1.75L4.52865 4.91575L1.83575 2.95925H5.16425L2.47135 4.91575L3.5 1.75Z", fill: "white" })] }), jsxRuntime.jsx("defs", { children: jsxRuntime.jsx("clipPath", { id: "clip0_13_10428", children: jsxRuntime.jsx("rect", { width: "21", height: "14", fill: "white" }) }) })] }));
|
|
3735
3765
|
};
|
|
@@ -4002,6 +4032,7 @@ const flagsMap = {
|
|
|
4002
4032
|
BO: Bolivia,
|
|
4003
4033
|
BR: Brasil,
|
|
4004
4034
|
BG: Bulgaria,
|
|
4035
|
+
CA: Canada,
|
|
4005
4036
|
CL: Chile,
|
|
4006
4037
|
CN: China,
|
|
4007
4038
|
CO: Colombia,
|
|
@@ -4099,6 +4130,8 @@ const countries = [
|
|
|
4099
4130
|
{ code: "+503", name: "El Salvador", country: "SV" },
|
|
4100
4131
|
{ code: "+507", name: "Panama", country: "PA" },
|
|
4101
4132
|
{ code: "+506", name: "Costa Rica", country: "CR" },
|
|
4133
|
+
{ code: "+504", name: "Honduras", country: "HN" },
|
|
4134
|
+
{ code: "+505", name: "Nicaragua", country: "NI" },
|
|
4102
4135
|
{ code: "+51", name: "Peru", country: "PE" },
|
|
4103
4136
|
{ code: "+56", name: "Chile", country: "CL" },
|
|
4104
4137
|
{ code: "+591", name: "Bolivia", country: "BO" },
|
|
@@ -4111,6 +4144,9 @@ const countries = [
|
|
|
4111
4144
|
{ code: "+598", name: "Uruguay", country: "UY" },
|
|
4112
4145
|
{ code: "+58", name: "Venezuela", country: "VE" },
|
|
4113
4146
|
{ code: "+1", name: "United States", country: "US" },
|
|
4147
|
+
// Canadá va detrás del resto de países con +1: para values legacy sin ISO
|
|
4148
|
+
// gana el primer +1 de la lista y ese comportamiento no debe cambiar.
|
|
4149
|
+
{ code: "+1", name: "Canadá", country: "CA" },
|
|
4114
4150
|
{ code: "+7", name: "Russia", country: "RU" },
|
|
4115
4151
|
{ code: "+20", name: "Egypt", country: "EG" },
|
|
4116
4152
|
{ code: "+27", name: "South Africa", country: "ZA" },
|
|
@@ -4170,11 +4206,14 @@ const currencyByCountry = {
|
|
|
4170
4206
|
DO: "DOP",
|
|
4171
4207
|
EC: "USD",
|
|
4172
4208
|
GT: "GTQ",
|
|
4209
|
+
HN: "HNL",
|
|
4210
|
+
NI: "NIO",
|
|
4173
4211
|
PR: "USD",
|
|
4174
4212
|
PY: "PYG",
|
|
4175
4213
|
UY: "UYU",
|
|
4176
4214
|
VE: "VES",
|
|
4177
4215
|
US: "USD",
|
|
4216
|
+
CA: "CAD",
|
|
4178
4217
|
RU: "RUB",
|
|
4179
4218
|
EG: "EGP",
|
|
4180
4219
|
ZA: "ZAR",
|
|
@@ -4448,11 +4487,13 @@ const Currency = ({ id, label, required = false, error = false, errorText = "",
|
|
|
4448
4487
|
!currencySelectorLocked &&
|
|
4449
4488
|
!disabled &&
|
|
4450
4489
|
$3wX5A$reactdom.createPortal(jsxRuntime.jsxs("div", { ref: portalDropdownRef, style: dropdownPosition, className: "bg-content1 border border-default-200 rounded-lg shadow-lg z-50", role: "listbox", children: [jsxRuntime.jsx("div", { className: "p-2", children: jsxRuntime.jsx("input", { type: "text", className: "w-full px-3 py-2 text-sm bg-default-100 border-2 border-default-200 text-default-500 rounded-lg focus:outline-none focus:border-primary-500", placeholder: t.searchPlaceholder, onChange: (e) => {
|
|
4451
|
-
const searchTerm = e.target.value
|
|
4452
|
-
const filtered = options.filter((opt) =>
|
|
4453
|
-
opt
|
|
4454
|
-
opt.
|
|
4455
|
-
opt.
|
|
4490
|
+
const searchTerm = e.target.value;
|
|
4491
|
+
const filtered = options.filter((opt) => matchesSearchTerm([
|
|
4492
|
+
getCountryName(opt),
|
|
4493
|
+
opt.name,
|
|
4494
|
+
opt.currency,
|
|
4495
|
+
opt.country,
|
|
4496
|
+
], searchTerm));
|
|
4456
4497
|
setFilteredOptions(filtered);
|
|
4457
4498
|
} }) }), jsxRuntime.jsx("div", { className: `${listMaxHeight} overflow-y-auto`, children: filteredOptions.length > 0 ? (filteredOptions.map((opt) => (jsxRuntime.jsxs("button", { type: "button", role: "option", "aria-selected": opt.country === selected.country &&
|
|
4458
4499
|
opt.currency === selected.currency, className: `flex items-center w-full px-4 py-2.5 text-sm hover:bg-default-200 ${opt.country === selected.country &&
|
|
@@ -4956,6 +4997,19 @@ function computeTotal(data) {
|
|
|
4956
4997
|
function isDonutEmpty(data) {
|
|
4957
4998
|
return data.length === 0 || computeTotal(data) === 0;
|
|
4958
4999
|
}
|
|
5000
|
+
/**
|
|
5001
|
+
* Formatea `percent` (0-1) como entero + "%", excepto cuando la porción es
|
|
5002
|
+
* real (>0) pero redondea a 0 — ahí muestra "<1%" en vez de "0%", que se lee
|
|
5003
|
+
* como "no hay nada" y confunde cuando sí hay dato (ej. 4 de 2357 = 0.17%).
|
|
5004
|
+
* `lessThanOneLabel` permite traducir el texto (ver `DonutChartTranslations`).
|
|
5005
|
+
*/
|
|
5006
|
+
function formatDonutPercent(percent, lessThanOneLabel = "<1%") {
|
|
5007
|
+
if (!Number.isFinite(percent) || percent <= 0) {
|
|
5008
|
+
return "0%";
|
|
5009
|
+
}
|
|
5010
|
+
const rounded = Math.round(percent * 100);
|
|
5011
|
+
return rounded === 0 ? lessThanOneLabel : `${rounded}%`;
|
|
5012
|
+
}
|
|
4959
5013
|
/**
|
|
4960
5014
|
* Resuelve las proporciones y el color final de cada categoría.
|
|
4961
5015
|
* El color propio de cada dato tiene prioridad; si falta, se cicla `palette` por índice.
|
|
@@ -4976,6 +5030,7 @@ function computeSlices(data, palette = DEFAULT_DONUT_COLORS) {
|
|
|
4976
5030
|
const DEFAULT_TRANSLATIONS$e = {
|
|
4977
5031
|
emptyState: "Sin datos para mostrar",
|
|
4978
5032
|
totalLabel: "Total",
|
|
5033
|
+
lessThanOnePercent: "<1%",
|
|
4979
5034
|
};
|
|
4980
5035
|
/**
|
|
4981
5036
|
* DonutChart - Gráfico circular (pie o donut, según `innerRadiusRatio`) con
|
|
@@ -4991,7 +5046,7 @@ const DonutChart = ({ data, height = 220, innerRadiusRatio = 0.65, showLegend =
|
|
|
4991
5046
|
const total = slices.reduce((sum, s) => sum + s.value, 0);
|
|
4992
5047
|
const format = (value) => formatValue ? formatValue(value) : String(value);
|
|
4993
5048
|
const isDonut = innerRadiusRatio > 0;
|
|
4994
|
-
return (jsxRuntime.jsxs("div", { className: className, children: [jsxRuntime.jsxs("div", { className: "relative w-full", style: { height }, children: [jsxRuntime.jsx(recharts.ResponsiveContainer, { width: "100%", height: "100%", children: jsxRuntime.jsxs(recharts.PieChart, { children: [jsxRuntime.jsx(recharts.Pie, { isAnimationActive: animated, data: slices, dataKey: "value", nameKey: "name", innerRadius: isDonut ? `${innerRadiusRatio * 100}%` : 0, outerRadius: "90%", stroke: "none", children: slices.map((slice) => (jsxRuntime.jsx(recharts.Cell, { fill: slice.color }, slice.name))) }), jsxRuntime.jsx(recharts.Tooltip, { formatter: (value) => format(value) })] }) }), isDonut && showTotal && (jsxRuntime.jsxs("div", { className: "aurora-donut-total pointer-events-none absolute inset-0 flex flex-col items-center justify-center", "aria-hidden": "true", children: [jsxRuntime.jsx("span", { className: "text-xs text-foreground-500", children: t.totalLabel }), jsxRuntime.jsx("span", { className: "text-xl font-semibold", children: format(total) })] }))] }), showLegend && (jsxRuntime.jsx("ul", { className: "mt-3 flex flex-wrap gap-3", children: slices.map((slice) => (jsxRuntime.jsxs("li", { className: "flex items-center gap-1.5 text-xs", children: [jsxRuntime.jsx("span", { className: "h-2 w-2 rounded-full", style: { backgroundColor: slice.color }, "aria-hidden": "true" }), jsxRuntime.jsx("span", { children: slice.name }), jsxRuntime.
|
|
5049
|
+
return (jsxRuntime.jsxs("div", { className: className, children: [jsxRuntime.jsxs("div", { className: "relative w-full", style: { height }, children: [jsxRuntime.jsx(recharts.ResponsiveContainer, { width: "100%", height: "100%", children: jsxRuntime.jsxs(recharts.PieChart, { children: [jsxRuntime.jsx(recharts.Pie, { isAnimationActive: animated, data: slices, dataKey: "value", nameKey: "name", innerRadius: isDonut ? `${innerRadiusRatio * 100}%` : 0, outerRadius: "90%", stroke: "none", children: slices.map((slice) => (jsxRuntime.jsx(recharts.Cell, { fill: slice.color }, slice.name))) }), jsxRuntime.jsx(recharts.Tooltip, { formatter: (value) => format(value) })] }) }), isDonut && showTotal && (jsxRuntime.jsxs("div", { className: "aurora-donut-total pointer-events-none absolute inset-0 flex flex-col items-center justify-center", "aria-hidden": "true", children: [jsxRuntime.jsx("span", { className: "text-xs text-foreground-500", children: t.totalLabel }), jsxRuntime.jsx("span", { className: "text-xl font-semibold", children: format(total) })] }))] }), showLegend && (jsxRuntime.jsx("ul", { className: "mt-3 flex flex-wrap gap-3", children: slices.map((slice) => (jsxRuntime.jsxs("li", { className: "flex items-center gap-1.5 text-xs", children: [jsxRuntime.jsx("span", { className: "h-2 w-2 rounded-full", style: { backgroundColor: slice.color }, "aria-hidden": "true" }), jsxRuntime.jsx("span", { children: slice.name }), jsxRuntime.jsx("span", { className: "text-foreground-500", children: formatDonutPercent(slice.percent, t.lessThanOnePercent) })] }, slice.name))) }))] }));
|
|
4995
5050
|
};
|
|
4996
5051
|
|
|
4997
5052
|
const H1 = ({ children, className, ...props }) => {
|
|
@@ -6465,10 +6520,32 @@ const isDismissControl = (element) => matchesAncestor(element, DISMISS_CONTROL_S
|
|
|
6465
6520
|
* 1. Dentro del propio componente: el popover vive en un portal, así que el
|
|
6466
6521
|
* campo de búsqueda queda fuera de él y una pulsación sobre el texto se
|
|
6467
6522
|
* contaba como externa.
|
|
6468
|
-
* 2. Sobre un control de cierre del contenedor.
|
|
6523
|
+
* 2. Sobre un control de cierre del contenedor propio.
|
|
6469
6524
|
* 3. Dentro del mismo diálogo/contenedor que el componente: seguir rellenando
|
|
6470
6525
|
* el formulario no es descartar el desplegable.
|
|
6471
6526
|
*
|
|
6527
|
+
* Las exenciones 2 y 3 se limitan al contenedor del propio componente. Un
|
|
6528
|
+
* control de cierre suelto en la página —la X de un toast, la de un banner— no
|
|
6529
|
+
* tiene nada que ver con este desplegable, así que sigue contando como externo
|
|
6530
|
+
* y lo cierra.
|
|
6531
|
+
*
|
|
6532
|
+
* ## No lo envuelvas en una puerta «solo dentro de un diálogo» (TECH-2313 → TECH-2459)
|
|
6533
|
+
*
|
|
6534
|
+
* En v2 este predicado se instalaba **solo** si el componente vivía dentro de una
|
|
6535
|
+
* superficie modal, y fuera de ella había que dejarle el suyo a HeroUI: su
|
|
6536
|
+
* `use-autocomplete` mezclaba `popoverProps.shouldCloseOnInteractOutside` por
|
|
6537
|
+
* truthiness, así que cualquier predicado propio desactivaba su
|
|
6538
|
+
* `ariaShouldCloseOnInteractOutside` y la primera pulsación se perdía en una
|
|
6539
|
+
* página suelta. De ahí venían un `isInsideDismissContainer` y un helper de
|
|
6540
|
+
* mezcla que esta rama ya no tiene.
|
|
6541
|
+
*
|
|
6542
|
+
* **En v3 esa puerta no hace falta**: la prop va directa a la pieza del compuesto
|
|
6543
|
+
* (`<ComboBox.Popover shouldCloseOnInteractOutside={…}>`) y HeroUI no la mezcla
|
|
6544
|
+
* con ningún default propio — medido con grep recursivo, 0 de 1185 ficheros de
|
|
6545
|
+
* `node_modules/@heroui` mencionan `shouldCloseOnInteractOutside`, y la sonda
|
|
6546
|
+
* está validada porque en `react-aria-components` sí aparece. Reintroducir la
|
|
6547
|
+
* puerta hoy solo añadiría una condición que nunca es falsa donde importa.
|
|
6548
|
+
*
|
|
6472
6549
|
* @param element Elemento donde ha empezado la interacción.
|
|
6473
6550
|
* @param root Raíz del componente.
|
|
6474
6551
|
*/
|
|
@@ -6476,14 +6553,16 @@ const shouldClosePopoverOnInteractOutside = (element, root) => {
|
|
|
6476
6553
|
if (root?.contains(element)) {
|
|
6477
6554
|
return false;
|
|
6478
6555
|
}
|
|
6556
|
+
const container = root?.closest?.(CONTAINER_SELECTOR);
|
|
6479
6557
|
if (isDismissControl(element)) {
|
|
6480
|
-
|
|
6558
|
+
// Sin contenedor propio no hay a quién eximir: el control de cierre es
|
|
6559
|
+
// de otra cosa y su pulsación descarta el desplegable como cualquier otra.
|
|
6560
|
+
return container ? !container.contains(element) : true;
|
|
6481
6561
|
}
|
|
6482
6562
|
if (!matchesAncestor(element, CONTAINER_SELECTOR)) {
|
|
6483
6563
|
return true;
|
|
6484
6564
|
}
|
|
6485
6565
|
// Solo exime el contenedor propio: un diálogo distinto sigue siendo externo.
|
|
6486
|
-
const container = root?.closest?.(CONTAINER_SELECTOR);
|
|
6487
6566
|
return !container?.contains(element);
|
|
6488
6567
|
};
|
|
6489
6568
|
|
|
@@ -6945,12 +7024,8 @@ const Phone = ({ id, label, required = false, error = false, errorText = "", val
|
|
|
6945
7024
|
*/
|
|
6946
7025
|
className: "mx-2 h-10 min-w-0 flex-1 rounded-[12px] border-none bg-default-100 px-3 py-0 leading-10 shadow-xs ring-0 ring-offset-0 outline-0 text-foreground placeholder:text-default-500 disabled:opacity-100", placeholder: t.placeholder, value: inputValue, onChange: handleInputChange, onBlur: onBlur, disabled: disabled, name: name, autoComplete: "tel", id: `phone-input-${name}` })] }), error && errorText && (jsxRuntime.jsx("span", { className: " text-left text-xs text-danger-500 mt-1", children: errorText })), isDropdownOpen &&
|
|
6947
7026
|
$3wX5A$reactdom.createPortal(jsxRuntime.jsxs("div", { ref: portalDropdownRef, style: dropdownPosition, className: "bg-content1 border border-default-200 rounded-lg shadow-lg", "data-react-aria-top-layer": "true", children: [jsxRuntime.jsx("div", { className: "p-2", children: jsxRuntime.jsx("input", { type: "text", className: "w-full px-3 py-2 text-sm bg-default-100 border-2 border-default-200 text-default-500 rounded-lg focus:outline-none focus:border-primary-500", placeholder: t.searchPlaceholder, onChange: (e) => {
|
|
6948
|
-
const searchTerm = e.target.value
|
|
6949
|
-
const filtered = uniqueCountries.filter((country) => getCountryName(country)
|
|
6950
|
-
.toLowerCase()
|
|
6951
|
-
.includes(searchTerm) ||
|
|
6952
|
-
country.name.toLowerCase().includes(searchTerm) ||
|
|
6953
|
-
country.code.toLowerCase().includes(searchTerm));
|
|
7027
|
+
const searchTerm = e.target.value;
|
|
7028
|
+
const filtered = uniqueCountries.filter((country) => matchesSearchTerm([getCountryName(country), country.name, country.code], searchTerm));
|
|
6954
7029
|
setFilteredCountries(filtered);
|
|
6955
7030
|
} }) }), jsxRuntime.jsx("div", { className: "max-h-60 overflow-y-auto", children: filteredCountries.length > 0 ? (filteredCountries.map((country) => (jsxRuntime.jsxs("button", { type: "button", className: `flex items-center w-full px-4 py-2.5 text-sm hover:bg-default-200 ${country.country === selectedCountry.country
|
|
6956
7031
|
? "bg-primary-50"
|
|
@@ -11423,6 +11498,37 @@ const RangeFilter = ({ title, description, value, onChange, minValue, maxValue,
|
|
|
11423
11498
|
}, className: "w-full", isDisabled: false, ...restSliderProps, children: jsxRuntime.jsxs(react.Slider.Track, { children: [jsxRuntime.jsx(react.Slider.Fill, { className: fillClassName }), stepMarks.length > 0 ? (jsxRuntime.jsx(react.Slider.Marks, { children: stepMarks.map((left) => (jsxRuntime.jsx("span", { className: SLIDER_STEP_CLASS, style: { left: `${left}%` } }, left))) })) : null, jsxRuntime.jsx(react.Slider.Thumb, { index: 0, "aria-label": t.minLabel, className: thumbClassName }), jsxRuntime.jsx(react.Slider.Thumb, { index: 1, "aria-label": t.maxLabel, className: thumbClassName })] }) }) }), jsxRuntime.jsxs("div", { className: "flex justify-between items-center text-sm", children: [jsxRuntime.jsxs("div", { className: "flex flex-col items-start", children: [jsxRuntime.jsx("span", { className: "text-xs text-default-500", children: t.minLabel }), jsxRuntime.jsx("span", { className: "font-medium text-default-700", children: formatValue(currentValue[0]) })] }), jsxRuntime.jsxs("div", { className: "flex flex-col items-end", children: [jsxRuntime.jsx("span", { className: "text-xs text-default-500", children: t.maxLabel }), jsxRuntime.jsx("span", { className: "font-medium text-default-700", children: formatValue(currentValue[1]) })] })] })] }));
|
|
11424
11499
|
};
|
|
11425
11500
|
|
|
11501
|
+
/**
|
|
11502
|
+
* Opciones visibles en el panel del multiselect mientras se escribe en su
|
|
11503
|
+
* buscador.
|
|
11504
|
+
*
|
|
11505
|
+
* - La comparación ignora tildes y mayúsculas (`matchesSearchTerm`): teclear
|
|
11506
|
+
* "peluqueria" encuentra "Peluquería". El `includes` crudo anterior exigía
|
|
11507
|
+
* escribir la tilde, así que el panel mostraba el mensaje de sin
|
|
11508
|
+
* coincidencias con la opción delante.
|
|
11509
|
+
* - Lo ya seleccionado se mantiene aunque no case con el término (regla previa,
|
|
11510
|
+
* conservada) para no esconder al usuario lo que acaba de marcar.
|
|
11511
|
+
*/
|
|
11512
|
+
const filterMultiselectOptions = (options, searchQuery, selectedValues) => {
|
|
11513
|
+
const term = searchQuery.trim();
|
|
11514
|
+
if (!term) {
|
|
11515
|
+
return options;
|
|
11516
|
+
}
|
|
11517
|
+
return options.filter((option) => selectedValues.includes(option.value) ||
|
|
11518
|
+
matchesSearchTerm([option.label, option.value], term));
|
|
11519
|
+
};
|
|
11520
|
+
|
|
11521
|
+
// =========================================================================
|
|
11522
|
+
// SHARED HELPERS
|
|
11523
|
+
// =========================================================================
|
|
11524
|
+
const DEFAULT_SELECT_PLACEHOLDER = "Seleccionar {label}";
|
|
11525
|
+
/**
|
|
11526
|
+
* Resuelve el placeholder del disparador de un filtro `select` o `multiselect`.
|
|
11527
|
+
* Ambos comparten la clave `selectPlaceholder`, así que una sola traducción cubre
|
|
11528
|
+
* los dos. Una plantilla vacía o en blanco cuenta como ausente y cae al default:
|
|
11529
|
+
* un motor i18n que devuelve "" para una clave sin traducir dejaría el filtro mudo.
|
|
11530
|
+
*/
|
|
11531
|
+
const resolveSelectPlaceholder = (translations, title) => (translations?.selectPlaceholder?.trim() || DEFAULT_SELECT_PLACEHOLDER).replace("{label}", title.toLowerCase());
|
|
11426
11532
|
// =========================================================================
|
|
11427
11533
|
// BASE FILTER SECTION COMPONENT
|
|
11428
11534
|
// =========================================================================
|
|
@@ -11524,7 +11630,7 @@ const FilterSection = ({ filter, translations, value, onChange, isExpanded = fal
|
|
|
11524
11630
|
const renderFilterContent = () => {
|
|
11525
11631
|
switch (filter.type) {
|
|
11526
11632
|
case "select":
|
|
11527
|
-
return (jsxRuntime.jsx(SelectFilter, { filter: filter, value: value, onChange: onChange }));
|
|
11633
|
+
return (jsxRuntime.jsx(SelectFilter, { filter: filter, value: value, onChange: onChange, translations: translations }));
|
|
11528
11634
|
case "multiselect":
|
|
11529
11635
|
return (jsxRuntime.jsx(MultiSelectFilter, { filter: filter, value: value, onChange: onChange, translations: translations }));
|
|
11530
11636
|
case "range":
|
|
@@ -11553,9 +11659,10 @@ const FilterSection = ({ filter, translations, value, onChange, isExpanded = fal
|
|
|
11553
11659
|
// =========================================================================
|
|
11554
11660
|
// SELECT FILTER
|
|
11555
11661
|
// =========================================================================
|
|
11556
|
-
const SelectFilter = ({ filter, value, onChange }) => {
|
|
11662
|
+
const SelectFilter = ({ filter, value, onChange, translations }) => {
|
|
11557
11663
|
const currentValue = value?.value || "";
|
|
11558
|
-
|
|
11664
|
+
const triggerPlaceholder = resolveSelectPlaceholder(translations, filter.title);
|
|
11665
|
+
return (jsxRuntime.jsx(Select, { placeholder: triggerPlaceholder, selectedKeys: new Set(currentValue ? [currentValue] : []), onSelectionChange: (keys) => {
|
|
11559
11666
|
const selectedKey = Array.from(keys)[0];
|
|
11560
11667
|
onChange({ value: selectedKey || "" });
|
|
11561
11668
|
}, className: "w-full", children: filter.data.map((item) => (
|
|
@@ -11579,19 +11686,12 @@ const MultiSelectFilter = ({ filter, value, onChange, translations }) => {
|
|
|
11579
11686
|
const searchPlaceholder = translations?.multiselectSearchPlaceholder ?? "Buscar opciones...";
|
|
11580
11687
|
const moreLabelTemplate = translations?.multiselectMoreLabel ?? "+{more} más";
|
|
11581
11688
|
const noResultsText = translations?.multiselectNoResults ?? "Sin coincidencias";
|
|
11582
|
-
const
|
|
11583
|
-
const triggerPlaceholder = selectPlaceholderTemplate.replace("{label}", filter.title.toLowerCase());
|
|
11689
|
+
const triggerPlaceholder = resolveSelectPlaceholder(translations, filter.title);
|
|
11584
11690
|
const filteredData = $8WNJc$react.useMemo(() => {
|
|
11585
11691
|
if (!searchable) {
|
|
11586
11692
|
return filter.data;
|
|
11587
11693
|
}
|
|
11588
|
-
|
|
11589
|
-
if (!q) {
|
|
11590
|
-
return filter.data;
|
|
11591
|
-
}
|
|
11592
|
-
return filter.data.filter((item) => currentValues.includes(item.value) ||
|
|
11593
|
-
item.label.toLowerCase().includes(q) ||
|
|
11594
|
-
item.value.toLowerCase().includes(q));
|
|
11694
|
+
return filterMultiselectOptions(filter.data, searchQuery, currentValues);
|
|
11595
11695
|
}, [filter.data, searchQuery, currentValues, searchable]);
|
|
11596
11696
|
const syncPopoverWidthToTrigger = $8WNJc$react.useCallback(() => {
|
|
11597
11697
|
const w = triggerRef.current?.offsetWidth;
|
|
@@ -15647,6 +15747,7 @@ exports.deriveLindaTones = deriveLindaTones;
|
|
|
15647
15747
|
exports.dismissControlProps = dismissControlProps;
|
|
15648
15748
|
exports.forceLightOnlyThemeBeforeReact = forceLightOnlyThemeBeforeReact;
|
|
15649
15749
|
exports.formatAuroraThemeTooltip = formatAuroraThemeTooltip;
|
|
15750
|
+
exports.formatDonutPercent = formatDonutPercent;
|
|
15650
15751
|
exports.generateThemeColorScale = generateThemeColorScale;
|
|
15651
15752
|
exports.getContrastForeground = getContrastForeground;
|
|
15652
15753
|
exports.getRegisteredThemeColorBases = getRegisteredThemeColorBases;
|