@primestyleai/tryon 5.7.5 → 5.7.7
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/react/index.js +55 -71
- package/dist/react/utils/locale.d.ts +14 -0
- package/dist/storefront/primestyle-tryon.js +58 -75
- package/package.json +1 -1
package/dist/react/index.js
CHANGED
|
@@ -307,14 +307,6 @@ function getCachedSize(profile, productId) {
|
|
|
307
307
|
if (profile.lastEditedAt && profile.lastEditedAt > entry.savedAt) return null;
|
|
308
308
|
return entry;
|
|
309
309
|
}
|
|
310
|
-
function readEnv(key) {
|
|
311
|
-
try {
|
|
312
|
-
if (typeof process === "undefined" || !process || !process.env) return void 0;
|
|
313
|
-
return process.env[key];
|
|
314
|
-
} catch {
|
|
315
|
-
return void 0;
|
|
316
|
-
}
|
|
317
|
-
}
|
|
318
310
|
function detectLocale() {
|
|
319
311
|
if (typeof navigator === "undefined") return "US";
|
|
320
312
|
const lang = navigator.language || "";
|
|
@@ -335,12 +327,22 @@ function detectLocale() {
|
|
|
335
327
|
return map[lang.split("-")[0].toLowerCase()] || "US";
|
|
336
328
|
}
|
|
337
329
|
function getApiKey() {
|
|
338
|
-
|
|
330
|
+
let key = "";
|
|
331
|
+
try {
|
|
332
|
+
key = process.env.NEXT_PUBLIC_PRIMESTYLE_API_KEY ?? "";
|
|
333
|
+
} catch {
|
|
334
|
+
}
|
|
339
335
|
if (!key) throw new PrimeStyleError("Missing NEXT_PUBLIC_PRIMESTYLE_API_KEY", "MISSING_API_KEY");
|
|
340
336
|
return key;
|
|
341
337
|
}
|
|
342
338
|
function getApiUrl(override) {
|
|
343
|
-
|
|
339
|
+
if (override) return override;
|
|
340
|
+
let envUrl = "";
|
|
341
|
+
try {
|
|
342
|
+
envUrl = process.env.NEXT_PUBLIC_PRIMESTYLE_API_URL ?? "";
|
|
343
|
+
} catch {
|
|
344
|
+
}
|
|
345
|
+
return envUrl || "http://localhost:4000";
|
|
344
346
|
}
|
|
345
347
|
async function recommendForProduct(input) {
|
|
346
348
|
const log = (...args) => console.log("[ps-sdk:recommend]", ...args);
|
|
@@ -8215,78 +8217,48 @@ function ErrorView({
|
|
|
8215
8217
|
/* @__PURE__ */ jsx("button", { onClick: handleRetry, className: cx("ps-tryon-submit", cn.submitButton), children: t("Try Again") })
|
|
8216
8218
|
] });
|
|
8217
8219
|
}
|
|
8218
|
-
const
|
|
8219
|
-
|
|
8220
|
-
|
|
8221
|
-
const
|
|
8222
|
-
|
|
8223
|
-
|
|
8224
|
-
|
|
8225
|
-
const seatAverageSvg = '<svg enable-background="new 0 0 275 275" viewBox="0 0 275 275" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientTransform="matrix(-1 0 0 1 -5785.313 0)" gradientUnits="userSpaceOnUse" x1="-5971.1436" x2="-5971.1436" y1="178.5303" y2="79.7743"><stop offset=".05" stop-color="#f09d2d" stop-opacity="0"/><stop offset=".5035" stop-color="#f09d2d"/><stop offset=".9791" stop-color="#f09d2d" stop-opacity="0"/></linearGradient><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="128.4939" x2="128.4939" y1="263.7788" y2="11.5003"><stop offset="0" stop-color="#fff" stop-opacity=".3"/><stop offset=".117" stop-color="#f1f1f1" stop-opacity=".4643"/><stop offset=".2602" stop-color="#e9e9e9" stop-opacity=".6653"/><stop offset=".4986" stop-color="#e6e6e6"/><stop offset=".7383" stop-color="#e9e9e9" stop-opacity=".5219"/><stop offset=".8823" stop-color="#f1f1f1" stop-opacity=".2347"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="c"><stop offset=".1" stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="d" gradientTransform="matrix(-1 0 0 -1 -6020.0366 -3366.0745)" gradientUnits="userSpaceOnUse" x1="-6143.585" x2="-6143.585" xlink:href="#c" y1="-3376.4585" y2="-3391.2441"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="123.5486" x2="123.5486" xlink:href="#c" y1="264.616" y2="228.346"/><path d="m207.3 79.8s6 28.3 6 49.1-7 49.7-7 49.7" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/><path d="m83.5 33.7c.6 1.9 1.4 3.1 1.4 3.1" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m170.9 90.8c-.8-2.5-1.6-4.8-2.3-7.1.3-7.6-.1-10.2-2.5-21.6.2-3.9.8-8.4 1.8-13.7 7.5-19.9 7.8-36.8 7.8-36.8h-93.1s-2.1 13.7.9 22.2c-3.6 9.4-1.7 17.5-.9 28.1s-1.3 24.9 1.3 33.5-1.5 25.8-3.5 33.9c-3.3 13.6-2.5 22.7-1.4 29.5s4.6 12.7 4.6 12.7c-2.1 51.3 11.1 92.5 11.1 92.5s33.8 0 53.1 0c7-31.7 7.8-51.8 7-64.2-.4-6.1-1.6-15.3 4.3-22.3 0 0 3.3.1 4.7-1.4s2.1-2.2 2.1-4.5c4.7-3.8 13.1-18.9 13.1-37.9 0-19.2-3.6-29.5-8.1-42.9z" fill="url(#b)" opacity=".8"/><g fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"><path d="m170.9 90.8c-.8-2.5-1.6-4.8-2.3-7.1.3-7.6-.1-10.2-2.5-21.6.2-3.9.8-8.4 1.8-13.7 7.5-19.9 7.8-36.8 7.8-36.8h-93.1s-2.1 13.7.9 22.2c-3.6 9.4-1.7 17.5-.9 28.1s-1.3 24.9 1.3 33.5-1.5 25.8-3.5 33.9c-3.3 13.6-2.5 22.7-1.4 29.5s4.6 12.7 4.6 12.7c0-9.2.1-28 3.5-31.8s23.9-1.9 47.2 5 22.5 21.3 25 27.4c1.9 4.7-.2 5.3-.2 5.3s3.3.1 4.7-1.4 2.1-2.2 2.1-4.5c4.7-3.8 13.1-18.9 13.1-37.9 0-19.1-3.6-29.4-8.1-42.8z"/><path d="m113.7 75.1 2.4-1.6"/><path d="m94.2 97.2s6-10.2 9.2-13.7c1.6-1.8 4.5-4.1 7.1-6"/><path d="m159.1 177.2c-5.9 7-4.7 16.2-4.3 22.3.8 12.4 0 32.6-7 64.2-19.3 0-53.1 0-53.1 0s-13.2-41.1-11.1-92.5"/></g><path d="m179 133.5c0 19-8.4 34.1-13.1 37.9 0 2.2-.7 3-2.1 4.5s-4.7 1.4-4.7 1.4 2.1-.6.2-5.3c-2.5-6.2-1.8-20.6-25-27.4-23.3-6.9-43.7-8.8-47.2-5-3.4 3.8-3.6 22.6-3.6 31.8 0 0-3.6-5.9-4.6-12.7-1.1-6.8-1.9-15.8 1.4-29.5.9-3.8 2.3-9.5 3.2-15.4.8-4.7 1.3-9.6 1-13.6 0-.1.1-.2.1-.3 29.6-9.6 58.2-11.3 83.9-16.4 0 .1.1.1.1.2v.1c.7 2.2 1.4 4.5 2.3 7.1.6 2 1.2 3.8 1.7 5.7.2.7.4 1.5.6 2.2 2.4 9.9 5.8 19.6 5.8 34.7z" fill="#999b9e" opacity=".5"/><path d="m83.6 113.8c.8-4.7 1.3-9.6 1-13.6 0-.1.1-.2.1-.3 29.6-9.6 58.2-11.3 83.9-16.4 0 .1.1.1.1.2v.1c.7 2.2 1.4 4.5 2.3 7.1.6 2 1.2 3.8 1.7 5.7-.1.1-.1.2-.1.3.4 1.1.1.8.6 1.9-17.9 5.2-68.9 8.8-89.6 15z" fill="#999b9e" opacity=".5"/><path d="m90.7 126.4c.6-1.9 1-2.9 1-2.9" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m84.2 151c.9-11.6 4-16.9 5.2-20.8" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m166.2 61.8c-2.8 2-5 4.1-6.6 6" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m185.4 25.2h-123.7v-14.8h123.7z" fill="url(#d)"/><path d="m51.7 228.3h143.7v36.3h-143.7z" fill="url(#e)"/></svg>';
|
|
8226
|
-
const seatRounderSvg = '<svg enable-background="new 0 0 275 275" viewBox="0 0 275 275" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientTransform="matrix(-1 0 0 1 -6911.5562 0)" gradientUnits="userSpaceOnUse" x1="-7093.1299" x2="-7093.1299" y1="180.8301" y2="79.8621"><stop offset=".05" stop-color="#f09d2d" stop-opacity="0"/><stop offset=".5035" stop-color="#f09d2d"/><stop offset=".9791" stop-color="#f09d2d" stop-opacity="0"/></linearGradient><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="125.9607" x2="125.9607" y1="263.7788" y2="11.5003"><stop offset="0" stop-color="#fff" stop-opacity=".3"/><stop offset=".117" stop-color="#f1f1f1" stop-opacity=".4643"/><stop offset=".2602" stop-color="#e9e9e9" stop-opacity=".6653"/><stop offset=".4986" stop-color="#e6e6e6"/><stop offset=".7383" stop-color="#e9e9e9" stop-opacity=".5219"/><stop offset=".8823" stop-color="#f1f1f1" stop-opacity=".2347"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="c"><stop offset=".1" stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="d" gradientTransform="matrix(-1 0 0 -1 -7131.8481 -3366.0745)" gradientUnits="userSpaceOnUse" x1="-7256.2832" x2="-7256.2832" xlink:href="#c" y1="-3376.4585" y2="-3391.2441"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="124.4348" x2="124.4348" xlink:href="#c" y1="264.616" y2="228.346"/><path d="m200.3 79.9c11.8 21 16.9 69-5.3 101" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/><path d="m79.5 33.7c.6 1.9 1.4 3.1 1.4 3.1" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m167 90.8c-.8-2.5-1.6-4.8-2.3-7.1.3-7.6-.1-10.2-2.5-21.6.2-3.9.8-8.4 1.8-13.7 7.5-19.9 7.8-36.8 7.8-36.8h-93.2s-2.1 13.7.9 22.2c-3.6 9.4-1.7 17.5-.9 28.1s-1.3 24.9 1.3 33.5-1.5 25.8-3.5 33.9c-3.3 13.6-2.5 22.7-1.4 29.5s4.6 12.7 4.6 12.7c-2.1 51.3 11.1 92.5 11.1 92.5s33.8 0 53.1 0c7-31.7 7.8-51.8 7-64.2-.4-6.1-1.6-15.3 4.3-22.3 0 0 3.3.1 4.7-1.4s2.1-2.2 2.1-4.5c4.7-3.8 16-16.6 16-35.6 0-19.1-6.5-31.8-10.9-45.2z" fill="url(#b)" opacity=".8"/><g fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"><path d="m167 90.8c-.8-2.5-1.6-4.8-2.3-7.1.3-7.6-.1-10.2-2.5-21.6.2-3.9.8-8.4 1.8-13.7 7.5-19.9 7.8-36.8 7.8-36.8h-93.2s-2.1 13.7.9 22.2c-3.6 9.4-1.7 17.5-.9 28.1s-1.3 24.9 1.3 33.5-1.5 25.8-3.5 33.9c-3.3 13.6-2.5 22.7-1.4 29.5s4.6 12.7 4.6 12.7c0-9.2.1-28 3.5-31.8s23.9-1.9 47.2 5 22.5 21.3 25 27.4c1.9 4.7-.2 5.3-.2 5.3s3.3.1 4.7-1.4 2.1-2.2 2.1-4.5c4.7-3.8 16-16.6 16-35.6s-6.5-31.7-10.9-45.1z"/><path d="m109.8 75.1 2.3-1.6"/><path d="m90.2 97.2s6-10.2 9.2-13.7c1.6-1.8 4.5-4.1 7.1-6"/><path d="m155.1 177.2c-5.9 7-4.7 16.2-4.3 22.3.8 12.4 0 32.6-7 64.2-19.3 0-53.1 0-53.1 0s-13.2-41.1-11.1-92.5"/></g><path d="m177.9 135.9c-.3 20.7-11.3 31.7-16 35.6 0 2.2-.7 3-2.1 4.5s-4.7 1.4-4.7 1.4 2.1-.6.2-5.3c-2.5-6.2-1.8-20.6-25-27.4-23.2-6.9-43.7-8.8-47.2-5-3.4 3.8-3.6 22.6-3.6 31.8 0 0-3.6-5.9-4.6-12.7-1.1-6.8-1.9-15.8 1.4-29.5.9-3.8 2.3-9.5 3.2-15.4.8-4.7 1.3-9.6 1-13.6 0-.1.1-.2.1-.3 29.6-9.6 58.2-11.3 83.9-16.4 0 .1.1.1.1.2v.1c.7 2.2 1.4 4.5 2.3 7.1.6 2 1.2 3.8 1.7 5.7.2.7.7 1.3.8 2.1 2.5 9.8 8.9 13.1 8.5 37.1z" fill="#999b9e" opacity=".5"/><path d="m79.6 113.8c.8-4.7 1.3-9.6 1-13.6 0-.1.1-.2.1-.3 29.6-9.6 58.2-11.3 83.9-16.4 0 .1.1.1.1.2v.1c.7 2.2 1.4 4.5 2.3 7.1.6 2 1.2 3.8 1.7 5.7-.1.1-.1.2-.1.3.4 1.1.1.8.6 1.9-17.9 5.2-68.9 8.8-89.6 15z" fill="#999b9e" opacity=".5"/><path d="m86.7 126.4c.6-1.9 1-2.9 1-2.9" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m80.3 151c.9-11.6 4-16.9 5.2-20.8" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m162.2 61.8c-2.8 2-5 4.1-6.6 6" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m186.3 25.2h-123.7v-14.8h123.7z" fill="url(#d)"/><path d="m52.6 228.3h143.7v36.3h-143.7z" fill="url(#e)"/></svg>';
|
|
8227
|
-
const wHipsNarrowSvg = '<svg enable-background="new 0 0 275 275" viewBox="0 0 275 275" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="136.1851" x2="136.1851" y1="250.9766" y2="22.3259"><stop offset="0" stop-color="#fff" stop-opacity=".3"/><stop offset=".117" stop-color="#f1f1f1" stop-opacity=".4643"/><stop offset=".2602" stop-color="#e9e9e9" stop-opacity=".6653"/><stop offset=".4986" stop-color="#e6e6e6"/><stop offset=".7383" stop-color="#e9e9e9" stop-opacity=".5219"/><stop offset=".8823" stop-color="#f1f1f1" stop-opacity=".2347"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="136.0724" x2="136.0724" y1="174.3804" y2="81.6417"><stop offset="0" stop-color="#afafaf"/><stop offset="1" stop-color="#c1c1c1"/></linearGradient><linearGradient id="c"><stop offset=".1" stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="d" gradientTransform="matrix(-1 0 0 -1 1519.3916 -4531.4673)" gradientUnits="userSpaceOnUse" x1="1383.3442" x2="1383.3442" xlink:href="#c" y1="-4553.2119" y2="-4567.9976"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="136.0473" x2="136.0473" xlink:href="#c" y1="253.2556" y2="216.9856"/><linearGradient id="f"><stop offset=".05" stop-color="#f09d2d" stop-opacity="0"/><stop offset=".5035" stop-color="#f09d2d"/><stop offset=".9791" stop-color="#f09d2d" stop-opacity="0"/></linearGradient><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="37.8553" x2="37.8553" xlink:href="#f" y1="203.7977" y2="76.8344"/><linearGradient id="h" gradientTransform="matrix(-1 0 0 1 2459.5337 0)" gradientUnits="userSpaceOnUse" x1="2223.1133" x2="2223.1133" xlink:href="#f" y1="203.7977" y2="76.8344"/><path d="m69.9 22.3c2.5 11.7 2 21.4-.8 31.9-3.9 14.4-6.5 20.4-9 27.4-1.1 3.2-2.6 6.1-3.7 10.7-1.2 5.2-6.6 15.6-9.2 28.7-7.2 37.4.9 55.1 5.4 82.5 6.7 40.7 8.3 47.5 8.3 47.5h65.7s3.2-32.6 4.1-42c.9-9.5 2.3-22.1-1.8-31.6-2.3-5.3-1.1-5-1.1-5s.4 1.5 3.1 1.9c1.6.3 6.6.2 8 0s1.7-.3 1.3-.2c0 0 1-.2 1 1.9 0 3.3-1 4.2-2.6 13.1-2 11 1.7 43.4 3.2 62h66.1s2.8-6.7 11.6-47.5c7-32.2 12.4-43.1 5.6-79.5-2.7-14.4-8.4-26.3-10.6-37.1-6.3-30.1-13.2-36.2-10.1-64.6h-134.5z" fill="url(#a)"/><path d="m225 124c-26.4 10.4-63.7 30.9-77.4 43.2 0 0-2.6 5.8-5.7 6.4s0 0 0 0c-.3 0-1.9.4-3.1.6-1.3.2-6.3.3-8 0-1.1-.2-1.8-.5-2.2-.8-.4-.5-.7-.8-.9-1-1.3-1.4-2.4-1.6-3.2-3-2-.5-2.6-1.3-15.7-11.5s-41.9-28.2-61.7-36.8c2.9-13 7.9-23.5 9.2-28.7 1.1-4.7 2.5-7.5 3.7-10.7 12.4 12.5 49.3 33.3 75.1 33.3 25.9 0 71.9-21.4 78.5-31.4.2 1.1.8 2.4 1.3 3.4 1.8 3.8.9 5.6 2.4 9.5 3.1 7.9 5.8 17.8 7.7 27.5z" fill="url(#b)"/><g fill="none"><path d="m69.9 22.3c2.5 11.7 2 21.4-.8 31.9-3.9 14.4-6.5 20.4-9 27.4-1.1 3.2-2.1 6.1-3.7 10.7-1.7 5.1-6.6 15.6-9.2 28.7-7.2 37.4 0 56.8 5.4 82.5 8.4 40.4 8.3 47.5 8.3 47.5h65.7s3.2-32.6 4.1-42c.9-9.5 2.3-22.1-1.8-31.6-2.3-5.3-1.1-5-1.1-5s.4 1.5 3.1 1.9c1.6.3 6.6.2 8 0s1.7-.3 1.3-.2c0 0 1-.2 1 1.9 0 3.3-1 4.2-2.6 13.1-2 11 1.7 43.4 3.2 62h66.1s2.8-6.7 11.6-47.5c7-32.2 12.4-43.1 5.6-79.5-1.9-10-4.5-19.4-7.7-27.4-1.4-3.6-1.6-5.6-2.6-9.5-.3-1.1-.8-2.3-1-3.4-6.1-27.3-12.4-34-9.4-61.3" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m184.2 22.3c0 4.7-1.5 8.7-3 12.7" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m96.3 29.9c.5 1.7 1.1 3.4 1.8 5.1" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m176.3 77.2s-.1 3.5-.9 7.9" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m102.8 74.6s0 4.8 1.7 9.6" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m225 124c-26.4 10.4-63.7 30.9-77.4 43.2 0 0-2.6 5.8-5.7 6.4s0 0 0 0c-.3 0-1.9.4-3.1.6-1.3.2-6.3.3-8 0-1.1-.2-1.8-.5-2.2-.8-.4-.5-.7-.8-.9-1-1.3-1.4-2.4-1.6-3.2-3-2-.5-2.6-1.3-15.7-11.5s-41.9-28.2-61.7-36.8c2.9-13 7.3-23.8 9.4-28.7s2.3-7.5 3.5-10.7c12.4 12.5 49.3 33.3 75.1 33.3 25.9 0 71.9-21.4 78.5-31.4.2 1.1.8 2.6 1.1 3.7 1.2 4.1 1.2 5.7 2.6 9.3 3.2 8.1 5.8 17.6 7.7 27.4z" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m122.1 164.4c-.4-.9-.5-1.6-.5-1.6" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m124.6 169.3c-.6-.9-1.1-1.8-1.5-2.6" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m140.4 63.2c-.1 1.9-.3 3-.3 4.3" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m140.5 53.2v6" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m140.5 44.5v3.9" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m144.6 60.6s-5-3.3-8.1.5c1.5 3.2 5.8 1.8 5.8 1.8" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/></g><path d="m221.4 36.5h-170.7v-14.8h170.7z" fill="url(#d)"/><path d="m36.9 217h198.4v36.3h-198.4z" fill="url(#e)"/><path d="m170.5 104.3c-.9 2.1-3.3 4.2-3.3 4.2" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m52.7 203.8h-37v-70l-1.1-57h46.5l-6.5 19.8-5.9 17.5-1.5 7-1.5 6.6-1.4 15.1v19.4l4.1 23.7z" fill="url(#g)" opacity=".1"/><path d="m14.6 76.8 1.1 57.9v69.1" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/><path d="m219.3 203.8h40v-70l1.1-57h-47.9l4.2 19 6.2 18.3 1.6 7 1.5 6.6 1.7 15.1.2 19.4-4.7 23.7z" fill="url(#h)" opacity=".1"/><path d="m260.4 76.8-1.1 57.9v69.1" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/></svg>';
|
|
8228
|
-
const wHipsAverageSvg = '<svg enable-background="new 0 0 275 275" viewBox="0 0 275 275" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a"><stop offset=".05" stop-color="#f09d2d" stop-opacity="0"/><stop offset=".5035" stop-color="#f09d2d"/><stop offset=".9791" stop-color="#f09d2d" stop-opacity="0"/></linearGradient><linearGradient id="b" gradientTransform="matrix(-1 0 0 1 1955.3486 0)" gradientUnits="userSpaceOnUse" x1="1709.6826" x2="1709.6826" xlink:href="#a" y1="203.7977" y2="76.8344"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="29.1666" x2="29.1666" xlink:href="#a" y1="203.7977" y2="76.8344"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="137.8198" x2="137.8198" y1="250.9766" y2="22.3259"><stop offset="0" stop-color="#fff" stop-opacity=".3"/><stop offset=".117" stop-color="#f1f1f1" stop-opacity=".4643"/><stop offset=".2602" stop-color="#e9e9e9" stop-opacity=".6653"/><stop offset=".4986" stop-color="#e6e6e6"/><stop offset=".7383" stop-color="#e9e9e9" stop-opacity=".5219"/><stop offset=".8823" stop-color="#f1f1f1" stop-opacity=".2347"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="137.7006" x2="137.7006" y1="174.3804" y2="81.6417"><stop offset="0" stop-color="#afafaf"/><stop offset="1" stop-color="#c1c1c1"/></linearGradient><linearGradient id="f"><stop offset=".1" stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="g" gradientTransform="matrix(-1 0 0 -1 454.4635 -4531.4673)" gradientUnits="userSpaceOnUse" x1="316.7894" x2="316.7894" xlink:href="#f" y1="-4553.2119" y2="-4567.9976"/><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="137.6741" x2="137.6741" xlink:href="#f" y1="253.2556" y2="216.9856"/><path d="m226.7 203.8h35.4s10.1-24.9 10.1-63.5-9-63.5-9-63.5h-43.9l4.9 18.4 3.1 9.3 3.8 12.6.6 4.2 2.2 13.2 1.3 15-1.1 17.8-3.6 18.5z" fill="url(#b)" opacity=".1"/><path d="m263.1 76.8s9 25.2 9 63.5-10.1 63.5-10.1 63.5" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/><path d="m47.3 203.8h-35.4s-10.1-24.9-10.1-63.5 9-63.5 9-63.5h45.6l-6.6 18.4-3.1 9.3-3.8 12.6-1.4 3.5-2.7 33.9 2.4 21.3 2.2 10z" fill="url(#c)" opacity=".1"/><path d="m10.9 76.8s-9 25.2-9 63.5 10.1 63.5 10.1 63.5" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/><path d="m67.7 22.3c2.7 11.7-3 21.4-5.9 31.9-4.1 14.4-6.9 20.4-9.5 27.4-1.2 3.2-2.7 6.1-3.9 10.7-1.3 5.2-7 15.6-9.7 28.7-7.7 37.4.9 55.1 5.7 82.5 7 40.7 13.9 47.5 13.9 47.5h69.5s3.4-32.6 4.4-42c1-9.5 2.4-22.1-1.9-31.6-2.4-5.3-1.2-5-1.2-5s.4 1.5 3.3 1.9c1.7.3 7 .2 8.4 0s1.8-.3 1.4-.2c0 0 1-.2 1 1.9 0 3.3-1 4.2-2.8 13.1-2.2 11 1.8 43.4 3.4 62h69.9s8-6.7 17.3-47.5c7.4-32.2 13.2-43.1 6-79.5-2.9-14.4-8.9-26.3-11.3-37.1-6.7-30.1-19-36.2-15.7-64.6h-142.3z" fill="url(#d)"/><path d="m236.8 124c-27.9 10.4-72.4 30.9-86.9 43.2 0 0-2.8 5.8-6 6.4-.3 0-2.1.4-3.2.6-1.4.2-6.7.3-8.4 0-1.1-.2-1.9-.5-2.4-.8-.4-.5-.7-.8-.9-1-1.4-1.4-2.5-1.6-3.3-3-2.1-.5-2.8-1.3-16.6-11.5-13.9-10.2-49.3-28.2-70.3-36.8 3.1-13 8.4-23.5 9.7-28.7 1.2-4.7 2.7-7.5 3.9-10.7 13.1 12.5 57.2 33.3 84.5 33.3 27.4 0 81.1-21.4 88.1-31.4.3 1.1.8 2.4 1.4 3.4 1.9 3.8.9 5.6 2.5 9.5 3.1 7.9 5.9 17.8 7.9 27.5z" fill="url(#e)"/><g fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"><path d="m67.7 22.3c2.7 11.7-3 21.4-5.9 31.9-4.1 14.4-6.9 20.4-9.5 27.4-1.2 3.2-2.3 6.1-3.9 10.7-1.8 5.1-7 15.6-9.7 28.7-7.7 37.4 0 56.8 5.7 82.5 8.9 40.4 13.9 47.5 13.9 47.5h69.5s3.4-32.6 4.4-42c1-9.5 2.4-22.1-1.9-31.6-2.4-5.3-1.2-5-1.2-5s.4 1.5 3.3 1.9c1.7.3 7 .2 8.4 0s1.8-.3 1.4-.2c0 0 1-.2 1 1.9 0 3.3-1 4.2-2.8 13.1-2.2 11 1.8 43.4 3.4 62h69.9s8-6.7 17.3-47.5c7.4-32.2 13.2-43.1 6-79.5-2-10-4.8-19.4-8.1-27.4-1.5-3.6-1.7-5.6-2.8-9.5-.3-1.1-.8-2.3-1.1-3.4-6.5-27.3-18.1-34-15-61.3"/><path d="m188.6 22.3c0 4.7-1.6 8.7-3.1 12.7"/><path d="m95.7 29.9c.5 1.7 1.2 3.4 1.9 5.1"/><path d="m180.2 77.2s-.1 3.5-1 7.9"/><path d="m102.5 74.6s0 4.8 1.8 9.6"/><path d="m236.8 124c-27.9 10.4-72.4 30.9-86.9 43.2 0 0-2.8 5.8-6 6.4-.3 0-2.1.4-3.2.6-1.4.2-6.7.3-8.4 0-1.1-.2-1.9-.5-2.4-.8-.4-.5-.7-.8-.9-1-1.4-1.4-2.5-1.6-3.3-3-2.1-.5-2.8-1.3-16.6-11.5-13.9-10.2-49.3-28.2-70.3-36.8 3.1-13 7.7-23.8 9.9-28.7s2.5-7.5 3.7-10.7c13.1 12.5 57.2 33.3 84.5 33.3 27.4 0 81.1-21.4 88.1-31.4.3 1.1.8 2.6 1.2 3.7 1.3 4.1 1.2 5.7 2.7 9.3 3.1 8.1 5.9 17.6 7.9 27.4z"/><path d="m122.9 164.4c-.4-.9-.6-1.6-.6-1.6"/><path d="m125.5 169.3c-.7-.9-1.2-1.8-1.6-2.6"/><path d="m142.2 63.2c-.1 1.9-.3 3-.3 4.3"/><path d="m142.4 53.2v6"/><path d="m142.4 44.5v3.9"/><path d="m146.7 60.6s-5.3-3.3-8.6.5c1.6 3.2 6.2 1.8 6.2 1.8"/></g><path d="m228 36.5h-180.7v-14.8h180.7z" fill="url(#g)"/><path d="m32.8 217h209.8v36.3h-209.8z" fill="url(#h)"/><path d="m174.1 104.3c-1 2.1-3.5 4.2-3.5 4.2" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/></svg>';
|
|
8229
|
-
const wHipsBroadSvg = '<svg enable-background="new 0 0 275 275" viewBox="0 0 275 275" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="138.6768" x2="138.6768" y1="250.9766" y2="22.3259"><stop offset="0" stop-color="#fff" stop-opacity=".3"/><stop offset=".117" stop-color="#f1f1f1" stop-opacity=".4643"/><stop offset=".2602" stop-color="#e9e9e9" stop-opacity=".6653"/><stop offset=".4986" stop-color="#e6e6e6"/><stop offset=".7383" stop-color="#e9e9e9" stop-opacity=".5219"/><stop offset=".8823" stop-color="#f1f1f1" stop-opacity=".2347"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="138.7222" x2="138.7222" y1="174.3804" y2="81.6417"><stop offset="0" stop-color="#afafaf"/><stop offset="1" stop-color="#c1c1c1"/></linearGradient><linearGradient id="c"><stop offset=".1" stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="d" gradientTransform="matrix(-1 0 0 -1 -657.3482 -4531.4673)" gradientUnits="userSpaceOnUse" x1="-796.0436" x2="-796.0436" xlink:href="#c" y1="-4553.2119" y2="-4567.9976"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="138.6954" x2="138.6954" xlink:href="#c" y1="253.2556" y2="216.9856"/><linearGradient id="f"><stop offset=".05" stop-color="#f09d2d" stop-opacity="0"/><stop offset=".5035" stop-color="#f09d2d"/><stop offset=".9791" stop-color="#f09d2d" stop-opacity="0"/></linearGradient><linearGradient id="g" gradientTransform="matrix(-1 0 0 1 1473.4891 0)" gradientUnits="userSpaceOnUse" x1="1227.2412" x2="1227.2412" xlink:href="#f" y1="203.7977" y2="76.8344"/><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="29.7192" x2="29.7192" xlink:href="#f" y1="203.7977" y2="76.8344"/><path d="m62.6 22.3c2.7 11.7-3 21.4-6 31.9-4.1 14.4-7 20.4-9.6 27.4-1.2 3.2-2.8 6.1-4 10.7-1.3 5.2-7.1 15.6-9.8 28.7-7.8 37.4-2.7 55.9 5.8 82.5 12.6 39.8 19.1 47.5 19.1 47.5h70.5s3.4-32.6 4.4-42c1-9.5 2.4-22.1-2-31.6-2.4-5.3-1.2-5-1.2-5s.4 1.5 3.4 1.9c1.7.3 7.1.2 8.5 0s1.8-.3 1.4-.2c0 0 1.1-.2 1 1.9 0 3.3-1 4.2-2.8 13.1-2.2 11 1.8 43.4 3.4 62h70.8s10.6-6.4 22.6-47.5c9.3-31.8 13.3-43.1 6-79.5-2.9-14.4-9-26.3-11.4-37.1-6.8-30.1-19.3-36.2-16-64.6h-154.1z" fill="url(#a)"/><path d="m244.3 124c-28.3 10.4-78.5 30.9-93.2 43.2 0 0-2.8 5.8-6.1 6.4-.3 0-2.1.4-3.3.6-1.4.2-6.8.3-8.5 0-1.1-.2-1.9-.5-2.4-.8-.4-.5-.7-.8-.9-1-1.4-1.4-2.5-1.6-3.4-3-2.1-.5-2.8-1.3-16.9-11.5s-55.1-28.2-76.4-36.8c3.1-13 8.5-23.5 9.8-28.7 1.2-4.7 2.7-7.5 3.9-10.7 13.3 12.5 63 33.3 90.8 33.3s87.3-21.4 94.4-31.4c.3 1.1.8 2.4 1.4 3.4 1.9 3.8.9 5.6 2.6 9.5 3.3 7.9 6.1 17.8 8.2 27.5z" fill="url(#b)"/><g fill="none"><path d="m62.6 22.3c2.7 11.7-3 21.4-6 31.9-4.1 14.4-7 20.4-9.6 27.4-1.2 3.2-2.3 6.1-4 10.7-1.9 5.1-7.1 15.6-9.8 28.7-7.8 37.4-1.2 57.1 5.8 82.5 11.1 40.7 19.1 47.5 19.1 47.5h70.5s3.4-32.6 4.4-42c1-9.5 2.4-22.1-2-31.6-2.4-5.3-1.2-5-1.2-5s.4 1.5 3.4 1.9c1.7.3 7.1.2 8.5 0s1.8-.3 1.4-.2c0 0 1.1-.2 1 1.9 0 3.3-1 4.2-2.8 13.1-2.2 11 1.8 43.4 3.4 62h70.8s9.9-6.8 22.6-47.5c9.9-31.6 13.3-43.1 6-79.5-2-10-4.8-19.4-8.2-27.4-1.5-3.6-1.7-5.6-2.8-9.5-.3-1.1-.8-2.3-1.1-3.4-6.6-27.3-18.4-34-15.2-61.3" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m190.3 22.3c0 4.7-1.6 8.7-3.2 12.7" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m96.1 29.9c.6 1.7 1.2 3.4 1.9 5.1" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m181.8 77.2s-.1 3.5-1 7.9" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m103.1 74.6s0 4.8 1.8 9.6" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m244.3 124c-28.3 10.4-78.5 30.9-93.2 43.2 0 0-2.8 5.8-6.1 6.4-.3 0-2.1.4-3.3.6-1.4.2-6.8.3-8.5 0-1.1-.2-1.9-.5-2.4-.8-.4-.5-.7-.8-.9-1-1.4-1.4-2.5-1.6-3.4-3-2.1-.5-2.8-1.3-16.9-11.5s-55.1-28.2-76.4-36.8c3.1-13 7.8-23.8 10-28.7s2.5-7.5 3.7-10.7c13.3 12.5 63 33.3 90.8 33.3s87.3-21.4 94.4-31.4c.3 1.1.8 2.6 1.2 3.7 1.3 4.1 1.3 5.7 2.7 9.3 3.4 8.1 6.2 17.6 8.3 27.4z" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m123.7 164.4c-.4-.9-.6-1.6-.6-1.6" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m126.4 169.3c-.7-.9-1.2-1.8-1.7-2.6" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m143.3 63.2c-.1 1.9-.3 3-.3 4.3" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m143.5 53.2v6" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m143.4 44.5v3.9" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m147.8 60.6s-5.4-3.3-8.7.5c1.6 3.2 6.3 1.8 6.3 1.8" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/></g><path d="m230.3 36.5h-183.2v-14.8h183.2z" fill="url(#d)"/><path d="m32.3 217h212.7v36.3h-212.7z" fill="url(#e)"/><path d="m175.7 104.3c-1 2.1-3.5 4.2-3.5 4.2" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m228.5 203.8h23.3s20.4-24.9 20.4-63.5-19.4-63.5-19.4-63.5h-32.6l2.2 6.8 2.3 11.1 3.6 6.8 3.3 10.2 1.7 7.8 3.2 17.1 1.7 17.8-1.2 19.6-2.7 10.7z" fill="url(#g)" opacity=".1"/><path d="m252.9 76.8s19.4 25.2 19.4 63.5-20.4 63.5-20.4 63.5" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/><path d="m47.7 203.8h-25.5s-20.4-24.9-20.4-63.5 19.4-63.5 19.4-63.5h36.5l-2.5 6.8-4.2 11.1-3.8 9.8-3.9 10.8-1 5.4-3.1 17.4-.4 16.4 1.2 18.6 3.5 12.8z" fill="url(#h)" opacity=".1"/><path d="m21.1 76.8s-19.4 25.2-19.4 63.5 20.4 63.5 20.4 63.5" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/></svg>';
|
|
8230
|
-
const wStomachFlatterSvg = '<svg enable-background="new 0 0 275 275" viewBox="0 0 275 275" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="152.2072" x2="152.2072" y1="250.6312" y2="22.3025"><stop offset="0" stop-color="#fff" stop-opacity=".3"/><stop offset=".117" stop-color="#f1f1f1" stop-opacity=".4643"/><stop offset=".2602" stop-color="#e9e9e9" stop-opacity=".6653"/><stop offset=".4986" stop-color="#e6e6e6"/><stop offset=".7383" stop-color="#e9e9e9" stop-opacity=".5219"/><stop offset=".8823" stop-color="#f1f1f1" stop-opacity=".2347"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="79.9863" x2="79.9863" y1="236.5501" y2="137.7941"><stop offset=".05" stop-color="#f09d2d" stop-opacity="0"/><stop offset=".5035" stop-color="#f09d2d"/><stop offset=".9791" stop-color="#f09d2d" stop-opacity="0"/></linearGradient><linearGradient id="c" gradientTransform="matrix(-1 0 0 1 -204.075 0)" gradientUnits="userSpaceOnUse" x1="-330.2407" x2="-330.2407" y1="139.7377" y2="79.8589"><stop offset="0" stop-color="#afafaf"/><stop offset="1" stop-color="#c1c1c1"/></linearGradient><linearGradient id="d"><stop offset=".1" stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="e" gradientTransform="matrix(-1 0 0 1 -204.075 0)" gradientUnits="userSpaceOnUse" x1="-349.2002" x2="-349.2002" xlink:href="#d" y1="253.4071" y2="217.1361"/><linearGradient id="f" gradientTransform="matrix(1 0 0 -1 1533.2572 -4531.4673)" gradientUnits="userSpaceOnUse" x1="-1366.8461" x2="-1366.8461" xlink:href="#d" y1="-4553.0601" y2="-4567.8462"/><path d="m208.7 54.8c-1.7-4.7-4.2-9-9.2-13.5-.1-.1-.1-.1-.2-.2-2.2-1.9-4.8-3.8-8-5.8-3.5-2.2-4.6-6.7-7.4-13h-44.4c2.9 5.3 5.4 11.5 5.2 14.1-.3 3.4-.7 14.2-2.8 15.9-2.4 2.1-4.5 4.6-6.2 6.9-.2.3-.4.5-.7.8l-14 14.1c-2.5 2.5-4.7 4.6-5.8 5.9-1.3.3-2.7 1-4.3 2.3-.8.7-1.9 1.7-3 2.9-4.9 5.2-11.7 14.7-12.7 24.3-.2 2.4-.3 4.6-.2 6.6.4 6.9 2.8 12 7.6 16.4 0 0-1.4 4-2.6 7.4-2.6 7.4-.5 21-1.8 32.6-1.1 10.2-1.6 14.6-1.7 24.2-.7 13.6-5.8 20.3-2.6 40 1 6.1 2 8.6 1.8 13.8h47.1l.5-1.6c-.1.5-.2 1.1-.3 1.6h30.1.1 19.9c0-6.5-3.7-11.9-6-19s-1.1-19-1.1-19c1.2-4.4 2.3-8.5 2.9-12 1.9-10.1 5.4-34.5 8.4-59.9.6-5 5.1-11.8 7.5-20.2.1-.3.2-.5.2-.8 2.4-8.3 4.8-17.1 6-24.5 2.2-15.2.1-33.5-2.3-40.3z" fill="url(#a)" opacity=".8"/><path d="m93.8 236.6h-33.2v-50.4l-1.1-48.4h41l-2 9-.2 11.8-.1 10.8-1.5 15.9-.7 14-3.2 24.7z" fill="url(#b)" opacity=".1"/><path d="m59.5 137.8 1.1 49.1v49.7" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/><path d="m105.2 135c8.6 6.2 37.1 2.3 52.6 4.7l-1.2-24.7c-5.8-1.7-7.8-7.6-14.7-16.3-8-10.1-16.5-15.5-20.4-17.4-3.6-1.7-6.5-2.7-10.9.9-4.3 3.8-14.6 15.5-15.8 27.4s1.9 19.2 10.4 25.4z" fill="url(#c)"/><path d="m204.7 119.6c-1.7.6-5.4-.2-5.4-.2l-1.6 17.1z" fill="#b1b1b1"/><g fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"><path d="m108.1 250.6s.7-5.3 1.4-8c.2-.8.8-1.6 1.5-2.4"/><path d="m155.4 92.3s-.6-.9-1.5-2"/><path d="m142.5 250.6s-40.7 0-47.1 0c.2-5.2-.8-7.7-1.8-13.8-3.3-19.7 1.8-26.4 2.6-40 .1-9.6.6-14 1.7-24.2 1.2-11.6-.8-25.2 1.8-32.6 1.2-3.5 2.6-7.4 2.6-7.4"/><path d="m113.5 177.9c.7.8 1.7 1.6 3.1 2.2"/><path d="m172.8 250.6h20c0-6.5-3.7-11.9-6-19s-1.1-19-1.1-19"/><path d="m152.6 82.8 2.4 6.5s3.7 23.4 2.8 86.6c-.2 14.1.1 21.7.1 21.7s-11.4 34.6-15.3 53h30.3s12.6-32.7 15.8-50.1c3.2-17.3 11.2-75.9 13-110.4 0-.5.1-1 .3-1.4.8-2.4 1.6-4.1 1.6-4.1"/><path d="m187.6 182c-.3 1-1.9 3.6-3.1 6.5"/><path d="m157.9 197.6c1.3-3.2 2.3-5.9 3.1-8.1 1-2.7 2.6-5.8 2.7-12.8"/><path d="m205.5 79.5c-.1.6-.7 2.1-.7 2.1"/><path d="m197 140.6c.6-5 5.1-11.8 7.5-20.3s5-17.7 6.3-25.3c2.5-15.1.4-33.4-2.1-40.3s-6.6-12.7-17.5-19.5c-3.5-2.2-4.6-6.7-7.4-13h-44.4c2.9 5.3 5.4 11.5 5.2 14.1-.3 3.4-.7 14.2-2.8 15.9"/><path d="m204.7 119.6c-1.7.6-5.4-.2-5.4-.2"/><path d="m157.8 139.7c-15.5-2.4-44 1.5-52.6-4.7s-11.6-13.6-10.4-25.4 11.4-23.6 15.8-27.3 7.3-2.6 10.9-.9c3.9 1.8 12.4 7.3 20.4 17.4 6.9 8.7 8.9 14.6 14.7 16.3"/><path d="m128.9 138.8c9.1 0 15.1-6.5 18.4-12s4.5-14.3 1.3-18.6"/><path d="m146.9 48.9c.4-.2.9-.3 1.4-.5"/><path d="m114.9 80c3.6-4 17.2-16.6 20.5-20.8 2.5-3.2 5.5-6.8 9.1-9"/><path d="m151.5 80.3c-.4-.9-.7-1.6-.7-1.6"/><path d="m199.4 41.3c-4.2-3.8-8.2-3.3-9.9-2.9"/><path d="m186.7 39.2c-.4.1-1.1.3-1.9.6"/></g><path d="m209.3 217.1h-128.3v36.3h128.3z" fill="url(#e)"/><path d="m117.3 21.6h98.2v14.8h-98.2z" fill="url(#f)"/></svg>';
|
|
8231
|
-
const wStomachAverageSvg = '<svg enable-background="new 0 0 275 275" viewBox="0 0 275 275" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientTransform="matrix(.9998 .01945948 -.01945948 .9998 -36.2786 13.302)" gradientUnits="userSpaceOnUse" x1="120.9862" x2="120.9862" y1="221.0674" y2="121.6227"><stop offset=".05" stop-color="#f09d2d" stop-opacity="0"/><stop offset=".5035" stop-color="#f09d2d"/><stop offset=".9791" stop-color="#f09d2d" stop-opacity="0"/></linearGradient><linearGradient id="b" gradientTransform="matrix(-1 0 0 1 -1269.0031 0)" gradientUnits="userSpaceOnUse" x1="-1423.0476" x2="-1423.0476" y1="250.6312" y2="22.3025"><stop offset="0" stop-color="#fff" stop-opacity=".3"/><stop offset=".117" stop-color="#f1f1f1" stop-opacity=".4643"/><stop offset=".2602" stop-color="#e9e9e9" stop-opacity=".6653"/><stop offset=".4986" stop-color="#e6e6e6"/><stop offset=".7383" stop-color="#e9e9e9" stop-opacity=".5219"/><stop offset=".8823" stop-color="#f1f1f1" stop-opacity=".2347"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="c" gradientTransform="matrix(-1 0 0 1 -1269.0031 0)" gradientUnits="userSpaceOnUse" x1="-1397.8925" x2="-1397.8925" y1="139.7377" y2="79.8589"><stop offset="0" stop-color="#afafaf"/><stop offset="1" stop-color="#c1c1c1"/></linearGradient><linearGradient id="d"><stop offset=".1" stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="e" gradientTransform="matrix(-1 0 0 1 -1269.0031 0)" gradientUnits="userSpaceOnUse" x1="-1413.0481" x2="-1413.0481" xlink:href="#d" y1="253.4071" y2="217.1361"/><linearGradient id="f" gradientTransform="matrix(1 0 0 -1 1533.2572 -4531.4673)" gradientUnits="userSpaceOnUse" x1="-1367.9227" x2="-1367.9227" xlink:href="#d" y1="-4553.0601" y2="-4567.8462"/><path d="m97.4 236.4h-30.4s-7-30.2-6.6-50.5 7.5-48.3 7.5-48.3h35.3l-3.6 12.1-2.9 20.7-1.3 10.8-.9 21.9.6 20.8z" fill="url(#a)" opacity=".1"/><path d="m67.9 137.7s-7.1 28.2-7.5 49 6.6 49.8 6.6 49.8" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/><path d="m93.6 196.9c.1-9.6 1.5-14 2.8-24.2.4-2.9.1-9.1.4-12 1.4-11.6 4.3-17.1 5.5-20.6 1.2-3.4 2.6-7.4 2.6-7.4-6.3-5.7-8.5-12.7-7.4-23.1 1.3-11.9 11.5-23.6 15.8-27.3 1.6-1.3 3-2.1 4.3-2.3 3.6-4 17.3-16.6 20.5-20.8 1.8-2.3 3.9-4.8 6.2-6.9 2.1-1.7 2.6-12.5 2.8-15.9.2-2.5-2.2-8.8-5.2-14.1h44.5c2.8 6.3 3.9 10.8 7.4 13 3.2 2 5.9 3.9 8 5.8.1.1.1.1.2.2 5 4.4 7.5 8.7 9.3 13.5 2.5 6.8 4.5 25.1 2.1 40.3-1.2 7.4-3.7 16.2-6 24.5-.1.3-.2.6-.2.8-2.4 8.4-6.9 15.2-7.5 20.3-3 25.4-6.5 49.8-8.4 59.9-.7 3.5-1.7 7.7-2.9 12 0 0-1.2 11.9 1.1 19s6 12.5 6 19c-4.4 0-18.5 0-19.9 0-.1 0-.1 0-.1 0h-7.2-22.9l-.2-.3.1.3s-40.7 0-47.1 0c.2-5.2.3-7.7-.7-13.8-1.7-10.4-4.6-26.4-3.9-39.9z" fill="url(#b)" opacity=".8"/><path d="m107.9 135c8.6 6.2 37.1 2.3 52.6 4.7l-1.2-24.7c-5.8-1.7-7.8-7.6-14.7-16.3-8-10.1-16.5-15.5-20.4-17.4-3.6-1.7-6.5-2.7-10.9.9-4.3 3.8-14.5 15.5-15.8 27.4-1.2 11.9 1.9 19.2 10.4 25.4z" fill="url(#c)"/><path d="m207.5 119.6c-1.7.6-5.4-.2-5.4-.2l-1.6 17.1z" fill="#b1b1b1"/><g fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"><path d="m110.8 250.6s.7-5.3 1.4-8c.2-.8.8-1.6 1.5-2.4"/><path d="m158.1 92.3s-.6-.9-1.5-2"/><path d="m145.2 250.6s-40.7 0-47.1 0c.2-5.2.3-7.7-.7-13.8-1.7-10.4-4.6-26.4-3.8-40 .1-9.6 1.5-14 2.8-24.2.4-2.9.1-9.1.4-12 1.4-11.6 4.3-17.1 5.5-20.6 1.2-3.4 2.6-7.4 2.6-7.4"/><path d="m112.9 177.9c.7.8 1.7 1.6 3.1 2.2"/><path d="m175.5 250.6h20c0-6.5-3.7-11.9-6-19s-1.1-19-1.1-19"/><path d="m155.3 82.8 2.4 6.5s3.7 23.4 2.8 86.6c-.2 14.1.1 21.7.1 21.7s-11.4 34.6-15.3 53h30.3s12.6-32.7 15.8-50.1c3.2-17.3 11.2-75.9 13-110.4 0-.5.1-1 .3-1.4.8-2.4 1.6-4.1 1.6-4.1"/><path d="m190.4 182c-.3 1-1.9 3.6-3.1 6.5"/><path d="m160.7 197.6c1.3-3.2 2.3-5.9 3.1-8.1 1-2.7 2.6-5.8 2.7-12.8"/><path d="m208.2 79.5c-.1.6-.7 2.1-.7 2.1"/><path d="m199.8 140.6c.6-5 5.1-11.8 7.5-20.3s5-17.7 6.3-25.3c2.5-15.1.4-33.4-2.1-40.3-2.5-6.8-6.6-12.7-17.5-19.5-3.5-2.2-4.6-6.7-7.4-13"/><path d="m207.5 119.6c-1.7.6-5.4-.2-5.4-.2"/><path d="m160.5 139.7c-15.5-2.4-44 1.5-52.6-4.7s-11.6-13.6-10.4-25.4 11.5-23.6 15.8-27.3 7.3-2.6 10.9-.9c3.9 1.8 12.4 7.3 20.4 17.4 6.9 8.7 8.9 14.6 14.7 16.3"/><path d="m131.6 138.8c9.1 0 15.1-6.5 18.4-12s4.5-14.3 1.3-18.6"/><path d="m149.6 48.9c.4-.2.9-.3 1.4-.5"/><path d="m117.6 80c3.6-4 17.3-16.6 20.5-20.8 2.5-3.2 5.5-6.8 9.1-9"/><path d="m144.4 52.3c2.1-1.7 2.6-12.5 2.8-15.9.2-2.5-2.2-8.8-5.2-14.1"/><path d="m154.3 80.3c-.4-.9-.7-1.6-.7-1.6"/><path d="m202.2 41.3c-4.2-3.8-8.2-3.3-9.9-2.9"/><path d="m189.5 39.2c-.4.1-1.1.3-1.9.6"/></g><path d="m208.2 217.1h-128.3v36.3h128.3z" fill="url(#e)"/><path d="m116.2 21.6h98.2v14.8h-98.2z" fill="url(#f)"/></svg>';
|
|
8232
|
-
const wStomachRounderSvg = '<svg enable-background="new 0 0 275 275" viewBox="0 0 275 275" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientTransform="matrix(.9849 .1732 -.1732 .9849 -335.7508 135.143)" gradientUnits="userSpaceOnUse" x1="414.8728" x2="414.8728" y1="31.2868" y2="-72.9269"><stop offset=".05" stop-color="#f09d2d" stop-opacity="0"/><stop offset=".5035" stop-color="#f09d2d"/><stop offset=".9791" stop-color="#f09d2d" stop-opacity="0"/></linearGradient><linearGradient id="b" gradientTransform="matrix(-1 0 0 1 -2335.0474 0)" gradientUnits="userSpaceOnUse" x1="-2464.1609" x2="-2464.1609" y1="139.7377" y2="79.8589"><stop offset="0" stop-color="#afafaf"/><stop offset="1" stop-color="#c1c1c1"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="151.2176" x2="151.2176" y1="250.6312" y2="22.3025"><stop offset="0" stop-color="#fff" stop-opacity=".3"/><stop offset=".117" stop-color="#f1f1f1" stop-opacity=".4643"/><stop offset=".2602" stop-color="#e9e9e9" stop-opacity=".6653"/><stop offset=".4986" stop-color="#e6e6e6"/><stop offset=".7383" stop-color="#e9e9e9" stop-opacity=".5219"/><stop offset=".8823" stop-color="#f1f1f1" stop-opacity=".2347"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="d"><stop offset=".1" stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="e" gradientTransform="matrix(-1 0 0 1 -2335.0474 0)" gradientUnits="userSpaceOnUse" x1="-2479.3755" x2="-2479.3755" xlink:href="#d" y1="253.4071" y2="217.1361"/><linearGradient id="f" gradientTransform="matrix(1 0 0 -1 1533.2572 -4531.4673)" gradientUnits="userSpaceOnUse" x1="-1367.6398" x2="-1367.6398" xlink:href="#d" y1="-4553.0601" y2="-4567.8462"/><path d="m57.8 236.1c-16.4-34.6-3.3-80 11.9-98.2h31.6l-4.1 6.6-3.2 9.9-1.4 7.7-.4 5-.9 23.6s-.1 3.5-1.7 14.2c-1.7 12 .7 18 .7 18l1.7 9.3 1.3 4.1z" fill="url(#a)" opacity=".1"/><path d="m69.7 137.9c-15.2 18.1-28.3 63.6-11.9 98.2" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/><path d="m108.2 135c8.6 6.2 37.1 2.3 52.6 4.7l-1.2-24.7c-5.8-1.7-7.8-7.6-14.7-16.3-8-10.1-16.5-15.5-20.4-17.4-3.6-1.7-6.5-2.7-10.9.9-4.4 3.8-14.6 15.5-15.8 27.4-1.3 11.9 1.8 19.2 10.4 25.4z" fill="url(#b)"/><path d="m207.7 119.6c-1.7.6-5.4-.2-5.4-.2l-1.6 17.1z" fill="#b1b1b1"/><g fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"><path d="m110 250.6s.7-5.3 1.4-8c.2-.8.8-1.6 1.5-2.4"/><path d="m158.3 92.3s-.6-.9-1.5-2"/><path d="m108.2 177.9c.7.8 1.7 1.6 3.1 2.2"/><path d="m175.7 250.6h20c0-6.5-3.7-11.9-6-19s-1.1-19-1.1-19"/><path d="m155.5 82.8 2.4 6.5s3.7 23.4 2.8 86.6c-.2 14.1.1 21.7.1 21.7s-11.4 34.6-15.3 53h30.3s12.6-32.7 15.8-50.1c3.2-17.3 11.2-75.9 13-110.4 0-.5.1-1 .3-1.4.8-2.4 1.6-4.1 1.6-4.1"/><path d="m190.6 182c-.3 1-1.9 3.6-3.1 6.5"/><path d="m160.9 197.6c1.3-3.2 2.3-5.9 3.1-8.1 1-2.7 2.6-5.8 2.7-12.8"/><path d="m208.4 79.5c-.1.6-.7 2.1-.7 2.1"/><path d="m200 140.6c.6-5 5.1-11.8 7.5-20.3s5-17.7 6.3-25.3c2.5-15.1.4-33.4-2.1-40.3-2.5-6.8-6.6-12.7-17.5-19.5-3.5-2.2-4.6-6.7-7.4-13"/><path d="m207.7 119.6c-1.7.6-5.4-.2-5.4-.2"/><path d="m160.7 139.7c-15.5-2.4-44 1.5-52.6-4.7s-11.6-13.6-10.4-25.4 11.4-23.6 15.8-27.3 7.3-2.6 10.9-.9c3.9 1.8 12.4 7.3 20.4 17.4 6.9 8.7 8.9 14.6 14.7 16.3"/><path d="m131.8 138.8c9.1 0 15.1-6.5 18.4-12s4.5-14.3 1.3-18.6"/><path d="m149.8 48.9c.4-.2.9-.3 1.4-.5"/><path d="m117.9 80c3.6-4 17.3-16.6 20.5-20.8 2.5-3.2 5.5-6.8 9.1-9"/><path d="m144.6 52.3c2.1-1.7 2.6-12.5 2.8-15.9.2-2.5-2.2-8.8-5.2-14.1"/><path d="m154.5 80.3c-.4-.9-.7-1.6-.7-1.6"/><path d="m202.4 41.3c-4.2-3.8-8.2-3.3-9.9-2.9"/><path d="m189.7 39.2c-.4.1-1.1.3-1.9.6"/><path d="m105.2 132.6c-7.7 9-11.4 18.1-12.2 21.8-1 4.5-1.6 9.4-1.8 13.8l-2.1 26c0 .6-.1 1.3-.2 1.9l-.5 3.6c-1.4 10.1-1.1 20.3 1 30.2.7 3.4 1.8 6.6 3.2 9.8l4.9 10.9h48.1"/></g><path d="m211.6 54.8c-1.7-4.7-4.2-9-9.3-13.5-.1-.1-.1-.1-.2-.2-2.2-1.9-4.8-3.8-8-5.8-3.5-2.2-4.6-6.7-7.4-13h-44.5s4.3 6.7 5.2 14.1-2.8 15.9-2.8 15.9c-2.4 2.1-4.5 4.6-6.2 6.9-.2.3-.4.5-.7.8l7.2-7.3-8.2 8.4c.3-.4.7-.7 1-1.1l-14 14.1c2.1-2 4.4-4.3 6.6-6.5l-11.7 12.2c-.2 0-.5.1-.7.1l5.8-5.9c-2.5 2.5-4.7 4.6-5.8 5.9-1.3.3-2.7 1-4.3 2.3-.8.7-1.8 1.7-3 2.9-4.9 5.2-11.8 14.8-12.8 24.4-.2 2.3-.3 4.5-.2 6.5.3 6.9 2.8 12.1 7.6 16.6-7.7 9-11.4 18.1-12.2 21.8-1 4.5-1.6 9.4-1.8 13.8l-2.1 26c0 .6-.1 1.3-.2 1.9l-.5 3.6c-1.4 10.1-1.1 20.3 1 30.2.7 3.4 1.8 6.6 3.2 9.8l4.9 10.9h48.1 30.1.1 19.9c0-6.5-3.7-11.9-6-19s-1.1-19-1.1-19c1.2-4.4 2.3-8.5 2.9-12 1.9-10.1 5.4-34.5 8.4-59.9.6-5 5.1-11.8 7.5-20.2.1-.3.2-.5.2-.8 2.4-8.3 4.8-17.1 6-24.5 2.6-15.3.5-33.6-2-40.4z" fill="url(#c)" opacity=".8"/><path d="m108.2 135c8.6 6.2 37.1 2.3 52.6 4.7l-1.2-24.7c-5.8-1.7-7.8-7.6-14.7-16.3-8-10.1-16.5-15.5-20.4-17.4-3.6-1.7-6.5-2.7-10.9.9-4.4 3.8-14.6 15.5-15.8 27.4-1.3 11.9 1.8 19.2 10.4 25.4z" fill="url(#b)"/><path d="m207.7 119.6c-1.7.6-5.4-.2-5.4-.2l-1.6 17.1z" fill="#b1b1b1"/><path d="m110 250.6s.7-5.3 1.4-8c.2-.8.8-1.6 1.5-2.4" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m158.3 92.3s-.6-.9-1.5-2" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m108.2 177.9c.7.8 1.7 1.6 3.1 2.2" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m175.7 250.6h20c0-6.5-3.7-11.9-6-19s-1.1-19-1.1-19" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m155.5 82.8 2.4 6.5s3.7 23.4 2.8 86.6c-.2 14.1.1 21.7.1 21.7s-11.4 34.6-15.3 53h30.3s12.6-32.7 15.8-50.1c3.2-17.3 11.2-75.9 13-110.4 0-.5.1-1 .3-1.4.8-2.4 1.6-4.1 1.6-4.1" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m190.6 182c-.3 1-1.9 3.6-3.1 6.5" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m160.9 197.6c1.3-3.2 2.3-5.9 3.1-8.1 1-2.7 2.6-5.8 2.7-12.8" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m208.4 79.5c-.1.6-.7 2.1-.7 2.1" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m200 140.6c.6-5 5.1-11.8 7.5-20.3s5-17.7 6.3-25.3c2.5-15.1.4-33.4-2.1-40.3-2.5-6.8-6.6-12.7-17.5-19.5-3.5-2.2-4.6-6.7-7.4-13h-44.5c2.9 5.3 5.4 11.5 5.2 14.1-.3 3.4-.7 14.2-2.8 15.9" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m207.7 119.6c-1.7.6-5.4-.2-5.4-.2" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m160.7 139.7c-15.5-2.4-44 1.5-52.6-4.7s-11.6-13.6-10.4-25.4 11.4-23.6 15.8-27.3 7.3-2.6 10.9-.9c3.9 1.8 12.4 7.3 20.4 17.4 6.9 8.7 8.9 14.6 14.7 16.3" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m131.8 138.8c9.1 0 15.1-6.5 18.4-12s4.5-14.3 1.3-18.6" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m149.8 48.9c.4-.2.9-.3 1.4-.5" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m117.9 80c3.6-4 17.3-16.6 20.5-20.8 2.5-3.2 5.5-6.8 9.1-9" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m154.5 80.3c-.4-.9-.7-1.6-.7-1.6" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m202.4 41.3c-4.2-3.8-8.2-3.3-9.9-2.9" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m189.7 39.2c-.4.1-1.1.3-1.9.6" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m105.2 132.6c-7.7 9-11.4 18.1-12.2 21.8-1 4.5-1.6 9.4-1.8 13.8l-2.1 26c0 .6-.1 1.3-.2 1.9l-.5 3.6c-1.4 10.1-1.1 20.3 1 30.2.7 3.4 1.8 6.6 3.2 9.8l4.9 10.9h48.1" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m208.5 217.1h-128.3v36.3h128.3z" fill="url(#e)"/><path d="m116.5 21.6h98.2v14.8h-98.2z" fill="url(#f)"/></svg>';
|
|
8233
|
-
const wSeatFlatterSvg = '<svg enable-background="new 0 0 275 275" viewBox="0 0 275 275" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="203.306" x2="203.306" y1="170.7995" y2="70.612"><stop offset=".05" stop-color="#f09d2d" stop-opacity="0"/><stop offset=".5035" stop-color="#f09d2d"/><stop offset=".9791" stop-color="#f09d2d" stop-opacity="0"/></linearGradient><linearGradient id="b"><stop offset="0" stop-color="#fff" stop-opacity=".3"/><stop offset=".117" stop-color="#f1f1f1" stop-opacity=".4643"/><stop offset=".2602" stop-color="#e9e9e9" stop-opacity=".6653"/><stop offset=".4986" stop-color="#e6e6e6"/><stop offset=".7383" stop-color="#e9e9e9" stop-opacity=".5219"/><stop offset=".8823" stop-color="#f1f1f1" stop-opacity=".2347"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="83.3078" x2="83.3078" xlink:href="#b" y1="67.0483" y2="63.9991"/><linearGradient id="d"><stop offset="0" stop-color="#afafaf"/><stop offset="1" stop-color="#c1c1c1"/></linearGradient><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="135.7354" x2="135.7354" xlink:href="#d" y1="157.4648" y2="77.2656"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="133.0482" x2="133.0482" xlink:href="#b" y1="262.6183" y2="11.1049"/><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="74.9496" x2="196.4284" xlink:href="#d" y1="117.1984" y2="117.1984"/><linearGradient id="h"><stop offset=".1" stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="i" gradientTransform="matrix(-1 0 0 -1 -4955.1084 -4531.4673)" gradientUnits="userSpaceOnUse" x1="-5086.6084" x2="-5086.6084" xlink:href="#h" y1="-4541.8516" y2="-4556.6372"/><linearGradient id="j" gradientUnits="userSpaceOnUse" x1="131.5" x2="131.5" xlink:href="#h" y1="264.616" y2="228.346"/><path d="m179.3 70.6 2.9 6.4s3.3 7 7.4 15.7c4.6 9.8 6.3 19 6.3 19s1.6 16.7-1.3 25.5c-4.6 14-7.5 18.2-7.5 18.2l-7 9.6-4.8 5.8h54.9v-51.1l1.1-49.1z" fill="url(#a)" opacity=".1"/><path d="m231.3 70.6-1.1 49.8v50.4" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/><g opacity=".8"><path d="m81.3 70.2-.4.9" fill="none"/><path d="m83.8 64c-.2 1-.6 2.1-1 3z" fill="url(#c)"/></g><path d="m196.1 130c-1.1 11.6-6.9 21.5-9.9 27.4 7-20.1-13.6-36.2-39.2-41.4-27.6-5.6-60.2 3.1-62.8 10.3-.1-.3-5.1-14.3-9.3-27.7 21.4-2.9 40.4-7.4 66.7-11.4s40.5-10 40.5-10c8.1 18.5 16.4 26.5 14 52.8z" fill="url(#e)"/><path d="m82 262.6c-5-28.3-8-56.4-5.8-85.1.9-12.4 2.9-24.3 6.5-36.2 1.2-4.1 1.4-10.7 1.4-14.9 0-.1 0-.1-.1-.2v-.1s0-.1-.1-.2-.1-.3-.2-.4c0-.1-.1-.2-.1-.3s-.1-.2-.1-.3c-.1-.3-.2-.7-.4-1.1-4.7-12.4-9.5-25.5-12-38.6-2.3-12.1 0-22.5.4-34.5.1-4.2-.8-13.6-1.5-23.5-.4-5-.7-11.4-.9-16.1h108.8c-12.2 16.8-7 40.8 1.1 59.8 8.5 20 19.5 34.8 17.1 57.4-.1.5-.1.9-.2 1.4-1.9 14.3-10.9 30.5-17 36.3-6.2 5.8-6.6 14-8.8 20.4-2.4 6.9-5.7 22-7.1 29.2-3.2 15.6-5.5 31.3-6.7 47.1h-74.3z" fill="url(#f)"/><path d="m182.2 77.3s-14.2 6.1-40.5 10c-26.3 4-45.3 8.4-66.7 11.4 4.2 13.4 9.2 27.4 9.3 27.7 2.5-7.2 35.1-15.6 62.8-10.3 26.1 5 45.9 20.9 38.9 41 10.9-17.7 10.5-31.3 10.5-38.5s-4.6-24.1-14.3-41.3z" fill="url(#g)"/><g fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"><path d="m82 262.6c-5-28.3-8-56.4-5.8-85.1.9-12.4 2.9-24.3 6.5-36.2 1.2-4.1 1.4-10.7 1.4-14.9 0-.1 0-.1-.1-.2v-.1s0-.1-.1-.2-.1-.3-.2-.4c0-.1-.1-.2-.1-.3s-.1-.2-.1-.3c-.1-.3-.2-.7-.4-1.1-4.7-12.4-9.5-25.5-12-38.6-2.3-12.1 0-22.5.4-34.5.1-4.2-.8-13.6-1.5-23.5-.4-5-.7-11.4-.9-16.1"/><path d="m178.2 11.1c-12.2 16.8-7 40.8 1.1 59.8 8.5 20 19.5 34.8 17.1 57.4-.1.5-.1.9-.2 1.4-1.9 14.3-10.9 30.5-17 36.3-6.2 5.8-6.6 14-8.8 20.4-2.4 6.9-5.7 22-7.1 29.2-3.2 15.6-5.5 31.3-6.7 47.1"/><path d="m81.3 70.2-.4.9"/><path d="m83.8 64c-.2 1-.6 2.1-1 3"/><path d="m81.3 70.2-.4.9"/><path d="m83.8 64c-.2 1-.6 2.1-1 3"/><path d="m74.9 98.7c21.4-2.9 40.4-7.4 66.7-11.4s40.5-10 40.5-10"/><path d="m185.9 157.1c7-20.1-12.8-36-38.9-41-27.7-5.3-60.2 3.1-62.8 10.3"/><path d="m89.3 116.1c.5-1 1.1-2 1.1-2"/><path d="m84.2 126.4c.7-1.8 2.1-4.5 3.4-7.1"/></g><path d="m217.9 25.2h-172.8v-14.8h172.8z" fill="url(#i)"/><path d="m31.2 228.3h200.6v36.3h-200.6z" fill="url(#j)"/><path d="m95.1 95.4s2.1-2.9 2.7-4.6" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/></svg>';
|
|
8234
|
-
const wSeatAverageSvg = '<svg enable-background="new 0 0 275 275" viewBox="0 0 275 275" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientTransform="matrix(-1 0 0 1 -5785.313 0)" gradientUnits="userSpaceOnUse" x1="-5989.231" x2="-5989.231" y1="170.0837" y2="71.3277"><stop offset=".05" stop-color="#f09d2d" stop-opacity="0"/><stop offset=".5035" stop-color="#f09d2d"/><stop offset=".9791" stop-color="#f09d2d" stop-opacity="0"/></linearGradient><linearGradient id="b"><stop offset="0" stop-color="#fff" stop-opacity=".3"/><stop offset=".117" stop-color="#f1f1f1" stop-opacity=".4643"/><stop offset=".2602" stop-color="#e9e9e9" stop-opacity=".6653"/><stop offset=".4986" stop-color="#e6e6e6"/><stop offset=".7383" stop-color="#e9e9e9" stop-opacity=".5219"/><stop offset=".8823" stop-color="#f1f1f1" stop-opacity=".2347"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="82.2244" x2="82.2244" xlink:href="#b" y1="67.0483" y2="63.9991"/><linearGradient id="d"><stop offset="0" stop-color="#afafaf"/><stop offset="1" stop-color="#c1c1c1"/></linearGradient><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="136.1937" x2="136.1937" xlink:href="#d" y1="157.4648" y2="77.2656"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="133.5176" x2="133.5176" xlink:href="#b" y1="262.6183" y2="11.1049"/><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="73.8551" x2="198.5465" xlink:href="#d" y1="117.1984" y2="117.1984"/><linearGradient id="h"><stop offset=".1" stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="i" gradientTransform="matrix(-1 0 0 -1 -6020.0366 -4531.4673)" gradientUnits="userSpaceOnUse" x1="-6150.5176" x2="-6150.5176" xlink:href="#h" y1="-4541.8516" y2="-4556.6372"/><linearGradient id="j" gradientUnits="userSpaceOnUse" x1="130.481" x2="130.481" xlink:href="#h" y1="264.616" y2="228.346"/><path d="m174.9 170.1h51s7.1-30.1 7.1-50.3-6.1-48.4-6.1-48.4h-47.9l7.9 17.1 10.2 21 1.7 15.6-2.1 11.6-8.7 18.3z" fill="url(#a)" opacity=".1"/><path d="m226.9 71.3s6.1 28.3 6.1 49.1-7.1 49.7-7.1 49.7" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/><g opacity=".8"><path d="m80.3 70.2-.5.9" fill="none"/><path d="m82.7 64c-.2 1-.6 2.1-1 3z" fill="url(#c)"/></g><path d="m198.2 130c-1.1 11.6-9.9 21.5-13 27.4 7-20.1-13.6-36.2-39.2-41.4-27.7-5.6-60.3 3.1-62.9 10.3-.1-.3-5.1-14.3-9.3-27.7 21.4-2.9 40.4-7.4 66.8-11.4s40.6-10 40.6-10c8.1 18.5 19.4 26.5 17 52.8z" fill="url(#e)"/><path d="m81 262.6c-5-28.3-8-56.4-5.8-85.1.9-12.4 2.9-24.3 6.6-36.2 1.2-4.1 1.4-10.7 1.4-14.9 0-.1 0-.1-.1-.2v-.1s0-.1-.1-.2-.1-.3-.2-.4c0-.1-.1-.2-.1-.3s-.1-.2-.1-.3c-.1-.3-.2-.7-.4-1.1-4.7-12.4-9.5-25.5-12-38.6-2.3-12.1 0-22.5.4-34.5.1-4.2-.8-13.6-1.5-23.5-.4-5-.7-11.4-.9-16.1h109c-12.2 16.8-7 40.8 1.1 59.8 8.5 20 22.6 34.8 20.1 57.4-.1.5-.1.9-.2 1.4-1.9 14.3-13.9 30.5-20.1 36.3s-6.6 14-8.8 20.4c-2.4 6.9-5.7 22-7.2 29.2-3.2 15.6-5.5 31.3-6.7 47.1h-74.4z" fill="url(#f)"/><path d="m181.2 77.3s-14.2 6.1-40.6 10c-26.4 4-45.4 8.4-66.8 11.4 4.2 13.4 9.2 27.4 9.3 27.7 2.5-7.2 35.1-15.6 62.9-10.3 26.1 5 46.5 20.9 39.4 41 14-16 13.1-31.3 13.1-38.5s-7.5-24.1-17.3-41.3z" fill="url(#g)"/><g fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"><path d="m81 262.6c-5-28.3-8-56.4-5.8-85.1.9-12.4 2.9-24.3 6.6-36.2 1.2-4.1 1.4-10.7 1.4-14.9 0-.1 0-.1-.1-.2v-.1s0-.1-.1-.2-.1-.3-.2-.4c0-.1-.1-.2-.1-.3s-.1-.2-.1-.3c-.1-.3-.2-.7-.4-1.1-4.7-12.4-9.5-25.5-12-38.6-2.3-12.1 0-22.5.4-34.5.1-4.2-.8-13.6-1.5-23.5-.4-5-.7-11.4-.9-16.1"/><path d="m177.3 11.1c-12.2 16.8-7 40.8 1.1 59.8 8.5 20 22.6 34.8 20.1 57.4-.1.5-.1.9-.2 1.4-1.9 14.3-13.9 30.5-20.1 36.3s-6.6 14-8.8 20.4c-2.4 6.9-5.7 22-7.2 29.2-3.2 15.6-5.5 31.3-6.7 47.1"/><path d="m80.3 70.2-.5.9"/><path d="m82.7 64c-.2 1-.6 2.1-1 3"/><path d="m80.3 70.2-.5.9"/><path d="m82.7 64c-.2 1-.6 2.1-1 3"/><path d="m73.9 98.7c21.4-2.9 40.4-7.4 66.8-11.4s40.6-10 40.6-10"/><path d="m185.5 157.1c7-20.1-13.3-36-39.4-41-27.7-5.3-60.3 3.1-62.9 10.3"/><path d="m88.3 116.1c.5-1 1.1-2 1.1-2"/><path d="m83.2 126.4c.7-1.8 2.1-4.5 3.4-7.1"/></g><path d="m217 25.2h-173v-14.8h173z" fill="url(#i)"/><path d="m30 228.3h200.9v36.3h-200.9z" fill="url(#j)"/><path d="m94.1 95.4s2.1-2.9 2.7-4.6" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/></svg>';
|
|
8235
|
-
const wSeatRounderSvg = '<svg enable-background="new 0 0 275 275" viewBox="0 0 275 275" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientTransform="matrix(-1 0 0 1 -6911.5562 0)" gradientUnits="userSpaceOnUse" x1="-7115.0186" x2="-7115.0186" y1="172.2957" y2="71.3277"><stop offset=".05" stop-color="#f09d2d" stop-opacity="0"/><stop offset=".5035" stop-color="#f09d2d"/><stop offset=".9791" stop-color="#f09d2d" stop-opacity="0"/></linearGradient><linearGradient id="b"><stop offset="0" stop-color="#fff" stop-opacity=".3"/><stop offset=".117" stop-color="#f1f1f1" stop-opacity=".4643"/><stop offset=".2602" stop-color="#e9e9e9" stop-opacity=".6653"/><stop offset=".4986" stop-color="#e6e6e6"/><stop offset=".7383" stop-color="#e9e9e9" stop-opacity=".5219"/><stop offset=".8823" stop-color="#f1f1f1" stop-opacity=".2347"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="79.8824" x2="79.8824" xlink:href="#b" y1="67.0483" y2="63.9991"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="133.8764" x2="133.8764" xlink:href="#b" y1="262.6183" y2="11.1049"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="71.4861" x2="201.6635" y1="118.5957" y2="118.5957"><stop offset="0" stop-color="#afafaf"/><stop offset="1" stop-color="#c1c1c1"/></linearGradient><linearGradient id="f"><stop offset=".1" stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="g" gradientTransform="matrix(-1 0 0 -1 -7131.8481 -4531.4673)" gradientUnits="userSpaceOnUse" x1="-7260.1431" x2="-7260.1431" xlink:href="#f" y1="-4541.8516" y2="-4556.6372"/><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="128.2947" x2="128.2947" xlink:href="#f" y1="264.616" y2="228.346"/><path d="m219.8 172.3c22.5-32 17.4-80 5.4-101h-46.5l10.7 15.3 9.8 18.5 3.2 16.7-1.9 12.9-4.1 11.9-6.3 8.7-6 5.1-8.3 5.6-4.3 6.4h48.3z" fill="url(#a)" opacity=".1"/><path d="m225.2 71.3c12 21 17.1 69-5.4 101" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/><g opacity=".8"><path d="m77.9 70.2-.5.9" fill="none"/><path d="m80.4 64c-.2 1-.6 2.1-1 3z" fill="url(#c)"/></g><path d="m78.6 262.6c-5-28.3-8-56.4-5.8-85.1 1-12.4 2.9-24.3 6.6-36.2 1.2-4.1 1.4-10.7 1.4-14.9 0-.1 0-.1-.1-.2v-.1s0-.1-.1-.2-.1-.3-.2-.4c0-.1-.1-.2-.1-.3s-.1-.2-.1-.3c-.1-.3-.2-.7-.4-1.1-4.8-12.4-9.5-25.5-12-38.6-2.3-12.1 0-22.5.4-34.5.1-4.2-.8-13.6-1.5-23.5-.4-5-.7-11.4-.9-16.1h109.3c-12.3 16.8-5 40.8 3.1 59.8 11.1 18.1 25.7 33.8 23.2 56.4-.1.5-.1.9-.2 1.4-2 24.2-19 31.5-25.2 37.3s-6.6 14-8.8 20.4c-2.4 6.9-5.7 22-7.2 29.2-3.2 15.6-5.5 31.3-6.7 47.1h-74.7z" fill="url(#d)"/><path d="m182.1 76.8s-17.2 6.6-43.6 10.6-45.5 8.4-67 11.4c4.2 13.4 9.2 27.4 9.3 27.7 2.5-7.2 35.3-15.6 63.1-10.3 26.2 5 47.1 24.2 40.1 44.3 19.9-14.5 17.5-35.6 17.7-42.8.2-14.2-9.9-25.5-19.6-40.9z" fill="url(#e)"/><g fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"><path d="m80.8 126.4c2.6-7.2 35.3-15.6 63.1-10.3 26.1 5 46.9 24.2 40.2 44.3"/><path d="m182.1 76.8s-17.2 6.6-43.6 10.6-45.5 8.4-67 11.4"/><path d="m78.6 262.6c-5-28.3-8-56.4-5.8-85.1 1-12.4 2.9-24.3 6.6-36.2 1.2-4.1 1.4-10.7 1.4-14.9 0-.1 0-.1-.1-.2v-.1s0-.1-.1-.2-.1-.3-.2-.4c0-.1-.1-.2-.1-.3s-.1-.2-.1-.3c-.1-.3-.2-.7-.4-1.1-4.8-12.4-9.5-25.5-12-38.6-2.3-12.1 0-22.5.4-34.5.1-4.2-.8-13.6-1.5-23.5-.4-5-.7-11.4-.9-16.1"/><path d="m175.2 11.1c-12.3 16.8-5 40.8 3.1 59.8 12 18.6 25.7 33.8 23.2 56.4-.1.5-.1.9-.2 1.4-1.9 14.3-4.9 24.3-25.2 37.3-6.2 5.8-6.6 14-8.8 20.4-2.4 6.9-5.7 22-7.2 29.2-3.2 15.6-5.5 31.3-6.7 47.1"/><path d="m77.9 70.2-.5.9"/><path d="m80.4 64c-.2 1-.6 2.1-1 3"/><path d="m77.9 70.2-.5.9"/><path d="m80.4 64c-.2 1-.6 2.1-1 3"/><path d="m85.9 116.1c.5-1 1.1-2 1.1-2"/><path d="m80.8 126.4c.7-1.8 2.1-4.5 3.5-7.1"/></g><path d="m215 25.2h-173.5v-14.8h173.5z" fill="url(#g)"/><path d="m27.5 228.3h201.5v36.3h-201.5z" fill="url(#h)"/><path d="m91.8 95.4s2.1-2.9 2.7-4.6" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/></svg>';
|
|
8236
|
-
function svgToDataUrl(svg) {
|
|
8237
|
-
return "data:image/svg+xml;charset=utf-8," + encodeURIComponent(svg);
|
|
8220
|
+
const DEFAULT_ASSETS_BASE = "https://myaifitting.com/assets/body-shapes";
|
|
8221
|
+
function getBase() {
|
|
8222
|
+
if (typeof window !== "undefined") {
|
|
8223
|
+
const override = window.PRIMESTYLE_ASSETS_BASE;
|
|
8224
|
+
if (override) return override.replace(/\/+$/, "");
|
|
8225
|
+
}
|
|
8226
|
+
return DEFAULT_ASSETS_BASE;
|
|
8238
8227
|
}
|
|
8239
|
-
const
|
|
8240
|
-
const M_CHEST_AVERAGE = svgToDataUrl(chestAverageSvg);
|
|
8241
|
-
const M_CHEST_BROAD = svgToDataUrl(chestBroadSvg);
|
|
8242
|
-
const M_STOMACH_FLAT = svgToDataUrl(stomachFlatterSvg);
|
|
8243
|
-
const M_STOMACH_AVERAGE = svgToDataUrl(stomachAverageSvg);
|
|
8244
|
-
const M_STOMACH_ROUND = svgToDataUrl(stomachRounderSvg);
|
|
8245
|
-
const M_SEAT_FLAT = svgToDataUrl(seatFlatterSvg);
|
|
8246
|
-
const M_SEAT_AVERAGE = svgToDataUrl(seatAverageSvg);
|
|
8247
|
-
const M_SEAT_FULL = svgToDataUrl(seatRounderSvg);
|
|
8248
|
-
const W_STOMACH_FLAT = svgToDataUrl(wStomachFlatterSvg);
|
|
8249
|
-
const W_STOMACH_AVERAGE = svgToDataUrl(wStomachAverageSvg);
|
|
8250
|
-
const W_STOMACH_ROUND = svgToDataUrl(wStomachRounderSvg);
|
|
8251
|
-
const W_SEAT_FLAT = svgToDataUrl(wSeatFlatterSvg);
|
|
8252
|
-
const W_SEAT_AVERAGE = svgToDataUrl(wSeatAverageSvg);
|
|
8253
|
-
const W_SEAT_FULL = svgToDataUrl(wSeatRounderSvg);
|
|
8254
|
-
const W_HIPS_NARROW = svgToDataUrl(wHipsNarrowSvg);
|
|
8255
|
-
const W_HIPS_AVERAGE = svgToDataUrl(wHipsAverageSvg);
|
|
8256
|
-
const W_HIPS_FULL = svgToDataUrl(wHipsBroadSvg);
|
|
8228
|
+
const u = (name) => `${getBase()}/${name}`;
|
|
8257
8229
|
const BODY_IMAGES = {
|
|
8258
8230
|
female: {
|
|
8259
8231
|
stomach: {
|
|
8260
|
-
flat:
|
|
8261
|
-
average:
|
|
8262
|
-
round:
|
|
8232
|
+
flat: u("w-stomach-flat.png"),
|
|
8233
|
+
average: u("w-stomach-average.png"),
|
|
8234
|
+
round: u("w-stomach-round.png")
|
|
8263
8235
|
},
|
|
8264
8236
|
seat: {
|
|
8265
|
-
narrow:
|
|
8266
|
-
average:
|
|
8267
|
-
full:
|
|
8237
|
+
narrow: u("w-seat-flat.png"),
|
|
8238
|
+
average: u("w-seat-average.png"),
|
|
8239
|
+
full: u("w-seat-round.png")
|
|
8268
8240
|
},
|
|
8269
8241
|
hips: {
|
|
8270
|
-
narrow:
|
|
8271
|
-
average:
|
|
8272
|
-
full:
|
|
8242
|
+
narrow: u("w-hips-narrow.png"),
|
|
8243
|
+
average: u("w-hips-average.png"),
|
|
8244
|
+
full: u("w-hips-full.png")
|
|
8273
8245
|
}
|
|
8274
8246
|
},
|
|
8275
8247
|
male: {
|
|
8276
8248
|
chest: {
|
|
8277
|
-
narrow:
|
|
8278
|
-
average:
|
|
8279
|
-
broad:
|
|
8249
|
+
narrow: u("m-chest-narrow.png"),
|
|
8250
|
+
average: u("m-chest-average.png"),
|
|
8251
|
+
broad: u("m-chest-broad.png")
|
|
8280
8252
|
},
|
|
8281
8253
|
stomach: {
|
|
8282
|
-
flat:
|
|
8283
|
-
average:
|
|
8284
|
-
round:
|
|
8254
|
+
flat: u("m-stomach-flat.png"),
|
|
8255
|
+
average: u("m-stomach-average.png"),
|
|
8256
|
+
round: u("m-stomach-round.png")
|
|
8285
8257
|
},
|
|
8286
8258
|
seat: {
|
|
8287
|
-
narrow:
|
|
8288
|
-
average:
|
|
8289
|
-
full:
|
|
8259
|
+
narrow: u("m-seat-flat.png"),
|
|
8260
|
+
average: u("m-seat-average.png"),
|
|
8261
|
+
full: u("m-seat-full.png")
|
|
8290
8262
|
}
|
|
8291
8263
|
}
|
|
8292
8264
|
};
|
|
@@ -10499,6 +10471,7 @@ function PrimeStyleTryonInner({
|
|
|
10499
10471
|
const applyProfileRef = useRef(() => {
|
|
10500
10472
|
});
|
|
10501
10473
|
const handleOpen = useCallback(() => {
|
|
10474
|
+
console.log("[ps-sdk] handleOpen fired — opening modal");
|
|
10502
10475
|
setView("body-profile");
|
|
10503
10476
|
onOpen?.();
|
|
10504
10477
|
}, [onOpen]);
|
|
@@ -11526,11 +11499,22 @@ function PrimeStyleTryonInner({
|
|
|
11526
11499
|
return null;
|
|
11527
11500
|
}
|
|
11528
11501
|
}
|
|
11529
|
-
return /* @__PURE__ */ jsxs("div", { className: cx("ps-tryon-root", cn.root || className), style: { visibility: "
|
|
11530
|
-
/* @__PURE__ */ jsxs(
|
|
11531
|
-
|
|
11532
|
-
|
|
11533
|
-
|
|
11502
|
+
return /* @__PURE__ */ jsxs("div", { className: cx("ps-tryon-root", cn.root || className), style: { visibility: "visible", ...cssVars, ...style }, "data-ps-tryon": true, children: [
|
|
11503
|
+
/* @__PURE__ */ jsxs(
|
|
11504
|
+
"button",
|
|
11505
|
+
{
|
|
11506
|
+
onClick: (e) => {
|
|
11507
|
+
console.log("[ps-sdk] button click event fired", e);
|
|
11508
|
+
handleOpen();
|
|
11509
|
+
},
|
|
11510
|
+
className: cx("ps-tryon-btn", cn.button),
|
|
11511
|
+
type: "button",
|
|
11512
|
+
children: [
|
|
11513
|
+
showIcon !== false && (buttonIcon || /* @__PURE__ */ jsx(CameraIcon$1, {})),
|
|
11514
|
+
/* @__PURE__ */ jsx("span", { children: resolvedButtonText })
|
|
11515
|
+
]
|
|
11516
|
+
}
|
|
11517
|
+
),
|
|
11534
11518
|
view !== "idle" && typeof document !== "undefined" && createPortal(
|
|
11535
11519
|
/* @__PURE__ */ jsx("div", { className: cx("ps-tryon-overlay", cn.overlay), style: cssVars, "data-ps-tryon-portal": true, children: /* @__PURE__ */ jsxs("div", { className: cx(`ps-tryon-modal${view === "result" && resultImageUrl && sizingResult || view === "size-result" || view === "estimation-review" || view === "body-profile" || view === "profiles" ? " ps-tryon-modal-wide" : ""}${view === "profiles" ? " ps-tryon-modal-tall" : ""}`, cn.modal), onClick: (e) => e.stopPropagation(), children: [
|
|
11536
11520
|
/* @__PURE__ */ jsxs("div", { className: cx("ps-tryon-header ps-tryon-header-minimal", cn.header), children: [
|
|
@@ -1,3 +1,17 @@
|
|
|
1
1
|
export declare function detectLocale(): string;
|
|
2
|
+
/**
|
|
3
|
+
* Read `process.env.NEXT_PUBLIC_PRIMESTYLE_API_KEY`.
|
|
4
|
+
*
|
|
5
|
+
* IMPORTANT: this MUST be a literal `process.env.X` access, NOT a
|
|
6
|
+
* dynamic property read like `process.env[key]`. Bundlers (Next.js
|
|
7
|
+
* SWC, Vite `define`, Webpack DefinePlugin) only perform STATIC
|
|
8
|
+
* replacement of literal property accesses. A dynamic access escapes
|
|
9
|
+
* the replacement and falls through to a runtime `process` lookup,
|
|
10
|
+
* which throws `ReferenceError: process is not defined` in any
|
|
11
|
+
* pure-browser context (Shopify storefront, etc.).
|
|
12
|
+
*
|
|
13
|
+
* The try/catch is the runtime safety net for environments that
|
|
14
|
+
* neither replace at build time NOR provide a `process` shim.
|
|
15
|
+
*/
|
|
2
16
|
export declare function getApiKey(): string;
|
|
3
17
|
export declare function getApiUrl(override?: string): string;
|
|
@@ -10,7 +10,7 @@ var react_production_min = {};
|
|
|
10
10
|
* This source code is licensed under the MIT license found in the
|
|
11
11
|
* LICENSE file in the root directory of this source tree.
|
|
12
12
|
*/
|
|
13
|
-
var l$1 = Symbol.for("react.element"), n$1 = Symbol.for("react.portal"), p$2 = Symbol.for("react.fragment"), q$1 = Symbol.for("react.strict_mode"), r = Symbol.for("react.profiler"), t = Symbol.for("react.provider"), u = Symbol.for("react.context"), v$1 = Symbol.for("react.forward_ref"), w = Symbol.for("react.suspense"), x = Symbol.for("react.memo"), y = Symbol.for("react.lazy"), z$1 = Symbol.iterator;
|
|
13
|
+
var l$1 = Symbol.for("react.element"), n$1 = Symbol.for("react.portal"), p$2 = Symbol.for("react.fragment"), q$1 = Symbol.for("react.strict_mode"), r = Symbol.for("react.profiler"), t = Symbol.for("react.provider"), u$1 = Symbol.for("react.context"), v$1 = Symbol.for("react.forward_ref"), w = Symbol.for("react.suspense"), x = Symbol.for("react.memo"), y = Symbol.for("react.lazy"), z$1 = Symbol.iterator;
|
|
14
14
|
function A$1(a) {
|
|
15
15
|
if (null === a || "object" !== typeof a) return null;
|
|
16
16
|
a = z$1 && a[z$1] || a["@@iterator"];
|
|
@@ -180,7 +180,7 @@ react_production_min.cloneElement = function(a, b, e) {
|
|
|
180
180
|
return { $$typeof: l$1, type: a.type, key: c, ref: k2, props: d, _owner: h };
|
|
181
181
|
};
|
|
182
182
|
react_production_min.createContext = function(a) {
|
|
183
|
-
a = { $$typeof: u, _currentValue: a, _currentValue2: a, _threadCount: 0, Provider: null, Consumer: null, _defaultValue: null, _globalName: null };
|
|
183
|
+
a = { $$typeof: u$1, _currentValue: a, _currentValue2: a, _threadCount: 0, Provider: null, Consumer: null, _defaultValue: null, _globalName: null };
|
|
184
184
|
a.Provider = { $$typeof: t, _context: a };
|
|
185
185
|
return a.Consumer = a;
|
|
186
186
|
};
|
|
@@ -9762,15 +9762,6 @@ function addSizeToHistory(profileId, entry) {
|
|
|
9762
9762
|
saveProfiles(profiles);
|
|
9763
9763
|
return profiles[idx];
|
|
9764
9764
|
}
|
|
9765
|
-
var define_process_env_default = {};
|
|
9766
|
-
function readEnv(key) {
|
|
9767
|
-
try {
|
|
9768
|
-
if (typeof process === "undefined" || !process || !define_process_env_default) return void 0;
|
|
9769
|
-
return define_process_env_default[key];
|
|
9770
|
-
} catch {
|
|
9771
|
-
return void 0;
|
|
9772
|
-
}
|
|
9773
|
-
}
|
|
9774
9765
|
function detectLocale() {
|
|
9775
9766
|
if (typeof navigator === "undefined") return "US";
|
|
9776
9767
|
const lang = navigator.language || "";
|
|
@@ -9791,12 +9782,22 @@ function detectLocale() {
|
|
|
9791
9782
|
return map[lang.split("-")[0].toLowerCase()] || "US";
|
|
9792
9783
|
}
|
|
9793
9784
|
function getApiKey() {
|
|
9794
|
-
|
|
9785
|
+
let key = "";
|
|
9786
|
+
try {
|
|
9787
|
+
key = "shopify-proxy";
|
|
9788
|
+
} catch {
|
|
9789
|
+
}
|
|
9795
9790
|
if (!key) throw new PrimeStyleError("Missing NEXT_PUBLIC_PRIMESTYLE_API_KEY", "MISSING_API_KEY");
|
|
9796
9791
|
return key;
|
|
9797
9792
|
}
|
|
9798
9793
|
function getApiUrl(override) {
|
|
9799
|
-
|
|
9794
|
+
if (override) return override;
|
|
9795
|
+
let envUrl = "";
|
|
9796
|
+
try {
|
|
9797
|
+
envUrl = "";
|
|
9798
|
+
} catch {
|
|
9799
|
+
}
|
|
9800
|
+
return envUrl || "http://localhost:4000";
|
|
9800
9801
|
}
|
|
9801
9802
|
async function recommendForProduct(input) {
|
|
9802
9803
|
const log = (...args) => console.log("[ps-sdk:recommend]", ...args);
|
|
@@ -17640,78 +17641,48 @@ function ErrorView({
|
|
|
17640
17641
|
/* @__PURE__ */ jsxRuntimeExports.jsx("button", { onClick: handleRetry, className: cx("ps-tryon-submit", cn.submitButton), children: t2("Try Again") })
|
|
17641
17642
|
] });
|
|
17642
17643
|
}
|
|
17643
|
-
const
|
|
17644
|
-
|
|
17645
|
-
|
|
17646
|
-
const
|
|
17647
|
-
|
|
17648
|
-
|
|
17649
|
-
|
|
17650
|
-
|
|
17651
|
-
const
|
|
17652
|
-
const wHipsNarrowSvg = '<svg enable-background="new 0 0 275 275" viewBox="0 0 275 275" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="136.1851" x2="136.1851" y1="250.9766" y2="22.3259"><stop offset="0" stop-color="#fff" stop-opacity=".3"/><stop offset=".117" stop-color="#f1f1f1" stop-opacity=".4643"/><stop offset=".2602" stop-color="#e9e9e9" stop-opacity=".6653"/><stop offset=".4986" stop-color="#e6e6e6"/><stop offset=".7383" stop-color="#e9e9e9" stop-opacity=".5219"/><stop offset=".8823" stop-color="#f1f1f1" stop-opacity=".2347"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="136.0724" x2="136.0724" y1="174.3804" y2="81.6417"><stop offset="0" stop-color="#afafaf"/><stop offset="1" stop-color="#c1c1c1"/></linearGradient><linearGradient id="c"><stop offset=".1" stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="d" gradientTransform="matrix(-1 0 0 -1 1519.3916 -4531.4673)" gradientUnits="userSpaceOnUse" x1="1383.3442" x2="1383.3442" xlink:href="#c" y1="-4553.2119" y2="-4567.9976"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="136.0473" x2="136.0473" xlink:href="#c" y1="253.2556" y2="216.9856"/><linearGradient id="f"><stop offset=".05" stop-color="#f09d2d" stop-opacity="0"/><stop offset=".5035" stop-color="#f09d2d"/><stop offset=".9791" stop-color="#f09d2d" stop-opacity="0"/></linearGradient><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="37.8553" x2="37.8553" xlink:href="#f" y1="203.7977" y2="76.8344"/><linearGradient id="h" gradientTransform="matrix(-1 0 0 1 2459.5337 0)" gradientUnits="userSpaceOnUse" x1="2223.1133" x2="2223.1133" xlink:href="#f" y1="203.7977" y2="76.8344"/><path d="m69.9 22.3c2.5 11.7 2 21.4-.8 31.9-3.9 14.4-6.5 20.4-9 27.4-1.1 3.2-2.6 6.1-3.7 10.7-1.2 5.2-6.6 15.6-9.2 28.7-7.2 37.4.9 55.1 5.4 82.5 6.7 40.7 8.3 47.5 8.3 47.5h65.7s3.2-32.6 4.1-42c.9-9.5 2.3-22.1-1.8-31.6-2.3-5.3-1.1-5-1.1-5s.4 1.5 3.1 1.9c1.6.3 6.6.2 8 0s1.7-.3 1.3-.2c0 0 1-.2 1 1.9 0 3.3-1 4.2-2.6 13.1-2 11 1.7 43.4 3.2 62h66.1s2.8-6.7 11.6-47.5c7-32.2 12.4-43.1 5.6-79.5-2.7-14.4-8.4-26.3-10.6-37.1-6.3-30.1-13.2-36.2-10.1-64.6h-134.5z" fill="url(#a)"/><path d="m225 124c-26.4 10.4-63.7 30.9-77.4 43.2 0 0-2.6 5.8-5.7 6.4s0 0 0 0c-.3 0-1.9.4-3.1.6-1.3.2-6.3.3-8 0-1.1-.2-1.8-.5-2.2-.8-.4-.5-.7-.8-.9-1-1.3-1.4-2.4-1.6-3.2-3-2-.5-2.6-1.3-15.7-11.5s-41.9-28.2-61.7-36.8c2.9-13 7.9-23.5 9.2-28.7 1.1-4.7 2.5-7.5 3.7-10.7 12.4 12.5 49.3 33.3 75.1 33.3 25.9 0 71.9-21.4 78.5-31.4.2 1.1.8 2.4 1.3 3.4 1.8 3.8.9 5.6 2.4 9.5 3.1 7.9 5.8 17.8 7.7 27.5z" fill="url(#b)"/><g fill="none"><path d="m69.9 22.3c2.5 11.7 2 21.4-.8 31.9-3.9 14.4-6.5 20.4-9 27.4-1.1 3.2-2.1 6.1-3.7 10.7-1.7 5.1-6.6 15.6-9.2 28.7-7.2 37.4 0 56.8 5.4 82.5 8.4 40.4 8.3 47.5 8.3 47.5h65.7s3.2-32.6 4.1-42c.9-9.5 2.3-22.1-1.8-31.6-2.3-5.3-1.1-5-1.1-5s.4 1.5 3.1 1.9c1.6.3 6.6.2 8 0s1.7-.3 1.3-.2c0 0 1-.2 1 1.9 0 3.3-1 4.2-2.6 13.1-2 11 1.7 43.4 3.2 62h66.1s2.8-6.7 11.6-47.5c7-32.2 12.4-43.1 5.6-79.5-1.9-10-4.5-19.4-7.7-27.4-1.4-3.6-1.6-5.6-2.6-9.5-.3-1.1-.8-2.3-1-3.4-6.1-27.3-12.4-34-9.4-61.3" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m184.2 22.3c0 4.7-1.5 8.7-3 12.7" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m96.3 29.9c.5 1.7 1.1 3.4 1.8 5.1" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m176.3 77.2s-.1 3.5-.9 7.9" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m102.8 74.6s0 4.8 1.7 9.6" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m225 124c-26.4 10.4-63.7 30.9-77.4 43.2 0 0-2.6 5.8-5.7 6.4s0 0 0 0c-.3 0-1.9.4-3.1.6-1.3.2-6.3.3-8 0-1.1-.2-1.8-.5-2.2-.8-.4-.5-.7-.8-.9-1-1.3-1.4-2.4-1.6-3.2-3-2-.5-2.6-1.3-15.7-11.5s-41.9-28.2-61.7-36.8c2.9-13 7.3-23.8 9.4-28.7s2.3-7.5 3.5-10.7c12.4 12.5 49.3 33.3 75.1 33.3 25.9 0 71.9-21.4 78.5-31.4.2 1.1.8 2.6 1.1 3.7 1.2 4.1 1.2 5.7 2.6 9.3 3.2 8.1 5.8 17.6 7.7 27.4z" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m122.1 164.4c-.4-.9-.5-1.6-.5-1.6" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m124.6 169.3c-.6-.9-1.1-1.8-1.5-2.6" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m140.4 63.2c-.1 1.9-.3 3-.3 4.3" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m140.5 53.2v6" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m140.5 44.5v3.9" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m144.6 60.6s-5-3.3-8.1.5c1.5 3.2 5.8 1.8 5.8 1.8" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/></g><path d="m221.4 36.5h-170.7v-14.8h170.7z" fill="url(#d)"/><path d="m36.9 217h198.4v36.3h-198.4z" fill="url(#e)"/><path d="m170.5 104.3c-.9 2.1-3.3 4.2-3.3 4.2" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m52.7 203.8h-37v-70l-1.1-57h46.5l-6.5 19.8-5.9 17.5-1.5 7-1.5 6.6-1.4 15.1v19.4l4.1 23.7z" fill="url(#g)" opacity=".1"/><path d="m14.6 76.8 1.1 57.9v69.1" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/><path d="m219.3 203.8h40v-70l1.1-57h-47.9l4.2 19 6.2 18.3 1.6 7 1.5 6.6 1.7 15.1.2 19.4-4.7 23.7z" fill="url(#h)" opacity=".1"/><path d="m260.4 76.8-1.1 57.9v69.1" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/></svg>';
|
|
17653
|
-
const wHipsAverageSvg = '<svg enable-background="new 0 0 275 275" viewBox="0 0 275 275" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a"><stop offset=".05" stop-color="#f09d2d" stop-opacity="0"/><stop offset=".5035" stop-color="#f09d2d"/><stop offset=".9791" stop-color="#f09d2d" stop-opacity="0"/></linearGradient><linearGradient id="b" gradientTransform="matrix(-1 0 0 1 1955.3486 0)" gradientUnits="userSpaceOnUse" x1="1709.6826" x2="1709.6826" xlink:href="#a" y1="203.7977" y2="76.8344"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="29.1666" x2="29.1666" xlink:href="#a" y1="203.7977" y2="76.8344"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="137.8198" x2="137.8198" y1="250.9766" y2="22.3259"><stop offset="0" stop-color="#fff" stop-opacity=".3"/><stop offset=".117" stop-color="#f1f1f1" stop-opacity=".4643"/><stop offset=".2602" stop-color="#e9e9e9" stop-opacity=".6653"/><stop offset=".4986" stop-color="#e6e6e6"/><stop offset=".7383" stop-color="#e9e9e9" stop-opacity=".5219"/><stop offset=".8823" stop-color="#f1f1f1" stop-opacity=".2347"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="137.7006" x2="137.7006" y1="174.3804" y2="81.6417"><stop offset="0" stop-color="#afafaf"/><stop offset="1" stop-color="#c1c1c1"/></linearGradient><linearGradient id="f"><stop offset=".1" stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="g" gradientTransform="matrix(-1 0 0 -1 454.4635 -4531.4673)" gradientUnits="userSpaceOnUse" x1="316.7894" x2="316.7894" xlink:href="#f" y1="-4553.2119" y2="-4567.9976"/><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="137.6741" x2="137.6741" xlink:href="#f" y1="253.2556" y2="216.9856"/><path d="m226.7 203.8h35.4s10.1-24.9 10.1-63.5-9-63.5-9-63.5h-43.9l4.9 18.4 3.1 9.3 3.8 12.6.6 4.2 2.2 13.2 1.3 15-1.1 17.8-3.6 18.5z" fill="url(#b)" opacity=".1"/><path d="m263.1 76.8s9 25.2 9 63.5-10.1 63.5-10.1 63.5" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/><path d="m47.3 203.8h-35.4s-10.1-24.9-10.1-63.5 9-63.5 9-63.5h45.6l-6.6 18.4-3.1 9.3-3.8 12.6-1.4 3.5-2.7 33.9 2.4 21.3 2.2 10z" fill="url(#c)" opacity=".1"/><path d="m10.9 76.8s-9 25.2-9 63.5 10.1 63.5 10.1 63.5" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/><path d="m67.7 22.3c2.7 11.7-3 21.4-5.9 31.9-4.1 14.4-6.9 20.4-9.5 27.4-1.2 3.2-2.7 6.1-3.9 10.7-1.3 5.2-7 15.6-9.7 28.7-7.7 37.4.9 55.1 5.7 82.5 7 40.7 13.9 47.5 13.9 47.5h69.5s3.4-32.6 4.4-42c1-9.5 2.4-22.1-1.9-31.6-2.4-5.3-1.2-5-1.2-5s.4 1.5 3.3 1.9c1.7.3 7 .2 8.4 0s1.8-.3 1.4-.2c0 0 1-.2 1 1.9 0 3.3-1 4.2-2.8 13.1-2.2 11 1.8 43.4 3.4 62h69.9s8-6.7 17.3-47.5c7.4-32.2 13.2-43.1 6-79.5-2.9-14.4-8.9-26.3-11.3-37.1-6.7-30.1-19-36.2-15.7-64.6h-142.3z" fill="url(#d)"/><path d="m236.8 124c-27.9 10.4-72.4 30.9-86.9 43.2 0 0-2.8 5.8-6 6.4-.3 0-2.1.4-3.2.6-1.4.2-6.7.3-8.4 0-1.1-.2-1.9-.5-2.4-.8-.4-.5-.7-.8-.9-1-1.4-1.4-2.5-1.6-3.3-3-2.1-.5-2.8-1.3-16.6-11.5-13.9-10.2-49.3-28.2-70.3-36.8 3.1-13 8.4-23.5 9.7-28.7 1.2-4.7 2.7-7.5 3.9-10.7 13.1 12.5 57.2 33.3 84.5 33.3 27.4 0 81.1-21.4 88.1-31.4.3 1.1.8 2.4 1.4 3.4 1.9 3.8.9 5.6 2.5 9.5 3.1 7.9 5.9 17.8 7.9 27.5z" fill="url(#e)"/><g fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"><path d="m67.7 22.3c2.7 11.7-3 21.4-5.9 31.9-4.1 14.4-6.9 20.4-9.5 27.4-1.2 3.2-2.3 6.1-3.9 10.7-1.8 5.1-7 15.6-9.7 28.7-7.7 37.4 0 56.8 5.7 82.5 8.9 40.4 13.9 47.5 13.9 47.5h69.5s3.4-32.6 4.4-42c1-9.5 2.4-22.1-1.9-31.6-2.4-5.3-1.2-5-1.2-5s.4 1.5 3.3 1.9c1.7.3 7 .2 8.4 0s1.8-.3 1.4-.2c0 0 1-.2 1 1.9 0 3.3-1 4.2-2.8 13.1-2.2 11 1.8 43.4 3.4 62h69.9s8-6.7 17.3-47.5c7.4-32.2 13.2-43.1 6-79.5-2-10-4.8-19.4-8.1-27.4-1.5-3.6-1.7-5.6-2.8-9.5-.3-1.1-.8-2.3-1.1-3.4-6.5-27.3-18.1-34-15-61.3"/><path d="m188.6 22.3c0 4.7-1.6 8.7-3.1 12.7"/><path d="m95.7 29.9c.5 1.7 1.2 3.4 1.9 5.1"/><path d="m180.2 77.2s-.1 3.5-1 7.9"/><path d="m102.5 74.6s0 4.8 1.8 9.6"/><path d="m236.8 124c-27.9 10.4-72.4 30.9-86.9 43.2 0 0-2.8 5.8-6 6.4-.3 0-2.1.4-3.2.6-1.4.2-6.7.3-8.4 0-1.1-.2-1.9-.5-2.4-.8-.4-.5-.7-.8-.9-1-1.4-1.4-2.5-1.6-3.3-3-2.1-.5-2.8-1.3-16.6-11.5-13.9-10.2-49.3-28.2-70.3-36.8 3.1-13 7.7-23.8 9.9-28.7s2.5-7.5 3.7-10.7c13.1 12.5 57.2 33.3 84.5 33.3 27.4 0 81.1-21.4 88.1-31.4.3 1.1.8 2.6 1.2 3.7 1.3 4.1 1.2 5.7 2.7 9.3 3.1 8.1 5.9 17.6 7.9 27.4z"/><path d="m122.9 164.4c-.4-.9-.6-1.6-.6-1.6"/><path d="m125.5 169.3c-.7-.9-1.2-1.8-1.6-2.6"/><path d="m142.2 63.2c-.1 1.9-.3 3-.3 4.3"/><path d="m142.4 53.2v6"/><path d="m142.4 44.5v3.9"/><path d="m146.7 60.6s-5.3-3.3-8.6.5c1.6 3.2 6.2 1.8 6.2 1.8"/></g><path d="m228 36.5h-180.7v-14.8h180.7z" fill="url(#g)"/><path d="m32.8 217h209.8v36.3h-209.8z" fill="url(#h)"/><path d="m174.1 104.3c-1 2.1-3.5 4.2-3.5 4.2" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/></svg>';
|
|
17654
|
-
const wHipsBroadSvg = '<svg enable-background="new 0 0 275 275" viewBox="0 0 275 275" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="138.6768" x2="138.6768" y1="250.9766" y2="22.3259"><stop offset="0" stop-color="#fff" stop-opacity=".3"/><stop offset=".117" stop-color="#f1f1f1" stop-opacity=".4643"/><stop offset=".2602" stop-color="#e9e9e9" stop-opacity=".6653"/><stop offset=".4986" stop-color="#e6e6e6"/><stop offset=".7383" stop-color="#e9e9e9" stop-opacity=".5219"/><stop offset=".8823" stop-color="#f1f1f1" stop-opacity=".2347"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="138.7222" x2="138.7222" y1="174.3804" y2="81.6417"><stop offset="0" stop-color="#afafaf"/><stop offset="1" stop-color="#c1c1c1"/></linearGradient><linearGradient id="c"><stop offset=".1" stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="d" gradientTransform="matrix(-1 0 0 -1 -657.3482 -4531.4673)" gradientUnits="userSpaceOnUse" x1="-796.0436" x2="-796.0436" xlink:href="#c" y1="-4553.2119" y2="-4567.9976"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="138.6954" x2="138.6954" xlink:href="#c" y1="253.2556" y2="216.9856"/><linearGradient id="f"><stop offset=".05" stop-color="#f09d2d" stop-opacity="0"/><stop offset=".5035" stop-color="#f09d2d"/><stop offset=".9791" stop-color="#f09d2d" stop-opacity="0"/></linearGradient><linearGradient id="g" gradientTransform="matrix(-1 0 0 1 1473.4891 0)" gradientUnits="userSpaceOnUse" x1="1227.2412" x2="1227.2412" xlink:href="#f" y1="203.7977" y2="76.8344"/><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="29.7192" x2="29.7192" xlink:href="#f" y1="203.7977" y2="76.8344"/><path d="m62.6 22.3c2.7 11.7-3 21.4-6 31.9-4.1 14.4-7 20.4-9.6 27.4-1.2 3.2-2.8 6.1-4 10.7-1.3 5.2-7.1 15.6-9.8 28.7-7.8 37.4-2.7 55.9 5.8 82.5 12.6 39.8 19.1 47.5 19.1 47.5h70.5s3.4-32.6 4.4-42c1-9.5 2.4-22.1-2-31.6-2.4-5.3-1.2-5-1.2-5s.4 1.5 3.4 1.9c1.7.3 7.1.2 8.5 0s1.8-.3 1.4-.2c0 0 1.1-.2 1 1.9 0 3.3-1 4.2-2.8 13.1-2.2 11 1.8 43.4 3.4 62h70.8s10.6-6.4 22.6-47.5c9.3-31.8 13.3-43.1 6-79.5-2.9-14.4-9-26.3-11.4-37.1-6.8-30.1-19.3-36.2-16-64.6h-154.1z" fill="url(#a)"/><path d="m244.3 124c-28.3 10.4-78.5 30.9-93.2 43.2 0 0-2.8 5.8-6.1 6.4-.3 0-2.1.4-3.3.6-1.4.2-6.8.3-8.5 0-1.1-.2-1.9-.5-2.4-.8-.4-.5-.7-.8-.9-1-1.4-1.4-2.5-1.6-3.4-3-2.1-.5-2.8-1.3-16.9-11.5s-55.1-28.2-76.4-36.8c3.1-13 8.5-23.5 9.8-28.7 1.2-4.7 2.7-7.5 3.9-10.7 13.3 12.5 63 33.3 90.8 33.3s87.3-21.4 94.4-31.4c.3 1.1.8 2.4 1.4 3.4 1.9 3.8.9 5.6 2.6 9.5 3.3 7.9 6.1 17.8 8.2 27.5z" fill="url(#b)"/><g fill="none"><path d="m62.6 22.3c2.7 11.7-3 21.4-6 31.9-4.1 14.4-7 20.4-9.6 27.4-1.2 3.2-2.3 6.1-4 10.7-1.9 5.1-7.1 15.6-9.8 28.7-7.8 37.4-1.2 57.1 5.8 82.5 11.1 40.7 19.1 47.5 19.1 47.5h70.5s3.4-32.6 4.4-42c1-9.5 2.4-22.1-2-31.6-2.4-5.3-1.2-5-1.2-5s.4 1.5 3.4 1.9c1.7.3 7.1.2 8.5 0s1.8-.3 1.4-.2c0 0 1.1-.2 1 1.9 0 3.3-1 4.2-2.8 13.1-2.2 11 1.8 43.4 3.4 62h70.8s9.9-6.8 22.6-47.5c9.9-31.6 13.3-43.1 6-79.5-2-10-4.8-19.4-8.2-27.4-1.5-3.6-1.7-5.6-2.8-9.5-.3-1.1-.8-2.3-1.1-3.4-6.6-27.3-18.4-34-15.2-61.3" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m190.3 22.3c0 4.7-1.6 8.7-3.2 12.7" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m96.1 29.9c.6 1.7 1.2 3.4 1.9 5.1" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m181.8 77.2s-.1 3.5-1 7.9" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m103.1 74.6s0 4.8 1.8 9.6" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m244.3 124c-28.3 10.4-78.5 30.9-93.2 43.2 0 0-2.8 5.8-6.1 6.4-.3 0-2.1.4-3.3.6-1.4.2-6.8.3-8.5 0-1.1-.2-1.9-.5-2.4-.8-.4-.5-.7-.8-.9-1-1.4-1.4-2.5-1.6-3.4-3-2.1-.5-2.8-1.3-16.9-11.5s-55.1-28.2-76.4-36.8c3.1-13 7.8-23.8 10-28.7s2.5-7.5 3.7-10.7c13.3 12.5 63 33.3 90.8 33.3s87.3-21.4 94.4-31.4c.3 1.1.8 2.6 1.2 3.7 1.3 4.1 1.3 5.7 2.7 9.3 3.4 8.1 6.2 17.6 8.3 27.4z" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m123.7 164.4c-.4-.9-.6-1.6-.6-1.6" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m126.4 169.3c-.7-.9-1.2-1.8-1.7-2.6" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m143.3 63.2c-.1 1.9-.3 3-.3 4.3" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m143.5 53.2v6" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m143.4 44.5v3.9" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m147.8 60.6s-5.4-3.3-8.7.5c1.6 3.2 6.3 1.8 6.3 1.8" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/></g><path d="m230.3 36.5h-183.2v-14.8h183.2z" fill="url(#d)"/><path d="m32.3 217h212.7v36.3h-212.7z" fill="url(#e)"/><path d="m175.7 104.3c-1 2.1-3.5 4.2-3.5 4.2" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m228.5 203.8h23.3s20.4-24.9 20.4-63.5-19.4-63.5-19.4-63.5h-32.6l2.2 6.8 2.3 11.1 3.6 6.8 3.3 10.2 1.7 7.8 3.2 17.1 1.7 17.8-1.2 19.6-2.7 10.7z" fill="url(#g)" opacity=".1"/><path d="m252.9 76.8s19.4 25.2 19.4 63.5-20.4 63.5-20.4 63.5" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/><path d="m47.7 203.8h-25.5s-20.4-24.9-20.4-63.5 19.4-63.5 19.4-63.5h36.5l-2.5 6.8-4.2 11.1-3.8 9.8-3.9 10.8-1 5.4-3.1 17.4-.4 16.4 1.2 18.6 3.5 12.8z" fill="url(#h)" opacity=".1"/><path d="m21.1 76.8s-19.4 25.2-19.4 63.5 20.4 63.5 20.4 63.5" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/></svg>';
|
|
17655
|
-
const wStomachFlatterSvg = '<svg enable-background="new 0 0 275 275" viewBox="0 0 275 275" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="152.2072" x2="152.2072" y1="250.6312" y2="22.3025"><stop offset="0" stop-color="#fff" stop-opacity=".3"/><stop offset=".117" stop-color="#f1f1f1" stop-opacity=".4643"/><stop offset=".2602" stop-color="#e9e9e9" stop-opacity=".6653"/><stop offset=".4986" stop-color="#e6e6e6"/><stop offset=".7383" stop-color="#e9e9e9" stop-opacity=".5219"/><stop offset=".8823" stop-color="#f1f1f1" stop-opacity=".2347"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="79.9863" x2="79.9863" y1="236.5501" y2="137.7941"><stop offset=".05" stop-color="#f09d2d" stop-opacity="0"/><stop offset=".5035" stop-color="#f09d2d"/><stop offset=".9791" stop-color="#f09d2d" stop-opacity="0"/></linearGradient><linearGradient id="c" gradientTransform="matrix(-1 0 0 1 -204.075 0)" gradientUnits="userSpaceOnUse" x1="-330.2407" x2="-330.2407" y1="139.7377" y2="79.8589"><stop offset="0" stop-color="#afafaf"/><stop offset="1" stop-color="#c1c1c1"/></linearGradient><linearGradient id="d"><stop offset=".1" stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="e" gradientTransform="matrix(-1 0 0 1 -204.075 0)" gradientUnits="userSpaceOnUse" x1="-349.2002" x2="-349.2002" xlink:href="#d" y1="253.4071" y2="217.1361"/><linearGradient id="f" gradientTransform="matrix(1 0 0 -1 1533.2572 -4531.4673)" gradientUnits="userSpaceOnUse" x1="-1366.8461" x2="-1366.8461" xlink:href="#d" y1="-4553.0601" y2="-4567.8462"/><path d="m208.7 54.8c-1.7-4.7-4.2-9-9.2-13.5-.1-.1-.1-.1-.2-.2-2.2-1.9-4.8-3.8-8-5.8-3.5-2.2-4.6-6.7-7.4-13h-44.4c2.9 5.3 5.4 11.5 5.2 14.1-.3 3.4-.7 14.2-2.8 15.9-2.4 2.1-4.5 4.6-6.2 6.9-.2.3-.4.5-.7.8l-14 14.1c-2.5 2.5-4.7 4.6-5.8 5.9-1.3.3-2.7 1-4.3 2.3-.8.7-1.9 1.7-3 2.9-4.9 5.2-11.7 14.7-12.7 24.3-.2 2.4-.3 4.6-.2 6.6.4 6.9 2.8 12 7.6 16.4 0 0-1.4 4-2.6 7.4-2.6 7.4-.5 21-1.8 32.6-1.1 10.2-1.6 14.6-1.7 24.2-.7 13.6-5.8 20.3-2.6 40 1 6.1 2 8.6 1.8 13.8h47.1l.5-1.6c-.1.5-.2 1.1-.3 1.6h30.1.1 19.9c0-6.5-3.7-11.9-6-19s-1.1-19-1.1-19c1.2-4.4 2.3-8.5 2.9-12 1.9-10.1 5.4-34.5 8.4-59.9.6-5 5.1-11.8 7.5-20.2.1-.3.2-.5.2-.8 2.4-8.3 4.8-17.1 6-24.5 2.2-15.2.1-33.5-2.3-40.3z" fill="url(#a)" opacity=".8"/><path d="m93.8 236.6h-33.2v-50.4l-1.1-48.4h41l-2 9-.2 11.8-.1 10.8-1.5 15.9-.7 14-3.2 24.7z" fill="url(#b)" opacity=".1"/><path d="m59.5 137.8 1.1 49.1v49.7" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/><path d="m105.2 135c8.6 6.2 37.1 2.3 52.6 4.7l-1.2-24.7c-5.8-1.7-7.8-7.6-14.7-16.3-8-10.1-16.5-15.5-20.4-17.4-3.6-1.7-6.5-2.7-10.9.9-4.3 3.8-14.6 15.5-15.8 27.4s1.9 19.2 10.4 25.4z" fill="url(#c)"/><path d="m204.7 119.6c-1.7.6-5.4-.2-5.4-.2l-1.6 17.1z" fill="#b1b1b1"/><g fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"><path d="m108.1 250.6s.7-5.3 1.4-8c.2-.8.8-1.6 1.5-2.4"/><path d="m155.4 92.3s-.6-.9-1.5-2"/><path d="m142.5 250.6s-40.7 0-47.1 0c.2-5.2-.8-7.7-1.8-13.8-3.3-19.7 1.8-26.4 2.6-40 .1-9.6.6-14 1.7-24.2 1.2-11.6-.8-25.2 1.8-32.6 1.2-3.5 2.6-7.4 2.6-7.4"/><path d="m113.5 177.9c.7.8 1.7 1.6 3.1 2.2"/><path d="m172.8 250.6h20c0-6.5-3.7-11.9-6-19s-1.1-19-1.1-19"/><path d="m152.6 82.8 2.4 6.5s3.7 23.4 2.8 86.6c-.2 14.1.1 21.7.1 21.7s-11.4 34.6-15.3 53h30.3s12.6-32.7 15.8-50.1c3.2-17.3 11.2-75.9 13-110.4 0-.5.1-1 .3-1.4.8-2.4 1.6-4.1 1.6-4.1"/><path d="m187.6 182c-.3 1-1.9 3.6-3.1 6.5"/><path d="m157.9 197.6c1.3-3.2 2.3-5.9 3.1-8.1 1-2.7 2.6-5.8 2.7-12.8"/><path d="m205.5 79.5c-.1.6-.7 2.1-.7 2.1"/><path d="m197 140.6c.6-5 5.1-11.8 7.5-20.3s5-17.7 6.3-25.3c2.5-15.1.4-33.4-2.1-40.3s-6.6-12.7-17.5-19.5c-3.5-2.2-4.6-6.7-7.4-13h-44.4c2.9 5.3 5.4 11.5 5.2 14.1-.3 3.4-.7 14.2-2.8 15.9"/><path d="m204.7 119.6c-1.7.6-5.4-.2-5.4-.2"/><path d="m157.8 139.7c-15.5-2.4-44 1.5-52.6-4.7s-11.6-13.6-10.4-25.4 11.4-23.6 15.8-27.3 7.3-2.6 10.9-.9c3.9 1.8 12.4 7.3 20.4 17.4 6.9 8.7 8.9 14.6 14.7 16.3"/><path d="m128.9 138.8c9.1 0 15.1-6.5 18.4-12s4.5-14.3 1.3-18.6"/><path d="m146.9 48.9c.4-.2.9-.3 1.4-.5"/><path d="m114.9 80c3.6-4 17.2-16.6 20.5-20.8 2.5-3.2 5.5-6.8 9.1-9"/><path d="m151.5 80.3c-.4-.9-.7-1.6-.7-1.6"/><path d="m199.4 41.3c-4.2-3.8-8.2-3.3-9.9-2.9"/><path d="m186.7 39.2c-.4.1-1.1.3-1.9.6"/></g><path d="m209.3 217.1h-128.3v36.3h128.3z" fill="url(#e)"/><path d="m117.3 21.6h98.2v14.8h-98.2z" fill="url(#f)"/></svg>';
|
|
17656
|
-
const wStomachAverageSvg = '<svg enable-background="new 0 0 275 275" viewBox="0 0 275 275" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientTransform="matrix(.9998 .01945948 -.01945948 .9998 -36.2786 13.302)" gradientUnits="userSpaceOnUse" x1="120.9862" x2="120.9862" y1="221.0674" y2="121.6227"><stop offset=".05" stop-color="#f09d2d" stop-opacity="0"/><stop offset=".5035" stop-color="#f09d2d"/><stop offset=".9791" stop-color="#f09d2d" stop-opacity="0"/></linearGradient><linearGradient id="b" gradientTransform="matrix(-1 0 0 1 -1269.0031 0)" gradientUnits="userSpaceOnUse" x1="-1423.0476" x2="-1423.0476" y1="250.6312" y2="22.3025"><stop offset="0" stop-color="#fff" stop-opacity=".3"/><stop offset=".117" stop-color="#f1f1f1" stop-opacity=".4643"/><stop offset=".2602" stop-color="#e9e9e9" stop-opacity=".6653"/><stop offset=".4986" stop-color="#e6e6e6"/><stop offset=".7383" stop-color="#e9e9e9" stop-opacity=".5219"/><stop offset=".8823" stop-color="#f1f1f1" stop-opacity=".2347"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="c" gradientTransform="matrix(-1 0 0 1 -1269.0031 0)" gradientUnits="userSpaceOnUse" x1="-1397.8925" x2="-1397.8925" y1="139.7377" y2="79.8589"><stop offset="0" stop-color="#afafaf"/><stop offset="1" stop-color="#c1c1c1"/></linearGradient><linearGradient id="d"><stop offset=".1" stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="e" gradientTransform="matrix(-1 0 0 1 -1269.0031 0)" gradientUnits="userSpaceOnUse" x1="-1413.0481" x2="-1413.0481" xlink:href="#d" y1="253.4071" y2="217.1361"/><linearGradient id="f" gradientTransform="matrix(1 0 0 -1 1533.2572 -4531.4673)" gradientUnits="userSpaceOnUse" x1="-1367.9227" x2="-1367.9227" xlink:href="#d" y1="-4553.0601" y2="-4567.8462"/><path d="m97.4 236.4h-30.4s-7-30.2-6.6-50.5 7.5-48.3 7.5-48.3h35.3l-3.6 12.1-2.9 20.7-1.3 10.8-.9 21.9.6 20.8z" fill="url(#a)" opacity=".1"/><path d="m67.9 137.7s-7.1 28.2-7.5 49 6.6 49.8 6.6 49.8" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/><path d="m93.6 196.9c.1-9.6 1.5-14 2.8-24.2.4-2.9.1-9.1.4-12 1.4-11.6 4.3-17.1 5.5-20.6 1.2-3.4 2.6-7.4 2.6-7.4-6.3-5.7-8.5-12.7-7.4-23.1 1.3-11.9 11.5-23.6 15.8-27.3 1.6-1.3 3-2.1 4.3-2.3 3.6-4 17.3-16.6 20.5-20.8 1.8-2.3 3.9-4.8 6.2-6.9 2.1-1.7 2.6-12.5 2.8-15.9.2-2.5-2.2-8.8-5.2-14.1h44.5c2.8 6.3 3.9 10.8 7.4 13 3.2 2 5.9 3.9 8 5.8.1.1.1.1.2.2 5 4.4 7.5 8.7 9.3 13.5 2.5 6.8 4.5 25.1 2.1 40.3-1.2 7.4-3.7 16.2-6 24.5-.1.3-.2.6-.2.8-2.4 8.4-6.9 15.2-7.5 20.3-3 25.4-6.5 49.8-8.4 59.9-.7 3.5-1.7 7.7-2.9 12 0 0-1.2 11.9 1.1 19s6 12.5 6 19c-4.4 0-18.5 0-19.9 0-.1 0-.1 0-.1 0h-7.2-22.9l-.2-.3.1.3s-40.7 0-47.1 0c.2-5.2.3-7.7-.7-13.8-1.7-10.4-4.6-26.4-3.9-39.9z" fill="url(#b)" opacity=".8"/><path d="m107.9 135c8.6 6.2 37.1 2.3 52.6 4.7l-1.2-24.7c-5.8-1.7-7.8-7.6-14.7-16.3-8-10.1-16.5-15.5-20.4-17.4-3.6-1.7-6.5-2.7-10.9.9-4.3 3.8-14.5 15.5-15.8 27.4-1.2 11.9 1.9 19.2 10.4 25.4z" fill="url(#c)"/><path d="m207.5 119.6c-1.7.6-5.4-.2-5.4-.2l-1.6 17.1z" fill="#b1b1b1"/><g fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"><path d="m110.8 250.6s.7-5.3 1.4-8c.2-.8.8-1.6 1.5-2.4"/><path d="m158.1 92.3s-.6-.9-1.5-2"/><path d="m145.2 250.6s-40.7 0-47.1 0c.2-5.2.3-7.7-.7-13.8-1.7-10.4-4.6-26.4-3.8-40 .1-9.6 1.5-14 2.8-24.2.4-2.9.1-9.1.4-12 1.4-11.6 4.3-17.1 5.5-20.6 1.2-3.4 2.6-7.4 2.6-7.4"/><path d="m112.9 177.9c.7.8 1.7 1.6 3.1 2.2"/><path d="m175.5 250.6h20c0-6.5-3.7-11.9-6-19s-1.1-19-1.1-19"/><path d="m155.3 82.8 2.4 6.5s3.7 23.4 2.8 86.6c-.2 14.1.1 21.7.1 21.7s-11.4 34.6-15.3 53h30.3s12.6-32.7 15.8-50.1c3.2-17.3 11.2-75.9 13-110.4 0-.5.1-1 .3-1.4.8-2.4 1.6-4.1 1.6-4.1"/><path d="m190.4 182c-.3 1-1.9 3.6-3.1 6.5"/><path d="m160.7 197.6c1.3-3.2 2.3-5.9 3.1-8.1 1-2.7 2.6-5.8 2.7-12.8"/><path d="m208.2 79.5c-.1.6-.7 2.1-.7 2.1"/><path d="m199.8 140.6c.6-5 5.1-11.8 7.5-20.3s5-17.7 6.3-25.3c2.5-15.1.4-33.4-2.1-40.3-2.5-6.8-6.6-12.7-17.5-19.5-3.5-2.2-4.6-6.7-7.4-13"/><path d="m207.5 119.6c-1.7.6-5.4-.2-5.4-.2"/><path d="m160.5 139.7c-15.5-2.4-44 1.5-52.6-4.7s-11.6-13.6-10.4-25.4 11.5-23.6 15.8-27.3 7.3-2.6 10.9-.9c3.9 1.8 12.4 7.3 20.4 17.4 6.9 8.7 8.9 14.6 14.7 16.3"/><path d="m131.6 138.8c9.1 0 15.1-6.5 18.4-12s4.5-14.3 1.3-18.6"/><path d="m149.6 48.9c.4-.2.9-.3 1.4-.5"/><path d="m117.6 80c3.6-4 17.3-16.6 20.5-20.8 2.5-3.2 5.5-6.8 9.1-9"/><path d="m144.4 52.3c2.1-1.7 2.6-12.5 2.8-15.9.2-2.5-2.2-8.8-5.2-14.1"/><path d="m154.3 80.3c-.4-.9-.7-1.6-.7-1.6"/><path d="m202.2 41.3c-4.2-3.8-8.2-3.3-9.9-2.9"/><path d="m189.5 39.2c-.4.1-1.1.3-1.9.6"/></g><path d="m208.2 217.1h-128.3v36.3h128.3z" fill="url(#e)"/><path d="m116.2 21.6h98.2v14.8h-98.2z" fill="url(#f)"/></svg>';
|
|
17657
|
-
const wStomachRounderSvg = '<svg enable-background="new 0 0 275 275" viewBox="0 0 275 275" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientTransform="matrix(.9849 .1732 -.1732 .9849 -335.7508 135.143)" gradientUnits="userSpaceOnUse" x1="414.8728" x2="414.8728" y1="31.2868" y2="-72.9269"><stop offset=".05" stop-color="#f09d2d" stop-opacity="0"/><stop offset=".5035" stop-color="#f09d2d"/><stop offset=".9791" stop-color="#f09d2d" stop-opacity="0"/></linearGradient><linearGradient id="b" gradientTransform="matrix(-1 0 0 1 -2335.0474 0)" gradientUnits="userSpaceOnUse" x1="-2464.1609" x2="-2464.1609" y1="139.7377" y2="79.8589"><stop offset="0" stop-color="#afafaf"/><stop offset="1" stop-color="#c1c1c1"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="151.2176" x2="151.2176" y1="250.6312" y2="22.3025"><stop offset="0" stop-color="#fff" stop-opacity=".3"/><stop offset=".117" stop-color="#f1f1f1" stop-opacity=".4643"/><stop offset=".2602" stop-color="#e9e9e9" stop-opacity=".6653"/><stop offset=".4986" stop-color="#e6e6e6"/><stop offset=".7383" stop-color="#e9e9e9" stop-opacity=".5219"/><stop offset=".8823" stop-color="#f1f1f1" stop-opacity=".2347"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="d"><stop offset=".1" stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="e" gradientTransform="matrix(-1 0 0 1 -2335.0474 0)" gradientUnits="userSpaceOnUse" x1="-2479.3755" x2="-2479.3755" xlink:href="#d" y1="253.4071" y2="217.1361"/><linearGradient id="f" gradientTransform="matrix(1 0 0 -1 1533.2572 -4531.4673)" gradientUnits="userSpaceOnUse" x1="-1367.6398" x2="-1367.6398" xlink:href="#d" y1="-4553.0601" y2="-4567.8462"/><path d="m57.8 236.1c-16.4-34.6-3.3-80 11.9-98.2h31.6l-4.1 6.6-3.2 9.9-1.4 7.7-.4 5-.9 23.6s-.1 3.5-1.7 14.2c-1.7 12 .7 18 .7 18l1.7 9.3 1.3 4.1z" fill="url(#a)" opacity=".1"/><path d="m69.7 137.9c-15.2 18.1-28.3 63.6-11.9 98.2" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/><path d="m108.2 135c8.6 6.2 37.1 2.3 52.6 4.7l-1.2-24.7c-5.8-1.7-7.8-7.6-14.7-16.3-8-10.1-16.5-15.5-20.4-17.4-3.6-1.7-6.5-2.7-10.9.9-4.4 3.8-14.6 15.5-15.8 27.4-1.3 11.9 1.8 19.2 10.4 25.4z" fill="url(#b)"/><path d="m207.7 119.6c-1.7.6-5.4-.2-5.4-.2l-1.6 17.1z" fill="#b1b1b1"/><g fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"><path d="m110 250.6s.7-5.3 1.4-8c.2-.8.8-1.6 1.5-2.4"/><path d="m158.3 92.3s-.6-.9-1.5-2"/><path d="m108.2 177.9c.7.8 1.7 1.6 3.1 2.2"/><path d="m175.7 250.6h20c0-6.5-3.7-11.9-6-19s-1.1-19-1.1-19"/><path d="m155.5 82.8 2.4 6.5s3.7 23.4 2.8 86.6c-.2 14.1.1 21.7.1 21.7s-11.4 34.6-15.3 53h30.3s12.6-32.7 15.8-50.1c3.2-17.3 11.2-75.9 13-110.4 0-.5.1-1 .3-1.4.8-2.4 1.6-4.1 1.6-4.1"/><path d="m190.6 182c-.3 1-1.9 3.6-3.1 6.5"/><path d="m160.9 197.6c1.3-3.2 2.3-5.9 3.1-8.1 1-2.7 2.6-5.8 2.7-12.8"/><path d="m208.4 79.5c-.1.6-.7 2.1-.7 2.1"/><path d="m200 140.6c.6-5 5.1-11.8 7.5-20.3s5-17.7 6.3-25.3c2.5-15.1.4-33.4-2.1-40.3-2.5-6.8-6.6-12.7-17.5-19.5-3.5-2.2-4.6-6.7-7.4-13"/><path d="m207.7 119.6c-1.7.6-5.4-.2-5.4-.2"/><path d="m160.7 139.7c-15.5-2.4-44 1.5-52.6-4.7s-11.6-13.6-10.4-25.4 11.4-23.6 15.8-27.3 7.3-2.6 10.9-.9c3.9 1.8 12.4 7.3 20.4 17.4 6.9 8.7 8.9 14.6 14.7 16.3"/><path d="m131.8 138.8c9.1 0 15.1-6.5 18.4-12s4.5-14.3 1.3-18.6"/><path d="m149.8 48.9c.4-.2.9-.3 1.4-.5"/><path d="m117.9 80c3.6-4 17.3-16.6 20.5-20.8 2.5-3.2 5.5-6.8 9.1-9"/><path d="m144.6 52.3c2.1-1.7 2.6-12.5 2.8-15.9.2-2.5-2.2-8.8-5.2-14.1"/><path d="m154.5 80.3c-.4-.9-.7-1.6-.7-1.6"/><path d="m202.4 41.3c-4.2-3.8-8.2-3.3-9.9-2.9"/><path d="m189.7 39.2c-.4.1-1.1.3-1.9.6"/><path d="m105.2 132.6c-7.7 9-11.4 18.1-12.2 21.8-1 4.5-1.6 9.4-1.8 13.8l-2.1 26c0 .6-.1 1.3-.2 1.9l-.5 3.6c-1.4 10.1-1.1 20.3 1 30.2.7 3.4 1.8 6.6 3.2 9.8l4.9 10.9h48.1"/></g><path d="m211.6 54.8c-1.7-4.7-4.2-9-9.3-13.5-.1-.1-.1-.1-.2-.2-2.2-1.9-4.8-3.8-8-5.8-3.5-2.2-4.6-6.7-7.4-13h-44.5s4.3 6.7 5.2 14.1-2.8 15.9-2.8 15.9c-2.4 2.1-4.5 4.6-6.2 6.9-.2.3-.4.5-.7.8l7.2-7.3-8.2 8.4c.3-.4.7-.7 1-1.1l-14 14.1c2.1-2 4.4-4.3 6.6-6.5l-11.7 12.2c-.2 0-.5.1-.7.1l5.8-5.9c-2.5 2.5-4.7 4.6-5.8 5.9-1.3.3-2.7 1-4.3 2.3-.8.7-1.8 1.7-3 2.9-4.9 5.2-11.8 14.8-12.8 24.4-.2 2.3-.3 4.5-.2 6.5.3 6.9 2.8 12.1 7.6 16.6-7.7 9-11.4 18.1-12.2 21.8-1 4.5-1.6 9.4-1.8 13.8l-2.1 26c0 .6-.1 1.3-.2 1.9l-.5 3.6c-1.4 10.1-1.1 20.3 1 30.2.7 3.4 1.8 6.6 3.2 9.8l4.9 10.9h48.1 30.1.1 19.9c0-6.5-3.7-11.9-6-19s-1.1-19-1.1-19c1.2-4.4 2.3-8.5 2.9-12 1.9-10.1 5.4-34.5 8.4-59.9.6-5 5.1-11.8 7.5-20.2.1-.3.2-.5.2-.8 2.4-8.3 4.8-17.1 6-24.5 2.6-15.3.5-33.6-2-40.4z" fill="url(#c)" opacity=".8"/><path d="m108.2 135c8.6 6.2 37.1 2.3 52.6 4.7l-1.2-24.7c-5.8-1.7-7.8-7.6-14.7-16.3-8-10.1-16.5-15.5-20.4-17.4-3.6-1.7-6.5-2.7-10.9.9-4.4 3.8-14.6 15.5-15.8 27.4-1.3 11.9 1.8 19.2 10.4 25.4z" fill="url(#b)"/><path d="m207.7 119.6c-1.7.6-5.4-.2-5.4-.2l-1.6 17.1z" fill="#b1b1b1"/><path d="m110 250.6s.7-5.3 1.4-8c.2-.8.8-1.6 1.5-2.4" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m158.3 92.3s-.6-.9-1.5-2" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m108.2 177.9c.7.8 1.7 1.6 3.1 2.2" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m175.7 250.6h20c0-6.5-3.7-11.9-6-19s-1.1-19-1.1-19" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m155.5 82.8 2.4 6.5s3.7 23.4 2.8 86.6c-.2 14.1.1 21.7.1 21.7s-11.4 34.6-15.3 53h30.3s12.6-32.7 15.8-50.1c3.2-17.3 11.2-75.9 13-110.4 0-.5.1-1 .3-1.4.8-2.4 1.6-4.1 1.6-4.1" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m190.6 182c-.3 1-1.9 3.6-3.1 6.5" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m160.9 197.6c1.3-3.2 2.3-5.9 3.1-8.1 1-2.7 2.6-5.8 2.7-12.8" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m208.4 79.5c-.1.6-.7 2.1-.7 2.1" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m200 140.6c.6-5 5.1-11.8 7.5-20.3s5-17.7 6.3-25.3c2.5-15.1.4-33.4-2.1-40.3-2.5-6.8-6.6-12.7-17.5-19.5-3.5-2.2-4.6-6.7-7.4-13h-44.5c2.9 5.3 5.4 11.5 5.2 14.1-.3 3.4-.7 14.2-2.8 15.9" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m207.7 119.6c-1.7.6-5.4-.2-5.4-.2" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m160.7 139.7c-15.5-2.4-44 1.5-52.6-4.7s-11.6-13.6-10.4-25.4 11.4-23.6 15.8-27.3 7.3-2.6 10.9-.9c3.9 1.8 12.4 7.3 20.4 17.4 6.9 8.7 8.9 14.6 14.7 16.3" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m131.8 138.8c9.1 0 15.1-6.5 18.4-12s4.5-14.3 1.3-18.6" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m149.8 48.9c.4-.2.9-.3 1.4-.5" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m117.9 80c3.6-4 17.3-16.6 20.5-20.8 2.5-3.2 5.5-6.8 9.1-9" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m154.5 80.3c-.4-.9-.7-1.6-.7-1.6" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m202.4 41.3c-4.2-3.8-8.2-3.3-9.9-2.9" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m189.7 39.2c-.4.1-1.1.3-1.9.6" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m105.2 132.6c-7.7 9-11.4 18.1-12.2 21.8-1 4.5-1.6 9.4-1.8 13.8l-2.1 26c0 .6-.1 1.3-.2 1.9l-.5 3.6c-1.4 10.1-1.1 20.3 1 30.2.7 3.4 1.8 6.6 3.2 9.8l4.9 10.9h48.1" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/><path d="m208.5 217.1h-128.3v36.3h128.3z" fill="url(#e)"/><path d="m116.5 21.6h98.2v14.8h-98.2z" fill="url(#f)"/></svg>';
|
|
17658
|
-
const wSeatFlatterSvg = '<svg enable-background="new 0 0 275 275" viewBox="0 0 275 275" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="203.306" x2="203.306" y1="170.7995" y2="70.612"><stop offset=".05" stop-color="#f09d2d" stop-opacity="0"/><stop offset=".5035" stop-color="#f09d2d"/><stop offset=".9791" stop-color="#f09d2d" stop-opacity="0"/></linearGradient><linearGradient id="b"><stop offset="0" stop-color="#fff" stop-opacity=".3"/><stop offset=".117" stop-color="#f1f1f1" stop-opacity=".4643"/><stop offset=".2602" stop-color="#e9e9e9" stop-opacity=".6653"/><stop offset=".4986" stop-color="#e6e6e6"/><stop offset=".7383" stop-color="#e9e9e9" stop-opacity=".5219"/><stop offset=".8823" stop-color="#f1f1f1" stop-opacity=".2347"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="83.3078" x2="83.3078" xlink:href="#b" y1="67.0483" y2="63.9991"/><linearGradient id="d"><stop offset="0" stop-color="#afafaf"/><stop offset="1" stop-color="#c1c1c1"/></linearGradient><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="135.7354" x2="135.7354" xlink:href="#d" y1="157.4648" y2="77.2656"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="133.0482" x2="133.0482" xlink:href="#b" y1="262.6183" y2="11.1049"/><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="74.9496" x2="196.4284" xlink:href="#d" y1="117.1984" y2="117.1984"/><linearGradient id="h"><stop offset=".1" stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="i" gradientTransform="matrix(-1 0 0 -1 -4955.1084 -4531.4673)" gradientUnits="userSpaceOnUse" x1="-5086.6084" x2="-5086.6084" xlink:href="#h" y1="-4541.8516" y2="-4556.6372"/><linearGradient id="j" gradientUnits="userSpaceOnUse" x1="131.5" x2="131.5" xlink:href="#h" y1="264.616" y2="228.346"/><path d="m179.3 70.6 2.9 6.4s3.3 7 7.4 15.7c4.6 9.8 6.3 19 6.3 19s1.6 16.7-1.3 25.5c-4.6 14-7.5 18.2-7.5 18.2l-7 9.6-4.8 5.8h54.9v-51.1l1.1-49.1z" fill="url(#a)" opacity=".1"/><path d="m231.3 70.6-1.1 49.8v50.4" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/><g opacity=".8"><path d="m81.3 70.2-.4.9" fill="none"/><path d="m83.8 64c-.2 1-.6 2.1-1 3z" fill="url(#c)"/></g><path d="m196.1 130c-1.1 11.6-6.9 21.5-9.9 27.4 7-20.1-13.6-36.2-39.2-41.4-27.6-5.6-60.2 3.1-62.8 10.3-.1-.3-5.1-14.3-9.3-27.7 21.4-2.9 40.4-7.4 66.7-11.4s40.5-10 40.5-10c8.1 18.5 16.4 26.5 14 52.8z" fill="url(#e)"/><path d="m82 262.6c-5-28.3-8-56.4-5.8-85.1.9-12.4 2.9-24.3 6.5-36.2 1.2-4.1 1.4-10.7 1.4-14.9 0-.1 0-.1-.1-.2v-.1s0-.1-.1-.2-.1-.3-.2-.4c0-.1-.1-.2-.1-.3s-.1-.2-.1-.3c-.1-.3-.2-.7-.4-1.1-4.7-12.4-9.5-25.5-12-38.6-2.3-12.1 0-22.5.4-34.5.1-4.2-.8-13.6-1.5-23.5-.4-5-.7-11.4-.9-16.1h108.8c-12.2 16.8-7 40.8 1.1 59.8 8.5 20 19.5 34.8 17.1 57.4-.1.5-.1.9-.2 1.4-1.9 14.3-10.9 30.5-17 36.3-6.2 5.8-6.6 14-8.8 20.4-2.4 6.9-5.7 22-7.1 29.2-3.2 15.6-5.5 31.3-6.7 47.1h-74.3z" fill="url(#f)"/><path d="m182.2 77.3s-14.2 6.1-40.5 10c-26.3 4-45.3 8.4-66.7 11.4 4.2 13.4 9.2 27.4 9.3 27.7 2.5-7.2 35.1-15.6 62.8-10.3 26.1 5 45.9 20.9 38.9 41 10.9-17.7 10.5-31.3 10.5-38.5s-4.6-24.1-14.3-41.3z" fill="url(#g)"/><g fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"><path d="m82 262.6c-5-28.3-8-56.4-5.8-85.1.9-12.4 2.9-24.3 6.5-36.2 1.2-4.1 1.4-10.7 1.4-14.9 0-.1 0-.1-.1-.2v-.1s0-.1-.1-.2-.1-.3-.2-.4c0-.1-.1-.2-.1-.3s-.1-.2-.1-.3c-.1-.3-.2-.7-.4-1.1-4.7-12.4-9.5-25.5-12-38.6-2.3-12.1 0-22.5.4-34.5.1-4.2-.8-13.6-1.5-23.5-.4-5-.7-11.4-.9-16.1"/><path d="m178.2 11.1c-12.2 16.8-7 40.8 1.1 59.8 8.5 20 19.5 34.8 17.1 57.4-.1.5-.1.9-.2 1.4-1.9 14.3-10.9 30.5-17 36.3-6.2 5.8-6.6 14-8.8 20.4-2.4 6.9-5.7 22-7.1 29.2-3.2 15.6-5.5 31.3-6.7 47.1"/><path d="m81.3 70.2-.4.9"/><path d="m83.8 64c-.2 1-.6 2.1-1 3"/><path d="m81.3 70.2-.4.9"/><path d="m83.8 64c-.2 1-.6 2.1-1 3"/><path d="m74.9 98.7c21.4-2.9 40.4-7.4 66.7-11.4s40.5-10 40.5-10"/><path d="m185.9 157.1c7-20.1-12.8-36-38.9-41-27.7-5.3-60.2 3.1-62.8 10.3"/><path d="m89.3 116.1c.5-1 1.1-2 1.1-2"/><path d="m84.2 126.4c.7-1.8 2.1-4.5 3.4-7.1"/></g><path d="m217.9 25.2h-172.8v-14.8h172.8z" fill="url(#i)"/><path d="m31.2 228.3h200.6v36.3h-200.6z" fill="url(#j)"/><path d="m95.1 95.4s2.1-2.9 2.7-4.6" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/></svg>';
|
|
17659
|
-
const wSeatAverageSvg = '<svg enable-background="new 0 0 275 275" viewBox="0 0 275 275" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientTransform="matrix(-1 0 0 1 -5785.313 0)" gradientUnits="userSpaceOnUse" x1="-5989.231" x2="-5989.231" y1="170.0837" y2="71.3277"><stop offset=".05" stop-color="#f09d2d" stop-opacity="0"/><stop offset=".5035" stop-color="#f09d2d"/><stop offset=".9791" stop-color="#f09d2d" stop-opacity="0"/></linearGradient><linearGradient id="b"><stop offset="0" stop-color="#fff" stop-opacity=".3"/><stop offset=".117" stop-color="#f1f1f1" stop-opacity=".4643"/><stop offset=".2602" stop-color="#e9e9e9" stop-opacity=".6653"/><stop offset=".4986" stop-color="#e6e6e6"/><stop offset=".7383" stop-color="#e9e9e9" stop-opacity=".5219"/><stop offset=".8823" stop-color="#f1f1f1" stop-opacity=".2347"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="82.2244" x2="82.2244" xlink:href="#b" y1="67.0483" y2="63.9991"/><linearGradient id="d"><stop offset="0" stop-color="#afafaf"/><stop offset="1" stop-color="#c1c1c1"/></linearGradient><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="136.1937" x2="136.1937" xlink:href="#d" y1="157.4648" y2="77.2656"/><linearGradient id="f" gradientUnits="userSpaceOnUse" x1="133.5176" x2="133.5176" xlink:href="#b" y1="262.6183" y2="11.1049"/><linearGradient id="g" gradientUnits="userSpaceOnUse" x1="73.8551" x2="198.5465" xlink:href="#d" y1="117.1984" y2="117.1984"/><linearGradient id="h"><stop offset=".1" stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="i" gradientTransform="matrix(-1 0 0 -1 -6020.0366 -4531.4673)" gradientUnits="userSpaceOnUse" x1="-6150.5176" x2="-6150.5176" xlink:href="#h" y1="-4541.8516" y2="-4556.6372"/><linearGradient id="j" gradientUnits="userSpaceOnUse" x1="130.481" x2="130.481" xlink:href="#h" y1="264.616" y2="228.346"/><path d="m174.9 170.1h51s7.1-30.1 7.1-50.3-6.1-48.4-6.1-48.4h-47.9l7.9 17.1 10.2 21 1.7 15.6-2.1 11.6-8.7 18.3z" fill="url(#a)" opacity=".1"/><path d="m226.9 71.3s6.1 28.3 6.1 49.1-7.1 49.7-7.1 49.7" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/><g opacity=".8"><path d="m80.3 70.2-.5.9" fill="none"/><path d="m82.7 64c-.2 1-.6 2.1-1 3z" fill="url(#c)"/></g><path d="m198.2 130c-1.1 11.6-9.9 21.5-13 27.4 7-20.1-13.6-36.2-39.2-41.4-27.7-5.6-60.3 3.1-62.9 10.3-.1-.3-5.1-14.3-9.3-27.7 21.4-2.9 40.4-7.4 66.8-11.4s40.6-10 40.6-10c8.1 18.5 19.4 26.5 17 52.8z" fill="url(#e)"/><path d="m81 262.6c-5-28.3-8-56.4-5.8-85.1.9-12.4 2.9-24.3 6.6-36.2 1.2-4.1 1.4-10.7 1.4-14.9 0-.1 0-.1-.1-.2v-.1s0-.1-.1-.2-.1-.3-.2-.4c0-.1-.1-.2-.1-.3s-.1-.2-.1-.3c-.1-.3-.2-.7-.4-1.1-4.7-12.4-9.5-25.5-12-38.6-2.3-12.1 0-22.5.4-34.5.1-4.2-.8-13.6-1.5-23.5-.4-5-.7-11.4-.9-16.1h109c-12.2 16.8-7 40.8 1.1 59.8 8.5 20 22.6 34.8 20.1 57.4-.1.5-.1.9-.2 1.4-1.9 14.3-13.9 30.5-20.1 36.3s-6.6 14-8.8 20.4c-2.4 6.9-5.7 22-7.2 29.2-3.2 15.6-5.5 31.3-6.7 47.1h-74.4z" fill="url(#f)"/><path d="m181.2 77.3s-14.2 6.1-40.6 10c-26.4 4-45.4 8.4-66.8 11.4 4.2 13.4 9.2 27.4 9.3 27.7 2.5-7.2 35.1-15.6 62.9-10.3 26.1 5 46.5 20.9 39.4 41 14-16 13.1-31.3 13.1-38.5s-7.5-24.1-17.3-41.3z" fill="url(#g)"/><g fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"><path d="m81 262.6c-5-28.3-8-56.4-5.8-85.1.9-12.4 2.9-24.3 6.6-36.2 1.2-4.1 1.4-10.7 1.4-14.9 0-.1 0-.1-.1-.2v-.1s0-.1-.1-.2-.1-.3-.2-.4c0-.1-.1-.2-.1-.3s-.1-.2-.1-.3c-.1-.3-.2-.7-.4-1.1-4.7-12.4-9.5-25.5-12-38.6-2.3-12.1 0-22.5.4-34.5.1-4.2-.8-13.6-1.5-23.5-.4-5-.7-11.4-.9-16.1"/><path d="m177.3 11.1c-12.2 16.8-7 40.8 1.1 59.8 8.5 20 22.6 34.8 20.1 57.4-.1.5-.1.9-.2 1.4-1.9 14.3-13.9 30.5-20.1 36.3s-6.6 14-8.8 20.4c-2.4 6.9-5.7 22-7.2 29.2-3.2 15.6-5.5 31.3-6.7 47.1"/><path d="m80.3 70.2-.5.9"/><path d="m82.7 64c-.2 1-.6 2.1-1 3"/><path d="m80.3 70.2-.5.9"/><path d="m82.7 64c-.2 1-.6 2.1-1 3"/><path d="m73.9 98.7c21.4-2.9 40.4-7.4 66.8-11.4s40.6-10 40.6-10"/><path d="m185.5 157.1c7-20.1-13.3-36-39.4-41-27.7-5.3-60.3 3.1-62.9 10.3"/><path d="m88.3 116.1c.5-1 1.1-2 1.1-2"/><path d="m83.2 126.4c.7-1.8 2.1-4.5 3.4-7.1"/></g><path d="m217 25.2h-173v-14.8h173z" fill="url(#i)"/><path d="m30 228.3h200.9v36.3h-200.9z" fill="url(#j)"/><path d="m94.1 95.4s2.1-2.9 2.7-4.6" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/></svg>';
|
|
17660
|
-
const wSeatRounderSvg = '<svg enable-background="new 0 0 275 275" viewBox="0 0 275 275" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientTransform="matrix(-1 0 0 1 -6911.5562 0)" gradientUnits="userSpaceOnUse" x1="-7115.0186" x2="-7115.0186" y1="172.2957" y2="71.3277"><stop offset=".05" stop-color="#f09d2d" stop-opacity="0"/><stop offset=".5035" stop-color="#f09d2d"/><stop offset=".9791" stop-color="#f09d2d" stop-opacity="0"/></linearGradient><linearGradient id="b"><stop offset="0" stop-color="#fff" stop-opacity=".3"/><stop offset=".117" stop-color="#f1f1f1" stop-opacity=".4643"/><stop offset=".2602" stop-color="#e9e9e9" stop-opacity=".6653"/><stop offset=".4986" stop-color="#e6e6e6"/><stop offset=".7383" stop-color="#e9e9e9" stop-opacity=".5219"/><stop offset=".8823" stop-color="#f1f1f1" stop-opacity=".2347"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="79.8824" x2="79.8824" xlink:href="#b" y1="67.0483" y2="63.9991"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="133.8764" x2="133.8764" xlink:href="#b" y1="262.6183" y2="11.1049"/><linearGradient id="e" gradientUnits="userSpaceOnUse" x1="71.4861" x2="201.6635" y1="118.5957" y2="118.5957"><stop offset="0" stop-color="#afafaf"/><stop offset="1" stop-color="#c1c1c1"/></linearGradient><linearGradient id="f"><stop offset=".1" stop-color="#fff"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><linearGradient id="g" gradientTransform="matrix(-1 0 0 -1 -7131.8481 -4531.4673)" gradientUnits="userSpaceOnUse" x1="-7260.1431" x2="-7260.1431" xlink:href="#f" y1="-4541.8516" y2="-4556.6372"/><linearGradient id="h" gradientUnits="userSpaceOnUse" x1="128.2947" x2="128.2947" xlink:href="#f" y1="264.616" y2="228.346"/><path d="m219.8 172.3c22.5-32 17.4-80 5.4-101h-46.5l10.7 15.3 9.8 18.5 3.2 16.7-1.9 12.9-4.1 11.9-6.3 8.7-6 5.1-8.3 5.6-4.3 6.4h48.3z" fill="url(#a)" opacity=".1"/><path d="m225.2 71.3c12 21 17.1 69-5.4 101" style="fill:none;stroke:#f09d2d;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6 10"/><g opacity=".8"><path d="m77.9 70.2-.5.9" fill="none"/><path d="m80.4 64c-.2 1-.6 2.1-1 3z" fill="url(#c)"/></g><path d="m78.6 262.6c-5-28.3-8-56.4-5.8-85.1 1-12.4 2.9-24.3 6.6-36.2 1.2-4.1 1.4-10.7 1.4-14.9 0-.1 0-.1-.1-.2v-.1s0-.1-.1-.2-.1-.3-.2-.4c0-.1-.1-.2-.1-.3s-.1-.2-.1-.3c-.1-.3-.2-.7-.4-1.1-4.8-12.4-9.5-25.5-12-38.6-2.3-12.1 0-22.5.4-34.5.1-4.2-.8-13.6-1.5-23.5-.4-5-.7-11.4-.9-16.1h109.3c-12.3 16.8-5 40.8 3.1 59.8 11.1 18.1 25.7 33.8 23.2 56.4-.1.5-.1.9-.2 1.4-2 24.2-19 31.5-25.2 37.3s-6.6 14-8.8 20.4c-2.4 6.9-5.7 22-7.2 29.2-3.2 15.6-5.5 31.3-6.7 47.1h-74.7z" fill="url(#d)"/><path d="m182.1 76.8s-17.2 6.6-43.6 10.6-45.5 8.4-67 11.4c4.2 13.4 9.2 27.4 9.3 27.7 2.5-7.2 35.3-15.6 63.1-10.3 26.2 5 47.1 24.2 40.1 44.3 19.9-14.5 17.5-35.6 17.7-42.8.2-14.2-9.9-25.5-19.6-40.9z" fill="url(#e)"/><g fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"><path d="m80.8 126.4c2.6-7.2 35.3-15.6 63.1-10.3 26.1 5 46.9 24.2 40.2 44.3"/><path d="m182.1 76.8s-17.2 6.6-43.6 10.6-45.5 8.4-67 11.4"/><path d="m78.6 262.6c-5-28.3-8-56.4-5.8-85.1 1-12.4 2.9-24.3 6.6-36.2 1.2-4.1 1.4-10.7 1.4-14.9 0-.1 0-.1-.1-.2v-.1s0-.1-.1-.2-.1-.3-.2-.4c0-.1-.1-.2-.1-.3s-.1-.2-.1-.3c-.1-.3-.2-.7-.4-1.1-4.8-12.4-9.5-25.5-12-38.6-2.3-12.1 0-22.5.4-34.5.1-4.2-.8-13.6-1.5-23.5-.4-5-.7-11.4-.9-16.1"/><path d="m175.2 11.1c-12.3 16.8-5 40.8 3.1 59.8 12 18.6 25.7 33.8 23.2 56.4-.1.5-.1.9-.2 1.4-1.9 14.3-4.9 24.3-25.2 37.3-6.2 5.8-6.6 14-8.8 20.4-2.4 6.9-5.7 22-7.2 29.2-3.2 15.6-5.5 31.3-6.7 47.1"/><path d="m77.9 70.2-.5.9"/><path d="m80.4 64c-.2 1-.6 2.1-1 3"/><path d="m77.9 70.2-.5.9"/><path d="m80.4 64c-.2 1-.6 2.1-1 3"/><path d="m85.9 116.1c.5-1 1.1-2 1.1-2"/><path d="m80.8 126.4c.7-1.8 2.1-4.5 3.5-7.1"/></g><path d="m215 25.2h-173.5v-14.8h173.5z" fill="url(#g)"/><path d="m27.5 228.3h201.5v36.3h-201.5z" fill="url(#h)"/><path d="m91.8 95.4s2.1-2.9 2.7-4.6" fill="none" stroke="#999b9e" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10"/></svg>';
|
|
17661
|
-
function svgToDataUrl(svg) {
|
|
17662
|
-
return "data:image/svg+xml;charset=utf-8," + encodeURIComponent(svg);
|
|
17663
|
-
}
|
|
17664
|
-
const M_CHEST_NARROW = svgToDataUrl(chestNarrowSvg);
|
|
17665
|
-
const M_CHEST_AVERAGE = svgToDataUrl(chestAverageSvg);
|
|
17666
|
-
const M_CHEST_BROAD = svgToDataUrl(chestBroadSvg);
|
|
17667
|
-
const M_STOMACH_FLAT = svgToDataUrl(stomachFlatterSvg);
|
|
17668
|
-
const M_STOMACH_AVERAGE = svgToDataUrl(stomachAverageSvg);
|
|
17669
|
-
const M_STOMACH_ROUND = svgToDataUrl(stomachRounderSvg);
|
|
17670
|
-
const M_SEAT_FLAT = svgToDataUrl(seatFlatterSvg);
|
|
17671
|
-
const M_SEAT_AVERAGE = svgToDataUrl(seatAverageSvg);
|
|
17672
|
-
const M_SEAT_FULL = svgToDataUrl(seatRounderSvg);
|
|
17673
|
-
const W_STOMACH_FLAT = svgToDataUrl(wStomachFlatterSvg);
|
|
17674
|
-
const W_STOMACH_AVERAGE = svgToDataUrl(wStomachAverageSvg);
|
|
17675
|
-
const W_STOMACH_ROUND = svgToDataUrl(wStomachRounderSvg);
|
|
17676
|
-
const W_SEAT_FLAT = svgToDataUrl(wSeatFlatterSvg);
|
|
17677
|
-
const W_SEAT_AVERAGE = svgToDataUrl(wSeatAverageSvg);
|
|
17678
|
-
const W_SEAT_FULL = svgToDataUrl(wSeatRounderSvg);
|
|
17679
|
-
const W_HIPS_NARROW = svgToDataUrl(wHipsNarrowSvg);
|
|
17680
|
-
const W_HIPS_AVERAGE = svgToDataUrl(wHipsAverageSvg);
|
|
17681
|
-
const W_HIPS_FULL = svgToDataUrl(wHipsBroadSvg);
|
|
17644
|
+
const DEFAULT_ASSETS_BASE = "https://myaifitting.com/assets/body-shapes";
|
|
17645
|
+
function getBase() {
|
|
17646
|
+
if (typeof window !== "undefined") {
|
|
17647
|
+
const override = window.PRIMESTYLE_ASSETS_BASE;
|
|
17648
|
+
if (override) return override.replace(/\/+$/, "");
|
|
17649
|
+
}
|
|
17650
|
+
return DEFAULT_ASSETS_BASE;
|
|
17651
|
+
}
|
|
17652
|
+
const u = (name) => `${getBase()}/${name}`;
|
|
17682
17653
|
const BODY_IMAGES = {
|
|
17683
17654
|
female: {
|
|
17684
17655
|
stomach: {
|
|
17685
|
-
flat:
|
|
17686
|
-
average:
|
|
17687
|
-
round:
|
|
17656
|
+
flat: u("w-stomach-flat.png"),
|
|
17657
|
+
average: u("w-stomach-average.png"),
|
|
17658
|
+
round: u("w-stomach-round.png")
|
|
17688
17659
|
},
|
|
17689
17660
|
seat: {
|
|
17690
|
-
narrow:
|
|
17691
|
-
average:
|
|
17692
|
-
full:
|
|
17661
|
+
narrow: u("w-seat-flat.png"),
|
|
17662
|
+
average: u("w-seat-average.png"),
|
|
17663
|
+
full: u("w-seat-round.png")
|
|
17693
17664
|
},
|
|
17694
17665
|
hips: {
|
|
17695
|
-
narrow:
|
|
17696
|
-
average:
|
|
17697
|
-
full:
|
|
17666
|
+
narrow: u("w-hips-narrow.png"),
|
|
17667
|
+
average: u("w-hips-average.png"),
|
|
17668
|
+
full: u("w-hips-full.png")
|
|
17698
17669
|
}
|
|
17699
17670
|
},
|
|
17700
17671
|
male: {
|
|
17701
17672
|
chest: {
|
|
17702
|
-
narrow:
|
|
17703
|
-
average:
|
|
17704
|
-
broad:
|
|
17673
|
+
narrow: u("m-chest-narrow.png"),
|
|
17674
|
+
average: u("m-chest-average.png"),
|
|
17675
|
+
broad: u("m-chest-broad.png")
|
|
17705
17676
|
},
|
|
17706
17677
|
stomach: {
|
|
17707
|
-
flat:
|
|
17708
|
-
average:
|
|
17709
|
-
round:
|
|
17678
|
+
flat: u("m-stomach-flat.png"),
|
|
17679
|
+
average: u("m-stomach-average.png"),
|
|
17680
|
+
round: u("m-stomach-round.png")
|
|
17710
17681
|
},
|
|
17711
17682
|
seat: {
|
|
17712
|
-
narrow:
|
|
17713
|
-
average:
|
|
17714
|
-
full:
|
|
17683
|
+
narrow: u("m-seat-flat.png"),
|
|
17684
|
+
average: u("m-seat-average.png"),
|
|
17685
|
+
full: u("m-seat-full.png")
|
|
17715
17686
|
}
|
|
17716
17687
|
}
|
|
17717
17688
|
};
|
|
@@ -19924,6 +19895,7 @@ function PrimeStyleTryonInner({
|
|
|
19924
19895
|
const applyProfileRef = reactExports.useRef(() => {
|
|
19925
19896
|
});
|
|
19926
19897
|
const handleOpen = reactExports.useCallback(() => {
|
|
19898
|
+
console.log("[ps-sdk] handleOpen fired — opening modal");
|
|
19927
19899
|
setView("body-profile");
|
|
19928
19900
|
onOpen?.();
|
|
19929
19901
|
}, [onOpen]);
|
|
@@ -20951,11 +20923,22 @@ function PrimeStyleTryonInner({
|
|
|
20951
20923
|
return null;
|
|
20952
20924
|
}
|
|
20953
20925
|
}
|
|
20954
|
-
return /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: cx("ps-tryon-root", cn.root || className), style: { visibility: "
|
|
20955
|
-
/* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
20956
|
-
|
|
20957
|
-
|
|
20958
|
-
|
|
20926
|
+
return /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: cx("ps-tryon-root", cn.root || className), style: { visibility: "visible", ...cssVars, ...style }, "data-ps-tryon": true, children: [
|
|
20927
|
+
/* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
20928
|
+
"button",
|
|
20929
|
+
{
|
|
20930
|
+
onClick: (e) => {
|
|
20931
|
+
console.log("[ps-sdk] button click event fired", e);
|
|
20932
|
+
handleOpen();
|
|
20933
|
+
},
|
|
20934
|
+
className: cx("ps-tryon-btn", cn.button),
|
|
20935
|
+
type: "button",
|
|
20936
|
+
children: [
|
|
20937
|
+
showIcon !== false && (buttonIcon || /* @__PURE__ */ jsxRuntimeExports.jsx(CameraIcon$1, {})),
|
|
20938
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx("span", { children: resolvedButtonText })
|
|
20939
|
+
]
|
|
20940
|
+
}
|
|
20941
|
+
),
|
|
20959
20942
|
view !== "idle" && typeof document !== "undefined" && reactDomExports.createPortal(
|
|
20960
20943
|
/* @__PURE__ */ jsxRuntimeExports.jsx("div", { className: cx("ps-tryon-overlay", cn.overlay), style: cssVars, "data-ps-tryon-portal": true, children: /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: cx(`ps-tryon-modal${view === "result" && resultImageUrl && sizingResult || view === "size-result" || view === "estimation-review" || view === "body-profile" || view === "profiles" ? " ps-tryon-modal-wide" : ""}${view === "profiles" ? " ps-tryon-modal-tall" : ""}`, cn.modal), onClick: (e) => e.stopPropagation(), children: [
|
|
20961
20944
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: cx("ps-tryon-header ps-tryon-header-minimal", cn.header), children: [
|