{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/ljXGaiOlhx7eOyAPim8N/MDyfW977mCRBp849aXBW/F2vkyjUuX.js", "ssg:https://framerusercontent.com/modules/xmCeAYpCXVBtBYkhW4uv/Qd15RujWe0TZblS71EqW/y6Tt0YdXv-0.js", "ssg:https://framerusercontent.com/modules/xmCeAYpCXVBtBYkhW4uv/Qd15RujWe0TZblS71EqW/y6Tt0YdXv-1.js", "ssg:https://framerusercontent.com/modules/xmCeAYpCXVBtBYkhW4uv/Qd15RujWe0TZblS71EqW/y6Tt0YdXv-2.js", "ssg:https://framerusercontent.com/modules/xmCeAYpCXVBtBYkhW4uv/Qd15RujWe0TZblS71EqW/y6Tt0YdXv.js", "ssg:https://framerusercontent.com/modules/R3HIcGGZhSBcExI8slk1/c9alIUvVpBwVEq6CHQx5/y6Tt0YdXv.js", "ssg:https://framerusercontent.com/modules/CkSF3RDRAzA7KmjP7blT/vjw0eNdfRPvyTIYAuCJc/tStpDOmml.js", "ssg:https://framerusercontent.com/modules/LzYwAtuAmm4OU8QZGVGS/sBuGS7FdPs4c9ekIk950/augiA20Il.js", "ssg:https://framerusercontent.com/modules/x9jtHtJDkTW2EpBum5hK/AsCsR0G4raplgbYFUqJW/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (68888f7)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;PF Bague Sans Pro Light\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"PF Bague Sans Pro Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/0YeFwmY6spZGntahRobpkDyn3n8.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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-OcoLU .framer-styles-preset-1kl7sdh:not(.rich-text-wrapper), .framer-OcoLU .framer-styles-preset-1kl7sdh.rich-text-wrapper h2 { --framer-font-family: \"PF Bague Sans Pro Light\", \"PF Bague Sans Pro Light Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 34px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 0.9em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-106df45a-09e1-48ee-987a-0e3a2f87a2a8, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }'];export const className=\"framer-OcoLU\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1kl7sdh\",\"data-styles-preset\":\"F2vkyjUuX\",children:\"Des jeux anim\\xe9s par les communaut\\xe9s\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1y08tao\",\"data-styles-preset\":\"mYllxCm_y\",children:\"Des jeux anim\\xe9s par les communaut\\xe9s\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1kl7sdh\",\"data-styles-preset\":\"F2vkyjUuX\",children:\"Von Gemeinschaften Getriebene Spiele\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1y08tao\",\"data-styles-preset\":\"mYllxCm_y\",children:\"Von Gemeinschaften Getriebene Spiele\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1kl7sdh\",\"data-styles-preset\":\"F2vkyjUuX\",children:\"Jogos Impulsionados Por Comunidades\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1y08tao\",\"data-styles-preset\":\"mYllxCm_y\",children:\"Jogos Impulsionados Por Comunidades\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (68888f7)\nimport*as localizedValues from\"./y6Tt0YdXv-0.js\";import*as localizedValues1 from\"./y6Tt0YdXv-1.js\";import*as localizedValues2 from\"./y6Tt0YdXv-2.js\";const valuesByLocaleId={CNBZg976Q:localizedValues,VK4N6WKzf:localizedValues1,ZK3Zwgecc:localizedValues2};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (68888f7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/ljXGaiOlhx7eOyAPim8N/MDyfW977mCRBp849aXBW/F2vkyjUuX.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/kFXzO0mUKh6cJ5FaL1Ie/t59kk9UatRfrwckuRI8R/mYllxCm_y.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/xmCeAYpCXVBtBYkhW4uv/Qd15RujWe0TZblS71EqW/y6Tt0YdXv.js\";const enabledGestures={ltUxZgKEE:{hover:true}};const serializationHash=\"framer-pVWVv\";const variantClassNames={ltUxZgKEE:\"framer-v-pg5gsi\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={bounce:.2,delay:0,duration:.4,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.create(React.Fragment);const getProps=({height,id,image,link,title1,title2,width,...props})=>{var _ref,_ref1,_ref2;return{...props,DypuAmJ3z:(_ref=title1!==null&&title1!==void 0?title1:props.DypuAmJ3z)!==null&&_ref!==void 0?_ref:\"Games Driven By\",hHKzIfBez:(_ref1=title2!==null&&title2!==void 0?title2:props.hHKzIfBez)!==null&&_ref1!==void 0?_ref1:\"Communites\",TBzYVDfIy:link!==null&&link!==void 0?link:props.TBzYVDfIy,U2SSlntvM:(_ref2=image!==null&&image!==void 0?image:props.U2SSlntvM)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/EIMt5TqM7AuX81sqpWaAMRB80zI.jpg\",srcSet:\"https://framerusercontent.com/images/EIMt5TqM7AuX81sqpWaAMRB80zI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/EIMt5TqM7AuX81sqpWaAMRB80zI.jpg 736w\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,DypuAmJ3z,hHKzIfBez,U2SSlntvM,TBzYVDfIy,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"ltUxZgKEE\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1;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__*/_jsx(Link,{href:TBzYVDfIy,nodeId:\"ltUxZgKEE\",children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),pixelHeight:487,pixelWidth:736,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(U2SSlntvM),...{positionX:\"center\",positionY:\"center\"}},className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-pg5gsi\",className,classNames)} framer-145jani`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ltUxZgKEE\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"ltUxZgKEE-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8i6204\",layoutDependency:layoutDependency,layoutId:\"KwKOvsO00\",style:{backgroundColor:\"rgba(0, 0, 0, 0.53)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1kl7sdh\",\"data-styles-preset\":\"F2vkyjUuX\",children:\"Games Driven By\"})}),className:\"framer-1ltmyya\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Kjvzbbpyh\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:DypuAmJ3z,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1y08tao\",\"data-styles-preset\":\"mYllxCm_y\",children:\"Communites\"})}),className:\"framer-17d7zd7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DIhxrRrQ8\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:hHKzIfBez,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-big6k4\",layoutDependency:layoutDependency,layoutId:\"dJE92QigR\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{\"ltUxZgKEE-hover\":{backgroundColor:\"var(--token-94a262aa-4a2c-46bc-9066-b5a0d0327d18, rgb(211, 216, 0))\"}}})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pVWVv.framer-145jani, .framer-pVWVv .framer-145jani { display: block; }\",\".framer-pVWVv.framer-pg5gsi { cursor: pointer; height: 300px; position: relative; text-decoration: none; width: 767px; }\",\".framer-pVWVv .framer-8i6204 { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 0px; overflow: hidden; padding: 10px; position: absolute; width: min-content; }\",\".framer-pVWVv .framer-1ltmyya, .framer-pVWVv .framer-17d7zd7 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-pVWVv .framer-big6k4 { align-self: stretch; flex: none; height: 1px; overflow: visible; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pVWVv .framer-8i6204 { gap: 0px; } .framer-pVWVv .framer-8i6204 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-pVWVv .framer-8i6204 > :first-child { margin-top: 0px; } .framer-pVWVv .framer-8i6204 > :last-child { margin-bottom: 0px; } }\",\".framer-pVWVv.framer-v-pg5gsi.hover .framer-8i6204 { padding: 20px; }\",\".framer-pVWVv.framer-v-pg5gsi.hover .framer-big6k4 { height: 4px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 300\n * @framerIntrinsicWidth 767\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"gvAVEcMYV\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"DypuAmJ3z\":\"title1\",\"hHKzIfBez\":\"title2\",\"U2SSlntvM\":\"image\",\"TBzYVDfIy\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framery6Tt0YdXv=withCSS(Component,css,\"framer-pVWVv\");export default Framery6Tt0YdXv;Framery6Tt0YdXv.displayName=\"Discover Image\";Framery6Tt0YdXv.defaultProps={height:300,width:767};addPropertyControls(Framery6Tt0YdXv,{DypuAmJ3z:{defaultValue:\"Games Driven By\",displayTextArea:false,title:\"Title 1\",type:ControlType.String},hHKzIfBez:{defaultValue:\"Communites\",displayTextArea:false,title:\"Title 2\",type:ControlType.String},U2SSlntvM:{__defaultAssetReference:\"data:framer/asset-reference,EIMt5TqM7AuX81sqpWaAMRB80zI.jpg?originalFilename=mosaic-xp.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},TBzYVDfIy:{title:\"Link\",type:ControlType.Link}});addFonts(Framery6Tt0YdXv,[{explicitInter:true,fonts:[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framery6Tt0YdXv\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gvAVEcMYV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"767\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"300\",\"framerVariables\":\"{\\\"DypuAmJ3z\\\":\\\"title1\\\",\\\"hHKzIfBez\\\":\\\"title2\\\",\\\"U2SSlntvM\\\":\\\"image\\\",\\\"TBzYVDfIy\\\":\\\"link\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (68888f7)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;PF Bague Sans Pro Light\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"PF Bague Sans Pro Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/0YeFwmY6spZGntahRobpkDyn3n8.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/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{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/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{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/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{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/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{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/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/05KsVHGDmqXSBXM4yRZ65P8i0s.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ky8ovPukK4dJ1Pxq74qGhOqCYI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/vvNSqIj42qeQ2bvCRBIWKHscrc.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/3ZmXbBKToJifDV9gwcifVd1tEY.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/FNfhX3dt4ChuLJq2PwdlxHO7PU.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/g0c8vEViiXNlKAgI4Ymmk3Ig.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/efTfQcBJ53kM2pB1hezSZ3RDUFs.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-6SQVd .framer-styles-preset-84eolo:not(.rich-text-wrapper), .framer-6SQVd .framer-styles-preset-84eolo.rich-text-wrapper h1 { --framer-font-family: \"PF Bague Sans Pro Light\", \"PF Bague Sans Pro Light Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 34px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 0.9em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-106df45a-09e1-48ee-987a-0e3a2f87a2a8, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }'];export const className=\"framer-6SQVd\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6f76210)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={CNBZg976Q:new LazyValue(()=>import(\"./augiA20Il-0.js\")),VK4N6WKzf:new LazyValue(()=>import(\"./augiA20Il-1.js\")),ZK3Zwgecc:new LazyValue(()=>import(\"./augiA20Il-2.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6f76210)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import HeaderBanner from\"#framer/local/canvasComponent/jdVYwDm7E/jdVYwDm7E.js\";import ContentSlice from\"#framer/local/canvasComponent/QpsMIROmJ/QpsMIROmJ.js\";import JagexHeader from\"#framer/local/canvasComponent/tjwOExdmQ/tjwOExdmQ.js\";import DiscoverImage from\"#framer/local/canvasComponent/y6Tt0YdXv/y6Tt0YdXv.js\";import JagexFooter from\"#framer/local/canvasComponent/y6XZtQUlk/y6XZtQUlk.js\";import*as sharedStyle1 from\"#framer/local/css/F2vkyjUuX/F2vkyjUuX.js\";import*as sharedStyle2 from\"#framer/local/css/FMQNfbSV1/FMQNfbSV1.js\";import*as sharedStyle3 from\"#framer/local/css/mYllxCm_y/mYllxCm_y.js\";import*as sharedStyle from\"#framer/local/css/tStpDOmml/tStpDOmml.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const JagexHeaderFonts=getFonts(JagexHeader);const HeaderBannerFonts=getFonts(HeaderBanner);const ContentSliceFonts=getFonts(ContentSlice);const DiscoverImageFonts=getFonts(DiscoverImage);const EmbedFonts=getFonts(Embed);const JagexFooterFonts=getFonts(JagexFooter);const breakpoints={cYK500znL:\"(max-width: 575px)\",iDPkdj49L:\"(min-width: 768px) and (max-width: 991px)\",KDQtXFGoV:\"(min-width: 1400px)\",n6MA1qZYn:\"(min-width: 576px) and (max-width: 767px)\",WQLkyLRf1:\"(min-width: 992px) and (max-width: 1199px)\",WYsinTLfs:\"(min-width: 1200px) and (max-width: 1399px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-BXgdO\";const variantClassNames={cYK500znL:\"framer-v-1m29tvd\",iDPkdj49L:\"framer-v-mpoxht\",KDQtXFGoV:\"framer-v-w6kjju\",n6MA1qZYn:\"framer-v-xmhwny\",WQLkyLRf1:\"framer-v-72rtr7\",WYsinTLfs:\"framer-v-nf2c7x\"};const negate=value=>{return!value;};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const metadata=metadataProvider();const humanReadableVariantMap={\"Extra Small\":\"cYK500znL\",Large:\"WQLkyLRf1\",Medium:\"iDPkdj49L\",Small:\"n6MA1qZYn\",XL:\"WYsinTLfs\",XXL:\"KDQtXFGoV\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,WEWpQXbQypLgEL05gl,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-BXgdO`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-BXgdO`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const ref2=React.useRef(null);usePreloadLocalizedValues(activeLocale);const visible=negate(WEWpQXbQypLgEL05gl);const isDisplayed=value=>{if(!isBrowser())return true;if([\"n6MA1qZYn\",\"iDPkdj49L\"].includes(baseVariant))return true;return value;};const elementId=useRouteElementId(\"csfEJrpMX\");const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];useCustomCursors({});var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8;return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nm7iu4-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cYK500znL:{variant:\"x1kVVzLUZ\"},iDPkdj49L:{variant:\"dyJrzl2y2\"},n6MA1qZYn:{variant:\"x1kVVzLUZ\"}},children:/*#__PURE__*/_jsx(JagexHeader,{height:\"100%\",id:\"bu8S69o14\",layoutId:\"bu8S69o14\",LPOI2YCMa:ref2,style:{width:\"100%\"},variant:\"kWU9W_wQy\",VGL5N468Y:\"s16Asw9Cy\",width:\"100%\",YBhAZTjlE:\"var(--token-94a262aa-4a2c-46bc-9066-b5a0d0327d18, rgb(211, 216, 0))\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cYK500znL:{height:336,y:64},n6MA1qZYn:{height:336,y:64}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a4oa3f-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cYK500znL:{variant:\"oau8iXth1\"},n6MA1qZYn:{variant:\"oau8iXth1\"}},children:/*#__PURE__*/_jsx(HeaderBanner,{EfrJ9Hc50:\"var(--token-94a262aa-4a2c-46bc-9066-b5a0d0327d18, rgb(211, 216, 0))\",FTbrI26L3:true,height:\"100%\",id:\"c6bIIT1NW\",layoutId:\"c6bIIT1NW\",O1UA_aKTz:\"Pu9cdxfo1\",p1fljVUfq:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"JAGEX\",QOrmsv5eh:true,QSgY5rGh3:false,style:{height:\"100%\",width:\"100%\"},U1nm2a9HT:\"var(--token-94a262aa-4a2c-46bc-9066-b5a0d0327d18, rgb(211, 216, 0))\",variant:\"VVRViDy5S\",width:\"100%\",yBdeS8PVd:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"Discover RuneScape\"})})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-12cvgn1\",\"data-framer-name\":\"Content\",name:\"Content\",children:[isDisplayed(visible)&&/*#__PURE__*/_jsx(\"div\",{className:cx(\"framer-1myfvp3\",!visible&&\"hidden-72rtr7\"),\"data-framer-name\":\"Content Frame\",id:elementId,name:\"Content Frame\",ref:ref2}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{jWb4CPEzI:\"careers\"},unresolvedPathSlugs:{jWb4CPEzI:{collectionId:\"DL4cWADkV\",collectionItemId:\"YV5qrEtZn\"}},webPageId:\"pLgEL05gl\"},implicitPathVariables:undefined},{href:{pathVariables:{jWb4CPEzI:\"careers\"},unresolvedPathSlugs:{jWb4CPEzI:{collectionId:\"DL4cWADkV\",collectionItemId:\"YV5qrEtZn\"}},webPageId:\"pLgEL05gl\"},implicitPathVariables:undefined},{href:{pathVariables:{jWb4CPEzI:\"careers\"},unresolvedPathSlugs:{jWb4CPEzI:{collectionId:\"DL4cWADkV\",collectionItemId:\"YV5qrEtZn\"}},webPageId:\"pLgEL05gl\"},implicitPathVariables:undefined},{href:{pathVariables:{jWb4CPEzI:\"careers\"},unresolvedPathSlugs:{jWb4CPEzI:{collectionId:\"DL4cWADkV\",collectionItemId:\"YV5qrEtZn\"}},webPageId:\"pLgEL05gl\"},implicitPathVariables:undefined},{href:{pathVariables:{jWb4CPEzI:\"careers\"},unresolvedPathSlugs:{jWb4CPEzI:{collectionId:\"DL4cWADkV\",collectionItemId:\"YV5qrEtZn\"}},webPageId:\"pLgEL05gl\"},implicitPathVariables:undefined},{href:{pathVariables:{jWb4CPEzI:\"careers\"},unresolvedPathSlugs:{jWb4CPEzI:{collectionId:\"DL4cWADkV\",collectionItemId:\"YV5qrEtZn\"}},webPageId:\"pLgEL05gl\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/{var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3;return _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cYK500znL:{y:400},n6MA1qZYn:{y:400}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:4,width:\"100vw\",y:600,children:/*#__PURE__*/_jsx(Container,{className:\"framer-d4z97q-container\",\"data-framer-name\":\"Join The Team\",name:\"Join The Team\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cYK500znL:{ce4s82ZbD:resolvedLinks[1],variant:\"xP5o3LM6B\"},iDPkdj49L:{ce4s82ZbD:resolvedLinks[3],variant:\"RvqsTEFN9\"},KDQtXFGoV:{ce4s82ZbD:resolvedLinks[5]},n6MA1qZYn:{ce4s82ZbD:resolvedLinks[2],variant:\"xP5o3LM6B\"},WYsinTLfs:{ce4s82ZbD:resolvedLinks[4]}},children:/*#__PURE__*/_jsx(ContentSlice,{ce4s82ZbD:resolvedLinks[0],Dsyo73g4t:addImageAlt({positionX:\"66.6%\",positionY:\"53.5%\",src:\"https://framerusercontent.com/images/bUVuvlDNE2HKpjlGBOaFHLIVX0.jpg\",srcSet:\"https://framerusercontent.com/images/bUVuvlDNE2HKpjlGBOaFHLIVX0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bUVuvlDNE2HKpjlGBOaFHLIVX0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bUVuvlDNE2HKpjlGBOaFHLIVX0.jpg 1600w\"},\"\"),height:\"100%\",id:\"K62Kwt748\",iVuJKEGtd:false,JVnZXKq4C:\"var(--token-94a262aa-4a2c-46bc-9066-b5a0d0327d18, rgb(211, 216, 0))\",KV3m2R078:(_getLocalizedValue=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"We're hiring!  \"}),/*#__PURE__*/_jsx(\"p\",{children:\"Our teams are the landscapers of fantastic realms, the creators of quests, the writers of history, the makers of legend \u2013 and that\u2019s just their day job. We\u2019re looking for exceptional new talent to join us.\"})]}),layoutId:\"K62Kwt748\",name:\"Join The Team\",S9UkERCpT:(_getLocalizedValue1=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"The Team\",style:{width:\"100%\"},td30nE4eF:(_getLocalizedValue2=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:\"Discover Careers\",UV1nRKWdX:(_getLocalizedValue3=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:\"Join\",variant:\"RLmGtHA76\",width:\"100%\"})})})})});}}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{jWb4CPEzI:\"forever-games\"},unresolvedPathSlugs:{jWb4CPEzI:{collectionId:\"DL4cWADkV\",collectionItemId:\"IT1UKzOyl\"}},webPageId:\"pLgEL05gl\"},implicitPathVariables:undefined},{href:{pathVariables:{jWb4CPEzI:\"forever-games\"},unresolvedPathSlugs:{jWb4CPEzI:{collectionId:\"DL4cWADkV\",collectionItemId:\"IT1UKzOyl\"}},webPageId:\"pLgEL05gl\"},implicitPathVariables:undefined},{href:{pathVariables:{jWb4CPEzI:\"forever-games\"},unresolvedPathSlugs:{jWb4CPEzI:{collectionId:\"DL4cWADkV\",collectionItemId:\"IT1UKzOyl\"}},webPageId:\"pLgEL05gl\"},implicitPathVariables:undefined},{href:{pathVariables:{jWb4CPEzI:\"forever-games\"},unresolvedPathSlugs:{jWb4CPEzI:{collectionId:\"DL4cWADkV\",collectionItemId:\"IT1UKzOyl\"}},webPageId:\"pLgEL05gl\"},implicitPathVariables:undefined},{href:{pathVariables:{jWb4CPEzI:\"forever-games\"},unresolvedPathSlugs:{jWb4CPEzI:{collectionId:\"DL4cWADkV\",collectionItemId:\"IT1UKzOyl\"}},webPageId:\"pLgEL05gl\"},implicitPathVariables:undefined},{href:{pathVariables:{jWb4CPEzI:\"forever-games\"},unresolvedPathSlugs:{jWb4CPEzI:{collectionId:\"DL4cWADkV\",collectionItemId:\"IT1UKzOyl\"}},webPageId:\"pLgEL05gl\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/{var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3;return _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cYK500znL:{y:404},n6MA1qZYn:{y:404}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:4,width:\"100vw\",y:604,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pdmro7-container\",\"data-framer-name\":\"Experience Our Games\",name:\"Experience Our Games\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cYK500znL:{ce4s82ZbD:resolvedLinks1[1],variant:\"xP5o3LM6B\"},iDPkdj49L:{ce4s82ZbD:resolvedLinks1[3],variant:\"RvqsTEFN9\"},KDQtXFGoV:{ce4s82ZbD:resolvedLinks1[5]},n6MA1qZYn:{ce4s82ZbD:resolvedLinks1[2],variant:\"xP5o3LM6B\"},WYsinTLfs:{ce4s82ZbD:resolvedLinks1[4]}},children:/*#__PURE__*/_jsx(ContentSlice,{ce4s82ZbD:resolvedLinks1[0],Dsyo73g4t:addImageAlt({positionX:\"71.7%\",positionY:\"40.6%\",src:\"https://framerusercontent.com/images/WUgnaiHuT9mdov1UNtjzELlaHg.jpg\",srcSet:\"https://framerusercontent.com/images/WUgnaiHuT9mdov1UNtjzELlaHg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WUgnaiHuT9mdov1UNtjzELlaHg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WUgnaiHuT9mdov1UNtjzELlaHg.jpg 1283w\"},\"\"),height:\"100%\",id:\"LqBOMIPqv\",iVuJKEGtd:false,JVnZXKq4C:\"var(--token-94a262aa-4a2c-46bc-9066-b5a0d0327d18, rgb(211, 216, 0))\",KV3m2R078:(_getLocalizedValue=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Our teams are the landscapers of fantastic realms, the creators of quests, the writers of history, the makers of legend \u2013 and that\u2019s just their day job. We\u2019re looking for exceptional new talent to join us.\"})}),layoutId:\"LqBOMIPqv\",name:\"Experience Our Games\",S9UkERCpT:(_getLocalizedValue1=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"Our Games\",style:{width:\"100%\"},td30nE4eF:(_getLocalizedValue2=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:\"Discover Games\",UV1nRKWdX:(_getLocalizedValue3=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:\"Experience\",variant:\"h3ozzrR74\",width:\"100%\"})})})})});}}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17y1xa2\",\"data-framer-name\":\"Border\",name:\"Border\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16h29ib\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1441ezs\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-152ne3m\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cYK500znL:{children:(_getLocalizedValue2=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1kl7sdh\",\"data-styles-preset\":\"F2vkyjUuX\",children:\"Discover\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue3=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-84eolo\",\"data-styles-preset\":\"tStpDOmml\",children:\"Discover\"})}),className:\"framer-9k8i60\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cYK500znL:{children:(_getLocalizedValue4=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1y08tao\",\"data-styles-preset\":\"mYllxCm_y\",children:\"Jagex\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue5=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-h5wcp2\",\"data-styles-preset\":\"FMQNfbSV1\",children:\"Jagex\"})}),className:\"framer-bvo8gd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zmlynw\",\"data-framer-name\":\"Image Mosaic\",name:\"Image Mosaic\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{jWb4CPEzI:\"forever-games\"},unresolvedPathSlugs:{jWb4CPEzI:{collectionId:\"DL4cWADkV\",collectionItemId:\"IT1UKzOyl\"}},webPageId:\"pLgEL05gl\"},implicitPathVariables:undefined},{href:{pathVariables:{jWb4CPEzI:\"forever-games\"},unresolvedPathSlugs:{jWb4CPEzI:{collectionId:\"DL4cWADkV\",collectionItemId:\"IT1UKzOyl\"}},webPageId:\"pLgEL05gl\"},implicitPathVariables:undefined},{href:{pathVariables:{jWb4CPEzI:\"forever-games\"},unresolvedPathSlugs:{jWb4CPEzI:{collectionId:\"DL4cWADkV\",collectionItemId:\"IT1UKzOyl\"}},webPageId:\"pLgEL05gl\"},implicitPathVariables:undefined},{href:{pathVariables:{jWb4CPEzI:\"forever-games\"},unresolvedPathSlugs:{jWb4CPEzI:{collectionId:\"DL4cWADkV\",collectionItemId:\"IT1UKzOyl\"}},webPageId:\"pLgEL05gl\"},implicitPathVariables:undefined},{href:{pathVariables:{jWb4CPEzI:\"forever-games\"},unresolvedPathSlugs:{jWb4CPEzI:{collectionId:\"DL4cWADkV\",collectionItemId:\"IT1UKzOyl\"}},webPageId:\"pLgEL05gl\"},implicitPathVariables:undefined},{href:{pathVariables:{jWb4CPEzI:\"forever-games\"},unresolvedPathSlugs:{jWb4CPEzI:{collectionId:\"DL4cWADkV\",collectionItemId:\"IT1UKzOyl\"}},webPageId:\"pLgEL05gl\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/{var _getLocalizedValue,_getLocalizedValue1;return _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cYK500znL:{width:\"min(min(100vw, 1200px) * 0.9992, 1200px)\",y:558.6},iDPkdj49L:{width:\"min(min(100vw, 1200px) * 0.9992, 1200px)\",y:756.6},n6MA1qZYn:{width:\"min(min(100vw, 1200px) * 0.9992, 1200px)\",y:558.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,width:\"max((min(min(100vw, 1200px) * 0.9992, 1200px) - 20px) * 0.65, 1px)\",y:758.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-giy037-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cYK500znL:{TBzYVDfIy:resolvedLinks2[1]},iDPkdj49L:{TBzYVDfIy:resolvedLinks2[3]},KDQtXFGoV:{TBzYVDfIy:resolvedLinks2[5]},n6MA1qZYn:{TBzYVDfIy:resolvedLinks2[2]},WYsinTLfs:{TBzYVDfIy:resolvedLinks2[4]}},children:/*#__PURE__*/_jsx(DiscoverImage,{DypuAmJ3z:(_getLocalizedValue=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Games Driven By\",height:\"100%\",hHKzIfBez:(_getLocalizedValue1=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"Communites\",id:\"g_R1HnPAl\",layoutId:\"g_R1HnPAl\",style:{height:\"100%\",width:\"100%\"},TBzYVDfIy:resolvedLinks2[0],width:\"100%\"})})})})});}}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"nh1uDhz9F\"},implicitPathVariables:undefined},{href:{webPageId:\"nh1uDhz9F\"},implicitPathVariables:undefined},{href:{webPageId:\"nh1uDhz9F\"},implicitPathVariables:undefined},{href:{webPageId:\"nh1uDhz9F\"},implicitPathVariables:undefined},{href:{webPageId:\"nh1uDhz9F\"},implicitPathVariables:undefined},{href:{webPageId:\"nh1uDhz9F\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/{var _getLocalizedValue,_getLocalizedValue1;return _jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cYK500znL:{width:\"min(min(100vw, 1200px) * 0.9992, 1200px)\",y:878.6},iDPkdj49L:{width:\"min(min(100vw, 1200px) * 0.9992, 1200px)\",y:1076.6},n6MA1qZYn:{width:\"min(min(100vw, 1200px) * 0.9992, 1200px)\",y:878.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,width:\"max((min(min(100vw, 1200px) * 0.9992, 1200px) - 20px) * 0.35, 1px)\",y:758.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y5lxzl-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cYK500znL:{TBzYVDfIy:resolvedLinks3[1]},iDPkdj49L:{TBzYVDfIy:resolvedLinks3[3]},KDQtXFGoV:{TBzYVDfIy:resolvedLinks3[5]},n6MA1qZYn:{TBzYVDfIy:resolvedLinks3[2]},WYsinTLfs:{TBzYVDfIy:resolvedLinks3[4]}},children:/*#__PURE__*/_jsx(DiscoverImage,{DypuAmJ3z:(_getLocalizedValue=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Jagex\",height:\"100%\",hHKzIfBez:(_getLocalizedValue1=getLocalizedValue(\"v17\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"News\",id:\"Nsty1jWcr\",layoutId:\"Nsty1jWcr\",style:{height:\"100%\",width:\"100%\"},TBzYVDfIy:resolvedLinks3[0],U2SSlntvM:addImageAlt({src:\"https://framerusercontent.com/images/XbbZlVt2fGLE7nt4vtzAQp1Ok.jpg\"},\"\"),width:\"100%\"})})})})});}})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-svhgad\",\"data-framer-name\":\"Video Mosaic\",name:\"Video Mosaic\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dn9nf3-container\",\"data-framer-name\":\"Runescape\",name:\"Runescape\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"GrotpOY7h\",layoutId:\"GrotpOY7h\",name:\"Runescape\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:(_getLocalizedValue6=getLocalizedValue(\"v18\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:\"https://www.youtube-nocookie.com/embed/HpGFbcxzJ-k\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bbxpuj-container\",\"data-framer-name\":\"Old School\",name:\"Old School\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iDPkdj49L:{url:(_getLocalizedValue7=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:\"https://youtu.be/Iccm5JzpdWY?si=OHmlfNFl7dStiDFt\"}},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"j4CayYe2d\",layoutId:\"j4CayYe2d\",name:\"Old School\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:(_getLocalizedValue8=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:\"https://www.youtube-nocookie.com/embed/Iccm5JzpdWY\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cYK500znL:{y:2038.6},iDPkdj49L:{y:2236.6},n6MA1qZYn:{y:2038.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:441,width:\"100vw\",y:1498.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vs4ymy-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cYK500znL:{variant:\"OJP2UjPdu\"},iDPkdj49L:{variant:\"OJP2UjPdu\"},n6MA1qZYn:{variant:\"OJP2UjPdu\"}},children:/*#__PURE__*/_jsx(JagexFooter,{ciZwYaw1u:\"var(--token-94a262aa-4a2c-46bc-9066-b5a0d0327d18, rgb(211, 216, 0))\",height:\"100%\",id:\"fEP8rPVKt\",layoutId:\"fEP8rPVKt\",mMGSorqqW:\"rJFzwFXVj\",style:{width:\"100%\"},variant:\"I_qO1_MPt\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-BXgdO { background: rgb(0, 0, 0); }`,\".framer-BXgdO.framer-lux5qc, .framer-BXgdO .framer-lux5qc { display: block; }\",\".framer-BXgdO.framer-72rtr7 { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: auto; padding: 0px; position: relative; width: 992px; }\",\".framer-BXgdO .framer-nm7iu4-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 5; }\",\".framer-BXgdO .framer-1a4oa3f-container { flex: none; height: 600px; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: 0px; width: 100%; z-index: 1; }\",\".framer-BXgdO .framer-12cvgn1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-BXgdO .framer-1myfvp3 { flex: none; height: 600px; overflow: hidden; pointer-events: none; position: relative; width: 100%; z-index: 1; }\",\".framer-BXgdO .framer-d4z97q-container, .framer-BXgdO .framer-pdmro7-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-BXgdO .framer-17y1xa2 { background-color: var(--token-94a262aa-4a2c-46bc-9066-b5a0d0327d18, #d3d800); flex: none; height: 4px; overflow: hidden; position: relative; width: 100%; }\",\".framer-BXgdO .framer-16h29ib { align-content: center; align-items: center; background-color: var(--token-d9478a4b-8a3e-4219-8428-3042eb3796d9, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BXgdO .framer-1441ezs { align-content: center; align-items: center; background-color: var(--token-d9478a4b-8a3e-4219-8428-3042eb3796d9, #000000); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BXgdO .framer-152ne3m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-BXgdO .framer-9k8i60, .framer-BXgdO .framer-bvo8gd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BXgdO .framer-zmlynw, .framer-BXgdO .framer-svhgad { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-BXgdO .framer-giy037-container { flex: 1.3 0 0px; height: 300px; position: relative; width: 1px; }\",\".framer-BXgdO .framer-1y5lxzl-container { flex: 0.7 0 0px; height: 300px; position: relative; width: 1px; }\",\".framer-BXgdO .framer-1dn9nf3-container, .framer-BXgdO .framer-1bbxpuj-container { flex: 1 0 0px; height: 400px; position: relative; width: 1px; }\",\".framer-BXgdO .framer-vs4ymy-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BXgdO.framer-72rtr7, .framer-BXgdO .framer-12cvgn1, .framer-BXgdO .framer-16h29ib, .framer-BXgdO .framer-1441ezs, .framer-BXgdO .framer-152ne3m, .framer-BXgdO .framer-zmlynw, .framer-BXgdO .framer-svhgad { gap: 0px; } .framer-BXgdO.framer-72rtr7 > *, .framer-BXgdO .framer-12cvgn1 > *, .framer-BXgdO .framer-1441ezs > *, .framer-BXgdO .framer-152ne3m > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BXgdO.framer-72rtr7 > :first-child, .framer-BXgdO .framer-12cvgn1 > :first-child, .framer-BXgdO .framer-16h29ib > :first-child, .framer-BXgdO .framer-1441ezs > :first-child, .framer-BXgdO .framer-152ne3m > :first-child { margin-top: 0px; } .framer-BXgdO.framer-72rtr7 > :last-child, .framer-BXgdO .framer-12cvgn1 > :last-child, .framer-BXgdO .framer-16h29ib > :last-child, .framer-BXgdO .framer-1441ezs > :last-child, .framer-BXgdO .framer-152ne3m > :last-child { margin-bottom: 0px; } .framer-BXgdO .framer-16h29ib > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BXgdO .framer-zmlynw > *, .framer-BXgdO .framer-svhgad > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-BXgdO .framer-zmlynw > :first-child, .framer-BXgdO .framer-svhgad > :first-child { margin-left: 0px; } .framer-BXgdO .framer-zmlynw > :last-child, .framer-BXgdO .framer-svhgad > :last-child { margin-right: 0px; } }\",`@media (max-width: 575px) { .${metadata.bodyClassName}-framer-BXgdO { background: rgb(0, 0, 0); } .framer-BXgdO.framer-72rtr7 { width: 390px; } .framer-BXgdO .framer-1a4oa3f-container { height: 336px; top: 64px; } .framer-BXgdO .framer-1myfvp3 { height: 400px; } .framer-BXgdO .framer-zmlynw, .framer-BXgdO .framer-svhgad { flex-direction: column; } .framer-BXgdO .framer-giy037-container, .framer-BXgdO .framer-1y5lxzl-container, .framer-BXgdO .framer-1dn9nf3-container, .framer-BXgdO .framer-1bbxpuj-container { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BXgdO .framer-zmlynw, .framer-BXgdO .framer-svhgad { gap: 0px; } .framer-BXgdO .framer-zmlynw > *, .framer-BXgdO .framer-svhgad > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-BXgdO .framer-zmlynw > :first-child, .framer-BXgdO .framer-svhgad > :first-child { margin-top: 0px; } .framer-BXgdO .framer-zmlynw > :last-child, .framer-BXgdO .framer-svhgad > :last-child { margin-bottom: 0px; } }}`,`@media (min-width: 576px) and (max-width: 767px) { .${metadata.bodyClassName}-framer-BXgdO { background: rgb(0, 0, 0); } .framer-BXgdO.framer-72rtr7 { width: 576px; } .framer-BXgdO .framer-1a4oa3f-container { height: 336px; top: 64px; } .framer-BXgdO .framer-1myfvp3 { height: 400px; } .framer-BXgdO .framer-zmlynw, .framer-BXgdO .framer-svhgad { flex-direction: column; } .framer-BXgdO .framer-giy037-container, .framer-BXgdO .framer-1y5lxzl-container, .framer-BXgdO .framer-1dn9nf3-container, .framer-BXgdO .framer-1bbxpuj-container { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BXgdO .framer-zmlynw, .framer-BXgdO .framer-svhgad { gap: 0px; } .framer-BXgdO .framer-zmlynw > *, .framer-BXgdO .framer-svhgad > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-BXgdO .framer-zmlynw > :first-child, .framer-BXgdO .framer-svhgad > :first-child { margin-top: 0px; } .framer-BXgdO .framer-zmlynw > :last-child, .framer-BXgdO .framer-svhgad > :last-child { margin-bottom: 0px; } }}`,`@media (min-width: 768px) and (max-width: 991px) { .${metadata.bodyClassName}-framer-BXgdO { background: rgb(0, 0, 0); } .framer-BXgdO.framer-72rtr7 { width: 768px; } .framer-BXgdO .framer-17y1xa2 { height: 2px; } .framer-BXgdO .framer-zmlynw, .framer-BXgdO .framer-svhgad { flex-direction: column; } .framer-BXgdO .framer-giy037-container, .framer-BXgdO .framer-1y5lxzl-container, .framer-BXgdO .framer-1dn9nf3-container, .framer-BXgdO .framer-1bbxpuj-container { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BXgdO .framer-zmlynw, .framer-BXgdO .framer-svhgad { gap: 0px; } .framer-BXgdO .framer-zmlynw > *, .framer-BXgdO .framer-svhgad > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-BXgdO .framer-zmlynw > :first-child, .framer-BXgdO .framer-svhgad > :first-child { margin-top: 0px; } .framer-BXgdO .framer-zmlynw > :last-child, .framer-BXgdO .framer-svhgad > :last-child { margin-bottom: 0px; } }}`,`@media (min-width: 1200px) and (max-width: 1399px) { .${metadata.bodyClassName}-framer-BXgdO { background: rgb(0, 0, 0); } .framer-BXgdO.framer-72rtr7 { width: 1200px; }}`,`@media (min-width: 1400px) { .${metadata.bodyClassName}-framer-BXgdO { background: rgb(0, 0, 0); } .framer-BXgdO.framer-72rtr7 { width: 1400px; }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3115\n * @framerIntrinsicWidth 992\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cYK500znL\":{\"layout\":[\"fixed\",\"auto\"]},\"n6MA1qZYn\":{\"layout\":[\"fixed\",\"auto\"]},\"iDPkdj49L\":{\"layout\":[\"fixed\",\"auto\"]},\"WYsinTLfs\":{\"layout\":[\"fixed\",\"auto\"]},\"KDQtXFGoV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-BXgdO\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:3115,width:992};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{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\"}]},...JagexHeaderFonts,...HeaderBannerFonts,...ContentSliceFonts,...DiscoverImageFonts,...EmbedFonts,...JagexFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"3115\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"992\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cYK500znL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"n6MA1qZYn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iDPkdj49L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WYsinTLfs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KDQtXFGoV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "mzBAQkB,SAARA,EAAuB,CAAC,KAAAC,EAAK,IAAAC,EAAI,KAAAC,EAAK,MAAAC,EAAM,CAAC,CAAC,EAAE,CAAC,OAAGH,IAAO,OAAOC,EAAyBG,EAAKC,GAAS,CAAC,IAAIJ,EAAI,MAAME,CAAK,CAAC,EAAMH,IAAO,QAAQE,EAA0BE,EAAKE,GAAU,CAAC,KAAKJ,EAAK,MAAMC,CAAK,CAAC,EAAuBC,EAAKG,GAAa,CAAC,MAAMJ,CAAK,CAAC,CAAE,CAACK,GAAoBT,EAAM,CAAC,KAAK,CAAC,KAAKU,EAAY,KAAK,aAAa,MAAM,wBAAwB,GAAK,QAAQ,CAAC,MAAM,MAAM,EAAE,aAAa,CAAC,MAAM,MAAM,CAAC,EAAE,IAAI,CAAC,MAAM,MAAM,KAAKA,EAAY,OAAO,YAAY,8CAAyC,OAAOC,EAAM,CAAC,OAAOA,EAAM,OAAO,KAAM,CAAC,EAAE,KAAK,CAAC,MAAM,OAAO,KAAKD,EAAY,OAAO,gBAAgB,GAAK,OAAOC,EAAM,CAAC,OAAOA,EAAM,OAAO,MAAO,CAAC,CAAC,CAAC,EAAE,SAASH,GAAa,CAAC,MAAAJ,CAAK,EAAE,CAAC,OAAoBC,EAAK,MAAM,CAAC,MAAM,CAAC,UAAUO,GAAaR,CAAK,EAAE,GAAGS,GAAgB,SAAS,SAAS,GAAGT,CAAK,EAAE,SAAsBC,EAAK,MAAM,CAAC,MAAMS,GAAgB,SAAS,kEAAkE,CAAC,CAAC,CAAC,CAAE,CAAC,SAASR,GAAS,CAAC,IAAAJ,EAAI,MAAAE,CAAK,EAAE,CAAC,IAAMW,EAAc,CAACX,EAAM,OAC1/B,cAAc,KAAKF,CAAG,IAAGA,EAAI,WAAWA,GAAK,IAAMc,EAASC,GAAc,EAEzE,CAACC,EAAMC,CAAQ,EAAEC,GAASJ,EAAS,OAAU,EAAK,EAG0c,GAHxcK,EAAU,IAAI,CAEvE,GAAG,CAACL,EAAS,OACb,IAAIM,EAAa,GAAKH,EAAS,MAAS,EAAE,eAAeI,GAAM,CAAC,IAAMC,EAAS,MAAM,MAAM,yDAAyD,mBAAmBtB,CAAG,CAAC,EAAE,GAAGsB,EAAS,QAAQ,IAAI,CAAC,GAAK,CAAC,UAAAC,CAAS,EAAE,MAAMD,EAAS,KAAK,EAAKF,GAAcH,EAASM,CAAS,MAAQ,CAAC,IAAMC,EAAQ,MAAMF,EAAS,KAAK,EAAE,QAAQ,MAAME,CAAO,EAAE,IAAMC,EAAM,IAAI,MAAM,kCAA6B,EAAER,EAASQ,CAAK,EAAG,CAAC,OAAAJ,EAAK,EAAE,MAAMI,GAAO,CAAC,QAAQ,MAAMA,CAAK,EAAER,EAASQ,CAAK,CAAE,CAAC,EAAQ,IAAI,CAACL,EAAa,EAAM,CAAE,EAAE,CAACpB,CAAG,CAAC,EAAKc,GAAUD,EAAe,OAAoBV,EAAKuB,GAAa,CAAC,QAAQ,yCAAyC,MAAMxB,CAAK,CAAC,EAAG,GAAG,CAACF,EAAI,WAAW,UAAU,EAAG,OAAoBG,EAAKuB,GAAa,CAAC,QAAQ,wBAAwB,MAAMxB,CAAK,CAAC,EAAG,GAAGc,IAAQ,OAAW,OAAoBb,EAAKwB,GAAiB,CAAC,CAAC,EAAG,GAAGX,aAAiB,MAAO,OAAoBb,EAAKuB,GAAa,CAAC,QAAQV,EAAM,QAAQ,MAAMd,CAAK,CAAC,EAAG,GAAGc,IAAQ,GAAK,CAAC,IAAMQ,EAAQ,oBAAexB,wCAA0C,OAAoBG,EAAKuB,GAAa,CAAC,QAAQF,EAAQ,MAAMtB,CAAK,CAAC,EAAG,OAAoBC,EAAK,SAAS,CAAC,IAAIH,EAAI,MAAM,CAAC,GAAG4B,GAAY,GAAG1B,CAAK,EAAE,QAAQ,OACvpC,cAAcY,EAAS,MAAM,OAAO,eAAe,cAAc,QAAQe,GAAWf,CAAQ,CAAC,CAAC,CAAE,CAAC,IAAMc,GAAY,CAAC,MAAM,OAAO,OAAO,OAAO,OAAO,MAAM,EAAE,SAASC,GAAWf,EAAS,CAAC,IAAMgB,EAAO,CAAC,oBAAoB,eAAe,EAAE,OAAIhB,GAAUgB,EAAO,KAAK,kBAAkB,cAAc,eAAe,yBAAyB,qBAAqB,eAAe,iCAAiC,qBAAqB,0CAA0C,yCAAyC,EAAUA,EAAO,KAAK,GAAG,CAAE,CAAC,SAASzB,GAAU,CAAC,KAAAJ,EAAK,GAAGQ,CAAK,EAAE,CAA4C,GAA3BR,EAAK,SAAS,YAAW,EAAe,CAAC,IAAM8B,EAAgB9B,EAAK,SAAS,kBAAkB,EAAQ+B,EAAW/B,EAAK,SAAS,8BAA8B,EAAE,OAAG8B,GAAiBC,EAAgC7B,EAAK8B,GAAqB,CAAC,KAAKhC,EAAK,GAAGQ,CAAK,CAAC,EAAuBN,EAAK+B,GAAsB,CAAC,KAAKjC,EAAK,GAAGQ,CAAK,CAAC,EAAG,OAAoBN,EAAKgC,GAAwB,CAAC,KAAKlC,EAAK,GAAGQ,CAAK,CAAC,CAAE,CAAC,SAASyB,GAAsB,CAAC,KAAAjC,EAAK,MAAAC,CAAK,EAAE,CAAC,IAAMkC,EAAIC,EAAO,EAAO,CAACC,EAAaC,CAAe,EAAErB,GAAS,CAAC,EAC/kCC,EAAU,IAAI,CAAC,IAAIqB,EAAa,IAAMC,GAAcD,EAAaJ,EAAI,WAAW,MAAMI,IAAe,OAAO,OAAOA,EAAa,cAAc,SAASE,EAAcC,EAAM,CAAC,GAAGA,EAAM,SAASF,EAAa,OAAO,IAAMG,EAAKD,EAAM,KAAK,GAAG,OAAOC,GAAO,UAAUA,IAAO,KAAK,OAAO,IAAMC,EAAOD,EAAK,YAAe,OAAOC,GAAS,UAAgBN,EAAgBM,CAAM,CAAE,CAAC,OAAAC,EAAO,iBAAiB,UAAUJ,CAAa,EAE7WD,GAAa,YAAY,iBAAiB,GAAG,EAAQ,IAAI,CAACK,EAAO,oBAAoB,UAAUJ,CAAa,CAAE,CAAE,EAAE,CAAC,CAAC,EAGtK,IAAMK,EAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,UAqCH9C;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EA6BF+C,EAAa,CAAC,GAAGpB,GAAY,GAAG1B,CAAK,EAAoC,MAAd,CAACA,EAAM,SAAyB8C,EAAa,OAAOV,EAAa,MAA0BnC,EAAK,SAAS,CAAC,IAAIiC,EAAI,MAAMY,EAAa,OAAOD,CAAM,CAAC,CAAE,CAAC,SAASd,GAAqB,CAAC,KAAAhC,EAAK,MAAAC,CAAK,EAAE,CAAC,IAAMkC,EAAIC,EAAO,EAAE,OAAAlB,EAAU,IAAI,CAAC,IAAM8B,EAAIb,EAAI,QAAQ,GAAIa,EAAW,OAAAA,EAAI,UAAUhD,EAAKiD,GAAeD,CAAG,EAAQ,IAAI,CAACA,EAAI,UAAU,EAAG,CAAE,EAAE,CAAChD,CAAI,CAAC,EAAsBE,EAAK,MAAM,CAAC,IAAIiC,EAAI,MAAM,CAAC,GAAGe,GAAU,GAAGjD,CAAK,CAAC,CAAC,CAAE,CAAC,SAASiC,GAAwB,CAAC,KAAAlC,EAAK,MAAAC,CAAK,EAAE,CAAC,OAAoBC,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGgD,GAAU,GAAGjD,CAAK,EAAE,wBAAwB,CAAC,OAAOD,CAAI,CAAC,CAAC,CAAE,CAAC,IAAMkD,GAAU,CAAC,MAAM,OAAO,OAAO,OAAO,QAAQ,OAAO,cAAc,SAAS,eAAe,SAAS,WAAW,QAAQ,EAEvvB,SAASD,GAAeE,EAAK,CAAC,GAAGA,aAAgB,SAASA,EAAK,UAAU,SAAS,CAAC,IAAMC,EAAO,SAAS,cAAc,QAAQ,EAAEA,EAAO,KAAKD,EAAK,UAAU,OAAS,CAAC,KAAAE,EAAK,MAAAC,CAAK,IAAIH,EAAK,WAAYC,EAAO,aAAaC,EAAKC,CAAK,EAAGH,EAAK,cAAc,aAAaC,EAAOD,CAAI,MAAQ,SAAUI,KAASJ,EAAK,WAAYF,GAAeM,CAAK,CAAI,CACrV,SAAS7B,IAAkB,CAAC,OAAoBxB,EAAK,MAAM,CAAC,UAAU,wCAAwC,MAAM,CAAC,GAAGsD,GAAgB,SAAS,QAAQ,EAAE,SAAsBtD,EAAK,MAAM,CAAC,MAAMS,GAAgB,SAAS,eAAU,CAAC,CAAC,CAAC,CAAE,CAAC,SAASc,GAAa,CAAC,QAAAF,EAAQ,MAAAtB,CAAK,EAAE,CAAC,OAAoBC,EAAK,MAAM,CAAC,UAAU,oCAAoC,MAAM,CAAC,UAAUO,GAAaR,CAAK,EAAE,GAAGuD,GAAgB,SAAS,SAAS,GAAGvD,CAAK,EAAE,SAAsBC,EAAK,MAAM,CAAC,MAAMS,GAAgB,SAASY,CAAO,CAAC,CAAC,CAAC,CAAE,CAAC,IAAMZ,GAAgB,CAAC,UAAU,SAAS,SAAS,GAAG,EACzjB,SAASF,GAAaR,EAAM,CAAmC,GAAd,CAACA,EAAM,OAAwB,MAAO,IAAI,CC1F7DwD,GAAU,UAAU,CAAC,iCAAiC,cAAc,oBAAoB,kBAAkB,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,0BAA0B,OAAO,SAAS,IAAI,wEAAwE,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,uEAAuE,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,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,uGAAuG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,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,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,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,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,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,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,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,kqCAA4qC,EAAeC,GAAU,eCD1nM,IAAAC,GAAA,GAAAC,GAAAD,GAAA,wBAAAE,GAAA,OAAAC,GAAA,OAAAC,KAAgH,IAAMC,GAAgBC,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,2CAA2C,CAAC,CAAC,CAAC,EAAeC,GAAgBH,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,2CAA2C,CAAC,CAAC,CAAC,EAChhBE,GAAqB,CAAC,QAAU,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECDjO,IAAAC,GAAA,GAAAC,GAAAD,GAAA,wBAAAE,GAAA,OAAAC,GAAA,OAAAC,KAAgH,IAAMC,GAAgBC,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,sCAAsC,CAAC,CAAC,CAAC,EAAeC,GAAgBH,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,sCAAsC,CAAC,CAAC,CAAC,EACtgBE,GAAqB,CAAC,QAAU,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECDjO,IAAAC,GAAA,GAAAC,GAAAD,GAAA,wBAAAE,GAAA,OAAAC,GAAA,OAAAC,KAAgH,IAAMC,GAAgBC,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,qCAAqC,CAAC,CAAC,CAAC,EAAeC,GAAgBH,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,qCAAqC,CAAC,CAAC,CAAC,EACpgBE,GAAqB,CAAC,QAAU,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECA5E,IAAMC,GAAiB,CAAC,UAAUC,GAAgB,UAAUC,GAAiB,UAAUC,EAAgB,EAAiB,SAARC,GAAmCC,EAAIC,EAAO,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAOP,GAAiBM,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAOF,CAAG,EAAE,GAAGG,EAAM,OAAOA,EAAOF,EAAOA,EAAO,SAAU,CCA0Q,IAAMG,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,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,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAF,EAAM,SAAAG,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWP,GAAmCI,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,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,KAAAC,EAAK,OAAAC,EAAO,OAAAC,EAAO,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAM,MAAM,CAAC,GAAGH,EAAM,WAAWC,EAAKJ,GAAsCG,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,kBAAkB,WAAWC,EAAMJ,GAAsCE,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,aAAa,UAAUN,GAAgCI,EAAM,UAAU,WAAWG,EAAMR,GAAmCK,EAAM,aAAa,MAAMG,IAAQ,OAAOA,EAAM,CAAC,IAAI,uEAAuE,OAAO,uKAAuK,CAAC,CAAE,EAAQC,GAAuB,CAACJ,EAAM1B,IAAe0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAE0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAU+B,GAA6BC,EAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAArC,EAAQ,UAAAsC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE1B,GAASQ,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,GAAgB,eAAAC,GAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAApD,CAAQ,EAAEqD,GAAgB,CAAC,eAAe,YAAY,gBAAA1D,GAAgB,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQyD,EAAiBxB,GAAuBJ,EAAM1B,CAAQ,EAAQuD,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAarB,GAAuBA,EAAS,EAAQsB,EAAkBC,GAAqB,EAAE,IAAIC,EAAmBC,EAAoB,OAAoBjD,EAAKkD,EAAY,CAAC,GAAGzB,GAA4CkB,EAAgB,SAAsB3C,EAAKC,GAAS,CAAC,QAAQf,EAAS,QAAQ,GAAM,SAAsBc,EAAKR,GAAW,CAAC,MAAMD,GAAY,SAAsBS,EAAKmD,GAAK,CAAC,KAAKtB,EAAU,OAAO,YAAY,SAAsB7B,EAAKoD,GAAM,CAAC,GAAGtB,EAAU,GAAGI,GAAgB,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQmB,GAAuFP,GAAkB,GAAI,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAmEA,GAAkB,OAAQ,QAAQ,GAAGzD,GAAkBuC,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,EAAE,UAAU,GAAG0B,EAAGxE,GAAkB,GAAG+D,EAAsB,gBAAgBrB,EAAUQ,CAAU,mBAAmB,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,GAA6BsB,EAAK,MAAM,CAAC,GAAGlB,CAAK,EAAE,GAAGvC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,CAAC,EAAE+C,EAAYI,EAAc,EAAE,SAAsBoB,EAAMrD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBsC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,EAAE,SAAS,CAAcxC,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,UAAUR,EAAmBS,GAAkB,KAAKrC,CAAY,KAAK,MAAM4B,IAAqB,OAAOA,EAAgChD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBsC,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKd,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe1B,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,UAAUP,EAAoBQ,GAAkB,KAAKrC,CAAY,KAAK,MAAM6B,IAAsB,OAAOA,EAAiCjD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBsC,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKb,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe3B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBsC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kBAAkB,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,qEAAqE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQkB,GAAI,CAAC,kFAAkF,kFAAkF,2HAA2H,0TAA0T,gJAAgJ,qIAAqI,6WAA6W,wEAAwE,sEAAsE,GAAeA,GAAI,GAAgBA,EAAG,EAS72OC,EAAgBC,GAAQ3C,GAAUyC,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,iBAAiBA,EAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,EAAgB,CAAC,UAAU,CAAC,aAAa,kBAAkB,gBAAgB,GAAM,MAAM,UAAU,KAAKI,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,aAAa,gBAAgB,GAAM,MAAM,UAAU,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,wBAAwB,gHAAgH,MAAM,QAAQ,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,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,CAAC,CAAC,EAAE,GAAGM,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT/1EC,GAAU,UAAU,CAAC,iCAAiC,cAAc,oBAAoB,kBAAkB,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,0BAA0B,OAAO,SAAS,IAAI,wEAAwE,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,uEAAuE,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,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,uGAAuG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,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,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,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,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,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,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,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,+pCAAyqC,EAAeC,GAAU,eCAzlM,IAAMC,GAAiB,CAAC,UAAU,IAAIC,GAAU,IAAI,OAAO,4BAAkB,CAAC,EAAE,UAAU,IAAIA,GAAU,IAAI,OAAO,4BAAkB,CAAC,EAAE,UAAU,IAAIA,GAAU,IAAI,OAAO,4BAAkB,CAAC,CAAC,EAAiB,SAARC,EAAmCC,EAAIC,EAAO,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAO,KAAK,EAAEF,CAAG,EAAE,GAAGG,EAAM,OAAOA,EAAOF,EAAOA,EAAO,SAAU,CAAC,SAASG,GAAQH,EAAO,CAAC,IAAMI,EAAS,CAAC,EAAE,KAAMJ,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMI,EAAQJ,EAAO,QAAQ,EAAKI,GAAQD,EAAS,KAAKC,CAAO,EAAGL,EAAOA,EAAO,SAAU,GAAGI,EAAS,OAAO,EAAE,OAAO,QAAQ,IAAIA,CAAQ,CAAE,CAAQ,SAASE,GAA0BN,EAAO,CAAC,IAAMO,EAAeJ,GAAQH,CAAM,EAAE,GAAGO,EAAe,MAAMA,CAAe,CCAyjB,IAAMC,GAAiBC,EAASC,EAAW,EAAQC,GAAkBF,EAASG,EAAY,EAAQC,GAAkBJ,EAASK,EAAY,EAAQC,GAAmBN,EAASO,EAAa,EAAQC,GAAWR,EAASS,CAAK,EAAQC,GAAiBV,EAASW,EAAW,EAAQC,GAAY,CAAC,UAAU,qBAAqB,UAAU,4CAA4C,UAAU,sBAAsB,UAAU,4CAA4C,UAAU,6CAA6C,UAAU,6CAA6C,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAOC,GAAc,CAACA,EAAcC,GAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,EAASA,GAAiB,EAAQC,GAAwB,CAAC,cAAc,YAAY,MAAM,YAAY,OAAO,YAAY,MAAM,YAAY,GAAG,YAAY,IAAI,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAA6BC,EAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,mBAAAC,EAAmB,GAAGC,CAAS,EAAElB,GAASI,CAAK,EAAQe,EAAU,IAAI,CAAC,IAAMC,EAAUtB,GAAiB,OAAUY,CAAY,EAAE,GAAGU,EAAU,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAU,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAU,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,GAAI,EAAE,CAAC,OAAUX,CAAY,CAAC,EAAQY,GAAmB,IAAI,CAAC,IAAMF,EAAUtB,GAAiB,OAAUY,CAAY,EAAqC,GAAnC,SAAS,MAAMU,EAAU,OAAO,GAAMA,EAAU,SAAS,CAAC,IAAIG,GAAyBA,EAAwB,SAAS,cAAc,uBAAuB,KAAK,MAAMA,IAA0B,QAAcA,EAAwB,aAAa,UAAUH,EAAU,QAAQ,EAAG,IAAMI,EAAQJ,EAAU,cAAc,GAAGI,EAAQ,CAAC,IAAMC,EAAK,SAAS,KAAKA,EAAK,UAAU,QAAQC,GAAGA,EAAE,WAAW,cAAc,GAAGD,EAAK,UAAU,OAAOC,CAAC,CAAC,EAAED,EAAK,UAAU,IAAI,GAAGL,EAAU,4BAA4B,EAAG,MAAM,IAAI,CAAII,GAAQ,SAAS,KAAK,UAAU,OAAO,GAAGJ,EAAU,4BAA4B,CAAE,CAAE,EAAE,CAAC,OAAUV,CAAY,CAAC,EAAE,GAAK,CAACiB,EAAYC,CAAmB,EAAEC,GAA8Bb,EAAQ3B,GAAY,EAAK,EAAQyC,EAAe,OAAgBC,EAAWC,EAAO,IAAI,EAAQC,EAAWD,EAAO,IAAI,EAAEE,GAA0BxB,CAAY,EAAE,IAAMyB,GAAQ1C,GAAOwB,CAAkB,EAAQmB,GAAY1C,GAAW,CAACJ,GAAU,GAAiB,CAAC,YAAY,WAAW,EAAE,SAASqC,CAAW,EAAS,GAAYjC,EAAc2C,GAAUC,GAAkB,WAAW,EAAQC,GAAOC,GAAU,EAAQC,GAAsBC,EAAM,EAAQC,GAAsB,CAAa7B,GAAuBA,GAAuBA,GAAuBA,EAAS,EAAE8B,GAAiB,CAAC,CAAC,EAAE,IAAIC,EAAmBC,EAAoBC,EAAoBC,EAAoBC,EAAoBC,EAAoBC,EAAoBC,EAAoBC,GAAoB,OAAoBC,EAAKC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAA/D,EAAiB,EAAE,SAAsBgE,EAAMC,EAAY,CAAC,GAAG1C,GAA4C0B,GAAgB,SAAS,CAAce,EAAME,EAAO,IAAI,CAAC,GAAGxC,EAAU,UAAUyC,EAAGpE,GAAkB,GAAGoD,GAAsB,gBAAgB7B,CAAS,EAAE,IAAIL,GAA6BsB,EAAK,MAAM,CAAC,GAAGlB,CAAK,EAAE,SAAS,CAAcyC,EAAKM,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,EAAE,EAAE,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,aAAa,GAAK,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB2B,EAAK5E,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUuD,EAAK,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,YAAY,MAAM,OAAO,UAAU,qEAAqE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAKQ,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,EAAE,EAAE,EAAE,UAAU,CAAC,OAAO,IAAI,EAAE,EAAE,CAAC,EAAE,SAAsB2B,EAAKM,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,EAAE,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,aAAa,GAAK,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB2B,EAAK1E,GAAa,CAAC,UAAU,sEAAsE,UAAU,GAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,YAAY,WAAWiE,EAAmBkB,EAAkB,KAAKrD,CAAY,KAAK,MAAMmC,IAAqB,OAAOA,EAAmB,QAAQ,UAAU,GAAK,UAAU,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,sEAAsE,QAAQ,YAAY,MAAM,OAAO,WAAWC,EAAoBiB,EAAkB,KAAKrD,CAAY,KAAK,MAAMoC,IAAsB,OAAOA,EAAoB,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeU,EAAM,OAAO,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAACpB,GAAYD,EAAO,GAAgBmB,EAAK,MAAM,CAAC,UAAUK,EAAG,iBAAiB,CAACxB,IAAS,eAAe,EAAE,mBAAmB,gBAAgB,GAAGE,GAAU,KAAK,gBAAgB,IAAIJ,CAAI,CAAC,EAAeqB,EAAKU,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,SAAS,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,SAAS,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,SAAS,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,SAAS,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,SAAS,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,SAAS,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4B,CAAC,IAAIpB,EAAmBC,EAAoBC,EAAoBC,EAAoB,OAAOM,EAAKQ,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,UAAU,CAAC,EAAE,GAAG,CAAC,EAAE,SAAsB2B,EAAKM,EAA0B,CAAC,OAAO,EAAE,MAAM,QAAQ,EAAE,IAAI,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUsC,EAAc,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsBX,EAAKxE,GAAa,CAAC,UAAUmF,EAAc,CAAC,EAAE,UAAUtE,GAAY,CAAC,UAAU,QAAQ,UAAU,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,EAAE,EAAE,OAAO,OAAO,GAAG,YAAY,UAAU,GAAM,UAAU,sEAAsE,WAAWkD,EAAmBkB,EAAkB,KAAKrD,CAAY,KAAK,MAAMmC,IAAqB,OAAOA,EAAgCW,EAAYU,EAAS,CAAC,SAAS,CAAcZ,EAAK,IAAI,CAAC,SAAS,iBAAiB,CAAC,EAAeA,EAAK,IAAI,CAAC,SAAS,8NAA+M,CAAC,CAAC,CAAC,CAAC,EAAE,SAAS,YAAY,KAAK,gBAAgB,WAAWR,EAAoBiB,EAAkB,KAAKrD,CAAY,KAAK,MAAMoC,IAAsB,OAAOA,EAAoB,WAAW,MAAM,CAAC,MAAM,MAAM,EAAE,WAAWC,EAAoBgB,EAAkB,KAAKrD,CAAY,KAAK,MAAMqC,IAAsB,OAAOA,EAAoB,mBAAmB,WAAWC,EAAoBe,EAAkB,KAAKrD,CAAY,KAAK,MAAMsC,IAAsB,OAAOA,EAAoB,OAAO,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,EAAeM,EAAKU,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,eAAe,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,eAAe,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,eAAe,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,eAAe,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,eAAe,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,eAAe,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASG,GAA6B,CAAC,IAAItB,EAAmBC,EAAoBC,EAAoBC,EAAoB,OAAOM,EAAKQ,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,UAAU,CAAC,EAAE,GAAG,CAAC,EAAE,SAAsB2B,EAAKM,EAA0B,CAAC,OAAO,EAAE,MAAM,QAAQ,EAAE,IAAI,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,uBAAuB,KAAK,uBAAuB,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUwC,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBb,EAAKxE,GAAa,CAAC,UAAUqF,EAAe,CAAC,EAAE,UAAUxE,GAAY,CAAC,UAAU,QAAQ,UAAU,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,EAAE,EAAE,OAAO,OAAO,GAAG,YAAY,UAAU,GAAM,UAAU,sEAAsE,WAAWkD,EAAmBkB,EAAkB,KAAKrD,CAAY,KAAK,MAAMmC,IAAqB,OAAOA,EAAgCS,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,IAAI,CAAC,SAAS,8NAA+M,CAAC,CAAC,CAAC,EAAE,SAAS,YAAY,KAAK,uBAAuB,WAAWR,EAAoBiB,EAAkB,KAAKrD,CAAY,KAAK,MAAMoC,IAAsB,OAAOA,EAAoB,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,WAAWC,EAAoBgB,EAAkB,KAAKrD,CAAY,KAAK,MAAMqC,IAAsB,OAAOA,EAAoB,iBAAiB,WAAWC,EAAoBe,EAAkB,KAAKrD,CAAY,KAAK,MAAMsC,IAAsB,OAAOA,EAAoB,aAAa,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,EAAeM,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,QAAQ,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKQ,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUoB,EAAoBgB,EAAkB,MAAMrD,CAAY,KAAK,MAAMqC,IAAsB,OAAOA,EAAiCO,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKc,EAAS,CAAC,sBAAsB,GAAK,UAAUpB,EAAoBe,EAAkB,MAAMrD,CAAY,KAAK,MAAMsC,IAAsB,OAAOA,EAAiCM,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKQ,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUsB,EAAoBc,EAAkB,MAAMrD,CAAY,KAAK,MAAMuC,IAAsB,OAAOA,EAAiCK,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKc,EAAS,CAAC,sBAAsB,GAAK,UAAUlB,EAAoBa,EAAkB,MAAMrD,CAAY,KAAK,MAAMwC,IAAsB,OAAOA,EAAiCI,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,KAAK,eAAe,SAAS,CAAcF,EAAKU,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,eAAe,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,eAAe,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,eAAe,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,eAAe,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,eAAe,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU,eAAe,EAAE,oBAAoB,CAAC,UAAU,CAAC,aAAa,YAAY,iBAAiB,WAAW,CAAC,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASK,GAA6B,CAAC,IAAIxB,EAAmBC,EAAoB,OAAOQ,EAAKQ,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,2CAA2C,EAAE,KAAK,EAAE,UAAU,CAAC,MAAM,2CAA2C,EAAE,KAAK,EAAE,UAAU,CAAC,MAAM,2CAA2C,EAAE,KAAK,CAAC,EAAE,SAAsB2B,EAAKM,EAA0B,CAAC,OAAO,IAAI,MAAM,qEAAqE,EAAE,MAAM,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU0C,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBf,EAAKtE,GAAc,CAAC,WAAW6D,EAAmBkB,EAAkB,MAAMrD,CAAY,KAAK,MAAMmC,IAAqB,OAAOA,EAAmB,kBAAkB,OAAO,OAAO,WAAWC,EAAoBiB,EAAkB,MAAMrD,CAAY,KAAK,MAAMoC,IAAsB,OAAOA,EAAoB,aAAa,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAUuB,EAAe,CAAC,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,EAAef,EAAKU,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASM,GAA6B,CAAC,IAAIzB,EAAmBC,EAAoB,OAAOQ,EAAKQ,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,2CAA2C,EAAE,KAAK,EAAE,UAAU,CAAC,MAAM,2CAA2C,EAAE,MAAM,EAAE,UAAU,CAAC,MAAM,2CAA2C,EAAE,KAAK,CAAC,EAAE,SAAsB2B,EAAKM,EAA0B,CAAC,OAAO,IAAI,MAAM,qEAAqE,EAAE,MAAM,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU2C,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBhB,EAAKtE,GAAc,CAAC,WAAW6D,EAAmBkB,EAAkB,MAAMrD,CAAY,KAAK,MAAMmC,IAAqB,OAAOA,EAAmB,QAAQ,OAAO,OAAO,WAAWC,EAAoBiB,EAAkB,MAAMrD,CAAY,KAAK,MAAMoC,IAAsB,OAAOA,EAAoB,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAUwB,EAAe,CAAC,EAAE,UAAU3E,GAAY,CAAC,IAAI,oEAAoE,EAAE,EAAE,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6D,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,KAAK,eAAe,SAAS,CAAcF,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,YAAY,KAAK,YAAY,SAAsBP,EAAKpE,EAAM,CAAC,OAAO,OAAO,KAAK,GAAG,GAAG,YAAY,SAAS,YAAY,KAAK,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,MAAM,KAAKiE,EAAoBY,EAAkB,MAAMrD,CAAY,KAAK,MAAMyC,IAAsB,OAAOA,EAAoB,qDAAqD,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeG,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,aAAa,KAAK,aAAa,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,KAAKyB,EAAoBW,EAAkB,MAAMrD,CAAY,KAAK,MAAM0C,IAAsB,OAAOA,EAAoB,kDAAkD,CAAC,EAAE,SAAsBE,EAAKpE,EAAM,CAAC,OAAO,OAAO,KAAK,GAAG,GAAG,YAAY,SAAS,YAAY,KAAK,aAAa,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,MAAM,KAAKmE,GAAoBU,EAAkB,MAAMrD,CAAY,KAAK,MAAM2C,KAAsB,OAAOA,GAAoB,qDAAqD,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeC,EAAKQ,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,MAAM,CAAC,EAAE,SAAsB2B,EAAKM,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,OAAO,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB2B,EAAKlE,GAAY,CAAC,UAAU,sEAAsE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekE,EAAK,MAAM,CAAC,UAAUK,EAAGpE,GAAkB,GAAGoD,EAAqB,EAAE,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ4B,GAAI,CAAC,kFAAkF,IAAIzE,EAAS,2DAA2D,gFAAgF,+RAA+R,mKAAmK,wKAAwK,2RAA2R,oJAAoJ,gJAAgJ,8LAA8L,8VAA8V,gXAAgX,2SAA2S,2NAA2N,sVAAsV,6GAA6G,8GAA8G,qJAAqJ,oHAAoH,s8CAAs8C,gCAAgCA,EAAS,m/BAAm/B,uDAAuDA,EAAS,m/BAAm/B,uDAAuDA,EAAS,26BAA26B,yDAAyDA,EAAS,2GAA2G,iCAAiCA,EAAS,2GAA2G,GAAeyE,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,EAAG,EAS1q+BC,GAAgBC,GAAQlE,GAAUgE,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,GAAG,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,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,CAAC,CAAC,EAAE,GAAGhG,GAAiB,GAAGG,GAAkB,GAAGE,GAAkB,GAAGE,GAAmB,GAAGE,GAAW,GAAGE,GAAiB,GAAGyF,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC3lE,IAAMC,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,sBAAwB,OAAO,sBAAwB,IAAI,uBAAyB,GAAG,qBAAuB,MAAM,oCAAsC,oRAA0U,yBAA2B,QAAQ,6BAA+B,OAAO,yBAA2B,MAAM,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "fontStore", "fonts", "css", "className", "y6Tt0YdXv_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v0", "p", "x", "motion", "v1", "__FramerMetadata__", "y6Tt0YdXv_1_exports", "__export", "__FramerMetadata__", "v0", "v1", "v0", "p", "x", "motion", "v1", "__FramerMetadata__", "y6Tt0YdXv_2_exports", "__export", "__FramerMetadata__", "v0", "v1", "v0", "p", "x", "motion", "v1", "__FramerMetadata__", "valuesByLocaleId", "y6Tt0YdXv_0_exports", "y6Tt0YdXv_1_exports", "y6Tt0YdXv_2_exports", "getLocalizedValue", "key", "locale", "values", "value", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "toResponsiveImage", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "link", "title1", "title2", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "DypuAmJ3z", "hHKzIfBez", "U2SSlntvM", "TBzYVDfIy", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "LayoutGroup", "Link", "Image2", "getLoadingLazyAtYPosition", "cx", "u", "RichText2", "getLocalizedValue", "css", "Framery6Tt0YdXv", "withCSS", "y6Tt0YdXv_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "JagexHeaderFonts", "getFonts", "tjwOExdmQ_default", "HeaderBannerFonts", "jdVYwDm7E_default", "ContentSliceFonts", "QpsMIROmJ_default", "DiscoverImageFonts", "y6Tt0YdXv_default", "EmbedFonts", "Embed", "JagexFooterFonts", "y6XZtQUlk_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "negate", "value", "addImageAlt", "image", "alt", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "WEWpQXbQypLgEL05gl", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "ref2", "usePreloadLocalizedValues", "visible", "isDisplayed", "elementId", "useRouteElementId", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "getLocalizedValue", "ResolveLinks", "resolvedLinks", "x", "resolvedLinks1", "RichText2", "resolvedLinks2", "resolvedLinks3", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
