{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@emotion/hash@0.8.0/dist/hash.browser.esm.js", "ssg:https://framerusercontent.com/modules/dZ9c6z10n71dmz3JQVi4/0dSuyhnHD9HrUa3w2XFr/Arc.js", "ssg:https://cdn.skypack.dev/-/@typeform/embed@v1.32.0-uXop976GWPfuIsYTJLOe/dist=es2019,mode=imports/optimized/@typeform/embed.js", "ssg:https://framer.com/m/framer/integrations-styles.js@0.2.0", "ssg:https://framerusercontent.com/modules/F6IzcnH090BibK8JiJh0/MfEMY4LeLoFqPUtJ3OJA/Typeform.js", "ssg:https://framer.com/m/hero-icons/Home.js@0.0.28", "ssg:https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js", "ssg:https://framerusercontent.com/modules/P40ucOGzaSXkCuJNn5jp/81ZrdALX6dF0Wd4PEvFb/htrhpIOez.js", "ssg:https://framerusercontent.com/modules/VVyhp3ibc4SXejsugHRs/9eJ6VEy0rcgWEEuod8UH/Z56ZqZQoj.js", "ssg:https://framerusercontent.com/modules/6svGnMojuYlldgizQYsM/wfmmmpdZB4C2VKDREVV9/augiA20Il.js"],
  "sourcesContent": ["function murmur2(r){var t=0;var a,e=0,c=r.length;for(;c>=4;++e,c-=4){a=255&r.charCodeAt(e)|(255&r.charCodeAt(++e))<<8|(255&r.charCodeAt(++e))<<16|(255&r.charCodeAt(++e))<<24;a=1540483477*(65535&a)+(59797*(a>>>16)<<16);a^=a>>>24;t=1540483477*(65535&a)+(59797*(a>>>16)<<16)^1540483477*(65535&t)+(59797*(t>>>16)<<16)}switch(c){case 3:t^=(255&r.charCodeAt(e+2))<<16;case 2:t^=(255&r.charCodeAt(e+1))<<8;case 1:t^=255&r.charCodeAt(e);t=1540483477*(65535&t)+(59797*(t>>>16)<<16)}t^=t>>>13;t=1540483477*(65535&t)+(59797*(t>>>16)<<16);return((t^t>>>15)>>>0).toString(36)}export{murmur2 as default};\n\n//# sourceMappingURL=hash.browser.esm.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import hash from\"@emotion/hash\";function getAlignmentIcon(alignmentBaseline){switch(alignmentBaseline){case\"top\":return\"Text Top\";case\"center\":return\"Central\";case\"bottom\":return\"Hanging\";}}/**\n * ARC TEXT FOR INSERT\n * By Adam and Benjamin\n *\n * @framerIntrinsicWidth 150\n * @framerIntrinsicHeight 150\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */const Arc=withCSS(function Arc(props){// Checks\nconst isCanvas=RenderTarget.current()===RenderTarget.canvas;// For Ellipse\nconst isEllipse=!props.type;const cylinder=isEllipse?props.cylinderHeight/2:0;// Base arc path\nconst path=createPath(props.flip,cylinder);// Unique IDs to avoid multiple instances on the canvas sharing a single path\nconst id=`curve-${hash(path)}`;// Alignment icon conversion\nconst alignmentValue=getAlignmentIcon(props.alignmentBaseline);return /*#__PURE__*/_jsxs(\"svg\",{className:\"transform-origin-center-center\",style:{width:\"100%\",height:\"100%\",transformOrigin:\"center\"},viewBox:`0 0 100 100`,overflow:\"visible\",children:[/*#__PURE__*/_jsx(\"path\",{id:id,d:path,strokeWidth:\"none\",fill:\"transparent\"}),/*#__PURE__*/_jsx(\"text\",{children:/*#__PURE__*/_jsx(\"textPath\",{href:`#${id}`,startOffset:props.startOffset,dominantBaseline:alignmentValue,style:{letterSpacing:props.font.letterSpacing?props.font.letterSpacing:1.85,...props.font,fill:props.color},children:props.text})})]});},// Work around a bug with framer-motion that calculates a px origin when animating SVG elements.\n[\".transform-origin-center-center { transform-origin: center center !important; }\"]);export default Arc;Arc.defaultProps={height:50,width:50};addPropertyControls(Arc,{text:{title:\"Content\",type:ControlType.String,defaultValue:\"DESIGN SITES LIKE A PRO WITH FRAMER\",displayTextArea:true},type:{title:\"Type\",type:ControlType.Boolean,enabledTitle:\"Circle\",disabledTitle:\"Ellipse\",defaultValue:true},cylinderHeight:{title:\"Height\",type:ControlType.Number,min:0,max:1e3,displayStepper:true,hidden:props=>props.type},alignmentBaseline:{title:\"Align\",type:ControlType.Enum,options:[\"top\",\"center\",\"bottom\"],optionIcons:[\"align-top\",\"align-middle\",\"align-bottom\"],defaultValue:\"bottom\",displaySegmentedControl:true},flip:{type:ControlType.Boolean,defaultValue:false,title:\"Direction\",enabledTitle:\"CW\",disabledTitle:\"CCW\"},startOffset:{title:\"Offset\",type:ControlType.Number,defaultValue:0,max:360,unit:\"\\xb0\",step:.5},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\",displayTextAlignment:false},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#999\"}});/* Path creation method */const createPath=(flip,cylinder)=>{const cylinderTop=50-cylinder;const cylinderBottom=50+cylinder;return!flip?`M 0 50 L 0 ${cylinderTop} A 1 1 0 0 1 100 ${cylinderTop} L 100 50 L 100 ${cylinderBottom} A 1 1 0 0 1 0 ${cylinderBottom} L 0 ${cylinderTop}`:`M 0 50 L 0 ${cylinderBottom} A 1 1 0 1 0 100 ${cylinderBottom} L 100 ${cylinderTop} A 1 1 0 1 0 0 ${cylinderTop} L 0 50`;};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Arc\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"150\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"150\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Arc.map", "var commonjsGlobal = typeof globalThis !== \"undefined\" ? globalThis : typeof window !== \"undefined\" ? window : typeof global !== \"undefined\" ? global : typeof self !== \"undefined\" ? self : {};\nfunction getDefaultExportFromCjs(x) {\n  return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, \"default\") ? x[\"default\"] : x;\n}\nfunction createCommonjsModule(fn, basedir, module) {\n  return module = {\n    path: basedir,\n    exports: {},\n    require: function(path, base) {\n      return commonjsRequire(path, base === void 0 || base === null ? module.path : base);\n    }\n  }, fn(module, module.exports), module.exports;\n}\nfunction commonjsRequire() {\n  throw new Error(\"Dynamic requires are not currently supported by @rollup/plugin-commonjs\");\n}\nvar build = createCommonjsModule(function(module, exports) {\n  !function(e, t) {\n    module.exports = t();\n  }(commonjsGlobal, function() {\n    return function() {\n      var e = {27: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.FORM_BASE_URL = t2.POPUP_SIZE = t2.SLIDER_WIDTH = t2.SLIDER_POSITION = t2.SIDETAB_ATTRIBUTE = t2.WIDGET_ATTRIBUTE = t2.SLIDER_ATTRIBUTE = t2.POPUP_ATTRIBUTE = t2.POPOVER_ATTRIBUTE = void 0, t2.POPOVER_ATTRIBUTE = \"data-tf-popover\", t2.POPUP_ATTRIBUTE = \"data-tf-popup\", t2.SLIDER_ATTRIBUTE = \"data-tf-slider\", t2.WIDGET_ATTRIBUTE = \"data-tf-widget\", t2.SIDETAB_ATTRIBUTE = \"data-tf-sidetab\", t2.SLIDER_POSITION = \"right\", t2.SLIDER_WIDTH = 800, t2.POPUP_SIZE = 100, t2.FORM_BASE_URL = \"https://form.typeform.com\";\n      }, 528: function(e2, t2, n) {\n        var o = this && this.__assign || function() {\n          return (o = Object.assign || function(e3) {\n            for (var t3, n2 = 1, o2 = arguments.length; n2 < o2; n2++)\n              for (var r2 in t3 = arguments[n2])\n                Object.prototype.hasOwnProperty.call(t3, r2) && (e3[r2] = t3[r2]);\n            return e3;\n          }).apply(this, arguments);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.createPopover = void 0;\n        var r = n(747), i = n(320), a = function(e3, t3) {\n          var n2 = e3.parentNode;\n          n2 && (n2.removeChild(e3), n2.appendChild(t3));\n        }, c = function(e3, t3) {\n          e3 === void 0 && (e3 = \"div\"), t3 === void 0 && (t3 = \"tf-v1-popover-button-icon\");\n          var n2 = document.createElement(e3);\n          return n2.className = t3 + \" tf-v1-close-icon\", n2.innerHTML = \"&times;\", n2.dataset.testid = t3, n2;\n        }, u = {buttonColor: \"#3a7685\"};\n        t2.createPopover = function(e3, t3) {\n          t3 === void 0 && (t3 = {});\n          var n2, s, d = o(o({}, u), t3), l = r.createIframe(e3, \"popover\", d), f = l.iframe, p = l.embedId, v = l.refresh, m = function(e4, t4) {\n            var n3 = document.createElement(\"div\");\n            return n3.className = \"tf-v1-popover\", n3.dataset.testid = \"tf-v1-popover\", r.setElementSize(n3, {width: e4, height: t4});\n          }(d.width, d.height), h = function() {\n            var e4 = document.createElement(\"div\");\n            return e4.className = \"tf-v1-popover-wrapper\", e4.dataset.testid = \"tf-v1-popover-wrapper\", e4;\n          }(), b = function(e4, t4) {\n            var n3 = r.getTextColor(t4), o2 = document.createElement(\"div\");\n            o2.className = \"tf-v1-popover-button-icon\";\n            var i2 = '<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n    <path d=\"M21 0H0V9L10.5743 24V16.5H21C22.6567 16.5 24 15.1567 24 13.5V3C24 1.34325 22.6567 0 21 0ZM7.5\\n    9.75C6.672 9.75 6 9.07875 6 8.25C6 7.42125 6.672 6.75 7.5 6.75C8.328 6.75 9 7.42125 9 8.25C9 9.07875 8.328 9.75\\n    7.5 9.75ZM12.75 9.75C11.922 9.75 11.25 9.07875 11.25 8.25C11.25 7.42125 11.922 6.75 12.75 6.75C13.578 6.75 14.25\\n    7.42125 14.25 8.25C14.25 9.07875 13.578 9.75 12.75 9.75ZM18 9.75C17.172 9.75 16.5 9.07875 16.5 8.25C16.5 7.42125\\n    17.172 6.75 18 6.75C18.828 6.75 19.5 7.42125 19.5 8.25C19.5 9.07875 18.828 9.75 18 9.75Z\" fill=\"' + n3 + '\"></path>\\n  </svg>', a2 = e4 == null ? void 0 : e4.startsWith(\"http\");\n            return o2.innerHTML = a2 ? \"<img alt='popover trigger icon button' src='\" + e4 + \"'/>\" : e4 != null ? e4 : i2, o2.dataset.testid = \"default-icon\", o2;\n          }(d.customIcon, d.buttonColor || u.buttonColor), y = function() {\n            var e4 = document.createElement(\"div\");\n            e4.className = \"tf-v1-spinner\";\n            var t4 = document.createElement(\"div\");\n            return t4.className = \"tf-v1-popover-button-icon\", t4.dataset.testid = \"spinner-icon\", t4.append(e4), t4;\n          }(), g = c(), O = c(\"a\", \"tf-v1-popover-close\"), _ = function(e4) {\n            var t4 = r.getTextColor(e4), n3 = document.createElement(\"button\");\n            return n3.className = \"tf-v1-popover-button\", n3.dataset.testid = \"tf-v1-popover-button\", n3.style.backgroundColor = e4, n3.style.color = t4, n3;\n          }(d.buttonColor || u.buttonColor);\n          (d.container || document.body).append(m), h.append(f), m.append(_), m.append(O), _.append(b);\n          var w = function() {\n            n2 && n2.parentNode && (n2.classList.add(\"closing\"), setTimeout(function() {\n              r.unmountElement(n2);\n            }, 250));\n          };\n          d.tooltip && d.tooltip.length > 0 && (n2 = function(e4, t4) {\n            var n3 = document.createElement(\"span\");\n            n3.className = \"tf-v1-popover-tooltip-close\", n3.dataset.testid = \"tf-v1-popover-tooltip-close\", n3.innerHTML = \"&times;\", n3.onclick = t4;\n            var o2 = document.createElement(\"div\");\n            o2.className = \"tf-v1-popover-tooltip-text\", o2.innerHTML = e4;\n            var r2 = document.createElement(\"div\");\n            return r2.className = \"tf-v1-popover-tooltip\", r2.dataset.testid = \"tf-v1-popover-tooltip\", r2.appendChild(o2), r2.appendChild(n3), r2;\n          }(d.tooltip, w), m.append(n2)), d.notificationDays && (d.enableSandbox || i.canBuildNotificationDot(e3)) && (s = i.buildNotificationDot(), _.append(s)), f.onload = function() {\n            m.classList.add(\"open\"), h.style.opacity = \"1\", O.style.opacity = \"1\", a(y, g), r.addCustomKeyboardListener(P);\n          };\n          var E = function() {\n            r.isOpen(h) || (w(), s && (s.classList.add(\"closing\"), d.notificationDays && !d.enableSandbox && i.saveNotificationDotHideUntilTime(e3, d.notificationDays), setTimeout(function() {\n              r.unmountElement(s);\n            }, 250)), setTimeout(function() {\n              r.isInPage(h) ? (h.style.opacity = \"0\", O.style.opacity = \"0\", h.style.display = \"flex\", setTimeout(function() {\n                m.classList.add(\"open\"), h.style.opacity = \"1\", O.style.opacity = \"1\";\n              }), a(b, g)) : (m.append(h), a(b, y), h.style.opacity = \"0\", O.style.opacity = \"0\");\n            }));\n          }, P = function() {\n            var e4;\n            r.isOpen(m) && ((e4 = t3.onClose) === null || e4 === void 0 || e4.call(t3), setTimeout(function() {\n              d.keepSession ? h.style.display = \"none\" : r.unmountElement(h), m.classList.remove(\"open\"), a(g, b);\n            }, 250));\n          };\n          r.setAutoClose(p, d.autoClose, P);\n          var C = function() {\n            r.isOpen(h) ? P() : E();\n          };\n          return _.onclick = C, O.onclick = P, d.open && !r.isOpen(h) && r.handleCustomOpen(E, d.open, d.openValue), {open: E, close: P, toggle: C, refresh: v, unmount: function() {\n            r.unmountElement(m);\n          }};\n        };\n      }, 797: function(e2, t2, n) {\n        var o = this && this.__createBinding || (Object.create ? function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), Object.defineProperty(e3, o2, {enumerable: true, get: function() {\n            return t3[n2];\n          }});\n        } : function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), e3[o2] = t3[n2];\n        }), r = this && this.__exportStar || function(e3, t3) {\n          for (var n2 in e3)\n            n2 === \"default\" || Object.prototype.hasOwnProperty.call(t3, n2) || o(t3, e3, n2);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), r(n(528), t2), r(n(100), t2);\n      }, 320: function(e2, t2) {\n        var n = this && this.__assign || function() {\n          return (n = Object.assign || function(e3) {\n            for (var t3, n2 = 1, o2 = arguments.length; n2 < o2; n2++)\n              for (var r2 in t3 = arguments[n2])\n                Object.prototype.hasOwnProperty.call(t3, r2) && (e3[r2] = t3[r2]);\n            return e3;\n          }).apply(this, arguments);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.buildNotificationDot = t2.canBuildNotificationDot = t2.saveNotificationDotHideUntilTime = void 0;\n        var o = \"tfNotificationData\", r = function() {\n          var e3 = localStorage.getItem(o);\n          return e3 ? JSON.parse(e3) : {};\n        }, i = function(e3) {\n          e3 && localStorage.setItem(o, JSON.stringify(e3));\n        };\n        t2.saveNotificationDotHideUntilTime = function(e3, t3) {\n          var o2, a = new Date();\n          a.setDate(a.getDate() + t3), i(n(n({}, r()), ((o2 = {})[e3] = {hideUntilTime: a.getTime()}, o2)));\n        }, t2.canBuildNotificationDot = function(e3) {\n          var t3 = function(e4) {\n            var t4;\n            return ((t4 = r()[e4]) === null || t4 === void 0 ? void 0 : t4.hideUntilTime) || 0;\n          }(e3);\n          return new Date().getTime() > t3 && (t3 && function(e4) {\n            var t4 = r();\n            delete t4[e4], i(t4);\n          }(e3), true);\n        }, t2.buildNotificationDot = function() {\n          var e3 = document.createElement(\"span\");\n          return e3.className = \"tf-v1-popover-unread-dot\", e3.dataset.testid = \"tf-v1-popover-unread-dot\", e3;\n        };\n      }, 100: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true});\n      }, 630: function(e2, t2, n) {\n        var o = this && this.__rest || function(e3, t3) {\n          var n2 = {};\n          for (var o2 in e3)\n            Object.prototype.hasOwnProperty.call(e3, o2) && t3.indexOf(o2) < 0 && (n2[o2] = e3[o2]);\n          if (e3 != null && typeof Object.getOwnPropertySymbols == \"function\") {\n            var r2 = 0;\n            for (o2 = Object.getOwnPropertySymbols(e3); r2 < o2.length; r2++)\n              t3.indexOf(o2[r2]) < 0 && Object.prototype.propertyIsEnumerable.call(e3, o2[r2]) && (n2[o2[r2]] = e3[o2[r2]]);\n          }\n          return n2;\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.createPopup = void 0;\n        var r = n(747), i = n(27), a = n(747);\n        t2.createPopup = function(e3, t3) {\n          if (t3 === void 0 && (t3 = {}), !r.hasDom())\n            return {open: function() {\n            }, close: function() {\n            }, toggle: function() {\n            }, refresh: function() {\n            }, unmount: function() {\n            }};\n          var n2 = t3.width, c = t3.height, u = t3.size, s = u === void 0 ? i.POPUP_SIZE : u, d = t3.onClose, l = o(t3, [\"width\", \"height\", \"size\", \"onClose\"]), f = r.createIframe(e3, \"popup\", l), p = f.iframe, v = f.embedId, m = f.refresh, h = document.body.style.overflow, b = function() {\n            var e4 = document.createElement(\"div\");\n            return e4.className = \"tf-v1-popup\", e4.style.opacity = \"0\", e4;\n          }(), y = function() {\n            var e4 = document.createElement(\"div\");\n            return e4.className = \"tf-v1-spinner\", e4;\n          }(), g = function(e4, t4, n3) {\n            var o2 = document.createElement(\"div\");\n            return o2.className = \"tf-v1-iframe-wrapper\", o2.style.opacity = \"0\", r.isDefined(e4) && r.isDefined(t4) ? r.setElementSize(o2, {width: e4, height: t4}) : (o2.style.width = \"calc(\" + n3 + \"% - 80px)\", o2.style.height = \"calc(\" + n3 + \"% - 80px)\", o2);\n          }(n2, c, s);\n          g.append(p), b.append(y), b.append(g);\n          var O = l.container || document.body;\n          p.onload = function() {\n            g.style.opacity = \"1\", setTimeout(function() {\n              y.style.display = \"none\";\n            }, 250), r.addCustomKeyboardListener(w);\n          };\n          var _ = function() {\n            a.isOpen(b) || (a.isInPage(b) ? b.style.display = \"flex\" : (y.style.display = \"block\", O.append(b)), document.body.style.overflow = \"hidden\", setTimeout(function() {\n              b.style.opacity = \"1\";\n            }));\n          }, w = function() {\n            a.isOpen(b) && (d == null || d(), b.style.opacity = \"0\", document.body.style.overflow = h, setTimeout(function() {\n              l.keepSession ? b.style.display = \"none\" : E();\n            }, 250));\n          };\n          g.append(function(e4) {\n            var t4 = document.createElement(\"a\");\n            return t4.className = \"tf-v1-close tf-v1-close-icon\", t4.innerHTML = \"&times;\", t4.onclick = e4, t4;\n          }(w)), r.setAutoClose(v, l.autoClose, w);\n          var E = function() {\n            r.unmountElement(b);\n          };\n          return l.open && !a.isOpen(b) && r.handleCustomOpen(_, l.open, l.openValue), {open: _, close: w, toggle: function() {\n            a.isOpen(b) ? w() : _();\n          }, refresh: m, unmount: E};\n        };\n      }, 970: function(e2, t2, n) {\n        var o = this && this.__createBinding || (Object.create ? function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), Object.defineProperty(e3, o2, {enumerable: true, get: function() {\n            return t3[n2];\n          }});\n        } : function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), e3[o2] = t3[n2];\n        }), r = this && this.__exportStar || function(e3, t3) {\n          for (var n2 in e3)\n            n2 === \"default\" || Object.prototype.hasOwnProperty.call(t3, n2) || o(t3, e3, n2);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), r(n(630), t2), r(n(394), t2);\n      }, 394: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true});\n      }, 382: function(e2, t2, n) {\n        var o = this && this.__assign || function() {\n          return (o = Object.assign || function(e3) {\n            for (var t3, n2 = 1, o2 = arguments.length; n2 < o2; n2++)\n              for (var r2 in t3 = arguments[n2])\n                Object.prototype.hasOwnProperty.call(t3, r2) && (e3[r2] = t3[r2]);\n            return e3;\n          }).apply(this, arguments);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.createSidetab = void 0;\n        var r = n(747), i = {buttonColor: \"#3a7685\", buttonText: \"Launch me\"}, a = function(e3, t3) {\n          e3 === void 0 && (e3 = \"div\"), t3 === void 0 && (t3 = \"tf-v1-sidetab-button-icon\");\n          var n2 = document.createElement(e3);\n          return n2.className = t3 + \" tf-v1-close-icon\", n2.innerHTML = \"&times;\", n2.dataset.testid = t3, n2;\n        }, c = function(e3, t3) {\n          var n2 = e3.parentNode;\n          n2 && (n2.removeChild(e3), n2.appendChild(t3));\n        };\n        t2.createSidetab = function(e3, t3) {\n          t3 === void 0 && (t3 = {});\n          var n2, u, s, d = o(o({}, i), t3), l = r.createIframe(e3, \"side-tab\", d), f = l.iframe, p = l.embedId, v = l.refresh, m = (n2 = d.width, u = d.height, (s = document.createElement(\"div\")).className = \"tf-v1-sidetab\", s.dataset.testid = \"tf-v1-sidetab\", r.setElementSize(s, {width: n2, height: u})), h = function() {\n            var e4 = document.createElement(\"div\");\n            return e4.className = \"tf-v1-sidetab-wrapper\", e4.dataset.testid = \"tf-v1-sidetab-wrapper\", e4;\n          }(), b = function() {\n            var e4 = document.createElement(\"div\");\n            e4.className = \"tf-v1-spinner\";\n            var t4 = document.createElement(\"div\");\n            return t4.className = \"tf-v1-sidetab-button-icon\", t4.dataset.testid = \"spinner-icon\", t4.append(e4), t4;\n          }(), y = function(e4) {\n            var t4 = r.getTextColor(e4), n3 = document.createElement(\"button\");\n            return n3.className = \"tf-v1-sidetab-button\", n3.style.backgroundColor = e4, n3.style.color = t4, n3;\n          }(d.buttonColor || i.buttonColor), g = function(e4) {\n            var t4 = document.createElement(\"span\");\n            return t4.className = \"tf-v1-sidetab-button-text\", t4.innerHTML = e4, t4;\n          }(d.buttonText || i.buttonText), O = function(e4, t4) {\n            var n3 = r.getTextColor(t4), o2 = document.createElement(\"div\");\n            o2.className = \"tf-v1-sidetab-button-icon\";\n            var i2 = '<svg width=\"32\" height=\"32\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n    <path d=\"M21 0H0V9L10.5743 24V16.5H21C22.6567 16.5 24 15.1567 24 13.5V3C24 1.34325 22.6567 0 21 0ZM7.5 9.75C6.672 9.75 6 9.07875 6 8.25C6 7.42125 6.672 6.75 7.5 6.75C8.328 6.75 9 7.42125 9 8.25C9 9.07875 8.328 9.75 7.5 9.75ZM12.75 9.75C11.922 9.75 11.25 9.07875 11.25 8.25C11.25 7.42125 11.922 6.75 12.75 6.75C13.578 6.75 14.25 7.42125 14.25 8.25C14.25 9.07875 13.578 9.75 12.75 9.75ZM18 9.75C17.172 9.75 16.5 9.07875 16.5 8.25C16.5 7.42125 17.172 6.75 18 6.75C18.828 6.75 19.5 7.42125 19.5 8.25C19.5 9.07875 18.828 9.75 18 9.75Z\" fill=\"' + n3 + '\"></path>\\n  </svg>', a2 = e4 == null ? void 0 : e4.startsWith(\"http\");\n            return o2.innerHTML = a2 ? \"<img alt='popover trigger icon button' src='\" + e4 + \"'/>\" : e4 != null ? e4 : i2, o2.dataset.testid = \"default-icon\", o2;\n          }(d.customIcon, d.buttonColor || i.buttonColor), _ = a(), w = a(\"a\", \"tf-v1-sidetab-close\");\n          (d.container || document.body).append(m), h.append(f), m.append(y), m.append(w), y.append(O), y.append(g), setTimeout(function() {\n            m.classList.add(\"ready\");\n          }, 250), f.onload = function() {\n            m.classList.add(\"open\"), c(b, _), r.addCustomKeyboardListener(P);\n          };\n          var E = function() {\n            r.isOpen(h) || (r.isInPage(h) ? (h.style.display = \"flex\", m.classList.add(\"open\"), c(O, _)) : (m.append(h), c(O, b)));\n          }, P = function() {\n            var e4;\n            r.isOpen(h) && ((e4 = d.onClose) === null || e4 === void 0 || e4.call(d), m.classList.remove(\"open\"), setTimeout(function() {\n              d.keepSession ? h.style.display = \"none\" : r.unmountElement(h), c(_, O);\n            }, 250));\n          };\n          r.setAutoClose(p, d.autoClose, P);\n          var C = function() {\n            r.isOpen(h) ? P() : E();\n          };\n          return y.onclick = C, w.onclick = P, d.open && !r.isOpen(h) && r.handleCustomOpen(E, d.open, d.openValue), {open: E, close: P, toggle: C, refresh: v, unmount: function() {\n            r.unmountElement(m);\n          }};\n        };\n      }, 434: function(e2, t2, n) {\n        var o = this && this.__createBinding || (Object.create ? function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), Object.defineProperty(e3, o2, {enumerable: true, get: function() {\n            return t3[n2];\n          }});\n        } : function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), e3[o2] = t3[n2];\n        }), r = this && this.__exportStar || function(e3, t3) {\n          for (var n2 in e3)\n            n2 === \"default\" || Object.prototype.hasOwnProperty.call(t3, n2) || o(t3, e3, n2);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), r(n(382), t2), r(n(668), t2);\n      }, 668: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true});\n      }, 603: function(e2, t2, n) {\n        var o = this && this.__rest || function(e3, t3) {\n          var n2 = {};\n          for (var o2 in e3)\n            Object.prototype.hasOwnProperty.call(e3, o2) && t3.indexOf(o2) < 0 && (n2[o2] = e3[o2]);\n          if (e3 != null && typeof Object.getOwnPropertySymbols == \"function\") {\n            var r2 = 0;\n            for (o2 = Object.getOwnPropertySymbols(e3); r2 < o2.length; r2++)\n              t3.indexOf(o2[r2]) < 0 && Object.prototype.propertyIsEnumerable.call(e3, o2[r2]) && (n2[o2[r2]] = e3[o2[r2]]);\n          }\n          return n2;\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.createSlider = void 0;\n        var r = n(747), i = n(27);\n        t2.createSlider = function(e3, t3) {\n          if (t3 === void 0 && (t3 = {}), !r.hasDom())\n            return {open: function() {\n            }, close: function() {\n            }, toggle: function() {\n            }, refresh: function() {\n            }, unmount: function() {\n            }};\n          var n2 = t3.position, a = n2 === void 0 ? i.SLIDER_POSITION : n2, c = t3.width, u = c === void 0 ? i.SLIDER_WIDTH : c, s = t3.onClose, d = o(t3, [\"position\", \"width\", \"onClose\"]), l = r.createIframe(e3, \"slider\", d), f = l.iframe, p = l.embedId, v = l.refresh, m = document.body.style.overflow, h = function(e4) {\n            var t4 = document.createElement(\"div\");\n            return t4.className = \"tf-v1-slider \" + e4, t4.style.opacity = \"0\", t4;\n          }(a), b = function() {\n            var e4 = document.createElement(\"div\");\n            return e4.className = \"tf-v1-spinner\", e4;\n          }(), y = function(e4, t4) {\n            var n3 = document.createElement(\"div\");\n            return n3.className = \"tf-v1-iframe-wrapper\", n3.style[e4] = \"-100%\", r.setElementSize(n3, {width: t4});\n          }(a, u);\n          y.append(f), h.append(b), h.append(y);\n          var g = d.container || document.body;\n          f.onload = function() {\n            y.style[a] = \"0\", setTimeout(function() {\n              b.style.display = \"none\";\n            }, 500), r.addCustomKeyboardListener(_);\n          };\n          var O = function() {\n            r.isOpen(h) || (r.isInPage(h) ? (h.style.display = \"flex\", setTimeout(function() {\n              y.style[a] = \"0\";\n            })) : (g.append(h), b.style.display = \"block\"), document.body.style.overflow = \"hidden\", setTimeout(function() {\n              h.style.opacity = \"1\";\n            }));\n          }, _ = function() {\n            r.isOpen(h) && (s == null || s(), h.style.opacity = \"0\", y.style[a] = \"-100%\", document.body.style.overflow = m, setTimeout(function() {\n              d.keepSession ? h.style.display = \"none\" : w();\n            }, 500));\n          };\n          r.setAutoClose(p, d.autoClose, _);\n          var w = function() {\n            r.unmountElement(h);\n          };\n          return y.append(function(e4) {\n            var t4 = document.createElement(\"a\");\n            return t4.className = \"tf-v1-close tf-v1-close-icon\", t4.innerHTML = \"&times;\", t4.onclick = e4, t4;\n          }(_)), d.open && !r.isOpen(h) && r.handleCustomOpen(O, d.open, d.openValue), {open: O, close: _, toggle: function() {\n            r.isOpen(h) ? _() : O();\n          }, refresh: v, unmount: w};\n        };\n      }, 331: function(e2, t2, n) {\n        var o = this && this.__createBinding || (Object.create ? function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), Object.defineProperty(e3, o2, {enumerable: true, get: function() {\n            return t3[n2];\n          }});\n        } : function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), e3[o2] = t3[n2];\n        }), r = this && this.__exportStar || function(e3, t3) {\n          for (var n2 in e3)\n            n2 === \"default\" || Object.prototype.hasOwnProperty.call(t3, n2) || o(t3, e3, n2);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), r(n(603), t2), r(n(162), t2);\n      }, 162: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true});\n      }, 718: function(e2, t2, n) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.createWidget = void 0;\n        var o = n(747), r = n(554), i = n(313);\n        t2.createWidget = function(e3, t3) {\n          if (!o.hasDom())\n            return {refresh: function() {\n            }, unmount: function() {\n            }};\n          var n2 = t3;\n          t3.inlineOnMobile || !t3.forceTouch && !o.isFullscreen() || (n2.enableFullscreen = true, n2.forceTouch = true);\n          var a = o.createIframe(e3, \"widget\", n2), c = a.embedId, u = a.iframe, s = a.refresh, d = i.buildWidget(u, t3.width, t3.height);\n          if (n2.autoResize) {\n            var l = typeof n2.autoResize == \"string\" ? n2.autoResize.split(\",\").map(function(e4) {\n              return parseInt(e4);\n            }) : [], f = l[0], p = l[1];\n            window.addEventListener(\"message\", r.getFormHeightChangedHandler(c, function(e4) {\n              var n3 = Math.max(e4.height + 20, f || 0);\n              p && (n3 = Math.min(n3, p)), t3.container.style.height = n3 + \"px\";\n            }));\n          }\n          var v, m = function() {\n            return t3.container.append(d);\n          };\n          if (t3.container.innerHTML = \"\", t3.lazy ? o.lazyInitialize(t3.container, m) : m(), n2.enableFullscreen) {\n            var h = t3.container;\n            window.addEventListener(\"message\", r.getWelcomeScreenHiddenHandler(c, h));\n            var b = ((v = document.createElement(\"a\")).className = \"tf-v1-widget-close tf-v1-close-icon\", v.innerHTML = \"&times;\", v);\n            b.onclick = function() {\n              var e4;\n              if ((e4 = t3.onClose) === null || e4 === void 0 || e4.call(t3), h.classList.remove(\"tf-v1-widget-fullscreen\"), t3.keepSession) {\n                var n3 = document.createElement(\"div\");\n                n3.className = \"tf-v1-widget-iframe-overlay\", n3.onclick = function() {\n                  h.classList.add(\"tf-v1-widget-fullscreen\"), o.unmountElement(n3);\n                }, d.append(n3);\n              } else\n                t3.container.innerHTML = \"\", m(), h.append(b);\n            }, h.append(b);\n          }\n          return {refresh: s, unmount: function() {\n            return o.unmountElement(d);\n          }};\n        };\n      }, 419: function(e2, t2, n) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.buildWidget = void 0;\n        var o = n(747);\n        t2.buildWidget = function(e3, t3, n2) {\n          var r = document.createElement(\"div\");\n          return r.className = \"tf-v1-widget\", r.append(e3), o.setElementSize(r, {width: t3, height: n2});\n        };\n      }, 313: function(e2, t2, n) {\n        var o = this && this.__createBinding || (Object.create ? function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), Object.defineProperty(e3, o2, {enumerable: true, get: function() {\n            return t3[n2];\n          }});\n        } : function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), e3[o2] = t3[n2];\n        }), r = this && this.__exportStar || function(e3, t3) {\n          for (var n2 in e3)\n            n2 === \"default\" || Object.prototype.hasOwnProperty.call(t3, n2) || o(t3, e3, n2);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), r(n(419), t2);\n      }, 321: function(e2, t2, n) {\n        var o = this && this.__createBinding || (Object.create ? function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), Object.defineProperty(e3, o2, {enumerable: true, get: function() {\n            return t3[n2];\n          }});\n        } : function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), e3[o2] = t3[n2];\n        }), r = this && this.__exportStar || function(e3, t3) {\n          for (var n2 in e3)\n            n2 === \"default\" || Object.prototype.hasOwnProperty.call(t3, n2) || o(t3, e3, n2);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), r(n(718), t2), r(n(58), t2);\n      }, 58: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true});\n      }, 920: function(e2, t2, n) {\n        var o = this && this.__createBinding || (Object.create ? function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), Object.defineProperty(e3, o2, {enumerable: true, get: function() {\n            return t3[n2];\n          }});\n        } : function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), e3[o2] = t3[n2];\n        }), r = this && this.__exportStar || function(e3, t3) {\n          for (var n2 in e3)\n            n2 === \"default\" || Object.prototype.hasOwnProperty.call(t3, n2) || o(t3, e3, n2);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), r(n(797), t2), r(n(970), t2), r(n(331), t2), r(n(321), t2), r(n(434), t2);\n      }, 626: function(e2, t2, n) {\n        var o = this && this.__assign || function() {\n          return (o = Object.assign || function(e3) {\n            for (var t3, n2 = 1, o2 = arguments.length; n2 < o2; n2++)\n              for (var r2 in t3 = arguments[n2])\n                Object.prototype.hasOwnProperty.call(t3, r2) && (e3[r2] = t3[r2]);\n            return e3;\n          }).apply(this, arguments);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.buildIframeSrc = void 0;\n        var r = n(27), i = n(527), a = n(346), c = n(698), u = {widget: \"embed-widget\", popup: \"popup-blank\", slider: \"popup-drawer\", popover: \"popup-popover\", \"side-tab\": \"popup-side-panel\"};\n        t2.buildIframeSrc = function(e3) {\n          var t3 = e3.formId, n2 = e3.type, s = e3.embedId, d = e3.options, l = function(e4, t4, n3) {\n            var r2 = n3.transitiveSearchParams, i2 = n3.source, a2 = n3.medium, s2 = n3.mediumVersion, d2 = n3.hideFooter, l2 = n3.hideHeaders, f2 = n3.opacity, p2 = n3.disableTracking, v2 = n3.enableSandbox, m = n3.disableAutoFocus, h = n3.shareGaInstance, b = n3.forceTouch, y = n3.enableFullscreen, g = n3.tracking, O = n3.redirectTarget, _ = c.getTransitiveSearchParams(r2);\n            return o(o(o({}, {\"typeform-embed-id\": t4, \"typeform-embed\": u[e4], \"typeform-source\": i2, \"typeform-medium\": a2, \"typeform-medium-version\": s2, \"embed-hide-footer\": d2 ? \"true\" : void 0, \"embed-hide-headers\": l2 ? \"true\" : void 0, \"embed-opacity\": f2, \"disable-tracking\": p2 || v2 ? \"true\" : void 0, \"disable-auto-focus\": m ? \"true\" : void 0, \"__dangerous-disable-submissions\": v2 ? \"true\" : void 0, \"share-ga-instance\": h ? \"true\" : void 0, \"force-touch\": b ? \"true\" : void 0, \"add-placeholder-ws\": e4 === \"widget\" && y ? \"true\" : void 0, \"typeform-embed-redirect-target\": O}), _), g);\n          }(n2, s, function(e4) {\n            return o(o({}, {source: (t4 = window === null || window === void 0 ? void 0 : window.location) === null || t4 === void 0 ? void 0 : t4.hostname.replace(/^www\\./, \"\"), medium: \"embed-sdk\", mediumVersion: \"next\"}), i.removeUndefinedKeys(e4));\n            var t4;\n          }(d)), f = function(e4, t4) {\n            t4 === void 0 && (t4 = false);\n            var n3 = t4 ? \"c\" : \"to\";\n            return new URL(e4.startsWith(\"http://\") || e4.startsWith(\"https://\") ? e4 : r.FORM_BASE_URL + \"/\" + n3 + \"/\" + e4);\n          }(t3, d.chat);\n          if (Object.entries(l).filter(function(e4) {\n            var t4 = e4[1];\n            return a.isDefined(t4);\n          }).forEach(function(e4) {\n            var t4 = e4[0], n3 = e4[1];\n            f.searchParams.set(t4, n3);\n          }), d.hidden) {\n            var p = new URL(r.FORM_BASE_URL);\n            Object.entries(d.hidden).filter(function(e4) {\n              var t4 = e4[1];\n              return a.isDefined(t4);\n            }).forEach(function(e4) {\n              var t4 = e4[0], n3 = e4[1];\n              p.searchParams.set(t4, n3);\n            });\n            var v = p.searchParams.toString();\n            v && (f.hash = v);\n          }\n          return f.href;\n        };\n      }, 972: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.handleCustomOpen = void 0, t2.handleCustomOpen = function(e3, t3, n) {\n          switch (t3) {\n            case \"load\":\n              e3();\n              break;\n            case \"exit\":\n              n && function(e4, t4) {\n                var n2 = 0, o = function(r) {\n                  r.clientY < e4 && r.clientY < n2 ? (document.removeEventListener(\"mousemove\", o), t4()) : n2 = r.clientY;\n                };\n                document.addEventListener(\"mousemove\", o);\n              }(n, e3);\n              break;\n            case \"time\":\n              setTimeout(function() {\n                e3();\n              }, n);\n              break;\n            case \"scroll\":\n              n && function(e4, t4) {\n                var n2 = function() {\n                  var o = window.pageYOffset || document.documentElement.scrollTop, r = document.documentElement.clientTop || 0, i = document.documentElement.scrollHeight, a = o - r, c = a / i * 100, u = a + window.innerHeight >= i;\n                  (c >= e4 || u) && (t4(), document.removeEventListener(\"scroll\", n2));\n                };\n                document.addEventListener(\"scroll\", n2);\n              }(n, e3);\n          }\n        };\n      }, 553: function(e2, t2, n) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.createIframe = void 0;\n        var o = n(626), r = n(747), i = n(866), a = n(554), c = n(256), u = n(144), s = n(511);\n        t2.createIframe = function(e3, t3, n2) {\n          var d = i.generateEmbedId(), l = n2.iframeProps, f = l === void 0 ? {} : l, p = n2.onReady, v = n2.onQuestionChanged, m = n2.onHeightChanged, h = n2.onSubmit, b = n2.onEndingButtonClick, y = n2.shareGaInstance, g = o.buildIframeSrc({formId: e3, embedId: d, type: t3, options: n2}), O = document.createElement(\"iframe\");\n          return O.src = g, O.dataset.testid = \"iframe\", O.style.border = \"0px\", O.allow = \"microphone; camera\", Object.keys(f).forEach(function(e4) {\n            O.setAttribute(e4, f[e4]);\n          }), O.addEventListener(\"load\", c.triggerIframeRedraw, {once: true}), window.addEventListener(\"message\", a.getFormReadyHandler(d, p)), window.addEventListener(\"message\", a.getFormQuestionChangedHandler(d, v)), window.addEventListener(\"message\", a.getFormHeightChangedHandler(d, m)), window.addEventListener(\"message\", a.getFormSubmitHandler(d, h)), window.addEventListener(\"message\", a.getFormThemeHandler(d)), window.addEventListener(\"message\", a.getThankYouScreenButtonClickHandler(d, b)), t3 !== \"widget\" && window.addEventListener(\"message\", u.dispatchCustomKeyEventFromIframe), y && window.addEventListener(\"message\", a.getFormReadyHandler(d, function() {\n            r.setupGaInstance(O, d, y);\n          })), {iframe: O, embedId: d, refresh: function() {\n            return s.refreshIframe(O);\n          }};\n        };\n      }, 866: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.generateEmbedId = void 0, t2.generateEmbedId = function() {\n          var e3 = Math.random();\n          return String(e3).split(\".\")[1];\n        };\n      }, 554: function(e2, t2) {\n        var n = this && this.__rest || function(e3, t3) {\n          var n2 = {};\n          for (var o2 in e3)\n            Object.prototype.hasOwnProperty.call(e3, o2) && t3.indexOf(o2) < 0 && (n2[o2] = e3[o2]);\n          if (e3 != null && typeof Object.getOwnPropertySymbols == \"function\") {\n            var r = 0;\n            for (o2 = Object.getOwnPropertySymbols(e3); r < o2.length; r++)\n              t3.indexOf(o2[r]) < 0 && Object.prototype.propertyIsEnumerable.call(e3, o2[r]) && (n2[o2[r]] = e3[o2[r]]);\n          }\n          return n2;\n        };\n        function o(e3, t3, o2) {\n          return function(r) {\n            var i = r.data, a = i.type, c = i.embedId, u = n(i, [\"type\", \"embedId\"]);\n            a === e3 && c === t3 && (o2 == null || o2(u));\n          };\n        }\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.getThankYouScreenButtonClickHandler = t2.getFormThemeHandler = t2.getWelcomeScreenHiddenHandler = t2.getFormSubmitHandler = t2.getFormHeightChangedHandler = t2.getFormQuestionChangedHandler = t2.getFormReadyHandler = void 0, t2.getFormReadyHandler = function(e3, t3) {\n          return o(\"form-ready\", e3, t3);\n        }, t2.getFormQuestionChangedHandler = function(e3, t3) {\n          return o(\"form-screen-changed\", e3, t3);\n        }, t2.getFormHeightChangedHandler = function(e3, t3) {\n          return o(\"form-height-changed\", e3, t3);\n        }, t2.getFormSubmitHandler = function(e3, t3) {\n          return o(\"form-submit\", e3, t3);\n        }, t2.getWelcomeScreenHiddenHandler = function(e3, t3) {\n          return o(\"welcome-screen-hidden\", e3, function() {\n            t3.classList.add(\"tf-v1-widget-fullscreen\");\n          });\n        }, t2.getFormThemeHandler = function(e3) {\n          return o(\"form-theme\", e3, function(e4) {\n            var t3;\n            if (e4 == null ? void 0 : e4.theme) {\n              var n2 = document.querySelector(\".tf-v1-close-icon\");\n              n2 && (n2.style.color = (t3 = e4.theme) === null || t3 === void 0 ? void 0 : t3.color);\n            }\n          });\n        }, t2.getThankYouScreenButtonClickHandler = function(e3, t3) {\n          return o(\"thank-you-screen-button-click\", e3, t3);\n        };\n      }, 339: function(e2, t2, n) {\n        var o = this && this.__createBinding || (Object.create ? function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), Object.defineProperty(e3, o2, {enumerable: true, get: function() {\n            return t3[n2];\n          }});\n        } : function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), e3[o2] = t3[n2];\n        }), r = this && this.__exportStar || function(e3, t3) {\n          for (var n2 in e3)\n            n2 === \"default\" || Object.prototype.hasOwnProperty.call(t3, n2) || o(t3, e3, n2);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), r(n(553), t2), r(n(144), t2);\n      }, 511: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.refreshIframe = void 0, t2.refreshIframe = function(e3) {\n          if (e3) {\n            var t3 = e3.src;\n            if (t3.includes(\"&refresh\")) {\n              var n = t3.split(\"&refresh#\");\n              e3.src = n.join(\"#\");\n            } else\n              (n = t3.split(\"#\"))[0] = n[0] + \"&refresh\", e3.src = n.join(\"#\");\n          }\n        };\n      }, 144: function(e2, t2) {\n        var n = this && this.__awaiter || function(e3, t3, n2, o2) {\n          return new (n2 || (n2 = Promise))(function(r2, i2) {\n            function a(e4) {\n              try {\n                u(o2.next(e4));\n              } catch (e5) {\n                i2(e5);\n              }\n            }\n            function c(e4) {\n              try {\n                u(o2.throw(e4));\n              } catch (e5) {\n                i2(e5);\n              }\n            }\n            function u(e4) {\n              var t4;\n              e4.done ? r2(e4.value) : (t4 = e4.value, t4 instanceof n2 ? t4 : new n2(function(e5) {\n                e5(t4);\n              })).then(a, c);\n            }\n            u((o2 = o2.apply(e3, t3 || [])).next());\n          });\n        }, o = this && this.__generator || function(e3, t3) {\n          var n2, o2, r2, i2, a = {label: 0, sent: function() {\n            if (1 & r2[0])\n              throw r2[1];\n            return r2[1];\n          }, trys: [], ops: []};\n          return i2 = {next: c(0), throw: c(1), return: c(2)}, typeof Symbol == \"function\" && (i2[Symbol.iterator] = function() {\n            return this;\n          }), i2;\n          function c(i3) {\n            return function(c2) {\n              return function(i4) {\n                if (n2)\n                  throw new TypeError(\"Generator is already executing.\");\n                for (; a; )\n                  try {\n                    if (n2 = 1, o2 && (r2 = 2 & i4[0] ? o2.return : i4[0] ? o2.throw || ((r2 = o2.return) && r2.call(o2), 0) : o2.next) && !(r2 = r2.call(o2, i4[1])).done)\n                      return r2;\n                    switch (o2 = 0, r2 && (i4 = [2 & i4[0], r2.value]), i4[0]) {\n                      case 0:\n                      case 1:\n                        r2 = i4;\n                        break;\n                      case 4:\n                        return a.label++, {value: i4[1], done: false};\n                      case 5:\n                        a.label++, o2 = i4[1], i4 = [0];\n                        continue;\n                      case 7:\n                        i4 = a.ops.pop(), a.trys.pop();\n                        continue;\n                      default:\n                        if (!((r2 = (r2 = a.trys).length > 0 && r2[r2.length - 1]) || i4[0] !== 6 && i4[0] !== 2)) {\n                          a = 0;\n                          continue;\n                        }\n                        if (i4[0] === 3 && (!r2 || i4[1] > r2[0] && i4[1] < r2[3])) {\n                          a.label = i4[1];\n                          break;\n                        }\n                        if (i4[0] === 6 && a.label < r2[1]) {\n                          a.label = r2[1], r2 = i4;\n                          break;\n                        }\n                        if (r2 && a.label < r2[2]) {\n                          a.label = r2[2], a.ops.push(i4);\n                          break;\n                        }\n                        r2[2] && a.ops.pop(), a.trys.pop();\n                        continue;\n                    }\n                    i4 = t3.call(e3, a);\n                  } catch (e4) {\n                    i4 = [6, e4], o2 = 0;\n                  } finally {\n                    n2 = r2 = 0;\n                  }\n                if (5 & i4[0])\n                  throw i4[1];\n                return {value: i4[0] ? i4[1] : void 0, done: true};\n              }([i3, c2]);\n            };\n          }\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.dispatchCustomKeyEventFromIframe = t2.removeCustomKeyboardListener = t2.addCustomKeyboardListener = void 0;\n        var r = \"Escape\", i = function(e3, i2) {\n          return n(void 0, void 0, void 0, function() {\n            return o(this, function(n2) {\n              return e3.code === r && typeof i2 == \"function\" && (i2(), t2.removeCustomKeyboardListener()), [2];\n            });\n          });\n        };\n        t2.addCustomKeyboardListener = function(e3) {\n          return window.document.addEventListener(\"keydown\", function(t3) {\n            return i(t3, e3);\n          });\n        }, t2.removeCustomKeyboardListener = function() {\n          return window.document.removeEventListener(\"keydown\", i);\n        }, t2.dispatchCustomKeyEventFromIframe = function(e3) {\n          e3.data.type === \"form-close\" && window.document.dispatchEvent(new KeyboardEvent(\"keydown\", {code: r}));\n        };\n      }, 256: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.triggerIframeRedraw = void 0, t2.triggerIframeRedraw = function() {\n          this.style.transform = \"translateZ(0)\";\n        };\n      }, 939: function(e2, t2, n) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.getTextColor = void 0;\n        var o = n(938);\n        t2.getTextColor = function(e3) {\n          if (!e3)\n            return \"#FFFFFF\";\n          var t3 = e3.startsWith(\"#\") ? o.hexRgb(e3) : function(e4) {\n            var t4 = {red: 0, green: 0, blue: 0}, n3 = e4.match(/\\d+/g);\n            return n3 && (t4.red = parseInt(n3[0], 10), t4.green = parseInt(n3[0], 10), t4.blue = parseInt(n3[0], 10)), t4;\n          }(e3), n2 = t3.red, r = t3.green, i = t3.blue;\n          return Math.round((299 * n2 + 587 * r + 114 * i) / 1e3) > 125 ? \"#000000\" : \"#FFFFFF\";\n        };\n      }, 698: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.getTransitiveSearchParams = void 0, t2.getTransitiveSearchParams = function(e3) {\n          var t3 = new URL(window.location.href), n = {};\n          return e3 && e3.length > 0 && e3.forEach(function(e4) {\n            t3.searchParams.has(e4) && (n[e4] = t3.searchParams.get(e4));\n          }), n;\n        };\n      }, 252: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.hasDom = void 0, t2.hasDom = function() {\n          return typeof document != \"undefined\" && typeof window != \"undefined\";\n        };\n      }, 938: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.hexRgb = void 0;\n        var n = new RegExp(\"[^#a-f\\\\d]\", \"gi\"), o = new RegExp(\"^#?[a-f\\\\d]{3}[a-f\\\\d]?$|^#?[a-f\\\\d]{6}([a-f\\\\d]{2})?$\", \"i\");\n        t2.hexRgb = function(e3) {\n          if (typeof e3 != \"string\" || n.test(e3) || !o.test(e3))\n            throw new TypeError(\"Expected a valid hex string\");\n          (e3 = e3.replace(/^#/, \"\")).length === 8 && (e3 = e3.slice(0, 6)), e3.length === 4 && (e3 = e3.slice(0, 3)), e3.length === 3 && (e3 = e3[0] + e3[0] + e3[1] + e3[1] + e3[2] + e3[2]);\n          var t3 = Number.parseInt(e3, 16);\n          return {red: t3 >> 16, green: t3 >> 8 & 255, blue: 255 & t3};\n        };\n      }, 71: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.includeCss = void 0, t2.includeCss = function(e3) {\n          var t3 = function(e4) {\n            return \"https://embed.typeform.com/next/css/\" + e4;\n          }(e3);\n          if (!document.querySelector('link[href=\"' + t3 + '\"]')) {\n            var n = document.createElement(\"link\");\n            n.rel = \"stylesheet\", n.href = t3, document.head.append(n);\n          }\n        };\n      }, 747: function(e2, t2, n) {\n        var o = this && this.__createBinding || (Object.create ? function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), Object.defineProperty(e3, o2, {enumerable: true, get: function() {\n            return t3[n2];\n          }});\n        } : function(e3, t3, n2, o2) {\n          o2 === void 0 && (o2 = n2), e3[o2] = t3[n2];\n        }), r = this && this.__exportStar || function(e3, t3) {\n          for (var n2 in e3)\n            n2 === \"default\" || Object.prototype.hasOwnProperty.call(t3, n2) || o(t3, e3, n2);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), r(n(626), t2), r(n(339), t2), r(n(252), t2), r(n(71), t2), r(n(346), t2), r(n(377), t2), r(n(563), t2), r(n(527), t2), r(n(533), t2), r(n(451), t2), r(n(972), t2), r(n(748), t2), r(n(392), t2), r(n(939), t2), r(n(917), t2), r(n(987), t2);\n      }, 346: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.isDefined = void 0, t2.isDefined = function(e3) {\n          return e3 != null;\n        };\n      }, 987: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.isVisible = t2.isInPage = t2.isOpen = void 0, t2.isOpen = function(e3) {\n          return t2.isInPage(e3) && t2.isVisible(e3);\n        }, t2.isInPage = function(e3) {\n          return !!e3.parentNode;\n        }, t2.isVisible = function(e3) {\n          return e3.style.display !== \"none\";\n        };\n      }, 917: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.lazyInitialize = void 0, t2.lazyInitialize = function(e3, t3) {\n          var n = new IntersectionObserver(function(e4) {\n            e4.forEach(function(e5) {\n              e5.isIntersecting && (t3(), n.unobserve(e5.target));\n            });\n          });\n          n.observe(e3);\n        };\n      }, 377: function(e2, t2) {\n        var n = this && this.__assign || function() {\n          return (n = Object.assign || function(e3) {\n            for (var t3, n2 = 1, o2 = arguments.length; n2 < o2; n2++)\n              for (var r2 in t3 = arguments[n2])\n                Object.prototype.hasOwnProperty.call(t3, r2) && (e3[r2] = t3[r2]);\n            return e3;\n          }).apply(this, arguments);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.loadOptionsFromAttributes = t2.transformAttributeValue = t2.camelCaseToKebabCase = void 0, t2.camelCaseToKebabCase = function(e3) {\n          return e3.split(\"\").map(function(e4, t3) {\n            return e4.toUpperCase() === e4 ? (t3 !== 0 ? \"-\" : \"\") + e4.toLowerCase() : e4;\n          }).join(\"\");\n        };\n        var o = function(e3) {\n          return e3 || void 0;\n        }, r = function(e3) {\n          return e3 === \"\" || e3 === \"yes\" || e3 === \"true\";\n        }, i = function(e3) {\n          var t3 = e3 ? parseInt(e3, 10) : NaN;\n          return isNaN(t3) ? void 0 : t3;\n        }, a = \"%ESCAPED_COMMA%\";\n        t2.transformAttributeValue = function(e3, t3) {\n          var c, u;\n          switch (t3) {\n            case \"string\":\n              return o(e3);\n            case \"boolean\":\n              return r(e3);\n            case \"integer\":\n              return i(e3);\n            case \"function\":\n              return function(e4) {\n                var t4 = e4 && e4 in window ? window[e4] : void 0;\n                return typeof t4 == \"function\" ? t4 : void 0;\n              }(e3);\n            case \"array\":\n              return function(e4) {\n                if (e4)\n                  return e4.replace(/\\s/g, \"\").replace(/\\\\,/g, a).split(\",\").filter(function(e5) {\n                    return !!e5;\n                  }).map(function(e5) {\n                    return e5.replace(a, \",\");\n                  });\n              }(e3);\n            case \"record\":\n              return function(e4) {\n                if (e4)\n                  return e4.replace(/\\\\,/g, a).split(\",\").filter(function(e5) {\n                    return !!e5;\n                  }).map(function(e5) {\n                    return e5.replace(a, \",\");\n                  }).reduce(function(e5, t4) {\n                    var o2, r2 = t4.match(/^([^=]+)=(.*)$/);\n                    if (r2) {\n                      var i2 = r2[1], a2 = r2[2];\n                      return n(n({}, e5), ((o2 = {})[i2.trim()] = a2, o2));\n                    }\n                    return e5;\n                  }, {});\n              }(e3);\n            case \"integerOrBoolean\":\n              return (c = i(e3)) !== null && c !== void 0 ? c : r(e3);\n            case \"stringOrBoolean\":\n              return (u = o(e3)) !== null && u !== void 0 ? u : r(e3);\n            default:\n              throw new Error(\"Invalid attribute transformation \" + t3);\n          }\n        }, t2.loadOptionsFromAttributes = function(e3, o2) {\n          return Object.keys(o2).reduce(function(r2, i2) {\n            var a2;\n            return n(n({}, r2), ((a2 = {})[i2] = t2.transformAttributeValue(e3.getAttribute(\"data-tf-\" + t2.camelCaseToKebabCase(i2)), o2[i2]), a2));\n          }, {});\n        };\n      }, 563: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.isFullscreen = t2.isMobile = t2.isBigScreen = void 0, t2.isBigScreen = function() {\n          return window.screen.width >= 1024 && window.screen.height >= 768;\n        }, t2.isMobile = function() {\n          return /mobile|tablet|android/i.test(navigator.userAgent.toLowerCase());\n        }, t2.isFullscreen = function() {\n          return t2.isMobile() && !t2.isBigScreen();\n        };\n      }, 527: function(e2, t2, n) {\n        var o = this && this.__assign || function() {\n          return (o = Object.assign || function(e3) {\n            for (var t3, n2 = 1, o2 = arguments.length; n2 < o2; n2++)\n              for (var r2 in t3 = arguments[n2])\n                Object.prototype.hasOwnProperty.call(t3, r2) && (e3[r2] = t3[r2]);\n            return e3;\n          }).apply(this, arguments);\n        };\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.removeUndefinedKeys = void 0;\n        var r = n(346);\n        t2.removeUndefinedKeys = function(e3) {\n          return Object.entries(e3).filter(function(e4) {\n            var t3 = e4[1];\n            return r.isDefined(t3);\n          }).reduce(function(e4, t3) {\n            var n2, r2 = t3[0], i = t3[1];\n            return o(o({}, e4), ((n2 = {})[r2] = i, n2));\n          }, {});\n        };\n      }, 748: function(e2, t2, n) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.setAutoClose = void 0;\n        var o = n(554);\n        t2.setAutoClose = function(e3, t3, n2) {\n          if (t3 && n2) {\n            var r = typeof t3 == \"number\" ? t3 : 0;\n            window.addEventListener(\"message\", o.getFormSubmitHandler(e3, function() {\n              return setTimeout(n2, r);\n            }));\n          }\n        };\n      }, 533: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.setElementSize = void 0, t2.setElementSize = function(e3, t3) {\n          var n = t3.width, o = t3.height;\n          return n && (e3.style.width = n + \"px\"), o && (e3.style.height = o + \"px\"), e3;\n        };\n      }, 392: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.setupGaInstance = t2.sendGaIdMessage = void 0, t2.sendGaIdMessage = function(e3, t3, n2) {\n          var o = {embedId: e3, gaClientId: t3};\n          setTimeout(function() {\n            n2 && n2.contentWindow && n2.contentWindow.postMessage({type: \"ga-client-id\", data: o}, \"*\");\n          }, 0);\n        };\n        var n = function(e3) {\n          console.error(e3);\n        };\n        t2.setupGaInstance = function(e3, o, r) {\n          try {\n            var i = window[window.GoogleAnalyticsObject], a = typeof r == \"string\" ? r : void 0, c = function(e4, t3) {\n              return t3 ? e4.find(function(e5) {\n                return e5.get(\"trackingId\") === t3;\n              }) : e4[0];\n            }(i.getAll(), a);\n            c ? t2.sendGaIdMessage(o, c.get(\"clientId\"), e3) : n(\"Whoops! You enabled the shareGaInstance feature in your typeform embed but the tracker with ID \" + a + \" was not found. Make sure to include Google Analytics Javascript code before the Typeform Embed Javascript code in your page and use correct tracker ID. \");\n          } catch (e4) {\n            n(\"Whoops! You enabled the shareGaInstance feature in your typeform embed but the Google Analytics object has not been found. Make sure to include Google Analytics Javascript code before the Typeform Embed Javascript code in your page. \"), n(e4);\n          }\n        };\n      }, 451: function(e2, t2) {\n        Object.defineProperty(t2, \"__esModule\", {value: true}), t2.unmountElement = void 0, t2.unmountElement = function(e3) {\n          var t3;\n          (t3 = e3.parentNode) === null || t3 === void 0 || t3.removeChild(e3);\n        };\n      }}, t = {};\n      return function n(o) {\n        if (t[o])\n          return t[o].exports;\n        var r = t[o] = {exports: {}};\n        return e[o].call(r.exports, r, r.exports, n), r.exports;\n      }(920);\n    }();\n  });\n});\nvar __pika_web_default_export_for_treeshaking__ = /* @__PURE__ */ getDefaultExportFromCjs(build);\nvar createPopover = build.createPopover;\nvar createPopup = build.createPopup;\nvar createSidetab = build.createSidetab;\nvar createSlider = build.createSlider;\nvar createWidget = build.createWidget;\nexport default __pika_web_default_export_for_treeshaking__;\nexport {build as __moduleExports, createPopover, createPopup, createSidetab, createSlider, createWidget};\n", "import{containerStyles,emptyStateStyle as defaultEmptyStateStyle}from\"https://framer.com/m/framer/default-utils.js@^0.43.0\";export const emptyStateStyle={...containerStyles,...defaultEmptyStateStyle,textAlign:\"center\",padding:15,width:200,height:100,overflow:\"hidden\"};export const neutralStateStyle={...emptyStateStyle,color:\"#09f\",background:\"rgb(0, 153, 255, 0.1)\",borderColor:\"#09f\"};export const stateTitleStyle={fontSize:12,fontWeight:600,margin:0};export const stateParagraphStyle={fontSize:12,maxWidth:200,lineHeight:1.4,margin:\"5px 0 0 0\"};\nexport const __FramerMetadata__ = {\"exports\":{\"neutralStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"stateTitleStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"stateParagraphStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./styles.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useRef,useEffect}from\"react\";import{addPropertyControls,ControlType,withCSS}from\"framer\";import{motion}from\"framer-motion\";import{containerStyles}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{createWidget}from\"https://cdn.skypack.dev/@typeform/embed@1.32.0\";import{emptyStateStyle,stateParagraphStyle,stateTitleStyle}from\"https://framer.com/m/framer/integrations-styles.js@0.2.0\";const Widget=withCSS(function Widget({id,style,onSubmit,hideFooter,hideHeaders,disableAutoFocus,...props}){const container=useRef(null);useEffect(()=>{if(container.current){const widget=createWidget(id,{width:\"100%\",height:\"100%\",container:container.current,transitiveSearchParams:[\"utm_source\",\"utm_medium\",\"utm_campaign\",],onSubmit,hideFooter,hideHeaders,disableAutoFocus});return()=>{widget.unmount();};}},[id,onSubmit,hideFooter,hideHeaders,disableAutoFocus]);return /*#__PURE__*/ _jsx(\"div\",{style:style,className:\"framer-typeform\",ref:container,...props});},[\".framer-typeform div, .framer-typeform iframe { width: 100%; height: 100%; border: none !important; }\",]);/**\n * TYPEFORM\n *\n * @framerIntrinsicWidth 800\n * @framerIntrinsicHeight 600\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Typeform({formId,style,onSubmit,hideFooter,hideHeaders,autoFocus,...props}){function handleSubmit(e){if(onSubmit!==undefined){onSubmit(e);}if(globalThis.__send_framer_conversion__){globalThis.__send_framer_conversion__(\"typeform\");}}return formId?/*#__PURE__*/ _jsx(motion.div,{style:{...containerStyles,...style},...props,children:/*#__PURE__*/ _jsx(Widget,{id:formId,style:{width:\"100%\",height:\"100%\"},onSubmit:handleSubmit,hideFooter:hideFooter,hideHeaders:hideHeaders,disableAutoFocus:!autoFocus})}):/*#__PURE__*/ _jsxs(motion.div,{style:{...emptyStateStyle,...style},...props,children:[/*#__PURE__*/ _jsx(\"h1\",{style:stateTitleStyle,children:\"Typeform\"}),/*#__PURE__*/ _jsx(\"p\",{style:stateParagraphStyle,children:\"Set a form ID in the Properties.\"})]});};addPropertyControls(Typeform,{formId:{title:\"ID\",type:ControlType.String,placeholder:\"12ABCD34\",defaultValue:\"R2s5BM\",description:\"Create a [Typeform](https://www.typeform.com/) account, add a form and copy its ID. [Learn more\u2026](https://www.framer.com/sites/integrations/typeform/)\"},hideFooter:{title:\"Footer\",type:ControlType.Boolean,enabledTitle:\"Hide\",disabledTitle:\"Show\",defaultValue:false},hideHeaders:{title:\"Headers\",type:ControlType.Boolean,enabledTitle:\"Hide\",disabledTitle:\"Show\",defaultValue:false},autoFocus:{title:\"Auto-focus\",type:ControlType.Boolean,enabledTitle:\"On\",disabledTitle:\"Off\",defaultValue:true},onSubmit:{type:ControlType.EventHandler}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Typeform\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"800\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"600\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Typeform.map", "let Component;\nvar Home_default = (React) => {\n  if (!Component) {\n    const HomeIcon = React.forwardRef(function HomeIcon2({\n      title,\n      titleId,\n      ...props\n    }, svgRef) {\n      return /* @__PURE__ */ React.createElement(\"svg\", Object.assign({\n        xmlns: \"http://www.w3.org/2000/svg\",\n        viewBox: \"0 0 24 24\",\n        fill: \"currentColor\",\n        \"aria-hidden\": \"true\",\n        \"data-slot\": \"icon\",\n        ref: svgRef,\n        \"aria-labelledby\": titleId\n      }, props), title ? /* @__PURE__ */ React.createElement(\"title\", {\n        id: titleId\n      }, title) : null, /* @__PURE__ */ React.createElement(\"path\", {\n        d: \"M11.47 3.841a.75.75 0 0 1 1.06 0l8.69 8.69a.75.75 0 1 0 1.06-1.061l-8.689-8.69a2.25 2.25 0 0 0-3.182 0l-8.69 8.69a.75.75 0 1 0 1.061 1.06l8.69-8.689Z\"\n      }), /* @__PURE__ */ React.createElement(\"path\", {\n        d: \"m12 5.432 8.159 8.159c.03.03.06.058.091.086v6.198c0 1.035-.84 1.875-1.875 1.875H15a.75.75 0 0 1-.75-.75v-4.5a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0-.75.75V21a.75.75 0 0 1-.75.75H5.625a1.875 1.875 0 0 1-1.875-1.875v-6.198a2.29 2.29 0 0 0 .091-.086L12 5.432Z\"\n      }));\n    });\n    Component = HomeIcon;\n  }\n  return Component;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nexport {\n  __FramerMetadata__,\n  Home_default as default\n};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/hero-icons/Home.js@0.0.28\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"AcademicCap\",\"AdjustmentsVertical\",\"ArchiveBox\",\"ArchiveBoxArrowDown\",\"ArchiveBoxXMark\",\"ArrowDown\",\"ArrowDownCircle\",\"ArrowDownLeft\",\"ArrowDownOnSquare\",\"ArrowDownRight\",\"ArrowDownTray\",\"ArrowLeft\",\"ArrowLeftCircle\",\"ArrowLeftOnRectangle\",\"ArrowLongDown\",\"ArrowLongLeft\",\"ArrowLongRight\",\"ArrowLongUp\",\"ArrowPath\",\"ArrowRight\",\"ArrowRightCircle\",\"ArrowSmallDown\",\"ArrowSmallLeft\",\"ArrowSmallRight\",\"ArrowSmallUp\",\"ArrowTrendingDown\",\"ArrowTrendingUp\",\"ArrowUp\",\"ArrowUpCircle\",\"ArrowUpLeft\",\"ArrowUpOnSquare\",\"ArrowUpOnSquareStack\",\"ArrowUpRight\",\"ArrowUpTray\",\"ArrowUturnDown\",\"ArrowUturnLeft\",\"ArrowUturnRight\",\"ArrowUturnUp\",\"ArrowsPointingIn\",\"ArrowsPointingOut\",\"ArrowsRightLeft\",\"ArrowsUpDown\",\"AtSymbol\",\"Backspace\",\"Backward\",\"Banknotes\",\"Bars2\",\"Bars3\",\"Bars3BottomLeft\",\"Bars3BottomRight\",\"Bars3CenterLeft\",\"Bars4\",\"BarsArrowDown\",\"BarsArrowUp\",\"Battery0\",\"Battery100\",\"Battery50\",\"Beaker\",\"Bell\",\"BellAlert\",\"BellSlash\",\"BellSnooze\",\"Bolt\",\"BoltSlash\",\"BookOpen\",\"Bookmark\",\"BookmarkSlash\",\"BookmarkSquare\",\"Briefcase\",\"BugAnt\",\"BuildingLibrary\",\"BuildingOffice\",\"BuildingOffice2\",\"BuildingStorefront\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarDays\",\"Camera\",\"ChartBar\",\"ChartBarSquare\",\"ChartPie\",\"ChatBubbleLeft\",\"ChatBubbleLeftRight\",\"ChatBubbleOvalLeft\",\"Check\",\"CheckBadge\",\"CheckCircle\",\"ChevronDoubleDown\",\"ChevronDoubleLeft\",\"ChevronDoubleRight\",\"ChevronDoubleUp\",\"ChevronDown\",\"ChevronLeft\",\"ChevronRight\",\"ChevronUp\",\"ChevronUpDown\",\"CircleStack\",\"Clipboard\",\"ClipboardDocument\",\"Clock\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CodeBracket\",\"CodeBracketSquare\",\"Cog\",\"Cog6Tooth\",\"Cog8Tooth\",\"CommandLine\",\"ComputerDesktop\",\"CpuChip\",\"CreditCard\",\"Cube\",\"CubeTransparent\",\"CurrencyBangladeshi\",\"CurrencyDollar\",\"CurrencyEuro\",\"CurrencyPound\",\"CurrencyRupee\",\"CurrencyYen\",\"CursorArrowRays\",\"CursorArrowRipple\",\"DevicePhoneMobile\",\"DeviceTablet\",\"Document\",\"DocumentArrowDown\",\"DocumentArrowUp\",\"DocumentChartBar\",\"DocumentCheck\",\"DocumentDuplicate\",\"DocumentMinus\",\"DocumentPlus\",\"DocumentText\",\"EllipsisHorizontal\",\"EllipsisVertical\",\"Envelope\",\"EnvelopeOpen\",\"ExclamationCircle\",\"ExclamationTriangle\",\"Eye\",\"EyeDropper\",\"EyeSlash\",\"FaceFrown\",\"FaceSmile\",\"Film\",\"FingerPrint\",\"Fire\",\"Flag\",\"Folder\",\"FolderArrowDown\",\"FolderMinus\",\"FolderOpen\",\"FolderPlus\",\"Forward\",\"Funnel\",\"Gif\",\"Gift\",\"GiftTop\",\"GlobeAlt\",\"GlobeAmericas\",\"GlobeAsiaAustralia\",\"GlobeEuropeAfrica\",\"HandRaised\",\"HandThumbDown\",\"HandThumbUp\",\"Hashtag\",\"Heart\",\"Home\",\"HomeModern\",\"Identification\",\"Inbox\",\"InboxArrowDown\",\"InboxStack\",\"InformationCircle\",\"Key\",\"Language\",\"Lifebuoy\",\"LightBulb\",\"Link\",\"ListBullet\",\"LockClosed\",\"LockOpen\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"Map\",\"MapPin\",\"Megaphone\",\"Microphone\",\"Minus\",\"MinusCircle\",\"MinusSmall\",\"Moon\",\"MusicalNote\",\"Newspaper\",\"NoSymbol\",\"PaintBrush\",\"PaperAirplane\",\"PaperClip\",\"Pause\",\"PauseCircle\",\"Pencil\",\"PencilSquare\",\"Phone\",\"PhoneArrowDownLeft\",\"PhoneArrowUpRight\",\"PhoneXMark\",\"Photo\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Plus\",\"PlusCircle\",\"PlusSmall\",\"Power\",\"PresentationChartBar\",\"Printer\",\"PuzzlePiece\",\"QrCode\",\"QuestionMarkCircle\",\"QueueList\",\"Radio\",\"ReceiptPercent\",\"ReceiptRefund\",\"RectangleGroup\",\"RectangleStack\",\"RocketLaunch\",\"Rss\",\"Scale\",\"Scissors\",\"Server\",\"ServerStack\",\"Share\",\"ShieldCheck\",\"ShieldExclamation\",\"ShoppingBag\",\"ShoppingCart\",\"Signal\",\"SignalSlash\",\"Sparkles\",\"SpeakerWave\",\"SpeakerXMark\",\"Square2Stack\",\"Square3Stack3D\",\"Squares2X2\",\"SquaresPlus\",\"Star\",\"Stop\",\"StopCircle\",\"Sun\",\"Swatch\",\"TableCells\",\"Tag\",\"Ticket\",\"Trash\",\"Trophy\",\"Truck\",\"Tv\",\"User\",\"UserCircle\",\"UserGroup\",\"UserMinus\",\"UserPlus\",\"Users\",\"Variable\",\"VideoCamera\",\"VideoCameraSlash\",\"ViewColumns\",\"ViewfinderCircle\",\"Wallet\",\"Wifi\",\"Window\",\"Wrench\",\"WrenchScrewdriver\",\"XCircle\",\"XMark\",\"index\"];const moduleBaseUrl=\"https://framer.com/m/hero-icons/\";const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * HERO\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.28`;const module=await import(/* webpackIgnore: true */iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch{if(isMounted.current)setSelectedIcon(null);}}// Import module when new style or icon is selected\nuseEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/_jsx(NullState,{}):null;return /*#__PURE__*/_jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/_jsx(SelectedIcon,{style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Hero\";Icon.defaultProps={width:24,height:24,iconSelection:\"Home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Hero site](https://heroicons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Hero.map", "// Generated by Framer (41c59c7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"L1BZSQkVJ\",\"Prkv1Ue5s\"];const serializationHash=\"framer-CnLFk\";const variantClassNames={L1BZSQkVJ:\"framer-v-1h2rwfy\",Prkv1Ue5s:\"framer-v-10f0z7n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Closed:\"L1BZSQkVJ\",Open:\"Prkv1Ue5s\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"L1BZSQkVJ\",W88zB8mIG:(_ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref2!==void 0?_ref2:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,W88zB8mIG,T8rQFvSBR,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"L1BZSQkVJ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1ad1wae=activeVariantCallback(async(...args)=>{setVariant(\"Prkv1Ue5s\");});const onTap1kl71ww=activeVariantCallback(async(...args)=>{setVariant(\"L1BZSQkVJ\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Prkv1Ue5s\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1h2rwfy\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"L1BZSQkVJ\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({Prkv1Ue5s:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nbxt70\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"p1X6mgBCs\",onTap:onTap1ad1wae,...addPropertyOverrides({Prkv1Ue5s:{onTap:onTap1kl71ww}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z6ya5o\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"F160aPc7A\",style:{opacity:.3,rotate:0},variants:{Prkv1Ue5s:{rotate:45}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-z1rzdl\",layoutDependency:layoutDependency,layoutId:\"nlpwM7lYE\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-45gk0\",layoutDependency:layoutDependency,layoutId:\"nKmW_qg93\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"What is Framer?\"})}),className:\"framer-1o40h84\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"s_7s1r2CQ\",style:{\"--extracted-r6o4lv\":\"rgb(51, 51, 51)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-n2tox0\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"bkN1HQ4WO\",style:{opacity:0},variants:{Prkv1Ue5s:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1r7y395\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"K5SKMI3YH\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:T8rQFvSBR,variants:{Prkv1Ue5s:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CnLFk.framer-7y69n3, .framer-CnLFk .framer-7y69n3 { display: block; }\",\".framer-CnLFk.framer-1h2rwfy { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 400px; }\",\".framer-CnLFk .framer-nbxt70 { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 40px; position: relative; user-select: none; width: 100%; }\",\".framer-CnLFk .framer-z6ya5o { flex: none; height: 16px; left: 0px; overflow: hidden; position: absolute; top: 25px; width: 16px; z-index: 1; }\",\".framer-CnLFk .framer-z1rzdl { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-CnLFk .framer-45gk0 { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-CnLFk .framer-1o40h84 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-CnLFk .framer-n2tox0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 40px; position: relative; width: 100%; }\",\".framer-CnLFk .framer-1r7y395 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CnLFk.framer-1h2rwfy, .framer-CnLFk .framer-nbxt70, .framer-CnLFk .framer-n2tox0 { gap: 0px; } .framer-CnLFk.framer-1h2rwfy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-CnLFk.framer-1h2rwfy > :first-child, .framer-CnLFk .framer-n2tox0 > :first-child { margin-top: 0px; } .framer-CnLFk.framer-1h2rwfy > :last-child, .framer-CnLFk .framer-n2tox0 > :last-child { margin-bottom: 0px; } .framer-CnLFk .framer-nbxt70 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-CnLFk .framer-nbxt70 > :first-child { margin-left: 0px; } .framer-CnLFk .framer-nbxt70 > :last-child { margin-right: 0px; } .framer-CnLFk .framer-n2tox0 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 88\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Prkv1Ue5s\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerhtrhpIOez=withCSS(Component,css,\"framer-CnLFk\");export default FramerhtrhpIOez;FramerhtrhpIOez.displayName=\"Row\";FramerhtrhpIOez.defaultProps={height:88,width:400};addPropertyControls(FramerhtrhpIOez,{variant:{options:[\"L1BZSQkVJ\",\"Prkv1Ue5s\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerhtrhpIOez,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhtrhpIOez\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"88\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"400\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Prkv1Ue5s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./htrhpIOez.map", "// Generated by Framer (41c59c7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Row from\"https://framerusercontent.com/modules/P40ucOGzaSXkCuJNn5jp/81ZrdALX6dF0Wd4PEvFb/htrhpIOez.js\";const RowFonts=getFonts(Row);const cycleOrder=[\"wOANOc2wo\"];const serializationHash=\"framer-69afH\";const variantClassNames={wOANOc2wo:\"framer-v-1jxtn2i\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"wOANOc2wo\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1jxtn2i\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"wOANOc2wo\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-40c03004-286a-43c1-b36f-58b60663152c, rgb(242, 242, 242))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-mmpsfj-container\",layoutDependency:layoutDependency,layoutId:\"w33qRRq0M-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"w33qRRq0M\",layoutId:\"w33qRRq0M\",style:{width:\"100%\"},T8rQFvSBR:\"Funding is preferred but not required; if bootstrapped, we recommend that founders have between $250,000 - $500,000 set aside for growth\",variant:\"L1BZSQkVJ\",W88zB8mIG:\"Do I need Funding?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-k793n0\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"wlOX68QiQ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-khbwhc-container\",layoutDependency:layoutDependency,layoutId:\"Fwk3ZFVK8-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"Fwk3ZFVK8\",layoutId:\"Fwk3ZFVK8\",style:{width:\"100%\"},T8rQFvSBR:\"Yes, it does work for enterprises, but the KPIs, conversion rate, and sales cycle length are all skewed, however, you will still be very profitable and very fundable.\\n\\nSubject to the first 60 days of engagement, we may request an extension/ alteration of the deliverable timeline to sort and validate the given enterprise sales cycle length.\",variant:\"L1BZSQkVJ\",W88zB8mIG:\"Does this Work for Enterprise?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bhdv6a\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"st4yeHiJZ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15xw3xq-container\",layoutDependency:layoutDependency,layoutId:\"Em0IYJUMR-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"Em0IYJUMR\",layoutId:\"Em0IYJUMR\",style:{width:\"100%\"},T8rQFvSBR:\"It took us five years to develop this system and dial it in; even with the above frameworks, there is a tremendous amount of specialized skill that only comes from experience.\\n\\nIf you are looking for the fastest path to profitability and have the funds to do so, this is it.\",variant:\"L1BZSQkVJ\",W88zB8mIG:\"Why wouldn't I just do this manually?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-quxyjx-container\",layoutDependency:layoutDependency,layoutId:\"TDmrOzyy1-container\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"TDmrOzyy1\",layoutId:\"TDmrOzyy1\",style:{width:\"100%\"},T8rQFvSBR:\"Roughly equivalent to 0.5-3.5% of the increase in enterprise value.\\n\\nBook A Call To Find Out.\",variant:\"L1BZSQkVJ\",W88zB8mIG:\"How Much Does it Cost?\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-69afH.framer-16fct4y, .framer-69afH .framer-16fct4y { display: block; }\",\".framer-69afH.framer-1jxtn2i { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-69afH .framer-mmpsfj-container, .framer-69afH .framer-khbwhc-container, .framer-69afH .framer-15xw3xq-container, .framer-69afH .framer-quxyjx-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-69afH .framer-k793n0, .framer-69afH .framer-1bhdv6a { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-69afH.framer-1jxtn2i { gap: 0px; } .framer-69afH.framer-1jxtn2i > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-69afH.framer-1jxtn2i > :first-child { margin-top: 0px; } .framer-69afH.framer-1jxtn2i > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 258\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZ56ZqZQoj=withCSS(Component,css,\"framer-69afH\");export default FramerZ56ZqZQoj;FramerZ56ZqZQoj.displayName=\"Accordion\";FramerZ56ZqZQoj.defaultProps={height:258,width:1e3};addFonts(FramerZ56ZqZQoj,[{explicitInter:true,fonts:[]},...RowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZ56ZqZQoj\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"258\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1000\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Z56ZqZQoj.map", "// Generated by Framer (fd7a51d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Vimeo from\"https://framerusercontent.com/modules/0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js\";import Arc from\"https://framerusercontent.com/modules/dZ9c6z10n71dmz3JQVi4/0dSuyhnHD9HrUa3w2XFr/Arc.js\";import Typeform from\"https://framerusercontent.com/modules/F6IzcnH090BibK8JiJh0/MfEMY4LeLoFqPUtJ3OJA/Typeform.js\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";import FooterAgain from\"#framer/local/canvasComponent/ayq4q5aSj/ayq4q5aSj.js\";import NavigationCopy2 from\"#framer/local/canvasComponent/k_pzjYQgL/k_pzjYQgL.js\";import NavigationCopy from\"#framer/local/canvasComponent/p5RZSHWXb/p5RZSHWXb.js\";import Accordion from\"#framer/local/canvasComponent/Z56ZqZQoj/Z56ZqZQoj.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationCopyFonts=getFonts(NavigationCopy);const NavigationCopy2Fonts=getFonts(NavigationCopy2);const VimeoFonts=getFonts(Vimeo);const MotionDivWithFX=withFX(motion.div);const ArcFonts=getFonts(Arc);const HeroFonts=getFonts(Hero);const RichTextWithFX=withFX(RichText);const TypeformFonts=getFonts(Typeform);const AccordionFonts=getFonts(Accordion);const FooterAgainFonts=getFonts(FooterAgain);const breakpoints={coCKftaOF:\"(min-width: 810px) and (max-width: 1199px)\",RgmckPE9P:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-gxRKj\";const variantClassNames={coCKftaOF:\"framer-v-1caweb6\",RgmckPE9P:\"framer-v-32whee\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition1={damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:50};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={delay:0,duration:.95,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition3={damping:40,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:20};const transition4={damping:40,delay:.3,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:20};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"RgmckPE9P\",Tablet:\"coCKftaOF\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"RgmckPE9P\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"RgmckPE9P\")return true;return false;};const elementId=useRouteElementId(\"EqjaA_K8a\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"LAR1v2O4k\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"itfenGLSE\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"HfIi_e8IC\");const ref5=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:ref??ref1,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vbzw0b-container hidden-32whee\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{variant:\"eFBYQFg82\"}},children:/*#__PURE__*/_jsx(NavigationCopy,{height:\"100%\",id:\"jhpehn98S\",layoutId:\"jhpehn98S\",style:{height:\"100%\",width:\"100%\"},variant:\"qhFtOEIbB\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RgmckPE9P:{height:64,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wixvng-container hidden-72rtr7 hidden-1caweb6\",children:/*#__PURE__*/_jsx(NavigationCopy2,{height:\"100%\",id:\"NKDfb2efq\",layoutId:\"NKDfb2efq\",style:{width:\"100%\"},variant:\"hjR8xgcYw\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pu2hsu\",\"data-framer-name\":\"Slides\",children:[/*#__PURE__*/_jsx(\"header\",{className:\"framer-thlm9j\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RgmckPE9P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"39px\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-3da8bbe3-1e91-4b8a-9f8d-3e105cf5b92a, rgb(52, 133, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"40px\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Seamless Deal Flow.\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"40px\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"40px\"},children:\"Completely Automated.\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"40px\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\" \"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"63px\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-3da8bbe3-1e91-4b8a-9f8d-3e105cf5b92a, rgb(52, 133, 255))\"},children:[/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:[\"Seamless Deal Flow.\",/*#__PURE__*/_jsx(\"br\",{})]}),\"Completely Automated.\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\" \"})]})}),className:\"framer-fkzrf1\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RgmckPE9P:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"10px\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"14px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"GET YOUR FOOT IN THE DOOR OF ANY COMPANY\"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"rgb(110, 110, 110)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\" \"})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(110, 110, 110)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\" \"})})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"rgb(110, 110, 110)\"},children:\"By Leveraging AI and Automated Outbound Systems\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"GET YOUR FOOT IN THE DOOR OF ANY COMPANY\"}),/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-text-color\":\"rgb(110, 110, 110)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"  \"}),\" Using Automated Outbound Systems\"]})]})}),className:\"framer-mqq8pp\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b9o2oa-container\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:25,bottomLeftRadius:25,bottomRightRadius:25,controls:false,height:\"100%\",id:\"LBX291g4X\",isMixedBorderRadius:false,layoutId:\"LBX291g4X\",loop:true,mute:true,style:{height:\"100%\",width:\"100%\"},topLeftRadius:25,topRightRadius:25,video:\"https://vimeo.com/931936722?share=copy\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-dk536s hidden-32whee\",\"data-framer-name\":\"Videos slides\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wkmocq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kwsc6t\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"61px\",\"--framer-line-height\":\"0.9em\"},children:\"About \"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-line-height\":\"0.9em\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"61px\"},children:\"CrossTempo \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(52, 133, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\u2192\"})})]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"61px\",\"--framer-line-height\":\"0.9em\"},children:\"About \"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"61px\",\"--framer-line-height\":\"0.9em\"},children:[\"CrossTempo \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(52, 133, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\u2192\"})})]})]}),className:\"framer-1r7qbux hidden-32whee\",fonts:[\"CUSTOM;Degular Regular\"],id:elementId,ref:ref2,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-text-alignment\":\"left\"},children:\"In 2020, Cross Tempo leveraged its marketing background to help Established and Emerging companies in the technology markets, making it's mark with large scale marketing campaigns. Since then, Cross Tempo has engaged with over a hundred Fortune 500 companies, setting the stage for future collaborations and transformative projects in the technology sector.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-text-alignment\":\"left\"},children:\"Expanding our footprint in 2021/22, we moved into the AI markets, driving enterprise deal flow internationally. This shift enabled us to channel a projected $200M+\\xa0globally, showcasing our growing market influence.\"})]}),className:\"framer-1xq9oaa\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1cvw902\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qgaqrx\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8utsxf\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-54c8o8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"57px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"$5,000,000+\"})}),className:\"framer-853ho4\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Average Projected Enterprise Client ARR Growth\"})})},RgmckPE9P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Average Projected Enterprise Client ARR Growth\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Average Projected Enterprise Client ARR Growth\"})}),className:\"framer-knlwbu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q5cttw\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1065xmy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"57px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"25%+\"})}),className:\"framer-mn69ee\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Of Fortune 500 Booked \"})})},RgmckPE9P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"11px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"12px\"},children:\"Of Fortune 500 Booked \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif'},children:\" \"})]})}),fonts:[\"CUSTOM;Degular Regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Of Fortune 500 Booked \"})}),className:\"framer-fqrt3q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19xt6p6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"57px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"21+\"})}),className:\"framer-1wk0bvm\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Employees\"})})},RgmckPE9P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Employees\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Employees\"})}),className:\"framer-160pets\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-usmg8k\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eh6n6b\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"57px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"$200,000,000+\"})}),className:\"framer-1twf62p\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Projected Deal Flow\"})})},RgmckPE9P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"16px\"},children:\"Projected Deal Flow\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif'},children:\" \"})]})}),fonts:[\"CUSTOM;Degular Regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Projected Deal Flow\"})}),className:\"framer-q6jqc0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"51px\",\"--framer-line-height\":\"0.9em\"},children:\"About \"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"51px\",\"--framer-line-height\":\"0.9em\"},children:[\"CrossTempo \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(52, 133, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\u2192\"})})]})]}),className:\"framer-1lkplv9 hidden-72rtr7 hidden-1caweb6\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q4t95w\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c5nx9n-container\",children:/*#__PURE__*/_jsx(Arc,{alignmentBaseline:\"top\",color:\"rgb(153, 153, 153)\",cylinderHeight:19,flip:false,font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"yhrflaiIO\",layoutId:\"yhrflaiIO\",startOffset:0,style:{height:\"100%\",width:\"100%\"},text:\"10x Your Sales Organization With CrossTempo\",type:false,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-189tnql\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"61px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Whitepaper\"})}),className:\"framer-j8p1ox hidden-32whee\",fonts:[\"CUSTOM;Degular Regular\"],id:elementId1,ref:ref3,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RgmckPE9P:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our whitepaper explains our exact, step-by-step process in Video & PDF format.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Exploiting the competitive advantages in the marketplace is the easiest & fastest way to adapt to market conditions, create incomparable offer positioning, and ensure you're able to outcompete all of your current & future competition in the marketplace.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Our whitepaper explains our exact, step-by-step process in Video & PDF format.\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Exploiting the competitive advantages in the marketplace is the easiest & fastest way to adapt to market conditions, create incomparable offer positioning, and ensure you're able to outcompete all of your current & future competition in the marketplace.\"})})]}),className:\"framer-nkfmxn\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/crosstempo/discovery\",nodeId:\"V0kyfOyQw\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1nrc1a2 framer-lux5qc\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Click Here For Document\"})}),className:\"framer-xu8b0j\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Whitepaper\"})}),className:\"framer-q6l0q5 hidden-72rtr7 hidden-1caweb6\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ljk0fb\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RgmckPE9P:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"33px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(52, 133, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Companies We've Booked \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"33px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(52, 133, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"With in the Last 6 Months:\"})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"61px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(52, 133, 255)\"},children:\"Companies We've Booked \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"61px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(52, 133, 255)\"},children:\"With in the Last 6 Months:\"})]}),className:\"framer-42y3bd\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7pbgd5\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o0ruqu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:271,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2962+0+224.69999999999996+0+0+0+46.91666666666667),pixelHeight:271,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"185.5px\",src:\"https://framerusercontent.com/images/6ln67mpusS9NzIaQhmRsdSVHVw4.png\",srcSet:\"https://framerusercontent.com/images/6ln67mpusS9NzIaQhmRsdSVHVw4.png?scale-down-to=512 512w,https://framerusercontent.com/images/6ln67mpusS9NzIaQhmRsdSVHVw4.png 800w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:271,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2739+0+260.5+0+0+0+31.8125),pixelHeight:271,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"125.6667px\",src:\"https://framerusercontent.com/images/6ln67mpusS9NzIaQhmRsdSVHVw4.png\",srcSet:\"https://framerusercontent.com/images/6ln67mpusS9NzIaQhmRsdSVHVw4.png?scale-down-to=512 512w,https://framerusercontent.com/images/6ln67mpusS9NzIaQhmRsdSVHVw4.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:271,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2186+0+193.19999999999996+0+0+0+51.25),pixelHeight:271,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"280px\",src:\"https://framerusercontent.com/images/6ln67mpusS9NzIaQhmRsdSVHVw4.png\",srcSet:\"https://framerusercontent.com/images/6ln67mpusS9NzIaQhmRsdSVHVw4.png?scale-down-to=512 512w,https://framerusercontent.com/images/6ln67mpusS9NzIaQhmRsdSVHVw4.png 800w\"},className:\"framer-o6vd90\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yjm9sd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:480,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2962+0+224.69999999999996+0+0+27.41666666666667),pixelHeight:480,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:\"150px\",src:\"https://framerusercontent.com/images/UCpgLBKMjNkC95B5vqZw2L5Xn70.png\",srcSet:\"https://framerusercontent.com/images/UCpgLBKMjNkC95B5vqZw2L5Xn70.png?scale-down-to=512 512w,https://framerusercontent.com/images/UCpgLBKMjNkC95B5vqZw2L5Xn70.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UCpgLBKMjNkC95B5vqZw2L5Xn70.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/UCpgLBKMjNkC95B5vqZw2L5Xn70.png 2560w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:480,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2739+0+260.5+0+0+34.8125),pixelHeight:480,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:\"211px\",src:\"https://framerusercontent.com/images/UCpgLBKMjNkC95B5vqZw2L5Xn70.png\",srcSet:\"https://framerusercontent.com/images/UCpgLBKMjNkC95B5vqZw2L5Xn70.png?scale-down-to=512 512w,https://framerusercontent.com/images/UCpgLBKMjNkC95B5vqZw2L5Xn70.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UCpgLBKMjNkC95B5vqZw2L5Xn70.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/UCpgLBKMjNkC95B5vqZw2L5Xn70.png 2560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:480,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2186+0+193.19999999999996+0+0+5.25),pixelHeight:480,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:\"211px\",src:\"https://framerusercontent.com/images/UCpgLBKMjNkC95B5vqZw2L5Xn70.png\",srcSet:\"https://framerusercontent.com/images/UCpgLBKMjNkC95B5vqZw2L5Xn70.png?scale-down-to=512 512w,https://framerusercontent.com/images/UCpgLBKMjNkC95B5vqZw2L5Xn70.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UCpgLBKMjNkC95B5vqZw2L5Xn70.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/UCpgLBKMjNkC95B5vqZw2L5Xn70.png 2560w\"},className:\"framer-1cmf8o6\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ojf9xm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1617,intrinsicWidth:4400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2962+0+224.69999999999996+0+0+19.41666666666667),pixelHeight:1617,pixelWidth:4400,positionX:\"center\",positionY:\"center\",sizes:\"182px\",src:\"https://framerusercontent.com/images/2Oxe563YCfZZe1CcRSR2R0p7HM.jpg\",srcSet:\"https://framerusercontent.com/images/2Oxe563YCfZZe1CcRSR2R0p7HM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2Oxe563YCfZZe1CcRSR2R0p7HM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2Oxe563YCfZZe1CcRSR2R0p7HM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/2Oxe563YCfZZe1CcRSR2R0p7HM.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/2Oxe563YCfZZe1CcRSR2R0p7HM.jpg 4400w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1617,intrinsicWidth:4400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2739+0+260.5+0+0+25.8125),pixelHeight:1617,pixelWidth:4400,positionX:\"center\",positionY:\"center\",sizes:\"120px\",src:\"https://framerusercontent.com/images/2Oxe563YCfZZe1CcRSR2R0p7HM.jpg\",srcSet:\"https://framerusercontent.com/images/2Oxe563YCfZZe1CcRSR2R0p7HM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2Oxe563YCfZZe1CcRSR2R0p7HM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2Oxe563YCfZZe1CcRSR2R0p7HM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/2Oxe563YCfZZe1CcRSR2R0p7HM.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/2Oxe563YCfZZe1CcRSR2R0p7HM.jpg 4400w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1617,intrinsicWidth:4400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2186+0+193.19999999999996+0+0+13.75),pixelHeight:1617,pixelWidth:4400,positionX:\"center\",positionY:\"center\",sizes:\"239px\",src:\"https://framerusercontent.com/images/2Oxe563YCfZZe1CcRSR2R0p7HM.jpg\",srcSet:\"https://framerusercontent.com/images/2Oxe563YCfZZe1CcRSR2R0p7HM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2Oxe563YCfZZe1CcRSR2R0p7HM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2Oxe563YCfZZe1CcRSR2R0p7HM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/2Oxe563YCfZZe1CcRSR2R0p7HM.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/2Oxe563YCfZZe1CcRSR2R0p7HM.jpg 4400w\"},className:\"framer-129gwy1\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lemf3z\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:387,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2962+0+224.69999999999996+0+0+0+30.41666666666667),pixelHeight:387,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:\"186px\",src:\"https://framerusercontent.com/images/NGYA4Lk1jw9VyiLTNp81yDXC9To.png\",srcSet:\"https://framerusercontent.com/images/NGYA4Lk1jw9VyiLTNp81yDXC9To.png?scale-down-to=512 512w,https://framerusercontent.com/images/NGYA4Lk1jw9VyiLTNp81yDXC9To.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NGYA4Lk1jw9VyiLTNp81yDXC9To.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NGYA4Lk1jw9VyiLTNp81yDXC9To.png 2560w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:387,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2739+0+260.5+0+93.625+0+30.3125),pixelHeight:387,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:\"114px\",src:\"https://framerusercontent.com/images/NGYA4Lk1jw9VyiLTNp81yDXC9To.png\",srcSet:\"https://framerusercontent.com/images/NGYA4Lk1jw9VyiLTNp81yDXC9To.png?scale-down-to=512 512w,https://framerusercontent.com/images/NGYA4Lk1jw9VyiLTNp81yDXC9To.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NGYA4Lk1jw9VyiLTNp81yDXC9To.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NGYA4Lk1jw9VyiLTNp81yDXC9To.png 2560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:387,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2186+0+193.19999999999996+0+0+0+34.25),pixelHeight:387,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:\"238px\",src:\"https://framerusercontent.com/images/NGYA4Lk1jw9VyiLTNp81yDXC9To.png\",srcSet:\"https://framerusercontent.com/images/NGYA4Lk1jw9VyiLTNp81yDXC9To.png?scale-down-to=512 512w,https://framerusercontent.com/images/NGYA4Lk1jw9VyiLTNp81yDXC9To.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NGYA4Lk1jw9VyiLTNp81yDXC9To.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NGYA4Lk1jw9VyiLTNp81yDXC9To.png 2560w\"},className:\"framer-1rwxk91\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-htav6v\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:519,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2962+0+224.69999999999996+0+156.83333333333334+43.91666666666667),pixelHeight:519,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:\"183px\",src:\"https://framerusercontent.com/images/owTes2zulBZIAFjj38Tr0M2rbs.png\",srcSet:\"https://framerusercontent.com/images/owTes2zulBZIAFjj38Tr0M2rbs.png?scale-down-to=512 512w,https://framerusercontent.com/images/owTes2zulBZIAFjj38Tr0M2rbs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/owTes2zulBZIAFjj38Tr0M2rbs.png 1280w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:519,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2739+0+260.5+0+93.625+29.3125),pixelHeight:519,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:\"154px\",src:\"https://framerusercontent.com/images/owTes2zulBZIAFjj38Tr0M2rbs.png\",srcSet:\"https://framerusercontent.com/images/owTes2zulBZIAFjj38Tr0M2rbs.png?scale-down-to=512 512w,https://framerusercontent.com/images/owTes2zulBZIAFjj38Tr0M2rbs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/owTes2zulBZIAFjj38Tr0M2rbs.png 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:519,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2186+0+193.19999999999996+0+181.5+49.75),pixelHeight:519,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:\"208px\",src:\"https://framerusercontent.com/images/owTes2zulBZIAFjj38Tr0M2rbs.png\",srcSet:\"https://framerusercontent.com/images/owTes2zulBZIAFjj38Tr0M2rbs.png?scale-down-to=512 512w,https://framerusercontent.com/images/owTes2zulBZIAFjj38Tr0M2rbs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/owTes2zulBZIAFjj38Tr0M2rbs.png 1280w\"},className:\"framer-kpw880\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-104pdrz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1533,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2962+0+224.69999999999996+0+156.83333333333334+45.91666666666667),pixelHeight:1533,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/Nl0jTMzqLT8QaRzDCoJO5tV896s.png\",srcSet:\"https://framerusercontent.com/images/Nl0jTMzqLT8QaRzDCoJO5tV896s.png?scale-down-to=512 512w,https://framerusercontent.com/images/Nl0jTMzqLT8QaRzDCoJO5tV896s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Nl0jTMzqLT8QaRzDCoJO5tV896s.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Nl0jTMzqLT8QaRzDCoJO5tV896s.png 2560w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1533,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2739+0+260.5+0+93.625+25.3125),pixelHeight:1533,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:\"173px\",src:\"https://framerusercontent.com/images/Nl0jTMzqLT8QaRzDCoJO5tV896s.png\",srcSet:\"https://framerusercontent.com/images/Nl0jTMzqLT8QaRzDCoJO5tV896s.png?scale-down-to=512 512w,https://framerusercontent.com/images/Nl0jTMzqLT8QaRzDCoJO5tV896s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Nl0jTMzqLT8QaRzDCoJO5tV896s.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Nl0jTMzqLT8QaRzDCoJO5tV896s.png 2560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1533,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2186+0+193.19999999999996+0+181.5+43.75),pixelHeight:1533,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:\"275px\",src:\"https://framerusercontent.com/images/Nl0jTMzqLT8QaRzDCoJO5tV896s.png\",srcSet:\"https://framerusercontent.com/images/Nl0jTMzqLT8QaRzDCoJO5tV896s.png?scale-down-to=512 512w,https://framerusercontent.com/images/Nl0jTMzqLT8QaRzDCoJO5tV896s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Nl0jTMzqLT8QaRzDCoJO5tV896s.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Nl0jTMzqLT8QaRzDCoJO5tV896s.png 2560w\"},className:\"framer-zei4vf\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o0rhry\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:317,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2962+0+224.69999999999996+0+156.83333333333334+27.91666666666667),pixelHeight:317,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:\"173px\",src:\"https://framerusercontent.com/images/MTPWLcjKMKCWyuFcamGhvUuLM.png\",srcSet:\"https://framerusercontent.com/images/MTPWLcjKMKCWyuFcamGhvUuLM.png?scale-down-to=512 512w,https://framerusercontent.com/images/MTPWLcjKMKCWyuFcamGhvUuLM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MTPWLcjKMKCWyuFcamGhvUuLM.png 1280w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:317,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2739+0+260.5+0+187.25+5.3125),pixelHeight:317,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:\"120px\",src:\"https://framerusercontent.com/images/MTPWLcjKMKCWyuFcamGhvUuLM.png\",srcSet:\"https://framerusercontent.com/images/MTPWLcjKMKCWyuFcamGhvUuLM.png?scale-down-to=512 512w,https://framerusercontent.com/images/MTPWLcjKMKCWyuFcamGhvUuLM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MTPWLcjKMKCWyuFcamGhvUuLM.png 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:317,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2186+0+193.19999999999996+0+181.5+26.75),pixelHeight:317,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:\"243px\",src:\"https://framerusercontent.com/images/MTPWLcjKMKCWyuFcamGhvUuLM.png\",srcSet:\"https://framerusercontent.com/images/MTPWLcjKMKCWyuFcamGhvUuLM.png?scale-down-to=512 512w,https://framerusercontent.com/images/MTPWLcjKMKCWyuFcamGhvUuLM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MTPWLcjKMKCWyuFcamGhvUuLM.png 1280w\"},className:\"framer-9njg55\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-869vxv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:945,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2962+0+224.69999999999996+0+156.83333333333334+21.41666666666667),pixelHeight:945,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"175px\",src:\"https://framerusercontent.com/images/LJU5tgyGYzvKZHRGRzLsKAi6s.png\",srcSet:\"https://framerusercontent.com/images/LJU5tgyGYzvKZHRGRzLsKAi6s.png?scale-down-to=512 512w,https://framerusercontent.com/images/LJU5tgyGYzvKZHRGRzLsKAi6s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LJU5tgyGYzvKZHRGRzLsKAi6s.png 1200w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:945,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2739+0+260.5+0+187.25+15.8125),pixelHeight:945,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"119px\",src:\"https://framerusercontent.com/images/LJU5tgyGYzvKZHRGRzLsKAi6s.png\",srcSet:\"https://framerusercontent.com/images/LJU5tgyGYzvKZHRGRzLsKAi6s.png?scale-down-to=512 512w,https://framerusercontent.com/images/LJU5tgyGYzvKZHRGRzLsKAi6s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LJU5tgyGYzvKZHRGRzLsKAi6s.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:945,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2186+0+193.19999999999996+0+181.5+25.75),pixelHeight:945,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"221px\",src:\"https://framerusercontent.com/images/LJU5tgyGYzvKZHRGRzLsKAi6s.png\",srcSet:\"https://framerusercontent.com/images/LJU5tgyGYzvKZHRGRzLsKAi6s.png?scale-down-to=512 512w,https://framerusercontent.com/images/LJU5tgyGYzvKZHRGRzLsKAi6s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LJU5tgyGYzvKZHRGRzLsKAi6s.png 1200w\"},className:\"framer-1q8mfi5\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3yshap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1271,intrinsicWidth:2400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2962+0+224.69999999999996+0+313.6666666666667+32.91666666666667),pixelHeight:1271,pixelWidth:2400,sizes:\"179px\",src:\"https://framerusercontent.com/images/2KxAPZBe0gnG4O0na94Ql4GSdI.png\",srcSet:\"https://framerusercontent.com/images/2KxAPZBe0gnG4O0na94Ql4GSdI.png?scale-down-to=512 512w,https://framerusercontent.com/images/2KxAPZBe0gnG4O0na94Ql4GSdI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2KxAPZBe0gnG4O0na94Ql4GSdI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2KxAPZBe0gnG4O0na94Ql4GSdI.png 2400w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1271,intrinsicWidth:2400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2739+0+260.5+0+187.25+11.8125),pixelHeight:1271,pixelWidth:2400,sizes:\"108px\",src:\"https://framerusercontent.com/images/2KxAPZBe0gnG4O0na94Ql4GSdI.png\",srcSet:\"https://framerusercontent.com/images/2KxAPZBe0gnG4O0na94Ql4GSdI.png?scale-down-to=512 512w,https://framerusercontent.com/images/2KxAPZBe0gnG4O0na94Ql4GSdI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2KxAPZBe0gnG4O0na94Ql4GSdI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2KxAPZBe0gnG4O0na94Ql4GSdI.png 2400w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1271,intrinsicWidth:2400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2186+0+193.19999999999996+0+363+27.75),pixelHeight:1271,pixelWidth:2400,sizes:\"226px\",src:\"https://framerusercontent.com/images/2KxAPZBe0gnG4O0na94Ql4GSdI.png\",srcSet:\"https://framerusercontent.com/images/2KxAPZBe0gnG4O0na94Ql4GSdI.png?scale-down-to=512 512w,https://framerusercontent.com/images/2KxAPZBe0gnG4O0na94Ql4GSdI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2KxAPZBe0gnG4O0na94Ql4GSdI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2KxAPZBe0gnG4O0na94Ql4GSdI.png 2400w\"},className:\"framer-goj9za\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3kyur0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1023,intrinsicWidth:793,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2962+0+224.69999999999996+0+313.6666666666667+24.91666666666667),pixelHeight:1023,pixelWidth:793,positionX:\"center\",positionY:\"center\",sizes:\"190px\",src:\"https://framerusercontent.com/images/b3uarqUR3ZvnBb9bu9pUsMtQN1Y.png\",srcSet:\"https://framerusercontent.com/images/b3uarqUR3ZvnBb9bu9pUsMtQN1Y.png 793w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1023,intrinsicWidth:793,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2739+0+260.5+0+280.875+10.3125),pixelHeight:1023,pixelWidth:793,positionX:\"center\",positionY:\"center\",sizes:\"146px\",src:\"https://framerusercontent.com/images/b3uarqUR3ZvnBb9bu9pUsMtQN1Y.png\",srcSet:\"https://framerusercontent.com/images/b3uarqUR3ZvnBb9bu9pUsMtQN1Y.png 793w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1023,intrinsicWidth:793,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2186+0+193.19999999999996+0+363+23.75),pixelHeight:1023,pixelWidth:793,positionX:\"center\",positionY:\"center\",sizes:\"241px\",src:\"https://framerusercontent.com/images/b3uarqUR3ZvnBb9bu9pUsMtQN1Y.png\",srcSet:\"https://framerusercontent.com/images/b3uarqUR3ZvnBb9bu9pUsMtQN1Y.png 793w\"},className:\"framer-35h5cm\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nf1lpa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:7051,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2962+0+224.69999999999996+0+313.6666666666667+37.41666666666667),pixelHeight:1080,pixelWidth:7051,positionX:\"center\",positionY:\"center\",sizes:\"174px\",src:\"https://framerusercontent.com/images/2zZOhPxYWrcMRGXi68txfEe7dK8.png\",srcSet:\"https://framerusercontent.com/images/2zZOhPxYWrcMRGXi68txfEe7dK8.png?scale-down-to=512 512w,https://framerusercontent.com/images/2zZOhPxYWrcMRGXi68txfEe7dK8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2zZOhPxYWrcMRGXi68txfEe7dK8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2zZOhPxYWrcMRGXi68txfEe7dK8.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/2zZOhPxYWrcMRGXi68txfEe7dK8.png 7051w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:7051,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2739+0+260.5+0+280.875+16.8125),pixelHeight:1080,pixelWidth:7051,positionX:\"center\",positionY:\"center\",sizes:\"110px\",src:\"https://framerusercontent.com/images/2zZOhPxYWrcMRGXi68txfEe7dK8.png\",srcSet:\"https://framerusercontent.com/images/2zZOhPxYWrcMRGXi68txfEe7dK8.png?scale-down-to=512 512w,https://framerusercontent.com/images/2zZOhPxYWrcMRGXi68txfEe7dK8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2zZOhPxYWrcMRGXi68txfEe7dK8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2zZOhPxYWrcMRGXi68txfEe7dK8.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/2zZOhPxYWrcMRGXi68txfEe7dK8.png 7051w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1080,intrinsicWidth:7051,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2186+0+193.19999999999996+0+363+31.75),pixelHeight:1080,pixelWidth:7051,positionX:\"center\",positionY:\"center\",sizes:\"238px\",src:\"https://framerusercontent.com/images/2zZOhPxYWrcMRGXi68txfEe7dK8.png\",srcSet:\"https://framerusercontent.com/images/2zZOhPxYWrcMRGXi68txfEe7dK8.png?scale-down-to=512 512w,https://framerusercontent.com/images/2zZOhPxYWrcMRGXi68txfEe7dK8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2zZOhPxYWrcMRGXi68txfEe7dK8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2zZOhPxYWrcMRGXi68txfEe7dK8.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/2zZOhPxYWrcMRGXi68txfEe7dK8.png 7051w\"},className:\"framer-1krtk9r\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hb7hs5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:141,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2962+0+224.69999999999996+0+313.6666666666667+21.91666666666667),pixelHeight:141,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:\"174px\",src:\"https://framerusercontent.com/images/lWvLIRQ3WkAwLg6dQ9DkJNLErr8.png\",srcSet:\"https://framerusercontent.com/images/lWvLIRQ3WkAwLg6dQ9DkJNLErr8.png?scale-down-to=512 512w,https://framerusercontent.com/images/lWvLIRQ3WkAwLg6dQ9DkJNLErr8.png 1024w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:141,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2739+0+260.5+0+280.875+25.3125),pixelHeight:141,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:\"126px\",src:\"https://framerusercontent.com/images/lWvLIRQ3WkAwLg6dQ9DkJNLErr8.png\",srcSet:\"https://framerusercontent.com/images/lWvLIRQ3WkAwLg6dQ9DkJNLErr8.png?scale-down-to=512 512w,https://framerusercontent.com/images/lWvLIRQ3WkAwLg6dQ9DkJNLErr8.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:141,intrinsicWidth:1024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2186+0+193.19999999999996+0+363+19.75),pixelHeight:141,pixelWidth:1024,positionX:\"center\",positionY:\"center\",sizes:\"232px\",src:\"https://framerusercontent.com/images/lWvLIRQ3WkAwLg6dQ9DkJNLErr8.png\",srcSet:\"https://framerusercontent.com/images/lWvLIRQ3WkAwLg6dQ9DkJNLErr8.png?scale-down-to=512 512w,https://framerusercontent.com/images/lWvLIRQ3WkAwLg6dQ9DkJNLErr8.png 1024w\"},className:\"framer-7528ze\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d2rr7i\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:271,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2962+0+224.69999999999996+0+470.5+23.91666666666667),pixelHeight:271,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"157px\",src:\"https://framerusercontent.com/images/eXeKUoGJhb3Wz9RL6bdDjVzVfE.png\",srcSet:\"https://framerusercontent.com/images/eXeKUoGJhb3Wz9RL6bdDjVzVfE.png?scale-down-to=512 512w,https://framerusercontent.com/images/eXeKUoGJhb3Wz9RL6bdDjVzVfE.png 800w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:271,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2739+0+260.5+0+374.5+13.3125),pixelHeight:271,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"107px\",src:\"https://framerusercontent.com/images/eXeKUoGJhb3Wz9RL6bdDjVzVfE.png\",srcSet:\"https://framerusercontent.com/images/eXeKUoGJhb3Wz9RL6bdDjVzVfE.png?scale-down-to=512 512w,https://framerusercontent.com/images/eXeKUoGJhb3Wz9RL6bdDjVzVfE.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:271,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2186+0+193.19999999999996+0+544.5+19.75),pixelHeight:271,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"232px\",src:\"https://framerusercontent.com/images/eXeKUoGJhb3Wz9RL6bdDjVzVfE.png\",srcSet:\"https://framerusercontent.com/images/eXeKUoGJhb3Wz9RL6bdDjVzVfE.png?scale-down-to=512 512w,https://framerusercontent.com/images/eXeKUoGJhb3Wz9RL6bdDjVzVfE.png 800w\"},className:\"framer-tsg6qx\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ehvp8y\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:580,intrinsicWidth:1768,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2962+0+224.69999999999996+0+470.5+20.91666666666667),pixelHeight:580,pixelWidth:1768,positionX:\"center\",positionY:\"center\",sizes:\"165px\",src:\"https://framerusercontent.com/images/mpANFVXRZYY9AEp5blle7COKjY.png\",srcSet:\"https://framerusercontent.com/images/mpANFVXRZYY9AEp5blle7COKjY.png?scale-down-to=512 512w,https://framerusercontent.com/images/mpANFVXRZYY9AEp5blle7COKjY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mpANFVXRZYY9AEp5blle7COKjY.png 1768w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:580,intrinsicWidth:1768,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2739+0+260.5+0+374.5+10.3125),pixelHeight:580,pixelWidth:1768,positionX:\"center\",positionY:\"center\",sizes:\"102px\",src:\"https://framerusercontent.com/images/mpANFVXRZYY9AEp5blle7COKjY.png\",srcSet:\"https://framerusercontent.com/images/mpANFVXRZYY9AEp5blle7COKjY.png?scale-down-to=512 512w,https://framerusercontent.com/images/mpANFVXRZYY9AEp5blle7COKjY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mpANFVXRZYY9AEp5blle7COKjY.png 1768w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:580,intrinsicWidth:1768,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2186+0+193.19999999999996+0+544.5+19.75),pixelHeight:580,pixelWidth:1768,positionX:\"center\",positionY:\"center\",sizes:\"232px\",src:\"https://framerusercontent.com/images/mpANFVXRZYY9AEp5blle7COKjY.png\",srcSet:\"https://framerusercontent.com/images/mpANFVXRZYY9AEp5blle7COKjY.png?scale-down-to=512 512w,https://framerusercontent.com/images/mpANFVXRZYY9AEp5blle7COKjY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mpANFVXRZYY9AEp5blle7COKjY.png 1768w\"},className:\"framer-it6yaa\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13fhxt7\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:540,intrinsicWidth:1029,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2962+0+224.69999999999996+0+470.5+13.416666666666671),pixelHeight:540,pixelWidth:1029,positionX:\"center\",positionY:\"center\",sizes:\"172px\",src:\"https://framerusercontent.com/images/JsKLbcOmRxEpDgcko4lqvwMUhM.jpg\",srcSet:\"https://framerusercontent.com/images/JsKLbcOmRxEpDgcko4lqvwMUhM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JsKLbcOmRxEpDgcko4lqvwMUhM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JsKLbcOmRxEpDgcko4lqvwMUhM.jpg 1029w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:540,intrinsicWidth:1029,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2739+0+260.5+0+374.5+23.8125),pixelHeight:540,pixelWidth:1029,positionX:\"center\",positionY:\"center\",sizes:\"131px\",src:\"https://framerusercontent.com/images/JsKLbcOmRxEpDgcko4lqvwMUhM.jpg\",srcSet:\"https://framerusercontent.com/images/JsKLbcOmRxEpDgcko4lqvwMUhM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JsKLbcOmRxEpDgcko4lqvwMUhM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JsKLbcOmRxEpDgcko4lqvwMUhM.jpg 1029w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:540,intrinsicWidth:1029,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2186+0+193.19999999999996+0+544.5+19.75),pixelHeight:540,pixelWidth:1029,positionX:\"center\",positionY:\"center\",sizes:\"232px\",src:\"https://framerusercontent.com/images/JsKLbcOmRxEpDgcko4lqvwMUhM.jpg\",srcSet:\"https://framerusercontent.com/images/JsKLbcOmRxEpDgcko4lqvwMUhM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JsKLbcOmRxEpDgcko4lqvwMUhM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JsKLbcOmRxEpDgcko4lqvwMUhM.jpg 1029w\"},className:\"framer-1dw92vw\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eylppd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:946,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2962+0+224.69999999999996+0+470.5+20.91666666666667),pixelHeight:946,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:\"183px\",src:\"https://framerusercontent.com/images/k0rRSxCRuObrW5QIHl3rGuJc.png\",srcSet:\"https://framerusercontent.com/images/k0rRSxCRuObrW5QIHl3rGuJc.png?scale-down-to=512 512w,https://framerusercontent.com/images/k0rRSxCRuObrW5QIHl3rGuJc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/k0rRSxCRuObrW5QIHl3rGuJc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/k0rRSxCRuObrW5QIHl3rGuJc.png 2560w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:946,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2739+0+260.5+0+468.125+12.3125),pixelHeight:946,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:\"102px\",src:\"https://framerusercontent.com/images/k0rRSxCRuObrW5QIHl3rGuJc.png\",srcSet:\"https://framerusercontent.com/images/k0rRSxCRuObrW5QIHl3rGuJc.png?scale-down-to=512 512w,https://framerusercontent.com/images/k0rRSxCRuObrW5QIHl3rGuJc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/k0rRSxCRuObrW5QIHl3rGuJc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/k0rRSxCRuObrW5QIHl3rGuJc.png 2560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:946,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2186+0+193.19999999999996+0+544.5+19.75),pixelHeight:946,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:\"232px\",src:\"https://framerusercontent.com/images/k0rRSxCRuObrW5QIHl3rGuJc.png\",srcSet:\"https://framerusercontent.com/images/k0rRSxCRuObrW5QIHl3rGuJc.png?scale-down-to=512 512w,https://framerusercontent.com/images/k0rRSxCRuObrW5QIHl3rGuJc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/k0rRSxCRuObrW5QIHl3rGuJc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/k0rRSxCRuObrW5QIHl3rGuJc.png 2560w\"},className:\"framer-1y706tz\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jl0hem\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2160,intrinsicWidth:3840,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2962+0+224.69999999999996+0+627.3333333333334+27.41666666666667),pixelHeight:2160,pixelWidth:3840,positionX:\"center\",positionY:\"center\",sizes:\"162px\",src:\"https://framerusercontent.com/images/36Gpl2nJybBX8tgQ7jokP1T3y4.png\",srcSet:\"https://framerusercontent.com/images/36Gpl2nJybBX8tgQ7jokP1T3y4.png?scale-down-to=512 512w,https://framerusercontent.com/images/36Gpl2nJybBX8tgQ7jokP1T3y4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/36Gpl2nJybBX8tgQ7jokP1T3y4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/36Gpl2nJybBX8tgQ7jokP1T3y4.png 3840w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2160,intrinsicWidth:3840,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2739+0+260.5+0+468.125+17.3125),pixelHeight:2160,pixelWidth:3840,positionX:\"center\",positionY:\"center\",sizes:\"130px\",src:\"https://framerusercontent.com/images/36Gpl2nJybBX8tgQ7jokP1T3y4.png\",srcSet:\"https://framerusercontent.com/images/36Gpl2nJybBX8tgQ7jokP1T3y4.png?scale-down-to=512 512w,https://framerusercontent.com/images/36Gpl2nJybBX8tgQ7jokP1T3y4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/36Gpl2nJybBX8tgQ7jokP1T3y4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/36Gpl2nJybBX8tgQ7jokP1T3y4.png 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2160,intrinsicWidth:3840,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2186+0+193.19999999999996+0+726+19.75),pixelHeight:2160,pixelWidth:3840,positionX:\"center\",positionY:\"center\",sizes:\"232px\",src:\"https://framerusercontent.com/images/36Gpl2nJybBX8tgQ7jokP1T3y4.png\",srcSet:\"https://framerusercontent.com/images/36Gpl2nJybBX8tgQ7jokP1T3y4.png?scale-down-to=512 512w,https://framerusercontent.com/images/36Gpl2nJybBX8tgQ7jokP1T3y4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/36Gpl2nJybBX8tgQ7jokP1T3y4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/36Gpl2nJybBX8tgQ7jokP1T3y4.png 3840w\"},className:\"framer-xmbyxs\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-104ebap\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:296,intrinsicWidth:936,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2962+0+224.69999999999996+0+627.3333333333334+24.41666666666667),pixelHeight:296,pixelWidth:936,positionX:\"center\",positionY:\"center\",sizes:\"183px\",src:\"https://framerusercontent.com/images/aZb1ZjrDQ5YZEqy8J3kRyx5Xyfo.webp\",srcSet:\"https://framerusercontent.com/images/aZb1ZjrDQ5YZEqy8J3kRyx5Xyfo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/aZb1ZjrDQ5YZEqy8J3kRyx5Xyfo.webp 936w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:296,intrinsicWidth:936,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2739+0+260.5+0+468.125+12.3125),pixelHeight:296,pixelWidth:936,positionX:\"center\",positionY:\"center\",sizes:\"120px\",src:\"https://framerusercontent.com/images/aZb1ZjrDQ5YZEqy8J3kRyx5Xyfo.webp\",srcSet:\"https://framerusercontent.com/images/aZb1ZjrDQ5YZEqy8J3kRyx5Xyfo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/aZb1ZjrDQ5YZEqy8J3kRyx5Xyfo.webp 936w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:296,intrinsicWidth:936,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2186+0+193.19999999999996+0+726+19.75),pixelHeight:296,pixelWidth:936,positionX:\"center\",positionY:\"center\",sizes:\"232px\",src:\"https://framerusercontent.com/images/aZb1ZjrDQ5YZEqy8J3kRyx5Xyfo.webp\",srcSet:\"https://framerusercontent.com/images/aZb1ZjrDQ5YZEqy8J3kRyx5Xyfo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/aZb1ZjrDQ5YZEqy8J3kRyx5Xyfo.webp 936w\"},className:\"framer-6nb6x0\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tqrv0o\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2962+0+224.69999999999996+0+627.3333333333334+16.41666666666667),pixelHeight:2048,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:\"225px\",src:\"https://framerusercontent.com/images/0stU4B6UcSqHL3utVsTEpTiOSeE.png\",srcSet:\"https://framerusercontent.com/images/0stU4B6UcSqHL3utVsTEpTiOSeE.png?scale-down-to=512 512w,https://framerusercontent.com/images/0stU4B6UcSqHL3utVsTEpTiOSeE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0stU4B6UcSqHL3utVsTEpTiOSeE.png 2048w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2739+0+260.5+0+561.75+5.8125),pixelHeight:2048,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:\"129px\",src:\"https://framerusercontent.com/images/0stU4B6UcSqHL3utVsTEpTiOSeE.png\",srcSet:\"https://framerusercontent.com/images/0stU4B6UcSqHL3utVsTEpTiOSeE.png?scale-down-to=512 512w,https://framerusercontent.com/images/0stU4B6UcSqHL3utVsTEpTiOSeE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0stU4B6UcSqHL3utVsTEpTiOSeE.png 2048w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2048,intrinsicWidth:2048,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2186+0+193.19999999999996+0+726+28.75),pixelHeight:2048,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:\"225px\",src:\"https://framerusercontent.com/images/0stU4B6UcSqHL3utVsTEpTiOSeE.png\",srcSet:\"https://framerusercontent.com/images/0stU4B6UcSqHL3utVsTEpTiOSeE.png?scale-down-to=512 512w,https://framerusercontent.com/images/0stU4B6UcSqHL3utVsTEpTiOSeE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0stU4B6UcSqHL3utVsTEpTiOSeE.png 2048w\"},className:\"framer-ao270k\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n9wvhy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:900,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2962+0+224.69999999999996+0+627.3333333333334+30.91666666666667),pixelHeight:900,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"184px\",src:\"https://framerusercontent.com/images/S9wHVyAqbETCf7KSlWNZBAhOtW8.png\",srcSet:\"https://framerusercontent.com/images/S9wHVyAqbETCf7KSlWNZBAhOtW8.png?scale-down-to=512 512w,https://framerusercontent.com/images/S9wHVyAqbETCf7KSlWNZBAhOtW8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/S9wHVyAqbETCf7KSlWNZBAhOtW8.png 1600w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:900,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2739+0+260.5+0+561.75+17.3125),pixelHeight:900,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"145px\",src:\"https://framerusercontent.com/images/S9wHVyAqbETCf7KSlWNZBAhOtW8.png\",srcSet:\"https://framerusercontent.com/images/S9wHVyAqbETCf7KSlWNZBAhOtW8.png?scale-down-to=512 512w,https://framerusercontent.com/images/S9wHVyAqbETCf7KSlWNZBAhOtW8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/S9wHVyAqbETCf7KSlWNZBAhOtW8.png 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:900,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2186+0+193.19999999999996+0+726+30.75),pixelHeight:900,pixelWidth:1600,positionX:\"center\",positionY:\"center\",sizes:\"232px\",src:\"https://framerusercontent.com/images/S9wHVyAqbETCf7KSlWNZBAhOtW8.png\",srcSet:\"https://framerusercontent.com/images/S9wHVyAqbETCf7KSlWNZBAhOtW8.png?scale-down-to=512 512w,https://framerusercontent.com/images/S9wHVyAqbETCf7KSlWNZBAhOtW8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/S9wHVyAqbETCf7KSlWNZBAhOtW8.png 1600w\"},className:\"framer-ikz9b1\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1me7ow\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:470,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2962+0+224.69999999999996+0+784.1666666666667+22.91666666666667),pixelHeight:470,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:\"171px\",src:\"https://framerusercontent.com/images/EZeLbu5F2JU16OBPuxGeKQkNMM.png\",srcSet:\"https://framerusercontent.com/images/EZeLbu5F2JU16OBPuxGeKQkNMM.png?scale-down-to=512 512w,https://framerusercontent.com/images/EZeLbu5F2JU16OBPuxGeKQkNMM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EZeLbu5F2JU16OBPuxGeKQkNMM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/EZeLbu5F2JU16OBPuxGeKQkNMM.png 2560w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:470,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2739+0+260.5+0+561.75+11.8125),pixelHeight:470,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:\"118px\",src:\"https://framerusercontent.com/images/EZeLbu5F2JU16OBPuxGeKQkNMM.png\",srcSet:\"https://framerusercontent.com/images/EZeLbu5F2JU16OBPuxGeKQkNMM.png?scale-down-to=512 512w,https://framerusercontent.com/images/EZeLbu5F2JU16OBPuxGeKQkNMM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EZeLbu5F2JU16OBPuxGeKQkNMM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/EZeLbu5F2JU16OBPuxGeKQkNMM.png 2560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:470,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2186+0+193.19999999999996+0+907.5+19.75),pixelHeight:470,pixelWidth:2560,positionX:\"center\",positionY:\"center\",sizes:\"232px\",src:\"https://framerusercontent.com/images/EZeLbu5F2JU16OBPuxGeKQkNMM.png\",srcSet:\"https://framerusercontent.com/images/EZeLbu5F2JU16OBPuxGeKQkNMM.png?scale-down-to=512 512w,https://framerusercontent.com/images/EZeLbu5F2JU16OBPuxGeKQkNMM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EZeLbu5F2JU16OBPuxGeKQkNMM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/EZeLbu5F2JU16OBPuxGeKQkNMM.png 2560w\"},className:\"framer-f23ny8\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fflv0x\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:224,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2962+0+224.69999999999996+0+784.1666666666667+17.41666666666667),pixelHeight:224,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"180px\",src:\"https://framerusercontent.com/images/jimC0ScdfB18yA4v64fu8wuIJc.png\",srcSet:\"https://framerusercontent.com/images/jimC0ScdfB18yA4v64fu8wuIJc.png?scale-down-to=512 512w,https://framerusercontent.com/images/jimC0ScdfB18yA4v64fu8wuIJc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jimC0ScdfB18yA4v64fu8wuIJc.png 1200w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:224,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2739+0+260.5+0+655.375+9.3125),pixelHeight:224,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"124px\",src:\"https://framerusercontent.com/images/jimC0ScdfB18yA4v64fu8wuIJc.png\",srcSet:\"https://framerusercontent.com/images/jimC0ScdfB18yA4v64fu8wuIJc.png?scale-down-to=512 512w,https://framerusercontent.com/images/jimC0ScdfB18yA4v64fu8wuIJc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jimC0ScdfB18yA4v64fu8wuIJc.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:224,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2186+0+193.19999999999996+0+907.5+19.75),pixelHeight:224,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"232px\",src:\"https://framerusercontent.com/images/jimC0ScdfB18yA4v64fu8wuIJc.png\",srcSet:\"https://framerusercontent.com/images/jimC0ScdfB18yA4v64fu8wuIJc.png?scale-down-to=512 512w,https://framerusercontent.com/images/jimC0ScdfB18yA4v64fu8wuIJc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jimC0ScdfB18yA4v64fu8wuIJc.png 1200w\"},className:\"framer-h1tswa\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mvolco\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:896,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2962+0+224.69999999999996+0+784.1666666666667+22.41666666666667),pixelHeight:896,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:\"214px\",src:\"https://framerusercontent.com/images/j4TGGUS7lsq1bvEVP8oidVGjMOM.png\",srcSet:\"https://framerusercontent.com/images/j4TGGUS7lsq1bvEVP8oidVGjMOM.png?scale-down-to=512 512w,https://framerusercontent.com/images/j4TGGUS7lsq1bvEVP8oidVGjMOM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j4TGGUS7lsq1bvEVP8oidVGjMOM.png 1280w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:896,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2739+0+260.5+0+655.375+16.8125),pixelHeight:896,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:\"131px\",src:\"https://framerusercontent.com/images/j4TGGUS7lsq1bvEVP8oidVGjMOM.png\",srcSet:\"https://framerusercontent.com/images/j4TGGUS7lsq1bvEVP8oidVGjMOM.png?scale-down-to=512 512w,https://framerusercontent.com/images/j4TGGUS7lsq1bvEVP8oidVGjMOM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j4TGGUS7lsq1bvEVP8oidVGjMOM.png 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:896,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2186+0+193.19999999999996+0+907.5+29.75),pixelHeight:896,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:\"231px\",src:\"https://framerusercontent.com/images/j4TGGUS7lsq1bvEVP8oidVGjMOM.png\",srcSet:\"https://framerusercontent.com/images/j4TGGUS7lsq1bvEVP8oidVGjMOM.png?scale-down-to=512 512w,https://framerusercontent.com/images/j4TGGUS7lsq1bvEVP8oidVGjMOM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/j4TGGUS7lsq1bvEVP8oidVGjMOM.png 1280w\"},className:\"framer-sm6yyg\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y7h6lw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:900,intrinsicWidth:1269,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2962+0+224.69999999999996+0+784.1666666666667+15.916666666666671),pixelHeight:900,pixelWidth:1269,positionX:\"center\",positionY:\"center\",sizes:\"208px\",src:\"https://framerusercontent.com/images/pgGWMnGrdejPYSywVRVfPn4Ur0.png\",srcSet:\"https://framerusercontent.com/images/pgGWMnGrdejPYSywVRVfPn4Ur0.png?scale-down-to=512 512w,https://framerusercontent.com/images/pgGWMnGrdejPYSywVRVfPn4Ur0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pgGWMnGrdejPYSywVRVfPn4Ur0.png 1269w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:900,intrinsicWidth:1269,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2739+0+260.5+0+655.375+9.3125),pixelHeight:900,pixelWidth:1269,positionX:\"center\",positionY:\"center\",sizes:\"232px\",src:\"https://framerusercontent.com/images/pgGWMnGrdejPYSywVRVfPn4Ur0.png\",srcSet:\"https://framerusercontent.com/images/pgGWMnGrdejPYSywVRVfPn4Ur0.png?scale-down-to=512 512w,https://framerusercontent.com/images/pgGWMnGrdejPYSywVRVfPn4Ur0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pgGWMnGrdejPYSywVRVfPn4Ur0.png 1269w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:900,intrinsicWidth:1269,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2186+0+193.19999999999996+0+907.5+19.75),pixelHeight:900,pixelWidth:1269,positionX:\"center\",positionY:\"center\",sizes:\"232px\",src:\"https://framerusercontent.com/images/pgGWMnGrdejPYSywVRVfPn4Ur0.png\",srcSet:\"https://framerusercontent.com/images/pgGWMnGrdejPYSywVRVfPn4Ur0.png?scale-down-to=512 512w,https://framerusercontent.com/images/pgGWMnGrdejPYSywVRVfPn4Ur0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pgGWMnGrdejPYSywVRVfPn4Ur0.png 1269w\"},className:\"framer-1p5qp4t\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cvagfi\",\"data-framer-name\":\"Testimonials\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"What We Do:\"})})}),className:\"framer-1enrv3n hidden-72rtr7 hidden-1caweb6\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"61px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"What We Do:\"})})}),className:\"framer-un8oeu hidden-32whee\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sultxs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jldff8\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"61px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Fill Pipeline Using \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"61px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Proven Systems\"})]}),className:\"framer-wrmpc8 hidden-32whee\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"43px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Fill Pipeline Using \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"43px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Proven Systems\"})]}),className:\"framer-178ivv hidden-72rtr7 hidden-1caweb6\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RgmckPE9P:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Through our use of targeted outbound engines and effective inbound systems, we're set to bring in tons of high-quality sales calls weekly at a incredibly low Customer Acquisition Cost (CAC). \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our automated systems boost sales by scheduling calls with leading companies worldwide, proven across over twelve industries. We can touch any business on earth.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Through our use of targeted outbound engines and effective inbound systems, we're set to bring in tons of high-quality sales calls weekly at a incredibly low Customer Acquisition Cost (CAC). \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Our automated systems boost sales by scheduling calls with leading companies worldwide, proven across over twelve industries. We can touch any business on earth.\"})})]}),className:\"framer-ibfv18\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RgmckPE9P:{href:\"https://calendly.com/crosstempo/discovery\"}},children:/*#__PURE__*/_jsx(Link,{href:\"#book\",nodeId:\"kNNa_Sdvs\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1txsmgz framer-lux5qc\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Learn more\"})}),className:\"framer-1gtmgol\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:899,intrinsicWidth:1581,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4186+72+75.94999999999996+0+631.5),pixelHeight:899,pixelWidth:1581,sizes:\"583px\",src:\"https://framerusercontent.com/images/ahRZZifTTzO0VOLMUaef2WhNwY.webp\",srcSet:\"https://framerusercontent.com/images/ahRZZifTTzO0VOLMUaef2WhNwY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ahRZZifTTzO0VOLMUaef2WhNwY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/ahRZZifTTzO0VOLMUaef2WhNwY.webp 1581w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:899,intrinsicWidth:1581,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3603+0+124.39999999999992+0+746),pixelHeight:899,pixelWidth:1581,sizes:\"332px\",src:\"https://framerusercontent.com/images/ahRZZifTTzO0VOLMUaef2WhNwY.webp\",srcSet:\"https://framerusercontent.com/images/ahRZZifTTzO0VOLMUaef2WhNwY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ahRZZifTTzO0VOLMUaef2WhNwY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/ahRZZifTTzO0VOLMUaef2WhNwY.webp 1581w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:899,intrinsicWidth:1581,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3495+64+74.9+69),pixelHeight:899,pixelWidth:1581,sizes:\"583px\",src:\"https://framerusercontent.com/images/ahRZZifTTzO0VOLMUaef2WhNwY.webp\",srcSet:\"https://framerusercontent.com/images/ahRZZifTTzO0VOLMUaef2WhNwY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ahRZZifTTzO0VOLMUaef2WhNwY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/ahRZZifTTzO0VOLMUaef2WhNwY.webp 1581w\"},className:\"framer-1h1mxbc\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b0qt01\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:617,intrinsicWidth:1351,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4186+72+1131.95+0+690.5),pixelHeight:617,pixelWidth:1351,sizes:\"589px\",src:\"https://framerusercontent.com/images/TFSDQPeN5tjgXBPpbjZkwdxLfsE.webp\",srcSet:\"https://framerusercontent.com/images/TFSDQPeN5tjgXBPpbjZkwdxLfsE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/TFSDQPeN5tjgXBPpbjZkwdxLfsE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/TFSDQPeN5tjgXBPpbjZkwdxLfsE.webp 1351w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:617,intrinsicWidth:1351,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3603+0+1023.3999999999999+0+832.5),pixelHeight:617,pixelWidth:1351,sizes:\"358px\",src:\"https://framerusercontent.com/images/TFSDQPeN5tjgXBPpbjZkwdxLfsE.webp\",srcSet:\"https://framerusercontent.com/images/TFSDQPeN5tjgXBPpbjZkwdxLfsE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/TFSDQPeN5tjgXBPpbjZkwdxLfsE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/TFSDQPeN5tjgXBPpbjZkwdxLfsE.webp 1351w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:617,intrinsicWidth:1351,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3495+64+601.9+136),pixelHeight:617,pixelWidth:1351,sizes:\"589px\",src:\"https://framerusercontent.com/images/TFSDQPeN5tjgXBPpbjZkwdxLfsE.webp\",srcSet:\"https://framerusercontent.com/images/TFSDQPeN5tjgXBPpbjZkwdxLfsE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/TFSDQPeN5tjgXBPpbjZkwdxLfsE.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/TFSDQPeN5tjgXBPpbjZkwdxLfsE.webp 1351w\"},className:\"framer-1dz7ew3\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dk782o\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"61px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Integrated Marketing \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"61px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Materials\"})]}),className:\"framer-vnhvh hidden-32whee\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RgmckPE9P:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We apply a proven sales argument and acquisition strategy to create Marketing and Sales Assets designed for long-term use.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Marketing Assets:\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Ensuring our market messages resonate effectively.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Developing ads with both creative flair and validated content, including persuasive claims and a clear demonstration of improvement.\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Managing media buys for sales or lead funnel campaigns, from constructing ad campaigns to targeting the right audiences.\"})})]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"We apply a proven sales argument and acquisition strategy to create Marketing and Sales Assets designed for long-term use.\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Marketing Assets:\"})}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Ensuring our market messages resonate effectively.\"})})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Developing ads with both creative flair and validated content, including persuasive claims and a clear demonstration of improvement.\"})})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Managing media buys for sales or lead funnel campaigns, from constructing ad campaigns to targeting the right audiences.\"})})})]})]}),className:\"framer-11bv8ts\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RgmckPE9P:{href:\"https://calendly.com/crosstempo/discovery\"}},children:/*#__PURE__*/_jsx(Link,{href:\"#book\",nodeId:\"HfEQQvlz7\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-11182rt framer-lux5qc\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"See how it would work for you\"})}),className:\"framer-1yw4ctn\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"43px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Integrated Marketing \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"43px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Materials\"})]}),className:\"framer-1nkq3m2 hidden-72rtr7 hidden-1caweb6\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j9kb76\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4q0iue\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"61px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Sales Consulting &\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"61px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Optimization\"})]}),className:\"framer-137qz01 hidden-32whee\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We offer proven sales strategies and training designed specifically for technical founders, making the art of sales both accessible and comfortable.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our training programs and frameworks can be seamlessly integrated into your current sales teams and act as the cornerstone for training new members within your revenue operations teams.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ultimately, our aim is to free founders from being the primary salesperson, enabling them to concentrate on strategically growing the business rather than being caught up in day-to-day sales activities.\"})]}),className:\"framer-mjd9ae\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RgmckPE9P:{href:\"https://calendly.com/crosstempo/discovery\"}},children:/*#__PURE__*/_jsx(Link,{href:\"#book\",nodeId:\"oevseFyz3\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-l8g51f framer-lux5qc\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"See how it would work for you\"})}),className:\"framer-1dyqxfx\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Sales Consulting &\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Optimization\"})]}),className:\"framer-1iyvsl6 hidden-72rtr7 hidden-1caweb6\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1229,intrinsicWidth:2184,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4186+72+2154.95+0+774.5),pixelHeight:1229,pixelWidth:2184,sizes:\"583px\",src:\"https://framerusercontent.com/images/0i1087bf4cqASbpMtLEuEsIhfqQ.webp\",srcSet:\"https://framerusercontent.com/images/0i1087bf4cqASbpMtLEuEsIhfqQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/0i1087bf4cqASbpMtLEuEsIhfqQ.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/0i1087bf4cqASbpMtLEuEsIhfqQ.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/0i1087bf4cqASbpMtLEuEsIhfqQ.webp 2184w\"}},RgmckPE9P:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1229,intrinsicWidth:2184,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3603+0+2065.3999999999996+0+941.5),pixelHeight:1229,pixelWidth:2184,sizes:\"339px\",src:\"https://framerusercontent.com/images/0i1087bf4cqASbpMtLEuEsIhfqQ.webp\",srcSet:\"https://framerusercontent.com/images/0i1087bf4cqASbpMtLEuEsIhfqQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/0i1087bf4cqASbpMtLEuEsIhfqQ.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/0i1087bf4cqASbpMtLEuEsIhfqQ.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/0i1087bf4cqASbpMtLEuEsIhfqQ.webp 2184w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1229,intrinsicWidth:2184,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3495+64+1265.9+122),pixelHeight:1229,pixelWidth:2184,sizes:\"583px\",src:\"https://framerusercontent.com/images/0i1087bf4cqASbpMtLEuEsIhfqQ.webp\",srcSet:\"https://framerusercontent.com/images/0i1087bf4cqASbpMtLEuEsIhfqQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/0i1087bf4cqASbpMtLEuEsIhfqQ.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/0i1087bf4cqASbpMtLEuEsIhfqQ.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/0i1087bf4cqASbpMtLEuEsIhfqQ.webp 2184w\"},className:\"framer-ibf2vd\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13f1f4v\",\"data-framer-name\":\"Pivot\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-omafd6\",\"data-framer-name\":\"Wrapper\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"This Is For B2B Companies That:\"})}),className:\"framer-m7hif7 hidden-32whee\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"43px\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"This Is For B2B Companies That:\"})})}),className:\"framer-je1lgj hidden-72rtr7 hidden-1caweb6\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d7ox9m\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15h1sj7\",\"data-border\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o3pzye\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fw6isr-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(51, 116, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Signal\",id:\"hDVCjB1mJ\",layoutId:\"hDVCjB1mJ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(17, 17, 17))\"},children:\"Sell Complicated Solutions\"})}),className:\"framer-kahza1\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"If your B2B Company sales team sells complicated solutions, that usually means only about 100-2000 companies actually need the product. This makes it even more important to have a first-mover's advantage.\"})}),className:\"framer-dc462b\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-snt5ca\",\"data-border\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2ikmvo\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-32gzab-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(51, 116, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"CurrencyDollar\",id:\"KB1KPb3Q9\",layoutId:\"KB1KPb3Q9\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(17, 17, 17))\"},children:\"Have Access To Growth Capital\"})}),className:\"framer-5s3hdh\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Funded or Bootstrapped - We deploy your growth capital quickly and require enough fuel to leave the stratosphere\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"Clients should have sufficient funds earmarked for growth\"})]}),className:\"framer-165vsvd\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-awqp6a\",\"data-border\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cil9m\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ygps5v-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(51, 116, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ChartBar\",id:\"iiUjp2FRm\",layoutId:\"iiUjp2FRm\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(17, 17, 17))\"},children:\"Struggle Generating Sales\"})}),className:\"framer-zx4fv6\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"We believe that sales is a mathematical formula, our process solves the equation.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"We leverage Proprietary  & unconventional tactics to achieve rapid delivery of Profit.\"})]}),className:\"framer-15pc4bb\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nc34eb\",\"data-framer-name\":\"Pivot\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1srdjxw\",\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Who Is This NOT For:\"})})}),className:\"framer-5ujt9s\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16222n8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"This isn't for B2B companies still figuring out what customers want, companies running on their own money, or businesses with less than $250,000 to grow.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"This isn't for B2B companies still figuring out what customers want, companies running on their own money, or businesses with less than $250,000 to grow.\"})}),className:\"framer-1u4lr85\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ffsxqo\",\"data-framer-name\":\"Pivot\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fv6j41\",\"data-framer-name\":\"Wrapper\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Book A Strategy Call\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Book A Strategy Call\"})}),className:\"framer-1ffaum3 hidden-32whee\",fonts:[\"CUSTOM;Degular Regular\"],id:elementId2,ref:ref4,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dlbz8i-container\",children:/*#__PURE__*/_jsx(Typeform,{autoFocus:true,formId:\"https://form.typeform.com/to/YrRQdmey\",height:\"100%\",hideFooter:false,hideHeaders:false,id:\"OwBdw1VE9\",layoutId:\"OwBdw1VE9\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Book A Strategy Call\"})}),className:\"framer-w1i54g hidden-72rtr7 hidden-1caweb6\",fonts:[\"CUSTOM;Degular Regular\"],id:elementId3,ref:ref5,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yrv8vo\",\"data-framer-name\":\"Buttons\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rc812i\",\"data-framer-name\":\"Pivot\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1erez2u\",\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Meet with the Experts\"})})}),className:\"framer-1bthem1\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pd1mmf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0RlZ3VsYXIgUmVndWxhcg==\",\"--framer-font-family\":'\"Degular Regular\", \"Degular Regular Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"This isn't for B2B companies still figuring out what customers want, companies running on their own money, or businesses with less than $250,000 to grow.\"})}),className:\"framer-eg9984\",fonts:[\"CUSTOM;Degular Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RgmckPE9P:{href:\"https://calendly.com/crosstempo/discovery\"}},children:/*#__PURE__*/_jsx(Link,{href:\"#book\",nodeId:\"EGaACf2Ak\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-68265u framer-lux5qc\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\"},children:\"Request an Appointment \"})}),className:\"framer-100bntn\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dx67q1\",\"data-framer-name\":\"FAQ\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RgmckPE9P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Frequently Asked Questions\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Frequently Asked Questions\"})}),className:\"framer-zzvhkz\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hd5tkn\",\"data-framer-name\":\"Column\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{y:(componentViewport?.y||0)+0+9366.6+25+0+1507+80+120+0},RgmckPE9P:{y:(componentViewport?.y||0)+0+8852+60+0+0+1628+60+93.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:258,width:`max(min(1068px, min(874px, ${componentViewport?.width||\"100vw\"}) * 1.2), 1px)`,y:(componentViewport?.y||0)+0+6475.499999999999+50+0+1842.8000000000002+61+120+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gq3jpk-container\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"tcNNOardc\",layoutId:\"tcNNOardc\",style:{width:\"100%\"},width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{coCKftaOF:{height:228,y:(componentViewport?.y||0)+0+11436.6},RgmckPE9P:{height:194,y:(componentViewport?.y||0)+0+11071.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:206,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+8918.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bqr9zr-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RgmckPE9P:{variant:\"yiK5dFnEV\"}},children:/*#__PURE__*/_jsx(FooterAgain,{height:\"100%\",id:\"anOCdTZ23\",layoutId:\"anOCdTZ23\",style:{height:\"100%\",width:\"100%\"},variant:\"cLwUTptaF\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gxRKj.framer-lux5qc, .framer-gxRKj .framer-lux5qc { display: block; }\",\".framer-gxRKj.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-gxRKj .framer-vbzw0b-container { flex: none; height: 84px; position: relative; width: 100%; }\",\".framer-gxRKj .framer-wixvng-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-gxRKj .framer-1pu2hsu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: 924px; justify-content: center; overflow: hidden; padding: 100px 40px 40px 40px; position: relative; width: 1200px; }\",\".framer-gxRKj .framer-thlm9j { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 138px; justify-content: center; overflow: hidden; padding: 50px 40px 80px 0px; position: relative; width: 100%; }\",\".framer-gxRKj .framer-fkzrf1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-gxRKj .framer-mqq8pp, .framer-gxRKj .framer-1r7qbux, .framer-gxRKj .framer-853ho4, .framer-gxRKj .framer-knlwbu, .framer-gxRKj .framer-mn69ee, .framer-gxRKj .framer-fqrt3q, .framer-gxRKj .framer-1wk0bvm, .framer-gxRKj .framer-160pets, .framer-gxRKj .framer-1twf62p, .framer-gxRKj .framer-q6jqc0, .framer-gxRKj .framer-j8p1ox, .framer-gxRKj .framer-xu8b0j, .framer-gxRKj .framer-q6l0q5, .framer-gxRKj .framer-42y3bd, .framer-gxRKj .framer-1enrv3n, .framer-gxRKj .framer-un8oeu, .framer-gxRKj .framer-wrmpc8, .framer-gxRKj .framer-178ivv, .framer-gxRKj .framer-1gtmgol, .framer-gxRKj .framer-vnhvh, .framer-gxRKj .framer-1yw4ctn, .framer-gxRKj .framer-1nkq3m2, .framer-gxRKj .framer-137qz01, .framer-gxRKj .framer-1dyqxfx, .framer-gxRKj .framer-1iyvsl6, .framer-gxRKj .framer-100bntn { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-gxRKj .framer-b9o2oa-container { flex: none; height: 634px; position: relative; width: 1133px; }\",\".framer-gxRKj .framer-dk536s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gxRKj .framer-1wkmocq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: 633px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gxRKj .framer-1kwsc6t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 483px; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 569px; }\",\".framer-gxRKj .framer-1xq9oaa { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 357px; position: relative; white-space: pre-wrap; width: 550px; word-break: break-word; word-wrap: break-word; }\",\".framer-gxRKj .framer-1cvw902 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px 50px 0px 50px; position: relative; width: 518px; }\",\".framer-gxRKj .framer-qgaqrx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 120%; }\",\".framer-gxRKj .framer-8utsxf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 120%; }\",\".framer-gxRKj .framer-54c8o8 { align-content: center; align-items: center; background-color: var(--token-3da8bbe3-1e91-4b8a-9f8d-3e105cf5b92a, #3485ff); border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 149px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 486px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gxRKj .framer-1q5cttw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 120%; }\",\".framer-gxRKj .framer-1065xmy { align-content: center; align-items: center; background-color: var(--token-3da8bbe3-1e91-4b8a-9f8d-3e105cf5b92a, #3485ff); border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 150px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 252px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gxRKj .framer-19xt6p6 { align-content: center; align-items: center; background-color: var(--token-3da8bbe3-1e91-4b8a-9f8d-3e105cf5b92a, #3485ff); border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 150px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 226px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gxRKj .framer-usmg8k, .framer-gxRKj .framer-1o3pzye, .framer-gxRKj .framer-2ikmvo, .framer-gxRKj .framer-1cil9m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gxRKj .framer-1eh6n6b { align-content: center; align-items: center; background-color: var(--token-3da8bbe3-1e91-4b8a-9f8d-3e105cf5b92a, #3485ff); border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 142px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 489px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gxRKj .framer-1lkplv9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 108px; position: relative; white-space: pre-wrap; width: 357px; word-break: break-word; word-wrap: break-word; }\",\".framer-gxRKj .framer-1q4t95w { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 545px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gxRKj .framer-1c5nx9n-container { flex: none; height: 325px; position: relative; width: 484px; }\",\".framer-gxRKj .framer-189tnql { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: 483px; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 569px; }\",\".framer-gxRKj .framer-nkfmxn, .framer-gxRKj .framer-ibfv18 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 268px; position: relative; white-space: pre-wrap; width: 550px; word-break: break-word; word-wrap: break-word; }\",\".framer-gxRKj .framer-1nrc1a2, .framer-gxRKj .framer-1txsmgz, .framer-gxRKj .framer-11182rt, .framer-gxRKj .framer-l8g51f { align-content: center; align-items: center; background-color: var(--token-3da8bbe3-1e91-4b8a-9f8d-3e105cf5b92a, #3485ff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 26px; height: 54px; justify-content: center; overflow: visible; padding: 25px; position: relative; text-decoration: none; width: min-content; }\",\".framer-gxRKj .framer-ljk0fb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1309px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gxRKj .framer-7pbgd5 { display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(3, minmax(0, 1fr)); height: 1079px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1150px; }\",\".framer-gxRKj .framer-1o0ruqu { align-content: center; align-items: center; align-self: center; background-color: rgba(255, 255, 255, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; justify-self: center; padding: 0px; position: relative; width: 100%; }\",\".framer-gxRKj .framer-o6vd90 { flex: none; height: 69px; position: relative; width: 100%; }\",\".framer-gxRKj .framer-1yjm9sd, .framer-gxRKj .framer-ojf9xm, .framer-gxRKj .framer-htav6v, .framer-gxRKj .framer-104pdrz, .framer-gxRKj .framer-o0rhry, .framer-gxRKj .framer-869vxv, .framer-gxRKj .framer-3yshap, .framer-gxRKj .framer-3kyur0, .framer-gxRKj .framer-1nf1lpa, .framer-gxRKj .framer-1hb7hs5, .framer-gxRKj .framer-1d2rr7i, .framer-gxRKj .framer-ehvp8y, .framer-gxRKj .framer-13fhxt7, .framer-gxRKj .framer-1eylppd, .framer-gxRKj .framer-1jl0hem, .framer-gxRKj .framer-104ebap, .framer-gxRKj .framer-1tqrv0o, .framer-gxRKj .framer-1n9wvhy, .framer-gxRKj .framer-1me7ow, .framer-gxRKj .framer-fflv0x, .framer-gxRKj .framer-mvolco, .framer-gxRKj .framer-1y7h6lw { align-content: center; align-items: center; align-self: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; justify-self: center; padding: 0px; position: relative; width: 100%; }\",\".framer-gxRKj .framer-1cmf8o6 { flex: none; height: 161px; position: relative; width: 211px; }\",\".framer-gxRKj .framer-129gwy1 { flex: none; height: 144px; position: relative; width: 239px; }\",\".framer-gxRKj .framer-lemf3z { align-content: center; align-items: center; align-self: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; justify-self: center; padding: 0px; position: relative; width: 100%; }\",\".framer-gxRKj .framer-1rwxk91 { flex: none; height: 103px; position: relative; width: 238px; }\",\".framer-gxRKj .framer-kpw880 { flex: none; height: 72px; position: relative; width: 208px; }\",\".framer-gxRKj .framer-zei4vf { flex: none; height: 84px; position: relative; width: 275px; }\",\".framer-gxRKj .framer-9njg55 { flex: none; height: 118px; position: relative; width: 243px; }\",\".framer-gxRKj .framer-1q8mfi5 { flex: none; height: 120px; position: relative; width: 221px; }\",\".framer-gxRKj .framer-goj9za { flex: none; height: 116px; position: relative; width: 226px; }\",\".framer-gxRKj .framer-35h5cm { flex: none; height: 124px; position: relative; width: 241px; }\",\".framer-gxRKj .framer-1krtk9r { flex: none; height: 108px; position: relative; width: 238px; }\",\".framer-gxRKj .framer-7528ze, .framer-gxRKj .framer-tsg6qx, .framer-gxRKj .framer-it6yaa, .framer-gxRKj .framer-1dw92vw, .framer-gxRKj .framer-1y706tz, .framer-gxRKj .framer-xmbyxs, .framer-gxRKj .framer-6nb6x0, .framer-gxRKj .framer-f23ny8, .framer-gxRKj .framer-h1tswa, .framer-gxRKj .framer-1p5qp4t { flex: none; height: 132px; position: relative; width: 232px; }\",\".framer-gxRKj .framer-ao270k { flex: none; height: 114px; position: relative; width: 225px; }\",\".framer-gxRKj .framer-ikz9b1 { flex: none; height: 110px; position: relative; width: 232px; }\",\".framer-gxRKj .framer-sm6yyg { flex: none; height: 112px; position: relative; width: 231px; }\",\".framer-gxRKj .framer-cvagfi { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 40px 64px 40px; position: relative; width: 100%; }\",\".framer-gxRKj .framer-sultxs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 507px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1135px; }\",\".framer-gxRKj .framer-jldff8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: 483px; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 561px; }\",\".framer-gxRKj .framer-1h1mxbc, .framer-gxRKj .framer-ibf2vd { flex: none; height: 369px; overflow: hidden; position: relative; width: 583px; }\",\".framer-gxRKj .framer-1b0qt01 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 644px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1135px; }\",\".framer-gxRKj .framer-1dz7ew3 { flex: none; height: 372px; overflow: hidden; position: relative; width: 589px; }\",\".framer-gxRKj .framer-dk782o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: 550px; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 561px; }\",\".framer-gxRKj .framer-11bv8ts { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 340px; position: relative; white-space: pre-wrap; width: 550px; word-break: break-word; word-wrap: break-word; }\",\".framer-gxRKj .framer-j9kb76 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 613px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1135px; }\",\".framer-gxRKj .framer-4q0iue { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 611px; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 561px; }\",\".framer-gxRKj .framer-mjd9ae { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 394px; position: relative; white-space: pre-wrap; width: 550px; word-break: break-word; word-wrap: break-word; }\",\".framer-gxRKj .framer-13f1f4v { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 35px 40px 30px 40px; position: relative; width: 100%; }\",\".framer-gxRKj .framer-omafd6, .framer-gxRKj .framer-1srdjxw, .framer-gxRKj .framer-1erez2u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-gxRKj .framer-m7hif7, .framer-gxRKj .framer-je1lgj, .framer-gxRKj .framer-5ujt9s, .framer-gxRKj .framer-1ffaum3, .framer-gxRKj .framer-w1i54g, .framer-gxRKj .framer-1bthem1, .framer-gxRKj .framer-eg9984 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gxRKj .framer-1d7ox9m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 493px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1194px; }\",\".framer-gxRKj .framer-15h1sj7 { --border-bottom-width: 3px; --border-color: #0095ff; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; align-content: flex-start; align-items: flex-start; background-color: rgba(255, 255, 255, 0.1); border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 25px 50px 25px 50px; position: relative; width: 372px; }\",\".framer-gxRKj .framer-1fw6isr-container, .framer-gxRKj .framer-32gzab-container, .framer-gxRKj .framer-ygps5v-container { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-gxRKj .framer-kahza1, .framer-gxRKj .framer-dc462b, .framer-gxRKj .framer-5s3hdh, .framer-gxRKj .framer-165vsvd, .framer-gxRKj .framer-zx4fv6, .framer-gxRKj .framer-15pc4bb { --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gxRKj .framer-snt5ca { --border-bottom-width: 3px; --border-color: #0095ff; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; align-content: flex-start; align-items: flex-start; background-color: rgba(255, 255, 255, 0.1); border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 31px 50px 31px 50px; position: relative; width: 357px; }\",\".framer-gxRKj .framer-awqp6a { --border-bottom-width: 3px; --border-color: #0095ff; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; align-content: flex-start; align-items: flex-start; background-color: rgba(255, 255, 255, 0.1); border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; overflow: visible; padding: 32px 50px 32px 50px; position: relative; width: 357px; }\",\".framer-gxRKj .framer-1nc34eb { align-content: center; align-items: center; background-color: var(--token-3da8bbe3-1e91-4b8a-9f8d-3e105cf5b92a, #3485ff); border-bottom-left-radius: 19px; border-bottom-right-radius: 19px; border-top-left-radius: 19px; border-top-right-radius: 19px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 52px 40px 52px 40px; position: relative; width: 1110px; }\",\".framer-gxRKj .framer-16222n8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 182px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 980px; }\",\".framer-gxRKj .framer-1u4lr85 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-gxRKj .framer-ffsxqo { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 50px 40px 50px 40px; position: relative; width: 100%; }\",\".framer-gxRKj .framer-fv6j41 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 874px; }\",\".framer-gxRKj .framer-dlbz8i-container { flex: none; height: 1302px; position: relative; width: 905px; }\",\".framer-gxRKj .framer-1yrv8vo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; min-height: 50px; min-width: 214px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gxRKj .framer-1rc812i { align-content: center; align-items: center; background-color: var(--token-3da8bbe3-1e91-4b8a-9f8d-3e105cf5b92a, #3485ff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 52px 40px 52px 40px; position: relative; width: 1200px; }\",\".framer-gxRKj .framer-pd1mmf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 232px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 980px; }\",\".framer-gxRKj .framer-68265u { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 26px; height: 54px; justify-content: center; overflow: visible; padding: 25px; position: relative; text-decoration: none; width: min-content; }\",\".framer-gxRKj .framer-dx67q1 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 61px 40px 61px 40px; position: relative; width: 120%; }\",\".framer-gxRKj .framer-zzvhkz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-gxRKj .framer-1hd5tkn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1068px; }\",\".framer-gxRKj .framer-gq3jpk-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 2; }\",\".framer-gxRKj .framer-1bqr9zr-container { flex: none; height: 206px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-gxRKj.framer-72rtr7, .framer-gxRKj .framer-1pu2hsu, .framer-gxRKj .framer-thlm9j, .framer-gxRKj .framer-dk536s, .framer-gxRKj .framer-1wkmocq, .framer-gxRKj .framer-1kwsc6t, .framer-gxRKj .framer-1cvw902, .framer-gxRKj .framer-qgaqrx, .framer-gxRKj .framer-8utsxf, .framer-gxRKj .framer-54c8o8, .framer-gxRKj .framer-1q5cttw, .framer-gxRKj .framer-1065xmy, .framer-gxRKj .framer-19xt6p6, .framer-gxRKj .framer-usmg8k, .framer-gxRKj .framer-1eh6n6b, .framer-gxRKj .framer-1q4t95w, .framer-gxRKj .framer-189tnql, .framer-gxRKj .framer-1nrc1a2, .framer-gxRKj .framer-ljk0fb, .framer-gxRKj .framer-1o0ruqu, .framer-gxRKj .framer-1yjm9sd, .framer-gxRKj .framer-ojf9xm, .framer-gxRKj .framer-lemf3z, .framer-gxRKj .framer-htav6v, .framer-gxRKj .framer-104pdrz, .framer-gxRKj .framer-o0rhry, .framer-gxRKj .framer-869vxv, .framer-gxRKj .framer-3yshap, .framer-gxRKj .framer-3kyur0, .framer-gxRKj .framer-1nf1lpa, .framer-gxRKj .framer-1hb7hs5, .framer-gxRKj .framer-1d2rr7i, .framer-gxRKj .framer-ehvp8y, .framer-gxRKj .framer-13fhxt7, .framer-gxRKj .framer-1eylppd, .framer-gxRKj .framer-1jl0hem, .framer-gxRKj .framer-104ebap, .framer-gxRKj .framer-1tqrv0o, .framer-gxRKj .framer-1n9wvhy, .framer-gxRKj .framer-1me7ow, .framer-gxRKj .framer-fflv0x, .framer-gxRKj .framer-mvolco, .framer-gxRKj .framer-1y7h6lw, .framer-gxRKj .framer-cvagfi, .framer-gxRKj .framer-sultxs, .framer-gxRKj .framer-jldff8, .framer-gxRKj .framer-1txsmgz, .framer-gxRKj .framer-1b0qt01, .framer-gxRKj .framer-dk782o, .framer-gxRKj .framer-11182rt, .framer-gxRKj .framer-j9kb76, .framer-gxRKj .framer-4q0iue, .framer-gxRKj .framer-l8g51f, .framer-gxRKj .framer-13f1f4v, .framer-gxRKj .framer-omafd6, .framer-gxRKj .framer-1d7ox9m, .framer-gxRKj .framer-15h1sj7, .framer-gxRKj .framer-1o3pzye, .framer-gxRKj .framer-snt5ca, .framer-gxRKj .framer-2ikmvo, .framer-gxRKj .framer-awqp6a, .framer-gxRKj .framer-1cil9m, .framer-gxRKj .framer-1nc34eb, .framer-gxRKj .framer-1srdjxw, .framer-gxRKj .framer-16222n8, .framer-gxRKj .framer-ffsxqo, .framer-gxRKj .framer-fv6j41, .framer-gxRKj .framer-1yrv8vo, .framer-gxRKj .framer-1rc812i, .framer-gxRKj .framer-1erez2u, .framer-gxRKj .framer-pd1mmf, .framer-gxRKj .framer-68265u, .framer-gxRKj .framer-dx67q1, .framer-gxRKj .framer-1hd5tkn { gap: 0px; } .framer-gxRKj.framer-72rtr7 > *, .framer-gxRKj .framer-54c8o8 > *, .framer-gxRKj .framer-1065xmy > *, .framer-gxRKj .framer-13f1f4v > *, .framer-gxRKj .framer-1nc34eb > *, .framer-gxRKj .framer-1rc812i > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gxRKj.framer-72rtr7 > :first-child, .framer-gxRKj .framer-1pu2hsu > :first-child, .framer-gxRKj .framer-thlm9j > :first-child, .framer-gxRKj .framer-1kwsc6t > :first-child, .framer-gxRKj .framer-1cvw902 > :first-child, .framer-gxRKj .framer-qgaqrx > :first-child, .framer-gxRKj .framer-8utsxf > :first-child, .framer-gxRKj .framer-54c8o8 > :first-child, .framer-gxRKj .framer-1065xmy > :first-child, .framer-gxRKj .framer-19xt6p6 > :first-child, .framer-gxRKj .framer-usmg8k > :first-child, .framer-gxRKj .framer-1eh6n6b > :first-child, .framer-gxRKj .framer-189tnql > :first-child, .framer-gxRKj .framer-ljk0fb > :first-child, .framer-gxRKj .framer-1o0ruqu > :first-child, .framer-gxRKj .framer-lemf3z > :first-child, .framer-gxRKj .framer-cvagfi > :first-child, .framer-gxRKj .framer-jldff8 > :first-child, .framer-gxRKj .framer-dk782o > :first-child, .framer-gxRKj .framer-4q0iue > :first-child, .framer-gxRKj .framer-13f1f4v > :first-child, .framer-gxRKj .framer-omafd6 > :first-child, .framer-gxRKj .framer-15h1sj7 > :first-child, .framer-gxRKj .framer-1o3pzye > :first-child, .framer-gxRKj .framer-snt5ca > :first-child, .framer-gxRKj .framer-2ikmvo > :first-child, .framer-gxRKj .framer-awqp6a > :first-child, .framer-gxRKj .framer-1cil9m > :first-child, .framer-gxRKj .framer-1nc34eb > :first-child, .framer-gxRKj .framer-1srdjxw > :first-child, .framer-gxRKj .framer-fv6j41 > :first-child, .framer-gxRKj .framer-1rc812i > :first-child, .framer-gxRKj .framer-1erez2u > :first-child, .framer-gxRKj .framer-pd1mmf > :first-child, .framer-gxRKj .framer-dx67q1 > :first-child { margin-top: 0px; } .framer-gxRKj.framer-72rtr7 > :last-child, .framer-gxRKj .framer-1pu2hsu > :last-child, .framer-gxRKj .framer-thlm9j > :last-child, .framer-gxRKj .framer-1kwsc6t > :last-child, .framer-gxRKj .framer-1cvw902 > :last-child, .framer-gxRKj .framer-qgaqrx > :last-child, .framer-gxRKj .framer-8utsxf > :last-child, .framer-gxRKj .framer-54c8o8 > :last-child, .framer-gxRKj .framer-1065xmy > :last-child, .framer-gxRKj .framer-19xt6p6 > :last-child, .framer-gxRKj .framer-usmg8k > :last-child, .framer-gxRKj .framer-1eh6n6b > :last-child, .framer-gxRKj .framer-189tnql > :last-child, .framer-gxRKj .framer-ljk0fb > :last-child, .framer-gxRKj .framer-1o0ruqu > :last-child, .framer-gxRKj .framer-lemf3z > :last-child, .framer-gxRKj .framer-cvagfi > :last-child, .framer-gxRKj .framer-jldff8 > :last-child, .framer-gxRKj .framer-dk782o > :last-child, .framer-gxRKj .framer-4q0iue > :last-child, .framer-gxRKj .framer-13f1f4v > :last-child, .framer-gxRKj .framer-omafd6 > :last-child, .framer-gxRKj .framer-15h1sj7 > :last-child, .framer-gxRKj .framer-1o3pzye > :last-child, .framer-gxRKj .framer-snt5ca > :last-child, .framer-gxRKj .framer-2ikmvo > :last-child, .framer-gxRKj .framer-awqp6a > :last-child, .framer-gxRKj .framer-1cil9m > :last-child, .framer-gxRKj .framer-1nc34eb > :last-child, .framer-gxRKj .framer-1srdjxw > :last-child, .framer-gxRKj .framer-fv6j41 > :last-child, .framer-gxRKj .framer-1rc812i > :last-child, .framer-gxRKj .framer-1erez2u > :last-child, .framer-gxRKj .framer-pd1mmf > :last-child, .framer-gxRKj .framer-dx67q1 > :last-child { margin-bottom: 0px; } .framer-gxRKj .framer-1pu2hsu > *, .framer-gxRKj .framer-189tnql > *, .framer-gxRKj .framer-jldff8 > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-gxRKj .framer-thlm9j > *, .framer-gxRKj .framer-1cvw902 > *, .framer-gxRKj .framer-qgaqrx > *, .framer-gxRKj .framer-8utsxf > *, .framer-gxRKj .framer-usmg8k > *, .framer-gxRKj .framer-cvagfi > *, .framer-gxRKj .framer-1o3pzye > *, .framer-gxRKj .framer-2ikmvo > *, .framer-gxRKj .framer-1cil9m > *, .framer-gxRKj .framer-fv6j41 > *, .framer-gxRKj .framer-pd1mmf > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-gxRKj .framer-dk536s > *, .framer-gxRKj .framer-1q5cttw > *, .framer-gxRKj .framer-1q4t95w > *, .framer-gxRKj .framer-1yjm9sd > *, .framer-gxRKj .framer-ojf9xm > *, .framer-gxRKj .framer-htav6v > *, .framer-gxRKj .framer-104pdrz > *, .framer-gxRKj .framer-o0rhry > *, .framer-gxRKj .framer-869vxv > *, .framer-gxRKj .framer-3yshap > *, .framer-gxRKj .framer-3kyur0 > *, .framer-gxRKj .framer-1nf1lpa > *, .framer-gxRKj .framer-1hb7hs5 > *, .framer-gxRKj .framer-1d2rr7i > *, .framer-gxRKj .framer-ehvp8y > *, .framer-gxRKj .framer-13fhxt7 > *, .framer-gxRKj .framer-1eylppd > *, .framer-gxRKj .framer-1jl0hem > *, .framer-gxRKj .framer-104ebap > *, .framer-gxRKj .framer-1tqrv0o > *, .framer-gxRKj .framer-1n9wvhy > *, .framer-gxRKj .framer-1me7ow > *, .framer-gxRKj .framer-fflv0x > *, .framer-gxRKj .framer-mvolco > *, .framer-gxRKj .framer-1y7h6lw > *, .framer-gxRKj .framer-sultxs > *, .framer-gxRKj .framer-1b0qt01 > *, .framer-gxRKj .framer-j9kb76 > *, .framer-gxRKj .framer-1hd5tkn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-gxRKj .framer-dk536s > :first-child, .framer-gxRKj .framer-1wkmocq > :first-child, .framer-gxRKj .framer-1q5cttw > :first-child, .framer-gxRKj .framer-1q4t95w > :first-child, .framer-gxRKj .framer-1nrc1a2 > :first-child, .framer-gxRKj .framer-1yjm9sd > :first-child, .framer-gxRKj .framer-ojf9xm > :first-child, .framer-gxRKj .framer-htav6v > :first-child, .framer-gxRKj .framer-104pdrz > :first-child, .framer-gxRKj .framer-o0rhry > :first-child, .framer-gxRKj .framer-869vxv > :first-child, .framer-gxRKj .framer-3yshap > :first-child, .framer-gxRKj .framer-3kyur0 > :first-child, .framer-gxRKj .framer-1nf1lpa > :first-child, .framer-gxRKj .framer-1hb7hs5 > :first-child, .framer-gxRKj .framer-1d2rr7i > :first-child, .framer-gxRKj .framer-ehvp8y > :first-child, .framer-gxRKj .framer-13fhxt7 > :first-child, .framer-gxRKj .framer-1eylppd > :first-child, .framer-gxRKj .framer-1jl0hem > :first-child, .framer-gxRKj .framer-104ebap > :first-child, .framer-gxRKj .framer-1tqrv0o > :first-child, .framer-gxRKj .framer-1n9wvhy > :first-child, .framer-gxRKj .framer-1me7ow > :first-child, .framer-gxRKj .framer-fflv0x > :first-child, .framer-gxRKj .framer-mvolco > :first-child, .framer-gxRKj .framer-1y7h6lw > :first-child, .framer-gxRKj .framer-sultxs > :first-child, .framer-gxRKj .framer-1txsmgz > :first-child, .framer-gxRKj .framer-1b0qt01 > :first-child, .framer-gxRKj .framer-11182rt > :first-child, .framer-gxRKj .framer-j9kb76 > :first-child, .framer-gxRKj .framer-l8g51f > :first-child, .framer-gxRKj .framer-1d7ox9m > :first-child, .framer-gxRKj .framer-16222n8 > :first-child, .framer-gxRKj .framer-ffsxqo > :first-child, .framer-gxRKj .framer-1yrv8vo > :first-child, .framer-gxRKj .framer-68265u > :first-child, .framer-gxRKj .framer-1hd5tkn > :first-child { margin-left: 0px; } .framer-gxRKj .framer-dk536s > :last-child, .framer-gxRKj .framer-1wkmocq > :last-child, .framer-gxRKj .framer-1q5cttw > :last-child, .framer-gxRKj .framer-1q4t95w > :last-child, .framer-gxRKj .framer-1nrc1a2 > :last-child, .framer-gxRKj .framer-1yjm9sd > :last-child, .framer-gxRKj .framer-ojf9xm > :last-child, .framer-gxRKj .framer-htav6v > :last-child, .framer-gxRKj .framer-104pdrz > :last-child, .framer-gxRKj .framer-o0rhry > :last-child, .framer-gxRKj .framer-869vxv > :last-child, .framer-gxRKj .framer-3yshap > :last-child, .framer-gxRKj .framer-3kyur0 > :last-child, .framer-gxRKj .framer-1nf1lpa > :last-child, .framer-gxRKj .framer-1hb7hs5 > :last-child, .framer-gxRKj .framer-1d2rr7i > :last-child, .framer-gxRKj .framer-ehvp8y > :last-child, .framer-gxRKj .framer-13fhxt7 > :last-child, .framer-gxRKj .framer-1eylppd > :last-child, .framer-gxRKj .framer-1jl0hem > :last-child, .framer-gxRKj .framer-104ebap > :last-child, .framer-gxRKj .framer-1tqrv0o > :last-child, .framer-gxRKj .framer-1n9wvhy > :last-child, .framer-gxRKj .framer-1me7ow > :last-child, .framer-gxRKj .framer-fflv0x > :last-child, .framer-gxRKj .framer-mvolco > :last-child, .framer-gxRKj .framer-1y7h6lw > :last-child, .framer-gxRKj .framer-sultxs > :last-child, .framer-gxRKj .framer-1txsmgz > :last-child, .framer-gxRKj .framer-1b0qt01 > :last-child, .framer-gxRKj .framer-11182rt > :last-child, .framer-gxRKj .framer-j9kb76 > :last-child, .framer-gxRKj .framer-l8g51f > :last-child, .framer-gxRKj .framer-1d7ox9m > :last-child, .framer-gxRKj .framer-16222n8 > :last-child, .framer-gxRKj .framer-ffsxqo > :last-child, .framer-gxRKj .framer-1yrv8vo > :last-child, .framer-gxRKj .framer-68265u > :last-child, .framer-gxRKj .framer-1hd5tkn > :last-child { margin-right: 0px; } .framer-gxRKj .framer-1wkmocq > * { margin: 0px; margin-left: calc(9px / 2); margin-right: calc(9px / 2); } .framer-gxRKj .framer-1kwsc6t > *, .framer-gxRKj .framer-19xt6p6 > *, .framer-gxRKj .framer-1eh6n6b > *, .framer-gxRKj .framer-ljk0fb > *, .framer-gxRKj .framer-1o0ruqu > *, .framer-gxRKj .framer-lemf3z > *, .framer-gxRKj .framer-4q0iue > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-gxRKj .framer-1nrc1a2 > *, .framer-gxRKj .framer-1txsmgz > *, .framer-gxRKj .framer-11182rt > *, .framer-gxRKj .framer-l8g51f > *, .framer-gxRKj .framer-68265u > * { margin: 0px; margin-left: calc(26px / 2); margin-right: calc(26px / 2); } .framer-gxRKj .framer-dk782o > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-gxRKj .framer-omafd6 > *, .framer-gxRKj .framer-15h1sj7 > *, .framer-gxRKj .framer-snt5ca > *, .framer-gxRKj .framer-1srdjxw > *, .framer-gxRKj .framer-1erez2u > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-gxRKj .framer-1d7ox9m > *, .framer-gxRKj .framer-16222n8 > *, .framer-gxRKj .framer-1yrv8vo > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-gxRKj .framer-awqp6a > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-gxRKj .framer-ffsxqo > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-gxRKj .framer-dx67q1 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }\",'.framer-gxRKj[data-border=\"true\"]::after, .framer-gxRKj [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-gxRKj.framer-72rtr7 { width: 810px; } .framer-gxRKj .framer-1pu2hsu { gap: 0px; height: 664px; padding: 0px 40px 40px 40px; width: 810px; } .framer-gxRKj .framer-thlm9j { height: 144px; order: 0; width: 91%; } .framer-gxRKj .framer-mqq8pp, .framer-gxRKj .framer-1yjm9sd { order: 1; } .framer-gxRKj .framer-b9o2oa-container { height: 417px; order: 3; width: 732px; } .framer-gxRKj .framer-dk536s, .framer-gxRKj .framer-ojf9xm { order: 2; } .framer-gxRKj .framer-1wkmocq { flex-direction: column; gap: 0px; height: 1045px; } .framer-gxRKj .framer-1kwsc6t { gap: 0px; height: 554px; order: 0; } .framer-gxRKj .framer-1xq9oaa { height: 372px; width: 554px; } .framer-gxRKj .framer-1cvw902 { align-content: center; align-items: center; order: 1; padding: 0px; width: 810px; } .framer-gxRKj .framer-54c8o8, .framer-gxRKj .framer-1eh6n6b { width: 514px; } .framer-gxRKj .framer-1065xmy { width: 274px; } .framer-gxRKj .framer-usmg8k { padding: 0px 0px 20px 0px; } .framer-gxRKj .framer-1q4t95w { flex-direction: column; gap: 88px; height: 1169px; } .framer-gxRKj .framer-189tnql { gap: 68px; height: 531px; width: 451px; } .framer-gxRKj .framer-nkfmxn { height: 230px; width: 443px; } .framer-gxRKj .framer-ljk0fb { height: 1224px; } .framer-gxRKj .framer-7pbgd5 { height: 931px; width: 772px; } .framer-gxRKj .framer-1o0ruqu { gap: 16px; order: 0; } .framer-gxRKj .framer-o6vd90 { height: 53px; } .framer-gxRKj .framer-1cmf8o6 { height: 92px; width: 150px; } .framer-gxRKj .framer-129gwy1 { height: 108px; width: 182px; } .framer-gxRKj .framer-lemf3z { order: 3; } .framer-gxRKj .framer-1rwxk91 { height: 86px; width: 186px; } .framer-gxRKj .framer-htav6v { order: 4; } .framer-gxRKj .framer-kpw880 { height: 59px; width: 183px; } .framer-gxRKj .framer-104pdrz { order: 5; } .framer-gxRKj .framer-zei4vf { height: 55px; width: 200px; } .framer-gxRKj .framer-o0rhry { order: 6; } .framer-gxRKj .framer-9njg55 { height: 91px; width: 173px; } .framer-gxRKj .framer-869vxv { order: 7; } .framer-gxRKj .framer-1q8mfi5 { height: 104px; width: 175px; } .framer-gxRKj .framer-3yshap { order: 8; } .framer-gxRKj .framer-goj9za { height: 81px; width: 179px; } .framer-gxRKj .framer-3kyur0 { order: 9; } .framer-gxRKj .framer-35h5cm { height: 97px; width: 190px; } .framer-gxRKj .framer-1nf1lpa { order: 10; } .framer-gxRKj .framer-1krtk9r { height: 72px; width: 174px; } .framer-gxRKj .framer-1hb7hs5 { order: 11; } .framer-gxRKj .framer-7528ze { height: 103px; width: 174px; } .framer-gxRKj .framer-1d2rr7i { order: 12; } .framer-gxRKj .framer-tsg6qx { height: 99px; width: 157px; } .framer-gxRKj .framer-ehvp8y { order: 13; } .framer-gxRKj .framer-it6yaa { height: 105px; width: 165px; } .framer-gxRKj .framer-13fhxt7 { order: 14; } .framer-gxRKj .framer-1dw92vw { height: 120px; width: 172px; } .framer-gxRKj .framer-1eylppd { order: 15; } .framer-gxRKj .framer-1y706tz { height: 105px; width: 183px; } .framer-gxRKj .framer-1jl0hem { order: 16; } .framer-gxRKj .framer-xmbyxs { height: 92px; width: 162px; } .framer-gxRKj .framer-104ebap { order: 17; } .framer-gxRKj .framer-6nb6x0 { height: 98px; width: 183px; } .framer-gxRKj .framer-1tqrv0o { order: 18; } .framer-gxRKj .framer-1n9wvhy { order: 19; } .framer-gxRKj .framer-ikz9b1 { height: 85px; width: 184px; } .framer-gxRKj .framer-1me7ow { order: 20; } .framer-gxRKj .framer-f23ny8 { height: 101px; width: 171px; } .framer-gxRKj .framer-fflv0x { order: 21; } .framer-gxRKj .framer-h1tswa { height: 112px; width: 180px; } .framer-gxRKj .framer-mvolco { order: 22; } .framer-gxRKj .framer-sm6yyg { height: 102px; width: 214px; } .framer-gxRKj .framer-1y7h6lw { order: 23; } .framer-gxRKj .framer-1p5qp4t { height: 115px; width: 208px; } .framer-gxRKj .framer-cvagfi { gap: 34px; height: 3472px; padding: 72px 40px 72px 40px; } .framer-gxRKj .framer-sultxs { flex-direction: column; height: 1022px; } .framer-gxRKj .framer-jldff8 { gap: 73px; height: 600px; } .framer-gxRKj .framer-ibfv18 { height: 206px; width: 516px; } .framer-gxRKj .framer-1b0qt01 { flex-direction: column; gap: 0px; height: 989px; } .framer-gxRKj .framer-1dz7ew3 { height: 286px; order: 1; } .framer-gxRKj .framer-dk782o { gap: 93px; height: 678px; order: 0; width: 621px; } .framer-gxRKj .framer-11bv8ts { height: 230px; width: 511px; } .framer-gxRKj .framer-j9kb76 { flex-direction: column; gap: 28px; height: 1186px; width: 814px; } .framer-gxRKj .framer-4q0iue { gap: 128px; height: 704px; } .framer-gxRKj .framer-mjd9ae { height: 230px; width: 541px; } .framer-gxRKj .framer-13f1f4v, .framer-gxRKj .framer-dx67q1 { padding: 80px 40px 80px 40px; } .framer-gxRKj .framer-1d7ox9m { flex-direction: column; height: 1133px; width: 810px; } .framer-gxRKj .framer-15h1sj7 { width: 555px; } .framer-gxRKj .framer-snt5ca, .framer-gxRKj .framer-awqp6a { width: 533px; } .framer-gxRKj .framer-1nc34eb { width: 789px; } .framer-gxRKj .framer-16222n8 { width: 708px; } .framer-gxRKj .framer-ffsxqo { padding: 25px 40px 0px 40px; } .framer-gxRKj .framer-fv6j41 { gap: 0px; } .framer-gxRKj .framer-dlbz8i-container { height: 1041px; width: 708px; } .framer-gxRKj .framer-pd1mmf { width: 804px; } .framer-gxRKj .framer-1bqr9zr-container { height: 228px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-gxRKj .framer-1pu2hsu, .framer-gxRKj .framer-1wkmocq, .framer-gxRKj .framer-1kwsc6t, .framer-gxRKj .framer-1q4t95w, .framer-gxRKj .framer-189tnql, .framer-gxRKj .framer-1o0ruqu, .framer-gxRKj .framer-cvagfi, .framer-gxRKj .framer-sultxs, .framer-gxRKj .framer-jldff8, .framer-gxRKj .framer-1b0qt01, .framer-gxRKj .framer-dk782o, .framer-gxRKj .framer-j9kb76, .framer-gxRKj .framer-4q0iue, .framer-gxRKj .framer-1d7ox9m, .framer-gxRKj .framer-fv6j41 { gap: 0px; } .framer-gxRKj .framer-1pu2hsu > *, .framer-gxRKj .framer-1wkmocq > *, .framer-gxRKj .framer-1kwsc6t > *, .framer-gxRKj .framer-1b0qt01 > *, .framer-gxRKj .framer-fv6j41 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gxRKj .framer-1pu2hsu > :first-child, .framer-gxRKj .framer-1wkmocq > :first-child, .framer-gxRKj .framer-1kwsc6t > :first-child, .framer-gxRKj .framer-1q4t95w > :first-child, .framer-gxRKj .framer-189tnql > :first-child, .framer-gxRKj .framer-1o0ruqu > :first-child, .framer-gxRKj .framer-cvagfi > :first-child, .framer-gxRKj .framer-sultxs > :first-child, .framer-gxRKj .framer-jldff8 > :first-child, .framer-gxRKj .framer-1b0qt01 > :first-child, .framer-gxRKj .framer-dk782o > :first-child, .framer-gxRKj .framer-j9kb76 > :first-child, .framer-gxRKj .framer-4q0iue > :first-child, .framer-gxRKj .framer-1d7ox9m > :first-child, .framer-gxRKj .framer-fv6j41 > :first-child { margin-top: 0px; } .framer-gxRKj .framer-1pu2hsu > :last-child, .framer-gxRKj .framer-1wkmocq > :last-child, .framer-gxRKj .framer-1kwsc6t > :last-child, .framer-gxRKj .framer-1q4t95w > :last-child, .framer-gxRKj .framer-189tnql > :last-child, .framer-gxRKj .framer-1o0ruqu > :last-child, .framer-gxRKj .framer-cvagfi > :last-child, .framer-gxRKj .framer-sultxs > :last-child, .framer-gxRKj .framer-jldff8 > :last-child, .framer-gxRKj .framer-1b0qt01 > :last-child, .framer-gxRKj .framer-dk782o > :last-child, .framer-gxRKj .framer-j9kb76 > :last-child, .framer-gxRKj .framer-4q0iue > :last-child, .framer-gxRKj .framer-1d7ox9m > :last-child, .framer-gxRKj .framer-fv6j41 > :last-child { margin-bottom: 0px; } .framer-gxRKj .framer-1q4t95w > * { margin: 0px; margin-bottom: calc(88px / 2); margin-top: calc(88px / 2); } .framer-gxRKj .framer-189tnql > * { margin: 0px; margin-bottom: calc(68px / 2); margin-top: calc(68px / 2); } .framer-gxRKj .framer-1o0ruqu > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-gxRKj .framer-cvagfi > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-gxRKj .framer-sultxs > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-gxRKj .framer-jldff8 > * { margin: 0px; margin-bottom: calc(73px / 2); margin-top: calc(73px / 2); } .framer-gxRKj .framer-dk782o > * { margin: 0px; margin-bottom: calc(93px / 2); margin-top: calc(93px / 2); } .framer-gxRKj .framer-j9kb76 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-gxRKj .framer-4q0iue > * { margin: 0px; margin-bottom: calc(128px / 2); margin-top: calc(128px / 2); } .framer-gxRKj .framer-1d7ox9m > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}\",\"@media (max-width: 809px) { .framer-gxRKj.framer-72rtr7 { width: 390px; } .framer-gxRKj .framer-wixvng-container, .framer-gxRKj .framer-mqq8pp, .framer-gxRKj .framer-q6l0q5, .framer-gxRKj .framer-1yjm9sd, .framer-gxRKj .framer-1nkq3m2, .framer-gxRKj .framer-1iyvsl6 { order: 1; } .framer-gxRKj .framer-1pu2hsu { gap: 3px; height: 379px; order: 2; padding: 10px; width: 387px; } .framer-gxRKj .framer-thlm9j { height: 120px; order: 0; padding: 0px; width: 102%; } .framer-gxRKj .framer-b9o2oa-container { height: 212px; order: 3; width: 371px; } .framer-gxRKj .framer-1wkmocq { flex-direction: column; gap: 0px; height: 1234px; order: 3; } .framer-gxRKj .framer-1kwsc6t { height: 577px; order: 1; width: 384px; } .framer-gxRKj .framer-1xq9oaa { height: 173px; width: 356px; } .framer-gxRKj .framer-1cvw902 { align-content: center; align-items: center; order: 2; padding: 30px; } .framer-gxRKj .framer-qgaqrx { gap: 8px; } .framer-gxRKj .framer-54c8o8 { width: 377px; } .framer-gxRKj .framer-1065xmy { width: 200px; } .framer-gxRKj .framer-19xt6p6 { width: 170px; } .framer-gxRKj .framer-1eh6n6b { width: 382px; } .framer-gxRKj .framer-1lkplv9, .framer-gxRKj .framer-1o0ruqu, .framer-gxRKj .framer-je1lgj { order: 0; } .framer-gxRKj .framer-1q4t95w { flex-direction: column; gap: 57px; height: 1062px; order: 4; } .framer-gxRKj .framer-1c5nx9n-container { height: 191px; order: 0; width: 305px; } .framer-gxRKj .framer-189tnql { gap: 154px; height: 641px; order: 1; width: 374px; } .framer-gxRKj .framer-nkfmxn { height: 173px; order: 2; width: 356px; } .framer-gxRKj .framer-1nrc1a2 { height: 77px; order: 3; } .framer-gxRKj .framer-ljk0fb { height: 864px; order: 5; } .framer-gxRKj .framer-42y3bd { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-gxRKj .framer-7pbgd5 { gap: 0px; grid-template-columns: repeat(3, minmax(50px, 1fr)); height: 749px; width: 377px; } .framer-gxRKj .framer-o6vd90 { height: 30px; } .framer-gxRKj .framer-1cmf8o6 { height: 24px; } .framer-gxRKj .framer-ojf9xm, .framer-gxRKj .framer-w1i54g { order: 2; } .framer-gxRKj .framer-129gwy1 { height: 42px; width: 120px; } .framer-gxRKj .framer-lemf3z, .framer-gxRKj .framer-11182rt, .framer-gxRKj .framer-l8g51f { order: 3; } .framer-gxRKj .framer-1rwxk91 { height: 33px; width: 114px; } .framer-gxRKj .framer-htav6v { order: 4; } .framer-gxRKj .framer-kpw880 { height: 35px; width: 154px; } .framer-gxRKj .framer-104pdrz { order: 5; } .framer-gxRKj .framer-zei4vf { height: 43px; width: 173px; } .framer-gxRKj .framer-o0rhry, .framer-gxRKj .framer-1yrv8vo { order: 6; } .framer-gxRKj .framer-9njg55 { height: 83px; width: 120px; } .framer-gxRKj .framer-869vxv { order: 7; } .framer-gxRKj .framer-1q8mfi5 { height: 62px; width: 119px; } .framer-gxRKj .framer-3yshap { order: 8; } .framer-gxRKj .framer-goj9za { height: 70px; width: 108px; } .framer-gxRKj .framer-3kyur0 { order: 9; } .framer-gxRKj .framer-35h5cm { height: 73px; width: 146px; } .framer-gxRKj .framer-1nf1lpa { order: 10; } .framer-gxRKj .framer-1krtk9r { height: 60px; width: 110px; } .framer-gxRKj .framer-1hb7hs5 { order: 11; } .framer-gxRKj .framer-7528ze { height: 43px; width: 126px; } .framer-gxRKj .framer-1d2rr7i { order: 12; } .framer-gxRKj .framer-tsg6qx { height: 67px; width: 107px; } .framer-gxRKj .framer-ehvp8y { order: 13; } .framer-gxRKj .framer-it6yaa { height: 73px; width: 102px; } .framer-gxRKj .framer-13fhxt7 { order: 14; } .framer-gxRKj .framer-1dw92vw { height: 46px; width: 131px; } .framer-gxRKj .framer-1eylppd { order: 15; } .framer-gxRKj .framer-1y706tz { height: 69px; width: 102px; } .framer-gxRKj .framer-1jl0hem { order: 16; } .framer-gxRKj .framer-xmbyxs { height: 59px; width: 130px; } .framer-gxRKj .framer-104ebap { order: 17; } .framer-gxRKj .framer-6nb6x0 { height: 69px; width: 120px; } .framer-gxRKj .framer-1tqrv0o { order: 18; } .framer-gxRKj .framer-ao270k { height: 82px; width: 129px; } .framer-gxRKj .framer-1n9wvhy { order: 19; } .framer-gxRKj .framer-ikz9b1 { height: 59px; width: 145px; } .framer-gxRKj .framer-1me7ow { order: 20; } .framer-gxRKj .framer-f23ny8 { height: 70px; width: 118px; } .framer-gxRKj .framer-fflv0x { order: 21; } .framer-gxRKj .framer-h1tswa { height: 75px; width: 124px; } .framer-gxRKj .framer-mvolco { order: 22; } .framer-gxRKj .framer-sm6yyg { height: 60px; width: 131px; } .framer-gxRKj .framer-1y7h6lw { order: 23; } .framer-gxRKj .framer-1p5qp4t { height: 75px; } .framer-gxRKj .framer-cvagfi { gap: 35px; height: 3299px; order: 6; padding: 0px 20px 64px 20px; } .framer-gxRKj .framer-sultxs { flex-direction: column; height: 864px; width: 391px; } .framer-gxRKj .framer-jldff8 { gap: 11px; height: 773px; width: 388px; } .framer-gxRKj .framer-ibfv18 { height: 429px; width: 356px; } .framer-gxRKj .framer-1h1mxbc { height: 155px; width: 332px; } .framer-gxRKj .framer-1b0qt01 { flex-direction: column; gap: 42px; height: 1007px; width: 406px; } .framer-gxRKj .framer-1dz7ew3 { height: 175px; order: 1; width: 358px; } .framer-gxRKj .framer-dk782o { gap: 16px; height: 791px; justify-content: flex-end; order: 0; width: 389px; } .framer-gxRKj .framer-11bv8ts { height: 561px; order: 2; width: 356px; } .framer-gxRKj .framer-j9kb76 { flex-direction: column; height: 1127px; width: 409px; } .framer-gxRKj .framer-4q0iue { align-content: center; align-items: center; gap: 0px; height: 941px; justify-content: flex-end; width: 394px; } .framer-gxRKj .framer-mjd9ae { height: 666px; order: 2; width: 356px; } .framer-gxRKj .framer-ibf2vd { height: 195px; width: 339px; } .framer-gxRKj .framer-13f1f4v { order: 8; padding: 15px 20px 15px 20px; } .framer-gxRKj .framer-omafd6 { gap: 40px; } .framer-gxRKj .framer-1d7ox9m { flex-direction: column; height: 1330px; width: 391px; } .framer-gxRKj .framer-1nc34eb { order: 9; width: 390px; } .framer-gxRKj .framer-1srdjxw { width: 323px; } .framer-gxRKj .framer-16222n8 { height: 372px; width: 388px; } .framer-gxRKj .framer-ffsxqo { flex-direction: column; order: 10; padding: 60px 20px 60px 20px; } .framer-gxRKj .framer-fv6j41 { gap: 0px; } .framer-gxRKj .framer-dlbz8i-container { height: 901px; order: 3; width: 371px; } .framer-gxRKj .framer-1rc812i { order: 5; width: 392px; } .framer-gxRKj .framer-pd1mmf { gap: 31px; height: 506px; width: 365px; } .framer-gxRKj .framer-dx67q1 { order: 7; padding: 60px 20px 60px 20px; } .framer-gxRKj .framer-1bqr9zr-container { height: 194px; order: 11; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-gxRKj .framer-1pu2hsu, .framer-gxRKj .framer-1wkmocq, .framer-gxRKj .framer-qgaqrx, .framer-gxRKj .framer-1q4t95w, .framer-gxRKj .framer-189tnql, .framer-gxRKj .framer-7pbgd5, .framer-gxRKj .framer-cvagfi, .framer-gxRKj .framer-sultxs, .framer-gxRKj .framer-jldff8, .framer-gxRKj .framer-1b0qt01, .framer-gxRKj .framer-dk782o, .framer-gxRKj .framer-j9kb76, .framer-gxRKj .framer-4q0iue, .framer-gxRKj .framer-omafd6, .framer-gxRKj .framer-1d7ox9m, .framer-gxRKj .framer-ffsxqo, .framer-gxRKj .framer-fv6j41, .framer-gxRKj .framer-pd1mmf { gap: 0px; } .framer-gxRKj .framer-1pu2hsu > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-gxRKj .framer-1pu2hsu > :first-child, .framer-gxRKj .framer-1wkmocq > :first-child, .framer-gxRKj .framer-qgaqrx > :first-child, .framer-gxRKj .framer-1q4t95w > :first-child, .framer-gxRKj .framer-189tnql > :first-child, .framer-gxRKj .framer-cvagfi > :first-child, .framer-gxRKj .framer-sultxs > :first-child, .framer-gxRKj .framer-jldff8 > :first-child, .framer-gxRKj .framer-1b0qt01 > :first-child, .framer-gxRKj .framer-dk782o > :first-child, .framer-gxRKj .framer-j9kb76 > :first-child, .framer-gxRKj .framer-4q0iue > :first-child, .framer-gxRKj .framer-omafd6 > :first-child, .framer-gxRKj .framer-1d7ox9m > :first-child, .framer-gxRKj .framer-ffsxqo > :first-child, .framer-gxRKj .framer-fv6j41 > :first-child, .framer-gxRKj .framer-pd1mmf > :first-child { margin-top: 0px; } .framer-gxRKj .framer-1pu2hsu > :last-child, .framer-gxRKj .framer-1wkmocq > :last-child, .framer-gxRKj .framer-qgaqrx > :last-child, .framer-gxRKj .framer-1q4t95w > :last-child, .framer-gxRKj .framer-189tnql > :last-child, .framer-gxRKj .framer-cvagfi > :last-child, .framer-gxRKj .framer-sultxs > :last-child, .framer-gxRKj .framer-jldff8 > :last-child, .framer-gxRKj .framer-1b0qt01 > :last-child, .framer-gxRKj .framer-dk782o > :last-child, .framer-gxRKj .framer-j9kb76 > :last-child, .framer-gxRKj .framer-4q0iue > :last-child, .framer-gxRKj .framer-omafd6 > :last-child, .framer-gxRKj .framer-1d7ox9m > :last-child, .framer-gxRKj .framer-ffsxqo > :last-child, .framer-gxRKj .framer-fv6j41 > :last-child, .framer-gxRKj .framer-pd1mmf > :last-child { margin-bottom: 0px; } .framer-gxRKj .framer-1wkmocq > *, .framer-gxRKj .framer-4q0iue > *, .framer-gxRKj .framer-ffsxqo > *, .framer-gxRKj .framer-fv6j41 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gxRKj .framer-qgaqrx > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-gxRKj .framer-1q4t95w > * { margin: 0px; margin-bottom: calc(57px / 2); margin-top: calc(57px / 2); } .framer-gxRKj .framer-189tnql > * { margin: 0px; margin-bottom: calc(154px / 2); margin-top: calc(154px / 2); } .framer-gxRKj .framer-7pbgd5 > *, .framer-gxRKj .framer-7pbgd5 > :first-child, .framer-gxRKj .framer-7pbgd5 > :last-child { margin: 0px; } .framer-gxRKj .framer-cvagfi > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-gxRKj .framer-sultxs > *, .framer-gxRKj .framer-j9kb76 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-gxRKj .framer-jldff8 > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } .framer-gxRKj .framer-1b0qt01 > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-gxRKj .framer-dk782o > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-gxRKj .framer-omafd6 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-gxRKj .framer-1d7ox9m > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-gxRKj .framer-pd1mmf > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9174.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"coCKftaOF\":{\"layout\":[\"fixed\",\"auto\"]},\"RgmckPE9P\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"EqjaA_K8a\":{\"pattern\":\":EqjaA_K8a\",\"name\":\"about\"},\"LAR1v2O4k\":{\"pattern\":\":LAR1v2O4k\",\"name\":\"white\"},\"itfenGLSE\":{\"pattern\":\":itfenGLSE\",\"name\":\"book\"},\"HfIi_e8IC\":{\"pattern\":\":HfIi_e8IC\",\"name\":\"book\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-gxRKj\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:9174.5,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Degular Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/KxagQkYjM9S2n3vl3JFO83fJaMo.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"}]},...NavigationCopyFonts,...NavigationCopy2Fonts,...VimeoFonts,...ArcFonts,...HeroFonts,...TypeformFonts,...AccordionFonts,...FooterAgainFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"9174.5\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"coCKftaOF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RgmckPE9P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"{\\\"EqjaA_K8a\\\":{\\\"pattern\\\":\\\":EqjaA_K8a\\\",\\\"name\\\":\\\"about\\\"},\\\"LAR1v2O4k\\\":{\\\"pattern\\\":\\\":LAR1v2O4k\\\",\\\"name\\\":\\\"white\\\"},\\\"itfenGLSE\\\":{\\\"pattern\\\":\\\":itfenGLSE\\\",\\\"name\\\":\\\"book\\\"},\\\"HfIi_e8IC\\\":{\\\"pattern\\\":\\\":HfIi_e8IC\\\",\\\"name\\\":\\\"book\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "qyBAAA,SAASA,GAAQC,EAAE,CAA8B,QAAzBC,EAAE,EAAMC,EAAEC,EAAE,EAAEC,EAAEJ,EAAE,OAAYI,GAAG,EAAE,EAAED,EAAEC,GAAG,EAAGF,EAAE,IAAIF,EAAE,WAAWG,CAAC,GAAG,IAAIH,EAAE,WAAW,EAAEG,CAAC,IAAI,GAAG,IAAIH,EAAE,WAAW,EAAEG,CAAC,IAAI,IAAI,IAAIH,EAAE,WAAW,EAAEG,CAAC,IAAI,GAAGD,EAAE,YAAY,MAAMA,IAAI,OAAOA,IAAI,KAAK,IAAIA,GAAGA,IAAI,GAAGD,EAAE,YAAY,MAAMC,IAAI,OAAOA,IAAI,KAAK,IAAI,YAAY,MAAMD,IAAI,OAAOA,IAAI,KAAK,IAAI,OAAOG,EAAE,CAAC,IAAK,GAAEH,IAAI,IAAID,EAAE,WAAWG,EAAE,CAAC,IAAI,GAAG,IAAK,GAAEF,IAAI,IAAID,EAAE,WAAWG,EAAE,CAAC,IAAI,EAAE,IAAK,GAAEF,GAAG,IAAID,EAAE,WAAWG,CAAC,EAAEF,EAAE,YAAY,MAAMA,IAAI,OAAOA,IAAI,KAAK,GAAG,CAAC,OAAAA,GAAGA,IAAI,GAAGA,EAAE,YAAY,MAAMA,IAAI,OAAOA,IAAI,KAAK,MAAYA,EAAEA,IAAI,MAAM,GAAG,SAAS,EAAE,CAAC,CCAhZ,SAASI,GAAiBC,EAAkB,CAAC,OAAOA,EAAkB,CAAC,IAAI,MAAM,MAAM,WAAW,IAAI,SAAS,MAAM,UAAU,IAAI,SAAS,MAAM,SAAU,CAAC,CAU5T,IAAMC,GAAIC,GAAQ,SAAaC,EAAM,CACxC,IAAMC,EAASC,GAAa,QAAQ,IAAIA,GAAa,OACnBC,EAAlB,CAACH,EAAM,KAA8BA,EAAM,eAAe,EAAE,EACtEI,EAAKC,GAAWL,EAAM,KAAKG,CAAQ,EACnCG,EAAG,SAASC,GAAKH,CAAI,IACrBI,EAAeZ,GAAiBI,EAAM,iBAAiB,EAAE,OAAoB,EAAM,MAAM,CAAC,UAAU,iCAAiC,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,gBAAgB,QAAQ,EAAE,QAAQ,cAAc,SAAS,UAAU,SAAS,CAAcS,EAAK,OAAO,CAAC,GAAGH,EAAG,EAAEF,EAAK,YAAY,OAAO,KAAK,aAAa,CAAC,EAAeK,EAAK,OAAO,CAAC,SAAsBA,EAAK,WAAW,CAAC,KAAK,IAAIH,IAAK,YAAYN,EAAM,YAAY,iBAAiBQ,EAAe,MAAM,CAAC,cAAcR,EAAM,KAAK,cAAcA,EAAM,KAAK,cAAc,KAAK,GAAGA,EAAM,KAAK,KAAKA,EAAM,KAAK,EAAE,SAASA,EAAM,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,EAC7lB,CAAC,iFAAiF,CAAC,EAASU,GAAQZ,GAAIA,GAAI,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEa,GAAoBb,GAAI,CAAC,KAAK,CAAC,MAAM,UAAU,KAAKc,EAAY,OAAO,aAAa,sCAAsC,gBAAgB,EAAI,EAAE,KAAK,CAAC,MAAM,OAAO,KAAKA,EAAY,QAAQ,aAAa,SAAS,cAAc,UAAU,aAAa,EAAI,EAAE,eAAe,CAAC,MAAM,SAAS,KAAKA,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,OAAOZ,GAAOA,EAAM,IAAI,EAAE,kBAAkB,CAAC,MAAM,QAAQ,KAAKY,EAAY,KAAK,QAAQ,CAAC,MAAM,SAAS,QAAQ,EAAE,YAAY,CAAC,YAAY,eAAe,cAAc,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,KAAK,CAAC,KAAKA,EAAY,QAAQ,aAAa,GAAM,MAAM,YAAY,aAAa,KAAK,cAAc,KAAK,EAAE,YAAY,CAAC,MAAM,SAAS,KAAKA,EAAY,OAAO,aAAa,EAAE,IAAI,IAAI,KAAK,OAAO,KAAK,EAAE,EAAE,KAAK,CAAC,KAAKA,EAAY,KAAK,MAAM,OAAO,SAAS,WAAW,qBAAqB,EAAK,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,MAAM,aAAa,MAAM,CAAC,CAAC,EAA4B,IAAMP,GAAW,CAACQ,EAAKV,IAAW,CAAC,IAAMW,EAAY,GAAGX,EAAeY,EAAe,GAAGZ,EAAS,OAAOU,EAAoJ,cAAcE,qBAAkCA,WAAwBD,mBAA6BA,WAApP,cAAcA,qBAA+BA,oBAA8BC,mBAAgCA,SAAsBD,GAAwI,EChB37C,IAAIE,GAAiB,OAAO,WAAe,IAAc,WAAa,OAAOC,EAAW,IAAcA,EAAS,OAAOC,EAAW,IAAcA,EAAS,OAAO,KAAS,IAAc,KAAO,CAAC,EAI9L,SAASC,GAAqBC,EAAIC,EAASC,EAAQ,CACjD,OAAOA,EAAS,CACd,KAAMD,EACN,QAAS,CAAC,EACV,QAAS,SAASE,EAAMC,EAAM,CAC5B,OAAOC,GAAgBF,EAAyBC,GAAgBF,EAAO,IAAW,CACpF,CACF,EAAGF,EAAGE,EAAQA,EAAO,OAAO,EAAGA,EAAO,OACxC,CACA,SAASG,IAAkB,CACzB,MAAM,IAAI,MAAM,yEAAyE,CAC3F,CACA,IAAIC,GAAQP,GAAqB,SAASG,EAAQK,EAAS,EACxD,SAASC,EAAGC,EAAG,CACdP,EAAO,QAAUO,EAAE,CACrB,GAAEC,GAAgB,UAAW,CAC3B,OAAO,UAAW,CAChB,IAAIF,EAAI,CAAC,GAAI,SAASG,EAAIC,EAAI,CAC5B,OAAO,eAAeA,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,cAAgBA,EAAG,WAAaA,EAAG,aAAeA,EAAG,gBAAkBA,EAAG,kBAAoBA,EAAG,iBAAmBA,EAAG,iBAAmBA,EAAG,gBAAkBA,EAAG,kBAAoB,OAAQA,EAAG,kBAAoB,kBAAmBA,EAAG,gBAAkB,gBAAiBA,EAAG,iBAAmB,iBAAkBA,EAAG,iBAAmB,iBAAkBA,EAAG,kBAAoB,kBAAmBA,EAAG,gBAAkB,QAASA,EAAG,aAAe,IAAKA,EAAG,WAAa,IAAKA,EAAG,cAAgB,2BACliB,EAAG,IAAK,SAASD,EAAIC,EAAIC,EAAG,CAC1B,IAAIC,EAAI,MAAQ,KAAK,UAAY,UAAW,CAC1C,OAAQA,EAAI,OAAO,QAAU,SAASC,EAAI,CACxC,QAASC,EAAIC,EAAK,EAAGC,EAAK,UAAU,OAAQD,EAAKC,EAAID,IACnD,QAASE,KAAMH,EAAK,UAAUC,CAAE,EAC9B,OAAO,UAAU,eAAe,KAAKD,EAAIG,CAAE,IAAMJ,EAAGI,CAAE,EAAIH,EAAGG,CAAE,GACnE,OAAOJ,CACT,GAAG,MAAM,KAAM,SAAS,CAC1B,EACA,OAAO,eAAeH,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,cAAgB,OAC3E,IAAIQ,EAAIP,EAAE,GAAG,EAAGQ,EAAIR,EAAE,GAAG,EAAGS,EAAI,SAASP,EAAIC,EAAI,CAC/C,IAAIC,EAAKF,EAAG,WACZE,IAAOA,EAAG,YAAYF,CAAE,EAAGE,EAAG,YAAYD,CAAE,EAC9C,EAAGO,EAAI,SAASR,EAAIC,EAAI,CACtBD,IAAO,SAAWA,EAAK,OAAQC,IAAO,SAAWA,EAAK,6BACtD,IAAIC,EAAK,SAAS,cAAcF,CAAE,EAClC,OAAOE,EAAG,UAAYD,EAAK,oBAAqBC,EAAG,UAAY,UAAWA,EAAG,QAAQ,OAASD,EAAIC,CACpG,EAAGO,EAAI,CAAC,YAAa,SAAS,EAC9BZ,EAAG,cAAgB,SAASG,EAAIC,EAAI,CAClCA,IAAO,SAAWA,EAAK,CAAC,GACxB,IAAIC,EAAIQ,EAAGC,EAAIZ,EAAEA,EAAE,CAAC,EAAGU,CAAC,EAAGR,CAAE,EAAGW,EAAIP,EAAE,aAAaL,EAAI,UAAWW,CAAC,EAAGE,EAAID,EAAE,OAAQE,EAAIF,EAAE,QAASG,EAAIH,EAAE,QAASI,EAAI,SAASC,EAAIC,EAAI,CACrI,IAAIC,EAAK,SAAS,cAAc,KAAK,EACrC,OAAOA,EAAG,UAAY,gBAAiBA,EAAG,QAAQ,OAAS,gBAAiBd,EAAE,eAAec,EAAI,CAAC,MAAOF,EAAI,OAAQC,CAAE,CAAC,CAC1H,EAAEP,EAAE,MAAOA,EAAE,MAAM,EAAGS,EAAI,UAAW,CACnC,IAAIH,EAAK,SAAS,cAAc,KAAK,EACrC,OAAOA,EAAG,UAAY,wBAAyBA,EAAG,QAAQ,OAAS,wBAAyBA,CAC9F,EAAE,EAAGI,EAAI,SAASJ,EAAIC,EAAI,CACxB,IAAIC,EAAKd,EAAE,aAAaa,CAAE,EAAGf,EAAK,SAAS,cAAc,KAAK,EAC9DA,EAAG,UAAY,4BACf,IAAImB,EAAK;AAAA;AAAA;AAAA;AAAA;AAAA,sGAAupBH,EAAK;AAAA,UAAuBI,GAA2BN,GAAG,WAAW,MAAM,EAC3uB,OAAOd,EAAG,UAAYoB,GAAK,+CAAiDN,EAAK,MAAQA,GAAkBK,EAAInB,EAAG,QAAQ,OAAS,eAAgBA,CACrJ,EAAEQ,EAAE,WAAYA,EAAE,aAAeF,EAAE,WAAW,EAAGe,EAAI,UAAW,CAC9D,IAAIP,EAAK,SAAS,cAAc,KAAK,EACrCA,EAAG,UAAY,gBACf,IAAIC,EAAK,SAAS,cAAc,KAAK,EACrC,OAAOA,EAAG,UAAY,4BAA6BA,EAAG,QAAQ,OAAS,eAAgBA,EAAG,OAAOD,CAAE,EAAGC,CACxG,EAAE,EAAGO,EAAIjB,EAAE,EAAGkB,EAAIlB,EAAE,IAAK,qBAAqB,EAAGmB,EAAI,SAASV,EAAI,CAChE,IAAIC,EAAKb,EAAE,aAAaY,CAAE,EAAGE,EAAK,SAAS,cAAc,QAAQ,EACjE,OAAOA,EAAG,UAAY,uBAAwBA,EAAG,QAAQ,OAAS,uBAAwBA,EAAG,MAAM,gBAAkBF,EAAIE,EAAG,MAAM,MAAQD,EAAIC,CAChJ,EAAER,EAAE,aAAeF,EAAE,WAAW,GAC/BE,EAAE,WAAa,SAAS,MAAM,OAAOK,CAAC,EAAGI,EAAE,OAAOP,CAAC,EAAGG,EAAE,OAAOW,CAAC,EAAGX,EAAE,OAAOU,CAAC,EAAGC,EAAE,OAAON,CAAC,EAC3F,IAAIO,EAAI,UAAW,CACjB1B,GAAMA,EAAG,aAAeA,EAAG,UAAU,IAAI,SAAS,EAAG,WAAW,UAAW,CACzEG,EAAE,eAAeH,CAAE,CACrB,EAAG,GAAG,EACR,EACAS,EAAE,SAAWA,EAAE,QAAQ,OAAS,IAAMT,EAAK,SAASe,EAAIC,EAAI,CAC1D,IAAIC,EAAK,SAAS,cAAc,MAAM,EACtCA,EAAG,UAAY,8BAA+BA,EAAG,QAAQ,OAAS,8BAA+BA,EAAG,UAAY,UAAWA,EAAG,QAAUD,EACxI,IAAIf,EAAK,SAAS,cAAc,KAAK,EACrCA,EAAG,UAAY,6BAA8BA,EAAG,UAAYc,EAC5D,IAAIb,EAAK,SAAS,cAAc,KAAK,EACrC,OAAOA,EAAG,UAAY,wBAAyBA,EAAG,QAAQ,OAAS,wBAAyBA,EAAG,YAAYD,CAAE,EAAGC,EAAG,YAAYe,CAAE,EAAGf,CACtI,EAAEO,EAAE,QAASiB,CAAC,EAAGZ,EAAE,OAAOd,CAAE,GAAIS,EAAE,mBAAqBA,EAAE,eAAiBL,EAAE,wBAAwBN,CAAE,KAAOU,EAAIJ,EAAE,qBAAqB,EAAGqB,EAAE,OAAOjB,CAAC,GAAIG,EAAE,OAAS,UAAW,CAC7KG,EAAE,UAAU,IAAI,MAAM,EAAGI,EAAE,MAAM,QAAU,IAAKM,EAAE,MAAM,QAAU,IAAKnB,EAAEiB,EAAGC,CAAC,EAAGpB,EAAE,0BAA0BwB,CAAC,CAC/G,EACA,IAAIC,EAAI,UAAW,CACjBzB,EAAE,OAAOe,CAAC,IAAMQ,EAAE,EAAGlB,IAAMA,EAAE,UAAU,IAAI,SAAS,EAAGC,EAAE,kBAAoB,CAACA,EAAE,eAAiBL,EAAE,iCAAiCN,EAAIW,EAAE,gBAAgB,EAAG,WAAW,UAAW,CACjLN,EAAE,eAAeK,CAAC,CACpB,EAAG,GAAG,GAAI,WAAW,UAAW,CAC9BL,EAAE,SAASe,CAAC,GAAKA,EAAE,MAAM,QAAU,IAAKM,EAAE,MAAM,QAAU,IAAKN,EAAE,MAAM,QAAU,OAAQ,WAAW,UAAW,CAC7GJ,EAAE,UAAU,IAAI,MAAM,EAAGI,EAAE,MAAM,QAAU,IAAKM,EAAE,MAAM,QAAU,GACpE,CAAC,EAAGnB,EAAEc,EAAGI,CAAC,IAAMT,EAAE,OAAOI,CAAC,EAAGb,EAAEc,EAAGG,CAAC,EAAGJ,EAAE,MAAM,QAAU,IAAKM,EAAE,MAAM,QAAU,IACjF,CAAC,EACH,EAAGG,EAAI,UAAW,CAChB,IAAIZ,EACJZ,EAAE,OAAOW,CAAC,KAAOC,EAAKhB,EAAG,WAAa,MAAQgB,IAAO,QAAUA,EAAG,KAAKhB,CAAE,EAAG,WAAW,UAAW,CAChGU,EAAE,YAAcS,EAAE,MAAM,QAAU,OAASf,EAAE,eAAee,CAAC,EAAGJ,EAAE,UAAU,OAAO,MAAM,EAAGT,EAAEkB,EAAGJ,CAAC,CACpG,EAAG,GAAG,EACR,EACAhB,EAAE,aAAaS,EAAGH,EAAE,UAAWkB,CAAC,EAChC,IAAIE,EAAI,UAAW,CACjB1B,EAAE,OAAOe,CAAC,EAAIS,EAAE,EAAIC,EAAE,CACxB,EACA,OAAOH,EAAE,QAAUI,EAAGL,EAAE,QAAUG,EAAGlB,EAAE,MAAQ,CAACN,EAAE,OAAOe,CAAC,GAAKf,EAAE,iBAAiByB,EAAGnB,EAAE,KAAMA,EAAE,SAAS,EAAG,CAAC,KAAMmB,EAAG,MAAOD,EAAG,OAAQE,EAAG,QAAShB,EAAG,QAAS,UAAW,CACxKV,EAAE,eAAeW,CAAC,CACpB,CAAC,CACH,CACF,EAAG,IAAK,SAASpB,EAAIC,EAAIC,EAAG,CAC1B,IAAIC,EAAI,MAAQ,KAAK,kBAAoB,OAAO,OAAS,SAASC,EAAIC,EAAIC,EAAIC,EAAI,CAChFA,IAAO,SAAWA,EAAKD,GAAK,OAAO,eAAeF,EAAIG,EAAI,CAAC,WAAY,GAAM,IAAK,UAAW,CAC3F,OAAOF,EAAGC,CAAE,CACd,CAAC,CAAC,CACJ,EAAI,SAASF,EAAIC,EAAIC,EAAIC,EAAI,CAC3BA,IAAO,SAAWA,EAAKD,GAAKF,EAAGG,CAAE,EAAIF,EAAGC,CAAE,CAC5C,GAAIG,EAAI,MAAQ,KAAK,cAAgB,SAASL,EAAIC,EAAI,CACpD,QAASC,KAAMF,EACbE,IAAO,WAAa,OAAO,UAAU,eAAe,KAAKD,EAAIC,CAAE,GAAKH,EAAEE,EAAID,EAAIE,CAAE,CACpF,EACA,OAAO,eAAeL,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,CACrF,EAAG,IAAK,SAASD,EAAIC,EAAI,CACvB,IAAIC,EAAI,MAAQ,KAAK,UAAY,UAAW,CAC1C,OAAQA,EAAI,OAAO,QAAU,SAASE,EAAI,CACxC,QAASC,EAAIC,EAAK,EAAGC,EAAK,UAAU,OAAQD,EAAKC,EAAID,IACnD,QAASE,KAAMH,EAAK,UAAUC,CAAE,EAC9B,OAAO,UAAU,eAAe,KAAKD,EAAIG,CAAE,IAAMJ,EAAGI,CAAE,EAAIH,EAAGG,CAAE,GACnE,OAAOJ,CACT,GAAG,MAAM,KAAM,SAAS,CAC1B,EACA,OAAO,eAAeH,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,qBAAuBA,EAAG,wBAA0BA,EAAG,iCAAmC,OACrJ,IAAIE,EAAI,qBAAsBM,EAAI,UAAW,CAC3C,IAAIL,EAAK,aAAa,QAAQD,CAAC,EAC/B,OAAOC,EAAK,KAAK,MAAMA,CAAE,EAAI,CAAC,CAChC,EAAGM,EAAI,SAASN,EAAI,CAClBA,GAAM,aAAa,QAAQD,EAAG,KAAK,UAAUC,CAAE,CAAC,CAClD,EACAH,EAAG,iCAAmC,SAASG,EAAIC,EAAI,CACrD,IAAIE,EAAII,EAAI,IAAI,KAChBA,EAAE,QAAQA,EAAE,QAAQ,EAAIN,CAAE,EAAGK,EAAER,EAAEA,EAAE,CAAC,EAAGO,EAAE,CAAC,IAAKF,EAAK,CAAC,GAAGH,CAAE,EAAI,CAAC,cAAeO,EAAE,QAAQ,CAAC,EAAGJ,EAAG,CAAC,CAClG,EAAGN,EAAG,wBAA0B,SAASG,EAAI,CAC3C,IAAIC,EAAK,SAASgB,EAAI,CACpB,IAAIC,EACJ,QAASA,EAAKb,EAAE,EAAEY,CAAE,KAAO,MAAQC,IAAO,OAAS,OAASA,EAAG,gBAAkB,CACnF,EAAElB,CAAE,EACJ,OAAO,IAAI,KAAK,EAAE,QAAQ,EAAIC,IAAOA,GAAM,SAASgB,EAAI,CACtD,IAAIC,EAAKb,EAAE,EACX,OAAOa,EAAGD,CAAE,EAAGX,EAAEY,CAAE,CACrB,EAAElB,CAAE,EAAG,GACT,EAAGH,EAAG,qBAAuB,UAAW,CACtC,IAAIG,EAAK,SAAS,cAAc,MAAM,EACtC,OAAOA,EAAG,UAAY,2BAA4BA,EAAG,QAAQ,OAAS,2BAA4BA,CACpG,CACF,EAAG,IAAK,SAASJ,EAAIC,EAAI,CACvB,OAAO,eAAeA,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,CACvD,EAAG,IAAK,SAASD,EAAIC,EAAIC,EAAG,CAC1B,IAAIC,EAAI,MAAQ,KAAK,QAAU,SAASC,EAAIC,EAAI,CAC9C,IAAIC,EAAK,CAAC,EACV,QAASC,KAAMH,EACb,OAAO,UAAU,eAAe,KAAKA,EAAIG,CAAE,GAAKF,EAAG,QAAQE,CAAE,EAAI,IAAMD,EAAGC,CAAE,EAAIH,EAAGG,CAAE,GACvF,GAAIH,GAAM,MAAQ,OAAO,OAAO,uBAAyB,WAAY,CACnE,IAAII,EAAK,EACT,IAAKD,EAAK,OAAO,sBAAsBH,CAAE,EAAGI,EAAKD,EAAG,OAAQC,IAC1DH,EAAG,QAAQE,EAAGC,CAAE,CAAC,EAAI,GAAK,OAAO,UAAU,qBAAqB,KAAKJ,EAAIG,EAAGC,CAAE,CAAC,IAAMF,EAAGC,EAAGC,CAAE,CAAC,EAAIJ,EAAGG,EAAGC,CAAE,CAAC,GAE/G,OAAOF,CACT,EACA,OAAO,eAAeL,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,YAAc,OACzE,IAAIQ,EAAIP,EAAE,GAAG,EAAGQ,EAAIR,EAAE,EAAE,EAAGS,EAAIT,EAAE,GAAG,EACpCD,EAAG,YAAc,SAASG,EAAIC,EAAI,CAChC,GAAIA,IAAO,SAAWA,EAAK,CAAC,GAAI,CAACI,EAAE,OAAO,EACxC,MAAO,CAAC,KAAM,UAAW,CACzB,EAAG,MAAO,UAAW,CACrB,EAAG,OAAQ,UAAW,CACtB,EAAG,QAAS,UAAW,CACvB,EAAG,QAAS,UAAW,CACvB,CAAC,EACH,IAAIH,EAAKD,EAAG,MAAOO,EAAIP,EAAG,OAAQQ,EAAIR,EAAG,KAAMS,EAAID,IAAM,OAASH,EAAE,WAAaG,EAAGE,EAAIV,EAAG,QAASW,EAAIb,EAAEE,EAAI,CAAC,QAAS,SAAU,OAAQ,SAAS,CAAC,EAAGY,EAAIR,EAAE,aAAaL,EAAI,QAASY,CAAC,EAAGE,EAAID,EAAE,OAAQE,EAAIF,EAAE,QAASG,EAAIH,EAAE,QAASO,EAAI,SAAS,KAAK,MAAM,SAAUC,EAAI,UAAW,CACtR,IAAIJ,EAAK,SAAS,cAAc,KAAK,EACrC,OAAOA,EAAG,UAAY,cAAeA,EAAG,MAAM,QAAU,IAAKA,CAC/D,EAAE,EAAGO,EAAI,UAAW,CAClB,IAAIP,EAAK,SAAS,cAAc,KAAK,EACrC,OAAOA,EAAG,UAAY,gBAAiBA,CACzC,EAAE,EAAGQ,EAAI,SAASR,EAAIC,EAAIC,EAAI,CAC5B,IAAIhB,EAAK,SAAS,cAAc,KAAK,EACrC,OAAOA,EAAG,UAAY,uBAAwBA,EAAG,MAAM,QAAU,IAAKE,EAAE,UAAUY,CAAE,GAAKZ,EAAE,UAAUa,CAAE,EAAIb,EAAE,eAAeF,EAAI,CAAC,MAAOc,EAAI,OAAQC,CAAE,CAAC,GAAKf,EAAG,MAAM,MAAQ,QAAUgB,EAAK,YAAahB,EAAG,MAAM,OAAS,QAAUgB,EAAK,YAAahB,EACzP,EAAED,EAAIM,EAAGE,CAAC,EACVe,EAAE,OAAOX,CAAC,EAAGO,EAAE,OAAOG,CAAC,EAAGH,EAAE,OAAOI,CAAC,EACpC,IAAIC,EAAId,EAAE,WAAa,SAAS,KAChCE,EAAE,OAAS,UAAW,CACpBW,EAAE,MAAM,QAAU,IAAK,WAAW,UAAW,CAC3CD,EAAE,MAAM,QAAU,MACpB,EAAG,GAAG,EAAGnB,EAAE,0BAA0BuB,CAAC,CACxC,EACA,IAAID,EAAI,UAAW,CACjBpB,EAAE,OAAOc,CAAC,IAAMd,EAAE,SAASc,CAAC,EAAIA,EAAE,MAAM,QAAU,QAAUG,EAAE,MAAM,QAAU,QAASE,EAAE,OAAOL,CAAC,GAAI,SAAS,KAAK,MAAM,SAAW,SAAU,WAAW,UAAW,CAClKA,EAAE,MAAM,QAAU,GACpB,CAAC,EACH,EAAGO,EAAI,UAAW,CAChBrB,EAAE,OAAOc,CAAC,IAAmBV,IAAE,EAAGU,EAAE,MAAM,QAAU,IAAK,SAAS,KAAK,MAAM,SAAWD,EAAG,WAAW,UAAW,CAC/GR,EAAE,YAAcS,EAAE,MAAM,QAAU,OAASS,EAAE,CAC/C,EAAG,GAAG,EACR,EACAL,EAAE,OAAO,SAASR,EAAI,CACpB,IAAIC,EAAK,SAAS,cAAc,GAAG,EACnC,OAAOA,EAAG,UAAY,+BAAgCA,EAAG,UAAY,UAAWA,EAAG,QAAUD,EAAIC,CACnG,EAAEU,CAAC,CAAC,EAAGvB,EAAE,aAAaU,EAAGH,EAAE,UAAWgB,CAAC,EACvC,IAAIE,EAAI,UAAW,CACjBzB,EAAE,eAAegB,CAAC,CACpB,EACA,OAAOT,EAAE,MAAQ,CAACL,EAAE,OAAOc,CAAC,GAAKhB,EAAE,iBAAiBsB,EAAGf,EAAE,KAAMA,EAAE,SAAS,EAAG,CAAC,KAAMe,EAAG,MAAOC,EAAG,OAAQ,UAAW,CAClHrB,EAAE,OAAOc,CAAC,EAAIO,EAAE,EAAID,EAAE,CACxB,EAAG,QAASX,EAAG,QAASc,CAAC,CAC3B,CACF,EAAG,IAAK,SAASlC,EAAIC,EAAIC,EAAG,CAC1B,IAAIC,EAAI,MAAQ,KAAK,kBAAoB,OAAO,OAAS,SAASC,EAAIC,EAAIC,EAAIC,EAAI,CAChFA,IAAO,SAAWA,EAAKD,GAAK,OAAO,eAAeF,EAAIG,EAAI,CAAC,WAAY,GAAM,IAAK,UAAW,CAC3F,OAAOF,EAAGC,CAAE,CACd,CAAC,CAAC,CACJ,EAAI,SAASF,EAAIC,EAAIC,EAAIC,EAAI,CAC3BA,IAAO,SAAWA,EAAKD,GAAKF,EAAGG,CAAE,EAAIF,EAAGC,CAAE,CAC5C,GAAIG,EAAI,MAAQ,KAAK,cAAgB,SAASL,EAAIC,EAAI,CACpD,QAASC,KAAMF,EACbE,IAAO,WAAa,OAAO,UAAU,eAAe,KAAKD,EAAIC,CAAE,GAAKH,EAAEE,EAAID,EAAIE,CAAE,CACpF,EACA,OAAO,eAAeL,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,CACrF,EAAG,IAAK,SAASD,EAAIC,EAAI,CACvB,OAAO,eAAeA,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,CACvD,EAAG,IAAK,SAASD,EAAIC,EAAIC,EAAG,CAC1B,IAAIC,EAAI,MAAQ,KAAK,UAAY,UAAW,CAC1C,OAAQA,EAAI,OAAO,QAAU,SAASC,EAAI,CACxC,QAASC,EAAIC,EAAK,EAAGC,EAAK,UAAU,OAAQD,EAAKC,EAAID,IACnD,QAASE,KAAMH,EAAK,UAAUC,CAAE,EAC9B,OAAO,UAAU,eAAe,KAAKD,EAAIG,CAAE,IAAMJ,EAAGI,CAAE,EAAIH,EAAGG,CAAE,GACnE,OAAOJ,CACT,GAAG,MAAM,KAAM,SAAS,CAC1B,EACA,OAAO,eAAeH,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,cAAgB,OAC3E,IAAIQ,EAAIP,EAAE,GAAG,EAAGQ,EAAI,CAAC,YAAa,UAAW,WAAY,WAAW,EAAGC,EAAI,SAASP,EAAIC,EAAI,CAC1FD,IAAO,SAAWA,EAAK,OAAQC,IAAO,SAAWA,EAAK,6BACtD,IAAIC,EAAK,SAAS,cAAcF,CAAE,EAClC,OAAOE,EAAG,UAAYD,EAAK,oBAAqBC,EAAG,UAAY,UAAWA,EAAG,QAAQ,OAASD,EAAIC,CACpG,EAAGM,EAAI,SAASR,EAAIC,EAAI,CACtB,IAAIC,EAAKF,EAAG,WACZE,IAAOA,EAAG,YAAYF,CAAE,EAAGE,EAAG,YAAYD,CAAE,EAC9C,EACAJ,EAAG,cAAgB,SAASG,EAAIC,EAAI,CAClCA,IAAO,SAAWA,EAAK,CAAC,GACxB,IAAIC,EAAIO,EAAGC,EAAGC,EAAIZ,EAAEA,EAAE,CAAC,EAAGO,CAAC,EAAGL,CAAE,EAAGW,EAAIP,EAAE,aAAaL,EAAI,WAAYW,CAAC,EAAGE,EAAID,EAAE,OAAQE,EAAIF,EAAE,QAASG,EAAIH,EAAE,QAASI,GAAKd,EAAKS,EAAE,MAAOF,EAAIE,EAAE,QAASD,EAAI,SAAS,cAAc,KAAK,GAAG,UAAY,gBAAiBA,EAAE,QAAQ,OAAS,gBAAiBL,EAAE,eAAeK,EAAG,CAAC,MAAOR,EAAI,OAAQO,CAAC,CAAC,GAAIW,EAAI,UAAW,CACvT,IAAIH,EAAK,SAAS,cAAc,KAAK,EACrC,OAAOA,EAAG,UAAY,wBAAyBA,EAAG,QAAQ,OAAS,wBAAyBA,CAC9F,EAAE,EAAGI,EAAI,UAAW,CAClB,IAAIJ,EAAK,SAAS,cAAc,KAAK,EACrCA,EAAG,UAAY,gBACf,IAAIC,EAAK,SAAS,cAAc,KAAK,EACrC,OAAOA,EAAG,UAAY,4BAA6BA,EAAG,QAAQ,OAAS,eAAgBA,EAAG,OAAOD,CAAE,EAAGC,CACxG,EAAE,EAAGM,EAAI,SAASP,EAAI,CACpB,IAAIC,EAAKb,EAAE,aAAaY,CAAE,EAAGE,EAAK,SAAS,cAAc,QAAQ,EACjE,OAAOA,EAAG,UAAY,uBAAwBA,EAAG,MAAM,gBAAkBF,EAAIE,EAAG,MAAM,MAAQD,EAAIC,CACpG,EAAER,EAAE,aAAeL,EAAE,WAAW,EAAGmB,EAAI,SAASR,EAAI,CAClD,IAAIC,EAAK,SAAS,cAAc,MAAM,EACtC,OAAOA,EAAG,UAAY,4BAA6BA,EAAG,UAAYD,EAAIC,CACxE,EAAEP,EAAE,YAAcL,EAAE,UAAU,EAAGoB,EAAI,SAAST,EAAIC,EAAI,CACpD,IAAIC,EAAKd,EAAE,aAAaa,CAAE,EAAGf,EAAK,SAAS,cAAc,KAAK,EAC9DA,EAAG,UAAY,4BACf,IAAImB,EAAK;AAAA,+hBAAmoBH,EAAK;AAAA,UAAuBI,GAA2BN,GAAG,WAAW,MAAM,EACvtB,OAAOd,EAAG,UAAYoB,GAAK,+CAAiDN,EAAK,MAAQA,GAAkBK,EAAInB,EAAG,QAAQ,OAAS,eAAgBA,CACrJ,EAAEQ,EAAE,WAAYA,EAAE,aAAeL,EAAE,WAAW,EAAGqB,EAAIpB,EAAE,EAAGqB,EAAIrB,EAAE,IAAK,qBAAqB,GACzFI,EAAE,WAAa,SAAS,MAAM,OAAOK,CAAC,EAAGI,EAAE,OAAOP,CAAC,EAAGG,EAAE,OAAOQ,CAAC,EAAGR,EAAE,OAAOY,CAAC,EAAGJ,EAAE,OAAOE,CAAC,EAAGF,EAAE,OAAOC,CAAC,EAAG,WAAW,UAAW,CAC/HT,EAAE,UAAU,IAAI,OAAO,CACzB,EAAG,GAAG,EAAGH,EAAE,OAAS,UAAW,CAC7BG,EAAE,UAAU,IAAI,MAAM,EAAGR,EAAEa,EAAGM,CAAC,EAAGtB,EAAE,0BAA0BwB,CAAC,CACjE,EACA,IAAIC,EAAI,UAAW,CACjBzB,EAAE,OAAOe,CAAC,IAAMf,EAAE,SAASe,CAAC,GAAKA,EAAE,MAAM,QAAU,OAAQJ,EAAE,UAAU,IAAI,MAAM,EAAGR,EAAEkB,EAAGC,CAAC,IAAMX,EAAE,OAAOI,CAAC,EAAGZ,EAAEkB,EAAGL,CAAC,GACrH,EAAGQ,EAAI,UAAW,CAChB,IAAIZ,EACJZ,EAAE,OAAOe,CAAC,KAAOH,EAAKN,EAAE,WAAa,MAAQM,IAAO,QAAUA,EAAG,KAAKN,CAAC,EAAGK,EAAE,UAAU,OAAO,MAAM,EAAG,WAAW,UAAW,CAC1HL,EAAE,YAAcS,EAAE,MAAM,QAAU,OAASf,EAAE,eAAee,CAAC,EAAGZ,EAAEmB,EAAGD,CAAC,CACxE,EAAG,GAAG,EACR,EACArB,EAAE,aAAaS,EAAGH,EAAE,UAAWkB,CAAC,EAChC,IAAIE,EAAI,UAAW,CACjB1B,EAAE,OAAOe,CAAC,EAAIS,EAAE,EAAIC,EAAE,CACxB,EACA,OAAON,EAAE,QAAUO,EAAGH,EAAE,QAAUC,EAAGlB,EAAE,MAAQ,CAACN,EAAE,OAAOe,CAAC,GAAKf,EAAE,iBAAiByB,EAAGnB,EAAE,KAAMA,EAAE,SAAS,EAAG,CAAC,KAAMmB,EAAG,MAAOD,EAAG,OAAQE,EAAG,QAAShB,EAAG,QAAS,UAAW,CACxKV,EAAE,eAAeW,CAAC,CACpB,CAAC,CACH,CACF,EAAG,IAAK,SAASpB,EAAIC,EAAIC,EAAG,CAC1B,IAAIC,EAAI,MAAQ,KAAK,kBAAoB,OAAO,OAAS,SAASC,EAAIC,EAAIC,EAAIC,EAAI,CAChFA,IAAO,SAAWA,EAAKD,GAAK,OAAO,eAAeF,EAAIG,EAAI,CAAC,WAAY,GAAM,IAAK,UAAW,CAC3F,OAAOF,EAAGC,CAAE,CACd,CAAC,CAAC,CACJ,EAAI,SAASF,EAAIC,EAAIC,EAAIC,EAAI,CAC3BA,IAAO,SAAWA,EAAKD,GAAKF,EAAGG,CAAE,EAAIF,EAAGC,CAAE,CAC5C,GAAIG,EAAI,MAAQ,KAAK,cAAgB,SAASL,EAAIC,EAAI,CACpD,QAASC,KAAMF,EACbE,IAAO,WAAa,OAAO,UAAU,eAAe,KAAKD,EAAIC,CAAE,GAAKH,EAAEE,EAAID,EAAIE,CAAE,CACpF,EACA,OAAO,eAAeL,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,CACrF,EAAG,IAAK,SAASD,EAAIC,EAAI,CACvB,OAAO,eAAeA,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,CACvD,EAAG,IAAK,SAASD,EAAIC,EAAIC,EAAG,CAC1B,IAAIC,EAAI,MAAQ,KAAK,QAAU,SAASC,EAAIC,EAAI,CAC9C,IAAIC,EAAK,CAAC,EACV,QAASC,KAAMH,EACb,OAAO,UAAU,eAAe,KAAKA,EAAIG,CAAE,GAAKF,EAAG,QAAQE,CAAE,EAAI,IAAMD,EAAGC,CAAE,EAAIH,EAAGG,CAAE,GACvF,GAAIH,GAAM,MAAQ,OAAO,OAAO,uBAAyB,WAAY,CACnE,IAAII,EAAK,EACT,IAAKD,EAAK,OAAO,sBAAsBH,CAAE,EAAGI,EAAKD,EAAG,OAAQC,IAC1DH,EAAG,QAAQE,EAAGC,CAAE,CAAC,EAAI,GAAK,OAAO,UAAU,qBAAqB,KAAKJ,EAAIG,EAAGC,CAAE,CAAC,IAAMF,EAAGC,EAAGC,CAAE,CAAC,EAAIJ,EAAGG,EAAGC,CAAE,CAAC,GAE/G,OAAOF,CACT,EACA,OAAO,eAAeL,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,aAAe,OAC1E,IAAIQ,EAAIP,EAAE,GAAG,EAAGQ,EAAIR,EAAE,EAAE,EACxBD,EAAG,aAAe,SAASG,EAAIC,EAAI,CACjC,GAAIA,IAAO,SAAWA,EAAK,CAAC,GAAI,CAACI,EAAE,OAAO,EACxC,MAAO,CAAC,KAAM,UAAW,CACzB,EAAG,MAAO,UAAW,CACrB,EAAG,OAAQ,UAAW,CACtB,EAAG,QAAS,UAAW,CACvB,EAAG,QAAS,UAAW,CACvB,CAAC,EACH,IAAIH,EAAKD,EAAG,SAAUM,EAAIL,IAAO,OAASI,EAAE,gBAAkBJ,EAAIM,EAAIP,EAAG,MAAOQ,EAAID,IAAM,OAASF,EAAE,aAAeE,EAAGE,EAAIT,EAAG,QAASU,EAAIZ,EAAEE,EAAI,CAAC,WAAY,QAAS,SAAS,CAAC,EAAGW,EAAIP,EAAE,aAAaL,EAAI,SAAUW,CAAC,EAAGE,EAAID,EAAE,OAAQE,EAAIF,EAAE,QAASG,EAAIH,EAAE,QAASI,EAAI,SAAS,KAAK,MAAM,SAAUI,EAAI,SAASH,EAAI,CACtT,IAAIC,EAAK,SAAS,cAAc,KAAK,EACrC,OAAOA,EAAG,UAAY,gBAAkBD,EAAIC,EAAG,MAAM,QAAU,IAAKA,CACtE,EAAEX,CAAC,EAAGc,EAAI,UAAW,CACnB,IAAIJ,EAAK,SAAS,cAAc,KAAK,EACrC,OAAOA,EAAG,UAAY,gBAAiBA,CACzC,EAAE,EAAGO,EAAI,SAASP,EAAIC,EAAI,CACxB,IAAIC,EAAK,SAAS,cAAc,KAAK,EACrC,OAAOA,EAAG,UAAY,uBAAwBA,EAAG,MAAMF,CAAE,EAAI,QAASZ,EAAE,eAAec,EAAI,CAAC,MAAOD,CAAE,CAAC,CACxG,EAAEX,EAAGE,CAAC,EACNe,EAAE,OAAOX,CAAC,EAAGO,EAAE,OAAOC,CAAC,EAAGD,EAAE,OAAOI,CAAC,EACpC,IAAIC,EAAId,EAAE,WAAa,SAAS,KAChCE,EAAE,OAAS,UAAW,CACpBW,EAAE,MAAMjB,CAAC,EAAI,IAAK,WAAW,UAAW,CACtCc,EAAE,MAAM,QAAU,MACpB,EAAG,GAAG,EAAGhB,EAAE,0BAA0BsB,CAAC,CACxC,EACA,IAAID,EAAI,UAAW,CACjBrB,EAAE,OAAOe,CAAC,IAAMf,EAAE,SAASe,CAAC,GAAKA,EAAE,MAAM,QAAU,OAAQ,WAAW,UAAW,CAC/EI,EAAE,MAAMjB,CAAC,EAAI,GACf,CAAC,IAAMkB,EAAE,OAAOL,CAAC,EAAGC,EAAE,MAAM,QAAU,SAAU,SAAS,KAAK,MAAM,SAAW,SAAU,WAAW,UAAW,CAC7GD,EAAE,MAAM,QAAU,GACpB,CAAC,EACH,EAAGO,EAAI,UAAW,CAChBtB,EAAE,OAAOe,CAAC,IAAmBV,IAAE,EAAGU,EAAE,MAAM,QAAU,IAAKI,EAAE,MAAMjB,CAAC,EAAI,QAAS,SAAS,KAAK,MAAM,SAAWS,EAAG,WAAW,UAAW,CACrIL,EAAE,YAAcS,EAAE,MAAM,QAAU,OAASQ,EAAE,CAC/C,EAAG,GAAG,EACR,EACAvB,EAAE,aAAaS,EAAGH,EAAE,UAAWgB,CAAC,EAChC,IAAIC,EAAI,UAAW,CACjBvB,EAAE,eAAee,CAAC,CACpB,EACA,OAAOI,EAAE,OAAO,SAASP,EAAI,CAC3B,IAAIC,EAAK,SAAS,cAAc,GAAG,EACnC,OAAOA,EAAG,UAAY,+BAAgCA,EAAG,UAAY,UAAWA,EAAG,QAAUD,EAAIC,CACnG,EAAES,CAAC,CAAC,EAAGhB,EAAE,MAAQ,CAACN,EAAE,OAAOe,CAAC,GAAKf,EAAE,iBAAiBqB,EAAGf,EAAE,KAAMA,EAAE,SAAS,EAAG,CAAC,KAAMe,EAAG,MAAOC,EAAG,OAAQ,UAAW,CAClHtB,EAAE,OAAOe,CAAC,EAAIO,EAAE,EAAID,EAAE,CACxB,EAAG,QAASX,EAAG,QAASa,CAAC,CAC3B,CACF,EAAG,IAAK,SAAShC,EAAIC,EAAIC,EAAG,CAC1B,IAAIC,EAAI,MAAQ,KAAK,kBAAoB,OAAO,OAAS,SAASC,EAAIC,EAAIC,EAAIC,EAAI,CAChFA,IAAO,SAAWA,EAAKD,GAAK,OAAO,eAAeF,EAAIG,EAAI,CAAC,WAAY,GAAM,IAAK,UAAW,CAC3F,OAAOF,EAAGC,CAAE,CACd,CAAC,CAAC,CACJ,EAAI,SAASF,EAAIC,EAAIC,EAAIC,EAAI,CAC3BA,IAAO,SAAWA,EAAKD,GAAKF,EAAGG,CAAE,EAAIF,EAAGC,CAAE,CAC5C,GAAIG,EAAI,MAAQ,KAAK,cAAgB,SAASL,EAAIC,EAAI,CACpD,QAASC,KAAMF,EACbE,IAAO,WAAa,OAAO,UAAU,eAAe,KAAKD,EAAIC,CAAE,GAAKH,EAAEE,EAAID,EAAIE,CAAE,CACpF,EACA,OAAO,eAAeL,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,CACrF,EAAG,IAAK,SAASD,EAAIC,EAAI,CACvB,OAAO,eAAeA,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,CACvD,EAAG,IAAK,SAASD,EAAIC,EAAIC,EAAG,CAC1B,OAAO,eAAeD,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,aAAe,OAC1E,IAAIE,EAAID,EAAE,GAAG,EAAGO,EAAIP,EAAE,GAAG,EAAGQ,EAAIR,EAAE,GAAG,EACrCD,EAAG,aAAe,SAASG,EAAIC,EAAI,CACjC,GAAI,CAACF,EAAE,OAAO,EACZ,MAAO,CAAC,QAAS,UAAW,CAC5B,EAAG,QAAS,UAAW,CACvB,CAAC,EACH,IAAIG,EAAKD,EACTA,EAAG,gBAAkB,CAACA,EAAG,YAAc,CAACF,EAAE,aAAa,IAAMG,EAAG,iBAAmB,GAAMA,EAAG,WAAa,IACzG,IAAIK,EAAIR,EAAE,aAAaC,EAAI,SAAUE,CAAE,EAAGM,EAAID,EAAE,QAASE,EAAIF,EAAE,OAAQG,EAAIH,EAAE,QAASI,EAAIL,EAAE,YAAYG,EAAGR,EAAG,MAAOA,EAAG,MAAM,EAC9H,GAAIC,EAAG,WAAY,CACjB,IAAIU,EAAI,OAAOV,EAAG,YAAc,SAAWA,EAAG,WAAW,MAAM,GAAG,EAAE,IAAI,SAASe,EAAI,CACnF,OAAO,SAASA,CAAE,CACpB,CAAC,EAAI,CAAC,EAAGJ,EAAID,EAAE,CAAC,EAAGE,EAAIF,EAAE,CAAC,EAC1BoB,EAAO,iBAAiB,UAAW3B,EAAE,4BAA4BG,EAAG,SAASS,EAAI,CAC/E,IAAIE,EAAK,KAAK,IAAIF,EAAG,OAAS,GAAIJ,GAAK,CAAC,EACxCC,IAAMK,EAAK,KAAK,IAAIA,EAAIL,CAAC,GAAIb,EAAG,UAAU,MAAM,OAASkB,EAAK,IAChE,CAAC,CAAC,EAEJ,IAAIJ,EAAGC,EAAI,UAAW,CACpB,OAAOf,EAAG,UAAU,OAAOU,CAAC,CAC9B,EACA,GAAIV,EAAG,UAAU,UAAY,GAAIA,EAAG,KAAOF,EAAE,eAAeE,EAAG,UAAWe,CAAC,EAAIA,EAAE,EAAGd,EAAG,iBAAkB,CACvG,IAAIkB,EAAInB,EAAG,UACX+B,EAAO,iBAAiB,UAAW3B,EAAE,8BAA8BG,EAAGY,CAAC,CAAC,EACxE,IAAIC,IAAMN,EAAI,SAAS,cAAc,GAAG,GAAG,UAAY,sCAAuCA,EAAE,UAAY,UAAWA,GACvHM,EAAE,QAAU,UAAW,CACrB,IAAIJ,EACJ,IAAKA,EAAKhB,EAAG,WAAa,MAAQgB,IAAO,QAAUA,EAAG,KAAKhB,CAAE,EAAGmB,EAAE,UAAU,OAAO,yBAAyB,EAAGnB,EAAG,YAAa,CAC7H,IAAIkB,EAAK,SAAS,cAAc,KAAK,EACrCA,EAAG,UAAY,8BAA+BA,EAAG,QAAU,UAAW,CACpEC,EAAE,UAAU,IAAI,yBAAyB,EAAGrB,EAAE,eAAeoB,CAAE,CACjE,EAAGR,EAAE,OAAOQ,CAAE,OAEdlB,EAAG,UAAU,UAAY,GAAIe,EAAE,EAAGI,EAAE,OAAOC,CAAC,CAChD,EAAGD,EAAE,OAAOC,CAAC,EAEf,MAAO,CAAC,QAASX,EAAG,QAAS,UAAW,CACtC,OAAOX,EAAE,eAAeY,CAAC,CAC3B,CAAC,CACH,CACF,EAAG,IAAK,SAASf,EAAIC,EAAIC,EAAG,CAC1B,OAAO,eAAeD,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,YAAc,OACzE,IAAIE,EAAID,EAAE,GAAG,EACbD,EAAG,YAAc,SAASG,EAAIC,EAAIC,EAAI,CACpC,IAAIG,EAAI,SAAS,cAAc,KAAK,EACpC,OAAOA,EAAE,UAAY,eAAgBA,EAAE,OAAOL,CAAE,EAAGD,EAAE,eAAeM,EAAG,CAAC,MAAOJ,EAAI,OAAQC,CAAE,CAAC,CAChG,CACF,EAAG,IAAK,SAASN,EAAIC,EAAIC,EAAG,CAC1B,IAAIC,EAAI,MAAQ,KAAK,kBAAoB,OAAO,OAAS,SAASC,EAAIC,EAAIC,EAAIC,EAAI,CAChFA,IAAO,SAAWA,EAAKD,GAAK,OAAO,eAAeF,EAAIG,EAAI,CAAC,WAAY,GAAM,IAAK,UAAW,CAC3F,OAAOF,EAAGC,CAAE,CACd,CAAC,CAAC,CACJ,EAAI,SAASF,EAAIC,EAAIC,EAAIC,EAAI,CAC3BA,IAAO,SAAWA,EAAKD,GAAKF,EAAGG,CAAE,EAAIF,EAAGC,CAAE,CAC5C,GAAIG,EAAI,MAAQ,KAAK,cAAgB,SAASL,EAAIC,EAAI,CACpD,QAASC,KAAMF,EACbE,IAAO,WAAa,OAAO,UAAU,eAAe,KAAKD,EAAIC,CAAE,GAAKH,EAAEE,EAAID,EAAIE,CAAE,CACpF,EACA,OAAO,eAAeL,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,CACtE,EAAG,IAAK,SAASD,EAAIC,EAAIC,EAAG,CAC1B,IAAIC,EAAI,MAAQ,KAAK,kBAAoB,OAAO,OAAS,SAASC,EAAIC,EAAIC,EAAIC,EAAI,CAChFA,IAAO,SAAWA,EAAKD,GAAK,OAAO,eAAeF,EAAIG,EAAI,CAAC,WAAY,GAAM,IAAK,UAAW,CAC3F,OAAOF,EAAGC,CAAE,CACd,CAAC,CAAC,CACJ,EAAI,SAASF,EAAIC,EAAIC,EAAIC,EAAI,CAC3BA,IAAO,SAAWA,EAAKD,GAAKF,EAAGG,CAAE,EAAIF,EAAGC,CAAE,CAC5C,GAAIG,EAAI,MAAQ,KAAK,cAAgB,SAASL,EAAIC,EAAI,CACpD,QAASC,KAAMF,EACbE,IAAO,WAAa,OAAO,UAAU,eAAe,KAAKD,EAAIC,CAAE,GAAKH,EAAEE,EAAID,EAAIE,CAAE,CACpF,EACA,OAAO,eAAeL,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,EAAGQ,EAAEP,EAAE,EAAE,EAAGD,CAAE,CACpF,EAAG,GAAI,SAASD,EAAIC,EAAI,CACtB,OAAO,eAAeA,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,CACvD,EAAG,IAAK,SAASD,EAAIC,EAAIC,EAAG,CAC1B,IAAIC,EAAI,MAAQ,KAAK,kBAAoB,OAAO,OAAS,SAASC,EAAIC,EAAIC,EAAIC,EAAI,CAChFA,IAAO,SAAWA,EAAKD,GAAK,OAAO,eAAeF,EAAIG,EAAI,CAAC,WAAY,GAAM,IAAK,UAAW,CAC3F,OAAOF,EAAGC,CAAE,CACd,CAAC,CAAC,CACJ,EAAI,SAASF,EAAIC,EAAIC,EAAIC,EAAI,CAC3BA,IAAO,SAAWA,EAAKD,GAAKF,EAAGG,CAAE,EAAIF,EAAGC,CAAE,CAC5C,GAAIG,EAAI,MAAQ,KAAK,cAAgB,SAASL,EAAIC,EAAI,CACpD,QAASC,KAAMF,EACbE,IAAO,WAAa,OAAO,UAAU,eAAe,KAAKD,EAAIC,CAAE,GAAKH,EAAEE,EAAID,EAAIE,CAAE,CACpF,EACA,OAAO,eAAeL,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,CAClI,EAAG,IAAK,SAASD,EAAIC,EAAIC,EAAG,CAC1B,IAAIC,EAAI,MAAQ,KAAK,UAAY,UAAW,CAC1C,OAAQA,EAAI,OAAO,QAAU,SAASC,EAAI,CACxC,QAASC,EAAIC,EAAK,EAAGC,EAAK,UAAU,OAAQD,EAAKC,EAAID,IACnD,QAASE,KAAMH,EAAK,UAAUC,CAAE,EAC9B,OAAO,UAAU,eAAe,KAAKD,EAAIG,CAAE,IAAMJ,EAAGI,CAAE,EAAIH,EAAGG,CAAE,GACnE,OAAOJ,CACT,GAAG,MAAM,KAAM,SAAS,CAC1B,EACA,OAAO,eAAeH,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,eAAiB,OAC5E,IAAIQ,EAAIP,EAAE,EAAE,EAAGQ,EAAIR,EAAE,GAAG,EAAGS,EAAIT,EAAE,GAAG,EAAGU,EAAIV,EAAE,GAAG,EAAGW,EAAI,CAAC,OAAQ,eAAgB,MAAO,cAAe,OAAQ,eAAgB,QAAS,gBAAiB,WAAY,kBAAkB,EACtLZ,EAAG,eAAiB,SAASG,EAAI,CAC/B,IAAIC,EAAKD,EAAG,OAAQE,EAAKF,EAAG,KAAMU,EAAIV,EAAG,QAASW,EAAIX,EAAG,QAASY,EAAI,SAASK,EAAIC,EAAIC,EAAI,CACzF,IAAIf,EAAKe,EAAG,uBAAwBG,EAAKH,EAAG,OAAQI,EAAKJ,EAAG,OAAQc,EAAKd,EAAG,cAAee,EAAKf,EAAG,WAAYgB,EAAKhB,EAAG,YAAaiB,EAAKjB,EAAG,QAASkB,EAAKlB,EAAG,gBAAiBmB,EAAKnB,EAAG,cAAeH,EAAIG,EAAG,iBAAkBC,EAAID,EAAG,gBAAiBE,EAAIF,EAAG,WAAYK,EAAIL,EAAG,iBAAkBM,GAAIN,EAAG,SAAUO,GAAIP,EAAG,eAAgBQ,GAAInB,EAAE,0BAA0BJ,CAAE,EAC5W,OAAOL,EAAEA,EAAEA,EAAE,CAAC,EAAG,CAAC,oBAAqBmB,EAAI,iBAAkBT,EAAEQ,CAAE,EAAG,kBAAmBK,EAAI,kBAAmBC,EAAI,0BAA2BU,EAAI,oBAAqBC,EAAK,OAAS,OAAQ,qBAAsBC,EAAK,OAAS,OAAQ,gBAAiBC,EAAI,mBAAoBC,GAAMC,EAAK,OAAS,OAAQ,qBAAsBtB,EAAI,OAAS,OAAQ,kCAAmCsB,EAAK,OAAS,OAAQ,oBAAqBlB,EAAI,OAAS,OAAQ,cAAeC,EAAI,OAAS,OAAQ,qBAAsBJ,IAAO,UAAYO,EAAI,OAAS,OAAQ,iCAAkCE,EAAC,CAAC,EAAGC,EAAC,EAAGF,EAAC,CAC3kB,EAAEvB,EAAIQ,EAAG,SAASO,EAAI,CACpB,OAAOlB,EAAEA,EAAE,CAAC,EAAG,CAAC,QAASmB,EAAKc,IAAW,MAAQA,IAAW,OAAS,OAASA,EAAO,YAAc,MAAQd,IAAO,OAAS,OAASA,EAAG,SAAS,QAAQ,SAAU,EAAE,EAAG,OAAQ,YAAa,cAAe,MAAM,CAAC,EAAGZ,EAAE,oBAAoBW,CAAE,CAAC,EAC9O,IAAIC,CACN,EAAEP,CAAC,CAAC,EAAGE,EAAI,SAASI,EAAIC,EAAI,CAC1BA,IAAO,SAAWA,EAAK,IACvB,IAAIC,EAAKD,EAAK,IAAM,KACpB,OAAO,IAAI,IAAID,EAAG,WAAW,SAAS,GAAKA,EAAG,WAAW,UAAU,EAAIA,EAAKZ,EAAE,cAAgB,IAAMc,EAAK,IAAMF,CAAE,CACnH,EAAEhB,EAAIU,EAAE,IAAI,EACZ,GAAI,OAAO,QAAQC,CAAC,EAAE,OAAO,SAASK,EAAI,CACxC,IAAIC,EAAKD,EAAG,CAAC,EACb,OAAOV,EAAE,UAAUW,CAAE,CACvB,CAAC,EAAE,QAAQ,SAASD,EAAI,CACtB,IAAIC,EAAKD,EAAG,CAAC,EAAGE,EAAKF,EAAG,CAAC,EACzBJ,EAAE,aAAa,IAAIK,EAAIC,CAAE,CAC3B,CAAC,EAAGR,EAAE,OAAQ,CACZ,IAAIG,EAAI,IAAI,IAAIT,EAAE,aAAa,EAC/B,OAAO,QAAQM,EAAE,MAAM,EAAE,OAAO,SAASM,EAAI,CAC3C,IAAIC,EAAKD,EAAG,CAAC,EACb,OAAOV,EAAE,UAAUW,CAAE,CACvB,CAAC,EAAE,QAAQ,SAASD,EAAI,CACtB,IAAIC,EAAKD,EAAG,CAAC,EAAGE,EAAKF,EAAG,CAAC,EACzBH,EAAE,aAAa,IAAII,EAAIC,CAAE,CAC3B,CAAC,EACD,IAAIJ,EAAID,EAAE,aAAa,SAAS,EAChCC,IAAMF,EAAE,KAAOE,GAEjB,OAAOF,EAAE,IACX,CACF,EAAG,IAAK,SAASjB,EAAIC,EAAI,CACvB,OAAO,eAAeA,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,iBAAmB,OAAQA,EAAG,iBAAmB,SAASG,EAAIC,EAAIH,EAAG,CAC9H,OAAQG,EAAI,CACV,IAAK,OACHD,EAAG,EACH,MACF,IAAK,OACHF,GAAK,SAASmB,EAAIC,EAAI,CACpB,IAAIhB,EAAK,EAAGH,EAAI,SAASM,EAAG,CAC1BA,EAAE,QAAUY,GAAMZ,EAAE,QAAUH,GAAM,SAAS,oBAAoB,YAAaH,CAAC,EAAGmB,EAAG,GAAKhB,EAAKG,EAAE,OACnG,EACA,SAAS,iBAAiB,YAAaN,CAAC,CAC1C,EAAED,EAAGE,CAAE,EACP,MACF,IAAK,OACH,WAAW,UAAW,CACpBA,EAAG,CACL,EAAGF,CAAC,EACJ,MACF,IAAK,SACHA,GAAK,SAASmB,EAAIC,EAAI,CACpB,IAAIhB,EAAK,UAAW,CAClB,IAAIH,EAAIiC,EAAO,aAAe,SAAS,gBAAgB,UAAW3B,EAAI,SAAS,gBAAgB,WAAa,EAAGC,EAAI,SAAS,gBAAgB,aAAcC,EAAIR,EAAIM,EAAGG,EAAID,EAAID,EAAI,IAAKG,EAAIF,EAAIyB,EAAO,aAAe1B,GACnNE,GAAKS,GAAMR,KAAOS,EAAG,EAAG,SAAS,oBAAoB,SAAUhB,CAAE,EACpE,EACA,SAAS,iBAAiB,SAAUA,CAAE,CACxC,EAAEJ,EAAGE,CAAE,CACX,CACF,CACF,EAAG,IAAK,SAASJ,EAAIC,EAAIC,EAAG,CAC1B,OAAO,eAAeD,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,aAAe,OAC1E,IAAIE,EAAID,EAAE,GAAG,EAAGO,EAAIP,EAAE,GAAG,EAAGQ,EAAIR,EAAE,GAAG,EAAGS,EAAIT,EAAE,GAAG,EAAGU,EAAIV,EAAE,GAAG,EAAGW,EAAIX,EAAE,GAAG,EAAGY,EAAIZ,EAAE,GAAG,EACrFD,EAAG,aAAe,SAASG,EAAIC,EAAIC,EAAI,CACrC,IAAIS,EAAIL,EAAE,gBAAgB,EAAGM,EAAIV,EAAG,YAAaW,EAAID,IAAM,OAAS,CAAC,EAAIA,EAAGE,EAAIZ,EAAG,QAASa,EAAIb,EAAG,kBAAmBc,EAAId,EAAG,gBAAiBkB,EAAIlB,EAAG,SAAUmB,EAAInB,EAAG,oBAAqBsB,EAAItB,EAAG,gBAAiBuB,EAAI1B,EAAE,eAAe,CAAC,OAAQC,EAAI,QAASW,EAAG,KAAMV,EAAI,QAASC,CAAE,CAAC,EAAGwB,EAAI,SAAS,cAAc,QAAQ,EAC7T,OAAOA,EAAE,IAAMD,EAAGC,EAAE,QAAQ,OAAS,SAAUA,EAAE,MAAM,OAAS,MAAOA,EAAE,MAAQ,qBAAsB,OAAO,KAAKb,CAAC,EAAE,QAAQ,SAASI,EAAI,CACzIS,EAAE,aAAaT,EAAIJ,EAAEI,CAAE,CAAC,CAC1B,CAAC,EAAGS,EAAE,iBAAiB,OAAQlB,EAAE,oBAAqB,CAAC,KAAM,EAAI,CAAC,EAAGwB,EAAO,iBAAiB,UAAWzB,EAAE,oBAAoBI,EAAGG,CAAC,CAAC,EAAGkB,EAAO,iBAAiB,UAAWzB,EAAE,8BAA8BI,EAAGI,CAAC,CAAC,EAAGiB,EAAO,iBAAiB,UAAWzB,EAAE,4BAA4BI,EAAGK,CAAC,CAAC,EAAGgB,EAAO,iBAAiB,UAAWzB,EAAE,qBAAqBI,EAAGS,CAAC,CAAC,EAAGY,EAAO,iBAAiB,UAAWzB,EAAE,oBAAoBI,CAAC,CAAC,EAAGqB,EAAO,iBAAiB,UAAWzB,EAAE,oCAAoCI,EAAGU,CAAC,CAAC,EAAGpB,IAAO,UAAY+B,EAAO,iBAAiB,UAAWvB,EAAE,gCAAgC,EAAGe,GAAKQ,EAAO,iBAAiB,UAAWzB,EAAE,oBAAoBI,EAAG,UAAW,CAChpBN,EAAE,gBAAgBqB,EAAGf,EAAGa,CAAC,CAC3B,CAAC,CAAC,EAAG,CAAC,OAAQE,EAAG,QAASf,EAAG,QAAS,UAAW,CAC/C,OAAOD,EAAE,cAAcgB,CAAC,CAC1B,CAAC,CACH,CACF,EAAG,IAAK,SAAS9B,EAAIC,EAAI,CACvB,OAAO,eAAeA,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,gBAAkB,OAAQA,EAAG,gBAAkB,UAAW,CACnH,IAAIG,EAAK,KAAK,OAAO,EACrB,OAAO,OAAOA,CAAE,EAAE,MAAM,GAAG,EAAE,CAAC,CAChC,CACF,EAAG,IAAK,SAASJ,EAAIC,EAAI,CACvB,IAAIC,EAAI,MAAQ,KAAK,QAAU,SAASE,EAAIC,EAAI,CAC9C,IAAIC,EAAK,CAAC,EACV,QAASC,KAAMH,EACb,OAAO,UAAU,eAAe,KAAKA,EAAIG,CAAE,GAAKF,EAAG,QAAQE,CAAE,EAAI,IAAMD,EAAGC,CAAE,EAAIH,EAAGG,CAAE,GACvF,GAAIH,GAAM,MAAQ,OAAO,OAAO,uBAAyB,WAAY,CACnE,IAAIK,EAAI,EACR,IAAKF,EAAK,OAAO,sBAAsBH,CAAE,EAAGK,EAAIF,EAAG,OAAQE,IACzDJ,EAAG,QAAQE,EAAGE,CAAC,CAAC,EAAI,GAAK,OAAO,UAAU,qBAAqB,KAAKL,EAAIG,EAAGE,CAAC,CAAC,IAAMH,EAAGC,EAAGE,CAAC,CAAC,EAAIL,EAAGG,EAAGE,CAAC,CAAC,GAE3G,OAAOH,CACT,EACA,SAASH,EAAEC,EAAIC,EAAIE,EAAI,CACrB,OAAO,SAASE,EAAG,CACjB,IAAI,EAAIA,EAAE,KAAME,EAAI,EAAE,KAAMC,EAAI,EAAE,QAASC,EAAIX,EAAE,EAAG,CAAC,OAAQ,SAAS,CAAC,EACvES,IAAMP,GAAMQ,IAAMP,GAAqBE,IAAGM,CAAC,CAC7C,CACF,CACA,OAAO,eAAeZ,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,oCAAsCA,EAAG,oBAAsBA,EAAG,8BAAgCA,EAAG,qBAAuBA,EAAG,4BAA8BA,EAAG,8BAAgCA,EAAG,oBAAsB,OAAQA,EAAG,oBAAsB,SAASG,EAAIC,EAAI,CACpU,OAAOF,EAAE,aAAcC,EAAIC,CAAE,CAC/B,EAAGJ,EAAG,8BAAgC,SAASG,EAAIC,EAAI,CACrD,OAAOF,EAAE,sBAAuBC,EAAIC,CAAE,CACxC,EAAGJ,EAAG,4BAA8B,SAASG,EAAIC,EAAI,CACnD,OAAOF,EAAE,sBAAuBC,EAAIC,CAAE,CACxC,EAAGJ,EAAG,qBAAuB,SAASG,EAAIC,EAAI,CAC5C,OAAOF,EAAE,cAAeC,EAAIC,CAAE,CAChC,EAAGJ,EAAG,8BAAgC,SAASG,EAAIC,EAAI,CACrD,OAAOF,EAAE,wBAAyBC,EAAI,UAAW,CAC/CC,EAAG,UAAU,IAAI,yBAAyB,CAC5C,CAAC,CACH,EAAGJ,EAAG,oBAAsB,SAASG,EAAI,CACvC,OAAOD,EAAE,aAAcC,EAAI,SAASiB,EAAI,CACtC,IAAIhB,EACJ,GAA0BgB,GAAG,MAAO,CAClC,IAAIf,EAAK,SAAS,cAAc,mBAAmB,EACnDA,IAAOA,EAAG,MAAM,OAASD,EAAKgB,EAAG,SAAW,MAAQhB,IAAO,OAAS,OAASA,EAAG,OAEpF,CAAC,CACH,EAAGJ,EAAG,oCAAsC,SAASG,EAAIC,EAAI,CAC3D,OAAOF,EAAE,gCAAiCC,EAAIC,CAAE,CAClD,CACF,EAAG,IAAK,SAASL,EAAIC,EAAIC,EAAG,CAC1B,IAAIC,EAAI,MAAQ,KAAK,kBAAoB,OAAO,OAAS,SAASC,EAAIC,EAAIC,EAAIC,EAAI,CAChFA,IAAO,SAAWA,EAAKD,GAAK,OAAO,eAAeF,EAAIG,EAAI,CAAC,WAAY,GAAM,IAAK,UAAW,CAC3F,OAAOF,EAAGC,CAAE,CACd,CAAC,CAAC,CACJ,EAAI,SAASF,EAAIC,EAAIC,EAAIC,EAAI,CAC3BA,IAAO,SAAWA,EAAKD,GAAKF,EAAGG,CAAE,EAAIF,EAAGC,CAAE,CAC5C,GAAIG,EAAI,MAAQ,KAAK,cAAgB,SAASL,EAAIC,EAAI,CACpD,QAASC,KAAMF,EACbE,IAAO,WAAa,OAAO,UAAU,eAAe,KAAKD,EAAIC,CAAE,GAAKH,EAAEE,EAAID,EAAIE,CAAE,CACpF,EACA,OAAO,eAAeL,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,CACrF,EAAG,IAAK,SAASD,EAAIC,EAAI,CACvB,OAAO,eAAeA,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,cAAgB,OAAQA,EAAG,cAAgB,SAASG,EAAI,CACjH,GAAIA,EAAI,CACN,IAAIC,EAAKD,EAAG,IACZ,GAAIC,EAAG,SAAS,UAAU,EAAG,CAC3B,IAAIH,EAAIG,EAAG,MAAM,WAAW,EAC5BD,EAAG,IAAMF,EAAE,KAAK,GAAG,OAElBA,EAAIG,EAAG,MAAM,GAAG,GAAG,CAAC,EAAIH,EAAE,CAAC,EAAI,WAAYE,EAAG,IAAMF,EAAE,KAAK,GAAG,EAErE,CACF,EAAG,IAAK,SAASF,EAAIC,EAAI,CACvB,IAAIC,EAAI,MAAQ,KAAK,WAAa,SAASE,EAAIC,EAAIC,EAAIC,EAAI,CACzD,OAAO,IAAKD,IAAOA,EAAK,UAAU,SAASE,EAAIkB,EAAI,CACjD,SAASf,EAAEU,EAAI,CACb,GAAI,CACFR,EAAEN,EAAG,KAAKc,CAAE,CAAC,CACf,OAASsB,EAAP,CACAjB,EAAGiB,CAAE,CACP,CACF,CACA,SAAS/B,EAAES,EAAI,CACb,GAAI,CACFR,EAAEN,EAAG,MAAMc,CAAE,CAAC,CAChB,OAASsB,EAAP,CACAjB,EAAGiB,CAAE,CACP,CACF,CACA,SAAS9B,EAAEQ,EAAI,CACb,IAAIC,EACJD,EAAG,KAAOb,EAAGa,EAAG,KAAK,GAAKC,EAAKD,EAAG,MAAOC,aAAchB,EAAKgB,EAAK,IAAIhB,EAAG,SAASqC,EAAI,CACnFA,EAAGrB,CAAE,CACP,CAAC,GAAG,KAAKX,EAAGC,CAAC,CACf,CACAC,GAAGN,EAAKA,EAAG,MAAMH,EAAIC,GAAM,CAAC,CAAC,GAAG,KAAK,CAAC,CACxC,CAAC,CACH,EAAGF,EAAI,MAAQ,KAAK,aAAe,SAASC,EAAIC,EAAI,CAClD,IAAIC,EAAIC,EAAIC,EAAIkB,EAAIf,EAAI,CAAC,MAAO,EAAG,KAAM,UAAW,CAClD,GAAI,EAAIH,EAAG,CAAC,EACV,MAAMA,EAAG,CAAC,EACZ,OAAOA,EAAG,CAAC,CACb,EAAG,KAAM,CAAC,EAAG,IAAK,CAAC,CAAC,EACpB,OAAOkB,EAAK,CAAC,KAAMd,EAAE,CAAC,EAAG,MAAOA,EAAE,CAAC,EAAG,OAAQA,EAAE,CAAC,CAAC,EAAG,OAAO,QAAU,aAAec,EAAG,OAAO,QAAQ,EAAI,UAAW,CACpH,OAAO,IACT,GAAIA,EACJ,SAASd,EAAEgC,EAAI,CACb,OAAO,SAASC,EAAI,CAClB,OAAO,SAASC,EAAI,CAClB,GAAIxC,EACF,MAAM,IAAI,UAAU,iCAAiC,EACvD,KAAOK,GACL,GAAI,CACF,GAAIL,EAAK,EAAGC,IAAOC,EAAK,EAAIsC,EAAG,CAAC,EAAIvC,EAAG,OAASuC,EAAG,CAAC,EAAIvC,EAAG,SAAWC,EAAKD,EAAG,SAAWC,EAAG,KAAKD,CAAE,EAAG,GAAKA,EAAG,OAAS,EAAEC,EAAKA,EAAG,KAAKD,EAAIuC,EAAG,CAAC,CAAC,GAAG,KAChJ,OAAOtC,EACT,OAAQD,EAAK,EAAGC,IAAOsC,EAAK,CAAC,EAAIA,EAAG,CAAC,EAAGtC,EAAG,KAAK,GAAIsC,EAAG,CAAC,EAAG,CACzD,IAAK,GACL,IAAK,GACHtC,EAAKsC,EACL,MACF,IAAK,GACH,OAAOnC,EAAE,QAAS,CAAC,MAAOmC,EAAG,CAAC,EAAG,KAAM,EAAK,EAC9C,IAAK,GACHnC,EAAE,QAASJ,EAAKuC,EAAG,CAAC,EAAGA,EAAK,CAAC,CAAC,EAC9B,SACF,IAAK,GACHA,EAAKnC,EAAE,IAAI,IAAI,EAAGA,EAAE,KAAK,IAAI,EAC7B,SACF,QACE,GAAI,GAAGH,GAAMA,EAAKG,EAAE,MAAM,OAAS,GAAKH,EAAGA,EAAG,OAAS,CAAC,IAAMsC,EAAG,CAAC,IAAM,GAAKA,EAAG,CAAC,IAAM,GAAI,CACzFnC,EAAI,EACJ,SAEF,GAAImC,EAAG,CAAC,IAAM,IAAM,CAACtC,GAAMsC,EAAG,CAAC,EAAItC,EAAG,CAAC,GAAKsC,EAAG,CAAC,EAAItC,EAAG,CAAC,GAAI,CAC1DG,EAAE,MAAQmC,EAAG,CAAC,EACd,MAEF,GAAIA,EAAG,CAAC,IAAM,GAAKnC,EAAE,MAAQH,EAAG,CAAC,EAAG,CAClCG,EAAE,MAAQH,EAAG,CAAC,EAAGA,EAAKsC,EACtB,MAEF,GAAItC,GAAMG,EAAE,MAAQH,EAAG,CAAC,EAAG,CACzBG,EAAE,MAAQH,EAAG,CAAC,EAAGG,EAAE,IAAI,KAAKmC,CAAE,EAC9B,MAEFtC,EAAG,CAAC,GAAKG,EAAE,IAAI,IAAI,EAAGA,EAAE,KAAK,IAAI,EACjC,QACJ,CACAmC,EAAKzC,EAAG,KAAKD,EAAIO,CAAC,CACpB,OAASU,EAAP,CACAyB,EAAK,CAAC,EAAGzB,CAAE,EAAGd,EAAK,CACrB,QAAE,CACAD,EAAKE,EAAK,CACZ,CACF,GAAI,EAAIsC,EAAG,CAAC,EACV,MAAMA,EAAG,CAAC,EACZ,MAAO,CAAC,MAAOA,EAAG,CAAC,EAAIA,EAAG,CAAC,EAAI,OAAQ,KAAM,EAAI,CACnD,EAAE,CAACF,EAAIC,CAAE,CAAC,CACZ,CACF,CACF,EACA,OAAO,eAAe5C,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,iCAAmCA,EAAG,6BAA+BA,EAAG,0BAA4B,OAC/J,IAAIQ,EAAI,SAAUC,EAAI,SAASN,EAAIsB,EAAI,CACrC,OAAOxB,EAAE,OAAQ,OAAQ,OAAQ,UAAW,CAC1C,OAAOC,EAAE,KAAM,SAASG,EAAI,CAC1B,OAAOF,EAAG,OAASK,GAAK,OAAOiB,GAAM,aAAeA,EAAG,EAAGzB,EAAG,6BAA6B,GAAI,CAAC,CAAC,CAClG,CAAC,CACH,CAAC,CACH,EACAA,EAAG,0BAA4B,SAASG,EAAI,CAC1C,OAAOgC,EAAO,SAAS,iBAAiB,UAAW,SAAS/B,EAAI,CAC9D,OAAOK,EAAEL,EAAID,CAAE,CACjB,CAAC,CACH,EAAGH,EAAG,6BAA+B,UAAW,CAC9C,OAAOmC,EAAO,SAAS,oBAAoB,UAAW1B,CAAC,CACzD,EAAGT,EAAG,iCAAmC,SAASG,EAAI,CACpDA,EAAG,KAAK,OAAS,cAAgBgC,EAAO,SAAS,cAAc,IAAI,cAAc,UAAW,CAAC,KAAM3B,CAAC,CAAC,CAAC,CACxG,CACF,EAAG,IAAK,SAAST,EAAIC,EAAI,CACvB,OAAO,eAAeA,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,oBAAsB,OAAQA,EAAG,oBAAsB,UAAW,CAC3H,KAAK,MAAM,UAAY,eACzB,CACF,EAAG,IAAK,SAASD,EAAIC,EAAIC,EAAG,CAC1B,OAAO,eAAeD,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,aAAe,OAC1E,IAAIE,EAAID,EAAE,GAAG,EACbD,EAAG,aAAe,SAASG,EAAI,CAC7B,GAAI,CAACA,EACH,MAAO,UACT,IAAIC,EAAKD,EAAG,WAAW,GAAG,EAAID,EAAE,OAAOC,CAAE,EAAI,SAASiB,EAAI,CACxD,IAAIC,EAAK,CAAC,IAAK,EAAG,MAAO,EAAG,KAAM,CAAC,EAAGC,EAAKF,EAAG,MAAM,MAAM,EAC1D,OAAOE,IAAOD,EAAG,IAAM,SAASC,EAAG,CAAC,EAAG,EAAE,EAAGD,EAAG,MAAQ,SAASC,EAAG,CAAC,EAAG,EAAE,EAAGD,EAAG,KAAO,SAASC,EAAG,CAAC,EAAG,EAAE,GAAID,CAC9G,EAAElB,CAAE,EAAGE,EAAKD,EAAG,IAAKI,EAAIJ,EAAG,MAAO,EAAIA,EAAG,KACzC,OAAO,KAAK,OAAO,IAAMC,EAAK,IAAMG,EAAI,IAAM,GAAK,GAAG,EAAI,IAAM,UAAY,SAC9E,CACF,EAAG,IAAK,SAAST,EAAIC,EAAI,CACvB,OAAO,eAAeA,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,0BAA4B,OAAQA,EAAG,0BAA4B,SAASG,EAAI,CACzI,IAAIC,EAAK,IAAI,IAAI+B,EAAO,SAAS,IAAI,EAAGlC,EAAI,CAAC,EAC7C,OAAOE,GAAMA,EAAG,OAAS,GAAKA,EAAG,QAAQ,SAASiB,EAAI,CACpDhB,EAAG,aAAa,IAAIgB,CAAE,IAAMnB,EAAEmB,CAAE,EAAIhB,EAAG,aAAa,IAAIgB,CAAE,EAC5D,CAAC,EAAGnB,CACN,CACF,EAAG,IAAK,SAASF,EAAIC,EAAI,CACvB,OAAO,eAAeA,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,OAAS,OAAQA,EAAG,OAAS,UAAW,CACjG,OAAO,OAAO,SAAY,KAAe,OAAOmC,EAAU,GAC5D,CACF,EAAG,IAAK,SAASpC,EAAIC,EAAI,CACvB,OAAO,eAAeA,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,OAAS,OACpE,IAAIC,EAAI,IAAI,OAAO,aAAc,IAAI,EAAGC,EAAI,IAAI,OAAO,yDAA0D,GAAG,EACpHF,EAAG,OAAS,SAASG,EAAI,CACvB,GAAI,OAAOA,GAAM,UAAYF,EAAE,KAAKE,CAAE,GAAK,CAACD,EAAE,KAAKC,CAAE,EACnD,MAAM,IAAI,UAAU,6BAA6B,GAClDA,EAAKA,EAAG,QAAQ,KAAM,EAAE,GAAG,SAAW,IAAMA,EAAKA,EAAG,MAAM,EAAG,CAAC,GAAIA,EAAG,SAAW,IAAMA,EAAKA,EAAG,MAAM,EAAG,CAAC,GAAIA,EAAG,SAAW,IAAMA,EAAKA,EAAG,CAAC,EAAIA,EAAG,CAAC,EAAIA,EAAG,CAAC,EAAIA,EAAG,CAAC,EAAIA,EAAG,CAAC,EAAIA,EAAG,CAAC,GAClL,IAAIC,EAAK,OAAO,SAASD,EAAI,EAAE,EAC/B,MAAO,CAAC,IAAKC,GAAM,GAAI,MAAOA,GAAM,EAAI,IAAK,KAAM,IAAMA,CAAE,CAC7D,CACF,EAAG,GAAI,SAASL,EAAIC,EAAI,CACtB,OAAO,eAAeA,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,WAAa,OAAQA,EAAG,WAAa,SAASG,EAAI,CAC3G,IAAIC,EAAK,SAASgB,EAAI,CACpB,MAAO,uCAAyCA,CAClD,EAAEjB,CAAE,EACJ,GAAI,CAAC,SAAS,cAAc,cAAgBC,EAAK,IAAI,EAAG,CACtD,IAAIH,EAAI,SAAS,cAAc,MAAM,EACrCA,EAAE,IAAM,aAAcA,EAAE,KAAOG,EAAI,SAAS,KAAK,OAAOH,CAAC,EAE7D,CACF,EAAG,IAAK,SAASF,EAAIC,EAAIC,EAAG,CAC1B,IAAIC,EAAI,MAAQ,KAAK,kBAAoB,OAAO,OAAS,SAASC,EAAIC,EAAIC,EAAIC,EAAI,CAChFA,IAAO,SAAWA,EAAKD,GAAK,OAAO,eAAeF,EAAIG,EAAI,CAAC,WAAY,GAAM,IAAK,UAAW,CAC3F,OAAOF,EAAGC,CAAE,CACd,CAAC,CAAC,CACJ,EAAI,SAASF,EAAIC,EAAIC,EAAIC,EAAI,CAC3BA,IAAO,SAAWA,EAAKD,GAAKF,EAAGG,CAAE,EAAIF,EAAGC,CAAE,CAC5C,GAAIG,EAAI,MAAQ,KAAK,cAAgB,SAASL,EAAIC,EAAI,CACpD,QAASC,KAAMF,EACbE,IAAO,WAAa,OAAO,UAAU,eAAe,KAAKD,EAAIC,CAAE,GAAKH,EAAEE,EAAID,EAAIE,CAAE,CACpF,EACA,OAAO,eAAeL,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,EAAGQ,EAAEP,EAAE,EAAE,EAAGD,CAAE,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,EAAGQ,EAAEP,EAAE,GAAG,EAAGD,CAAE,CACtS,EAAG,IAAK,SAASD,EAAIC,EAAI,CACvB,OAAO,eAAeA,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,UAAY,OAAQA,EAAG,UAAY,SAASG,EAAI,CACzG,OAAOA,GAAM,IACf,CACF,EAAG,IAAK,SAASJ,EAAIC,EAAI,CACvB,OAAO,eAAeA,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,UAAYA,EAAG,SAAWA,EAAG,OAAS,OAAQA,EAAG,OAAS,SAASG,EAAI,CAChI,OAAOH,EAAG,SAASG,CAAE,GAAKH,EAAG,UAAUG,CAAE,CAC3C,EAAGH,EAAG,SAAW,SAASG,EAAI,CAC5B,MAAO,CAAC,CAACA,EAAG,UACd,EAAGH,EAAG,UAAY,SAASG,EAAI,CAC7B,OAAOA,EAAG,MAAM,UAAY,MAC9B,CACF,EAAG,IAAK,SAASJ,EAAIC,EAAI,CACvB,OAAO,eAAeA,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,eAAiB,OAAQA,EAAG,eAAiB,SAASG,EAAIC,EAAI,CACvH,IAAIH,EAAI,IAAI,qBAAqB,SAASmB,EAAI,CAC5CA,EAAG,QAAQ,SAASsB,EAAI,CACtBA,EAAG,iBAAmBtC,EAAG,EAAGH,EAAE,UAAUyC,EAAG,MAAM,EACnD,CAAC,CACH,CAAC,EACDzC,EAAE,QAAQE,CAAE,CACd,CACF,EAAG,IAAK,SAASJ,EAAIC,EAAI,CACvB,IAAIC,EAAI,MAAQ,KAAK,UAAY,UAAW,CAC1C,OAAQA,EAAI,OAAO,QAAU,SAASE,EAAI,CACxC,QAASC,EAAIC,EAAK,EAAGC,EAAK,UAAU,OAAQD,EAAKC,EAAID,IACnD,QAASE,KAAMH,EAAK,UAAUC,CAAE,EAC9B,OAAO,UAAU,eAAe,KAAKD,EAAIG,CAAE,IAAMJ,EAAGI,CAAE,EAAIH,EAAGG,CAAE,GACnE,OAAOJ,CACT,GAAG,MAAM,KAAM,SAAS,CAC1B,EACA,OAAO,eAAeH,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,0BAA4BA,EAAG,wBAA0BA,EAAG,qBAAuB,OAAQA,EAAG,qBAAuB,SAASG,EAAI,CAC3L,OAAOA,EAAG,MAAM,EAAE,EAAE,IAAI,SAASiB,EAAIhB,EAAI,CACvC,OAAOgB,EAAG,YAAY,IAAMA,GAAMhB,IAAO,EAAI,IAAM,IAAMgB,EAAG,YAAY,EAAIA,CAC9E,CAAC,EAAE,KAAK,EAAE,CACZ,EACA,IAAIlB,EAAI,SAASC,EAAI,CACnB,OAAOA,GAAM,MACf,EAAGK,EAAI,SAASL,EAAI,CAClB,OAAOA,IAAO,IAAMA,IAAO,OAASA,IAAO,MAC7C,EAAGM,EAAI,SAASN,EAAI,CAClB,IAAIC,EAAKD,EAAK,SAASA,EAAI,EAAE,EAAI,IACjC,OAAO,MAAMC,CAAE,EAAI,OAASA,CAC9B,EAAGM,EAAI,kBACPV,EAAG,wBAA0B,SAASG,EAAIC,EAAI,CAC5C,IAAIO,EAAGC,EACP,OAAQR,EAAI,CACV,IAAK,SACH,OAAOF,EAAEC,CAAE,EACb,IAAK,UACH,OAAOK,EAAEL,CAAE,EACb,IAAK,UACH,OAAOM,EAAEN,CAAE,EACb,IAAK,WACH,OAAO,SAASiB,EAAI,CAClB,IAAIC,EAAKD,GAAMA,KAAMe,EAASA,EAAOf,CAAE,EAAI,OAC3C,OAAO,OAAOC,GAAM,WAAaA,EAAK,MACxC,EAAElB,CAAE,EACN,IAAK,QACH,OAAO,SAASiB,EAAI,CAClB,GAAIA,EACF,OAAOA,EAAG,QAAQ,MAAO,EAAE,EAAE,QAAQ,OAAQV,CAAC,EAAE,MAAM,GAAG,EAAE,OAAO,SAASgC,EAAI,CAC7E,MAAO,CAAC,CAACA,CACX,CAAC,EAAE,IAAI,SAASA,EAAI,CAClB,OAAOA,EAAG,QAAQhC,EAAG,GAAG,CAC1B,CAAC,CACL,EAAEP,CAAE,EACN,IAAK,SACH,OAAO,SAASiB,EAAI,CAClB,GAAIA,EACF,OAAOA,EAAG,QAAQ,OAAQV,CAAC,EAAE,MAAM,GAAG,EAAE,OAAO,SAASgC,EAAI,CAC1D,MAAO,CAAC,CAACA,CACX,CAAC,EAAE,IAAI,SAASA,EAAI,CAClB,OAAOA,EAAG,QAAQhC,EAAG,GAAG,CAC1B,CAAC,EAAE,OAAO,SAASgC,EAAIrB,EAAI,CACzB,IAAIf,EAAIC,EAAKc,EAAG,MAAM,gBAAgB,EACtC,GAAId,EAAI,CACN,IAAIkB,EAAKlB,EAAG,CAAC,EAAGmB,EAAKnB,EAAG,CAAC,EACzB,OAAON,EAAEA,EAAE,CAAC,EAAGyC,CAAE,IAAKpC,EAAK,CAAC,GAAGmB,EAAG,KAAK,CAAC,EAAIC,EAAIpB,EAAG,EAErD,OAAOoC,CACT,EAAG,CAAC,CAAC,CACT,EAAEvC,CAAE,EACN,IAAK,mBACH,OAAQQ,EAAIF,EAAEN,CAAE,KAAO,MAAQQ,IAAM,OAASA,EAAIH,EAAEL,CAAE,EACxD,IAAK,kBACH,OAAQS,EAAIV,EAAEC,CAAE,KAAO,MAAQS,IAAM,OAASA,EAAIJ,EAAEL,CAAE,EACxD,QACE,MAAM,IAAI,MAAM,oCAAsCC,CAAE,CAC5D,CACF,EAAGJ,EAAG,0BAA4B,SAASG,EAAIG,EAAI,CACjD,OAAO,OAAO,KAAKA,CAAE,EAAE,OAAO,SAASC,EAAIkB,EAAI,CAC7C,IAAIC,EACJ,OAAOzB,EAAEA,EAAE,CAAC,EAAGM,CAAE,IAAKmB,EAAK,CAAC,GAAGD,CAAE,EAAIzB,EAAG,wBAAwBG,EAAG,aAAa,WAAaH,EAAG,qBAAqByB,CAAE,CAAC,EAAGnB,EAAGmB,CAAE,CAAC,EAAGC,EAAG,CACzI,EAAG,CAAC,CAAC,CACP,CACF,EAAG,IAAK,SAAS3B,EAAIC,EAAI,CACvB,OAAO,eAAeA,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,aAAeA,EAAG,SAAWA,EAAG,YAAc,OAAQA,EAAG,YAAc,UAAW,CAC3I,OAAOmC,EAAO,OAAO,OAAS,MAAQA,EAAO,OAAO,QAAU,GAChE,EAAGnC,EAAG,SAAW,UAAW,CAC1B,MAAO,yBAAyB,KAAK8C,EAAU,UAAU,YAAY,CAAC,CACxE,EAAG9C,EAAG,aAAe,UAAW,CAC9B,OAAOA,EAAG,SAAS,GAAK,CAACA,EAAG,YAAY,CAC1C,CACF,EAAG,IAAK,SAASD,EAAIC,EAAIC,EAAG,CAC1B,IAAIC,EAAI,MAAQ,KAAK,UAAY,UAAW,CAC1C,OAAQA,EAAI,OAAO,QAAU,SAASC,EAAI,CACxC,QAASC,EAAIC,EAAK,EAAGC,EAAK,UAAU,OAAQD,EAAKC,EAAID,IACnD,QAASE,KAAMH,EAAK,UAAUC,CAAE,EAC9B,OAAO,UAAU,eAAe,KAAKD,EAAIG,CAAE,IAAMJ,EAAGI,CAAE,EAAIH,EAAGG,CAAE,GACnE,OAAOJ,CACT,GAAG,MAAM,KAAM,SAAS,CAC1B,EACA,OAAO,eAAeH,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,oBAAsB,OACjF,IAAIQ,EAAIP,EAAE,GAAG,EACbD,EAAG,oBAAsB,SAASG,EAAI,CACpC,OAAO,OAAO,QAAQA,CAAE,EAAE,OAAO,SAASiB,EAAI,CAC5C,IAAIhB,EAAKgB,EAAG,CAAC,EACb,OAAOZ,EAAE,UAAUJ,CAAE,CACvB,CAAC,EAAE,OAAO,SAASgB,EAAIhB,EAAI,CACzB,IAAIC,EAAIE,EAAKH,EAAG,CAAC,EAAGK,EAAIL,EAAG,CAAC,EAC5B,OAAOF,EAAEA,EAAE,CAAC,EAAGkB,CAAE,IAAKf,EAAK,CAAC,GAAGE,CAAE,EAAIE,EAAGJ,EAAG,CAC7C,EAAG,CAAC,CAAC,CACP,CACF,EAAG,IAAK,SAASN,EAAIC,EAAIC,EAAG,CAC1B,OAAO,eAAeD,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,aAAe,OAC1E,IAAIE,EAAID,EAAE,GAAG,EACbD,EAAG,aAAe,SAASG,EAAIC,EAAIC,EAAI,CACrC,GAAID,GAAMC,EAAI,CACZ,IAAIG,EAAI,OAAOJ,GAAM,SAAWA,EAAK,EACrC+B,EAAO,iBAAiB,UAAWjC,EAAE,qBAAqBC,EAAI,UAAW,CACvE,OAAO,WAAWE,EAAIG,CAAC,CACzB,CAAC,CAAC,EAEN,CACF,EAAG,IAAK,SAAST,EAAIC,EAAI,CACvB,OAAO,eAAeA,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,eAAiB,OAAQA,EAAG,eAAiB,SAASG,EAAIC,EAAI,CACvH,IAAIH,EAAIG,EAAG,MAAOF,EAAIE,EAAG,OACzB,OAAOH,IAAME,EAAG,MAAM,MAAQF,EAAI,MAAOC,IAAMC,EAAG,MAAM,OAASD,EAAI,MAAOC,CAC9E,CACF,EAAG,IAAK,SAASJ,EAAIC,EAAI,CACvB,OAAO,eAAeA,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,gBAAkBA,EAAG,gBAAkB,OAAQA,EAAG,gBAAkB,SAASG,EAAIC,EAAIC,EAAI,CAClJ,IAAI,EAAI,CAAC,QAASF,EAAI,WAAYC,CAAE,EACpC,WAAW,UAAW,CACpBC,GAAMA,EAAG,eAAiBA,EAAG,cAAc,YAAY,CAAC,KAAM,eAAgB,KAAM,CAAC,EAAG,GAAG,CAC7F,EAAG,CAAC,CACN,EACA,IAAIJ,EAAI,SAASE,EAAI,CACnB,QAAQ,MAAMA,CAAE,CAClB,EACAH,EAAG,gBAAkB,SAASG,EAAID,EAAGM,EAAG,CACtC,GAAI,CACF,IAAIC,EAAI0B,EAAOA,EAAO,qBAAqB,EAAGzB,EAAI,OAAOF,GAAK,SAAWA,EAAI,OAAQG,EAAI,SAASS,EAAIhB,EAAI,CACxG,OAAOA,EAAKgB,EAAG,KAAK,SAASsB,EAAI,CAC/B,OAAOA,EAAG,IAAI,YAAY,IAAMtC,CAClC,CAAC,EAAIgB,EAAG,CAAC,CACX,EAAEX,EAAE,OAAO,EAAGC,CAAC,EACfC,EAAIX,EAAG,gBAAgBE,EAAGS,EAAE,IAAI,UAAU,EAAGR,CAAE,EAAIF,EAAE,kGAAoGS,EAAI,2JAA2J,CAC1T,OAASU,EAAP,CACAnB,EAAE,2OAA2O,EAAGA,EAAEmB,CAAE,CACtP,CACF,CACF,EAAG,IAAK,SAASrB,EAAIC,EAAI,CACvB,OAAO,eAAeA,EAAI,aAAc,CAAC,MAAO,EAAI,CAAC,EAAGA,EAAG,eAAiB,OAAQA,EAAG,eAAiB,SAASG,EAAI,CACnH,IAAIC,GACHA,EAAKD,EAAG,cAAgB,MAAQC,IAAO,QAAUA,EAAG,YAAYD,CAAE,CACrE,CACF,CAAC,EAAGN,EAAI,CAAC,EACT,OAAO,SAASI,EAAEC,EAAG,CACnB,GAAIL,EAAEK,CAAC,EACL,OAAOL,EAAEK,CAAC,EAAE,QACd,IAAIM,EAAIX,EAAEK,CAAC,EAAI,CAAC,QAAS,CAAC,CAAC,EAC3B,OAAON,EAAEM,CAAC,EAAE,KAAKM,EAAE,QAASA,EAAGA,EAAE,QAASP,CAAC,EAAGO,EAAE,OAClD,EAAE,GAAG,CACP,EAAE,CACJ,CAAC,CACH,CAAC,EAED,IAAIuC,GAAgBC,GAAM,cACtBC,GAAcD,GAAM,YACpBE,GAAgBF,GAAM,cACtBG,GAAeH,GAAM,aACrBI,GAAeJ,GAAM,aC77B0G,IAAMK,GAAgB,CAAC,GAAGC,GAAgB,GAAGD,GAAuB,UAAU,SAAS,QAAQ,GAAG,MAAM,IAAI,OAAO,IAAI,SAAS,QAAQ,EAAeE,GAAkB,CAAC,GAAGF,GAAgB,MAAM,OAAO,WAAW,wBAAwB,YAAY,MAAM,EAAeG,GAAgB,CAAC,SAAS,GAAG,WAAW,IAAI,OAAO,CAAC,EAAeC,GAAoB,CAAC,SAAS,GAAG,SAAS,IAAI,WAAW,IAAI,OAAO,WAAW,ECAnF,IAAMC,GAAOC,GAAQ,SAAgB,CAAC,GAAAC,EAAG,MAAAC,EAAM,SAAAC,EAAS,WAAAC,EAAW,YAAAC,EAAY,iBAAAC,EAAiB,GAAGC,CAAK,EAAE,CAAC,IAAMC,EAAUC,EAAO,IAAI,EAAE,OAAAC,GAAU,IAAI,CAAC,GAAGF,EAAU,QAAQ,CAAC,IAAMG,EAAOC,GAAaX,EAAG,CAAC,MAAM,OAAO,OAAO,OAAO,UAAUO,EAAU,QAAQ,uBAAuB,CAAC,aAAa,aAAa,cAAe,EAAE,SAAAL,EAAS,WAAAC,EAAW,YAAAC,EAAY,iBAAAC,CAAgB,CAAC,EAAE,MAAM,IAAI,CAACK,EAAO,QAAQ,CAAE,EAAG,EAAE,CAACV,EAAGE,EAASC,EAAWC,EAAYC,CAAgB,CAAC,EAAuBO,EAAK,MAAM,CAAC,MAAMX,EAAM,UAAU,kBAAkB,IAAIM,EAAU,GAAGD,CAAK,CAAC,CAAE,EAAE,CAAC,uGAAwG,CAAC,EAQ3lC,SAARO,GAA0B,CAAC,OAAAC,EAAO,MAAAb,EAAM,SAAAC,EAAS,WAAAC,EAAW,YAAAC,EAAY,UAAAW,EAAU,GAAGT,CAAK,EAAE,CAAC,SAASU,EAAaC,EAAE,CAAIf,IAAW,QAAWA,EAASe,CAAC,EAAM,WAAW,4BAA4B,WAAW,2BAA2B,UAAU,CAAG,CAAC,OAAOH,EAAqBF,EAAKM,EAAO,IAAI,CAAC,MAAM,CAAC,GAAGC,GAAgB,GAAGlB,CAAK,EAAE,GAAGK,EAAM,SAAuBM,EAAKd,GAAO,CAAC,GAAGgB,EAAO,MAAM,CAAC,MAAM,OAAO,OAAO,MAAM,EAAE,SAASE,EAAa,WAAWb,EAAW,YAAYC,EAAY,iBAAiB,CAACW,CAAS,CAAC,CAAC,CAAC,EAAgB,EAAMG,EAAO,IAAI,CAAC,MAAM,CAAC,GAAGE,GAAgB,GAAGnB,CAAK,EAAE,GAAGK,EAAM,SAAS,CAAeM,EAAK,KAAK,CAAC,MAAMS,GAAgB,SAAS,UAAU,CAAC,EAAgBT,EAAK,IAAI,CAAC,MAAMU,GAAoB,SAAS,kCAAkC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAEC,GAAoBV,GAAS,CAAC,OAAO,CAAC,MAAM,KAAK,KAAKW,EAAY,OAAO,YAAY,WAAW,aAAa,SAAS,YAAY,6JAAwJ,EAAE,WAAW,CAAC,MAAM,SAAS,KAAKA,EAAY,QAAQ,aAAa,OAAO,cAAc,OAAO,aAAa,EAAK,EAAE,YAAY,CAAC,MAAM,UAAU,KAAKA,EAAY,QAAQ,aAAa,OAAO,cAAc,OAAO,aAAa,EAAK,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,QAAQ,aAAa,KAAK,cAAc,MAAM,aAAa,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,YAAY,CAAC,CAAC,ECR96C,IAAIC,GACAC,GAAgBC,IACbF,KAsBHA,GArBiBE,EAAM,WAAW,SAAmB,CACnD,MAAAC,EACA,QAAAC,EACA,GAAGC,CACL,EAAGC,EAAQ,CACT,OAAuBJ,EAAM,cAAc,MAAO,OAAO,OAAO,CAC9D,MAAO,6BACP,QAAS,YACT,KAAM,eACN,cAAe,OACf,YAAa,OACb,IAAKI,EACL,kBAAmBF,CACrB,EAAGC,CAAK,EAAGF,EAAwBD,EAAM,cAAc,QAAS,CAC9D,GAAIE,CACN,EAAGD,CAAK,EAAI,KAAsBD,EAAM,cAAc,OAAQ,CAC5D,EAAG,uJACL,CAAC,EAAmBA,EAAM,cAAc,OAAQ,CAC9C,EAAG,gQACL,CAAC,CAAC,CACJ,CAAC,GAGIF,IC1B6e,IAAMO,GAAS,CAAC,cAAc,sBAAsB,aAAa,sBAAsB,kBAAkB,YAAY,kBAAkB,gBAAgB,oBAAoB,iBAAiB,gBAAgB,YAAY,kBAAkB,uBAAuB,gBAAgB,gBAAgB,iBAAiB,cAAc,YAAY,aAAa,mBAAmB,iBAAiB,iBAAiB,kBAAkB,eAAe,oBAAoB,kBAAkB,UAAU,gBAAgB,cAAc,kBAAkB,uBAAuB,eAAe,cAAc,iBAAiB,iBAAiB,kBAAkB,eAAe,mBAAmB,oBAAoB,kBAAkB,eAAe,WAAW,YAAY,WAAW,YAAY,QAAQ,QAAQ,kBAAkB,mBAAmB,kBAAkB,QAAQ,gBAAgB,cAAc,WAAW,aAAa,YAAY,SAAS,OAAO,YAAY,YAAY,aAAa,OAAO,YAAY,WAAW,WAAW,gBAAgB,iBAAiB,YAAY,SAAS,kBAAkB,iBAAiB,kBAAkB,qBAAqB,OAAO,aAAa,WAAW,eAAe,SAAS,WAAW,iBAAiB,WAAW,iBAAiB,sBAAsB,qBAAqB,QAAQ,aAAa,cAAc,oBAAoB,oBAAoB,qBAAqB,kBAAkB,cAAc,cAAc,eAAe,YAAY,gBAAgB,cAAc,YAAY,oBAAoB,QAAQ,QAAQ,iBAAiB,eAAe,cAAc,oBAAoB,MAAM,YAAY,YAAY,cAAc,kBAAkB,UAAU,aAAa,OAAO,kBAAkB,sBAAsB,iBAAiB,eAAe,gBAAgB,gBAAgB,cAAc,kBAAkB,oBAAoB,oBAAoB,eAAe,WAAW,oBAAoB,kBAAkB,mBAAmB,gBAAgB,oBAAoB,gBAAgB,eAAe,eAAe,qBAAqB,mBAAmB,WAAW,eAAe,oBAAoB,sBAAsB,MAAM,aAAa,WAAW,YAAY,YAAY,OAAO,cAAc,OAAO,OAAO,SAAS,kBAAkB,cAAc,aAAa,aAAa,UAAU,SAAS,MAAM,OAAO,UAAU,WAAW,gBAAgB,qBAAqB,oBAAoB,aAAa,gBAAgB,cAAc,UAAU,QAAQ,OAAO,aAAa,iBAAiB,QAAQ,iBAAiB,aAAa,oBAAoB,MAAM,WAAW,WAAW,YAAY,OAAO,aAAa,aAAa,WAAW,kBAAkB,uBAAuB,sBAAsB,MAAM,SAAS,YAAY,aAAa,QAAQ,cAAc,aAAa,OAAO,cAAc,YAAY,WAAW,aAAa,gBAAgB,YAAY,QAAQ,cAAc,SAAS,eAAe,QAAQ,qBAAqB,oBAAoB,aAAa,QAAQ,OAAO,aAAa,YAAY,OAAO,aAAa,YAAY,QAAQ,uBAAuB,UAAU,cAAc,SAAS,qBAAqB,YAAY,QAAQ,iBAAiB,gBAAgB,iBAAiB,iBAAiB,eAAe,MAAM,QAAQ,WAAW,SAAS,cAAc,QAAQ,cAAc,oBAAoB,cAAc,eAAe,SAAS,cAAc,WAAW,cAAc,eAAe,eAAe,iBAAiB,aAAa,cAAc,OAAO,OAAO,aAAa,MAAM,SAAS,aAAa,MAAM,SAAS,QAAQ,SAAS,QAAQ,KAAK,OAAO,aAAa,YAAY,YAAY,WAAW,QAAQ,WAAW,cAAc,mBAAmB,cAAc,mBAAmB,SAAS,OAAO,SAAS,SAAS,oBAAoB,UAAU,QAAQ,OAAO,EAAQC,GAAc,mCAAyCC,GAAsBF,GAAS,OAAO,CAACG,EAAIC,KAAOD,EAAIC,EAAI,YAAY,CAAC,EAAEA,EAAWD,GAAM,CAAC,CAAC,EAQ11I,SAASE,EAAKC,EAAM,CAAC,GAAK,CAAC,MAAAC,EAAM,aAAAC,EAAa,WAAAC,EAAW,cAAAC,EAAc,QAAAC,EAAQ,YAAAC,EAAY,UAAAC,EAAU,aAAAC,EAAa,aAAAC,EAAa,SAAAC,CAAQ,EAAEV,EAAYW,EAAUC,EAAO,EAAK,EAAQC,EAAQC,GAAiBpB,GAASQ,EAAaC,EAAWC,EAAcR,EAAqB,EACrR,CAACmB,EAAaC,CAAe,EAAEC,GAASJ,IAAU,OAAOK,GAAYC,EAAK,EAAE,IAAI,EACrF,eAAeC,GAAc,CAC7B,GAAG,CAA4D,IAAMC,EAAO,MAAM,OAA1D,GAAG1B,KAAgBkB,eAAyFF,EAAU,SAAQK,EAAgBK,EAAO,QAAQF,EAAK,CAAC,CAAE,MAAC,CAASR,EAAU,SAAQK,EAAgB,IAAI,CAAE,CAAC,CAChPM,GAAU,KAAKX,EAAU,QAAQ,GAAKS,EAAa,EAAQ,IAAI,CAACT,EAAU,QAAQ,EAAM,GAAI,CAACE,CAAO,CAAC,EAAgE,IAAMU,EAAnDC,GAAa,QAAQ,IAAIA,GAAa,OAAgDC,EAAKC,GAAU,CAAC,CAAC,EAAE,KAAK,OAAoBD,EAAKE,EAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,QAAAtB,EAAQ,aAAAG,EAAa,aAAAC,EAAa,YAAAH,EAAY,UAAAC,EAAU,SAASQ,EAA0BU,EAAKV,EAAa,CAAC,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,UAAUL,EAAS,eAAe,MAAS,EAAE,MAAMT,CAAK,CAAC,EAAEsB,CAAU,CAAC,CAAE,CAACxB,EAAK,YAAY,OAAOA,EAAK,aAAa,CAAC,MAAM,GAAG,OAAO,GAAG,cAAc,OAAO,WAAW,OAAO,MAAM,OAAO,aAAa,GAAK,SAAS,EAAK,EAAE6B,GAAoB7B,EAAK,CAAC,aAAa,CAAC,KAAK8B,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,SAAS,aAAa9B,EAAK,aAAa,YAAY,EAAE,cAAc,CAAC,KAAK8B,EAAY,KAAK,QAAQnC,GAAS,aAAaK,EAAK,aAAa,cAAc,MAAM,OAAO,OAAO,CAAC,CAAC,aAAAG,CAAY,IAAI,CAACA,EAAa,YAAY,iEAAiE,EAAE,WAAW,CAAC,KAAK2B,EAAY,OAAO,MAAM,OAAO,YAAY,wBAAmB,OAAO,CAAC,CAAC,aAAA3B,CAAY,IAAIA,CAAY,EAAE,SAAS,CAAC,KAAK2B,EAAY,QAAQ,aAAa,MAAM,cAAc,KAAK,aAAa9B,EAAK,aAAa,QAAQ,EAAE,MAAM,CAAC,KAAK8B,EAAY,MAAM,MAAM,QAAQ,aAAa9B,EAAK,aAAa,KAAK,EAAE,GAAG+B,EAAa,CAAC,ECXzjC,IAAMC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,OAAO,YAAY,KAAK,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,OAAAC,EAAO,GAAAC,EAAG,SAAAC,EAAS,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAuCC,EAAMC,EAAM,MAAM,CAAC,GAAGJ,EAAM,WAAWC,EAAKN,GAAsCK,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,4FAA4F,SAASE,GAAOD,EAAuCT,GAAwBO,EAAM,OAAO,KAAK,MAAME,IAAyC,OAAOA,EAAuCF,EAAM,WAAW,MAAMG,IAAQ,OAAOA,EAAM,YAAY,WAAWC,EAAMN,GAA4CE,EAAM,aAAa,MAAMI,IAAQ,OAAOA,EAAM,2FAA2F,CAAE,EAAQC,GAAuB,CAACL,EAAMxB,IAAWA,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAuBM,GAA6BC,GAAW,SAASP,EAAMQ,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAApC,EAAQ,UAAAqC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEvB,GAASM,CAAK,EAAO,CAAC,YAAAkB,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAA9C,CAAQ,EAAE+C,GAAgB,CAAC,WAAApD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQmD,EAAiBnB,GAAuBL,EAAMxB,CAAQ,EAAO,CAAC,sBAAAiD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBT,CAAW,EAAQU,EAAaH,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAaL,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQf,IAAc,YAA6CgB,EAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBjD,EAAKkD,GAAY,CAAC,GAAGzB,GAA4CoB,EAAgB,SAAsB7C,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsB,EAAMY,EAAO,IAAI,CAAC,GAAG0B,EAAU,UAAUuB,GAAGpE,GAAkB,GAAGgE,EAAsB,iBAAiBvB,EAAUM,CAAU,EAAE,mBAAmB,SAAS,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIb,GAA6BuB,EAAK,MAAM,CAAC,GAAGnB,CAAK,EAAE,GAAGtC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,MAAM,CAAC,EAAE4C,EAAYE,CAAc,EAAE,SAAS,CAAc,EAAM7B,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB,GAAK,iBAAiBiC,EAAiB,SAAS,YAAY,MAAMI,EAAa,GAAGtD,GAAqB,CAAC,UAAU,CAAC,MAAMwD,CAAY,CAAC,EAAEZ,EAAYE,CAAc,EAAE,SAAS,CAAc,EAAM7B,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,GAAG,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,EAAE,SAAS,CAAcnC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,eAAe,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,CAAC,EAAenC,EAAKE,EAAO,IAAI,CAAC,UAAU,eAAe,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,eAAe,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA0C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKT,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAEkB,EAAY,GAAgB5C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAsBnC,EAAKoD,EAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,2FAA2F,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,EAAE,EAAE,KAAKR,EAAU,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ0B,GAAI,CAAC,kFAAkF,gFAAgF,2RAA2R,+VAA+V,kJAAkJ,oMAAoM,mMAAmM,uKAAuK,2SAA2S,mNAAmN,+1BAA+1B,EAS13SC,GAAgBC,GAAQtC,GAAUoC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,MAAMA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,SAAS,MAAM,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,4FAA4F,gBAAgB,GAAK,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,4FAA4F,gBAAgB,GAAK,MAAM,SAAS,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTljB,IAAMM,GAASC,GAASC,EAAG,EAAQC,GAAW,CAAC,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAkO,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,GAAUC,GAAuB,CAACD,EAAME,IAAWA,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAuBG,GAA6BC,GAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAhB,CAAQ,EAAEiB,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,QAAAR,EAAQ,kBAAAS,EAAiB,CAAC,EAAQC,EAAiBrB,GAAuBD,EAAME,CAAQ,EAAQqB,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBrC,EAAKsC,GAAY,CAAC,GAAGnB,GAA4Cc,EAAgB,SAAsBjC,EAAKC,GAAS,CAAC,QAAQS,EAAS,QAAQ,GAAM,SAAsBV,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsB,EAAMY,EAAO,IAAI,CAAC,GAAGmB,EAAU,UAAUkB,GAAGC,GAAkB,GAAGL,EAAsB,iBAAiBjB,EAAUK,CAAU,EAAE,mBAAmB,YAAY,iBAAiBO,EAAiB,SAAS,YAAY,WAAW,IAAIL,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIZ,GAA6BkB,EAAK,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGd,CAAK,EAAE,SAAS,CAAcjB,EAAKyC,EAA0B,CAAC,MAAM,QAAqEL,GAAkB,OAAQ,kBAAkB,SAAsBpC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB4B,EAAiB,SAAS,sBAAsB,SAAsB9B,EAAK0C,GAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,2IAA2I,QAAQ,YAAY,UAAU,qBAAqB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,CAAC,CAAC,EAAe9B,EAAKyC,EAA0B,CAAC,MAAM,QAAqEL,GAAkB,OAAQ,kBAAkB,SAAsBpC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB4B,EAAiB,SAAS,sBAAsB,SAAsB9B,EAAK0C,GAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU;AAAA;AAAA,+KAA0V,QAAQ,YAAY,UAAU,iCAAiC,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,CAAC,CAAC,EAAe9B,EAAKyC,EAA0B,CAAC,MAAM,QAAqEL,GAAkB,OAAQ,kBAAkB,SAAsBpC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB4B,EAAiB,SAAS,sBAAsB,SAAsB9B,EAAK0C,GAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU;AAAA;AAAA,mGAAuR,QAAQ,YAAY,UAAU,wCAAwC,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1C,EAAKyC,EAA0B,CAAC,MAAM,QAAqEL,GAAkB,OAAQ,kBAAkB,SAAsBpC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB4B,EAAiB,SAAS,sBAAsB,SAAsB9B,EAAK0C,GAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU;AAAA;AAAA,0BAAkG,QAAQ,YAAY,UAAU,yBAAyB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQC,GAAI,CAAC,kFAAkF,kFAAkF,0VAA0V,iOAAiO,8IAA8I,4WAA4W,EAQhsOC,GAAgBC,GAAQlC,GAAUgC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,YAAYA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGI,EAAQ,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRu9B,IAAMC,GAAoBC,GAASC,EAAc,EAAQC,GAAqBF,GAASG,EAAe,EAAQC,GAAWJ,GAASK,EAAK,EAAQC,GAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAST,GAASU,EAAG,EAAQC,GAAUX,GAASY,CAAI,EAAQC,GAAeN,GAAOO,CAAQ,EAAQC,GAAcf,GAASgB,EAAQ,EAAQC,GAAejB,GAASkB,EAAS,EAAQC,GAAiBnB,GAASoB,EAAW,EAAQC,GAAY,CAAC,UAAU,6CAA6C,UAAU,qBAAqB,UAAU,qBAAqB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQE,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAA6BC,GAAW,SAASF,EAAMG,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEf,GAASI,CAAK,EAAQY,GAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUT,CAAY,EAAE,GAAGS,EAAS,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,GAAI,EAAE,CAAC,OAAUV,CAAY,CAAC,EAAQW,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUT,CAAY,EAAE,SAAS,MAAMS,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUT,CAAY,CAAC,EAAE,GAAK,CAACY,EAAYC,CAAmB,EAAEC,GAA8BR,EAAQlC,GAAY,EAAK,EAAQ2C,EAAe,OAA+CC,EAAkBC,GAAG3C,GAAkB,GAAhD,CAAC,CAAuE,EAAQ4C,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAS/C,GAAU,EAAiBuC,IAAc,YAAtB,GAAmES,EAAa,IAAQ,CAAChD,GAAU,GAAiBuC,IAAc,YAA6CU,EAAUC,GAAkB,WAAW,EAAQC,EAAWL,EAAO,IAAI,EAAQM,EAAWF,GAAkB,WAAW,EAAQG,EAAWP,EAAO,IAAI,EAAQQ,EAAWJ,GAAkB,WAAW,EAAQK,EAAWT,EAAO,IAAI,EAAQU,EAAWN,GAAkB,WAAW,EAAQO,EAAWX,EAAO,IAAI,EAAQY,EAAsBC,GAAM,EAAEC,GAAiB,CAAC,CAAC,EAAE,IAAMC,EAAkBC,GAAqB,EAAE,OAAoB7C,EAAK8C,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAA7D,EAAiB,EAAE,SAAsB,EAAM8D,GAAY,CAAC,GAAGhC,GAAU0B,EAAgB,SAAS,CAAczC,EAAKH,GAAU,CAAC,MAAM,+CAA+C,CAAC,EAAe,EAAM5B,EAAO,IAAI,CAAC,GAAGgD,EAAU,UAAUU,GAAGD,EAAkB,gBAAgBZ,CAAS,EAAE,IAAIL,GAAKmB,EAAK,MAAM,CAAC,GAAGf,CAAK,EAAE,SAAS,CAACiB,EAAY,GAAgB9B,EAAKgD,EAA0B,CAAC,OAAO,GAAG,MAAMJ,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,SAAsB5C,EAAKiD,EAAU,CAAC,UAAU,wCAAwC,SAAsBjD,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBtB,EAAKtC,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqE,EAAa,GAAgB/B,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,GAAG,MAAMsB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,CAAC,CAAC,EAAE,SAAsB5C,EAAKgD,EAA0B,CAAC,SAAsBhD,EAAKiD,EAAU,CAAC,UAAU,uDAAuD,SAAsBjD,EAAKpC,GAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAS,CAAcoC,EAAK,SAAS,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAWmD,EAAS,CAAC,SAAsB,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,SAAS,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,sEAAsE,EAAE,SAAS,CAAcnD,EAAK,OAAO,CAAC,MAAM,CAAC,qBAAqB,OAAO,sBAAsB,cAAc,EAAE,SAAS,qBAAqB,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,qBAAqB,OAAO,sBAAsB,cAAc,EAAE,SAAsBA,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,qBAAqB,MAAM,EAAE,SAAS,uBAAuB,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,qBAAqB,OAAO,sBAAsB,cAAc,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsB,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,SAAS,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,sEAAsE,EAAE,SAAS,CAAc,EAAM,OAAO,CAAC,MAAM,CAAC,sBAAsB,cAAc,EAAE,SAAS,CAAC,sBAAmCnD,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,wBAAqCA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,cAAc,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB,EAAY6B,EAAS,CAAC,SAAS,CAAc,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,MAAM,EAAE,SAAS,CAAcnD,EAAK,OAAO,CAAC,MAAM,CAAC,qBAAqB,MAAM,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,0CAA0C,CAAC,CAAC,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,qBAAqB,OAAO,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,iDAAiD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsB,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,MAAM,EAAE,SAAS,CAAcnD,EAAK,SAAS,CAAC,SAAS,0CAA0C,CAAC,EAAe,EAAM,OAAO,CAAC,MAAM,CAAC,sBAAsB,oBAAoB,EAAE,SAAS,CAAcA,EAAK,SAAS,CAAC,SAAS,IAAI,CAAC,EAAE,mCAAmC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKgD,EAA0B,CAAC,SAAsBhD,EAAKiD,EAAU,CAAC,UAAU,0BAA0B,SAAsBjD,EAAKlC,GAAM,CAAC,SAAS,GAAK,gBAAgB,mBAAmB,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,KAAK,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,GAAG,eAAe,GAAG,MAAM,yCAAyC,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgE,EAAY,GAAgB9B,EAAK,MAAM,CAAC,UAAU,8BAA8B,mBAAmB,eAAe,CAAC,CAAC,CAAC,CAAC,EAAe,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAC8B,EAAY,GAAgB9B,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB,EAAY6B,EAAS,CAAC,SAAS,CAAcnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,QAAQ,CAAC,EAAe,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,CAAcA,EAAK,OAAO,CAAC,MAAM,CAAC,qBAAqB,MAAM,EAAE,SAAS,aAAa,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,mBAAmB,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,QAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAY4E,EAAS,CAAC,SAAS,CAAcnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,QAAQ,CAAC,EAAe,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,CAAC,cAA2BA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,mBAAmB,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,QAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,+BAA+B,MAAM,CAAC,wBAAwB,EAAE,GAAGgC,EAAU,IAAIE,EAAK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAelC,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAY4E,EAAS,CAAC,SAAS,CAAcnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,MAAM,EAAE,SAAS,uWAAuW,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,MAAM,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,MAAM,EAAE,SAAS,2NAA2N,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,UAAU,CAAC,UAAU,iBAAiB,SAAsB,EAAMjC,GAAgB,CAAC,kBAAkB,CAAC,WAAWoB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcY,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsB,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,gDAAgD,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,gDAAgD,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,gDAAgD,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWmD,EAAS,CAAC,SAAsB,EAAM,IAAI,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,CAAcnD,EAAK,OAAO,CAAC,MAAM,CAAC,qBAAqB,MAAM,EAAE,SAAS,wBAAwB,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,8DAA8D,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,wBAAwB,CAAC,CAAC,EAAE,SAAsBA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWmD,EAAS,CAAC,SAAsB,EAAM,IAAI,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,CAAcnD,EAAK,OAAO,CAAC,MAAM,CAAC,qBAAqB,MAAM,EAAE,SAAS,qBAAqB,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,8DAA8D,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,wBAAwB,CAAC,CAAC,EAAE,SAAsBA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+B,EAAa,GAAgB/B,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAY4E,EAAS,CAAC,SAAS,CAAcnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,QAAQ,CAAC,EAAe,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,CAAC,cAA2BA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,mBAAmB,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,QAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,8CAA8C,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAKgD,EAA0B,CAAC,SAAsBhD,EAAKiD,EAAU,CAAC,UAAU,2BAA2B,SAAsBjD,EAAK7B,GAAI,CAAC,kBAAkB,MAAM,MAAM,qBAAqB,eAAe,GAAG,KAAK,GAAM,KAAK,CAAC,WAAW,sBAAsB,SAAS,OAAO,UAAU,SAAS,cAAc,MAAM,WAAW,KAAK,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,YAAY,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,8CAA8C,KAAK,GAAM,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAC2D,EAAY,GAAgB9B,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,8BAA8B,MAAM,CAAC,wBAAwB,EAAE,GAAGmC,EAAW,IAAIC,EAAK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAepC,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB,EAAY6B,EAAS,CAAC,SAAS,CAAcnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,gFAAgF,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,+PAA+P,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAY4E,EAAS,CAAC,SAAS,CAAcnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,gFAAgF,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,+PAA+P,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKoD,GAAK,CAAC,KAAK,4CAA4C,OAAO,YAAY,aAAa,GAAM,SAAsBpD,EAAK,IAAI,CAAC,UAAU,+BAA+B,mBAAmB,SAAS,aAAa,SAAS,SAAsBA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+B,EAAa,GAAgB/B,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,6CAA6C,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB,EAAY6B,EAAS,CAAC,SAAS,CAAcnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,mBAAmB,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,mBAAmB,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAY4E,EAAS,CAAC,SAAS,CAAcnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,mBAAmB,EAAE,SAAS,yBAAyB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,mBAAmB,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe,EAAMjC,GAAgB,CAAC,kBAAkB,CAAC,WAAWuB,EAAW,EAAE,sBAAsB,GAAM,gBAAgBD,GAAW,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcS,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,EAAE,EAAE,iBAAiB,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,UAAU,IAAI,uEAAuE,OAAO,uKAAuK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,EAAE,EAAE,OAAO,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,uEAAuE,OAAO,uKAAuK,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,EAAE,EAAE,KAAK,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,EAAE,iBAAiB,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,EAAE,OAAO,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,EAAE,IAAI,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,EAAE,iBAAiB,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,6bAA6b,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,EAAE,OAAO,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,6bAA6b,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,EAAE,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,6bAA6b,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,EAAE,EAAE,iBAAiB,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,EAAE,EAAE,KAAK,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,mBAAmB,iBAAiB,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,OAAO,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,MAAM,KAAK,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,mBAAmB,iBAAiB,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,OAAO,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,MAAM,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,mBAAmB,iBAAiB,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,qEAAqE,OAAO,gQAAgQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,MAAM,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,qEAAqE,OAAO,gQAAgQ,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,MAAM,KAAK,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,qEAAqE,OAAO,gQAAgQ,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,mBAAmB,iBAAiB,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,qEAAqE,OAAO,gQAAgQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,OAAO,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,qEAAqE,OAAO,gQAAgQ,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,MAAM,KAAK,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,qEAAqE,OAAO,gQAAgQ,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,kBAAkB,iBAAiB,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,OAAO,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,IAAI,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,IAAI,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,kBAAkB,iBAAiB,EAAE,YAAY,KAAK,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,2EAA2E,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,IAAI,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,QAAQ,OAAO,EAAE,YAAY,KAAK,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,2EAA2E,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,IAAI,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,IAAI,KAAK,EAAE,YAAY,KAAK,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,2EAA2E,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,kBAAkB,iBAAiB,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,kcAAkc,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,QAAQ,OAAO,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,kcAAkc,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,IAAI,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,kcAAkc,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,kBAAkB,iBAAiB,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,wKAAwK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,QAAQ,OAAO,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,wKAAwK,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,IAAI,KAAK,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,OAAO,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,MAAM,KAAK,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,OAAO,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,MAAM,KAAK,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,OAAO,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,MAAM,KAAK,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,oEAAoE,OAAO,wVAAwV,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,QAAQ,OAAO,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,oEAAoE,OAAO,wVAAwV,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,MAAM,KAAK,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,oEAAoE,OAAO,wVAAwV,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,kBAAkB,iBAAiB,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,QAAQ,OAAO,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,IAAI,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,kBAAkB,iBAAiB,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,wEAAwE,OAAO,yKAAyK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,QAAQ,OAAO,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,wEAAwE,OAAO,yKAAyK,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,IAAI,KAAK,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,wEAAwE,OAAO,yKAAyK,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,kBAAkB,iBAAiB,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,IAAI,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,kBAAkB,iBAAiB,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,OAAO,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,IAAI,KAAK,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,kBAAkB,iBAAiB,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,OAAO,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,MAAM,KAAK,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,kBAAkB,iBAAiB,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,QAAQ,MAAM,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,MAAM,KAAK,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,kBAAkB,iBAAiB,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,QAAQ,OAAO,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,MAAM,KAAK,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,kBAAkB,kBAAkB,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,QAAQ,MAAM,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,MAAM,KAAK,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAS,CAACb,EAAa,GAAgB/B,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,8CAA8C,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAE8B,EAAY,GAAgB9B,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,8BAA8B,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAC8B,EAAY,GAAgB9B,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAY4E,EAAS,CAAC,SAAS,CAAcnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,sBAAsB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,8BAA8B,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAE+B,EAAa,GAAgB/B,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAY4E,EAAS,CAAC,SAAS,CAAcnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,sBAAsB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,6CAA6C,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB,EAAY6B,EAAS,CAAC,SAAS,CAAcnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,iMAAiM,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,mKAAmK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAY4E,EAAS,CAAC,SAAS,CAAcnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,iMAAiM,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,mKAAmK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,KAAK,2CAA2C,CAAC,EAAE,SAAsBtB,EAAKoD,GAAK,CAAC,KAAK,QAAQ,OAAO,YAAY,aAAa,GAAM,SAAsBpD,EAAK,IAAI,CAAC,UAAU,+BAA+B,mBAAmB,SAAS,aAAa,SAAS,SAAsBA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,kBAAkB,EAAE,KAAK,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,GAAG,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,KAAK,EAAE,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc5C,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,QAAQ,EAAE,KAAK,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,yQAAyQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,KAAK,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,yQAAyQ,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,MAAM,GAAG,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,yQAAyQ,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAe,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAACd,EAAY,GAAgB9B,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAY4E,EAAS,CAAC,SAAS,CAAcnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,uBAAuB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,6BAA6B,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB,EAAY6B,EAAS,CAAC,SAAS,CAAcnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,4HAA4H,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,mBAAmB,CAAC,EAAe,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,CAAcA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,oDAAoD,CAAC,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,sIAAsI,CAAC,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,0HAA0H,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAY4E,EAAS,CAAC,SAAS,CAAcnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,4HAA4H,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAe,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,CAAcA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAsBA,EAAK,SAAS,CAAC,SAAS,oDAAoD,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAsBA,EAAK,SAAS,CAAC,SAAS,sIAAsI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAsBA,EAAK,SAAS,CAAC,SAAS,0HAA0H,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,KAAK,2CAA2C,CAAC,EAAE,SAAsBtB,EAAKoD,GAAK,CAAC,KAAK,QAAQ,OAAO,YAAY,aAAa,GAAM,SAAsBpD,EAAK,IAAI,CAAC,UAAU,+BAA+B,mBAAmB,SAAS,aAAa,SAAS,SAAsBA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,+BAA+B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+B,EAAa,GAAgB/B,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAY4E,EAAS,CAAC,SAAS,CAAcnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,uBAAuB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,8CAA8C,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAC8B,EAAY,GAAgB9B,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAY4E,EAAS,CAAC,SAAS,CAAcnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,oBAAoB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,+BAA+B,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAY4E,EAAS,CAAC,SAAS,CAAcnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,sJAAsJ,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,2LAA2L,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,4MAA4M,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,KAAK,2CAA2C,CAAC,EAAE,SAAsBtB,EAAKoD,GAAK,CAAC,KAAK,QAAQ,OAAO,YAAY,aAAa,GAAM,SAAsBpD,EAAK,IAAI,CAAC,UAAU,8BAA8B,mBAAmB,SAAS,aAAa,SAAS,SAAsBA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,+BAA+B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+B,EAAa,GAAgB/B,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAY4E,EAAS,CAAC,SAAS,CAAcnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,oBAAoB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,8CAA8C,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ+B,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,QAAQ,EAAE,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQS,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,mBAAmB,EAAE,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,CAAC,CAAC,EAAE,SAAsB5C,EAAKsD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,GAA2BT,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,OAAO,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAc,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAACd,EAAY,GAAgB9B,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,mEAAmE,EAAE,SAAS,iCAAiC,CAAC,CAAC,CAAC,EAAE,UAAU,8BAA8B,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAE+B,EAAa,GAAgB/B,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,mEAAmE,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,iCAAiC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,6CAA6C,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAK,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,SAAsB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAKgD,EAA0B,CAAC,SAAsBhD,EAAKiD,EAAU,CAAC,UAAU,2BAA2B,SAAsBjD,EAAK3B,EAAK,CAAC,MAAM,oBAAoB,OAAO,OAAO,WAAW,OAAO,cAAc,SAAS,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2B,EAAK1B,GAAe,CAAC,kBAAkB,CAAC,WAAWmB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBM,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK1B,GAAe,CAAC,kBAAkB,CAAC,WAAWqB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBH,GAAW,eAAeI,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBI,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,8MAA8M,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,SAAsB,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAKgD,EAA0B,CAAC,SAAsBhD,EAAKiD,EAAU,CAAC,UAAU,0BAA0B,SAAsBjD,EAAK3B,EAAK,CAAC,MAAM,oBAAoB,OAAO,OAAO,WAAW,OAAO,cAAc,iBAAiB,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2B,EAAK1B,GAAe,CAAC,kBAAkB,CAAC,WAAWmB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBM,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,+BAA+B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK1B,GAAe,CAAC,kBAAkB,CAAC,WAAWqB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBH,GAAW,eAAeI,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB,EAAYuD,EAAS,CAAC,SAAS,CAAcnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,kHAAkH,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,SAAsB,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAKgD,EAA0B,CAAC,SAAsBhD,EAAKiD,EAAU,CAAC,UAAU,0BAA0B,SAAsBjD,EAAK3B,EAAK,CAAC,MAAM,oBAAoB,OAAO,OAAO,WAAW,OAAO,cAAc,WAAW,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2B,EAAK1B,GAAe,CAAC,kBAAkB,CAAC,WAAWmB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBM,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK1B,GAAe,CAAC,kBAAkB,CAAC,WAAWqB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBH,GAAW,eAAeI,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB,EAAYuD,EAAS,CAAC,SAAS,CAAcnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,mFAAmF,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,wFAAwF,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAcA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,2JAA2J,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,2JAA2J,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAC8B,EAAY,GAAgB9B,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,mEAAmE,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,mEAAmE,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,+BAA+B,MAAM,CAAC,wBAAwB,EAAE,GAAGqC,EAAW,IAAIC,EAAK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAetC,EAAKgD,EAA0B,CAAC,SAAsBhD,EAAKiD,EAAU,CAAC,UAAU,0BAA0B,SAAsBjD,EAAKvB,GAAS,CAAC,UAAU,GAAK,OAAO,wCAAwC,OAAO,OAAO,WAAW,GAAM,YAAY,GAAM,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsD,EAAa,GAAgB/B,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,mEAAmE,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,6CAA6C,MAAM,CAAC,wBAAwB,EAAE,GAAGuC,EAAW,IAAIC,EAAK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAexC,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,CAAC,EAAe,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAcA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,uBAAuB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,2JAA2J,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,KAAK,2CAA2C,CAAC,EAAE,SAAsBtB,EAAKoD,GAAK,CAAC,KAAK,QAAQ,OAAO,YAAY,aAAa,GAAM,SAAsBpD,EAAK,IAAI,CAAC,UAAU,8BAA8B,mBAAmB,SAAS,aAAa,SAAS,SAAsBA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,SAAS,CAAcA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,iBAAiB,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKzB,EAAS,CAAC,sBAAsB,GAAK,SAAsByB,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,iBAAiB,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAsBA,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGsB,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,KAAK,GAAG,IAAI,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,KAAK,GAAG,KAAK,CAAC,CAAC,EAAE,SAAsB5C,EAAKgD,EAA0B,CAAC,OAAO,IAAI,MAAM,8BAA8BJ,GAAmB,OAAO,wBAAwB,GAAGA,GAAmB,GAAG,GAAG,EAAE,kBAAkB,GAAG,EAAE,mBAAmB,GAAG,IAAI,EAAE,SAAsB5C,EAAKiD,EAAU,CAAC,UAAU,0BAA0B,SAAsBjD,EAAKrB,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,GAAGsB,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,UAAU,CAAC,OAAO,IAAI,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,CAAC,EAAE,SAAsB5C,EAAKgD,EAA0B,CAAC,OAAO,IAAI,MAAMJ,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,SAAsB5C,EAAKiD,EAAU,CAAC,UAAU,2BAA2B,SAAsBjD,EAAKkD,EAAkB,CAAC,WAAW5B,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBtB,EAAKnB,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemB,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQuD,GAAI,CAAC,kFAAkF,gFAAgF,kSAAkS,wGAAwG,wGAAwG,qSAAqS,2TAA2T,kQAAkQ,s7BAAs7B,2GAA2G,4QAA4Q,sQAAsQ,oRAAoR,oPAAoP,yTAAyT,+QAA+Q,oRAAoR,mhBAAmhB,8QAA8Q,ohBAAohB,qhBAAqhB,+WAA+W,qhBAAqhB,oPAAoP,kSAAkS,2GAA2G,oRAAoR,iRAAiR,4kBAA4kB,0QAA0Q,yTAAyT,2UAA2U,8FAA8F,07BAA07B,iGAAiG,iGAAiG,2TAA2T,iGAAiG,+FAA+F,+FAA+F,gGAAgG,iGAAiG,gGAAgG,gGAAgG,iGAAiG,iXAAiX,gGAAgG,gGAAgG,gGAAgG,0TAA0T,wQAAwQ,mRAAmR,iJAAiJ,yQAAyQ,mHAAmH,mRAAmR,oPAAoP,wQAAwQ,mRAAmR,mPAAmP,2TAA2T,iWAAiW,0bAA0b,yQAAyQ,gnBAAgnB,yLAAyL,yZAAyZ,+mBAA+mB,+mBAA+mB,gfAAgf,wQAAwQ,uQAAuQ,uTAAuT,kSAAkS,2GAA2G,yTAAyT,gXAAgX,0QAA0Q,4bAA4b,0TAA0T,iPAAiP,iSAAiS,sHAAsH,0GAA0G,m0YAAm0Y,gcAAgc,ozQAAozQ,4jUAA4jU,EAW13+KC,GAAgBC,GAAQlD,GAAUgD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,OAAO,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,kBAAkB,OAAO,SAAS,IAAI,wEAAwE,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGhG,GAAoB,GAAGG,GAAqB,GAAGE,GAAW,GAAGK,GAAS,GAAGE,GAAU,GAAGI,GAAc,GAAGE,GAAe,GAAGE,EAAgB,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACnjF,IAAMgF,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,6BAA+B,OAAO,sBAAwB,SAAS,4BAA8B,OAAO,sBAAwB,IAAI,uBAAyB,GAAG,oCAAsC,4JAA0L,qBAAuB,OAAO,qBAAuB,kNAA0P,yBAA2B,OAAO,yBAA2B,OAAO,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["murmur2", "r", "t", "a", "e", "c", "getAlignmentIcon", "alignmentBaseline", "Arc", "withCSS", "props", "isCanvas", "RenderTarget", "cylinder", "path", "createPath", "id", "murmur2", "alignmentValue", "p", "Arc_default", "addPropertyControls", "ControlType", "flip", "cylinderTop", "cylinderBottom", "commonjsGlobal", "window", "global", "createCommonjsModule", "fn", "basedir", "module", "path", "base", "commonjsRequire", "build", "exports", "e", "t", "commonjsGlobal", "e2", "t2", "n", "o", "e3", "t3", "n2", "o2", "r2", "r", "i", "a", "c", "u", "s", "d", "l", "f", "p", "v", "m", "e4", "t4", "n3", "h", "b", "i2", "a2", "y", "g", "O", "_", "w", "P", "E", "C", "window", "s2", "d2", "l2", "f2", "p2", "v2", "e5", "i3", "c2", "i4", "navigator", "createPopover", "build", "createPopup", "createSidetab", "createSlider", "createWidget", "emptyStateStyle", "containerStyles", "neutralStateStyle", "stateTitleStyle", "stateParagraphStyle", "Widget", "withCSS", "id", "style", "onSubmit", "hideFooter", "hideHeaders", "disableAutoFocus", "props", "container", "pe", "ue", "widget", "createWidget", "p", "Typeform", "formId", "autoFocus", "handleSubmit", "e", "motion", "containerStyles", "emptyStateStyle", "stateTitleStyle", "stateParagraphStyle", "addPropertyControls", "ControlType", "Component", "Home_default", "React", "title", "titleId", "props", "svgRef", "iconKeys", "moduleBaseUrl", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "Home_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "defaultEvents", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W88zB8mIG", "T8rQFvSBR", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1ad1wae", "args", "onTap1kl71ww", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramerhtrhpIOez", "withCSS", "htrhpIOez_default", "addPropertyControls", "ControlType", "addFonts", "RowFonts", "getFonts", "htrhpIOez_default", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "htrhpIOez_default", "css", "FramerZ56ZqZQoj", "withCSS", "Z56ZqZQoj_default", "addFonts", "RowFonts", "NavigationCopyFonts", "getFonts", "p5RZSHWXb_default", "NavigationCopy2Fonts", "k_pzjYQgL_default", "VimeoFonts", "Vimeo_default", "MotionDivWithFX", "withFX", "motion", "ArcFonts", "Arc_default", "HeroFonts", "Icon", "RichTextWithFX", "RichText2", "TypeformFonts", "Typeform", "AccordionFonts", "Z56ZqZQoj_default", "FooterAgainFonts", "ayq4q5aSj_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "animation2", "transition2", "animation3", "animation4", "transition3", "animation5", "transition4", "animation6", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "elementId2", "ref4", "elementId3", "ref5", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "Link", "getLoadingLazyAtYPosition", "Image2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "__FramerMetadata__"]
}
