{"version":3,"file":"Nt3mjoYIpTETR2U4hkh8kHtrU0rToT8o9nfTaqpQBWM.BiGkKAjn.mjs","names":["SignInForm","BaseForm","Topbar","SignInForm","ButtonPrimary","UtilityPoweredByFACopy2","Phosphor","Footer","metadata","className","PropertyOverrides","RichText","css"],"sources":["https:/framerusercontent.com/modules/pMP2anKUHudrYUE4TaAp/bBPSs3BgJvhUGhA1fSP0/SignInForm.js","https:/framerusercontent.com/modules/08wFLBIMcqqQnpAvZsbM/JWQX46d9WuX3K1fns4dZ/GjYQSQx_F.js"],"sourcesContent":["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useMemo,useState}from\"react\";// @ts-ignore\nimport{addPropertyControls,ControlType,withCSS,inferInitialRouteFromPath,useRouter}from\"framer\";// @ts-ignore\nimport{auth}from\"https://cdn.framerauth.com/packages/sdk/live/latest/framerauth.esm.js\";import BaseForm,{basePropertyControls}from\"https://framerusercontent.com/modules/ExV5oOjPmSTY0gHEjmby/NpqywsqBSPokrP5l2Kmw/BaseForm.js\";//////////////////////////////////\n/////// FORM CONFIGURATION ///////\n//////////////////////////////////\n// Define inputs\nconst baseInputs=[{label:\"Email\",name:\"email\",type:\"email\",required:true,extra:false,placeholder:\"Email\"},{label:\"Password\",name:\"password\",type:\"password\",required:true,extra:false,placeholder:\"Password\"}];const formId=\"sign_in\"// Unique form ID for this form.\n;const defaultButtonLabel=\"Sign In\"// Default submit button label on this form.\n;const exposePasswordVisibilityToggle=true// Expose password visibility toggle property for password inputs.\n;const buttonLabelKey=`${formId}_button_label`// Key for button label property control.\n;/**\n * Sign In Form\n * By Joel Whitaker\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */const SignInForm=withCSS(function SignInForm({...baseProps}){const[inputs,setInputs]=useState(baseInputs)// We can override inputs with property controls.\n;const[redirectLink,setRedirectLink]=useState(baseProps.link);const[initializing,setInitializing]=useState(true);const buttonProps=useMemo(()=>{// Map button label to button\n// This is to avoid style copy-pasting of the button label.\nreturn{...baseProps.button,label:baseProps.button[buttonLabelKey]};},[baseProps.button,baseProps.button[buttonLabelKey]]);useEffect(()=>{// Map input labels to inputs\nif(baseProps.inputFields){const newInputs=[];baseInputs.forEach((input,_idx)=>{const inputControlName=snakeToCamel(input.name);if(!(inputControlName in baseProps.inputFields)){// If the input is not in the inputFields object, skip it.\nconsole.log(`Input ${inputControlName} not found in inputFields object.`);return;}const inputField=baseProps.inputFields[inputControlName];const display=inputField.display;const label=inputField.label;const placeholder=label;if(display===true||display===undefined){newInputs.push({...input,label,placeholder});}});setInputs(newInputs);}},[baseProps.inputFields]);const router=useRouter();useEffect(()=>{const checkAuthStatus=async()=>{setInitializing(true);try{if(isBrowser()){var _site_links;const{data:{site}}=await auth.getSite({cache:true});const accountPage=(site===null||site===void 0?void 0:(_site_links=site.links)===null||_site_links===void 0?void 0:_site_links.account)||\"/account\";const licenseKey=getParamValue(\"license_key\");const{data:_,error}=await auth.getUser();if(!error){if(licenseKey){navigateTo(`${accountPage}#license_key=${licenseKey}`);}else{if(redirectLink){navigateTo(redirectLink);}// setLoading(false)\n}}else{if(licenseKey){setRedirectLink(`${accountPage}#license_key=${licenseKey}`);}// setLoading(false)\n}}}finally{setInitializing(false);}};checkAuthStatus();},[]);const navigateTo=link=>{const[path,hash]=link.split(\"#\");const{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,path);if(routeId){router.navigate(routeId,hash,pathVariables);}};const onSubmit=async formData=>{// Prevent submitting while submitting\nconst{data:_,error}=await auth.signInWithPassword({email:formData.email,password:formData.password});if(error){return{ok:false,message:error.message};}// const event = new Event('framerAuthRefetchUser');\n// window.dispatchEvent(event);\nreturn{ok:true,message:\"Successfully Signed in.\"};};return /*#__PURE__*/_jsx(BaseForm,{...baseProps,isInitializing:initializing,link:redirectLink,button:buttonProps,inputs:inputs,onSubmit:onSubmit});},[]);const isBrowser=()=>{return typeof window!==\"undefined\";};const getParamValue=paramName=>{if(!isBrowser()){return null;}const urlParams=new URLSearchParams(window.location.search);if(urlParams.has(paramName)){return urlParams.get(paramName);}const hashParams=new URLSearchParams(window.location.hash.substring(1))// Remove the '#' part\n;if(hashParams.has(paramName)){return hashParams.get(paramName);}return null;};const snakeToCamel=str=>{return str.split(\"_\").map((word,index)=>{if(index===0){return word;}return word.charAt(0).toUpperCase()+word.slice(1);}).join(\"\");};// Here we can override property controls if we don't want to expose them to the user.\n// We generate the inputs property controls dynamically based on the inputs array.\nconst inputsPropertyControls={};baseInputs.forEach((input,_idx)=>{const inputControlName=snakeToCamel(input.name);inputsPropertyControls[inputControlName]={title:`${input.label}`,type:ControlType.Object,controls:{display:input.extra===true?{title:\"Display\",type:ControlType.Boolean,defaultValue:true}:undefined,label:{title:\"Label\",type:ControlType.String,defaultValue:input.label}}};});const exportBasePropertyControls={...basePropertyControls,link:{title:\"Redirect\",type:ControlType.Link},inputFields:{title:\"Inputs\",type:ControlType.Object,controls:inputsPropertyControls},input:{...basePropertyControls.input,controls:{...basePropertyControls.input.controls,icon:exposePasswordVisibilityToggle?{type:ControlType.Object,title:\"Icon\",controls:{showPasswordVisibilityIcon:{title:\"Activated\",type:ControlType.Boolean,defaultValue:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#000\",hidden:props=>!props.showPasswordVisibilityIcon}}}:undefined}},button:{// Inject default button label\n...basePropertyControls.button,controls:{...basePropertyControls.button.controls,label:undefined,[buttonLabelKey]:{...basePropertyControls.button.controls.label,defaultValue:defaultButtonLabel}}}};// @ts-ignore - TS doesn't like our basePropertyControls type.\naddPropertyControls(SignInForm,exportBasePropertyControls);SignInForm.defaultProps={...BaseForm.defaultProps,...SignInForm.defaultProps};export default SignInForm;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SignInForm\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"300\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SignInForm.map","// Generated by Framer (a417fcb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Link,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import UtilityPoweredByFACopy2 from\"https://framerusercontent.com/modules/p9cjnmoNXkE8FPhBuzgn/45lva8BxpSB51G3bSJI9/RcDl_qX4C.js\";import SignInForm from\"https://framerusercontent.com/modules/pMP2anKUHudrYUE4TaAp/bBPSs3BgJvhUGhA1fSP0/SignInForm.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import Topbar from\"#framer/local/canvasComponent/E91SNFElJ/E91SNFElJ.js\";import Footer from\"#framer/local/canvasComponent/G15gqAEev/G15gqAEev.js\";import ButtonPrimary from\"#framer/local/canvasComponent/VsInKSkUc/VsInKSkUc.js\";import{withLoggedIn,withLoggedOut}from\"#framer/local/codeFile/H4W4u8c/FramerAuth.js\";import*as sharedStyle2 from\"#framer/local/css/ro7OPezbn/ro7OPezbn.js\";import*as sharedStyle from\"#framer/local/css/tAmgSI9Z4/tAmgSI9Z4.js\";import*as sharedStyle1 from\"#framer/local/css/v8XfaQlbs/v8XfaQlbs.js\";import*as sharedStyle3 from\"#framer/local/css/VLxzRiBRr/VLxzRiBRr.js\";import metadataProvider from\"#framer/local/webPageMetadata/GjYQSQx_F/GjYQSQx_F.js\";const TopbarFonts=getFonts(Topbar);const SignInFormFonts=getFonts(SignInForm);const ButtonPrimaryFonts=getFonts(ButtonPrimary);const UtilityPoweredByFACopy2Fonts=getFonts(UtilityPoweredByFACopy2);const MotionDivWithLoggedOut=withLoggedOut(motion.div);const PhosphorFonts=getFonts(Phosphor);const MotionDivWithLoggedIn=withLoggedIn(motion.div);const FooterFonts=getFonts(Footer);const cycleOrder=[\"uO4TipqIu\",\"Y6S1xISeB\",\"y_IVyDWV5\"];const breakpoints={uO4TipqIu:\"(min-width: 1200px)\",y_IVyDWV5:\"(max-width: 809px)\",Y6S1xISeB:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Fdsdu\";const variantClassNames={uO4TipqIu:\"framer-v-mg1qwv\",y_IVyDWV5:\"framer-v-17fajmd\",Y6S1xISeB:\"framer-v-1uj9oq4\"};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"uO4TipqIu\",Phone:\"y_IVyDWV5\",Tablet:\"Y6S1xISeB\"};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:\"uO4TipqIu\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...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-Fdsdu`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-Fdsdu`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"uO4TipqIu\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-mg1qwv\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-796e2e-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y_IVyDWV5:{variant:\"sp4Q_o9dc\"},Y6S1xISeB:{variant:\"sp4Q_o9dc\"}},children:/*#__PURE__*/_jsx(Topbar,{height:\"100%\",id:\"bJUxNic9T\",layoutId:\"bJUxNic9T\",style:{width:\"100%\"},variant:\"vSHOO8Yne\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithLoggedOut,{className:\"framer-d9vgy5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1gnb2jl\",\"data-styles-preset\":\"tAmgSI9Z4\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-36467775-1e75-4b9c-bfe0-e8555ce7da0f, rgb(6, 3, 28))\"},children:\"Sign In\"})}),className:\"framer-1ksl6yv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1owm3j9\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d8j6x9\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7xqp6k\",\"data-border\":true,\"data-framer-name\":\"Frame 4\",name:\"Frame 4\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"S463dxYa_\"},implicitPathVariables:undefined},{href:{webPageId:\"S463dxYa_\"},implicitPathVariables:undefined},{href:{webPageId:\"S463dxYa_\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-badybx-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y_IVyDWV5:{link:resolvedLinks[2]},Y6S1xISeB:{link:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(SignInForm,{button:{align:\"stretch\",borderRadius:8,buttonFont:{fontFamily:'\"Onest\", \"Onest Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:14,buttonPaddingBottom:12,buttonPaddingLeft:16,buttonPaddingPerSide:false,buttonPaddingRight:16,buttonPaddingTop:12,color:\"var(--token-c19be0cf-7acb-4574-998f-5d6eee5dd057, rgb(255, 255, 255))\",fill:\"var(--token-36467775-1e75-4b9c-bfe0-e8555ce7da0f, rgb(6, 3, 28))\",shouldAppear:true,sign_in_button_label:\"Sign In\"},gap:16,height:\"100%\",id:\"NWIdLf9hz\",input:{borderObject:{borderColor:\"rgb(231, 231, 231)\",borderWidth:1},borderRadius:8,color:\"rgb(0, 0, 0)\",fill:\"rgb(255, 255, 255)\",fixedHeight:50,focusObject:{focusColor:\"rgb(0, 0, 0)\",focusWidthFrom:0,focusWidthTo:1},font:{fontFamily:'\"Onest\", \"Onest Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},height:true,icon:{color:\"rgb(196, 196, 196)\",showPasswordVisibilityIcon:true},padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,placeholderColor:\"rgb(166, 166, 166)\",shadowObject:{shadowBlur:4,shadowColor:\"rgba(0, 0, 0, 0.05)\",shadowX:0,shadowY:1}},inputFields:{email:{label:\"Email\"},password:{label:\"Password\"}},label:{borderRadius:0,color:\"rgb(102, 102, 102)\",display:false,displayAsterix:true,fill:\"rgba(0, 0, 0, 0)\",font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},padding:0,paddingBottom:18,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0},layoutId:\"NWIdLf9hz\",link:resolvedLinks[0],style:{width:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12ntkg6\",\"data-styles-preset\":\"v8XfaQlbs\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"eWdv9JwnD\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Forgot password\"})})})}),className:\"framer-1ccozij\",\"data-framer-name\":\"Caption\",fonts:[\"Inter\"],name:\"Caption\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-151b9wi\",\"data-border\":true,\"data-framer-name\":\"Frame 14\",name:\"Frame 14\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12ntkg6\",\"data-styles-preset\":\"v8XfaQlbs\",children:\"Don't have an account?\"})}),className:\"framer-1s1lecy\",\"data-framer-name\":\"Don’t have a license key?\",fonts:[\"Inter\"],name:\"Don’t have a license key?\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"KuOPEszqs\"},implicitPathVariables:undefined},{href:{webPageId:\"KuOPEszqs\"},implicitPathVariables:undefined},{href:{webPageId:\"KuOPEszqs\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qtdhm9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y_IVyDWV5:{QVT44Bmsv:resolvedLinks1[2]},Y6S1xISeB:{QVT44Bmsv:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{eFaxccUyZ:false,height:\"100%\",id:\"uIbh6AenN\",kMcpT4e6Q:\"Crown\",kMOuoXu7v:\"var(--token-ba1fbd00-b42f-4fb7-8f07-db0218d83114, rgb(109, 36, 255))\",kWpbFVbuJ:\"var(--token-ba1fbd00-b42f-4fb7-8f07-db0218d83114, rgb(109, 36, 255))\",layoutId:\"uIbh6AenN\",maLbBaXzl:\"Sign Up\",QVT44Bmsv:resolvedLinks1[0],QzuTi2c2l:\"fill\",ty9DbgCol:true,variant:\"GhT8nx9qv\",vvNGOtPh6:false,width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y_IVyDWV5:{width:\"calc(100vw - 16px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(100vw - 48px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-zhbdmd-container\",children:/*#__PURE__*/_jsx(UtilityPoweredByFACopy2,{height:\"100%\",id:\"XRDY1NVse\",layoutId:\"XRDY1NVse\",style:{width:\"100%\"},width:\"100%\",xS_yeE_76:\"var(--token-3ab2d8b6-b506-4374-a6e8-5ad0c59c1eff, rgb(102, 102, 102))\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithLoggedIn,{className:\"framer-1fgxf9q\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vqat0k-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-9d729f16-d6a9-4828-91ac-1e3d86a24c3a, rgb(159, 159, 173))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Coffee\",id:\"JUVSnagdl\",layoutId:\"JUVSnagdl\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4fd6rb\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p4tik3\",\"data-framer-name\":\"Review\",name:\"Review\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1h3tmgx\",\"data-styles-preset\":\"VLxzRiBRr\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-36467775-1e75-4b9c-bfe0-e8555ce7da0f, rgb(6, 3, 28))\"},children:\"You're signed in\"})}),className:\"framer-1aro3k3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mCoAELmH7\"},implicitPathVariables:undefined},{href:{webPageId:\"mCoAELmH7\"},implicitPathVariables:undefined},{href:{webPageId:\"mCoAELmH7\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4f7at3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y_IVyDWV5:{QVT44Bmsv:resolvedLinks2[2]},Y6S1xISeB:{QVT44Bmsv:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{eFaxccUyZ:false,height:\"100%\",id:\"RtB8pX20X\",kMcpT4e6Q:\"Crown\",kMOuoXu7v:\"var(--token-ba1fbd00-b42f-4fb7-8f07-db0218d83114, rgb(109, 36, 255))\",kWpbFVbuJ:\"var(--token-ba1fbd00-b42f-4fb7-8f07-db0218d83114, rgb(109, 36, 255))\",layoutId:\"RtB8pX20X\",maLbBaXzl:\"Go to My Account\",QVT44Bmsv:resolvedLinks2[0],QzuTi2c2l:\"fill\",ty9DbgCol:true,variant:\"GhT8nx9qv\",vvNGOtPh6:false,width:\"100%\"})})})})})]})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2yvie6-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{y_IVyDWV5:{variant:\"KgqKELOKA\"},Y6S1xISeB:{variant:\"gwiKv1Kbu\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"z8IeBAjYz\",layoutId:\"z8IeBAjYz\",style:{width:\"100%\"},variant:\"KXcyq6cru\",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-Fdsdu { background: var(--token-60d106f7-7a96-4764-9aa0-730727cdaa31, rgb(252, 252, 252)) /* {\"name\":\"BG\"} */; }`,\".framer-Fdsdu.framer-8tpo4o, .framer-Fdsdu .framer-8tpo4o { display: block; }\",\".framer-Fdsdu.framer-mg1qwv { align-content: center; align-items: center; background-color: var(--token-60d106f7-7a96-4764-9aa0-730727cdaa31, #fcfcfc); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-Fdsdu .framer-796e2e-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 10; }\",\".framer-Fdsdu .framer-d9vgy5, .framer-Fdsdu .framer-1fgxf9q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; min-height: 90vh; overflow: hidden; padding: 24px; position: relative; width: 100%; }\",\".framer-Fdsdu .framer-1ksl6yv, .framer-Fdsdu .framer-1aro3k3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Fdsdu .framer-1owm3j9 { --border-bottom-width: 1px; --border-color: #e7e7e7; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 400px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Fdsdu .framer-1d8j6x9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: 100%; }\",\".framer-Fdsdu .framer-7xqp6k { --border-bottom-width: 1px; --border-color: #e6e6e6; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #f7f7f7; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-Fdsdu .framer-badybx-container, .framer-Fdsdu .framer-zhbdmd-container, .framer-Fdsdu .framer-2yvie6-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Fdsdu .framer-1ccozij { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Fdsdu .framer-151b9wi { --border-bottom-width: 0px; --border-color: #e6e6e6; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-Fdsdu .framer-1s1lecy { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Fdsdu .framer-qtdhm9-container, .framer-Fdsdu .framer-4f7at3-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Fdsdu .framer-1vqat0k-container { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-Fdsdu .framer-4fd6rb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Fdsdu .framer-1p4tik3 { align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 500px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Fdsdu.framer-mg1qwv, .framer-Fdsdu .framer-d9vgy5, .framer-Fdsdu .framer-1owm3j9, .framer-Fdsdu .framer-1d8j6x9, .framer-Fdsdu .framer-7xqp6k, .framer-Fdsdu .framer-151b9wi, .framer-Fdsdu .framer-1fgxf9q, .framer-Fdsdu .framer-4fd6rb, .framer-Fdsdu .framer-1p4tik3 { gap: 0px; } .framer-Fdsdu.framer-mg1qwv > *, .framer-Fdsdu .framer-1owm3j9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Fdsdu.framer-mg1qwv > :first-child, .framer-Fdsdu .framer-d9vgy5 > :first-child, .framer-Fdsdu .framer-1owm3j9 > :first-child, .framer-Fdsdu .framer-1d8j6x9 > :first-child, .framer-Fdsdu .framer-7xqp6k > :first-child, .framer-Fdsdu .framer-1fgxf9q > :first-child, .framer-Fdsdu .framer-4fd6rb > :first-child, .framer-Fdsdu .framer-1p4tik3 > :first-child { margin-top: 0px; } .framer-Fdsdu.framer-mg1qwv > :last-child, .framer-Fdsdu .framer-d9vgy5 > :last-child, .framer-Fdsdu .framer-1owm3j9 > :last-child, .framer-Fdsdu .framer-1d8j6x9 > :last-child, .framer-Fdsdu .framer-7xqp6k > :last-child, .framer-Fdsdu .framer-1fgxf9q > :last-child, .framer-Fdsdu .framer-4fd6rb > :last-child, .framer-Fdsdu .framer-1p4tik3 > :last-child { margin-bottom: 0px; } .framer-Fdsdu .framer-d9vgy5 > *, .framer-Fdsdu .framer-1fgxf9q > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Fdsdu .framer-1d8j6x9 > *, .framer-Fdsdu .framer-7xqp6k > *, .framer-Fdsdu .framer-4fd6rb > *, .framer-Fdsdu .framer-1p4tik3 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Fdsdu .framer-151b9wi > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-Fdsdu .framer-151b9wi > :first-child { margin-left: 0px; } .framer-Fdsdu .framer-151b9wi > :last-child { margin-right: 0px; } }\",\"@media (min-width: 1200px) { .framer-Fdsdu .hidden-mg1qwv { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-Fdsdu .hidden-1uj9oq4 { display: none !important; } .${metadata.bodyClassName}-framer-Fdsdu { background: var(--token-60d106f7-7a96-4764-9aa0-730727cdaa31, rgb(252, 252, 252)) /* {\"name\":\"BG\"} */; } .framer-Fdsdu.framer-mg1qwv { width: 810px; }}`,`@media (max-width: 809px) { .framer-Fdsdu .hidden-17fajmd { display: none !important; } .${metadata.bodyClassName}-framer-Fdsdu { background: var(--token-60d106f7-7a96-4764-9aa0-730727cdaa31, rgb(252, 252, 252)) /* {\"name\":\"BG\"} */; } .framer-Fdsdu.framer-mg1qwv { width: 390px; } .framer-Fdsdu .framer-d9vgy5, .framer-Fdsdu .framer-1fgxf9q { padding: 8px; }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-Fdsdu[data-border=\"true\"]::after, .framer-Fdsdu [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1992\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Y6S1xISeB\":{\"layout\":[\"fixed\",\"auto\"]},\"y_IVyDWV5\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerGjYQSQx_F=withCSS(Component,css,\"framer-Fdsdu\");export default FramerGjYQSQx_F;FramerGjYQSQx_F.displayName=\"Sign In\";FramerGjYQSQx_F.defaultProps={height:1992,width:1200};addFonts(FramerGjYQSQx_F,[{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\"},{family:\"Onest\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/onest/v6/gNMZW3F-SZuj7zOT0IfSjTS16cPh9R-ZtxFMQWXgSQ.woff2\",weight:\"400\"},{family:\"Onest\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/onest/v6/gNMZW3F-SZuj7zOT0IfSjTS16cPhKxiZtxFMQWXgSQ.woff2\",weight:\"600\"}]},...TopbarFonts,...SignInFormFonts,...ButtonPrimaryFonts,...UtilityPoweredByFACopy2Fonts,...PhosphorFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGjYQSQx_F\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"1992\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Y6S1xISeB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y_IVyDWV5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"wzDAsCsC,IAtCtC,GAA2C,IAA8C,CACzF,GAAgG,CAChG,IAAwF,KAAwI,CAI1N,EAAW,CAAC,CAAC,MAAM,QAAQ,KAAK,QAAQ,KAAK,QAAQ,UAAS,EAAK,OAAM,EAAM,YAAY,OAAQ,EAAC,CAAC,MAAM,WAAW,KAAK,WAAW,KAAK,WAAW,UAAS,EAAK,OAAM,EAAM,YAAY,UAAY,CAAA,EAAO,EAAO,UACrN,EAAmB,UACnB,GAA+B,EAC/B,GAAgB,EAAE,EAAO,eAYvB,EAAW,GAAQ,SAAoB,CAAC,GAAG,EAAU,CAAC,CACkD,GAD5C,CAAC,EAAO,EAAU,CAAC,EAAS,EAAW,CACtG,CAAC,EAAa,EAAgB,CAAC,EAAS,EAAU,KAAK,CAAM,CAAC,EAAa,EAAgB,CAAC,GAAS,EAAK,CAAO,EAAY,EAAQ,KAErI,CAAC,GAAG,EAAU,OAAO,MAAM,EAAU,OAAO,EAAgB,GAAG,CAAC,EAAU,OAAO,EAAU,OAAO,EAAgB,EAAC,CAAC,EAAU,IAAI,CACxI,GAAG,EAAU,YAAY,CAAC,IAAM,EAAU,CAAE,EAC8Q,AAD7Q,EAAW,QAAQ,CAAC,EAAM,IAAO,CAAC,IAAM,EAAiB,EAAa,EAAM,KAAK,CAAC,KAAK,KAAoB,EAAU,aAAa,CAC/K,QAAQ,KAAK,QAAQ,EAAiB,mCAAmC,CAAC,MAAQ,CAAuH,IAAjH,EAAW,EAAU,YAAY,GAAwB,EAAQ,EAAW,QAAc,EAAM,EAAW,MAAY,EAAY,EAAM,CAAG,KAAU,GAAM,QAAA,KAAqB,EAAU,KAAK,CAAC,GAAG,EAAM,QAAM,aAAY,EAAC,AAAG,EAAC,CAAC,EAAU,EAAU,AAAE,CAAC,EAAC,CAAC,EAAU,WAAY,EAAC,CAAC,IAAM,EAAO,IAAW,CAAC,EAAU,IAAI,CAAC,IAAM,EAAgB,SAAS,CAAC,GAAgB,EAAK,CAAC,GAAG,CAAC,GAAG,GAAW,CAAC,CAAC,IAAI,EAAiQ,GAAhP,CAAC,KAAK,CAAC,OAAK,CAAC,CAAC,KAAM,GAAK,QAAQ,CAAC,OAAM,CAAK,EAAC,CAAO,GAAa,GAAO,SAAyB,IAAG,EAAY,EAAK,QAAuD,UAAU,WAAiB,EAAW,EAAc,cAAc,CAAM,CAAC,KAAK,EAAE,QAAM,CAAC,KAAM,GAAK,SAAS,CAAC,AAAI,EACrwB,GAAY,GAAiB,EAAE,EAAY,eAAe,EAAW,EAAE,CADwsB,EAAY,GAAY,EAAE,EAAY,eAAe,EAAW,EAAE,CAAU,GAAc,EAAW,EAAa,AAEz4B,CAAC,QAAO,CAAC,GAAgB,EAAM,AAAE,CAAC,EAAC,GAAiB,AAAE,EAAC,CAAE,EAAC,CAAgM,IAAzL,EAAW,GAAM,CAAkC,GAA5B,CAAC,EAAK,EAAK,CAAC,EAAK,MAAM,IAAI,CAAM,CAAC,UAAQ,gBAAc,CAAC,EAA0B,EAAO,OAAO,EAAK,CAAC,AAAG,GAAS,EAAO,SAAS,EAAQ,EAAK,EAAc,AAAG,EAAO,EAAS,MAAM,GAAU,CAC3R,GAAK,CAAC,KAAK,EAAE,QAAM,CAAC,KAAM,GAAK,mBAAmB,CAAC,MAAM,EAAS,MAAM,SAAS,EAAS,QAAS,EAAC,CAEpG,OAFwG,EAAa,CAAC,IAAG,EAAM,QAAQ,EAAM,OAAQ,EAE/I,CAAC,IAAG,EAAK,QAAQ,yBAA0B,CAAE,EAAC,MAAoB,GAAKC,EAAS,CAAC,GAAG,EAAU,eAAe,EAAa,KAAK,EAAa,OAAO,EAAmB,SAAgB,UAAS,EAAC,AAAE,EAAC,CAAE,EAAC,CAAO,EAAU,IAAmB,WAA6B,EAAc,GAAW,CAAC,IAAI,GAAW,CAAE,OAAO,KAAM,IAAM,EAAU,IAAI,gBAAgB,EAAO,SAAS,QAAQ,GAAG,EAAU,IAAI,EAAU,CAAE,MAAO,GAAU,IAAI,EAAU,CAAE,IAAM,EAAW,IAAI,gBAAgB,EAAO,SAAS,KAAK,UAAU,EAAE,EACpc,MAA7D,GAAW,IAAI,EAAU,CAAS,EAAW,IAAI,EAAU,CAAS,IAAM,EAAO,EAAa,GAAa,EAAI,MAAM,IAAI,CAAC,IAAI,CAAC,EAAK,IAAY,IAAQ,EAAU,EAAa,EAAK,OAAO,EAAE,CAAC,aAAa,CAAC,EAAK,MAAM,EAAE,CAAG,CAAC,KAAK,GAAG,CAEnO,EAAuB,CAAE,EAAC,EAAW,QAAQ,CAAC,EAAM,IAAO,CAAC,IAAM,EAAiB,EAAa,EAAM,KAAK,CAAC,EAAuB,GAAkB,CAAC,OAAO,EAAE,EAAM,MAAM,EAAE,KAAK,EAAY,OAAO,SAAS,CAAC,QAAQ,EAAM,SAAQ,EAAK,CAAC,MAAM,UAAU,KAAK,EAAY,QAAQ,cAAa,CAAK,MAAA,GAAW,MAAM,CAAC,MAAM,QAAQ,KAAK,EAAY,OAAO,aAAa,EAAM,KAAM,CAAC,CAAC,CAAE,EAAC,CAAO,EAA2B,CAAC,GAAG,EAAqB,KAAK,CAAC,MAAM,WAAW,KAAK,EAAY,IAAK,EAAC,YAAY,CAAC,MAAM,SAAS,KAAK,EAAY,OAAO,SAAS,CAAuB,EAAC,MAAM,CAAC,GAAG,EAAqB,MAAM,SAAS,CAAC,GAAG,EAAqB,MAAM,SAAS,KAAK,EAA+B,CAAC,KAAK,EAAY,OAAO,MAAM,OAAO,SAAS,CAAC,2BAA2B,CAAC,MAAM,YAAY,KAAK,EAAY,QAAQ,cAAa,CAAK,EAAC,MAAM,CAAC,MAAM,QAAQ,KAAK,EAAY,MAAM,aAAa,OAAO,OAAO,IAAQ,EAAM,0BAA2B,CAAC,CAAC,MAAA,EAAW,CAAC,EAAC,OAAO,CAC18B,GAAG,EAAqB,OAAO,SAAS,CAAC,GAAG,EAAqB,OAAO,SAAS,UAAA,IAAiB,GAAgB,CAAC,GAAG,EAAqB,OAAO,SAAS,MAAM,aAAa,CAAmB,CAAC,CAAC,CAAC,EACpM,GAAoB,EAAW,EAA2B,CAAC,EAAW,aAAa,CAAC,GAAGA,EAAS,aAAa,GAAG,EAAW,YAAa,IAAgB,iECzB3I,AAVb,GAAyD,IAA2P,IAA8C,IAA4B,KAAkI,KAAsH,KAA0H,KAAyE,KAAyE,KAAgF,KAAqF,KAAsE,KAAqE,KAAsE,KAAsE,KAAmF,CAAM,EAAY,EAASC,GAAO,CAAO,EAAgB,EAASC,EAAW,CAAO,GAAmB,EAASC,EAAc,CAAO,GAA6B,EAASC,EAAwB,CAAO,GAAuB,GAAc,EAAO,IAAI,CAAO,GAAc,EAASC,EAAS,CAAO,GAAsB,GAAa,EAAO,IAAI,CAAO,GAAY,EAASC,EAAO,CAA8D,EAAY,CAAC,UAAU,sBAAsB,UAAU,qBAAqB,UAAU,4CAA6C,EAAyD,EAAkB,eAAqB,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAmB,EAAOC,EAAS,GAAkB,CAAO,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAY,EAAO,GAAS,CAAC,CAAC,SAAO,KAAG,QAAM,GAAG,EAAM,GAAG,CAAC,IAAI,EAAuC,EAAK,MAAM,CAAC,GAAG,EAAM,SAAS,GAAM,EAAuC,GAAwB,EAAM,WAAyG,EAAM,UAAoC,WAAY,CAAE,EAAO,GAAuB,EAAiB,SAAS,EAAM,EAAI,CAA+C,GAAzC,CAAC,eAAa,YAAU,CAAC,IAAe,CAAM,CAAC,QAAM,UAAA,EAAU,WAAS,UAAQ,GAAG,EAAU,CAAC,GAAS,EAAM,CAA8a,AAA7a,EAAgB,IAAI,CAAC,IAAM,EAAU,MAAA,GAA2B,EAAa,CAAC,GAAG,EAAU,OAAO,CAAC,IAAI,EAAU,SAAS,cAAc,sBAAsB,CAAC,AAAG,EAAW,EAAU,aAAa,UAAU,EAAU,OAAO,EAAO,EAAU,SAAS,cAAc,OAAO,CAAC,EAAU,aAAa,OAAO,SAAS,CAAC,EAAU,aAAa,UAAU,EAAU,OAAO,CAAC,SAAS,KAAK,YAAY,EAAU,CAAG,CAAC,EAAC,KAAA,GAAW,CAAa,EAAC,CAAC,EAAyB,IAAI,CAAC,IAAM,EAAU,MAAA,GAA2B,EAAa,CAAoC,GAAnC,SAAS,MAAM,EAAU,OAAO,GAAM,EAAU,SAAS,CAAC,IAAI,EAAwB,AAA0H,CAAzH,EAAwB,SAAS,cAAc,wBAAwB,GAA0E,aAAa,UAAU,EAAU,SAAS,AAAE,KAAM,EAAQ,EAAU,cAAc,GAAG,EAAQ,CAAC,IAAM,EAAK,SAAS,KAAuF,AAAlF,EAAK,UAAU,QAAQ,GAAG,EAAE,WAAW,eAAe,EAAE,EAAK,UAAU,OAAO,EAAE,CAAC,CAAC,EAAK,UAAU,KAAK,EAAE,EAAU,cAAc,eAAe,AAAE,OAAM,IAAI,CAAC,AAAG,GAAQ,SAAS,KAAK,UAAU,QAAQ,EAAE,EAAU,cAAc,eAAe,AAAE,CAAE,EAAC,KAAA,GAAW,CAAa,EAAC,CAA2N,GAArN,CAAC,EAAY,GAAoB,CAAC,GAA8B,EAAQ,GAAY,EAAM,CAAO,GAA+B,EAAK,EAAa,KAAK,CAAO,EAAO,IAAW,CAAO,EAAgB,GAAa,CAAO,EAAsB,YAA4F,EAAsB,MAArB,IAAiB,CAAE,EAAC,CAAqB,EAAK,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,oBAAkB,EAAC,SAAsB,EAAM,GAAY,CAAC,GAAG,GAA4C,EAAgB,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,GAAG,EAAU,UAAU,EAAG,EAAkB,GAAG,EAAsB,gBAAgBC,EAAU,CAAC,IAAI,GAA6B,EAAK,MAAM,CAAC,GAAG,CAAM,EAAC,SAAS,CAAc,EAAK,EAA0B,CAAC,MAAM,QAAQ,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,SAAsB,EAAKC,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAY,EAAC,UAAU,CAAC,QAAQ,WAAY,CAAC,EAAC,SAAsB,EAAKR,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAO,EAAC,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAM,GAAuB,CAAC,UAAU,gBAAgB,SAAS,CAAc,EAAKS,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,KAAK,CAAC,UAAU,oDAAoD,YAAY,MAAM,2BAA2B,+BAA+B,kEAAmE,EAAC,SAAS,SAAU,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,OAAQ,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gCAA+B,EAAK,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,+BAA8B,qBAAwB,UAAU,KAAK,UAAU,SAAsB,EAAK,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAY,EAAC,0BAAA,EAAgC,EAAC,CAAC,KAAK,CAAC,UAAU,WAAY,EAAC,0BAAA,EAAgC,EAAC,CAAC,KAAK,CAAC,UAAU,WAAY,EAAC,0BAAA,EAAgC,CAAC,EAAC,SAAS,GAA4B,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,SAAsB,EAAKD,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,KAAK,EAAc,EAAG,EAAC,UAAU,CAAC,KAAK,EAAc,EAAG,CAAC,EAAC,SAAsB,EAAKP,EAAW,CAAC,OAAO,CAAC,MAAM,UAAU,aAAa,EAAE,WAAW,CAAC,WAAW,2CAA2C,SAAS,OAAO,UAAU,SAAS,WAAW,IAAI,cAAc,MAAM,WAAW,KAAM,EAAC,cAAc,GAAG,oBAAoB,GAAG,kBAAkB,GAAG,sBAAqB,EAAM,mBAAmB,GAAG,iBAAiB,GAAG,MAAM,wEAAwE,KAAK,mEAAmE,cAAa,EAAK,qBAAqB,SAAU,EAAC,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,MAAM,CAAC,aAAa,CAAC,YAAY,qBAAqB,YAAY,CAAE,EAAC,aAAa,EAAE,MAAM,eAAe,KAAK,qBAAqB,YAAY,GAAG,YAAY,CAAC,WAAW,eAAe,eAAe,EAAE,aAAa,CAAE,EAAC,KAAK,CAAC,WAAW,2CAA2C,SAAS,OAAO,UAAU,SAAS,WAAW,IAAI,cAAc,MAAM,WAAW,KAAM,EAAC,QAAO,EAAK,KAAK,CAAC,MAAM,qBAAqB,4BAA2B,CAAK,EAAC,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,gBAAe,EAAM,aAAa,GAAG,WAAW,GAAG,iBAAiB,qBAAqB,aAAa,CAAC,WAAW,EAAE,YAAY,sBAAsB,QAAQ,EAAE,QAAQ,CAAE,CAAC,EAAC,YAAY,CAAC,MAAM,CAAC,MAAM,OAAQ,EAAC,SAAS,CAAC,MAAM,UAAW,CAAC,EAAC,MAAM,CAAC,aAAa,EAAE,MAAM,qBAAqB,SAAQ,EAAM,gBAAe,EAAK,KAAK,mBAAmB,KAAK,CAAC,WAAW,sBAAsB,SAAS,OAAO,UAAU,SAAS,cAAc,MAAM,WAAW,KAAM,EAAC,QAAQ,EAAE,cAAc,GAAG,YAAY,EAAE,gBAAe,EAAK,aAAa,EAAE,WAAW,CAAE,EAAC,SAAS,YAAY,KAAK,EAAc,GAAG,MAAM,CAAC,MAAM,MAAO,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAKQ,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,UAAU,oDAAoD,YAAY,MAAM,2BAA2B,QAAS,EAAC,SAAsB,EAAK,GAAK,CAAC,KAAK,CAAC,UAAU,WAAY,EAAC,cAAa,EAAM,cAAa,EAAM,SAAsB,EAAK,IAAI,CAAC,UAAU,oDAAoD,YAAY,SAAS,iBAAkB,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,UAAU,oCAAoC,UAAU,MAAM,CAAC,OAAQ,EAAC,KAAK,UAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gCAA+B,qBAAwB,WAAW,KAAK,WAAW,SAAS,CAAc,EAAKA,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,UAAU,oDAAoD,YAAY,SAAS,wBAAyB,EAAC,AAAC,EAAC,CAAC,UAAU,oCAAoC,4BAA4B,MAAM,CAAC,OAAQ,EAAC,KAAK,4BAA4B,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAY,EAAC,0BAAA,EAAgC,EAAC,CAAC,KAAK,CAAC,UAAU,WAAY,EAAC,0BAAA,EAAgC,EAAC,CAAC,KAAK,CAAC,UAAU,WAAY,EAAC,0BAAA,EAAgC,CAAC,EAAC,SAAS,GAA6B,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,SAAsB,EAAKD,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU,EAAe,EAAG,EAAC,UAAU,CAAC,UAAU,EAAe,EAAG,CAAC,EAAC,SAAsB,EAAKN,EAAc,CAAC,WAAU,EAAM,OAAO,OAAO,GAAG,YAAY,UAAU,QAAQ,UAAU,uEAAuE,UAAU,uEAAuE,SAAS,YAAY,UAAU,UAAU,UAAU,EAAe,GAAG,UAAU,OAAO,WAAU,EAAK,QAAQ,YAAY,WAAU,EAAM,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAKM,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,oBAAqB,CAAC,EAAC,SAAsB,EAAK,EAA0B,CAAC,MAAM,qBAAqB,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,SAAsB,EAAKL,EAAwB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAO,EAAC,MAAM,OAAO,UAAU,uEAAwE,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAM,GAAsB,CAAC,UAAU,iBAAiB,SAAS,CAAc,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,SAAsB,EAAKC,EAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAc,SAAS,GAAG,YAAY,SAAS,YAAY,UAAS,EAAM,cAAa,EAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,OAAO,OAAO,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsB,EAAM,EAAO,IAAI,CAAC,UAAU,oCAAoC,SAAS,KAAK,SAAS,SAAS,CAAc,EAAKK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,KAAK,CAAC,UAAU,oDAAoD,YAAY,MAAM,2BAA2B,+BAA+B,kEAAmE,EAAC,SAAS,kBAAmB,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,OAAQ,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAY,EAAC,0BAAA,EAAgC,EAAC,CAAC,KAAK,CAAC,UAAU,WAAY,EAAC,0BAAA,EAAgC,EAAC,CAAC,KAAK,CAAC,UAAU,WAAY,EAAC,0BAAA,EAAgC,CAAC,EAAC,SAAS,GAA6B,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,SAAsB,EAAKD,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU,EAAe,EAAG,EAAC,UAAU,CAAC,UAAU,EAAe,EAAG,CAAC,EAAC,SAAsB,EAAKN,EAAc,CAAC,WAAU,EAAM,OAAO,OAAO,GAAG,YAAY,UAAU,QAAQ,UAAU,uEAAuE,UAAU,uEAAuE,SAAS,YAAY,UAAU,mBAAmB,UAAU,EAAe,GAAG,UAAU,OAAO,WAAU,EAAK,QAAQ,YAAY,WAAU,EAAM,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,SAAsB,EAAKM,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAY,EAAC,UAAU,CAAC,QAAQ,WAAY,CAAC,EAAC,SAAsB,EAAKH,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAO,EAAC,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAK,MAAM,CAAC,UAAU,EAAG,EAAkB,GAAG,EAAsB,CAAC,GAAG,SAAU,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,AAAE,EAAC,CAAOK,GAAI,CAAC,mFAAmF,GAAGJ,EAAS,cAAc,0HAA0H,gFAAgF,sVAAsV,qJAAqJ,iUAAiU,iRAAiR,6oBAA6oB,iRAAiR,+nBAA+nB,wLAAwL,sMAAsM,6aAA6a,wMAAwM,gJAAgJ,yGAAyG,+QAA+Q,0dAA0d,u0DAAu0D,6FAA6F,mHAAmHA,EAAS,cAAc,0KAA0K,2FAA2FA,EAAS,cAAc,uPAAuP,GAAA,GAAmB,GAAA,GAAoB,GAAA,GAAoB,GAAA,GAAoB,+bAAgc,EASxpqB,EAAgB,GAAQ,GAAUI,GAAI,eAAe,IAAgB,EAAgB,EAAgB,YAAY,UAAU,EAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAK,EAAC,GAAS,EAAgB,CAAC,CAAC,eAAc,EAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,wFAAwF,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,wFAAwF,OAAO,KAAM,CAAC,CAAC,EAAC,GAAG,EAAY,GAAG,EAAgB,GAAG,GAAmB,GAAG,GAA6B,GAAG,GAAc,GAAG,GAAY,GAAG,EAAA,GAA0C,CAAC,GAAG,EAAA,GAA2C,CAAC,GAAG,EAAA,GAA2C,CAAC,GAAG,EAAA,GAA2C,AAAC,EAAC,CAAC,8BAA6B,CAAK,EAAC,CAC94E,GAAqB,CAAA,QAAW,SAAW,MAAQ,sBAAwB,wBAA0B,CAAE,cAAe,uBAAyB,8BAAgC,yBAA2B,yBAA2B,oCAAsC,2CAA6C,qLAAqN,gCAAkC,OAAQ,CAAC,QAAS,MAAQ,qBAAuB,CAAA,sBAAyB,GAAI,CAAC,qBAAsB,CAAA,KAAQ,UAAW,CAAC,CAAC"}