{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/rv5ODQ7THZgkHbGAXsi1/YCTziPmUUyh64LuwT1TH/Typing.js", "ssg:https://framerusercontent.com/modules/dlchJvqhjKo1FlcQ2IYs/7VrwDVRqjfAWI86HZ4vb/SamPuvXmb.js", "ssg:https://framerusercontent.com/modules/mdSgvN0ZSP9SARh85APf/73opurrBAOTrUUkcSA9a/Z2zrq6lIe.js", "ssg:https://framerusercontent.com/modules/OgiHiiQzYaTAwf0pnpEB/2h2EgZuPGqeXysfeZRf0/mDOTgt7mE.js", "ssg:https://framerusercontent.com/modules/nSZEaGCbHnD7h7o219qR/Pjlgd9Afm4iClky3vGEJ/Ca6xqpDaS.js", "ssg:https://framerusercontent.com/modules/TE8OocpdCgwoaGePDSwx/i944HTgdyZi5f57WqKgT/JTX7dVa3E.js", "ssg:https://framerusercontent.com/modules/1x7Brg3Qkit5mBJKJ295/bSUYlfpkbeJ9q5f6WZZR/oPhlCzN52.js", "ssg:https://framerusercontent.com/modules/oylyKcswGgZFhOrtjDo3/p9SqYIjX4Dl64qd1AOAA/Rqn19GlsK.js", "ssg:https://framerusercontent.com/modules/MfJwmbJZlbcWUpZnLajB/4EVB6ZsU2QLFTg5hsqQR/VVfIW6Mkw.js", "ssg:https://framerusercontent.com/modules/aWlEyu5WJteFXrgzh7MT/1ktpxh9Esg6W3bdlDxpt/WJCaoUaFT-0.js", "ssg:https://framerusercontent.com/modules/aWlEyu5WJteFXrgzh7MT/1ktpxh9Esg6W3bdlDxpt/WJCaoUaFT-1.js", "ssg:https://framerusercontent.com/modules/aWlEyu5WJteFXrgzh7MT/1ktpxh9Esg6W3bdlDxpt/WJCaoUaFT-2.js", "ssg:https://framerusercontent.com/modules/aWlEyu5WJteFXrgzh7MT/1ktpxh9Esg6W3bdlDxpt/WJCaoUaFT-3.js", "ssg:https://framerusercontent.com/modules/aWlEyu5WJteFXrgzh7MT/1ktpxh9Esg6W3bdlDxpt/WJCaoUaFT.js", "ssg:https://framerusercontent.com/modules/jJnFjQTjZNHWllgTmRyv/GpCTd4nxB9Ekk29H9Yjn/WJCaoUaFT.js", "ssg:https://framerusercontent.com/modules/mE2EkmXAnEg5PiGC94k4/B8GOGoEuWlLVKD5nBq9y/Home_Form.js", "ssg:https://framerusercontent.com/modules/PDwT7MGW7XR1nuaDN8xA/R9vpG50Mm1UfraJcz117/bLOjXTcmC.js", "ssg:https://framerusercontent.com/modules/VZSURoLVeyAlMYFqGp7g/ttLOuPkmK2DvQlt5BO4s/CpA5ppCCp.js", "ssg:https://framerusercontent.com/modules/JfTNV93gHMX0ymoVl9MM/3LCQZOeqSdhNASA1ZUBh/LnfYZ6YjK.js", "ssg:https://framerusercontent.com/modules/K7xzBz6rREZyk8C8xL3S/X83N4OqGisOluT7hVsU0/SwetY06FA.js", "ssg:https://framerusercontent.com/modules/DNERbQ8pSmFcDtkkQNGD/I0SK8OoiRGKQ7iTFeZot/SwetY06FA.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";// Define the Typing component\nexport default function Typing({content,maxDuration}){const[displayedText,setDisplayedText]=useState(\"\");const[index,setIndex]=useState(0);// Replace newline characters with <br> tags\nconst formattedContent=content.replace(/\\n/g,\"<br>\");const typingSpeed=maxDuration/formattedContent.length// Calculate speed based on content length\n;useEffect(()=>{// Reset displayed text and index when content changes\nsetDisplayedText(\"\");setIndex(0);},[content,maxDuration]);useEffect(()=>{if(index<formattedContent.length){const timeout=setTimeout(()=>{setDisplayedText(prev=>prev+formattedContent[index]);setIndex(prev=>prev+1);// Scroll to the bottom to keep the last word visible\nconst contentDiv=document.getElementById(\"content\");if(contentDiv){contentDiv.scrollTop=contentDiv.scrollHeight;}},typingSpeed);return()=>clearTimeout(timeout);}else{setTimeout(()=>{document.getElementById(\"content\").scrollTo({top:0,behavior:\"smooth\"});},500)// Delay to ensure the scroll is visible\n;}},[index,formattedContent,typingSpeed]);return /*#__PURE__*/_jsx(\"div\",{style:containerStyle,children:/*#__PURE__*/_jsx(\"div\",{id:\"content\",style:typingStyle,dangerouslySetInnerHTML:{__html:displayedText}})});}// Define property controls\naddPropertyControls(Typing,{content:{type:ControlType.String,title:\"Content\",defaultValue:`<b>Quick Tips for Healthy Eating</b>\n\n<b>Introduction</b>\nImportance of healthy eating in daily life.\n\n<b>Section 1: Balanced Diet Basics</b>\nKey components: fruits, vegetables, proteins, whole grains.\n\n<b>Section 2: Simple Tips</b>\n- Drink more water.\n- Opt for whole foods over processed ones.\n- Control portion sizes.\n\n<b>Section 3: Easy Meal Ideas</b>\nHealthy breakfast, lunch, and dinner suggestions.\n<img src=\"https://via.placeholder.com/240x120\" width=\"240\" height=\"120\" alt=\"Healthy Meal\">\n\n<b>Conclusion</b>\nRecap tips and encourage starting small.\n\n<b>Additional Resources</b>\nLinks to further reading on healthy eating.`},maxDuration:{type:ControlType.Number,title:\"Max Duration\",defaultValue:3e3,min:1e3,max:1e5,step:100}});// Styles are written in object syntax\nconst containerStyle={width:\"100%\",height:\"400px\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",overflow:\"hidden\"};const typingStyle={width:\"100%\",maxWidth:\"600px\",whiteSpace:\"pre-wrap\",fontWeight:\"normal\",fontSize:\"16px\",fontFamily:\"Inter\",letterSpacing:\"-0.03em\",lineHeight:\"1.5em\",overflowY:\"auto\",height:\"400px\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Typing\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Typing.map", "// Generated by Framer (97d1eee)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Manrope-600\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_A87jxeN7B.woff2\",weight:\"600\"},{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-pnzEH .framer-styles-preset-10acoub:not(.rich-text-wrapper), .framer-pnzEH .framer-styles-preset-10acoub.rich-text-wrapper h3 { --framer-font-family: \"Manrope\", \"Manrope 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: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -1px; --framer-line-height: 1.5em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, #19154e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-pnzEH\";\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 (abcfa95)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./Z2zrq6lIe-0.js\";import*as localizedValues1 from\"./Z2zrq6lIe-1.js\";import*as localizedValues2 from\"./Z2zrq6lIe-2.js\";import*as localizedValues3 from\"./Z2zrq6lIe-3.js\";const cycleOrder=[\"WzSuiqQCb\"];const serializationHash=\"framer-nACKg\";const variantClassNames={WzSuiqQCb:\"framer-v-15jy269\"};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 valuesByLocaleId={CGwg1K5Ui:localizedValues2,iXQKf8Thp:localizedValues,jIAtOxHsJ:localizedValues3,q2zyzADM1:localizedValues1};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({buttonText,click,height,id,width,...props})=>{var _ref;return{...props,bxgbZ5nBa:click!==null&&click!==void 0?click:props.bxgbZ5nBa,JPSU_6228:(_ref=buttonText!==null&&buttonText!==void 0?buttonText:props.JPSU_6228)!==null&&_ref!==void 0?_ref:\"Start Now\"};};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,bxgbZ5nBa,JPSU_6228,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WzSuiqQCb\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap2psz1q=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(bxgbZ5nBa){const res=await bxgbZ5nBa(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-15jy269\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"WzSuiqQCb\",onTap:onTap2psz1q,ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:\"linear-gradient(108deg, rgb(150, 63, 255) 0%, rgb(46, 66, 255) 100%)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)))\"},children:\"Start Now\"})}),className:\"framer-1vpxgeu\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"K9_a8DYtS\",style:{\"--extracted-r6o4lv\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:JPSU_6228,verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nACKg.framer-1v7p2on, .framer-nACKg .framer-1v7p2on { display: block; }\",\".framer-nACKg.framer-15jy269 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 15px; position: relative; width: 150px; will-change: var(--framer-will-change-override, transform); }\",\".framer-nACKg .framer-1vpxgeu { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nACKg.framer-15jy269 { gap: 0px; } .framer-nACKg.framer-15jy269 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-nACKg.framer-15jy269 > :first-child { margin-left: 0px; } .framer-nACKg.framer-15jy269 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50.5\n * @framerIntrinsicWidth 150\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"bxgbZ5nBa\":\"click\",\"JPSU_6228\":\"buttonText\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZ2zrq6lIe=withCSS(Component,css,\"framer-nACKg\");export default FramerZ2zrq6lIe;FramerZ2zrq6lIe.displayName=\"Gradient Button\";FramerZ2zrq6lIe.defaultProps={height:50.5,width:150};addPropertyControls(FramerZ2zrq6lIe,{bxgbZ5nBa:{title:\"Click\",type:ControlType.EventHandler},JPSU_6228:{defaultValue:\"Start Now\",displayTextArea:false,title:\"Button Text\",type:ControlType.String}});addFonts(FramerZ2zrq6lIe,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZ2zrq6lIe\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"150\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"50.5\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"bxgbZ5nBa\\\":\\\"click\\\",\\\"JPSU_6228\\\":\\\"buttonText\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Z2zrq6lIe.map", "// Generated by Framer (fd7a51d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Lottie}from\"https://framerusercontent.com/modules/YbkSqZ7STzW5WsMb1yan/7oWoX9MqdnxameM59dqC/Lottie.js\";import{withJiggleOnVisible,withShake}from\"https://framerusercontent.com/modules/SgyPsVAyTNfkXKeWjphd/SZoMyX1A7T2BGLwwx4II/Shake.js\";import Typing from\"https://framerusercontent.com/modules/rv5ODQ7THZgkHbGAXsi1/YCTziPmUUyh64LuwT1TH/Typing.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/chfqVvp5MbMlwroOWHHC/mBTorn4HtyTZGquSmUV7/i59KN99_1.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/dlchJvqhjKo1FlcQ2IYs/7VrwDVRqjfAWI86HZ4vb/SamPuvXmb.js\";import GradientButton,*as GradientButtonInfo from\"https://framerusercontent.com/modules/mdSgvN0ZSP9SARh85APf/73opurrBAOTrUUkcSA9a/Z2zrq6lIe.js\";const TypingFonts=getFonts(Typing);const GradientButtonFonts=getFonts(GradientButton);const GradientButtonWithJiggleOnVisibleWithMappedReactProps1rmg27t=withMappedReactProps(withJiggleOnVisible(GradientButton),GradientButtonInfo);const ImageWithShake=withShake(Image);const LottieFonts=getFonts(Lottie);const cycleOrder=[\"V_AiReNkV\",\"VYlPr6bas\",\"mTtpwXdgi\",\"GAlWdDZuj\",\"GVqBEVYzz\",\"a2Cddtn6g\",\"yDUFpZaYc\",\"OxlWDpHlC\",\"W05jWnKQr\",\"V8w9do_0b\",\"Gpa3WDzcb\",\"hotpYsrNM\",\"C6YGCpREV\",\"mpL_7V5p9\",\"KN11ljbPe\",\"MXeOOPQLz\",\"a3YE5eixP\",\"xf3X0JQ4P\",\"lZ89OYYli\",\"fOuiqAZql\",\"hiaSJMTZo\",\"wRhrBfSap\",\"f4mFHvcIz\",\"bX_boGcK5\"];const serializationHash=\"framer-0d31r\";const variantClassNames={a2Cddtn6g:\"framer-v-10dk0ct\",a3YE5eixP:\"framer-v-16g8gs8\",bX_boGcK5:\"framer-v-15rn3o\",C6YGCpREV:\"framer-v-4hlm90\",f4mFHvcIz:\"framer-v-1rk3t9y\",fOuiqAZql:\"framer-v-1xnld78\",GAlWdDZuj:\"framer-v-1qwmvwe\",Gpa3WDzcb:\"framer-v-ikzqrh\",GVqBEVYzz:\"framer-v-d4765r\",hiaSJMTZo:\"framer-v-1o59919\",hotpYsrNM:\"framer-v-rwzek0\",KN11ljbPe:\"framer-v-2evt5z\",lZ89OYYli:\"framer-v-12zvtld\",mpL_7V5p9:\"framer-v-kzm2sc\",mTtpwXdgi:\"framer-v-t81dm9\",MXeOOPQLz:\"framer-v-xm7om4\",OxlWDpHlC:\"framer-v-1a7rnmf\",V_AiReNkV:\"framer-v-1gs9hz5\",V8w9do_0b:\"framer-v-bqb0kr\",VYlPr6bas:\"framer-v-1vttu5r\",W05jWnKQr:\"framer-v-1xkt90s\",wRhrBfSap:\"framer-v-3jttw3\",xf3X0JQ4P:\"framer-v-fihj0l\",yDUFpZaYc:\"framer-v-1tt1mcy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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 humanReadableVariantMap={\"Answer Mobile - 1\":\"hotpYsrNM\",\"Answer Mobile - 4\":\"MXeOOPQLz\",\"Answer Mobile \":\"V8w9do_0b\",\"Answer Mobilee - 2\":\"mpL_7V5p9\",\"Answer-2-Manrope\":\"fOuiqAZql\",\"answer-2\":\"GAlWdDZuj\",\"Answer-3-Manrope\":\"wRhrBfSap\",\"answer-3\":\"a2Cddtn6g\",\"Answer-4-Manrope\":\"bX_boGcK5\",\"answer-4\":\"OxlWDpHlC\",\"Answer-Manrope\":\"xf3X0JQ4P\",\"Form \":\"V_AiReNkV\",\"Form Mobile - 2\":\"C6YGCpREV\",\"Form Mobile - 4\":\"KN11ljbPe\",\"Form Mobile\":\"W05jWnKQr\",\"Form Moblie - 1\":\"Gpa3WDzcb\",\"Form-2-Manrope\":\"lZ89OYYli\",\"form-2\":\"mTtpwXdgi\",\"Form-3-Manrope\":\"hiaSJMTZo\",\"Form-4-Manrope\":\"f4mFHvcIz\",\"form-4\":\"yDUFpZaYc\",\"Form-Manrope\":\"a3YE5eixP\",\"from-3\":\"GVqBEVYzz\",Answer:\"VYlPr6bas\"};const getProps=({answer1,answer2,height,id,opacity,question1,question2,socialIcon,socialMediaContent,socialMediaName,visible,width,...props})=>{return{...props,AEwUywzAG:answer2??props.AEwUywzAG??\"05\",OhhhbOSOA:socialMediaContent??props.OhhhbOSOA??\"<b>Quick Tips for Healthy Eating</b><br><br> <b>Introduction</b><br> Importance of healthy eating in daily life.<br><br> <b>Section 1: Balanced Diet Basics</b><br> Key components: fruits, vegetables, proteins, whole grains.<br><br> <b>Section 2: Simple Tips</b><br> - Drink more water.<br> - Opt for whole foods over processed ones.<br> - Control portion sizes.<br><br> <b>Section 3: Easy Meal Ideas</b><br> Healthy breakfast, lunch, and dinner suggestions.<br><br><b>Conclusion</b><br> Recap tips and encourage starting small.<br><br> <b>Additional Resources</b><br> Links to further reading on healthy eating.\",rxlCpwMSw:socialIcon??props.rxlCpwMSw??{src:\"https://framerusercontent.com/images/33Ax9VN58qtLETQG8ztISsI7K8.svg\"},s3AZBuxuh:question1??props.s3AZBuxuh??\"\uD83D\uDCEB\\xa0 What is your post about?\",s9oC_wr6V:visible??props.s9oC_wr6V??true,TVrQPHnoZ:opacity??props.TVrQPHnoZ??1,variant:humanReadableVariantMap[props.variant]??props.variant??\"V_AiReNkV\",vptZktgfC:question2??props.vptZktgfC??\"\uD83D\uDD0D\\xa0 No. of captions required?\",WIXWxghO3:answer1??props.WIXWxghO3??\"If you are going to use a embarrassing passage of Lorem  Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text.\\n\\n\\n\",XxMuE0Szy:socialMediaName??props.XxMuE0Szy??\"Social Media Tools\"};};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,rxlCpwMSw,XxMuE0Szy,s3AZBuxuh,WIXWxghO3,vptZktgfC,AEwUywzAG,OhhhbOSOA,TVrQPHnoZ,s9oC_wr6V,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"V_AiReNkV\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1x2b43m=activeVariantCallback(async(...args)=>{setVariant(\"V_AiReNkV\");});const onTap11jcnv2=activeVariantCallback(async(...args)=>{setVariant(\"mTtpwXdgi\");});const onTapipfbm1=activeVariantCallback(async(...args)=>{setVariant(\"GVqBEVYzz\");});const onTap1oiux04=activeVariantCallback(async(...args)=>{setVariant(\"OxlWDpHlC\");});const onTappkoxyf=activeVariantCallback(async(...args)=>{setVariant(\"W05jWnKQr\");});const onTap1ula4ym=activeVariantCallback(async(...args)=>{setVariant(\"Gpa3WDzcb\");});const onTapsdmoeb=activeVariantCallback(async(...args)=>{setVariant(\"C6YGCpREV\");});const onTaphad5lm=activeVariantCallback(async(...args)=>{setVariant(\"KN11ljbPe\");});const onTap1ynj3yp=activeVariantCallback(async(...args)=>{setVariant(\"a3YE5eixP\");});const onTap1su5pg7=activeVariantCallback(async(...args)=>{setVariant(\"lZ89OYYli\");});const onTap1k54dsx=activeVariantCallback(async(...args)=>{setVariant(\"hiaSJMTZo\");});const onTap1vcgdvm=activeVariantCallback(async(...args)=>{setVariant(\"f4mFHvcIz\");});const bxgbZ5nBar19pse=activeVariantCallback(async(...args)=>{setVariant(\"VYlPr6bas\");});const bxgbZ5nBapeb836=activeVariantCallback(async(...args)=>{setVariant(\"V8w9do_0b\");});const bxgbZ5nBa1bn3n7p=activeVariantCallback(async(...args)=>{setVariant(\"hotpYsrNM\");});const bxgbZ5nBa1o0y1qv=activeVariantCallback(async(...args)=>{setVariant(\"mpL_7V5p9\");});const bxgbZ5nBa1sionj0=activeVariantCallback(async(...args)=>{setVariant(\"MXeOOPQLz\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"VYlPr6bas\",\"GAlWdDZuj\",\"a2Cddtn6g\",\"OxlWDpHlC\",\"V8w9do_0b\",\"hotpYsrNM\",\"mpL_7V5p9\",\"MXeOOPQLz\",\"xf3X0JQ4P\",\"fOuiqAZql\",\"wRhrBfSap\",\"bX_boGcK5\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"VYlPr6bas\",\"GAlWdDZuj\",\"a2Cddtn6g\",\"OxlWDpHlC\",\"V8w9do_0b\",\"hotpYsrNM\",\"mpL_7V5p9\",\"MXeOOPQLz\",\"xf3X0JQ4P\",\"fOuiqAZql\",\"wRhrBfSap\",\"bX_boGcK5\"].includes(baseVariant))return false;return true;};const isDisplayed2=value=>{if([\"VYlPr6bas\",\"GAlWdDZuj\",\"a2Cddtn6g\",\"OxlWDpHlC\",\"V8w9do_0b\",\"hotpYsrNM\",\"mpL_7V5p9\",\"MXeOOPQLz\",\"xf3X0JQ4P\",\"fOuiqAZql\",\"wRhrBfSap\",\"bX_boGcK5\"].includes(baseVariant))return false;return value;};const isDisplayed3=()=>{if([\"W05jWnKQr\",\"Gpa3WDzcb\",\"C6YGCpREV\",\"KN11ljbPe\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1gs9hz5\",className,classNames),\"data-framer-name\":\"Form \",layoutDependency:layoutDependency,layoutId:\"V_AiReNkV\",ref:ref??ref1,style:{...style},...addPropertyOverrides({a2Cddtn6g:{\"data-framer-name\":\"answer-3\"},a3YE5eixP:{\"data-framer-name\":\"Form-Manrope\"},bX_boGcK5:{\"data-framer-name\":\"Answer-4-Manrope\"},C6YGCpREV:{\"data-framer-name\":\"Form Mobile - 2\"},f4mFHvcIz:{\"data-framer-name\":\"Form-4-Manrope\"},fOuiqAZql:{\"data-framer-name\":\"Answer-2-Manrope\"},GAlWdDZuj:{\"data-framer-name\":\"answer-2\"},Gpa3WDzcb:{\"data-framer-name\":\"Form Moblie - 1\"},GVqBEVYzz:{\"data-framer-name\":\"from-3\"},hiaSJMTZo:{\"data-framer-name\":\"Form-3-Manrope\"},hotpYsrNM:{\"data-framer-name\":\"Answer Mobile - 1\"},KN11ljbPe:{\"data-framer-name\":\"Form Mobile - 4\"},lZ89OYYli:{\"data-framer-name\":\"Form-2-Manrope\"},mpL_7V5p9:{\"data-framer-name\":\"Answer Mobilee - 2\"},mTtpwXdgi:{\"data-framer-name\":\"form-2\"},MXeOOPQLz:{\"data-framer-name\":\"Answer Mobile - 4\"},OxlWDpHlC:{\"data-framer-name\":\"answer-4\"},V8w9do_0b:{\"data-framer-name\":\"Answer Mobile \"},VYlPr6bas:{\"data-framer-name\":\"Answer\"},W05jWnKQr:{\"data-framer-name\":\"Form Mobile\"},wRhrBfSap:{\"data-framer-name\":\"Answer-3-Manrope\"},xf3X0JQ4P:{\"data-framer-name\":\"Answer-Manrope\"},yDUFpZaYc:{\"data-framer-name\":\"form-4\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19xdv5y\",layoutDependency:layoutDependency,layoutId:\"Y1sQhgawc\",style:{backgroundColor:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 12px 38px 0px rgba(30, 32, 34, 0.12)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||551)-0-628)/2+0+0)+0+0),pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"},className:\"framer-1w8ojob\",layoutDependency:layoutDependency,layoutId:\"xHhM_zX2L\",...addPropertyOverrides({a2Cddtn6g:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||576.5)-0-576.6)/2+0+0)+0+0),pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},a3YE5eixP:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-636.4)/2+0+0)+0+0),pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},bX_boGcK5:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||585)-0-585)/2+0+0)+0+0),pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},C6YGCpREV:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||492)-0-699.4)/2+0+0)+0+0),pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},f4mFHvcIz:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||560)-0-636.4)/2+0+0)+0+0),pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},fOuiqAZql:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-585)/2+0+0)+0+0),pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},GAlWdDZuj:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-576.6)/2+0+0)+0+0),pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},Gpa3WDzcb:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||492)-0-699.4)/2+0+0)+0+0),pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},GVqBEVYzz:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-628)/2+0+0)+0+0),pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},hiaSJMTZo:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-636.4)/2+0+0)+0+0),pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},hotpYsrNM:{background:{alt:\"\",fit:\"fit\",pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},KN11ljbPe:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||492)-0-699.4)/2+0+0)+0+0),pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},lZ89OYYli:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-636.4)/2+0+0)+0+0),pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},mpL_7V5p9:{background:{alt:\"\",fit:\"fit\",pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},mTtpwXdgi:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-628)/2+0+0)+0+0),pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},MXeOOPQLz:{background:{alt:\"\",fit:\"fit\",pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},OxlWDpHlC:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||576.5)-0-576.6)/2+0+0)+0+0),pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},V8w9do_0b:{background:{alt:\"\",fit:\"fit\",pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},VYlPr6bas:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-576.6)/2+0+0)+0+0),pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},W05jWnKQr:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||492)-0-699.4)/2+0+0)+0+0),pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},wRhrBfSap:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||585)-0-585)/2+0+0)+0+0),pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},xf3X0JQ4P:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-585)/2+0+0)+0+0),pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},yDUFpZaYc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||551.5)-0-628)/2+0+0)+0+0),pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-120poai\",layoutDependency:layoutDependency,layoutId:\"MUMLp96h4\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10k0emv\",layoutDependency:layoutDependency,layoutId:\"Qi71pgua5\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tgii4w\",layoutDependency:layoutDependency,layoutId:\"mHJ0BAEPK\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||551)-0-628)/2+0+0)+0+33+20+0+0+1.8000000000000007),sizes:\"30px\",...toResponsiveImage(rxlCpwMSw),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-tjj3k6\",layoutDependency:layoutDependency,layoutId:\"sP8DP18SA\",...addPropertyOverrides({a2Cddtn6g:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||576.5)-0-576.6)/2+0+0)+0+33+20+0+0+1.8000000000000007),sizes:\"30px\",...toResponsiveImage(rxlCpwMSw),...{positionX:\"center\",positionY:\"center\"}}},a3YE5eixP:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-636.4)/2+0+0)+0+33+20+0+0+6),sizes:\"30px\",...toResponsiveImage(rxlCpwMSw),...{positionX:\"center\",positionY:\"center\"}}},bX_boGcK5:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||585)-0-585)/2+0+0)+0+33+20+0+0+6),sizes:\"30px\",...toResponsiveImage(rxlCpwMSw),...{positionX:\"center\",positionY:\"center\"}}},C6YGCpREV:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||492)-0-699.4)/2+0+0)+0+33+10+0+0+3.1999999999999993),sizes:\"20px\",...toResponsiveImage(rxlCpwMSw),...{positionX:\"center\",positionY:\"center\"}}},f4mFHvcIz:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||560)-0-636.4)/2+0+0)+0+33+20+0+0+6),sizes:\"30px\",...toResponsiveImage(rxlCpwMSw),...{positionX:\"center\",positionY:\"center\"}}},fOuiqAZql:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-585)/2+0+0)+0+33+20+0+0+6),sizes:\"30px\",...toResponsiveImage(rxlCpwMSw),...{positionX:\"center\",positionY:\"center\"}}},GAlWdDZuj:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-576.6)/2+0+0)+0+33+20+0+0+1.8000000000000007),sizes:\"30px\",...toResponsiveImage(rxlCpwMSw),...{positionX:\"center\",positionY:\"center\"}}},Gpa3WDzcb:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||492)-0-699.4)/2+0+0)+0+33+10+0+0+3.1999999999999993),sizes:\"20px\",...toResponsiveImage(rxlCpwMSw),...{positionX:\"center\",positionY:\"center\"}}},GVqBEVYzz:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-628)/2+0+0)+0+33+20+0+0+1.8000000000000007),sizes:\"30px\",...toResponsiveImage(rxlCpwMSw),...{positionX:\"center\",positionY:\"center\"}}},hiaSJMTZo:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-636.4)/2+0+0)+0+33+20+0+0+6),sizes:\"30px\",...toResponsiveImage(rxlCpwMSw),...{positionX:\"center\",positionY:\"center\"}}},hotpYsrNM:{background:{alt:\"\",fit:\"fit\",sizes:\"20px\",...toResponsiveImage(rxlCpwMSw),...{positionX:\"center\",positionY:\"center\"}}},KN11ljbPe:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||492)-0-699.4)/2+0+0)+0+33+10+0+0+3.1999999999999993),sizes:\"20px\",...toResponsiveImage(rxlCpwMSw),...{positionX:\"center\",positionY:\"center\"}}},lZ89OYYli:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-636.4)/2+0+0)+0+33+20+0+0+6),sizes:\"30px\",...toResponsiveImage(rxlCpwMSw),...{positionX:\"center\",positionY:\"center\"}}},mpL_7V5p9:{background:{alt:\"\",fit:\"fit\",sizes:\"20px\",...toResponsiveImage(rxlCpwMSw),...{positionX:\"center\",positionY:\"center\"}}},mTtpwXdgi:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-628)/2+0+0)+0+33+20+0+0+1.8000000000000007),sizes:\"30px\",...toResponsiveImage(rxlCpwMSw),...{positionX:\"center\",positionY:\"center\"}}},MXeOOPQLz:{background:{alt:\"\",fit:\"fit\",sizes:\"20px\",...toResponsiveImage(rxlCpwMSw),...{positionX:\"center\",positionY:\"center\"}}},OxlWDpHlC:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||576.5)-0-576.6)/2+0+0)+0+33+20+0+0+1.8000000000000007),sizes:\"30px\",...toResponsiveImage(rxlCpwMSw),...{positionX:\"center\",positionY:\"center\"}}},V8w9do_0b:{background:{alt:\"\",fit:\"fit\",sizes:\"20px\",...toResponsiveImage(rxlCpwMSw),...{positionX:\"center\",positionY:\"center\"}}},VYlPr6bas:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-576.6)/2+0+0)+0+33+20+0+0+1.8000000000000007),sizes:\"30px\",...toResponsiveImage(rxlCpwMSw),...{positionX:\"center\",positionY:\"center\"}}},W05jWnKQr:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||492)-0-699.4)/2+0+0)+0+33+10+0+0+3.1999999999999993),sizes:\"20px\",...toResponsiveImage(rxlCpwMSw),...{positionX:\"center\",positionY:\"center\"}}},wRhrBfSap:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||585)-0-585)/2+0+0)+0+33+20+0+0+6),sizes:\"30px\",...toResponsiveImage(rxlCpwMSw),...{positionX:\"center\",positionY:\"center\"}}},xf3X0JQ4P:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-585)/2+0+0)+0+33+20+0+0+6),sizes:\"30px\",...toResponsiveImage(rxlCpwMSw),...{positionX:\"center\",positionY:\"center\"}}},yDUFpZaYc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||551.5)-0-628)/2+0+0)+0+33+20+0+0+1.8000000000000007),sizes:\"30px\",...toResponsiveImage(rxlCpwMSw),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Social Media Tools\"})}),className:\"framer-6wfhxs\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"uqTnBx_gY\",style:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:XxMuE0Szy,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({a3YE5eixP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-10acoub\",\"data-styles-preset\":\"SamPuvXmb\",children:\"Social Media Tools\"})}),fonts:[\"Inter\"]},bX_boGcK5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-10acoub\",\"data-styles-preset\":\"SamPuvXmb\",children:\"Social Media Tools\"})}),fonts:[\"Inter\"]},C6YGCpREV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Social Media Tools\"})})},f4mFHvcIz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-10acoub\",\"data-styles-preset\":\"SamPuvXmb\",children:\"Social Media Tools\"})}),fonts:[\"Inter\"]},fOuiqAZql:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-10acoub\",\"data-styles-preset\":\"SamPuvXmb\",children:\"Social Media Tools\"})}),fonts:[\"Inter\"]},Gpa3WDzcb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Social Media Tools\"})})},hiaSJMTZo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-10acoub\",\"data-styles-preset\":\"SamPuvXmb\",children:\"Social Media Tools\"})}),fonts:[\"Inter\"]},hotpYsrNM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Social Media Tools\"})})},KN11ljbPe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Social Media Tools\"})})},lZ89OYYli:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-10acoub\",\"data-styles-preset\":\"SamPuvXmb\",children:\"Social Media Tools\"})}),fonts:[\"Inter\"]},mpL_7V5p9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Social Media Tools\"})})},MXeOOPQLz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Social Media Tools\"})})},V8w9do_0b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Social Media Tools\"})})},W05jWnKQr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Social Media Tools\"})})},wRhrBfSap:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-10acoub\",\"data-styles-preset\":\"SamPuvXmb\",children:\"Social Media Tools\"})}),fonts:[\"Inter\"]},xf3X0JQ4P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-10acoub\",\"data-styles-preset\":\"SamPuvXmb\",children:\"Social Media Tools\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yyorut\",\"data-border\":true,\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"IFkrfpCLX\",onTap:onTap1x2b43m,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(235, 244, 255, 0.4)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},...addPropertyOverrides({a2Cddtn6g:{onTap:onTapipfbm1},bX_boGcK5:{onTap:onTap1vcgdvm},fOuiqAZql:{onTap:onTap1su5pg7},GAlWdDZuj:{onTap:onTap11jcnv2},hotpYsrNM:{onTap:onTap1ula4ym},mpL_7V5p9:{onTap:onTapsdmoeb},MXeOOPQLz:{onTap:onTaphad5lm},OxlWDpHlC:{onTap:onTap1oiux04},V8w9do_0b:{onTap:onTappkoxyf},wRhrBfSap:{onTap:onTap1k54dsx},xf3X0JQ4P:{onTap:onTap1ynj3yp}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:12,pixelWidth:15,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WXZZ5f4xxyLxjyORlANrcWKTL0E.svg\"},className:\"framer-1boaxgj\",layoutDependency:layoutDependency,layoutId:\"axivrJAxx\",...addPropertyOverrides({a2Cddtn6g:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||576.5)-0-576.6)/2+0+0)+0+33+20+0+.40000000000000213+9.399999999999999),pixelHeight:12,pixelWidth:15,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WXZZ5f4xxyLxjyORlANrcWKTL0E.svg\"}},bX_boGcK5:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||585)-0-585)/2+0+0)+0+33+20+0+2.5+11.5),pixelHeight:12,pixelWidth:15,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WXZZ5f4xxyLxjyORlANrcWKTL0E.svg\"}},fOuiqAZql:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-585)/2+0+0)+0+33+20+0+2.5+11.5),pixelHeight:12,pixelWidth:15,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WXZZ5f4xxyLxjyORlANrcWKTL0E.svg\"}},GAlWdDZuj:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-576.6)/2+0+0)+0+33+20+0+.40000000000000213+9.399999999999999),pixelHeight:12,pixelWidth:15,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WXZZ5f4xxyLxjyORlANrcWKTL0E.svg\"}},OxlWDpHlC:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||576.5)-0-576.6)/2+0+0)+0+33+20+0+.40000000000000213+9.399999999999999),pixelHeight:12,pixelWidth:15,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WXZZ5f4xxyLxjyORlANrcWKTL0E.svg\"}},VYlPr6bas:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-576.6)/2+0+0)+0+33+20+0+.40000000000000213+9.399999999999999),pixelHeight:12,pixelWidth:15,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WXZZ5f4xxyLxjyORlANrcWKTL0E.svg\"}},wRhrBfSap:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||585)-0-585)/2+0+0)+0+33+20+0+2.5+11.5),pixelHeight:12,pixelWidth:15,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WXZZ5f4xxyLxjyORlANrcWKTL0E.svg\"}},xf3X0JQ4P:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-585)/2+0+0)+0+33+20+0+2.5+11.5),pixelHeight:12,pixelWidth:15,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WXZZ5f4xxyLxjyORlANrcWKTL0E.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Back\"})}),className:\"framer-gho0ex\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"OkuH3KHr9\",style:{\"--extracted-r6o4lv\":\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bX_boGcK5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qemwmo\",\"data-styles-preset\":\"i59KN99_1\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Back\"})}),fonts:[\"Inter\"]},fOuiqAZql:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qemwmo\",\"data-styles-preset\":\"i59KN99_1\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Back\"})}),fonts:[\"Inter\"]},hotpYsrNM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Back\"})})},mpL_7V5p9:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Back\"})})},MXeOOPQLz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Back\"})})},V8w9do_0b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Back\"})})},wRhrBfSap:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qemwmo\",\"data-styles-preset\":\"i59KN99_1\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Back\"})}),fonts:[\"Inter\"]},xf3X0JQ4P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qemwmo\",\"data-styles-preset\":\"i59KN99_1\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Back\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c627o5\",layoutDependency:layoutDependency,layoutId:\"yNb6kouuR\",style:{backgroundColor:\"rgba(240, 248, 255, 0.5)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bhgg8y\",layoutDependency:layoutDependency,layoutId:\"H0OoetUV1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yep9lm\",layoutDependency:layoutDependency,layoutId:\"qG_XFlJb9\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"\uD83D\uDD8A\uFE0F\\xa0 Enter Blog Topic\"})}),className:\"framer-1ds56w5\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"jXofirJhx\",style:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:s3AZBuxuh,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({a3YE5eixP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"\uD83D\uDCEB\\xa0 What is your post about?\"})}),fonts:[\"FS;Manrope-semibold\"]},f4mFHvcIz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"\uD83D\uDCEB\\xa0 What is your post about?\"})}),fonts:[\"FS;Manrope-semibold\"]},hiaSJMTZo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"\uD83D\uDCEB\\xa0 What is your post about?\"})}),fonts:[\"FS;Manrope-semibold\"]},lZ89OYYli:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"\uD83D\uDCEB\\xa0 What is your post about?\"})}),fonts:[\"FS;Manrope-semibold\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fdav07\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"k3BkSeFUL\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(218, 228, 248)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},variants:{a2Cddtn6g:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(255, 255, 255, 0)\"},bX_boGcK5:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(255, 255, 255, 0)\"},fOuiqAZql:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(255, 255, 255, 0)\"},GAlWdDZuj:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(255, 255, 255, 0)\"},hotpYsrNM:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(255, 255, 255, 0)\"},mpL_7V5p9:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(255, 255, 255, 0)\"},MXeOOPQLz:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(255, 255, 255, 0)\"},OxlWDpHlC:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(255, 255, 255, 0)\"},V8w9do_0b:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(255, 255, 255, 0)\"},VYlPr6bas:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(255, 255, 255, 0)\"},wRhrBfSap:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(255, 255, 255, 0)\"},xf3X0JQ4P:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(255, 255, 255, 0)\"}},children:[isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:[\"If you are going to use a embarrassing passage of Lorem  Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),className:\"framer-oaw4pq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GyGryczE6\",style:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:WIXWxghO3,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({a3YE5eixP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:[\"If you are going to use a embarrassing passage of Lorem  Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),fonts:[\"FS;Manrope-medium\"]},f4mFHvcIz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:[\"If you are going to use a embarrassing passage of Lorem  Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),fonts:[\"FS;Manrope-medium\"]},hiaSJMTZo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:[\"If you are going to use a embarrassing passage of Lorem  Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),fonts:[\"FS;Manrope-medium\"]},lZ89OYYli:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:[\"If you are going to use a embarrassing passage of Lorem  Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),fonts:[\"FS;Manrope-medium\"]}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i06t53-container\",layoutDependency:layoutDependency,layoutId:\"ahRtjDFe8-container\",children:/*#__PURE__*/_jsx(Typing,{content:OhhhbOSOA,height:\"100%\",id:\"ahRtjDFe8\",layoutId:\"ahRtjDFe8\",maxDuration:3e3,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),isDisplayed2(s9oC_wr6V)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ompz6x\",layoutDependency:layoutDependency,layoutId:\"ABhq_jTcG\",style:{opacity:TVrQPHnoZ},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"\uD83D\uDD0D Content Source\"})}),className:\"framer-bngz4k\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"kGxxJdBOl\",style:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vptZktgfC,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({a3YE5eixP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"\uD83D\uDD0D\\xa0 No. of captions required?\"})}),fonts:[\"FS;Manrope-semibold\"]},f4mFHvcIz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"\uD83D\uDD0D\\xa0 No. of captions required?\"})}),fonts:[\"FS;Manrope-semibold\"]},hiaSJMTZo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"\uD83D\uDD0D\\xa0 No. of captions required?\"})}),fonts:[\"FS;Manrope-semibold\"]},lZ89OYYli:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"\uD83D\uDD0D\\xa0 No. of captions required?\"})}),fonts:[\"FS;Manrope-semibold\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hua1lj\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"xEFs170eL\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(218, 228, 248)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Use AI Knowledge\"})}),className:\"framer-ndjq9v\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Yrzn3R0L8\",style:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:AEwUywzAG,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({a3YE5eixP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"05\"})}),fonts:[\"FS;Manrope-medium\"]},f4mFHvcIz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"05\"})}),fonts:[\"FS;Manrope-medium\"]},hiaSJMTZo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"05\"})}),fonts:[\"FS;Manrope-medium\"]},lZ89OYYli:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"05\"})}),fonts:[\"FS;Manrope-medium\"]}},baseVariant,gestureVariant)})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kucqas\",layoutDependency:layoutDependency,layoutId:\"afBaEywIm\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`calc(${componentViewport?.width||\"100vw\"} - 90px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||551)-0-628)/2+0+0)+0+33+20+53.6+25+401.4+0,...addPropertyOverrides({a3YE5eixP:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-636.4)/2+0+0)+0+33+20+62+25+401.4+0},C6YGCpREV:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||492)-0-699.4)/2+0+0)+0+33+10+41.4+10+535+0},f4mFHvcIz:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||560)-0-636.4)/2+0+0)+0+33+20+62+25+401.4+0},Gpa3WDzcb:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||492)-0-699.4)/2+0+0)+0+33+10+41.4+10+535+0},GVqBEVYzz:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-628)/2+0+0)+0+33+20+53.6+25+401.4+0},hiaSJMTZo:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-636.4)/2+0+0)+0+33+20+62+25+401.4+0},KN11ljbPe:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||492)-0-699.4)/2+0+0)+0+33+10+41.4+10+535+0},lZ89OYYli:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-636.4)/2+0+0)+0+33+20+62+25+401.4+0},mTtpwXdgi:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-628)/2+0+0)+0+33+20+53.6+25+401.4+0},W05jWnKQr:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||492)-0-699.4)/2+0+0)+0+33+10+41.4+10+535+0},yDUFpZaYc:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||551.5)-0-628)/2+0+0)+0+33+20+53.6+25+401.4+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-aruqcu-container\",layoutDependency:layoutDependency,layoutId:\"tBfCNQ_mS-container\",children:/*#__PURE__*/_jsx(GradientButtonWithJiggleOnVisibleWithMappedReactProps1rmg27t,{bxgbZ5nBa:bxgbZ5nBar19pse,height:\"100%\",id:\"tBfCNQ_mS\",JPSU_6228:\"Create Content\",layoutId:\"tBfCNQ_mS\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({C6YGCpREV:{bxgbZ5nBa:bxgbZ5nBa1o0y1qv},Gpa3WDzcb:{bxgbZ5nBa:bxgbZ5nBa1bn3n7p},KN11ljbPe:{bxgbZ5nBa:bxgbZ5nBa1sionj0},W05jWnKQr:{bxgbZ5nBa:bxgbZ5nBapeb836}},baseVariant,gestureVariant)})})}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jf8ju0\",layoutDependency:layoutDependency,layoutId:\"OVoaEI8dn\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(ImageWithShake,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||551)-0-628)/2+0+0)+0+33+20+53.6+25+401.4+-77.77227722772275+0+0),pixelHeight:40,pixelWidth:186,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MhmUXDCXZNwap7x4xX7JomjD3A.svg\"},className:\"framer-1hs7hfr\",layoutDependency:layoutDependency,layoutId:\"DZ4IjbE5o\",style:{rotate:15},...addPropertyOverrides({a3YE5eixP:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-636.4)/2+0+0)+0+33+20+62+25+401.4+-77.77227722772275+0+0),pixelHeight:40,pixelWidth:186,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MhmUXDCXZNwap7x4xX7JomjD3A.svg\"}},f4mFHvcIz:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||560)-0-636.4)/2+0+0)+0+33+20+62+25+401.4+-77.77227722772275+0+0),pixelHeight:40,pixelWidth:186,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MhmUXDCXZNwap7x4xX7JomjD3A.svg\"}},GVqBEVYzz:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-628)/2+0+0)+0+33+20+53.6+25+401.4+-77.77227722772275+0+0),pixelHeight:40,pixelWidth:186,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MhmUXDCXZNwap7x4xX7JomjD3A.svg\"}},hiaSJMTZo:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-636.4)/2+0+0)+0+33+20+62+25+401.4+-77.77227722772275+0+0),pixelHeight:40,pixelWidth:186,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MhmUXDCXZNwap7x4xX7JomjD3A.svg\"}},lZ89OYYli:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-636.4)/2+0+0)+0+33+20+62+25+401.4+-77.77227722772275+0+0),pixelHeight:40,pixelWidth:186,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MhmUXDCXZNwap7x4xX7JomjD3A.svg\"}},mTtpwXdgi:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-628)/2+0+0)+0+33+20+53.6+25+401.4+-77.77227722772275+0+0),pixelHeight:40,pixelWidth:186,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MhmUXDCXZNwap7x4xX7JomjD3A.svg\"}},yDUFpZaYc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||551.5)-0-628)/2+0+0)+0+33+20+53.6+25+401.4+-77.77227722772275+0+0),pixelHeight:40,pixelWidth:186,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MhmUXDCXZNwap7x4xX7JomjD3A.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qlbcgl-container\",layoutDependency:layoutDependency,layoutId:\"iUCfjh6z7-container\",style:{rotate:-30,rotateY:180},children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"iUCfjh6z7\",isForwardsDirection:true,layoutId:\"iUCfjh6z7\",loop:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/UzpPCVhjiEHhGb3wnmPTOpXddEM.json\",srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0d31r.framer-rlags8, .framer-0d31r .framer-rlags8 { display: block; }\",\".framer-0d31r.framer-1gs9hz5 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 580px; }\",\".framer-0d31r .framer-19xdv5y { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0d31r .framer-1w8ojob { flex: none; height: 33px; overflow: visible; position: relative; width: 100%; }\",\".framer-0d31r .framer-120poai { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-0d31r .framer-10k0emv, .framer-0d31r .framer-kucqas { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0d31r .framer-1tgii4w { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-0d31r .framer-tjj3k6 { flex: none; height: 30px; overflow: visible; position: relative; width: 30px; }\",\".framer-0d31r .framer-6wfhxs, .framer-0d31r .framer-gho0ex, .framer-0d31r .framer-1ds56w5, .framer-0d31r .framer-bngz4k { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-0d31r .framer-1yyorut { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 8px 18px 8px 18px; position: relative; width: min-content; }\",\".framer-0d31r .framer-1boaxgj { flex: none; height: 14px; overflow: visible; position: relative; width: 14px; }\",\".framer-0d31r .framer-1c627o5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 25px; position: relative; width: 100%; }\",\".framer-0d31r .framer-bhgg8y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0d31r .framer-1yep9lm, .framer-0d31r .framer-1ompz6x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0d31r .framer-1fdav07 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 15px; position: relative; width: 100%; }\",\".framer-0d31r .framer-oaw4pq, .framer-0d31r .framer-ndjq9v { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-0d31r .framer-1i06t53-container { flex: 1 0 0px; height: 350px; position: relative; width: 1px; }\",\".framer-0d31r .framer-1hua1lj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 15px; position: relative; width: 100%; }\",\".framer-0d31r .framer-aruqcu-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-0d31r .framer-jf8ju0 { 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; left: 119%; overflow: visible; padding: 0px; position: absolute; top: -46%; width: min-content; z-index: 1; }\",\".framer-0d31r .framer-1hs7hfr { flex: none; height: 40px; overflow: visible; position: relative; width: 186px; }\",\".framer-0d31r .framer-qlbcgl-container { aspect-ratio: 1.2857142857142858 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); position: relative; width: 90px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0d31r.framer-1gs9hz5, .framer-0d31r .framer-19xdv5y, .framer-0d31r .framer-120poai, .framer-0d31r .framer-10k0emv, .framer-0d31r .framer-1tgii4w, .framer-0d31r .framer-1yyorut, .framer-0d31r .framer-1c627o5, .framer-0d31r .framer-bhgg8y, .framer-0d31r .framer-1yep9lm, .framer-0d31r .framer-1fdav07, .framer-0d31r .framer-1ompz6x, .framer-0d31r .framer-kucqas, .framer-0d31r .framer-jf8ju0 { gap: 0px; } .framer-0d31r.framer-1gs9hz5 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-0d31r.framer-1gs9hz5 > :first-child, .framer-0d31r .framer-19xdv5y > :first-child, .framer-0d31r .framer-120poai > :first-child, .framer-0d31r .framer-1c627o5 > :first-child, .framer-0d31r .framer-bhgg8y > :first-child, .framer-0d31r .framer-1yep9lm > :first-child, .framer-0d31r .framer-1ompz6x > :first-child, .framer-0d31r .framer-jf8ju0 > :first-child { margin-top: 0px; } .framer-0d31r.framer-1gs9hz5 > :last-child, .framer-0d31r .framer-19xdv5y > :last-child, .framer-0d31r .framer-120poai > :last-child, .framer-0d31r .framer-1c627o5 > :last-child, .framer-0d31r .framer-bhgg8y > :last-child, .framer-0d31r .framer-1yep9lm > :last-child, .framer-0d31r .framer-1ompz6x > :last-child, .framer-0d31r .framer-jf8ju0 > :last-child { margin-bottom: 0px; } .framer-0d31r .framer-19xdv5y > *, .framer-0d31r .framer-jf8ju0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-0d31r .framer-120poai > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-0d31r .framer-10k0emv > *, .framer-0d31r .framer-1tgii4w > *, .framer-0d31r .framer-1fdav07 > *, .framer-0d31r .framer-kucqas > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-0d31r .framer-10k0emv > :first-child, .framer-0d31r .framer-1tgii4w > :first-child, .framer-0d31r .framer-1yyorut > :first-child, .framer-0d31r .framer-1fdav07 > :first-child, .framer-0d31r .framer-kucqas > :first-child { margin-left: 0px; } .framer-0d31r .framer-10k0emv > :last-child, .framer-0d31r .framer-1tgii4w > :last-child, .framer-0d31r .framer-1yyorut > :last-child, .framer-0d31r .framer-1fdav07 > :last-child, .framer-0d31r .framer-kucqas > :last-child { margin-right: 0px; } .framer-0d31r .framer-1yyorut > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-0d31r .framer-1c627o5 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-0d31r .framer-bhgg8y > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-0d31r .framer-1yep9lm > *, .framer-0d31r .framer-1ompz6x > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-0d31r.framer-v-1vttu5r .framer-10k0emv, .framer-0d31r.framer-v-1qwmvwe .framer-10k0emv, .framer-0d31r.framer-v-10dk0ct .framer-10k0emv, .framer-0d31r.framer-v-1a7rnmf .framer-10k0emv, .framer-0d31r.framer-v-fihj0l .framer-10k0emv, .framer-0d31r.framer-v-1xnld78 .framer-10k0emv, .framer-0d31r.framer-v-3jttw3 .framer-10k0emv, .framer-0d31r.framer-v-15rn3o .framer-10k0emv { gap: 47px; justify-content: flex-start; order: 0; }\",\".framer-0d31r.framer-v-1vttu5r .framer-1tgii4w, .framer-0d31r.framer-v-1qwmvwe .framer-1tgii4w, .framer-0d31r.framer-v-10dk0ct .framer-1tgii4w, .framer-0d31r.framer-v-1a7rnmf .framer-1tgii4w, .framer-0d31r.framer-v-rwzek0 .framer-1tgii4w, .framer-0d31r.framer-v-kzm2sc .framer-1tgii4w, .framer-0d31r.framer-v-xm7om4 .framer-1tgii4w, .framer-0d31r.framer-v-fihj0l .framer-1tgii4w, .framer-0d31r.framer-v-1xnld78 .framer-1tgii4w, .framer-0d31r.framer-v-3jttw3 .framer-1tgii4w, .framer-0d31r.framer-v-15rn3o .framer-1tgii4w { flex: none; order: 1; width: min-content; }\",\".framer-0d31r.framer-v-1vttu5r .framer-1yyorut, .framer-0d31r.framer-v-1qwmvwe .framer-1yyorut, .framer-0d31r.framer-v-10dk0ct .framer-1yyorut, .framer-0d31r.framer-v-1a7rnmf .framer-1yyorut, .framer-0d31r.framer-v-fihj0l .framer-1yyorut, .framer-0d31r.framer-v-1xnld78 .framer-1yyorut, .framer-0d31r.framer-v-3jttw3 .framer-1yyorut, .framer-0d31r.framer-v-15rn3o .framer-1yyorut { order: 0; }\",\".framer-0d31r.framer-v-1vttu5r .framer-1c627o5, .framer-0d31r.framer-v-1qwmvwe .framer-1c627o5, .framer-0d31r.framer-v-10dk0ct .framer-1c627o5, .framer-0d31r.framer-v-1a7rnmf .framer-1c627o5, .framer-0d31r.framer-v-fihj0l .framer-1c627o5, .framer-0d31r.framer-v-1xnld78 .framer-1c627o5, .framer-0d31r.framer-v-3jttw3 .framer-1c627o5, .framer-0d31r.framer-v-15rn3o .framer-1c627o5 { gap: 30px; order: 1; }\",\".framer-0d31r.framer-v-1vttu5r .framer-1fdav07, .framer-0d31r.framer-v-1qwmvwe .framer-1fdav07, .framer-0d31r.framer-v-10dk0ct .framer-1fdav07, .framer-0d31r.framer-v-1a7rnmf .framer-1fdav07, .framer-0d31r.framer-v-bqb0kr .framer-1fdav07, .framer-0d31r.framer-v-rwzek0 .framer-1fdav07, .framer-0d31r.framer-v-kzm2sc .framer-1fdav07, .framer-0d31r.framer-v-xm7om4 .framer-1fdav07, .framer-0d31r.framer-v-fihj0l .framer-1fdav07, .framer-0d31r.framer-v-1xnld78 .framer-1fdav07, .framer-0d31r.framer-v-3jttw3 .framer-1fdav07, .framer-0d31r.framer-v-15rn3o .framer-1fdav07 { align-content: flex-start; align-items: flex-start; overflow: hidden; padding: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0d31r.framer-v-1vttu5r .framer-1i06t53-container, .framer-0d31r.framer-v-1qwmvwe .framer-1i06t53-container, .framer-0d31r.framer-v-10dk0ct .framer-1i06t53-container, .framer-0d31r.framer-v-1a7rnmf .framer-1i06t53-container, .framer-0d31r.framer-v-bqb0kr .framer-1i06t53-container, .framer-0d31r.framer-v-rwzek0 .framer-1i06t53-container, .framer-0d31r.framer-v-kzm2sc .framer-1i06t53-container, .framer-0d31r.framer-v-xm7om4 .framer-1i06t53-container, .framer-0d31r.framer-v-fihj0l .framer-1i06t53-container, .framer-0d31r.framer-v-1xnld78 .framer-1i06t53-container, .framer-0d31r.framer-v-3jttw3 .framer-1i06t53-container, .framer-0d31r.framer-v-15rn3o .framer-1i06t53-container { height: 400px; order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0d31r.framer-v-1vttu5r .framer-10k0emv, .framer-0d31r.framer-v-1vttu5r .framer-1c627o5 { gap: 0px; } .framer-0d31r.framer-v-1vttu5r .framer-10k0emv > * { margin: 0px; margin-left: calc(47px / 2); margin-right: calc(47px / 2); } .framer-0d31r.framer-v-1vttu5r .framer-10k0emv > :first-child { margin-left: 0px; } .framer-0d31r.framer-v-1vttu5r .framer-10k0emv > :last-child { margin-right: 0px; } .framer-0d31r.framer-v-1vttu5r .framer-1c627o5 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-0d31r.framer-v-1vttu5r .framer-1c627o5 > :first-child { margin-top: 0px; } .framer-0d31r.framer-v-1vttu5r .framer-1c627o5 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0d31r.framer-v-1qwmvwe .framer-10k0emv, .framer-0d31r.framer-v-1qwmvwe .framer-1c627o5 { gap: 0px; } .framer-0d31r.framer-v-1qwmvwe .framer-10k0emv > * { margin: 0px; margin-left: calc(47px / 2); margin-right: calc(47px / 2); } .framer-0d31r.framer-v-1qwmvwe .framer-10k0emv > :first-child { margin-left: 0px; } .framer-0d31r.framer-v-1qwmvwe .framer-10k0emv > :last-child { margin-right: 0px; } .framer-0d31r.framer-v-1qwmvwe .framer-1c627o5 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-0d31r.framer-v-1qwmvwe .framer-1c627o5 > :first-child { margin-top: 0px; } .framer-0d31r.framer-v-1qwmvwe .framer-1c627o5 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0d31r.framer-v-10dk0ct .framer-10k0emv, .framer-0d31r.framer-v-10dk0ct .framer-1c627o5 { gap: 0px; } .framer-0d31r.framer-v-10dk0ct .framer-10k0emv > * { margin: 0px; margin-left: calc(47px / 2); margin-right: calc(47px / 2); } .framer-0d31r.framer-v-10dk0ct .framer-10k0emv > :first-child { margin-left: 0px; } .framer-0d31r.framer-v-10dk0ct .framer-10k0emv > :last-child { margin-right: 0px; } .framer-0d31r.framer-v-10dk0ct .framer-1c627o5 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-0d31r.framer-v-10dk0ct .framer-1c627o5 > :first-child { margin-top: 0px; } .framer-0d31r.framer-v-10dk0ct .framer-1c627o5 > :last-child { margin-bottom: 0px; } }\",\".framer-0d31r.framer-v-1tt1mcy .framer-qlbcgl-container, .framer-0d31r.framer-v-1rk3t9y .framer-qlbcgl-container { height: var(--framer-aspect-ratio-supported, 93px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0d31r.framer-v-1a7rnmf .framer-10k0emv, .framer-0d31r.framer-v-1a7rnmf .framer-1c627o5 { gap: 0px; } .framer-0d31r.framer-v-1a7rnmf .framer-10k0emv > * { margin: 0px; margin-left: calc(47px / 2); margin-right: calc(47px / 2); } .framer-0d31r.framer-v-1a7rnmf .framer-10k0emv > :first-child { margin-left: 0px; } .framer-0d31r.framer-v-1a7rnmf .framer-10k0emv > :last-child { margin-right: 0px; } .framer-0d31r.framer-v-1a7rnmf .framer-1c627o5 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-0d31r.framer-v-1a7rnmf .framer-1c627o5 > :first-child { margin-top: 0px; } .framer-0d31r.framer-v-1a7rnmf .framer-1c627o5 > :last-child { margin-bottom: 0px; } }\",\".framer-0d31r.framer-v-1xkt90s.framer-1gs9hz5, .framer-0d31r.framer-v-ikzqrh.framer-1gs9hz5, .framer-0d31r.framer-v-rwzek0.framer-1gs9hz5, .framer-0d31r.framer-v-4hlm90.framer-1gs9hz5, .framer-0d31r.framer-v-kzm2sc.framer-1gs9hz5, .framer-0d31r.framer-v-2evt5z.framer-1gs9hz5, .framer-0d31r.framer-v-xm7om4.framer-1gs9hz5 { width: 390px; }\",\".framer-0d31r.framer-v-1xkt90s .framer-120poai, .framer-0d31r.framer-v-bqb0kr .framer-120poai, .framer-0d31r.framer-v-ikzqrh .framer-120poai, .framer-0d31r.framer-v-rwzek0 .framer-120poai, .framer-0d31r.framer-v-4hlm90 .framer-120poai, .framer-0d31r.framer-v-kzm2sc .framer-120poai, .framer-0d31r.framer-v-2evt5z .framer-120poai, .framer-0d31r.framer-v-xm7om4 .framer-120poai { gap: 15px; padding: 10px; }\",\".framer-0d31r.framer-v-1xkt90s .framer-tjj3k6, .framer-0d31r.framer-v-bqb0kr .framer-tjj3k6, .framer-0d31r.framer-v-ikzqrh .framer-tjj3k6, .framer-0d31r.framer-v-rwzek0 .framer-tjj3k6, .framer-0d31r.framer-v-4hlm90 .framer-tjj3k6, .framer-0d31r.framer-v-kzm2sc .framer-tjj3k6, .framer-0d31r.framer-v-2evt5z .framer-tjj3k6, .framer-0d31r.framer-v-xm7om4 .framer-tjj3k6 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 20px); width: 20px; }\",\".framer-0d31r.framer-v-1xkt90s .framer-1c627o5, .framer-0d31r.framer-v-ikzqrh .framer-1c627o5, .framer-0d31r.framer-v-4hlm90 .framer-1c627o5, .framer-0d31r.framer-v-2evt5z .framer-1c627o5 { gap: 30px; padding: 10px; }\",\".framer-0d31r.framer-v-1xkt90s .framer-1ds56w5, .framer-0d31r.framer-v-1xkt90s .framer-bngz4k, .framer-0d31r.framer-v-ikzqrh .framer-1ds56w5, .framer-0d31r.framer-v-ikzqrh .framer-bngz4k, .framer-0d31r.framer-v-4hlm90 .framer-1ds56w5, .framer-0d31r.framer-v-4hlm90 .framer-bngz4k, .framer-0d31r.framer-v-2evt5z .framer-1ds56w5, .framer-0d31r.framer-v-2evt5z .framer-bngz4k { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0d31r.framer-v-1xkt90s .framer-120poai, .framer-0d31r.framer-v-1xkt90s .framer-1c627o5 { gap: 0px; } .framer-0d31r.framer-v-1xkt90s .framer-120poai > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-0d31r.framer-v-1xkt90s .framer-120poai > :first-child, .framer-0d31r.framer-v-1xkt90s .framer-1c627o5 > :first-child { margin-top: 0px; } .framer-0d31r.framer-v-1xkt90s .framer-120poai > :last-child, .framer-0d31r.framer-v-1xkt90s .framer-1c627o5 > :last-child { margin-bottom: 0px; } .framer-0d31r.framer-v-1xkt90s .framer-1c627o5 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\".framer-0d31r.framer-v-bqb0kr.framer-1gs9hz5 { width: 350px; }\",\".framer-0d31r.framer-v-bqb0kr .framer-10k0emv, .framer-0d31r.framer-v-rwzek0 .framer-10k0emv, .framer-0d31r.framer-v-kzm2sc .framer-10k0emv, .framer-0d31r.framer-v-xm7om4 .framer-10k0emv { flex-wrap: wrap; gap: 20px; justify-content: flex-start; order: 0; }\",\".framer-0d31r.framer-v-bqb0kr .framer-1tgii4w { flex: none; gap: 8px; order: 1; width: min-content; }\",\".framer-0d31r.framer-v-bqb0kr .framer-1yyorut, .framer-0d31r.framer-v-rwzek0 .framer-1yyorut, .framer-0d31r.framer-v-kzm2sc .framer-1yyorut, .framer-0d31r.framer-v-xm7om4 .framer-1yyorut { order: 0; padding: 6px; }\",\".framer-0d31r.framer-v-bqb0kr .framer-1boaxgj, .framer-0d31r.framer-v-rwzek0 .framer-1boaxgj, .framer-0d31r.framer-v-kzm2sc .framer-1boaxgj, .framer-0d31r.framer-v-xm7om4 .framer-1boaxgj { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 12px); width: 12px; }\",\".framer-0d31r.framer-v-bqb0kr .framer-1c627o5, .framer-0d31r.framer-v-rwzek0 .framer-1c627o5, .framer-0d31r.framer-v-kzm2sc .framer-1c627o5, .framer-0d31r.framer-v-xm7om4 .framer-1c627o5 { gap: 30px; order: 1; padding: 10px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0d31r.framer-v-bqb0kr .framer-120poai, .framer-0d31r.framer-v-bqb0kr .framer-10k0emv, .framer-0d31r.framer-v-bqb0kr .framer-1tgii4w, .framer-0d31r.framer-v-bqb0kr .framer-1c627o5 { gap: 0px; } .framer-0d31r.framer-v-bqb0kr .framer-120poai > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-0d31r.framer-v-bqb0kr .framer-120poai > :first-child, .framer-0d31r.framer-v-bqb0kr .framer-1c627o5 > :first-child { margin-top: 0px; } .framer-0d31r.framer-v-bqb0kr .framer-120poai > :last-child, .framer-0d31r.framer-v-bqb0kr .framer-1c627o5 > :last-child { margin-bottom: 0px; } .framer-0d31r.framer-v-bqb0kr .framer-10k0emv > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-0d31r.framer-v-bqb0kr .framer-10k0emv > :first-child, .framer-0d31r.framer-v-bqb0kr .framer-1tgii4w > :first-child { margin-left: 0px; } .framer-0d31r.framer-v-bqb0kr .framer-10k0emv > :last-child, .framer-0d31r.framer-v-bqb0kr .framer-1tgii4w > :last-child { margin-right: 0px; } .framer-0d31r.framer-v-bqb0kr .framer-1tgii4w > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-0d31r.framer-v-bqb0kr .framer-1c627o5 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0d31r.framer-v-ikzqrh .framer-120poai, .framer-0d31r.framer-v-ikzqrh .framer-1c627o5 { gap: 0px; } .framer-0d31r.framer-v-ikzqrh .framer-120poai > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-0d31r.framer-v-ikzqrh .framer-120poai > :first-child, .framer-0d31r.framer-v-ikzqrh .framer-1c627o5 > :first-child { margin-top: 0px; } .framer-0d31r.framer-v-ikzqrh .framer-120poai > :last-child, .framer-0d31r.framer-v-ikzqrh .framer-1c627o5 > :last-child { margin-bottom: 0px; } .framer-0d31r.framer-v-ikzqrh .framer-1c627o5 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0d31r.framer-v-rwzek0 .framer-120poai, .framer-0d31r.framer-v-rwzek0 .framer-10k0emv, .framer-0d31r.framer-v-rwzek0 .framer-1c627o5 { gap: 0px; } .framer-0d31r.framer-v-rwzek0 .framer-120poai > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-0d31r.framer-v-rwzek0 .framer-120poai > :first-child, .framer-0d31r.framer-v-rwzek0 .framer-1c627o5 > :first-child { margin-top: 0px; } .framer-0d31r.framer-v-rwzek0 .framer-120poai > :last-child, .framer-0d31r.framer-v-rwzek0 .framer-1c627o5 > :last-child { margin-bottom: 0px; } .framer-0d31r.framer-v-rwzek0 .framer-10k0emv > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-0d31r.framer-v-rwzek0 .framer-10k0emv > :first-child { margin-left: 0px; } .framer-0d31r.framer-v-rwzek0 .framer-10k0emv > :last-child { margin-right: 0px; } .framer-0d31r.framer-v-rwzek0 .framer-1c627o5 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0d31r.framer-v-4hlm90 .framer-120poai, .framer-0d31r.framer-v-4hlm90 .framer-1c627o5 { gap: 0px; } .framer-0d31r.framer-v-4hlm90 .framer-120poai > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-0d31r.framer-v-4hlm90 .framer-120poai > :first-child, .framer-0d31r.framer-v-4hlm90 .framer-1c627o5 > :first-child { margin-top: 0px; } .framer-0d31r.framer-v-4hlm90 .framer-120poai > :last-child, .framer-0d31r.framer-v-4hlm90 .framer-1c627o5 > :last-child { margin-bottom: 0px; } .framer-0d31r.framer-v-4hlm90 .framer-1c627o5 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0d31r.framer-v-kzm2sc .framer-120poai, .framer-0d31r.framer-v-kzm2sc .framer-10k0emv, .framer-0d31r.framer-v-kzm2sc .framer-1c627o5 { gap: 0px; } .framer-0d31r.framer-v-kzm2sc .framer-120poai > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-0d31r.framer-v-kzm2sc .framer-120poai > :first-child, .framer-0d31r.framer-v-kzm2sc .framer-1c627o5 > :first-child { margin-top: 0px; } .framer-0d31r.framer-v-kzm2sc .framer-120poai > :last-child, .framer-0d31r.framer-v-kzm2sc .framer-1c627o5 > :last-child { margin-bottom: 0px; } .framer-0d31r.framer-v-kzm2sc .framer-10k0emv > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-0d31r.framer-v-kzm2sc .framer-10k0emv > :first-child { margin-left: 0px; } .framer-0d31r.framer-v-kzm2sc .framer-10k0emv > :last-child { margin-right: 0px; } .framer-0d31r.framer-v-kzm2sc .framer-1c627o5 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0d31r.framer-v-2evt5z .framer-120poai, .framer-0d31r.framer-v-2evt5z .framer-1c627o5 { gap: 0px; } .framer-0d31r.framer-v-2evt5z .framer-120poai > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-0d31r.framer-v-2evt5z .framer-120poai > :first-child, .framer-0d31r.framer-v-2evt5z .framer-1c627o5 > :first-child { margin-top: 0px; } .framer-0d31r.framer-v-2evt5z .framer-120poai > :last-child, .framer-0d31r.framer-v-2evt5z .framer-1c627o5 > :last-child { margin-bottom: 0px; } .framer-0d31r.framer-v-2evt5z .framer-1c627o5 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0d31r.framer-v-xm7om4 .framer-120poai, .framer-0d31r.framer-v-xm7om4 .framer-10k0emv, .framer-0d31r.framer-v-xm7om4 .framer-1c627o5 { gap: 0px; } .framer-0d31r.framer-v-xm7om4 .framer-120poai > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-0d31r.framer-v-xm7om4 .framer-120poai > :first-child, .framer-0d31r.framer-v-xm7om4 .framer-1c627o5 > :first-child { margin-top: 0px; } .framer-0d31r.framer-v-xm7om4 .framer-120poai > :last-child, .framer-0d31r.framer-v-xm7om4 .framer-1c627o5 > :last-child { margin-bottom: 0px; } .framer-0d31r.framer-v-xm7om4 .framer-10k0emv > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-0d31r.framer-v-xm7om4 .framer-10k0emv > :first-child { margin-left: 0px; } .framer-0d31r.framer-v-xm7om4 .framer-10k0emv > :last-child { margin-right: 0px; } .framer-0d31r.framer-v-xm7om4 .framer-1c627o5 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0d31r.framer-v-fihj0l .framer-10k0emv, .framer-0d31r.framer-v-fihj0l .framer-1c627o5 { gap: 0px; } .framer-0d31r.framer-v-fihj0l .framer-10k0emv > * { margin: 0px; margin-left: calc(47px / 2); margin-right: calc(47px / 2); } .framer-0d31r.framer-v-fihj0l .framer-10k0emv > :first-child { margin-left: 0px; } .framer-0d31r.framer-v-fihj0l .framer-10k0emv > :last-child { margin-right: 0px; } .framer-0d31r.framer-v-fihj0l .framer-1c627o5 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-0d31r.framer-v-fihj0l .framer-1c627o5 > :first-child { margin-top: 0px; } .framer-0d31r.framer-v-fihj0l .framer-1c627o5 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0d31r.framer-v-1xnld78 .framer-10k0emv, .framer-0d31r.framer-v-1xnld78 .framer-1c627o5 { gap: 0px; } .framer-0d31r.framer-v-1xnld78 .framer-10k0emv > * { margin: 0px; margin-left: calc(47px / 2); margin-right: calc(47px / 2); } .framer-0d31r.framer-v-1xnld78 .framer-10k0emv > :first-child { margin-left: 0px; } .framer-0d31r.framer-v-1xnld78 .framer-10k0emv > :last-child { margin-right: 0px; } .framer-0d31r.framer-v-1xnld78 .framer-1c627o5 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-0d31r.framer-v-1xnld78 .framer-1c627o5 > :first-child { margin-top: 0px; } .framer-0d31r.framer-v-1xnld78 .framer-1c627o5 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0d31r.framer-v-3jttw3 .framer-10k0emv, .framer-0d31r.framer-v-3jttw3 .framer-1c627o5 { gap: 0px; } .framer-0d31r.framer-v-3jttw3 .framer-10k0emv > * { margin: 0px; margin-left: calc(47px / 2); margin-right: calc(47px / 2); } .framer-0d31r.framer-v-3jttw3 .framer-10k0emv > :first-child { margin-left: 0px; } .framer-0d31r.framer-v-3jttw3 .framer-10k0emv > :last-child { margin-right: 0px; } .framer-0d31r.framer-v-3jttw3 .framer-1c627o5 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-0d31r.framer-v-3jttw3 .framer-1c627o5 > :first-child { margin-top: 0px; } .framer-0d31r.framer-v-3jttw3 .framer-1c627o5 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0d31r.framer-v-15rn3o .framer-10k0emv, .framer-0d31r.framer-v-15rn3o .framer-1c627o5 { gap: 0px; } .framer-0d31r.framer-v-15rn3o .framer-10k0emv > * { margin: 0px; margin-left: calc(47px / 2); margin-right: calc(47px / 2); } .framer-0d31r.framer-v-15rn3o .framer-10k0emv > :first-child { margin-left: 0px; } .framer-0d31r.framer-v-15rn3o .framer-10k0emv > :last-child { margin-right: 0px; } .framer-0d31r.framer-v-15rn3o .framer-1c627o5 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-0d31r.framer-v-15rn3o .framer-1c627o5 > :first-child { margin-top: 0px; } .framer-0d31r.framer-v-15rn3o .framer-1c627o5 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-0d31r[data-border=\"true\"]::after, .framer-0d31r [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 551\n * @framerIntrinsicWidth 580\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"VYlPr6bas\":{\"layout\":[\"fixed\",\"auto\"]},\"mTtpwXdgi\":{\"layout\":[\"fixed\",\"auto\"]},\"GAlWdDZuj\":{\"layout\":[\"fixed\",\"auto\"]},\"GVqBEVYzz\":{\"layout\":[\"fixed\",\"auto\"]},\"a2Cddtn6g\":{\"layout\":[\"fixed\",\"auto\"]},\"yDUFpZaYc\":{\"layout\":[\"fixed\",\"auto\"]},\"OxlWDpHlC\":{\"layout\":[\"fixed\",\"auto\"]},\"W05jWnKQr\":{\"layout\":[\"fixed\",\"auto\"]},\"V8w9do_0b\":{\"layout\":[\"fixed\",\"auto\"]},\"Gpa3WDzcb\":{\"layout\":[\"fixed\",\"auto\"]},\"hotpYsrNM\":{\"layout\":[\"fixed\",\"auto\"]},\"C6YGCpREV\":{\"layout\":[\"fixed\",\"auto\"]},\"mpL_7V5p9\":{\"layout\":[\"fixed\",\"auto\"]},\"KN11ljbPe\":{\"layout\":[\"fixed\",\"auto\"]},\"MXeOOPQLz\":{\"layout\":[\"fixed\",\"auto\"]},\"a3YE5eixP\":{\"layout\":[\"fixed\",\"auto\"]},\"xf3X0JQ4P\":{\"layout\":[\"fixed\",\"auto\"]},\"lZ89OYYli\":{\"layout\":[\"fixed\",\"auto\"]},\"fOuiqAZql\":{\"layout\":[\"fixed\",\"auto\"]},\"hiaSJMTZo\":{\"layout\":[\"fixed\",\"auto\"]},\"wRhrBfSap\":{\"layout\":[\"fixed\",\"auto\"]},\"f4mFHvcIz\":{\"layout\":[\"fixed\",\"auto\"]},\"bX_boGcK5\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"rxlCpwMSw\":\"socialIcon\",\"XxMuE0Szy\":\"socialMediaName\",\"s3AZBuxuh\":\"question1\",\"WIXWxghO3\":\"answer1\",\"vptZktgfC\":\"question2\",\"AEwUywzAG\":\"answer2\",\"OhhhbOSOA\":\"socialMediaContent\",\"TVrQPHnoZ\":\"opacity\",\"s9oC_wr6V\":\"visible\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermDOTgt7mE=withCSS(Component,css,\"framer-0d31r\");export default FramermDOTgt7mE;FramermDOTgt7mE.displayName=\"Social Animator\";FramermDOTgt7mE.defaultProps={height:551,width:580};addPropertyControls(FramermDOTgt7mE,{variant:{options:[\"V_AiReNkV\",\"VYlPr6bas\",\"mTtpwXdgi\",\"GAlWdDZuj\",\"GVqBEVYzz\",\"a2Cddtn6g\",\"yDUFpZaYc\",\"OxlWDpHlC\",\"W05jWnKQr\",\"V8w9do_0b\",\"Gpa3WDzcb\",\"hotpYsrNM\",\"C6YGCpREV\",\"mpL_7V5p9\",\"KN11ljbPe\",\"MXeOOPQLz\",\"a3YE5eixP\",\"xf3X0JQ4P\",\"lZ89OYYli\",\"fOuiqAZql\",\"hiaSJMTZo\",\"wRhrBfSap\",\"f4mFHvcIz\",\"bX_boGcK5\"],optionTitles:[\"Form \",\"Answer\",\"form-2\",\"answer-2\",\"from-3\",\"answer-3\",\"form-4\",\"answer-4\",\"Form Mobile\",\"Answer Mobile \",\"Form Moblie - 1\",\"Answer Mobile - 1\",\"Form Mobile - 2\",\"Answer Mobilee - 2\",\"Form Mobile - 4\",\"Answer Mobile - 4\",\"Form-Manrope\",\"Answer-Manrope\",\"Form-2-Manrope\",\"Answer-2-Manrope\",\"Form-3-Manrope\",\"Answer-3-Manrope\",\"Form-4-Manrope\",\"Answer-4-Manrope\"],title:\"Variant\",type:ControlType.Enum},rxlCpwMSw:{__defaultAssetReference:\"data:framer/asset-reference,33Ax9VN58qtLETQG8ztISsI7K8.svg?originalFilename=Instagram_logo_2016+%281%29+1.svg&preferredSize=auto\",title:\"Social Icon\",type:ControlType.ResponsiveImage},XxMuE0Szy:{defaultValue:\"Social Media Tools\",displayTextArea:false,title:\"Social Media Name\",type:ControlType.String},s3AZBuxuh:{defaultValue:\"\uD83D\uDCEB\\xa0 What is your post about?\",displayTextArea:false,title:\"Question 1\",type:ControlType.String},WIXWxghO3:{defaultValue:\"If you are going to use a embarrassing passage of Lorem  Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text.\\n\\n\\n\",displayTextArea:true,title:\"Answer 1\",type:ControlType.String},vptZktgfC:{defaultValue:\"\uD83D\uDD0D\\xa0 No. of captions required?\",displayTextArea:false,title:\"Question 2\",type:ControlType.String},AEwUywzAG:{defaultValue:\"05\",displayTextArea:true,title:\"Answer 2\",type:ControlType.String},OhhhbOSOA:{defaultValue:\"<b>Quick Tips for Healthy Eating</b><br><br> <b>Introduction</b><br> Importance of healthy eating in daily life.<br><br> <b>Section 1: Balanced Diet Basics</b><br> Key components: fruits, vegetables, proteins, whole grains.<br><br> <b>Section 2: Simple Tips</b><br> - Drink more water.<br> - Opt for whole foods over processed ones.<br> - Control portion sizes.<br><br> <b>Section 3: Easy Meal Ideas</b><br> Healthy breakfast, lunch, and dinner suggestions.<br><br><b>Conclusion</b><br> Recap tips and encourage starting small.<br><br> <b>Additional Resources</b><br> Links to further reading on healthy eating.\",title:\"Social Media Content\",type:ControlType.String},TVrQPHnoZ:{defaultValue:1,max:1,min:0,step:.01,title:\"Opacity\",type:ControlType.Number},s9oC_wr6V:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean}});addFonts(FramermDOTgt7mE,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/6U2SGH566NSNERG6RGEV3DSNEK7DL2RF/JRDYRKMSAW2H35IWEQIPL67HAJQ35MG5/JNU3GNMUBPWW6V6JTED3S27XL5HN7NM5.woff2\",weight:\"600\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BNWG6MUI4RTC6WEND2VPDH4MHMIVU3XZ/R5YXY5FMVG6PXU36GNEEA24MIPMEPGSM/CIM4KQCLZSMMLWPVH25IDDSTY4ENPHEY.woff2\",weight:\"500\"}]},...TypingFonts,...GradientButtonFonts,...LottieFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermDOTgt7mE\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VYlPr6bas\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mTtpwXdgi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GAlWdDZuj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GVqBEVYzz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"a2Cddtn6g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yDUFpZaYc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OxlWDpHlC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"W05jWnKQr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"V8w9do_0b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Gpa3WDzcb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hotpYsrNM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C6YGCpREV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mpL_7V5p9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KN11ljbPe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MXeOOPQLz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"a3YE5eixP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xf3X0JQ4P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lZ89OYYli\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fOuiqAZql\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hiaSJMTZo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wRhrBfSap\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f4mFHvcIz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bX_boGcK5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"580\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"rxlCpwMSw\\\":\\\"socialIcon\\\",\\\"XxMuE0Szy\\\":\\\"socialMediaName\\\",\\\"s3AZBuxuh\\\":\\\"question1\\\",\\\"WIXWxghO3\\\":\\\"answer1\\\",\\\"vptZktgfC\\\":\\\"question2\\\",\\\"AEwUywzAG\\\":\\\"answer2\\\",\\\"OhhhbOSOA\\\":\\\"socialMediaContent\\\",\\\"TVrQPHnoZ\\\":\\\"opacity\\\",\\\"s9oC_wr6V\\\":\\\"visible\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"551\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b62c1c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SocialAnimator from\"https://framerusercontent.com/modules/OgiHiiQzYaTAwf0pnpEB/2h2EgZuPGqeXysfeZRf0/mDOTgt7mE.js\";const SocialAnimatorFonts=getFonts(SocialAnimator);const cycleOrder=[\"wdCQzVgTn\",\"uTTNQFFOM\",\"hc6FwHgUt\",\"WpR6vxaxc\",\"hx9IiSB3W\",\"sSmrFiRV5\",\"SSAysjHln\",\"fv9msD_wS\"];const serializationHash=\"framer-meD5u\";const variantClassNames={fv9msD_wS:\"framer-v-1royfgb\",hc6FwHgUt:\"framer-v-qutdmn\",hx9IiSB3W:\"framer-v-tmmci\",SSAysjHln:\"framer-v-147kj01\",sSmrFiRV5:\"framer-v-16uoz9h\",uTTNQFFOM:\"framer-v-1b8zpt9\",wdCQzVgTn:\"framer-v-fb6e5e\",WpR6vxaxc:\"framer-v-17rgh64\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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 humanReadableVariantMap={\"Ads Mobile\":\"SSAysjHln\",\"Email Mobile\":\"fv9msD_wS\",\"Social Mobile\":\"hx9IiSB3W\",\"Youtube Mobile\":\"sSmrFiRV5\",Ads:\"hc6FwHgUt\",Email:\"WpR6vxaxc\",Social:\"wdCQzVgTn\",Youtube:\"uTTNQFFOM\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"wdCQzVgTn\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"wdCQzVgTn\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1yd3thm=activeVariantCallback(async(...args)=>{setVariant(\"wdCQzVgTn\");});const onTapksfgqz=activeVariantCallback(async(...args)=>{setVariant(\"hx9IiSB3W\");});const onTapt8p03q=activeVariantCallback(async(...args)=>{setVariant(\"uTTNQFFOM\");});const onTap1j212ch=activeVariantCallback(async(...args)=>{setVariant(\"sSmrFiRV5\");});const onTaprr1vav=activeVariantCallback(async(...args)=>{setVariant(\"hc6FwHgUt\");});const onTap1ekabj6=activeVariantCallback(async(...args)=>{setVariant(\"SSAysjHln\");});const onTap12twn6w=activeVariantCallback(async(...args)=>{setVariant(\"WpR6vxaxc\");});const onTap19qpsk1=activeVariantCallback(async(...args)=>{setVariant(\"fv9msD_wS\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:535,pixelWidth:820,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/UaELXHVE0PIVv5wOsCnqGsZJnoI.svg\",srcSet:\"https://framerusercontent.com/images/UaELXHVE0PIVv5wOsCnqGsZJnoI.svg?scale-down-to=512 512w,https://framerusercontent.com/images/UaELXHVE0PIVv5wOsCnqGsZJnoI.svg 820w\"},className:cx(scopingClassNames,\"framer-fb6e5e\",className,classNames),\"data-framer-name\":\"Social\",layoutDependency:layoutDependency,layoutId:\"wdCQzVgTn\",ref:refBinding,style:{...style},...addPropertyOverrides({fv9msD_wS:{\"data-framer-name\":\"Email Mobile\"},hc6FwHgUt:{\"data-framer-name\":\"Ads\"},hx9IiSB3W:{\"data-framer-name\":\"Social Mobile\"},SSAysjHln:{\"data-framer-name\":\"Ads Mobile\"},sSmrFiRV5:{\"data-framer-name\":\"Youtube Mobile\"},uTTNQFFOM:{\"data-framer-name\":\"Youtube\"},WpR6vxaxc:{\"data-framer-name\":\"Email\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f2id82\",layoutDependency:layoutDependency,layoutId:\"aMiJGAm7W\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v6hdrf\",layoutDependency:layoutDependency,layoutId:\"RfFnXChzk\",style:{backgroundColor:\"rgb(240, 248, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 6px 30px 0px rgba(30, 32, 34, 0.08)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f177yv\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"uLNMnYKeK\",onTap:onTap1yd3thm,style:{backgroundColor:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,boxShadow:\"0px 6px 24px 0px rgba(30, 32, 34, 0.14)\"},variants:{fv9msD_wS:{backgroundColor:\"rgba(255, 255, 255, 0)\",boxShadow:\"0px 6px 24px 0px rgba(30, 32, 34, 0)\"},hc6FwHgUt:{backgroundColor:\"rgba(255, 255, 255, 0)\",boxShadow:\"0px 6px 24px 0px rgba(30, 32, 34, 0)\"},SSAysjHln:{backgroundColor:\"rgba(255, 255, 255, 0)\",boxShadow:\"0px 6px 24px 0px rgba(30, 32, 34, 0)\"},sSmrFiRV5:{backgroundColor:\"rgba(255, 255, 255, 0)\",boxShadow:\"0px 6px 24px 0px rgba(30, 32, 34, 0)\"},uTTNQFFOM:{backgroundColor:\"rgba(255, 255, 255, 0)\",boxShadow:\"0px 6px 24px 0px rgba(30, 32, 34, 0)\"},WpR6vxaxc:{backgroundColor:\"rgba(255, 255, 255, 0)\",boxShadow:\"0px 6px 24px 0px rgba(30, 32, 34, 0)\"}},...addPropertyOverrides({fv9msD_wS:{onTap:onTapksfgqz},hx9IiSB3W:{onTap:onTapksfgqz},SSAysjHln:{onTap:onTapksfgqz},sSmrFiRV5:{onTap:onTapksfgqz}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||723)-0-722.8)/2+0+0)+0+0+6+11.899999999999999),pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/s47u9OgpFhmaTwKLABadQEpBsEI.svg\"},className:\"framer-rmebf8\",layoutDependency:layoutDependency,layoutId:\"w5nAk6P88\",...addPropertyOverrides({fv9msD_wS:{background:{alt:\"\",fit:\"fit\",pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mgA62LTmQHWvOC4UW60zST3Qrb0.svg\"}},hc6FwHgUt:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||711)-0-722.8)/2+0+0)+0+0+6+11.899999999999999),pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mgA62LTmQHWvOC4UW60zST3Qrb0.svg\"}},hx9IiSB3W:{background:{alt:\"\",fit:\"fit\",pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/s47u9OgpFhmaTwKLABadQEpBsEI.svg\"}},SSAysjHln:{background:{alt:\"\",fit:\"fit\",pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mgA62LTmQHWvOC4UW60zST3Qrb0.svg\"}},sSmrFiRV5:{background:{alt:\"\",fit:\"fit\",pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mgA62LTmQHWvOC4UW60zST3Qrb0.svg\"}},uTTNQFFOM:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||723)-0-722.8)/2+0+0)+0+0+6+11.899999999999999),pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mgA62LTmQHWvOC4UW60zST3Qrb0.svg\"}},WpR6vxaxc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||754)-0-722.8)/2+0+0)+0+0+6+11.899999999999999),pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mgA62LTmQHWvOC4UW60zST3Qrb0.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Social\"})}),className:\"framer-1nchsex\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"GMV0JQKPc\",style:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{fv9msD_wS:{\"--extracted-r6o4lv\":\"rgb(115, 136, 158)\"},hc6FwHgUt:{\"--extracted-r6o4lv\":\"rgb(115, 136, 158)\"},SSAysjHln:{\"--extracted-r6o4lv\":\"rgb(115, 136, 158)\"},sSmrFiRV5:{\"--extracted-r6o4lv\":\"rgb(115, 136, 158)\"},uTTNQFFOM:{\"--extracted-r6o4lv\":\"rgb(115, 136, 158)\"},WpR6vxaxc:{\"--extracted-r6o4lv\":\"rgb(115, 136, 158)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fv9msD_wS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Social\"})})},hc6FwHgUt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Social\"})})},hx9IiSB3W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Social\"})})},SSAysjHln:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Social\"})})},sSmrFiRV5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Social\"})})},uTTNQFFOM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Social\"})})},WpR6vxaxc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Social\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ddjjyw\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"kf05VfKly\",onTap:onTapt8p03q,style:{backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,boxShadow:\"0px 6px 24px 0px rgba(30, 32, 34, 0)\"},variants:{sSmrFiRV5:{backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"0px 6px 24px 0px rgba(30, 32, 34, 0.14)\"},uTTNQFFOM:{backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"0px 6px 24px 0px rgba(30, 32, 34, 0.14)\"}},...addPropertyOverrides({fv9msD_wS:{onTap:onTap1j212ch},hx9IiSB3W:{onTap:onTap1j212ch},SSAysjHln:{onTap:onTap1j212ch},sSmrFiRV5:{onTap:onTap1j212ch}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||723)-0-722.8)/2+0+0)+0+0+6+11.899999999999999),pixelHeight:22,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kxIaZE02bNSKJJ7Ro3QgMc3Qn4.svg\"},className:\"framer-b2idt8\",layoutDependency:layoutDependency,layoutId:\"oyx8ubSw2\",...addPropertyOverrides({fv9msD_wS:{background:{alt:\"\",fit:\"fit\",pixelHeight:22,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kxIaZE02bNSKJJ7Ro3QgMc3Qn4.svg\"}},hc6FwHgUt:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||711)-0-722.8)/2+0+0)+0+0+6+11.899999999999999),pixelHeight:22,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kxIaZE02bNSKJJ7Ro3QgMc3Qn4.svg\"}},hx9IiSB3W:{background:{alt:\"\",fit:\"fit\",pixelHeight:22,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kxIaZE02bNSKJJ7Ro3QgMc3Qn4.svg\"}},SSAysjHln:{background:{alt:\"\",fit:\"fit\",pixelHeight:22,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kxIaZE02bNSKJJ7Ro3QgMc3Qn4.svg\"}},sSmrFiRV5:{background:{alt:\"\",fit:\"fit\",pixelHeight:22,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/U2z8rgezKNS41UVQPW4u2Gi0.svg\"}},uTTNQFFOM:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||723)-0-722.8)/2+0+0)+0+0+6+11.899999999999999),pixelHeight:22,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/U2z8rgezKNS41UVQPW4u2Gi0.svg\"}},WpR6vxaxc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||754)-0-722.8)/2+0+0)+0+0+6+11.899999999999999),pixelHeight:22,pixelWidth:22,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kxIaZE02bNSKJJ7Ro3QgMc3Qn4.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Youtube\"})}),className:\"framer-l0u0yi\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"yz1xbhcsi\",style:{\"--extracted-r6o4lv\":\"rgb(115, 136, 158)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{sSmrFiRV5:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\"},uTTNQFFOM:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fv9msD_wS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Youtube\"})})},hx9IiSB3W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Youtube\"})})},SSAysjHln:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Youtube\"})})},sSmrFiRV5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Youtube\"})})},uTTNQFFOM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Youtube\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ubbltf\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"PDZsYWH56\",onTap:onTaprr1vav,style:{backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,boxShadow:\"0px 6px 24px 0px rgba(30, 32, 34, 0)\"},variants:{hc6FwHgUt:{backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"0px 6px 24px 0px rgba(30, 32, 34, 0.14)\"},SSAysjHln:{backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"0px 6px 24px 0px rgba(30, 32, 34, 0.14)\"}},...addPropertyOverrides({fv9msD_wS:{onTap:onTap1ekabj6},hx9IiSB3W:{onTap:onTap1ekabj6},SSAysjHln:{onTap:onTap1ekabj6},sSmrFiRV5:{onTap:onTap1ekabj6}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||723)-0-722.8)/2+0+0)+0+0+6+11.899999999999999),pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Gh08KTKAklObVWAfM4E3Br1dhg.svg\"},className:\"framer-12bk660\",layoutDependency:layoutDependency,layoutId:\"aJmP6Pbhd\",...addPropertyOverrides({fv9msD_wS:{background:{alt:\"\",fit:\"fit\",pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Gh08KTKAklObVWAfM4E3Br1dhg.svg\"}},hc6FwHgUt:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||711)-0-722.8)/2+0+0)+0+0+6+11.899999999999999),pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JMdDVvaSTzbNqEhYrGg4dP6uI.svg\"}},hx9IiSB3W:{background:{alt:\"\",fit:\"fit\",pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Gh08KTKAklObVWAfM4E3Br1dhg.svg\"}},SSAysjHln:{background:{alt:\"\",fit:\"fit\",pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JMdDVvaSTzbNqEhYrGg4dP6uI.svg\"}},sSmrFiRV5:{background:{alt:\"\",fit:\"fit\",pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Gh08KTKAklObVWAfM4E3Br1dhg.svg\"}},WpR6vxaxc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||754)-0-722.8)/2+0+0)+0+0+6+11.899999999999999),pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Gh08KTKAklObVWAfM4E3Br1dhg.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Ads\"})}),className:\"framer-schvw5\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"LVDTCxqw0\",style:{\"--extracted-r6o4lv\":\"rgb(115, 136, 158)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{hc6FwHgUt:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\"},SSAysjHln:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fv9msD_wS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Ads\"})})},hc6FwHgUt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Ads\"})})},hx9IiSB3W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Ads\"})})},SSAysjHln:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Ads\"})})},sSmrFiRV5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Ads\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j7xwr\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ufawgJYfS\",onTap:onTap12twn6w,style:{backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,boxShadow:\"0px 6px 24px 0px rgba(30, 32, 34, 0)\"},variants:{fv9msD_wS:{backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"0px 6px 24px 0px rgba(30, 32, 34, 0.14)\"},WpR6vxaxc:{backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"0px 6px 24px 0px rgba(30, 32, 34, 0.14)\"}},...addPropertyOverrides({fv9msD_wS:{onTap:onTap19qpsk1},hx9IiSB3W:{onTap:onTap19qpsk1},SSAysjHln:{onTap:onTap19qpsk1},sSmrFiRV5:{onTap:onTap19qpsk1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||723)-0-722.8)/2+0+0)+0+0+6+11.899999999999999),pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DgA1bLztTBYslelcx3GAZxDUlE.svg\"},className:\"framer-12v88or\",layoutDependency:layoutDependency,layoutId:\"ORyUvtBRl\",...addPropertyOverrides({fv9msD_wS:{background:{alt:\"\",fit:\"fit\",pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/w0WjzbdOs2aWkOJlXLkTaRkboes.svg\"}},hc6FwHgUt:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||711)-0-722.8)/2+0+0)+0+0+6+11.899999999999999),pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DgA1bLztTBYslelcx3GAZxDUlE.svg\"}},hx9IiSB3W:{background:{alt:\"\",fit:\"fit\",pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DgA1bLztTBYslelcx3GAZxDUlE.svg\"}},SSAysjHln:{background:{alt:\"\",fit:\"fit\",pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DgA1bLztTBYslelcx3GAZxDUlE.svg\"}},sSmrFiRV5:{background:{alt:\"\",fit:\"fit\",pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DgA1bLztTBYslelcx3GAZxDUlE.svg\"}},WpR6vxaxc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||754)-0-722.8)/2+0+0)+0+0+6+11.899999999999999),pixelHeight:16,pixelWidth:16,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/w0WjzbdOs2aWkOJlXLkTaRkboes.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Email\"})}),className:\"framer-jtlr2u\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"ckMDpsV_V\",style:{\"--extracted-r6o4lv\":\"rgb(115, 136, 158)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{fv9msD_wS:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\"},WpR6vxaxc:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fv9msD_wS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Email\"})})},hx9IiSB3W:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Email\"})})},SSAysjHln:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Email\"})})},sSmrFiRV5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Email\"})})},WpR6vxaxc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Email\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:551,width:`calc(${componentViewport?.width||\"100vw\"} * 0.71)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||723)-0-722.8)/2+0+0)+0+171.8,...addPropertyOverrides({fv9msD_wS:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,y:undefined},hc6FwHgUt:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||711)-0-722.8)/2+0+0)+0+171.8},hx9IiSB3W:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,y:undefined},SSAysjHln:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,y:undefined},sSmrFiRV5:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,y:undefined},WpR6vxaxc:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||754)-0-722.8)/2+0+0)+0+171.8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qdzuiy-container\",layoutDependency:layoutDependency,layoutId:\"mwkqdq4Rm-container\",nodeId:\"mwkqdq4Rm\",rendersWithMotion:true,scopeId:\"Ca6xqpDaS\",children:/*#__PURE__*/_jsx(SocialAnimator,{AEwUywzAG:\"03\",height:\"100%\",id:\"mwkqdq4Rm\",layoutId:\"mwkqdq4Rm\",OhhhbOSOA:\"<b>#1</b><br>\\u2028\uD83D\uDE80 Launch Alert! \uD83C\uDF89 Dive into the world of coding with our programming courses \uD83D\uDDA5\uFE0F NOW at a flat 20% OFF! Don't miss out on upgrading your skills! \uD83D\uDCBB\u2728 CLICK LINK IN BIO to start learning at a steal! \uD83D\uDE80\uD83D\uDC69\u200D\uD83D\uDCBB\uD83D\uDC68\u200D\uD83D\uDCBB <br><br> #ProgrammingCourses #LearnCoding #CodeLife #TechSkills #WebDevelopment #LaunchOffer #OnlineLearning #LearnToCode #CodingIsFun #DeveloperLife #Discounts #TechWorld #ProgrammingLife #CodeMore #BuildYourFuture <br><br> <b>#2</b><br> \uD83C\uDF93 Ready to level up your programming game? \uD83C\uDF1F Get all our courses at a fantastic 20% DISCOUNT! It\u2019s your time to shine in the tech world! \uD83C\uDF10\uD83D\uDCA1 CLICK LINK IN BIO to grab this offer before it\u2019s gone! \uD83C\uDFC3\u200D\u2642\uFE0F\uD83D\uDCBC <br><br> #CodingSkills #Programming #LearnProgramming #TechEducation #OnlineCourses #StartupLife #SoftwareDevelopment #FullStack #Programmer #NewSkills #TechCommunity #EducationDiscount #CodeAcademy #DigitalLearning #SkillUp <br><br> <b>#3</b><br> \uD83D\uDD25 Special Launch Offer! Get ahead in the tech race with a 20% DISCOUNT on all programming courses! \uD83D\uDD17\uD83D\uDCBB Unleash your potential. CLICK LINK IN BIO to enroll at this exclusive price! \uD83C\uDF1F\uD83D\uDC7E <br><br> #Developer #OnlineCoursesOffer #ProgrammingBootcamp #Techie #CodeNewbie #LearnFromHome #Techies #SoftwareEngineer #CodeTheFuture #CyberLearning #TechieLife #DiscountOffer #CodingBootcamp #EducationForAll #FutureDevelopers\",s3AZBuxuh:\"\uD83D\uDCEB\\xa0 What is your post about?\",s9oC_wr6V:true,style:{width:\"100%\"},TVrQPHnoZ:1,variant:\"V_AiReNkV\",vptZktgfC:\"\uD83D\uDD0D\\xa0 No. of captions required?\",width:\"100%\",WIXWxghO3:\"Launch offer! Get programming courses at a flat 20% offer.\\n\\n\\n\\n\\n\",XxMuE0Szy:\"Social Media Tools\",...addPropertyOverrides({fv9msD_wS:{OhhhbOSOA:\"<b>Subject:</b> Unlock Your Future: Learn AI with Our New Online Course! <br><br> <b>Dear [First Name],</b> <br><br> Are you ready to dive into the world of Artificial Intelligence? Whether you're starting from scratch or looking to refresh your knowledge, our new online course, Introduction to Artificial Intelligence (AI), is perfect for you! <br><br> <b>Here\u2019s what you will learn:</b> <b>Understanding AI and Generative AI:</b>** Learn about AI, its key concepts, and how generative AI is shaping the technology landscape.<br> <b>Real-world Applications:</b> Explore how AI is being used in various fields and how it can make everyday tasks more accessible and more efficient.<br> <b>Business and Career Transformation:</b> Discover the opportunities AI presents for businesses and Careers and how you can join this growing field.<br> <b>Ethical Considerations:</b> Learn about the ethical sides of AI, including its limitations and the critical issues that need addressing as its use becomes more widespread. <br><br> <b>Course Outcomes:</b> - Learn directly from <b>industry experts</b> who bring their real-world experiences to the classroom.<br> - Gain a solid base in AI to build or enhance your career skills.<br> - Work on <b>hands-on projects</b> that make the learning process engaging and effective.<br> - Upon completion, receive a <b>shareable certificate</b> that can boost your LinkedIn profile and resume. <br><br> Whether you\u2019re looking to advance in your career or simply curious about AI, our course provides all the tools you need to get started.\\xa0 <br><br> <b>Sign up today and begin your journey into the world of AI!</b> <br><br> <b>Best Regards,</b> <br><br> [Your Name]\\xa0\\xa0<br> [Your Job Title]\\xa0\\xa0<br> [Contact Information]\\xa0\\xa0<br> [Website URL]\\xa0\\xa0 <br><br> --- <br><br> Feel free to contact us at [Contact Email] for more information. We're here to help you start your learning journey!\",rxlCpwMSw:addImageAlt({src:\"https://framerusercontent.com/images/hWHTxC8ciues3s9PJgogA4IkkQ.svg\"},\"\"),s3AZBuxuh:\"\uD83C\uDF81  Describe your Product / Service\",s9oC_wr6V:false,TVrQPHnoZ:0,variant:\"KN11ljbPe\",vptZktgfC:\"\uD83D\uDCDD  No. of captions required?\",WIXWxghO3:'An online course on \"Introduction to Artificial Intelligence.\"\\xa0\\n\\nModules:\\n- What AI and GenAI are and their core concepts\\n- The transformation of our lives and work through AI applications and use cases\\n- The potential impact of AI on businesses and careers\\n- The issues, limitations, and ethical concerns surrounding AI\\n\\n\\n\\n',XxMuE0Szy:\"Email Tools\"},hc6FwHgUt:{AEwUywzAG:\"5G AI Smartphone (Beige, 12GB RAM, 256GB Storage)\\n\\n\\n\\n\\n\",OhhhbOSOA:\"<b>Certainly! Here are 10 creative ad copies for the Samsung Galaxy Z Fold5, designed to capture attention and drive clicks:</b> <br><br> 1. <b>Unfold Your World:</b> Dive into the future with the Beige Samsung Galaxy Z Fold5. More screen, more power, more everything! \uD83D\uDD25 Grab your 5G powerhouse with 12GB RAM now! #FutureInYourHands <br><br> 2.<b>Speed Meets Style:</b> Why settle for ordinary when you can have extraordinary? The all-new Beige Galaxy Z Fold5 with 5G is here. \uD83D\uDD25 LIMITED STOCK! Hurry, they won\u2019t last! #BeFirstBeFast <br><br> 3. <b>Elegance Unfolded:</b> Experience luxury in every fold with the new Galaxy Z Fold5. Beige elegance, top-tier specs, and cutting-edge 5G AI technology. \uD83D\uDCBC\u2728 Upgrade now! #LuxuryMeetsTech <br><br> 4. <b>Are You Ready to Fold?</b> Discover the Beige Samsung Galaxy Z Fold5 with stunning dual-screen display. Perfect for multitasking mavens! \uD83C\uDF1F Click now before they\u2019re gone! #TechTrendsetter <br><br> 5. <b>Experience Epic with Every Fold:</b> The Beige Samsung Galaxy Z Fold5 is not just a phone; it\u2019s a revolution! Featuring 12GB RAM & the latest 5G technology. Be a part of the revolution. \uD83D\uDE80 #UnfoldTheEpic <br><br> 6. <b>Transform Your Tech Game:</b> The Samsung Galaxy Z Fold5 in Beige is here! Fold it. Flip it. Love it. \uD83D\uDCF1\uD83D\uDC95 Embrace the future of smartphones. Click to own the extraordinary. #TechTransformed <br><br> 7. <b>Work Smart, Play Hard, Fold It:</b> Beige Samsung Galaxy Z Fold5 with 5G is your new go-to! From gaming to business \u2013 it\u2019s got you covered. \uD83C\uDFAE\uD83D\uDCBC Act fast, buy now! #SmartMeetsStylish <br><br> 8. <b>The Future is Folding:</b> Step into next-gen with Samsung Galaxy Z Fold5. Beige beauty with beastly performance thanks to 12GB RAM and 5G. \uD83C\uDF10 Don\u2019t wait - these will fold fast! #FoldIntoFuture <br><br> 9. <b>Fold. Unfold. Be Bold:</b> Meet the Beige Samsung Galaxy Z Fold5. Where cutting-edge technology and design meet, \uD83C\uDF1F Get yours before everyone else! #BeBoldWithFold <br><br> 10. <b>A Spectrum of Superiority:</b> Every fold of the Beige Galaxy Z Fold5 speaks volumes of innovation: 256 GB Storage, 12GB RAM, & seamless 5G. \uD83D\uDCF2 Grab the future today! #SuperiorSpectrum\\xa0 <br><br> These ads are designed to intrigue, excite, and drive urgency, encouraging immediate clicks and conversions.\",rxlCpwMSw:addImageAlt({src:\"https://framerusercontent.com/images/dKGiSEayV8SjJIn4k9KW0P44ooc.svg\"},\"\"),s3AZBuxuh:\"\uD83C\uDFF7\uFE0F  Product Name?\",variant:\"GVqBEVYzz\",vptZktgfC:\"\uD83D\uDCDD  Enter your product description\",WIXWxghO3:\"Samsung Galaxy Z Fold5\",XxMuE0Szy:\"Ads Tools\"},hx9IiSB3W:{variant:\"W05jWnKQr\"},SSAysjHln:{AEwUywzAG:\"5G AI Smartphone (Beige, 12GB RAM, 256GB Storage)\\n\\n\\n\\n\\n\",OhhhbOSOA:\"<b>Certainly! Here are 10 creative ad copies for the Samsung Galaxy Z Fold5, designed to capture attention and drive clicks:</b> <br><br> 1. <b>Unfold Your World:</b> Dive into the future with the Beige Samsung Galaxy Z Fold5. More screen, more power, more everything! \uD83D\uDD25 Grab your 5G powerhouse with 12GB RAM now! #FutureInYourHands <br><br> 2.<b>Speed Meets Style:</b> Why settle for ordinary when you can have extraordinary? The all-new Beige Galaxy Z Fold5 with 5G is here. \uD83D\uDD25 LIMITED STOCK! Hurry, they won\u2019t last! #BeFirstBeFast <br><br> 3. <b>Elegance Unfolded:</b> Experience luxury in every fold with the new Galaxy Z Fold5. Beige elegance, top-tier specs, and cutting-edge 5G AI technology. \uD83D\uDCBC\u2728 Upgrade now! #LuxuryMeetsTech <br><br> 4. <b>Are You Ready to Fold?</b> Discover the Beige Samsung Galaxy Z Fold5 with stunning dual-screen display. Perfect for multitasking mavens! \uD83C\uDF1F Click now before they\u2019re gone! #TechTrendsetter <br><br> 5. <b>Experience Epic with Every Fold:</b> The Beige Samsung Galaxy Z Fold5 is not just a phone; it\u2019s a revolution! Featuring 12GB RAM & the latest 5G technology. Be a part of the revolution. \uD83D\uDE80 #UnfoldTheEpic <br><br> 6. <b>Transform Your Tech Game:</b> The Samsung Galaxy Z Fold5 in Beige is here! Fold it. Flip it. Love it. \uD83D\uDCF1\uD83D\uDC95 Embrace the future of smartphones. Click to own the extraordinary. #TechTransformed <br><br> 7. <b>Work Smart, Play Hard, Fold It:</b> Beige Samsung Galaxy Z Fold5 with 5G is your new go-to! From gaming to business \u2013 it\u2019s got you covered. \uD83C\uDFAE\uD83D\uDCBC Act fast, buy now! #SmartMeetsStylish <br><br> 8. <b>The Future is Folding:</b> Step into next-gen with Samsung Galaxy Z Fold5. Beige beauty with beastly performance thanks to 12GB RAM and 5G. \uD83C\uDF10 Don\u2019t wait - these will fold fast! #FoldIntoFuture <br><br> 9. <b>Fold. Unfold. Be Bold:</b> Meet the Beige Samsung Galaxy Z Fold5. Where cutting-edge technology and design meet, \uD83C\uDF1F Get yours before everyone else! #BeBoldWithFold <br><br> 10. <b>A Spectrum of Superiority:</b> Every fold of the Beige Galaxy Z Fold5 speaks volumes of innovation: 256 GB Storage, 12GB RAM, & seamless 5G. \uD83D\uDCF2 Grab the future today! #SuperiorSpectrum\\xa0 <br><br> These ads are designed to intrigue, excite, and drive urgency, encouraging immediate clicks and conversions.\",rxlCpwMSw:addImageAlt({src:\"https://framerusercontent.com/images/dKGiSEayV8SjJIn4k9KW0P44ooc.svg\"},\"\"),s3AZBuxuh:\"\uD83C\uDFF7\uFE0F  Product Name?\",variant:\"C6YGCpREV\",vptZktgfC:\"\uD83D\uDCDD  Enter your product description\",WIXWxghO3:\"Samsung Galaxy Z Fold5\",XxMuE0Szy:\"Ads Tools\"},sSmrFiRV5:{OhhhbOSOA:'<b>Intro</b> <br><br> \"Imagine a world where machines complete tasks that take us hours in seconds. Sounds like science fiction, right? Well, not anymore. That\\'s Artificial Intelligence for you.\u201D<br> \"Hi everyone! Welcome back to our channel. Today, we\\'re diving into the thrilling world of Artificial Intelligence (AI) and exploring how it has evolved.\u201D<br> \"Why is AI so significant? Simply put, it\\'s changing every corner of our lives, from how we shop to how we drive cars. So, let\\'s get started and see what the buzz is all about!\" <br><br> <b>Main Content</b> <br><br> \"Let\\'s kick things off at the very beginning. It all started in the 1950s with a few scientists dreaming about creating machines that could think. Alan Turing was a pioneer, proposing the question \\'Can machines think?\\' which kickstarted an incredible journey for AI.\u201D<br> \"Fast forward to the 1960s and 70s, where the first AI programs came to life. One early success was a program that could solve algebra word problems, and another called ELIZA, which could mimic human conversation, albeit in a fundamental form.\u201D<br> \"However, the initial hype didn\u2019t last long - the 1970s also saw the first of several AI winters, periods where funding dried up and progress stalled. It turns out, making intelligent machines was harder than expected.\" <br><br> \"The 1990s brought about a resurgence in AI, thanks to the advent of the internet and greater computational power. This era gave rise to machine learning \u2013 where systems learn from data rather than following solely programmed instructions.\u201D<br> \"Speaking of machine learning, have you ever wondered how Facebook recognizes faces in pictures or how Spotify recommends music that you might like? That\\'s machine learning in action, constantly learning from data to improve accuracy.\u201D<br> \"One of the biggest milestones came in 1997 when IBM\\'s Deep Blue defeated world chess champion Garry Kasparov. It was a moment that showed the world just how powerful AI could be.\u201D<br> \"Today, AI is all around us. It\\'s powering virtual assistants like Siri and Alexa, it\\'s optimizing routes for delivery trucks, it\\'s helping doctors diagnose diseases earlier, and it\\'s revolutionizing many industries.\u201D<br> \"Let\\'s talk about the latest in AI advancements - autonomous vehicles. Companies like Tesla and Google are spearheading efforts to create cars that can drive themselves, using AI to process all the information needed to navigate roads safely.\u201D<br> \"But, it\\'s not just the tech giants embracing AI. Small businesses use AI tools to improve customer service, streamline operations, and make better business decisions.\" <br><br> <b>Outro</b> <br><br> \"So, what lies ahead for AI? The possibilities are endless. From tackling climate change to exploring space, AI could be crucial in solving some of the world\u2019s biggest challenges.\u201D<br> \"Thanks for watching our deep dive into the Evolution of Artificial Intelligence. We\\'ve only scratched the surface of this vast, ever-evolving topic. What do you think the future holds for AI? Let us know in the comments below!\u201D<br> \"Remember to like, share, and subscribe for more tech insights and updates. And ring that bell icon to stay notified about our latest videos!\u201D<br> \"Until next time, keep curiosity alive, and see you in the next video!\"',rxlCpwMSw:addImageAlt({src:\"https://framerusercontent.com/images/vDqPPkxJ9ViHatJ35XZrOrG7U3U.svg\"},\"\"),s3AZBuxuh:\"\uD83D\uDCF7  What is your YouTube Video title?\",TVrQPHnoZ:0,variant:\"Gpa3WDzcb\",WIXWxghO3:\"Evolution of Artificial Intelligence\\n\\n\\n\\n\\n\",XxMuE0Szy:\"YouTube Script Writer\"},uTTNQFFOM:{OhhhbOSOA:'<b>Intro</b> <br><br> \"Imagine a world where machines complete tasks that take us hours in seconds. Sounds like science fiction, right? Well, not anymore. That\\'s Artificial Intelligence for you.\u201D<br> \"Hi everyone! Welcome back to our channel. Today, we\\'re diving into the thrilling world of Artificial Intelligence (AI) and exploring how it has evolved.\u201D<br> \"Why is AI so significant? Simply put, it\\'s changing every corner of our lives, from how we shop to how we drive cars. So, let\\'s get started and see what the buzz is all about!\" <br><br> <b>Main Content</b> <br><br> \"Let\\'s kick things off at the very beginning. It all started in the 1950s with a few scientists dreaming about creating machines that could think. Alan Turing was a pioneer, proposing the question \\'Can machines think?\\' which kickstarted an incredible journey for AI.\u201D<br> \"Fast forward to the 1960s and 70s, where the first AI programs came to life. One early success was a program that could solve algebra word problems, and another called ELIZA, which could mimic human conversation, albeit in a fundamental form.\u201D<br> \"However, the initial hype didn\u2019t last long - the 1970s also saw the first of several AI winters, periods where funding dried up and progress stalled. It turns out, making intelligent machines was harder than expected.\" <br><br> \"The 1990s brought about a resurgence in AI, thanks to the advent of the internet and greater computational power. This era gave rise to machine learning \u2013 where systems learn from data rather than following solely programmed instructions.\u201D<br> \"Speaking of machine learning, have you ever wondered how Facebook recognizes faces in pictures or how Spotify recommends music that you might like? That\\'s machine learning in action, constantly learning from data to improve accuracy.\u201D<br> \"One of the biggest milestones came in 1997 when IBM\\'s Deep Blue defeated world chess champion Garry Kasparov. It was a moment that showed the world just how powerful AI could be.\u201D<br> \"Today, AI is all around us. It\\'s powering virtual assistants like Siri and Alexa, it\\'s optimizing routes for delivery trucks, it\\'s helping doctors diagnose diseases earlier, and it\\'s revolutionizing many industries.\u201D<br> \"Let\\'s talk about the latest in AI advancements - autonomous vehicles. Companies like Tesla and Google are spearheading efforts to create cars that can drive themselves, using AI to process all the information needed to navigate roads safely.\u201D<br> \"But, it\\'s not just the tech giants embracing AI. Small businesses use AI tools to improve customer service, streamline operations, and make better business decisions.\" <br><br> <b>Outro</b> <br><br> \"So, what lies ahead for AI? The possibilities are endless. From tackling climate change to exploring space, AI could be crucial in solving some of the world\u2019s biggest challenges.\u201D<br> \"Thanks for watching our deep dive into the Evolution of Artificial Intelligence. We\\'ve only scratched the surface of this vast, ever-evolving topic. What do you think the future holds for AI? Let us know in the comments below!\u201D<br> \"Remember to like, share, and subscribe for more tech insights and updates. And ring that bell icon to stay notified about our latest videos!\u201D<br> \"Until next time, keep curiosity alive, and see you in the next video!\"',rxlCpwMSw:addImageAlt({src:\"https://framerusercontent.com/images/vDqPPkxJ9ViHatJ35XZrOrG7U3U.svg\"},\"\"),s3AZBuxuh:\"\uD83D\uDCF7  What is your YouTube Video title?\",TVrQPHnoZ:0,variant:\"mTtpwXdgi\",WIXWxghO3:\"Evolution of Artificial Intelligence\\n\\n\\n\\n\\n\",XxMuE0Szy:\"YouTube Script Writer\"},WpR6vxaxc:{OhhhbOSOA:\"<b>Subject:</b> Unlock Your Future: Learn AI with Our New Online Course! <br><br> <b>Dear [First Name],</b> <br><br> Are you ready to dive into the world of Artificial Intelligence? Whether you're starting from scratch or looking to refresh your knowledge, our new online course, Introduction to Artificial Intelligence (AI), is perfect for you! <br><br> <b>Here\u2019s what you will learn:</b> <b>Understanding AI and Generative AI:</b>** Learn about AI, its key concepts, and how generative AI is shaping the technology landscape.<br> <b>Real-world Applications:</b> Explore how AI is being used in various fields and how it can make everyday tasks more accessible and more efficient.<br> <b>Business and Career Transformation:</b> Discover the opportunities AI presents for businesses and Careers and how you can join this growing field.<br> <b>Ethical Considerations:</b> Learn about the ethical sides of AI, including its limitations and the critical issues that need addressing as its use becomes more widespread. <br><br> <b>Course Outcomes:</b> - Learn directly from <b>industry experts</b> who bring their real-world experiences to the classroom.<br> - Gain a solid base in AI to build or enhance your career skills.<br> - Work on <b>hands-on projects</b> that make the learning process engaging and effective.<br> - Upon completion, receive a <b>shareable certificate</b> that can boost your LinkedIn profile and resume. <br><br> Whether you\u2019re looking to advance in your career or simply curious about AI, our course provides all the tools you need to get started.\\xa0 <br><br> <b>Sign up today and begin your journey into the world of AI!</b> <br><br> <b>Best Regards,</b> <br><br> [Your Name]\\xa0\\xa0<br> [Your Job Title]\\xa0\\xa0<br> [Contact Information]\\xa0\\xa0<br> [Website URL]\\xa0\\xa0 <br><br> --- <br><br> Feel free to contact us at [Contact Email] for more information. We're here to help you start your learning journey!\",rxlCpwMSw:addImageAlt({src:\"https://framerusercontent.com/images/hWHTxC8ciues3s9PJgogA4IkkQ.svg\"},\"\"),s3AZBuxuh:\"\uD83C\uDF81  Describe your Product / Service\",s9oC_wr6V:false,TVrQPHnoZ:0,variant:\"yDUFpZaYc\",vptZktgfC:\"\uD83D\uDCDD  No. of captions required?\",WIXWxghO3:'An online course on \"Introduction to Artificial Intelligence.\"\\xa0\\n\\nModules:\\n- What AI and GenAI are and their core concepts\\n- The transformation of our lives and work through AI applications and use cases\\n- The potential impact of AI on businesses and careers\\n- The issues, limitations, and ethical concerns surrounding AI\\n\\n\\n\\n',XxMuE0Szy:\"Email Tools\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-meD5u.framer-ssavzs, .framer-meD5u .framer-ssavzs { display: block; }\",\".framer-meD5u.framer-fb6e5e { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 820px; }\",\".framer-meD5u .framer-1f2id82 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 71%; }\",\".framer-meD5u .framer-1v6hdrf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 540px; overflow: hidden; padding: 6px; position: relative; width: 540px; will-change: var(--framer-will-change-override, transform); }\",\".framer-meD5u .framer-1f177yv, .framer-meD5u .framer-1ddjjyw, .framer-meD5u .framer-ubbltf, .framer-meD5u .framer-1j7xwr { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px 25px 10px 25px; position: relative; width: min-content; }\",\".framer-meD5u .framer-rmebf8, .framer-meD5u .framer-b2idt8, .framer-meD5u .framer-12bk660, .framer-meD5u .framer-12v88or { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); overflow: visible; position: relative; width: 16px; }\",\".framer-meD5u .framer-1nchsex, .framer-meD5u .framer-l0u0yi, .framer-meD5u .framer-schvw5, .framer-meD5u .framer-jtlr2u { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-meD5u .framer-qdzuiy-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-meD5u.framer-fb6e5e, .framer-meD5u .framer-1f2id82, .framer-meD5u .framer-1v6hdrf, .framer-meD5u .framer-1f177yv, .framer-meD5u .framer-1ddjjyw, .framer-meD5u .framer-ubbltf, .framer-meD5u .framer-1j7xwr { gap: 0px; } .framer-meD5u.framer-fb6e5e > *, .framer-meD5u .framer-1f2id82 > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-meD5u.framer-fb6e5e > :first-child, .framer-meD5u .framer-1f2id82 > :first-child { margin-top: 0px; } .framer-meD5u.framer-fb6e5e > :last-child, .framer-meD5u .framer-1f2id82 > :last-child { margin-bottom: 0px; } .framer-meD5u .framer-1v6hdrf > *, .framer-meD5u .framer-1f177yv > *, .framer-meD5u .framer-1ddjjyw > *, .framer-meD5u .framer-ubbltf > *, .framer-meD5u .framer-1j7xwr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-meD5u .framer-1v6hdrf > :first-child, .framer-meD5u .framer-1f177yv > :first-child, .framer-meD5u .framer-1ddjjyw > :first-child, .framer-meD5u .framer-ubbltf > :first-child, .framer-meD5u .framer-1j7xwr > :first-child { margin-left: 0px; } .framer-meD5u .framer-1v6hdrf > :last-child, .framer-meD5u .framer-1f177yv > :last-child, .framer-meD5u .framer-1ddjjyw > :last-child, .framer-meD5u .framer-ubbltf > :last-child, .framer-meD5u .framer-1j7xwr > :last-child { margin-right: 0px; } }\",\".framer-meD5u.framer-v-tmmci.framer-fb6e5e, .framer-meD5u.framer-v-16uoz9h.framer-fb6e5e, .framer-meD5u.framer-v-147kj01.framer-fb6e5e, .framer-meD5u.framer-v-1royfgb.framer-fb6e5e { gap: 80px; width: 390px; }\",\".framer-meD5u.framer-v-tmmci .framer-1f2id82, .framer-meD5u.framer-v-16uoz9h .framer-1f2id82, .framer-meD5u.framer-v-147kj01 .framer-1f2id82, .framer-meD5u.framer-v-1royfgb .framer-1f2id82 { gap: 40px; width: 90%; }\",\".framer-meD5u.framer-v-tmmci .framer-1v6hdrf { flex-wrap: wrap; gap: 6px; max-width: 450px; width: 100%; }\",\".framer-meD5u.framer-v-tmmci .framer-1f177yv, .framer-meD5u.framer-v-tmmci .framer-1ddjjyw, .framer-meD5u.framer-v-tmmci .framer-ubbltf, .framer-meD5u.framer-v-tmmci .framer-1j7xwr, .framer-meD5u.framer-v-16uoz9h .framer-1f177yv, .framer-meD5u.framer-v-16uoz9h .framer-1ddjjyw, .framer-meD5u.framer-v-16uoz9h .framer-ubbltf, .framer-meD5u.framer-v-16uoz9h .framer-1j7xwr, .framer-meD5u.framer-v-147kj01 .framer-1f177yv, .framer-meD5u.framer-v-147kj01 .framer-1ddjjyw, .framer-meD5u.framer-v-147kj01 .framer-ubbltf, .framer-meD5u.framer-v-147kj01 .framer-1j7xwr, .framer-meD5u.framer-v-1royfgb .framer-1f177yv, .framer-meD5u.framer-v-1royfgb .framer-1ddjjyw, .framer-meD5u.framer-v-1royfgb .framer-ubbltf, .framer-meD5u.framer-v-1royfgb .framer-1j7xwr { gap: 5px; padding: 10px 8px 10px 8px; }\",\".framer-meD5u.framer-v-tmmci .framer-rmebf8, .framer-meD5u.framer-v-tmmci .framer-b2idt8, .framer-meD5u.framer-v-tmmci .framer-12bk660, .framer-meD5u.framer-v-tmmci .framer-12v88or, .framer-meD5u.framer-v-16uoz9h .framer-rmebf8, .framer-meD5u.framer-v-16uoz9h .framer-b2idt8, .framer-meD5u.framer-v-16uoz9h .framer-12bk660, .framer-meD5u.framer-v-16uoz9h .framer-12v88or, .framer-meD5u.framer-v-147kj01 .framer-rmebf8, .framer-meD5u.framer-v-147kj01 .framer-b2idt8, .framer-meD5u.framer-v-147kj01 .framer-12bk660, .framer-meD5u.framer-v-147kj01 .framer-12v88or, .framer-meD5u.framer-v-1royfgb .framer-rmebf8, .framer-meD5u.framer-v-1royfgb .framer-b2idt8, .framer-meD5u.framer-v-1royfgb .framer-12bk660, .framer-meD5u.framer-v-1royfgb .framer-12v88or { height: var(--framer-aspect-ratio-supported, 15px); width: 15px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-meD5u.framer-v-tmmci.framer-fb6e5e, .framer-meD5u.framer-v-tmmci .framer-1f2id82, .framer-meD5u.framer-v-tmmci .framer-1v6hdrf, .framer-meD5u.framer-v-tmmci .framer-1f177yv, .framer-meD5u.framer-v-tmmci .framer-1ddjjyw, .framer-meD5u.framer-v-tmmci .framer-ubbltf, .framer-meD5u.framer-v-tmmci .framer-1j7xwr { gap: 0px; } .framer-meD5u.framer-v-tmmci.framer-fb6e5e > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-meD5u.framer-v-tmmci.framer-fb6e5e > :first-child, .framer-meD5u.framer-v-tmmci .framer-1f2id82 > :first-child { margin-top: 0px; } .framer-meD5u.framer-v-tmmci.framer-fb6e5e > :last-child, .framer-meD5u.framer-v-tmmci .framer-1f2id82 > :last-child { margin-bottom: 0px; } .framer-meD5u.framer-v-tmmci .framer-1f2id82 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-meD5u.framer-v-tmmci .framer-1v6hdrf > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-meD5u.framer-v-tmmci .framer-1v6hdrf > :first-child, .framer-meD5u.framer-v-tmmci .framer-1f177yv > :first-child, .framer-meD5u.framer-v-tmmci .framer-1ddjjyw > :first-child, .framer-meD5u.framer-v-tmmci .framer-ubbltf > :first-child, .framer-meD5u.framer-v-tmmci .framer-1j7xwr > :first-child { margin-left: 0px; } .framer-meD5u.framer-v-tmmci .framer-1v6hdrf > :last-child, .framer-meD5u.framer-v-tmmci .framer-1f177yv > :last-child, .framer-meD5u.framer-v-tmmci .framer-1ddjjyw > :last-child, .framer-meD5u.framer-v-tmmci .framer-ubbltf > :last-child, .framer-meD5u.framer-v-tmmci .framer-1j7xwr > :last-child { margin-right: 0px; } .framer-meD5u.framer-v-tmmci .framer-1f177yv > *, .framer-meD5u.framer-v-tmmci .framer-1ddjjyw > *, .framer-meD5u.framer-v-tmmci .framer-ubbltf > *, .framer-meD5u.framer-v-tmmci .framer-1j7xwr > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",\".framer-meD5u.framer-v-16uoz9h .framer-1v6hdrf, .framer-meD5u.framer-v-147kj01 .framer-1v6hdrf, .framer-meD5u.framer-v-1royfgb .framer-1v6hdrf { flex-wrap: wrap; gap: 6px; max-width: 430px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-meD5u.framer-v-16uoz9h.framer-fb6e5e, .framer-meD5u.framer-v-16uoz9h .framer-1f2id82, .framer-meD5u.framer-v-16uoz9h .framer-1v6hdrf, .framer-meD5u.framer-v-16uoz9h .framer-1f177yv, .framer-meD5u.framer-v-16uoz9h .framer-1ddjjyw, .framer-meD5u.framer-v-16uoz9h .framer-ubbltf, .framer-meD5u.framer-v-16uoz9h .framer-1j7xwr { gap: 0px; } .framer-meD5u.framer-v-16uoz9h.framer-fb6e5e > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-meD5u.framer-v-16uoz9h.framer-fb6e5e > :first-child, .framer-meD5u.framer-v-16uoz9h .framer-1f2id82 > :first-child { margin-top: 0px; } .framer-meD5u.framer-v-16uoz9h.framer-fb6e5e > :last-child, .framer-meD5u.framer-v-16uoz9h .framer-1f2id82 > :last-child { margin-bottom: 0px; } .framer-meD5u.framer-v-16uoz9h .framer-1f2id82 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-meD5u.framer-v-16uoz9h .framer-1v6hdrf > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-meD5u.framer-v-16uoz9h .framer-1v6hdrf > :first-child, .framer-meD5u.framer-v-16uoz9h .framer-1f177yv > :first-child, .framer-meD5u.framer-v-16uoz9h .framer-1ddjjyw > :first-child, .framer-meD5u.framer-v-16uoz9h .framer-ubbltf > :first-child, .framer-meD5u.framer-v-16uoz9h .framer-1j7xwr > :first-child { margin-left: 0px; } .framer-meD5u.framer-v-16uoz9h .framer-1v6hdrf > :last-child, .framer-meD5u.framer-v-16uoz9h .framer-1f177yv > :last-child, .framer-meD5u.framer-v-16uoz9h .framer-1ddjjyw > :last-child, .framer-meD5u.framer-v-16uoz9h .framer-ubbltf > :last-child, .framer-meD5u.framer-v-16uoz9h .framer-1j7xwr > :last-child { margin-right: 0px; } .framer-meD5u.framer-v-16uoz9h .framer-1f177yv > *, .framer-meD5u.framer-v-16uoz9h .framer-1ddjjyw > *, .framer-meD5u.framer-v-16uoz9h .framer-ubbltf > *, .framer-meD5u.framer-v-16uoz9h .framer-1j7xwr > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-meD5u.framer-v-147kj01.framer-fb6e5e, .framer-meD5u.framer-v-147kj01 .framer-1f2id82, .framer-meD5u.framer-v-147kj01 .framer-1v6hdrf, .framer-meD5u.framer-v-147kj01 .framer-1f177yv, .framer-meD5u.framer-v-147kj01 .framer-1ddjjyw, .framer-meD5u.framer-v-147kj01 .framer-ubbltf, .framer-meD5u.framer-v-147kj01 .framer-1j7xwr { gap: 0px; } .framer-meD5u.framer-v-147kj01.framer-fb6e5e > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-meD5u.framer-v-147kj01.framer-fb6e5e > :first-child, .framer-meD5u.framer-v-147kj01 .framer-1f2id82 > :first-child { margin-top: 0px; } .framer-meD5u.framer-v-147kj01.framer-fb6e5e > :last-child, .framer-meD5u.framer-v-147kj01 .framer-1f2id82 > :last-child { margin-bottom: 0px; } .framer-meD5u.framer-v-147kj01 .framer-1f2id82 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-meD5u.framer-v-147kj01 .framer-1v6hdrf > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-meD5u.framer-v-147kj01 .framer-1v6hdrf > :first-child, .framer-meD5u.framer-v-147kj01 .framer-1f177yv > :first-child, .framer-meD5u.framer-v-147kj01 .framer-1ddjjyw > :first-child, .framer-meD5u.framer-v-147kj01 .framer-ubbltf > :first-child, .framer-meD5u.framer-v-147kj01 .framer-1j7xwr > :first-child { margin-left: 0px; } .framer-meD5u.framer-v-147kj01 .framer-1v6hdrf > :last-child, .framer-meD5u.framer-v-147kj01 .framer-1f177yv > :last-child, .framer-meD5u.framer-v-147kj01 .framer-1ddjjyw > :last-child, .framer-meD5u.framer-v-147kj01 .framer-ubbltf > :last-child, .framer-meD5u.framer-v-147kj01 .framer-1j7xwr > :last-child { margin-right: 0px; } .framer-meD5u.framer-v-147kj01 .framer-1f177yv > *, .framer-meD5u.framer-v-147kj01 .framer-1ddjjyw > *, .framer-meD5u.framer-v-147kj01 .framer-ubbltf > *, .framer-meD5u.framer-v-147kj01 .framer-1j7xwr > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-meD5u.framer-v-1royfgb.framer-fb6e5e, .framer-meD5u.framer-v-1royfgb .framer-1f2id82, .framer-meD5u.framer-v-1royfgb .framer-1v6hdrf, .framer-meD5u.framer-v-1royfgb .framer-1f177yv, .framer-meD5u.framer-v-1royfgb .framer-1ddjjyw, .framer-meD5u.framer-v-1royfgb .framer-ubbltf, .framer-meD5u.framer-v-1royfgb .framer-1j7xwr { gap: 0px; } .framer-meD5u.framer-v-1royfgb.framer-fb6e5e > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-meD5u.framer-v-1royfgb.framer-fb6e5e > :first-child, .framer-meD5u.framer-v-1royfgb .framer-1f2id82 > :first-child { margin-top: 0px; } .framer-meD5u.framer-v-1royfgb.framer-fb6e5e > :last-child, .framer-meD5u.framer-v-1royfgb .framer-1f2id82 > :last-child { margin-bottom: 0px; } .framer-meD5u.framer-v-1royfgb .framer-1f2id82 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-meD5u.framer-v-1royfgb .framer-1v6hdrf > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-meD5u.framer-v-1royfgb .framer-1v6hdrf > :first-child, .framer-meD5u.framer-v-1royfgb .framer-1f177yv > :first-child, .framer-meD5u.framer-v-1royfgb .framer-1ddjjyw > :first-child, .framer-meD5u.framer-v-1royfgb .framer-ubbltf > :first-child, .framer-meD5u.framer-v-1royfgb .framer-1j7xwr > :first-child { margin-left: 0px; } .framer-meD5u.framer-v-1royfgb .framer-1v6hdrf > :last-child, .framer-meD5u.framer-v-1royfgb .framer-1f177yv > :last-child, .framer-meD5u.framer-v-1royfgb .framer-1ddjjyw > :last-child, .framer-meD5u.framer-v-1royfgb .framer-ubbltf > :last-child, .framer-meD5u.framer-v-1royfgb .framer-1j7xwr > :last-child { margin-right: 0px; } .framer-meD5u.framer-v-1royfgb .framer-1f177yv > *, .framer-meD5u.framer-v-1royfgb .framer-1ddjjyw > *, .framer-meD5u.framer-v-1royfgb .framer-ubbltf > *, .framer-meD5u.framer-v-1royfgb .framer-1j7xwr > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 723\n * @framerIntrinsicWidth 820\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"uTTNQFFOM\":{\"layout\":[\"fixed\",\"auto\"]},\"hc6FwHgUt\":{\"layout\":[\"fixed\",\"auto\"]},\"WpR6vxaxc\":{\"layout\":[\"fixed\",\"auto\"]},\"hx9IiSB3W\":{\"layout\":[\"fixed\",\"auto\"]},\"sSmrFiRV5\":{\"layout\":[\"fixed\",\"auto\"]},\"SSAysjHln\":{\"layout\":[\"fixed\",\"auto\"]},\"fv9msD_wS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCa6xqpDaS=withCSS(Component,css,\"framer-meD5u\");export default FramerCa6xqpDaS;FramerCa6xqpDaS.displayName=\"Social Wrap\";FramerCa6xqpDaS.defaultProps={height:723,width:820};addPropertyControls(FramerCa6xqpDaS,{variant:{options:[\"wdCQzVgTn\",\"uTTNQFFOM\",\"hc6FwHgUt\",\"WpR6vxaxc\",\"hx9IiSB3W\",\"sSmrFiRV5\",\"SSAysjHln\",\"fv9msD_wS\"],optionTitles:[\"Social\",\"Youtube\",\"Ads\",\"Email\",\"Social Mobile\",\"Youtube Mobile\",\"Ads Mobile\",\"Email Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerCa6xqpDaS,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...SocialAnimatorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCa6xqpDaS\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"820\",\"framerIntrinsicHeight\":\"723\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uTTNQFFOM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hc6FwHgUt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WpR6vxaxc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hx9IiSB3W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sSmrFiRV5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SSAysjHln\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fv9msD_wS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (fd7a51d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import{Lottie}from\"https://framerusercontent.com/modules/YbkSqZ7STzW5WsMb1yan/7oWoX9MqdnxameM59dqC/Lottie.js\";import{withJiggleOnVisible,withShake}from\"https://framerusercontent.com/modules/SgyPsVAyTNfkXKeWjphd/SZoMyX1A7T2BGLwwx4II/Shake.js\";import GradientButton,*as GradientButtonInfo from\"https://framerusercontent.com/modules/mdSgvN0ZSP9SARh85APf/73opurrBAOTrUUkcSA9a/Z2zrq6lIe.js\";const EmbedFonts=getFonts(Embed);const GradientButtonFonts=getFonts(GradientButton);const GradientButtonWithJiggleOnVisibleWithMappedReactProps1rmg27t=withMappedReactProps(withJiggleOnVisible(GradientButton),GradientButtonInfo);const ImageWithShake=withShake(Image);const LottieFonts=getFonts(Lottie);const cycleOrder=[\"b8qWnjQFM\",\"VNLgBHunv\",\"AKJYnimeW\",\"PdBvWrJvr\"];const serializationHash=\"framer-oO44Q\";const variantClassNames={AKJYnimeW:\"framer-v-1ml8814\",b8qWnjQFM:\"framer-v-1gal9d8\",PdBvWrJvr:\"framer-v-1aeuv4a\",VNLgBHunv:\"framer-v-z5jyco\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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 humanReadableVariantMap={\"image-mobile\":\"PdBvWrJvr\",desktop:\"b8qWnjQFM\",image:\"VNLgBHunv\",mobile:\"AKJYnimeW\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"b8qWnjQFM\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"b8qWnjQFM\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1x2b43m=activeVariantCallback(async(...args)=>{setVariant(\"V_AiReNkV\");});const onTap10bfg9v=activeVariantCallback(async(...args)=>{setVariant(\"b8qWnjQFM\");});const onTap96gzat=activeVariantCallback(async(...args)=>{setVariant(\"AKJYnimeW\");});const bxgbZ5nBadw14wj=activeVariantCallback(async(...args)=>{setVariant(\"VNLgBHunv\");});const bxgbZ5nBae2uuqx=activeVariantCallback(async(...args)=>{setVariant(\"PdBvWrJvr\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"VNLgBHunv\",\"PdBvWrJvr\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"VNLgBHunv\",\"PdBvWrJvr\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"AKJYnimeW\")return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:620,pixelWidth:681,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/XUUMUZmWqRaPNnJOYiV8r1fYTng.svg\",srcSet:\"https://framerusercontent.com/images/XUUMUZmWqRaPNnJOYiV8r1fYTng.svg?scale-down-to=512 512w,https://framerusercontent.com/images/XUUMUZmWqRaPNnJOYiV8r1fYTng.svg 681w\"},className:cx(scopingClassNames,\"framer-1gal9d8\",className,classNames),\"data-framer-name\":\"desktop\",layoutDependency:layoutDependency,layoutId:\"b8qWnjQFM\",ref:ref??ref1,style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,...style},variants:{AKJYnimeW:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},PdBvWrJvr:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({AKJYnimeW:{\"data-framer-name\":\"mobile\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:620,pixelWidth:681,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/XUUMUZmWqRaPNnJOYiV8r1fYTng.svg\",srcSet:\"https://framerusercontent.com/images/XUUMUZmWqRaPNnJOYiV8r1fYTng.svg?scale-down-to=512 512w,https://framerusercontent.com/images/XUUMUZmWqRaPNnJOYiV8r1fYTng.svg 681w\"}},PdBvWrJvr:{\"data-framer-name\":\"image-mobile\"},VNLgBHunv:{\"data-framer-name\":\"image\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wwcu5q\",layoutDependency:layoutDependency,layoutId:\"hWFTBPhvz\",style:{backgroundColor:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 12px 38px 0px rgba(30, 32, 34, 0.12)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||559.5)-80-550.2)/2+0+0)+0+0),pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"}, 740px)`,src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"},className:\"framer-9v2zq4\",layoutDependency:layoutDependency,layoutId:\"GKuvrBjEh\",...addPropertyOverrides({AKJYnimeW:{background:{alt:\"\",fit:\"fit\",pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"}, 740px)`,src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},PdBvWrJvr:{background:{alt:\"\",fit:\"fit\",pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},VNLgBHunv:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||640.5)-80-556.8)/2+0+0)+0+0),pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"}, 740px)`,src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1urjtz6\",layoutDependency:layoutDependency,layoutId:\"OIxcpu1zu\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qly8fr\",layoutDependency:layoutDependency,layoutId:\"q1o9mCjCY\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17z8tzv\",layoutDependency:layoutDependency,layoutId:\"UD7bLzguN\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||559.5)-80-550.2)/2+0+0)+0+35+30+2842170943040401e-29+0+0+0),pixelHeight:18,pixelWidth:19,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OnnkC97RIGezBsj7YvLTnsOODgU.svg\"},className:\"framer-1lpk1np\",layoutDependency:layoutDependency,layoutId:\"zNvqAH5Tb\",...addPropertyOverrides({AKJYnimeW:{background:{alt:\"\",fit:\"fit\",pixelHeight:18,pixelWidth:19,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OnnkC97RIGezBsj7YvLTnsOODgU.svg\"}}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"In a shadowy forest, a lone figure stands in a clearing under a sky full of twinkling stars. The person's silhouette is outlined against the luminous sky, creating a sense of tranquility and solitude. The scene contrasts darkness and light with exquisite details of the trees, the starry night, and a serene expression on the person's face in a natural painting style.\"})}),className:\"framer-g2sgg7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"w_pyHoW3G\",style:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d95mai\",\"data-border\":true,\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"BISZFPj84\",onTap:onTap1x2b43m,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(235, 244, 255, 0.4)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},...addPropertyOverrides({PdBvWrJvr:{onTap:onTap96gzat},VNLgBHunv:{onTap:onTap10bfg9v}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:12,pixelWidth:15,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WXZZ5f4xxyLxjyORlANrcWKTL0E.svg\"},className:\"framer-15muluc\",layoutDependency:layoutDependency,layoutId:\"Uc0ll8yzB\",...addPropertyOverrides({VNLgBHunv:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||640.5)-80-556.8)/2+0+0)+0+35+30+-2842170943040401e-29+0+0+11+9.399999999999999),pixelHeight:12,pixelWidth:15,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WXZZ5f4xxyLxjyORlANrcWKTL0E.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Back\"})}),className:\"framer-3gmoi4\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Beh39XjH9\",style:{\"--extracted-r6o4lv\":\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({PdBvWrJvr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Back\"})})}},baseVariant,gestureVariant)})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sgcvrc\",layoutDependency:layoutDependency,layoutId:\"sS6YlhSOJ\",children:isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m1x6fg\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"ApD8P22fh\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(218, 228, 248)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,boxShadow:\"0px 12px 38px 0px rgba(30, 32, 34, 0.12)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nxqdgm\",layoutDependency:layoutDependency,layoutId:\"riKB6sNqF\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:14,pixelWidth:14,src:\"https://framerusercontent.com/images/KnBAB36WeU1FQqTXykx26AHibc.svg\"},className:\"framer-qb1ntc\",layoutDependency:layoutDependency,layoutId:\"Cwg7gwhHw\",...addPropertyOverrides({VNLgBHunv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||640.5)-80-556.8)/2+0+0)+0+35+30+-2842170943040401e-29+0+0+0+0+17.799999999999997+2.5999999999999996),pixelHeight:14,pixelWidth:14,src:\"https://framerusercontent.com/images/KnBAB36WeU1FQqTXykx26AHibc.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Text Prompt\"})}),className:\"framer-10qkgc4\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"EL8YkLN9D\",style:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({PdBvWrJvr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Text Prompt\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15gtv0i\",layoutDependency:layoutDependency,layoutId:\"TrZTl4VLG\",style:{backgroundColor:\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)))\"},children:\"Result\"})}),className:\"framer-15yuzie\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"cPBPgfuJg\",style:{\"--extracted-r6o4lv\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({PdBvWrJvr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)))\"},children:\"Result\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:16,pixelWidth:16,src:\"https://framerusercontent.com/images/SxT5yB1leAVbUnLzwV6PcMx45s.svg\"},className:\"framer-3iahet\",layoutDependency:layoutDependency,layoutId:\"Rrmg8QG0G\",...addPropertyOverrides({VNLgBHunv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||640.5)-80-556.8)/2+0+0)+0+35+30+-2842170943040401e-29+0+0+0+0+10+10.399999999999999),pixelHeight:16,pixelWidth:16,src:\"https://framerusercontent.com/images/SxT5yB1leAVbUnLzwV6PcMx45s.svg\"}}},baseVariant,gestureVariant)})]})]})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7vhsc1\",layoutDependency:layoutDependency,layoutId:\"nMVfZK667\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ezfooo\",layoutDependency:layoutDependency,layoutId:\"vXsXjT4IO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Aspect Ratio\"})}),className:\"framer-1l85eaq\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"hcd_I5PyC\",style:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AKJYnimeW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Aspect Ratio\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1myioy9\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"cu3NJaqDK\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(218, 228, 248)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wpjo9b\",layoutDependency:layoutDependency,layoutId:\"sB9oxXfIi\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dll4gu\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"Ha87KfFqg\",style:{\"--border-bottom-width\":\"1.4px\",\"--border-color\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\",\"--border-left-width\":\"1.4px\",\"--border-right-width\":\"1.4px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.4px\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},variants:{AKJYnimeW:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4}}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Landscape\"})}),className:\"framer-1nd9jxo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TneJ7Y6hS\",style:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AKJYnimeW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Landscape\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rlydtr\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"MiiRYXORu\",style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",rotate:-45}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c4t4jm\",layoutDependency:layoutDependency,layoutId:\"I488SR3Lj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Quality\"})}),className:\"framer-9zbh5o\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"l5nnRrPZa\",style:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AKJYnimeW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Quality\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gyuxbw\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"NGSPO6OnB\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(218, 228, 248)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j7wb92\",layoutDependency:layoutDependency,layoutId:\"oecHt4bbd\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-5pkhk7\",layoutDependency:layoutDependency,layoutId:\"k9PHS5bYO\",style:{backgroundColor:\"rgb(235, 244, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Standard\"})}),className:\"framer-1f1lwk8\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"pYYlejwcN\",style:{\"--extracted-r6o4lv\":\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AKJYnimeW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Standard\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"HD\"})}),className:\"framer-1f0yo2g\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"QFjb2_3mh\",style:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AKJYnimeW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"HD\"})})}},baseVariant,gestureVariant)})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yc8923\",layoutDependency:layoutDependency,layoutId:\"yeWl6cxs9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Style\"})}),className:\"framer-aac99\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"UGa2RNSRI\",style:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AKJYnimeW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Style\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11tt3w4\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"csHcXShsB\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(218, 228, 248)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Natural\"})}),className:\"framer-93kim9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Or_2bsfB6\",style:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AKJYnimeW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Natural\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-z966d0\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"lydK6UUqV\",style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",rotate:-45}})]})]})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7kt80l-container\",layoutDependency:layoutDependency,layoutId:\"rAypwEak2-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div class=\"image-container\">\\n  <img src=\"https://i.ibb.co/F8tK4CQ/image-5.webp\" alt=\"Description\" class=\"animated-image\">\\n</div>\\n\\n<style>\\n.image-container {\\n  width: 100%;\\n  height: 100%;\\n  overflow: hidden;\\n  position: relative;\\nborder-radius: 6px;\\n}\\n\\n.animated-image {\\n  width: 100%;\\n  height: 100%;\\n  object-fit: cover;\\n  animation: reveal 2s ease-out forwards;\\n}\\n\\n@keyframes reveal {\\n  0% {\\n    clip-path: inset(0 0 100% 0);\\n  }\\n  100% {\\n    clip-path: inset(0 0 0 0);\\n  }\\n}\\n</style>',id:\"rAypwEak2\",layoutId:\"rAypwEak2\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\",...addPropertyOverrides({PdBvWrJvr:{html:'<div class=\"image-container\">\\n  <img src=\"https://i.postimg.cc/jdyLvp63/image-5-1.webp\" alt=\"Description\" class=\"animated-image\">\\n</div>\\n\\n<style>\\n.image-container {\\n  width: 100%;\\n  height: 100%;\\n  overflow: hidden;\\n  position: relative;\\nborder-radius: 6px;\\n}\\n\\n.animated-image {\\n  width: 100%;\\n  height: 100%;\\n  object-fit: cover;\\n  animation: reveal 2s ease-out forwards;\\n}\\n\\n@keyframes reveal {\\n  0% {\\n    clip-path: inset(0 0 100% 0);\\n  }\\n  100% {\\n    clip-path: inset(0 0 0 0);\\n  }\\n}\\n</style>'},VNLgBHunv:{html:'<div class=\"image-container\">\\n  <img src=\"https://i.postimg.cc/jdyLvp63/image-5-1.webp\" alt=\"Description\" class=\"animated-image\">\\n</div>\\n\\n<style>\\n.image-container {\\n  width: 100%;\\n  height: 100%;\\n  overflow: hidden;\\n  position: relative;\\nborder-radius: 6px;\\n}\\n\\n.animated-image {\\n  width: 100%;\\n  height: 100%;\\n  object-fit: cover;\\n  animation: reveal 2s ease-out forwards;\\n}\\n\\n@keyframes reveal {\\n  0% {\\n    clip-path: inset(0 0 100% 0);\\n  }\\n  100% {\\n    clip-path: inset(0 0 0 0);\\n  }\\n}\\n</style>'}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2njuom\",layoutDependency:layoutDependency,layoutId:\"pRKGmFicf\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`calc(min(${componentViewport?.width||\"100vw\"}, 740px) - 60px)`,y:(componentViewport?.y||0)+40+(((componentViewport?.height||559.5)-80-550.2)/2+0+0)+0+35+30+405.20000000000005+0,...addPropertyOverrides({AKJYnimeW:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 740px) - 30px)`,y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qf40iy-container\",layoutDependency:layoutDependency,layoutId:\"zyFotwkTr-container\",children:/*#__PURE__*/_jsx(GradientButtonWithJiggleOnVisibleWithMappedReactProps1rmg27t,{bxgbZ5nBa:bxgbZ5nBadw14wj,height:\"100%\",id:\"zyFotwkTr\",JPSU_6228:\"Generate Image\",layoutId:\"zyFotwkTr\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({AKJYnimeW:{bxgbZ5nBa:bxgbZ5nBae2uuqx}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yjv0ig\",layoutDependency:layoutDependency,layoutId:\"NKvyAE0NU\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(ImageWithShake,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||559.5)-80-550.2)/2+0+0)+0+35+30+405.20000000000005+-68.99999999999999+0+0),pixelHeight:40,pixelWidth:186,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MhmUXDCXZNwap7x4xX7JomjD3A.svg\"},className:\"framer-vsnpsd\",layoutDependency:layoutDependency,layoutId:\"crFMf6aH7\",style:{rotate:-15}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2bhnif-container\",layoutDependency:layoutDependency,layoutId:\"a3Cfe0pTw-container\",style:{rotate:24},children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"a3Cfe0pTw\",isForwardsDirection:true,layoutId:\"a3Cfe0pTw\",loop:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/UzpPCVhjiEHhGb3wnmPTOpXddEM.json\",srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oO44Q.framer-7khhih, .framer-oO44Q .framer-7khhih { display: block; }\",\".framer-oO44Q.framer-1gal9d8 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 40px 0px 40px 0px; position: relative; width: 740px; }\",\".framer-oO44Q .framer-1wwcu5q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 740px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oO44Q .framer-9v2zq4 { flex: none; height: 35px; overflow: visible; position: relative; width: 100%; }\",\".framer-oO44Q .framer-1urjtz6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 140px; height: min-content; justify-content: center; overflow: visible; padding: 30px; position: relative; width: 100%; }\",\".framer-oO44Q .framer-qly8fr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oO44Q .framer-17z8tzv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oO44Q .framer-1lpk1np { flex: none; height: 18px; overflow: visible; position: relative; width: 18px; }\",\".framer-oO44Q .framer-g2sgg7, .framer-oO44Q .framer-1f0yo2g { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-oO44Q .framer-d95mai { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 8px 18px 8px 18px; position: relative; width: min-content; }\",\".framer-oO44Q .framer-15muluc, .framer-oO44Q .framer-qb1ntc, .framer-oO44Q .framer-3iahet { flex: none; height: 14px; overflow: visible; position: relative; width: 14px; }\",\".framer-oO44Q .framer-3gmoi4, .framer-oO44Q .framer-10qkgc4, .framer-oO44Q .framer-15yuzie, .framer-oO44Q .framer-1l85eaq, .framer-oO44Q .framer-1nd9jxo, .framer-oO44Q .framer-9zbh5o, .framer-oO44Q .framer-1f1lwk8, .framer-oO44Q .framer-aac99, .framer-oO44Q .framer-93kim9 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-oO44Q .framer-1sgcvrc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 55px; overflow: visible; padding: 0px 60px 0px 0px; position: relative; width: 1px; }\",\".framer-oO44Q .framer-m1x6fg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 10px; position: relative; width: 255px; }\",\".framer-oO44Q .framer-1nxqdgm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px 10px 0px 0px; position: relative; width: 1px; }\",\".framer-oO44Q .framer-15gtv0i { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; overflow: visible; padding: 9px 0px 9px 0px; position: relative; width: 1px; }\",\".framer-oO44Q .framer-7vhsc1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oO44Q .framer-1ezfooo, .framer-oO44Q .framer-c4t4jm, .framer-oO44Q .framer-1yc8923 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-oO44Q .framer-1myioy9, .framer-oO44Q .framer-11tt3w4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 13px; position: relative; width: 100%; }\",\".framer-oO44Q .framer-wpjo9b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-oO44Q .framer-1dll4gu { flex: none; height: 16px; overflow: visible; position: relative; width: 22px; }\",\".framer-oO44Q .framer-1rlydtr, .framer-oO44Q .framer-z966d0 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 8px); overflow: visible; position: relative; width: 8px; }\",\".framer-oO44Q .framer-1gyuxbw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 5px; position: relative; width: 100%; }\",\".framer-oO44Q .framer-1j7wb92 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-oO44Q .framer-5pkhk7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 9px 0px 9px 0px; position: relative; width: 120px; }\",\".framer-oO44Q .framer-7kt80l-container { aspect-ratio: 1.780104712041885 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 112px); position: relative; width: 100%; }\",\".framer-oO44Q .framer-2njuom { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oO44Q .framer-1qf40iy-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-oO44Q .framer-1yjv0ig { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: -14%; overflow: visible; padding: 0px; position: absolute; top: -28%; width: min-content; z-index: 1; }\",\".framer-oO44Q .framer-vsnpsd { flex: none; height: 40px; overflow: visible; position: relative; width: 186px; }\",\".framer-oO44Q .framer-2bhnif-container { flex: none; height: 70px; position: relative; width: 90px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oO44Q.framer-1gal9d8, .framer-oO44Q .framer-1wwcu5q, .framer-oO44Q .framer-1urjtz6, .framer-oO44Q .framer-qly8fr, .framer-oO44Q .framer-17z8tzv, .framer-oO44Q .framer-d95mai, .framer-oO44Q .framer-1sgcvrc, .framer-oO44Q .framer-1nxqdgm, .framer-oO44Q .framer-15gtv0i, .framer-oO44Q .framer-7vhsc1, .framer-oO44Q .framer-1ezfooo, .framer-oO44Q .framer-wpjo9b, .framer-oO44Q .framer-c4t4jm, .framer-oO44Q .framer-5pkhk7, .framer-oO44Q .framer-1yc8923, .framer-oO44Q .framer-2njuom, .framer-oO44Q .framer-1yjv0ig { gap: 0px; } .framer-oO44Q.framer-1gal9d8 > *, .framer-oO44Q .framer-qly8fr > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-oO44Q.framer-1gal9d8 > :first-child, .framer-oO44Q .framer-1wwcu5q > :first-child, .framer-oO44Q .framer-1urjtz6 > :first-child, .framer-oO44Q .framer-qly8fr > :first-child, .framer-oO44Q .framer-1ezfooo > :first-child, .framer-oO44Q .framer-c4t4jm > :first-child, .framer-oO44Q .framer-5pkhk7 > :first-child, .framer-oO44Q .framer-1yc8923 > :first-child, .framer-oO44Q .framer-1yjv0ig > :first-child { margin-top: 0px; } .framer-oO44Q.framer-1gal9d8 > :last-child, .framer-oO44Q .framer-1wwcu5q > :last-child, .framer-oO44Q .framer-1urjtz6 > :last-child, .framer-oO44Q .framer-qly8fr > :last-child, .framer-oO44Q .framer-1ezfooo > :last-child, .framer-oO44Q .framer-c4t4jm > :last-child, .framer-oO44Q .framer-5pkhk7 > :last-child, .framer-oO44Q .framer-1yc8923 > :last-child, .framer-oO44Q .framer-1yjv0ig > :last-child { margin-bottom: 0px; } .framer-oO44Q .framer-1wwcu5q > *, .framer-oO44Q .framer-1yjv0ig > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-oO44Q .framer-1urjtz6 > * { margin: 0px; margin-bottom: calc(140px / 2); margin-top: calc(140px / 2); } .framer-oO44Q .framer-17z8tzv > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-oO44Q .framer-17z8tzv > :first-child, .framer-oO44Q .framer-d95mai > :first-child, .framer-oO44Q .framer-1sgcvrc > :first-child, .framer-oO44Q .framer-1nxqdgm > :first-child, .framer-oO44Q .framer-15gtv0i > :first-child, .framer-oO44Q .framer-7vhsc1 > :first-child, .framer-oO44Q .framer-wpjo9b > :first-child, .framer-oO44Q .framer-2njuom > :first-child { margin-left: 0px; } .framer-oO44Q .framer-17z8tzv > :last-child, .framer-oO44Q .framer-d95mai > :last-child, .framer-oO44Q .framer-1sgcvrc > :last-child, .framer-oO44Q .framer-1nxqdgm > :last-child, .framer-oO44Q .framer-15gtv0i > :last-child, .framer-oO44Q .framer-7vhsc1 > :last-child, .framer-oO44Q .framer-wpjo9b > :last-child, .framer-oO44Q .framer-2njuom > :last-child { margin-right: 0px; } .framer-oO44Q .framer-d95mai > *, .framer-oO44Q .framer-1nxqdgm > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-oO44Q .framer-1sgcvrc > *, .framer-oO44Q .framer-wpjo9b > *, .framer-oO44Q .framer-2njuom > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-oO44Q .framer-15gtv0i > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-oO44Q .framer-7vhsc1 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-oO44Q .framer-1ezfooo > *, .framer-oO44Q .framer-c4t4jm > *, .framer-oO44Q .framer-5pkhk7 > *, .framer-oO44Q .framer-1yc8923 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-oO44Q.framer-v-z5jyco .framer-1urjtz6 { gap: 25px; }\",\".framer-oO44Q.framer-v-z5jyco .framer-qly8fr, .framer-oO44Q.framer-v-z5jyco .framer-3iahet, .framer-oO44Q.framer-v-1aeuv4a .framer-qly8fr, .framer-oO44Q.framer-v-1aeuv4a .framer-3iahet { order: 0; }\",\".framer-oO44Q.framer-v-z5jyco .framer-17z8tzv { align-content: center; align-items: center; }\",\".framer-oO44Q.framer-v-z5jyco .framer-1sgcvrc { min-height: unset; }\",\".framer-oO44Q.framer-v-z5jyco .framer-15yuzie, .framer-oO44Q.framer-v-1aeuv4a .framer-15yuzie { order: 1; }\",\".framer-oO44Q.framer-v-z5jyco .framer-7kt80l-container { height: var(--framer-aspect-ratio-supported, 386px); order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oO44Q.framer-v-z5jyco .framer-1urjtz6 { gap: 0px; } .framer-oO44Q.framer-v-z5jyco .framer-1urjtz6 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-oO44Q.framer-v-z5jyco .framer-1urjtz6 > :first-child { margin-top: 0px; } .framer-oO44Q.framer-v-z5jyco .framer-1urjtz6 > :last-child { margin-bottom: 0px; } }\",\".framer-oO44Q.framer-v-1ml8814.framer-1gal9d8, .framer-oO44Q.framer-v-1aeuv4a.framer-1gal9d8 { width: 350px; }\",\".framer-oO44Q.framer-v-1ml8814 .framer-1urjtz6 { gap: 50px; padding: 15px; }\",\".framer-oO44Q.framer-v-1ml8814 .framer-17z8tzv { gap: 12px; overflow: auto; }\",\".framer-oO44Q.framer-v-1ml8814 .framer-1lpk1np { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 16px); width: 16px; }\",\".framer-oO44Q.framer-v-1ml8814 .framer-7vhsc1 { flex-wrap: wrap; }\",\".framer-oO44Q.framer-v-1ml8814 .framer-1ezfooo, .framer-oO44Q.framer-v-1ml8814 .framer-c4t4jm, .framer-oO44Q.framer-v-1ml8814 .framer-1yc8923 { flex: none; width: min-content; }\",\".framer-oO44Q.framer-v-1ml8814 .framer-1myioy9 { gap: 6px; justify-content: center; width: min-content; }\",\".framer-oO44Q.framer-v-1ml8814 .framer-1dll4gu { aspect-ratio: 1.375 / 1; height: var(--framer-aspect-ratio-supported, 13px); width: 17px; }\",\".framer-oO44Q.framer-v-1ml8814 .framer-1rlydtr, .framer-oO44Q.framer-v-1ml8814 .framer-z966d0 { height: var(--framer-aspect-ratio-supported, 6px); width: 6px; }\",\".framer-oO44Q.framer-v-1ml8814 .framer-1gyuxbw { gap: 0px; justify-content: center; width: min-content; }\",\".framer-oO44Q.framer-v-1ml8814 .framer-1j7wb92 { flex: none; gap: 0px; justify-content: center; width: min-content; }\",\".framer-oO44Q.framer-v-1ml8814 .framer-5pkhk7 { padding: 8px; width: min-content; }\",\".framer-oO44Q.framer-v-1ml8814 .framer-1f0yo2g { flex: none; min-width: 95px; white-space: pre; width: auto; }\",\".framer-oO44Q.framer-v-1ml8814 .framer-11tt3w4 { gap: 10px; justify-content: center; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oO44Q.framer-v-1ml8814 .framer-1urjtz6, .framer-oO44Q.framer-v-1ml8814 .framer-17z8tzv, .framer-oO44Q.framer-v-1ml8814 .framer-1myioy9, .framer-oO44Q.framer-v-1ml8814 .framer-1gyuxbw, .framer-oO44Q.framer-v-1ml8814 .framer-1j7wb92, .framer-oO44Q.framer-v-1ml8814 .framer-11tt3w4 { gap: 0px; } .framer-oO44Q.framer-v-1ml8814 .framer-1urjtz6 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-oO44Q.framer-v-1ml8814 .framer-1urjtz6 > :first-child { margin-top: 0px; } .framer-oO44Q.framer-v-1ml8814 .framer-1urjtz6 > :last-child { margin-bottom: 0px; } .framer-oO44Q.framer-v-1ml8814 .framer-17z8tzv > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-oO44Q.framer-v-1ml8814 .framer-17z8tzv > :first-child, .framer-oO44Q.framer-v-1ml8814 .framer-1myioy9 > :first-child, .framer-oO44Q.framer-v-1ml8814 .framer-1gyuxbw > :first-child, .framer-oO44Q.framer-v-1ml8814 .framer-1j7wb92 > :first-child, .framer-oO44Q.framer-v-1ml8814 .framer-11tt3w4 > :first-child { margin-left: 0px; } .framer-oO44Q.framer-v-1ml8814 .framer-17z8tzv > :last-child, .framer-oO44Q.framer-v-1ml8814 .framer-1myioy9 > :last-child, .framer-oO44Q.framer-v-1ml8814 .framer-1gyuxbw > :last-child, .framer-oO44Q.framer-v-1ml8814 .framer-1j7wb92 > :last-child, .framer-oO44Q.framer-v-1ml8814 .framer-11tt3w4 > :last-child { margin-right: 0px; } .framer-oO44Q.framer-v-1ml8814 .framer-1myioy9 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-oO44Q.framer-v-1ml8814 .framer-1gyuxbw > *, .framer-oO44Q.framer-v-1ml8814 .framer-1j7wb92 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-oO44Q.framer-v-1ml8814 .framer-11tt3w4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-oO44Q.framer-v-1aeuv4a .framer-1wwcu5q { max-width: unset; }\",\".framer-oO44Q.framer-v-1aeuv4a .framer-1urjtz6 { gap: 25px; padding: 15px; }\",\".framer-oO44Q.framer-v-1aeuv4a .framer-17z8tzv { align-content: center; align-items: center; flex-wrap: wrap; }\",\".framer-oO44Q.framer-v-1aeuv4a .framer-d95mai { padding: 5px; }\",\".framer-oO44Q.framer-v-1aeuv4a .framer-1sgcvrc { min-height: unset; padding: 0px; }\",\".framer-oO44Q.framer-v-1aeuv4a .framer-m1x6fg { gap: 0px; justify-content: center; padding: 5px; width: min-content; }\",\".framer-oO44Q.framer-v-1aeuv4a .framer-1nxqdgm { flex: none; order: 0; width: 124px; }\",\".framer-oO44Q.framer-v-1aeuv4a .framer-15gtv0i { flex: none; order: 1; width: 114px; }\",\".framer-oO44Q.framer-v-1aeuv4a .framer-7kt80l-container { height: var(--framer-aspect-ratio-supported, 183px); order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oO44Q.framer-v-1aeuv4a .framer-1urjtz6, .framer-oO44Q.framer-v-1aeuv4a .framer-m1x6fg { gap: 0px; } .framer-oO44Q.framer-v-1aeuv4a .framer-1urjtz6 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-oO44Q.framer-v-1aeuv4a .framer-1urjtz6 > :first-child { margin-top: 0px; } .framer-oO44Q.framer-v-1aeuv4a .framer-1urjtz6 > :last-child { margin-bottom: 0px; } .framer-oO44Q.framer-v-1aeuv4a .framer-m1x6fg > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-oO44Q.framer-v-1aeuv4a .framer-m1x6fg > :first-child { margin-left: 0px; } .framer-oO44Q.framer-v-1aeuv4a .framer-m1x6fg > :last-child { margin-right: 0px; } }\",'.framer-oO44Q[data-border=\"true\"]::after, .framer-oO44Q [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 559.5\n * @framerIntrinsicWidth 740\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"VNLgBHunv\":{\"layout\":[\"fixed\",\"auto\"]},\"AKJYnimeW\":{\"layout\":[\"fixed\",\"auto\"]},\"PdBvWrJvr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJTX7dVa3E=withCSS(Component,css,\"framer-oO44Q\");export default FramerJTX7dVa3E;FramerJTX7dVa3E.displayName=\"Image Generation\";FramerJTX7dVa3E.defaultProps={height:559.5,width:740};addPropertyControls(FramerJTX7dVa3E,{variant:{options:[\"b8qWnjQFM\",\"VNLgBHunv\",\"AKJYnimeW\",\"PdBvWrJvr\"],optionTitles:[\"desktop\",\"image\",\"mobile\",\"image-mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerJTX7dVa3E,[{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:\"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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...EmbedFonts,...GradientButtonFonts,...LottieFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJTX7dVa3E\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VNLgBHunv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AKJYnimeW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PdBvWrJvr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"559.5\",\"framerIntrinsicWidth\":\"740\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (abcfa95)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./oPhlCzN52-0.js\";import*as localizedValues1 from\"./oPhlCzN52-1.js\";import*as localizedValues2 from\"./oPhlCzN52-2.js\";import*as localizedValues3 from\"./oPhlCzN52-3.js\";const cycleOrder=[\"HqzbBUTUO\",\"onUMUqWQn\",\"zzx1iTx1D\"];const serializationHash=\"framer-pMQG2\";const variantClassNames={HqzbBUTUO:\"framer-v-o9czct\",onUMUqWQn:\"framer-v-wh7fqo\",zzx1iTx1D:\"framer-v-14sz3az\"};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 valuesByLocaleId={CGwg1K5Ui:localizedValues2,iXQKf8Thp:localizedValues,jIAtOxHsJ:localizedValues3,q2zyzADM1:localizedValues1};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"large manrope\":\"zzx1iTx1D\",large:\"HqzbBUTUO\",small:\"onUMUqWQn\"};const getProps=({aIImage,arrowImage,height,id,link,textColor,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4;return{...props,KXJ_K1mF6:(_ref=aIImage!==null&&aIImage!==void 0?aIImage:props.KXJ_K1mF6)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/CACkC67XCNJQYFGWkRHeoxw46M.svg\"},utoG7cyO9:(_ref1=arrowImage!==null&&arrowImage!==void 0?arrowImage:props.utoG7cyO9)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/8Th9uPm0ghtxJfMiQbWWtkoc5Is.svg\"},uvDKkzYwI:(_ref2=title!==null&&title!==void 0?title:props.uvDKkzYwI)!==null&&_ref2!==void 0?_ref2:\"Start for Free\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"HqzbBUTUO\",w5pfKxN1a:(_ref4=textColor!==null&&textColor!==void 0?textColor:props.w5pfKxN1a)!==null&&_ref4!==void 0?_ref4:\"rgb(181, 185, 255)\",zXw2Ooxmr:link!==null&&link!==void 0?link:props.zXw2Ooxmr};};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,w5pfKxN1a,uvDKkzYwI,KXJ_K1mF6,utoG7cyO9,zXw2Ooxmr,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"HqzbBUTUO\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:zXw2Ooxmr,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-o9czct\",className,classNames)} framer-43xvj3`,\"data-framer-name\":\"large\",layoutDependency:layoutDependency,layoutId:\"HqzbBUTUO\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({onUMUqWQn:{\"data-framer-name\":\"small\"},zzx1iTx1D:{\"data-framer-name\":\"large manrope\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:19,pixelWidth:18,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/CACkC67XCNJQYFGWkRHeoxw46M.svg\"},className:\"framer-1rdi9hg\",layoutDependency:layoutDependency,layoutId:\"sH4meSxhb\",...addPropertyOverrides({onUMUqWQn:{background:{alt:\"\",fit:\"fit\",pixelHeight:19,pixelWidth:18,sizes:\"18px\",...toResponsiveImage(KXJ_K1mF6),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-w5pfKxN1a-oPhlCzN52))\"},children:\"Start for Free ~>\"})}),className:\"framer-1mh8ns4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"C1nFMtwgj\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-w5pfKxN1a-oPhlCzN52)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-w5pfKxN1a-oPhlCzN52\":w5pfKxN1a},text:uvDKkzYwI,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({onUMUqWQn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-w5pfKxN1a-oPhlCzN52))\"},children:\"Start for Free ~>\"})})},zzx1iTx1D:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-w5pfKxN1a-oPhlCzN52))\"},children:\"Start for Free ~>\"})}),fonts:[\"FS;Manrope-regular\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:13,pixelWidth:23,sizes:\"20px\",...toResponsiveImage(utoG7cyO9),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-jrizak\",layoutDependency:layoutDependency,layoutId:\"nR0RNXVzA\"})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pMQG2.framer-43xvj3, .framer-pMQG2 .framer-43xvj3 { display: block; }\",\".framer-pMQG2.framer-o9czct { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-pMQG2 .framer-1rdi9hg { flex: none; height: 18px; overflow: visible; position: relative; width: 18px; }\",\".framer-pMQG2 .framer-1mh8ns4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-pMQG2 .framer-jrizak { flex: none; height: 13px; overflow: visible; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pMQG2.framer-o9czct { gap: 0px; } .framer-pMQG2.framer-o9czct > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-pMQG2.framer-o9czct > :first-child { margin-left: 0px; } .framer-pMQG2.framer-o9czct > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 21.5\n * @framerIntrinsicWidth 162.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"onUMUqWQn\":{\"layout\":[\"auto\",\"auto\"]},\"zzx1iTx1D\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"w5pfKxN1a\":\"textColor\",\"uvDKkzYwI\":\"title\",\"KXJ_K1mF6\":\"aIImage\",\"utoG7cyO9\":\"arrowImage\",\"zXw2Ooxmr\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameroPhlCzN52=withCSS(Component,css,\"framer-pMQG2\");export default FrameroPhlCzN52;FrameroPhlCzN52.displayName=\"new cta\";FrameroPhlCzN52.defaultProps={height:21.5,width:162.5};addPropertyControls(FrameroPhlCzN52,{variant:{options:[\"HqzbBUTUO\",\"onUMUqWQn\",\"zzx1iTx1D\"],optionTitles:[\"large\",\"small\",\"large manrope\"],title:\"Variant\",type:ControlType.Enum},w5pfKxN1a:{defaultValue:\"rgb(181, 185, 255)\",title:\"text color\",type:ControlType.Color},uvDKkzYwI:{defaultValue:\"Start for Free\",displayTextArea:false,title:\"Title\",type:ControlType.String},KXJ_K1mF6:{__defaultAssetReference:\"data:framer/asset-reference,CACkC67XCNJQYFGWkRHeoxw46M.svg?originalFilename=sparkles+%285%29+2.svg&preferredSize=auto\",title:\"AI image\",type:ControlType.ResponsiveImage},utoG7cyO9:{__defaultAssetReference:\"data:framer/asset-reference,8Th9uPm0ghtxJfMiQbWWtkoc5Is.svg?originalFilename=Right.svg&preferredSize=auto\",title:\"Arrow Image\",type:ControlType.ResponsiveImage},zXw2Ooxmr:{title:\"Link\",type:ControlType.Link}});addFonts(FrameroPhlCzN52,[{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:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2TYFCBHUANEXS6QGR5EQDUNAFH6LSWM3/AYNOU3VEA4LRTDNKJQUFNVNUTYSGOUOP/UXO4O7K2G3HI3D2VKD7UXVJVJD26P4BQ.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroPhlCzN52\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"162.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"onUMUqWQn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zzx1iTx1D\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"w5pfKxN1a\\\":\\\"textColor\\\",\\\"uvDKkzYwI\\\":\\\"title\\\",\\\"KXJ_K1mF6\\\":\\\"aIImage\\\",\\\"utoG7cyO9\\\":\\\"arrowImage\\\",\\\"zXw2Ooxmr\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"21.5\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oPhlCzN52.map", "// Generated by Framer (315fd46)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./Rqn19GlsK-0.js\";import*as localizedValues1 from\"./Rqn19GlsK-1.js\";import*as localizedValues2 from\"./Rqn19GlsK-2.js\";import*as localizedValues3 from\"./Rqn19GlsK-3.js\";const cycleOrder=[\"Eaji2WFxu\"];const serializationHash=\"framer-EGXO3\";const variantClassNames={Eaji2WFxu:\"framer-v-1a970nq\"};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 valuesByLocaleId={CGwg1K5Ui:localizedValues2,iXQKf8Thp:localizedValues,jIAtOxHsJ:localizedValues3,q2zyzADM1:localizedValues1};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,link,title,width,...props})=>{var _ref;return{...props,RrzSG1Y4j:(_ref=title!==null&&title!==void 0?title:props.RrzSG1Y4j)!==null&&_ref!==void 0?_ref:\"Start Now\",XpXsQR8HT:link!==null&&link!==void 0?link:props.XpXsQR8HT};};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,XpXsQR8HT,RrzSG1Y4j,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Eaji2WFxu\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:XpXsQR8HT,openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1a970nq\",className,classNames)} framer-yvbsld`,\"data-framer-name\":\"Variant 1\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"Eaji2WFxu\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:\"linear-gradient(108deg, rgb(150, 63, 255) 0%, rgb(46, 66, 255) 100%)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6,...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)))\"},children:\"Start Now\"})}),className:\"framer-16ffosn\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"DHYFQpHDm\",style:{\"--extracted-r6o4lv\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:RrzSG1Y4j,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EGXO3.framer-yvbsld, .framer-EGXO3 .framer-yvbsld { display: block; }\",\".framer-EGXO3.framer-1a970nq { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 15px; position: relative; text-decoration: none; width: 1120px; will-change: var(--framer-will-change-override, transform); }\",\".framer-EGXO3 .framer-16ffosn { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-EGXO3.framer-1a970nq { gap: 0px; } .framer-EGXO3.framer-1a970nq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-EGXO3.framer-1a970nq > :first-child { margin-left: 0px; } .framer-EGXO3.framer-1a970nq > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50.5\n * @framerIntrinsicWidth 1120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"XpXsQR8HT\":\"link\",\"RrzSG1Y4j\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRqn19GlsK=withCSS(Component,css,\"framer-EGXO3\");export default FramerRqn19GlsK;FramerRqn19GlsK.displayName=\"new Gradient Button\";FramerRqn19GlsK.defaultProps={height:50.5,width:1120};addPropertyControls(FramerRqn19GlsK,{XpXsQR8HT:{title:\"Link\",type:ControlType.Link},RrzSG1Y4j:{defaultValue:\"Start Now\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerRqn19GlsK,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRqn19GlsK\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"50.5\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"XpXsQR8HT\\\":\\\"link\\\",\\\"RrzSG1Y4j\\\":\\\"title\\\"}\",\"framerIntrinsicWidth\":\"1120\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Rqn19GlsK.map", "// Generated by Framer (b62c1c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Lottie}from\"https://framerusercontent.com/modules/YbkSqZ7STzW5WsMb1yan/7oWoX9MqdnxameM59dqC/Lottie.js\";import{withJiggleOnVisible,withShake}from\"https://framerusercontent.com/modules/SgyPsVAyTNfkXKeWjphd/SZoMyX1A7T2BGLwwx4II/Shake.js\";import Typing from\"https://framerusercontent.com/modules/rv5ODQ7THZgkHbGAXsi1/YCTziPmUUyh64LuwT1TH/Typing.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/ndOpsEll5PofiSR7kkLR/YnaMeHRJUT9NNjtjvwfC/EvhN306FE.js\";import GradientButton,*as GradientButtonInfo from\"https://framerusercontent.com/modules/mdSgvN0ZSP9SARh85APf/73opurrBAOTrUUkcSA9a/Z2zrq6lIe.js\";const TypingFonts=getFonts(Typing);const GradientButtonFonts=getFonts(GradientButton);const GradientButtonWithJiggleOnVisiblee1ki5vWithMappedReactProps1rmg27t=withMappedReactProps(withCodeBoundaryForOverrides(GradientButton,{nodeId:\"P37KYpd8O\",override:withJiggleOnVisible,scopeId:\"VVfIW6Mkw\"}),GradientButtonInfo);const ImageWithShake1vjnvoa=withCodeBoundaryForOverrides(Image,{nodeId:\"XqxUEwqmZ\",override:withShake,scopeId:\"VVfIW6Mkw\"});const LottieFonts=getFonts(Lottie);const cycleOrder=[\"uSbRKtcYA\",\"s2yO0FGB6\",\"NMdgXIy5Q\",\"FThrmFbxa\"];const serializationHash=\"framer-qpEGe\";const variantClassNames={FThrmFbxa:\"framer-v-19kzzxc\",NMdgXIy5Q:\"framer-v-imekw9\",s2yO0FGB6:\"framer-v-sg6ne\",uSbRKtcYA:\"framer-v-osgzh9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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 humanReadableVariantMap={\"Desktop Open\":\"s2yO0FGB6\",\"Mobile \":\"NMdgXIy5Q\",\"Mobile Open\":\"FThrmFbxa\",Desktop:\"uSbRKtcYA\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"uSbRKtcYA\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"uSbRKtcYA\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1igcm1a=activeVariantCallback(async(...args)=>{setVariant(\"uSbRKtcYA\");});const onTap14b0sae=activeVariantCallback(async(...args)=>{setVariant(\"NMdgXIy5Q\");});const onTapt4ugf2=activeVariantCallback(async(...args)=>{setVariant(\"s2yO0FGB6\");});const onTapfa3vim=activeVariantCallback(async(...args)=>{setVariant(\"FThrmFbxa\");});const bxgbZ5nBat4ugf2=activeVariantCallback(async(...args)=>{setVariant(\"s2yO0FGB6\");});const bxgbZ5nBafa3vim=activeVariantCallback(async(...args)=>{setVariant(\"FThrmFbxa\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"s2yO0FGB6\",\"FThrmFbxa\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"s2yO0FGB6\",\"FThrmFbxa\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"NMdgXIy5Q\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:412,pixelWidth:680,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/qqH0AMbiK6K77PUh6rdBEKANw.svg\",srcSet:\"https://framerusercontent.com/images/qqH0AMbiK6K77PUh6rdBEKANw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/qqH0AMbiK6K77PUh6rdBEKANw.svg 680w\"},className:cx(scopingClassNames,\"framer-osgzh9\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"uSbRKtcYA\",ref:refBinding,style:{...style},...addPropertyOverrides({FThrmFbxa:{\"data-framer-name\":\"Mobile Open\"},NMdgXIy5Q:{\"data-framer-name\":\"Mobile \"},s2yO0FGB6:{\"data-framer-name\":\"Desktop Open\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zz5plu\",layoutDependency:layoutDependency,layoutId:\"OqUptIggg\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8y6gbf\",layoutDependency:layoutDependency,layoutId:\"tuEV8WJDV\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g8fgpi\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"iKX0DHJve\",onTap:onTap1igcm1a,...addPropertyOverrides({FThrmFbxa:{onTap:onTap14b0sae},NMdgXIy5Q:{onTap:onTap14b0sae}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||568)-0-567.6)/2+0+0)+0+0+0+0),pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ufGmsguk7AsIXSFvOXVcCYWD5A.svg\"},className:\"framer-7cig7p\",layoutDependency:layoutDependency,layoutId:\"frMRiDK3z\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},...addPropertyOverrides({FThrmFbxa:{background:{alt:\"\",fit:\"fill\",pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ufGmsguk7AsIXSFvOXVcCYWD5A.svg\"}},NMdgXIy5Q:{background:{alt:\"\",fit:\"fill\",pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ufGmsguk7AsIXSFvOXVcCYWD5A.svg\"}},s2yO0FGB6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||570)-0-570)/2+0+0)+0+0+0+0),pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ufGmsguk7AsIXSFvOXVcCYWD5A.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Enter Blog Topic\"})}),className:\"framer-1u52d90\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"BKCfDABXa\",style:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FThrmFbxa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Enter Blog Topic\"})})},NMdgXIy5Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Enter Blog Topic\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s8b8wq\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"lwmntd3AB\",onTap:onTapt4ugf2,...addPropertyOverrides({FThrmFbxa:{onTap:onTapfa3vim},NMdgXIy5Q:{onTap:onTapfa3vim}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{className:\"framer-m4gy1b\",layoutDependency:layoutDependency,layoutId:\"Glu7b185r\",style:{backgroundColor:\"rgb(227, 242, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},variants:{FThrmFbxa:{backgroundColor:\"rgba(0, 0, 0, 0)\"},s2yO0FGB6:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({FThrmFbxa:{background:{alt:\"\",fit:\"fill\",pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ufGmsguk7AsIXSFvOXVcCYWD5A.svg\"}},s2yO0FGB6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||570)-0-570)/2+0+0)+0+0+0+0),pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/ufGmsguk7AsIXSFvOXVcCYWD5A.svg\"}}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"center\"},children:\"2\"})}),className:\"framer-a2em8e\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fDYSXDsf8\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({NMdgXIy5Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:\"2\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Get Complete Blog\"})}),className:\"framer-y36ljd\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"YCxWXaU0s\",style:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FThrmFbxa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Get Complete Blog\"})})},NMdgXIy5Q:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Get Complete Blog\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11g42ru\",layoutDependency:layoutDependency,layoutId:\"Yu1RkmImc\",style:{backgroundColor:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 12px 38px 0px rgba(30, 32, 34, 0.12)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||568)-0-567.6)/2+0+0)+0+52+0+0),pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.85)`,src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"},className:\"framer-hafapr\",layoutDependency:layoutDependency,layoutId:\"VaXCDjeDd\",...addPropertyOverrides({FThrmFbxa:{background:{alt:\"\",fit:\"fit\",pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},NMdgXIy5Q:{background:{alt:\"\",fit:\"fit\",pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.9)`,src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}},s2yO0FGB6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||570)-0-570)/2+0+0)+0+52+0+0),pixelHeight:35,pixelWidth:741,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.85)`,src:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg\",srcSet:\"https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg?scale-down-to=512 512w,https://framerusercontent.com/images/19lV3SH7awYFOBCHEjEBRYfXZ4.svg 741w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-b9athz\",layoutDependency:layoutDependency,layoutId:\"RMeiP_ROO\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bc8ocw\",layoutDependency:layoutDependency,layoutId:\"AbrMqMaF3\",style:{backgroundColor:\"rgba(240, 248, 255, 0.5)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ekti5m\",layoutDependency:layoutDependency,layoutId:\"VnFxNRkpJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jnj005\",layoutDependency:layoutDependency,layoutId:\"FvXSzhl0A\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"\uD83D\uDD8A\uFE0F\\xa0 Enter Blog Topic\"})}),className:\"framer-16fruc4\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"jMkY_ZcDs\",style:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1si903q\",layoutDependency:layoutDependency,layoutId:\"ZgImmvBS5\",style:{backgroundColor:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},variants:{FThrmFbxa:{backgroundColor:\"rgba(255, 255, 255, 0)\"},s2yO0FGB6:{backgroundColor:\"rgba(255, 255, 255, 0)\"}},children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yn9ocl\",\"data-styles-preset\":\"EvhN306FE\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Best weight loss diet\"})}),className:\"framer-oji775\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"K8zp_nrU0\",style:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1eqwp5c-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"oet5_TdHI-container\",nodeId:\"oet5_TdHI\",rendersWithMotion:true,scopeId:\"VVfIW6Mkw\",children:/*#__PURE__*/_jsx(Typing,{content:'<b>Sensible Strategies for Effective Weight Again: A Complete Diet Guide</b><br><img src=\"https://i.ibb.co/r6pGMBR/GW-Generated-Image-2-1-1.webp\" width=\"240\" height=\"120\" alt=\"Healthy Meal\"><br><br><b>Introduction</b><br><br><b>Exploring the Importance of Sustainable Weight Loss:</b><br>Losing weight can sometimes feel like a battle, right? But more than just shedding pounds for a special occasion, sustainable weight loss involves making longstanding lifestyle changes. This allows not only for a healthier living but ensures the pounds stay off, which is what we all hope for!<br><br><b>Overview of Common Dieting Challenges:</b><br>Many of us kick-start a diet only to find it hard to stick to, getting tangled in challenges like yo-yo dieting, feeling deprived, or not seeing results quick enough. Recognizing these hurdles is the first step towards overcoming them.<br><br><b>Objective of This Article:</b><br>This guide is crafted to walk you through sensible and realistic strategies for effective weight loss. We\\'ll explore various diets, understand essential nutrients, and even delve into the psychological aspects of dieting. Whether you\\'re a newbie or looking to refine your approach, there\\'s something here for everyone.<br><br><b>1. Understanding Weight Loss Basics</b><br><br><img src=\"https://i.ibb.co/HpFnNGt/image-98.webp\" width=\"240\" height=\"120\" alt=\"Healthy Meal\"><br><br><b>Calorie Deficit Explained</b><br><br><b>What is a Calorie Deficit?</b><br>Simply put, a calorie deficit occurs when you consume fewer calories than your body expends in a day. It\u2019s the foundation of weight loss!<br><br><b>How to Calculate Your Caloric Needs</b><br>Calculating your needs can be as easy as using an online calculator that considers your age, gender, weight, height, and activity level. Pretty handy, right?<br><br><b>Role Metabolism in Weight Loss</b><br>Metabolism plays a crucial role\u2014it\\'s basically how your body converts what you eat and drink into energy. Faster metabolism aids quicker weight loss, but many factors like age and genetics also play a part.<br><br><b>Macronutrients and Their Roles</b><br><br><b>Proteins, Fats, and Carbohydrates Overview</b><br>Each macronutrient has its unique role, but balancing them is key. Proteins help rebuild tissues, fats provide energy when you\\'re running low on calories, and carbohydrates are the primary energy source.<br><br><b>How Balancing Macros Can Aid Weight Loss</b><br>Finding the right balance can enhance your energy levels and optimize overall body function, making your weight loss journey smoother.<br><br><b>Ideal Macros for Weight Loss</b><br>Generally, a good starting point could be 30% protein, 30% fat, and 40% carbohydrates. However, this can vary based on individual needs and goals.<br><br><b>2. Popular Diet Plans Analyzed</b><br><img src=\"https://i.ibb.co/7CTDT6t/image-99.webp\" width=\"240\" height=\"120\" alt=\"Healthy Meal\"><br><br><b>Ketogenic Diet</b><br><br><b>What is the Ketogenic Diet?</b><br>This diet involves high fat, moderate proteins, and very low carbs, pushing your body into a state known as ketosis where it burns fat for fuel instead of carbs.<br><br><b>Pros and Cons of Keto</b><br>While effective for quick weight loss and diabetic control, it can be restrictive and tough to maintain long-term.<br><br><b>Suitability for Different Individuals</b><br>Not everyone should jump on the Keto bandwagon\u2014those with certain health conditions should consult healthcare providers first.',height:\"100%\",id:\"oet5_TdHI\",layoutId:\"oet5_TdHI\",maxDuration:12e3,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fjbj4z\",layoutDependency:layoutDependency,layoutId:\"da_Jk7pa8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"\uD83D\uDD0D Content Source\"})}),className:\"framer-mh8nz0\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"K1d63WuK0\",style:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-298f1l\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"VFxs5vC4I\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(218, 228, 248)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1yn9ocl\",\"data-styles-preset\":\"EvhN306FE\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Use AI Knowledge\"})}),className:\"framer-1e6deaq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Zxo9OKqfc\",style:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19z9gzk\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"ihsefCHnL\",style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",rotate:-45}})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n9my6v\",layoutDependency:layoutDependency,layoutId:\"oW_ZO59h7\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f40nof\",layoutDependency:layoutDependency,layoutId:\"cS82ehkrD\",style:{backgroundColor:\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255))\",borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||568)-0-567.6)/2+0+0)+0+52+0+28+20+25+0+0+229.6+0+0+5),pixelHeight:8,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/oENTNb0aMW4FwyMm6xyofk5Q.svg\"},className:\"framer-zt4x4o\",layoutDependency:layoutDependency,layoutId:\"XmrFDvT7d\",...addPropertyOverrides({NMdgXIy5Q:{background:{alt:\"\",fit:\"fit\",pixelHeight:8,pixelWidth:10,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/oENTNb0aMW4FwyMm6xyofk5Q.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34)))\"},children:\"Generate Blog Images with AI\"})}),className:\"framer-1k5jhgc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DFLOw57mS\",style:{\"--extracted-r6o4lv\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7eh56u\",layoutDependency:layoutDependency,layoutId:\"vqKfftRXs\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`calc(max(${componentViewport?.width||\"100vw\"} * 0.85 - 40px, 1px) - 50px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||568)-0-567.6)/2+0+0)+0+52+0+28+20+25+347.6+0,...addPropertyOverrides({NMdgXIy5Q:{width:`calc(max(${componentViewport?.width||\"100vw\"} * 0.9 - 20px, 1px) - 30px)`,y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-e1ki5v-container\",layoutDependency:layoutDependency,layoutId:\"P37KYpd8O-container\",nodeId:\"P37KYpd8O\",rendersWithMotion:true,scopeId:\"VVfIW6Mkw\",children:/*#__PURE__*/_jsx(GradientButtonWithJiggleOnVisiblee1ki5vWithMappedReactProps1rmg27t,{bxgbZ5nBa:bxgbZ5nBat4ugf2,height:\"100%\",id:\"P37KYpd8O\",JPSU_6228:\"Write the Blog\",layoutId:\"P37KYpd8O\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({NMdgXIy5Q:{bxgbZ5nBa:bxgbZ5nBafa3vim}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wp7com\",layoutDependency:layoutDependency,layoutId:\"pBBgeKigw\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(ImageWithShake1vjnvoa,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||568)-0-567.6)/2+0+0)+0+52+0+28+20+25+347.6+-74.99999999999999+0+0),pixelHeight:40,pixelWidth:186,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MhmUXDCXZNwap7x4xX7JomjD3A.svg\"},className:\"framer-1vjnvoa\",layoutDependency:layoutDependency,layoutId:\"XqxUEwqmZ\",style:{rotate:-15}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-y8bve1-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"jp9xme7Xz-container\",nodeId:\"jp9xme7Xz\",rendersWithMotion:true,scopeId:\"VVfIW6Mkw\",style:{rotate:24},children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"jp9xme7Xz\",isForwardsDirection:true,layoutId:\"jp9xme7Xz\",loop:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/UzpPCVhjiEHhGb3wnmPTOpXddEM.json\",srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})]})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qpEGe.framer-c41l49, .framer-qpEGe .framer-c41l49 { display: block; }\",\".framer-qpEGe.framer-osgzh9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 680px; }\",\".framer-qpEGe .framer-zz5plu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 85%; }\",\".framer-qpEGe .framer-8y6gbf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qpEGe .framer-1g8fgpi, .framer-qpEGe .framer-1s8b8wq { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qpEGe .framer-7cig7p { flex: none; height: 22px; overflow: visible; position: relative; width: 22px; }\",\".framer-qpEGe .framer-1u52d90, .framer-qpEGe .framer-a2em8e, .framer-qpEGe .framer-y36ljd, .framer-qpEGe .framer-16fruc4, .framer-qpEGe .framer-oji775, .framer-qpEGe .framer-mh8nz0, .framer-qpEGe .framer-1e6deaq, .framer-qpEGe .framer-1k5jhgc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-qpEGe .framer-m4gy1b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 22px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 22px; }\",\".framer-qpEGe .framer-11g42ru { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qpEGe .framer-hafapr { flex: none; height: 28px; overflow: visible; position: relative; width: 100%; }\",\".framer-qpEGe .framer-b9athz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-qpEGe .framer-bc8ocw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 25px; position: relative; width: 1px; }\",\".framer-qpEGe .framer-ekti5m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qpEGe .framer-1jnj005, .framer-qpEGe .framer-fjbj4z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qpEGe .framer-1si903q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 15px; position: relative; width: 100%; }\",\".framer-qpEGe .framer-1eqwp5c-container { flex: 1 0 0px; height: 400px; position: relative; width: 1px; }\",\".framer-qpEGe .framer-298f1l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 15px; position: relative; width: 100%; }\",\".framer-qpEGe .framer-19z9gzk { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 8px); overflow: visible; position: relative; width: 8px; }\",\".framer-qpEGe .framer-n9my6v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qpEGe .framer-1f40nof { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 18px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 18px; }\",\".framer-qpEGe .framer-zt4x4o { aspect-ratio: 1.25 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 8px); overflow: visible; position: relative; width: 10px; }\",\".framer-qpEGe .framer-7eh56u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qpEGe .framer-e1ki5v-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-qpEGe .framer-wp7com { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: -20%; overflow: visible; padding: 0px; position: absolute; top: -40%; width: min-content; z-index: 1; }\",\".framer-qpEGe .framer-1vjnvoa { flex: none; height: 40px; overflow: visible; position: relative; width: 186px; }\",\".framer-qpEGe .framer-y8bve1-container { flex: none; height: 70px; position: relative; width: 90px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qpEGe.framer-osgzh9, .framer-qpEGe .framer-zz5plu, .framer-qpEGe .framer-8y6gbf, .framer-qpEGe .framer-1g8fgpi, .framer-qpEGe .framer-1s8b8wq, .framer-qpEGe .framer-m4gy1b, .framer-qpEGe .framer-11g42ru, .framer-qpEGe .framer-b9athz, .framer-qpEGe .framer-bc8ocw, .framer-qpEGe .framer-ekti5m, .framer-qpEGe .framer-1jnj005, .framer-qpEGe .framer-1si903q, .framer-qpEGe .framer-fjbj4z, .framer-qpEGe .framer-n9my6v, .framer-qpEGe .framer-1f40nof, .framer-qpEGe .framer-7eh56u, .framer-qpEGe .framer-wp7com { gap: 0px; } .framer-qpEGe.framer-osgzh9 > *, .framer-qpEGe .framer-zz5plu > *, .framer-qpEGe .framer-ekti5m > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-qpEGe.framer-osgzh9 > :first-child, .framer-qpEGe .framer-zz5plu > :first-child, .framer-qpEGe .framer-11g42ru > :first-child, .framer-qpEGe .framer-bc8ocw > :first-child, .framer-qpEGe .framer-ekti5m > :first-child, .framer-qpEGe .framer-1jnj005 > :first-child, .framer-qpEGe .framer-fjbj4z > :first-child, .framer-qpEGe .framer-1f40nof > :first-child, .framer-qpEGe .framer-wp7com > :first-child { margin-top: 0px; } .framer-qpEGe.framer-osgzh9 > :last-child, .framer-qpEGe .framer-zz5plu > :last-child, .framer-qpEGe .framer-11g42ru > :last-child, .framer-qpEGe .framer-bc8ocw > :last-child, .framer-qpEGe .framer-ekti5m > :last-child, .framer-qpEGe .framer-1jnj005 > :last-child, .framer-qpEGe .framer-fjbj4z > :last-child, .framer-qpEGe .framer-1f40nof > :last-child, .framer-qpEGe .framer-wp7com > :last-child { margin-bottom: 0px; } .framer-qpEGe .framer-8y6gbf > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-qpEGe .framer-8y6gbf > :first-child, .framer-qpEGe .framer-1g8fgpi > :first-child, .framer-qpEGe .framer-1s8b8wq > :first-child, .framer-qpEGe .framer-m4gy1b > :first-child, .framer-qpEGe .framer-b9athz > :first-child, .framer-qpEGe .framer-1si903q > :first-child, .framer-qpEGe .framer-n9my6v > :first-child, .framer-qpEGe .framer-7eh56u > :first-child { margin-left: 0px; } .framer-qpEGe .framer-8y6gbf > :last-child, .framer-qpEGe .framer-1g8fgpi > :last-child, .framer-qpEGe .framer-1s8b8wq > :last-child, .framer-qpEGe .framer-m4gy1b > :last-child, .framer-qpEGe .framer-b9athz > :last-child, .framer-qpEGe .framer-1si903q > :last-child, .framer-qpEGe .framer-n9my6v > :last-child, .framer-qpEGe .framer-7eh56u > :last-child { margin-right: 0px; } .framer-qpEGe .framer-1g8fgpi > *, .framer-qpEGe .framer-1s8b8wq > *, .framer-qpEGe .framer-m4gy1b > *, .framer-qpEGe .framer-b9athz > *, .framer-qpEGe .framer-1si903q > *, .framer-qpEGe .framer-n9my6v > *, .framer-qpEGe .framer-7eh56u > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-qpEGe .framer-11g42ru > *, .framer-qpEGe .framer-wp7com > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-qpEGe .framer-bc8ocw > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-qpEGe .framer-1jnj005 > *, .framer-qpEGe .framer-fjbj4z > *, .framer-qpEGe .framer-1f40nof > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-qpEGe.framer-v-sg6ne .framer-bc8ocw { gap: 30px; order: 0; }\",\".framer-qpEGe.framer-v-sg6ne .framer-1si903q, .framer-qpEGe.framer-v-19kzzxc .framer-1si903q { align-content: flex-start; align-items: flex-start; overflow: hidden; padding: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-qpEGe.framer-v-sg6ne .framer-1eqwp5c-container, .framer-qpEGe.framer-v-19kzzxc .framer-1eqwp5c-container { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qpEGe.framer-v-sg6ne .framer-bc8ocw { gap: 0px; } .framer-qpEGe.framer-v-sg6ne .framer-bc8ocw > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-qpEGe.framer-v-sg6ne .framer-bc8ocw > :first-child { margin-top: 0px; } .framer-qpEGe.framer-v-sg6ne .framer-bc8ocw > :last-child { margin-bottom: 0px; } }\",\".framer-qpEGe.framer-v-imekw9.framer-osgzh9 { width: 350px; }\",\".framer-qpEGe.framer-v-imekw9 .framer-zz5plu, .framer-qpEGe.framer-v-19kzzxc .framer-zz5plu { width: 90%; }\",\".framer-qpEGe.framer-v-imekw9 .framer-8y6gbf, .framer-qpEGe.framer-v-19kzzxc .framer-8y6gbf { flex-wrap: wrap; gap: 30px; }\",\".framer-qpEGe.framer-v-imekw9 .framer-7cig7p, .framer-qpEGe.framer-v-19kzzxc .framer-7cig7p, .framer-qpEGe.framer-v-19kzzxc .framer-m4gy1b { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 18px); width: 18px; }\",\".framer-qpEGe.framer-v-imekw9 .framer-m4gy1b { height: 18px; width: 18px; }\",\".framer-qpEGe.framer-v-imekw9 .framer-b9athz, .framer-qpEGe.framer-v-19kzzxc .framer-b9athz { padding: 10px; }\",\".framer-qpEGe.framer-v-imekw9 .framer-bc8ocw { gap: 60px; padding: 15px; }\",\".framer-qpEGe.framer-v-imekw9 .framer-1k5jhgc { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qpEGe.framer-v-imekw9 .framer-8y6gbf, .framer-qpEGe.framer-v-imekw9 .framer-bc8ocw { gap: 0px; } .framer-qpEGe.framer-v-imekw9 .framer-8y6gbf > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-qpEGe.framer-v-imekw9 .framer-8y6gbf > :first-child { margin-left: 0px; } .framer-qpEGe.framer-v-imekw9 .framer-8y6gbf > :last-child { margin-right: 0px; } .framer-qpEGe.framer-v-imekw9 .framer-bc8ocw > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-qpEGe.framer-v-imekw9 .framer-bc8ocw > :first-child { margin-top: 0px; } .framer-qpEGe.framer-v-imekw9 .framer-bc8ocw > :last-child { margin-bottom: 0px; } }\",\".framer-qpEGe.framer-v-19kzzxc.framer-osgzh9 { width: 390px; }\",\".framer-qpEGe.framer-v-19kzzxc .framer-bc8ocw { gap: 30px; order: 0; padding: 15px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qpEGe.framer-v-19kzzxc .framer-8y6gbf, .framer-qpEGe.framer-v-19kzzxc .framer-bc8ocw { gap: 0px; } .framer-qpEGe.framer-v-19kzzxc .framer-8y6gbf > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-qpEGe.framer-v-19kzzxc .framer-8y6gbf > :first-child { margin-left: 0px; } .framer-qpEGe.framer-v-19kzzxc .framer-8y6gbf > :last-child { margin-right: 0px; } .framer-qpEGe.framer-v-19kzzxc .framer-bc8ocw > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-qpEGe.framer-v-19kzzxc .framer-bc8ocw > :first-child { margin-top: 0px; } .framer-qpEGe.framer-v-19kzzxc .framer-bc8ocw > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-qpEGe[data-border=\"true\"]::after, .framer-qpEGe [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 568\n * @framerIntrinsicWidth 680\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"s2yO0FGB6\":{\"layout\":[\"fixed\",\"auto\"]},\"NMdgXIy5Q\":{\"layout\":[\"fixed\",\"auto\"]},\"FThrmFbxa\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVVfIW6Mkw=withCSS(Component,css,\"framer-qpEGe\");export default FramerVVfIW6Mkw;FramerVVfIW6Mkw.displayName=\"New animator\";FramerVVfIW6Mkw.defaultProps={height:568,width:680};addPropertyControls(FramerVVfIW6Mkw,{variant:{options:[\"uSbRKtcYA\",\"s2yO0FGB6\",\"NMdgXIy5Q\",\"FThrmFbxa\"],optionTitles:[\"Desktop\",\"Desktop Open\",\"Mobile \",\"Mobile Open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerVVfIW6Mkw,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{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\"}]},...TypingFonts,...GradientButtonFonts,...LottieFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVVfIW6Mkw\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"s2yO0FGB6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NMdgXIy5Q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FThrmFbxa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"680\",\"framerIntrinsicHeight\":\"568\",\"framerImmutableVariables\":\"true\"}},\"__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.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Contenido\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Contenido\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Contenido\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Facturaci\\xf3n\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Facturaci\\xf3n\"})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Facturaci\\xf3n\"})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Planes\"})});export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Planes\"})});export const v8=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Planes\"})});export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Protecci\\xf3n de datos\"})});export const v10=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Protecci\\xf3n de datos\"})});export const v11=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Protecci\\xf3n de datos\"})});export const v12=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Reembolso / Cancelaci\\xf3n\"})});export const v13=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Reembolso / Cancelaci\\xf3n\"})});export const v14=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Reembolso / Cancelaci\\xf3n\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"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.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"\u0627\u0644\u0645\u062D\u062A\u0648\u0649\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"\u0627\u0644\u0645\u062D\u062A\u0648\u0649\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"\u0627\u0644\u0645\u062D\u062A\u0648\u0649\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"\u0627\u0644\u0641\u0648\u0627\u062A\u064A\u0631\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"\u0627\u0644\u0641\u0648\u0627\u062A\u064A\u0631\"})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"\u0627\u0644\u0641\u0648\u0627\u062A\u064A\u0631\"})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"\u062E\u0637\u0637\"})});export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"\u062E\u0637\u0637\"})});export const v8=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"\u062E\u0637\u0637\"})});export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"\u062D\u0645\u0627\u064A\u0629 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A\"})});export const v10=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"\u062D\u0645\u0627\u064A\u0629 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A\"})});export const v11=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"\u062D\u0645\u0627\u064A\u0629 \u0627\u0644\u0628\u064A\u0627\u0646\u0627\u062A\"})});export const v12=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"\u0627\u0633\u062A\u0631\u062F\u0627\u062F / \u0625\u0644\u063A\u0627\u0621\"})});export const v13=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"\u0627\u0633\u062A\u0631\u062F\u0627\u062F / \u0625\u0644\u063A\u0627\u0621\"})});export const v14=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"\u0627\u0633\u062A\u0631\u062F\u0627\u062F / \u0625\u0644\u063A\u0627\u0621\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"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.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Contenu\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Contenu\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Contenu\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Facturation\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Facturation\"})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Facturation\"})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Plans\"})});export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Plans\"})});export const v8=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Plans\"})});export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Protection des donn\\xe9es\"})});export const v10=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Protection des donn\\xe9es\"})});export const v11=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Protection des donn\\xe9es\"})});export const v12=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Remboursement / Annulation\"})});export const v13=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Remboursement / Annulation\"})});export const v14=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Remboursement / Annulation\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"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.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Conte\\xfado\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Conte\\xfado\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Conte\\xfado\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Fatura\\xe7\\xe3o\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Fatura\\xe7\\xe3o\"})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Fatura\\xe7\\xe3o\"})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Planos\"})});export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Planos\"})});export const v8=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Planos\"})});export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Prote\\xe7\\xe3o de Dados\"})});export const v10=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Prote\\xe7\\xe3o de Dados\"})});export const v11=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Prote\\xe7\\xe3o de Dados\"})});export const v12=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Reembolso / Cancelamento\"})});export const v13=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Reembolso / Cancelamento\"})});export const v14=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Reembolso / Cancelamento\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (fd7a51d)\nimport*as localizedValues from\"./WJCaoUaFT-0.js\";import*as localizedValues1 from\"./WJCaoUaFT-1.js\";import*as localizedValues2 from\"./WJCaoUaFT-2.js\";import*as localizedValues3 from\"./WJCaoUaFT-3.js\";const valuesByLocaleId={CGwg1K5Ui:localizedValues2,iXQKf8Thp:localizedValues,jIAtOxHsJ:localizedValues3,q2zyzADM1:localizedValues1};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 (fd7a51d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,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/QhAMSEFOjyMAtWG6A9Fl/Qt0Z9GlszLOSuXVVGUVv/hEC9uUota.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/aWlEyu5WJteFXrgzh7MT/1ktpxh9Esg6W3bdlDxpt/WJCaoUaFT.js\";import Faq from\"https://framerusercontent.com/modules/XkwUV2CstBisdv1YLwwi/NrendOwJSZortaMRzEbI/MOni3BMX1.js\";const FaqFonts=getFonts(Faq);const cycleOrder=[\"NpzwOiNB0\",\"l8dOg87mb\",\"ULWLkDs6t\",\"e1L_2iOXr\",\"wd3dNLLFP\",\"NLb1rNJ6A\",\"atuewJM7N\",\"zEe80HoSA\",\"PdRYwBytg\",\"i6uP2mEAH\",\"HB2xlZGMZ\"];const serializationHash=\"framer-9tqoG\";const variantClassNames={atuewJM7N:\"framer-v-uf9hk3\",e1L_2iOXr:\"framer-v-1i1k694\",HB2xlZGMZ:\"framer-v-mwygru\",i6uP2mEAH:\"framer-v-1601p39\",l8dOg87mb:\"framer-v-1k1zr85\",NLb1rNJ6A:\"framer-v-gh542c\",NpzwOiNB0:\"framer-v-18gy8dd\",PdRYwBytg:\"framer-v-lrpvgi\",ULWLkDs6t:\"framer-v-1npt8qj\",wd3dNLLFP:\"framer-v-4omr2r\",zEe80HoSA:\"framer-v-t5ubeb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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 humanReadableVariantMap={\"Chat AI\":\"l8dOg87mb\",\"Data Protection\":\"PdRYwBytg\",\"FAQ Mobile\":\"NLb1rNJ6A\",\"Gravity Content\":\"NpzwOiNB0\",\"Image Generation\":\"ULWLkDs6t\",\"Refund/Cancellation\":\"zEe80HoSA\",Billing:\"atuewJM7N\",Content:\"HB2xlZGMZ\",General:\"wd3dNLLFP\",Plans:\"i6uP2mEAH\",Voice:\"e1L_2iOXr\"};const getProps=({billingAnswerFormat1,billingAnswerFormat2,billingAnswerFormat3,billingAnswerFormat4,billingQuestion1,billingQuestion2,billingQuestion3,billingQuestion4,contentAnswerFormat1,contentAnswerFormat2,contentAnswerFormat3,contentAnswerFormat4,contentQuestion1,contentQuestion2,contentQuestion3,contentQuestion4,dataAnswerFormat1,dataQuestion1,height,id,planAnswerFormat1,planAnswerFormat2,planAnswerFormat3,planAnswerFormat4,planQuestion2,plansQuestion1,plansQuestion3,plansQuestion4,refundAnswerFormat1,refundAnswerFormat2,refundQuestion1,refundQuestion2,width,...props})=>{return{...props,aSkClKQPl:billingAnswerFormat4??props.aSkClKQPl??/*#__PURE__*/_jsx(React.Fragment,{}),BU8LZt9zs:dataAnswerFormat1??props.BU8LZt9zs??/*#__PURE__*/_jsx(React.Fragment,{}),cD2YOCRlW:planAnswerFormat4??props.cD2YOCRlW??/*#__PURE__*/_jsx(React.Fragment,{}),cX8cHEggV:billingAnswerFormat3??props.cX8cHEggV??/*#__PURE__*/_jsx(React.Fragment,{}),DF5sxsBX4:billingQuestion2??props.DF5sxsBX4??\"Can I pay via PayPal?\",e2GhkC1r7:plansQuestion4??props.e2GhkC1r7??\"Are there different subscription plans available?\",FlsFe6hJa:dataQuestion1??props.FlsFe6hJa??\"How does Gravity Write protect my data? What kind of security measures are in place to protect my data and content?\",HURIILlik:plansQuestion1??props.HURIILlik??\"Is there a free trial available for Gravity Write?\",iAbyufoSD:contentAnswerFormat4??props.iAbyufoSD??/*#__PURE__*/_jsx(React.Fragment,{}),JgGRW6yYN:planAnswerFormat2??props.JgGRW6yYN??/*#__PURE__*/_jsx(React.Fragment,{}),Jk8idsm_K:contentQuestion3??props.Jk8idsm_K??\"Can GravityWrite help improve my SEO efforts?\",Jt6SM8y5H:billingAnswerFormat1??props.Jt6SM8y5H??/*#__PURE__*/_jsx(React.Fragment,{}),KLCkZoN8Z:contentAnswerFormat1??props.KLCkZoN8Z??/*#__PURE__*/_jsx(React.Fragment,{}),kVw7VYR_K:planAnswerFormat3??props.kVw7VYR_K??/*#__PURE__*/_jsx(React.Fragment,{}),LBJlzGXHi:contentQuestion1??props.LBJlzGXHi??\"What customization options does GravityWrite offer for content generation?\",M0Ewqju2E:refundQuestion1??props.M0Ewqju2E??\"How do I cancel my GW subscription or trial?\",n7vJ3Pi7P:contentQuestion2??props.n7vJ3Pi7P??\"Can GravityWrite generate content in multiple languages?\",ncE9AqVdC:refundAnswerFormat1??props.ncE9AqVdC??/*#__PURE__*/_jsx(React.Fragment,{}),nNbrpVdMR:contentQuestion4??props.nNbrpVdMR??\"What if the generated content doesn't meet my expectations?\",oLNNUAiBe:contentAnswerFormat2??props.oLNNUAiBe??/*#__PURE__*/_jsx(React.Fragment,{}),r8G_9a1W4:billingQuestion4??props.r8G_9a1W4??\"Can I pay in INR?\",RhdmkbEfJ:contentAnswerFormat3??props.RhdmkbEfJ??/*#__PURE__*/_jsx(React.Fragment,{}),variant:humanReadableVariantMap[props.variant]??props.variant??\"NpzwOiNB0\",vqSgHqPXT:plansQuestion3??props.vqSgHqPXT??\"Can I log in on multiple devices?\",wa1LMxqK0:refundQuestion2??props.wa1LMxqK0??\"Is there a refund policy if I'm not satisfied with the service?\",xpQVyNtuk:planAnswerFormat1??props.xpQVyNtuk??/*#__PURE__*/_jsx(React.Fragment,{}),y4zLXwzmS:billingQuestion1??props.y4zLXwzmS??\"Will I be charged VAT/GST?\",YBDYJfSqF:planQuestion2??props.YBDYJfSqF??\"Can I get extra word usage or any customised plan available?\",z0utHTRuH:refundAnswerFormat2??props.z0utHTRuH??/*#__PURE__*/_jsx(React.Fragment,{}),ZgKN1JmVe:billingAnswerFormat2??props.ZgKN1JmVe??/*#__PURE__*/_jsx(React.Fragment,{}),zO3cGQRZN:billingQuestion3??props.zO3cGQRZN??\"Will I receive an invoice for my subscription?\"};};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,LBJlzGXHi,KLCkZoN8Z,n7vJ3Pi7P,oLNNUAiBe,Jk8idsm_K,RhdmkbEfJ,nNbrpVdMR,iAbyufoSD,y4zLXwzmS,Jt6SM8y5H,DF5sxsBX4,ZgKN1JmVe,zO3cGQRZN,cX8cHEggV,r8G_9a1W4,aSkClKQPl,M0Ewqju2E,ncE9AqVdC,wa1LMxqK0,z0utHTRuH,FlsFe6hJa,BU8LZt9zs,HURIILlik,xpQVyNtuk,YBDYJfSqF,JgGRW6yYN,vqSgHqPXT,kVw7VYR_K,e2GhkC1r7,cD2YOCRlW,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NpzwOiNB0\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapheo1k5=activeVariantCallback(async(...args)=>{setVariant(\"NpzwOiNB0\");});const onTapywz0j9=activeVariantCallback(async(...args)=>{setVariant(\"HB2xlZGMZ\");});const onTap1hdft7a=activeVariantCallback(async(...args)=>{setVariant(\"l8dOg87mb\");});const onTap20p86x=activeVariantCallback(async(...args)=>{setVariant(\"atuewJM7N\");});const onTapavvx2a=activeVariantCallback(async(...args)=>{setVariant(\"wd3dNLLFP\");});const onTap1jvcf7w=activeVariantCallback(async(...args)=>{setVariant(\"i6uP2mEAH\");});const onTap1x4ovh0=activeVariantCallback(async(...args)=>{setVariant(\"e1L_2iOXr\");});const onTapsuy1ri=activeVariantCallback(async(...args)=>{setVariant(\"PdRYwBytg\");});const onTap9e1k0u=activeVariantCallback(async(...args)=>{setVariant(\"ULWLkDs6t\");});const onTap1dnlmxb=activeVariantCallback(async(...args)=>{setVariant(\"zEe80HoSA\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"NLb1rNJ6A\",\"atuewJM7N\",\"zEe80HoSA\",\"PdRYwBytg\",\"i6uP2mEAH\",\"HB2xlZGMZ\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"atuewJM7N\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"zEe80HoSA\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"PdRYwBytg\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"HB2xlZGMZ\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"i6uP2mEAH\")return true;return false;};const isDisplayed6=()=>{if([\"NLb1rNJ6A\",\"atuewJM7N\",\"zEe80HoSA\",\"PdRYwBytg\",\"i6uP2mEAH\",\"HB2xlZGMZ\"].includes(baseVariant))return false;return true;};const isDisplayed7=()=>{if(baseVariant===\"e1L_2iOXr\")return false;return true;};const isDisplayed8=()=>{if([\"ULWLkDs6t\",\"e1L_2iOXr\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-18gy8dd\",className,classNames),\"data-framer-name\":\"Gravity Content\",layoutDependency:layoutDependency,layoutId:\"NpzwOiNB0\",ref:ref??ref1,style:{...style},...addPropertyOverrides({atuewJM7N:{\"data-framer-name\":\"Billing\"},e1L_2iOXr:{\"data-framer-name\":\"Voice\"},HB2xlZGMZ:{\"data-framer-name\":\"Content\"},i6uP2mEAH:{\"data-framer-name\":\"Plans\"},l8dOg87mb:{\"data-framer-name\":\"Chat AI\"},NLb1rNJ6A:{\"data-framer-name\":\"FAQ Mobile\"},PdRYwBytg:{\"data-framer-name\":\"Data Protection\"},ULWLkDs6t:{\"data-framer-name\":\"Image Generation\"},wd3dNLLFP:{\"data-framer-name\":\"General\"},zEe80HoSA:{\"data-framer-name\":\"Refund/Cancellation\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19mhurw\",layoutDependency:layoutDependency,layoutId:\"r7O_FPlHS\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 6px 30px 0px rgba(30, 32, 34, 0.08)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12lvhoh\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"emxeRzHc6\",onTap:onTapheo1k5,style:{backgroundColor:\"rgb(240, 248, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},variants:{atuewJM7N:{backgroundColor:\"rgba(0, 0, 0, 0)\"},e1L_2iOXr:{backgroundColor:\"rgba(240, 248, 255, 0)\"},i6uP2mEAH:{backgroundColor:\"rgba(0, 0, 0, 0)\"},l8dOg87mb:{backgroundColor:\"rgba(240, 248, 255, 0)\"},NLb1rNJ6A:{backgroundColor:\"rgba(0, 0, 0, 0)\"},PdRYwBytg:{backgroundColor:\"rgba(0, 0, 0, 0)\"},ULWLkDs6t:{backgroundColor:\"rgba(0, 0, 0, 0)\"},wd3dNLLFP:{backgroundColor:\"rgba(240, 248, 255, 0)\"},zEe80HoSA:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({atuewJM7N:{onTap:onTapywz0j9},HB2xlZGMZ:{onTap:onTapywz0j9},i6uP2mEAH:{onTap:onTapywz0j9},NLb1rNJ6A:{onTap:onTapywz0j9},PdRYwBytg:{onTap:onTapywz0j9},zEe80HoSA:{onTap:onTapywz0j9}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Content\"})}),className:\"framer-wu8r6\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"pcfLUNOe3\",style:{\"--extracted-r6o4lv\":\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{e1L_2iOXr:{\"--extracted-r6o4lv\":\"rgb(115, 136, 158)\"},l8dOg87mb:{\"--extracted-r6o4lv\":\"rgb(115, 136, 158)\"},ULWLkDs6t:{\"--extracted-r6o4lv\":\"rgb(115, 136, 158)\"},wd3dNLLFP:{\"--extracted-r6o4lv\":\"rgb(115, 136, 158)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({atuewJM7N:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Content\"})}),fonts:[\"Inter\"]},e1L_2iOXr:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Content\"})})},HB2xlZGMZ:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Content\"})}),fonts:[\"Inter\"]},i6uP2mEAH:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Content\"})}),fonts:[\"Inter\"]},l8dOg87mb:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Content\"})})},NLb1rNJ6A:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Content\"})}),fonts:[\"Inter\"]},PdRYwBytg:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Content\"})}),fonts:[\"Inter\"]},ULWLkDs6t:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Content\"})})},wd3dNLLFP:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Content\"})})},zEe80HoSA:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Content\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-fk7nnb\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"LwAMZCyAT\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",rotate:-135},variants:{HB2xlZGMZ:{rotate:-45}}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jcy1o4\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"G6c3HIcKF\",onTap:onTap1hdft7a,style:{backgroundColor:\"rgba(240, 248, 255, 0)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},variants:{atuewJM7N:{backgroundColor:\"rgb(240, 248, 255)\"},l8dOg87mb:{backgroundColor:\"rgb(240, 248, 255)\"}},...addPropertyOverrides({atuewJM7N:{onTap:onTap20p86x},HB2xlZGMZ:{onTap:onTap20p86x},i6uP2mEAH:{onTap:onTap20p86x},NLb1rNJ6A:{onTap:onTap20p86x},PdRYwBytg:{onTap:onTap20p86x},zEe80HoSA:{onTap:onTap20p86x}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Billing\"})}),className:\"framer-1actkqo\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"NqeIymsQx\",style:{\"--extracted-r6o4lv\":\"rgb(115, 136, 158)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{l8dOg87mb:{\"--extracted-r6o4lv\":\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({atuewJM7N:{children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Billing\"})}),fonts:[\"Inter\"]},HB2xlZGMZ:{children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Billing\"})}),fonts:[\"Inter\"]},i6uP2mEAH:{children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Billing\"})}),fonts:[\"Inter\"]},l8dOg87mb:{children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Billing\"})})},NLb1rNJ6A:{children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Billing\"})}),fonts:[\"Inter\"]},PdRYwBytg:{children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Billing\"})}),fonts:[\"Inter\"]},zEe80HoSA:{children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Billing\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ojenoc\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"XNMlQseDJ\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",rotate:-135},variants:{atuewJM7N:{rotate:-45}}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yogslt\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ThR6kfTgF\",onTap:onTapavvx2a,style:{backgroundColor:\"rgba(240, 248, 255, 0)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},variants:{i6uP2mEAH:{backgroundColor:\"rgb(240, 248, 255)\"},wd3dNLLFP:{backgroundColor:\"rgb(240, 248, 255)\"}},...addPropertyOverrides({atuewJM7N:{onTap:onTap1jvcf7w},HB2xlZGMZ:{onTap:onTap1jvcf7w},i6uP2mEAH:{onTap:onTap1jvcf7w},NLb1rNJ6A:{onTap:onTap1jvcf7w},PdRYwBytg:{onTap:onTap1jvcf7w},zEe80HoSA:{onTap:onTap1jvcf7w}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Plans\"})}),className:\"framer-1ry959l\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"pV38GBQoA\",style:{\"--extracted-r6o4lv\":\"rgb(115, 136, 158)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{wd3dNLLFP:{\"--extracted-r6o4lv\":\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({atuewJM7N:{children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Plans\"})}),fonts:[\"Inter\"]},HB2xlZGMZ:{children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Plans\"})}),fonts:[\"Inter\"]},i6uP2mEAH:{children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Plans\"})}),fonts:[\"Inter\"]},NLb1rNJ6A:{children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Plans\"})}),fonts:[\"Inter\"]},PdRYwBytg:{children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Plans\"})}),fonts:[\"Inter\"]},wd3dNLLFP:{children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Plans\"})})},zEe80HoSA:{children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Plans\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pwpi3i\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"sg__C87KG\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",rotate:-135},variants:{i6uP2mEAH:{rotate:-45}}})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tatxok\",layoutDependency:layoutDependency,layoutId:\"hH7Ft8bO6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,...addPropertyOverrides({atuewJM7N:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||767)-0-775)/2+0+0)+15+132+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u9jkw5-container\",layoutDependency:layoutDependency,layoutId:\"I6AtHnUAZ-container\",children:/*#__PURE__*/_jsx(Faq,{ah_1OfZ6i:y4zLXwzmS,eXaXvurIv:Jt6SM8y5H,height:\"100%\",id:\"I6AtHnUAZ\",layoutId:\"I6AtHnUAZ\",style:{width:\"100%\"},variant:\"FXyVL4GYt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hwebze\",layoutDependency:layoutDependency,layoutId:\"CCvJRO0Y7\",style:{backgroundColor:\"rgb(219, 230, 240)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,...addPropertyOverrides({atuewJM7N:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||767)-0-775)/2+0+0)+15+132+0+109}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tq1tc-container\",layoutDependency:layoutDependency,layoutId:\"fytI3Ttpz-container\",children:/*#__PURE__*/_jsx(Faq,{ah_1OfZ6i:DF5sxsBX4,eXaXvurIv:ZgKN1JmVe,height:\"100%\",id:\"fytI3Ttpz\",layoutId:\"fytI3Ttpz\",style:{width:\"100%\"},variant:\"FXyVL4GYt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eg7uyd\",layoutDependency:layoutDependency,layoutId:\"SHPci7Rn2\",style:{backgroundColor:\"rgb(219, 230, 240)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,...addPropertyOverrides({atuewJM7N:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||767)-0-775)/2+0+0)+15+132+0+218}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o4qk96-container\",layoutDependency:layoutDependency,layoutId:\"T4qEQNbkK-container\",children:/*#__PURE__*/_jsx(Faq,{ah_1OfZ6i:zO3cGQRZN,eXaXvurIv:cX8cHEggV,height:\"100%\",id:\"T4qEQNbkK\",layoutId:\"T4qEQNbkK\",style:{width:\"100%\"},variant:\"FXyVL4GYt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tlbihu\",layoutDependency:layoutDependency,layoutId:\"OXqcgvZ6I\",style:{backgroundColor:\"rgb(219, 230, 240)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,...addPropertyOverrides({atuewJM7N:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||767)-0-775)/2+0+0)+15+132+0+327}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2q8m1a-container\",layoutDependency:layoutDependency,layoutId:\"Fz4YpbF21-container\",children:/*#__PURE__*/_jsx(Faq,{ah_1OfZ6i:r8G_9a1W4,eXaXvurIv:aSkClKQPl,height:\"100%\",id:\"Fz4YpbF21\",layoutId:\"Fz4YpbF21\",style:{width:\"100%\"},variant:\"FXyVL4GYt\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1py9z3i\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Fpr2yuFOI\",onTap:onTap1x4ovh0,style:{backgroundColor:\"rgba(240, 248, 255, 0)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},variants:{e1L_2iOXr:{backgroundColor:\"rgb(240, 248, 255)\"},PdRYwBytg:{backgroundColor:\"rgb(240, 248, 255)\"}},...addPropertyOverrides({atuewJM7N:{onTap:onTapsuy1ri},HB2xlZGMZ:{onTap:onTapsuy1ri},i6uP2mEAH:{onTap:onTapsuy1ri},NLb1rNJ6A:{onTap:onTapsuy1ri},PdRYwBytg:{onTap:onTapsuy1ri},zEe80HoSA:{onTap:onTapsuy1ri}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Data Protection\"})}),className:\"framer-14tephl\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"gPbm9L_F0\",style:{\"--extracted-r6o4lv\":\"rgb(115, 136, 158)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{e1L_2iOXr:{\"--extracted-r6o4lv\":\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({atuewJM7N:{children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Data Protection\"})}),fonts:[\"Inter\"]},e1L_2iOXr:{children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Data Protection\"})})},HB2xlZGMZ:{children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Data Protection\"})}),fonts:[\"Inter\"]},i6uP2mEAH:{children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Data Protection\"})}),fonts:[\"Inter\"]},NLb1rNJ6A:{children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Data Protection\"})}),fonts:[\"Inter\"]},PdRYwBytg:{children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Data Protection\"})}),fonts:[\"Inter\"]},zEe80HoSA:{children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Data Protection\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ib93rd\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"u5EFQrJly\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",rotate:-135},variants:{PdRYwBytg:{rotate:-45}}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rqttfa\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"p4DNRGSgJ\",onTap:onTap9e1k0u,style:{backgroundColor:\"rgba(240, 248, 255, 0)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},variants:{ULWLkDs6t:{backgroundColor:\"rgb(240, 248, 255)\"},zEe80HoSA:{backgroundColor:\"rgb(240, 248, 255)\"}},...addPropertyOverrides({atuewJM7N:{onTap:onTap1dnlmxb},HB2xlZGMZ:{onTap:onTap1dnlmxb},i6uP2mEAH:{onTap:onTap1dnlmxb},NLb1rNJ6A:{onTap:onTap1dnlmxb},PdRYwBytg:{onTap:onTap1dnlmxb},zEe80HoSA:{onTap:onTap1dnlmxb}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(115, 136, 158))\"},children:\"Refund / Cancellation\"})}),className:\"framer-vamh1m\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"mkOeNDfYf\",style:{\"--extracted-r6o4lv\":\"rgb(115, 136, 158)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{ULWLkDs6t:{\"--extracted-r6o4lv\":\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({atuewJM7N:{children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Refund / Cancellation\"})}),fonts:[\"Inter\"]},HB2xlZGMZ:{children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Refund / Cancellation\"})}),fonts:[\"Inter\"]},i6uP2mEAH:{children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Refund / Cancellation\"})}),fonts:[\"Inter\"]},NLb1rNJ6A:{children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Refund / Cancellation\"})}),fonts:[\"Inter\"]},PdRYwBytg:{children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Refund / Cancellation\"})}),fonts:[\"Inter\"]},ULWLkDs6t:{children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255)))\"},children:\"Refund / Cancellation\"})})},zEe80HoSA:{children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-nrqaw\",\"data-styles-preset\":\"hEC9uUota\",children:\"Refund / Cancellation\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-90of9q\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"pM69pMgZU\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",rotate:-135},variants:{zEe80HoSA:{rotate:-45}}})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l7sc5d\",layoutDependency:layoutDependency,layoutId:\"auchXGnb8\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,...addPropertyOverrides({zEe80HoSA:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||553)-0-557)/2+0+0)+15+330+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-158paiy-container\",layoutDependency:layoutDependency,layoutId:\"gkqcUjjjS-container\",children:/*#__PURE__*/_jsx(Faq,{ah_1OfZ6i:M0Ewqju2E,eXaXvurIv:ncE9AqVdC,height:\"100%\",id:\"gkqcUjjjS\",layoutId:\"gkqcUjjjS\",style:{width:\"100%\"},variant:\"FXyVL4GYt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jfx0nv\",layoutDependency:layoutDependency,layoutId:\"Iiej3UDCm\",style:{backgroundColor:\"rgb(219, 230, 240)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,...addPropertyOverrides({zEe80HoSA:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||553)-0-557)/2+0+0)+15+330+0+109}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5sf9l2-container\",layoutDependency:layoutDependency,layoutId:\"UuiVZjLfJ-container\",children:/*#__PURE__*/_jsx(Faq,{ah_1OfZ6i:wa1LMxqK0,eXaXvurIv:z0utHTRuH,height:\"100%\",id:\"UuiVZjLfJ\",layoutId:\"UuiVZjLfJ\",style:{width:\"100%\"},variant:\"FXyVL4GYt\",width:\"100%\"})})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e06ipc\",layoutDependency:layoutDependency,layoutId:\"K1PUbbhQD\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,...addPropertyOverrides({PdRYwBytg:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||472)-0-448)/2+0+0)+15+264+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-byj0kb-container\",layoutDependency:layoutDependency,layoutId:\"jzufiXchP-container\",children:/*#__PURE__*/_jsx(Faq,{ah_1OfZ6i:FlsFe6hJa,eXaXvurIv:BU8LZt9zs,height:\"100%\",id:\"jzufiXchP\",layoutId:\"jzufiXchP\",style:{width:\"100%\"},variant:\"FXyVL4GYt\",width:\"100%\"})})})}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5j0dki\",layoutDependency:layoutDependency,layoutId:\"D7OmKWCiM\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({HB2xlZGMZ:{height:88,width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||767)-0-775)/2+0+0)+15+66+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wpvsfv-container\",layoutDependency:layoutDependency,layoutId:\"ib1wssOin-container\",children:/*#__PURE__*/_jsx(Faq,{ah_1OfZ6i:LBJlzGXHi,eXaXvurIv:KLCkZoN8Z,height:\"100%\",id:\"ib1wssOin\",layoutId:\"ib1wssOin\",style:{width:\"100%\"},variant:\"FXyVL4GYt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,...addPropertyOverrides({HB2xlZGMZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||767)-0-775)/2+0+0)+15+66+0+327}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8wl6ax-container\",layoutDependency:layoutDependency,layoutId:\"E_LMq1zdG-container\",children:/*#__PURE__*/_jsx(Faq,{ah_1OfZ6i:nNbrpVdMR,eXaXvurIv:iAbyufoSD,height:\"100%\",id:\"E_LMq1zdG\",layoutId:\"E_LMq1zdG\",style:{width:\"100%\"},variant:\"FXyVL4GYt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u6gnnq\",layoutDependency:layoutDependency,layoutId:\"N4BREaOQx\",style:{backgroundColor:\"rgb(219, 230, 240)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xb5ynr\",layoutDependency:layoutDependency,layoutId:\"Q5LSSVQeS\",style:{backgroundColor:\"rgb(219, 230, 240)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,...addPropertyOverrides({HB2xlZGMZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||767)-0-775)/2+0+0)+15+66+0+109}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x5n3u3-container\",layoutDependency:layoutDependency,layoutId:\"OA7sBCamA-container\",children:/*#__PURE__*/_jsx(Faq,{ah_1OfZ6i:n7vJ3Pi7P,eXaXvurIv:oLNNUAiBe,height:\"100%\",id:\"OA7sBCamA\",layoutId:\"OA7sBCamA\",style:{width:\"100%\"},variant:\"FXyVL4GYt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fme1zr\",layoutDependency:layoutDependency,layoutId:\"uEdSc0oJT\",style:{backgroundColor:\"rgb(219, 230, 240)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,...addPropertyOverrides({HB2xlZGMZ:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||767)-0-775)/2+0+0)+15+66+0+218}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tf14x4-container\",layoutDependency:layoutDependency,layoutId:\"jdPKptyK7-container\",children:/*#__PURE__*/_jsx(Faq,{ah_1OfZ6i:Jk8idsm_K,eXaXvurIv:RhdmkbEfJ,height:\"100%\",id:\"jdPKptyK7\",layoutId:\"jdPKptyK7\",style:{width:\"100%\"},variant:\"FXyVL4GYt\",width:\"100%\"})})})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cpvega\",layoutDependency:layoutDependency,layoutId:\"ZtfH6xUFq\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,...addPropertyOverrides({i6uP2mEAH:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||767)-0-775)/2+0+0)+15+198+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-34d8ax-container\",layoutDependency:layoutDependency,layoutId:\"jZAwaDw19-container\",children:/*#__PURE__*/_jsx(Faq,{ah_1OfZ6i:HURIILlik,eXaXvurIv:xpQVyNtuk,height:\"100%\",id:\"jZAwaDw19\",layoutId:\"jZAwaDw19\",style:{width:\"100%\"},variant:\"FXyVL4GYt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rn62fv\",layoutDependency:layoutDependency,layoutId:\"BgDKh4ale\",style:{backgroundColor:\"rgb(219, 230, 240)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,...addPropertyOverrides({i6uP2mEAH:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||767)-0-775)/2+0+0)+15+198+0+109}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bbjhrk-container\",layoutDependency:layoutDependency,layoutId:\"bUum9hqux-container\",children:/*#__PURE__*/_jsx(Faq,{ah_1OfZ6i:YBDYJfSqF,eXaXvurIv:JgGRW6yYN,height:\"100%\",id:\"bUum9hqux\",layoutId:\"bUum9hqux\",style:{width:\"100%\"},variant:\"FXyVL4GYt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yynaho\",layoutDependency:layoutDependency,layoutId:\"qJtNn53vi\",style:{backgroundColor:\"rgb(219, 230, 240)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,...addPropertyOverrides({i6uP2mEAH:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||767)-0-775)/2+0+0)+15+198+0+218}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11rovs6-container\",layoutDependency:layoutDependency,layoutId:\"wVoSSG7lk-container\",children:/*#__PURE__*/_jsx(Faq,{ah_1OfZ6i:vqSgHqPXT,eXaXvurIv:kVw7VYR_K,height:\"100%\",id:\"wVoSSG7lk\",layoutId:\"wVoSSG7lk\",style:{width:\"100%\"},variant:\"FXyVL4GYt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v4efr9\",layoutDependency:layoutDependency,layoutId:\"xRS3Zx6E_\",style:{backgroundColor:\"rgb(219, 230, 240)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,...addPropertyOverrides({i6uP2mEAH:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||767)-0-775)/2+0+0)+15+198+0+327}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1882kl4-container\",layoutDependency:layoutDependency,layoutId:\"MLL_ell3D-container\",children:/*#__PURE__*/_jsx(Faq,{ah_1OfZ6i:e2GhkC1r7,eXaXvurIv:cD2YOCRlW,height:\"100%\",id:\"MLL_ell3D\",layoutId:\"MLL_ell3D\",style:{width:\"100%\"},variant:\"FXyVL4GYt\",width:\"100%\"})})})]})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4t5p6n\",layoutDependency:layoutDependency,layoutId:\"XF9TciE1a\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`min(${componentViewport?.width||\"100vw\"} * 0.98, 655px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||571.5)-0-511.8)/2+51.8+45)+0+0,...addPropertyOverrides({e1L_2iOXr:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||242.5)-0-184.8)/2+51.8+45)+0+0},l8dOg87mb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||514)-0-511.8)/2+51.8+45)+0+0},ULWLkDs6t:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||295)-0-293.8)/2+51.8+45)+0+0},wd3dNLLFP:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||514)-0-511.8)/2+51.8+45)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-k7uryg-container\",layoutDependency:layoutDependency,layoutId:\"Kr4LFRwAn-container\",children:/*#__PURE__*/_jsx(Faq,{ah_1OfZ6i:LBJlzGXHi,eXaXvurIv:KLCkZoN8Z,height:\"100%\",id:\"Kr4LFRwAn\",layoutId:\"Kr4LFRwAn\",style:{width:\"100%\"},variant:\"ZZQFNyRJk\",width:\"100%\",...addPropertyOverrides({e1L_2iOXr:{ah_1OfZ6i:FlsFe6hJa,eXaXvurIv:BU8LZt9zs},l8dOg87mb:{ah_1OfZ6i:y4zLXwzmS,eXaXvurIv:Jt6SM8y5H},ULWLkDs6t:{ah_1OfZ6i:M0Ewqju2E,eXaXvurIv:ncE9AqVdC},wd3dNLLFP:{ah_1OfZ6i:HURIILlik,eXaXvurIv:xpQVyNtuk}},baseVariant,gestureVariant)})})}),isDisplayed7()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1898nx8\",layoutDependency:layoutDependency,layoutId:\"bMzDjYkZI\",style:{backgroundColor:\"rgb(219, 230, 240)\"}}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`min(${componentViewport?.width||\"100vw\"} * 0.98, 655px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||571.5)-0-511.8)/2+51.8+45)+0+109,...addPropertyOverrides({l8dOg87mb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||514)-0-511.8)/2+51.8+45)+0+109},ULWLkDs6t:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||295)-0-293.8)/2+51.8+45)+0+109},wd3dNLLFP:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||514)-0-511.8)/2+51.8+45)+0+109}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pxjg9b-container\",layoutDependency:layoutDependency,layoutId:\"nBMTbvkfR-container\",children:/*#__PURE__*/_jsx(Faq,{ah_1OfZ6i:n7vJ3Pi7P,eXaXvurIv:oLNNUAiBe,height:\"100%\",id:\"nBMTbvkfR\",layoutId:\"nBMTbvkfR\",style:{width:\"100%\"},variant:\"ZZQFNyRJk\",width:\"100%\",...addPropertyOverrides({l8dOg87mb:{ah_1OfZ6i:DF5sxsBX4,eXaXvurIv:ZgKN1JmVe},ULWLkDs6t:{ah_1OfZ6i:wa1LMxqK0,eXaXvurIv:z0utHTRuH},wd3dNLLFP:{ah_1OfZ6i:YBDYJfSqF,eXaXvurIv:JgGRW6yYN}},baseVariant,gestureVariant)})})}),isDisplayed8()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jcex8k\",layoutDependency:layoutDependency,layoutId:\"IcYi2BkkY\",style:{backgroundColor:\"rgb(219, 230, 240)\"}}),isDisplayed8()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`min(${componentViewport?.width||\"100vw\"} * 0.98, 655px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||571.5)-0-511.8)/2+51.8+45)+0+218,...addPropertyOverrides({l8dOg87mb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||514)-0-511.8)/2+51.8+45)+0+218},wd3dNLLFP:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||514)-0-511.8)/2+51.8+45)+0+218}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o5vzql-container\",layoutDependency:layoutDependency,layoutId:\"IbYNwD8dz-container\",children:/*#__PURE__*/_jsx(Faq,{ah_1OfZ6i:Jk8idsm_K,eXaXvurIv:RhdmkbEfJ,height:\"100%\",id:\"IbYNwD8dz\",layoutId:\"IbYNwD8dz\",style:{width:\"100%\"},variant:\"ZZQFNyRJk\",width:\"100%\",...addPropertyOverrides({l8dOg87mb:{ah_1OfZ6i:zO3cGQRZN,eXaXvurIv:cX8cHEggV},wd3dNLLFP:{ah_1OfZ6i:vqSgHqPXT,eXaXvurIv:kVw7VYR_K}},baseVariant,gestureVariant)})})}),isDisplayed8()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yilo3z\",layoutDependency:layoutDependency,layoutId:\"LsOKNCz1M\",style:{backgroundColor:\"rgb(219, 230, 240)\"}}),isDisplayed8()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:`min(${componentViewport?.width||\"100vw\"} * 0.98, 655px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||571.5)-0-511.8)/2+51.8+45)+0+327,...addPropertyOverrides({l8dOg87mb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||514)-0-511.8)/2+51.8+45)+0+327},wd3dNLLFP:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||514)-0-511.8)/2+51.8+45)+0+327}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-186usjx-container\",layoutDependency:layoutDependency,layoutId:\"YRfzWTfDF-container\",children:/*#__PURE__*/_jsx(Faq,{ah_1OfZ6i:nNbrpVdMR,eXaXvurIv:iAbyufoSD,height:\"100%\",id:\"YRfzWTfDF\",layoutId:\"YRfzWTfDF\",style:{width:\"100%\"},variant:\"ZZQFNyRJk\",width:\"100%\",...addPropertyOverrides({l8dOg87mb:{ah_1OfZ6i:r8G_9a1W4,eXaXvurIv:aSkClKQPl},wd3dNLLFP:{ah_1OfZ6i:e2GhkC1r7,eXaXvurIv:cD2YOCRlW}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9tqoG.framer-ekyq94, .framer-9tqoG .framer-ekyq94 { display: block; }\",\".framer-9tqoG.framer-18gy8dd { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1120px; }\",\".framer-9tqoG .framer-19mhurw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 780px; overflow: hidden; padding: 6px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-9tqoG .framer-12lvhoh, .framer-9tqoG .framer-jcy1o4, .framer-9tqoG .framer-yogslt, .framer-9tqoG .framer-1py9z3i, .framer-9tqoG .framer-1rqttfa { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px 25px 10px 25px; position: relative; width: min-content; }\",\".framer-9tqoG .framer-wu8r6, .framer-9tqoG .framer-1actkqo, .framer-9tqoG .framer-1ry959l, .framer-9tqoG .framer-14tephl, .framer-9tqoG .framer-vamh1m { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-9tqoG .framer-fk7nnb, .framer-9tqoG .framer-1ojenoc, .framer-9tqoG .framer-1pwpi3i, .framer-9tqoG .framer-1ib93rd, .framer-9tqoG .framer-90of9q { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; width: 18px; }\",\".framer-9tqoG .framer-1tatxok, .framer-9tqoG .framer-1l7sc5d, .framer-9tqoG .framer-1e06ipc, .framer-9tqoG .framer-5j0dki, .framer-9tqoG .framer-1cpvega { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-9tqoG .framer-1u9jkw5-container, .framer-9tqoG .framer-tq1tc-container, .framer-9tqoG .framer-1o4qk96-container, .framer-9tqoG .framer-2q8m1a-container, .framer-9tqoG .framer-158paiy-container, .framer-9tqoG .framer-5sf9l2-container, .framer-9tqoG .framer-byj0kb-container, .framer-9tqoG .framer-1wpvsfv-container, .framer-9tqoG .framer-8wl6ax-container, .framer-9tqoG .framer-1x5n3u3-container, .framer-9tqoG .framer-1tf14x4-container, .framer-9tqoG .framer-34d8ax-container, .framer-9tqoG .framer-1bbjhrk-container, .framer-9tqoG .framer-11rovs6-container, .framer-9tqoG .framer-1882kl4-container, .framer-9tqoG .framer-k7uryg-container, .framer-9tqoG .framer-1pxjg9b-container, .framer-9tqoG .framer-1o5vzql-container, .framer-9tqoG .framer-186usjx-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-9tqoG .framer-1hwebze, .framer-9tqoG .framer-1eg7uyd, .framer-9tqoG .framer-1tlbihu, .framer-9tqoG .framer-1jfx0nv, .framer-9tqoG .framer-1u6gnnq, .framer-9tqoG .framer-xb5ynr, .framer-9tqoG .framer-fme1zr, .framer-9tqoG .framer-1rn62fv, .framer-9tqoG .framer-yynaho, .framer-9tqoG .framer-1v4efr9, .framer-9tqoG .framer-1898nx8, .framer-9tqoG .framer-1jcex8k, .framer-9tqoG .framer-1yilo3z { flex: none; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-9tqoG .framer-4t5p6n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 655px; overflow: visible; padding: 0px; position: relative; width: 98%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9tqoG.framer-18gy8dd, .framer-9tqoG .framer-19mhurw, .framer-9tqoG .framer-12lvhoh, .framer-9tqoG .framer-jcy1o4, .framer-9tqoG .framer-yogslt, .framer-9tqoG .framer-1tatxok, .framer-9tqoG .framer-1py9z3i, .framer-9tqoG .framer-1rqttfa, .framer-9tqoG .framer-1l7sc5d, .framer-9tqoG .framer-1e06ipc, .framer-9tqoG .framer-5j0dki, .framer-9tqoG .framer-1cpvega, .framer-9tqoG .framer-4t5p6n { gap: 0px; } .framer-9tqoG.framer-18gy8dd > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-9tqoG.framer-18gy8dd > :first-child, .framer-9tqoG .framer-1tatxok > :first-child, .framer-9tqoG .framer-1l7sc5d > :first-child, .framer-9tqoG .framer-1e06ipc > :first-child, .framer-9tqoG .framer-5j0dki > :first-child, .framer-9tqoG .framer-1cpvega > :first-child, .framer-9tqoG .framer-4t5p6n > :first-child { margin-top: 0px; } .framer-9tqoG.framer-18gy8dd > :last-child, .framer-9tqoG .framer-1tatxok > :last-child, .framer-9tqoG .framer-1l7sc5d > :last-child, .framer-9tqoG .framer-1e06ipc > :last-child, .framer-9tqoG .framer-5j0dki > :last-child, .framer-9tqoG .framer-1cpvega > :last-child, .framer-9tqoG .framer-4t5p6n > :last-child { margin-bottom: 0px; } .framer-9tqoG .framer-19mhurw > *, .framer-9tqoG .framer-12lvhoh > *, .framer-9tqoG .framer-jcy1o4 > *, .framer-9tqoG .framer-yogslt > *, .framer-9tqoG .framer-1py9z3i > *, .framer-9tqoG .framer-1rqttfa > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-9tqoG .framer-19mhurw > :first-child, .framer-9tqoG .framer-12lvhoh > :first-child, .framer-9tqoG .framer-jcy1o4 > :first-child, .framer-9tqoG .framer-yogslt > :first-child, .framer-9tqoG .framer-1py9z3i > :first-child, .framer-9tqoG .framer-1rqttfa > :first-child { margin-left: 0px; } .framer-9tqoG .framer-19mhurw > :last-child, .framer-9tqoG .framer-12lvhoh > :last-child, .framer-9tqoG .framer-jcy1o4 > :last-child, .framer-9tqoG .framer-yogslt > :last-child, .framer-9tqoG .framer-1py9z3i > :last-child, .framer-9tqoG .framer-1rqttfa > :last-child { margin-right: 0px; } .framer-9tqoG .framer-1tatxok > *, .framer-9tqoG .framer-1l7sc5d > *, .framer-9tqoG .framer-1e06ipc > *, .framer-9tqoG .framer-5j0dki > *, .framer-9tqoG .framer-1cpvega > *, .framer-9tqoG .framer-4t5p6n > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-9tqoG.framer-v-gh542c .framer-19mhurw, .framer-9tqoG.framer-v-uf9hk3 .framer-19mhurw, .framer-9tqoG.framer-v-t5ubeb .framer-19mhurw, .framer-9tqoG.framer-v-lrpvgi .framer-19mhurw, .framer-9tqoG.framer-v-1601p39 .framer-19mhurw, .framer-9tqoG.framer-v-mwygru .framer-19mhurw { align-content: flex-start; align-items: flex-start; flex-direction: column; max-width: unset; order: 0; padding: 15px; }\",\".framer-9tqoG.framer-v-gh542c .framer-12lvhoh, .framer-9tqoG.framer-v-uf9hk3 .framer-12lvhoh, .framer-9tqoG.framer-v-t5ubeb .framer-12lvhoh, .framer-9tqoG.framer-v-lrpvgi .framer-12lvhoh, .framer-9tqoG.framer-v-mwygru .framer-12lvhoh { justify-content: flex-start; order: 0; width: 100%; }\",\".framer-9tqoG.framer-v-gh542c .framer-wu8r6, .framer-9tqoG.framer-v-gh542c .framer-1ry959l, .framer-9tqoG.framer-v-gh542c .framer-14tephl, .framer-9tqoG.framer-v-gh542c .framer-vamh1m, .framer-9tqoG.framer-v-uf9hk3 .framer-wu8r6, .framer-9tqoG.framer-v-uf9hk3 .framer-1ry959l, .framer-9tqoG.framer-v-uf9hk3 .framer-14tephl, .framer-9tqoG.framer-v-uf9hk3 .framer-vamh1m, .framer-9tqoG.framer-v-t5ubeb .framer-wu8r6, .framer-9tqoG.framer-v-t5ubeb .framer-1ry959l, .framer-9tqoG.framer-v-t5ubeb .framer-14tephl, .framer-9tqoG.framer-v-t5ubeb .framer-vamh1m, .framer-9tqoG.framer-v-lrpvgi .framer-wu8r6, .framer-9tqoG.framer-v-lrpvgi .framer-1ry959l, .framer-9tqoG.framer-v-lrpvgi .framer-14tephl, .framer-9tqoG.framer-v-lrpvgi .framer-vamh1m, .framer-9tqoG.framer-v-mwygru .framer-wu8r6, .framer-9tqoG.framer-v-mwygru .framer-1ry959l, .framer-9tqoG.framer-v-mwygru .framer-14tephl, .framer-9tqoG.framer-v-mwygru .framer-vamh1m { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-9tqoG.framer-v-gh542c .framer-fk7nnb, .framer-9tqoG.framer-v-gh542c .framer-1pwpi3i, .framer-9tqoG.framer-v-gh542c .framer-1ib93rd, .framer-9tqoG.framer-v-gh542c .framer-90of9q, .framer-9tqoG.framer-v-uf9hk3 .framer-fk7nnb, .framer-9tqoG.framer-v-uf9hk3 .framer-1pwpi3i, .framer-9tqoG.framer-v-uf9hk3 .framer-1ib93rd, .framer-9tqoG.framer-v-uf9hk3 .framer-90of9q, .framer-9tqoG.framer-v-t5ubeb .framer-fk7nnb, .framer-9tqoG.framer-v-t5ubeb .framer-1pwpi3i, .framer-9tqoG.framer-v-t5ubeb .framer-1ib93rd, .framer-9tqoG.framer-v-t5ubeb .framer-90of9q, .framer-9tqoG.framer-v-lrpvgi .framer-fk7nnb, .framer-9tqoG.framer-v-lrpvgi .framer-1pwpi3i, .framer-9tqoG.framer-v-lrpvgi .framer-1ib93rd, .framer-9tqoG.framer-v-lrpvgi .framer-90of9q, .framer-9tqoG.framer-v-1601p39 .framer-fk7nnb, .framer-9tqoG.framer-v-1601p39 .framer-1pwpi3i, .framer-9tqoG.framer-v-1601p39 .framer-1ib93rd, .framer-9tqoG.framer-v-1601p39 .framer-90of9q, .framer-9tqoG.framer-v-mwygru .framer-fk7nnb, .framer-9tqoG.framer-v-mwygru .framer-1pwpi3i, .framer-9tqoG.framer-v-mwygru .framer-1ib93rd, .framer-9tqoG.framer-v-mwygru .framer-90of9q { height: var(--framer-aspect-ratio-supported, 10px); width: 10px; }\",\".framer-9tqoG.framer-v-gh542c .framer-jcy1o4, .framer-9tqoG.framer-v-uf9hk3 .framer-jcy1o4, .framer-9tqoG.framer-v-t5ubeb .framer-jcy1o4, .framer-9tqoG.framer-v-lrpvgi .framer-jcy1o4, .framer-9tqoG.framer-v-mwygru .framer-jcy1o4 { justify-content: flex-start; order: 2; width: 100%; }\",\".framer-9tqoG.framer-v-gh542c .framer-1actkqo, .framer-9tqoG.framer-v-uf9hk3 .framer-1actkqo, .framer-9tqoG.framer-v-t5ubeb .framer-1actkqo, .framer-9tqoG.framer-v-lrpvgi .framer-1actkqo, .framer-9tqoG.framer-v-mwygru .framer-1actkqo { flex: 1 0 0px; order: 0; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-9tqoG.framer-v-gh542c .framer-1ojenoc, .framer-9tqoG.framer-v-uf9hk3 .framer-1ojenoc, .framer-9tqoG.framer-v-t5ubeb .framer-1ojenoc, .framer-9tqoG.framer-v-lrpvgi .framer-1ojenoc, .framer-9tqoG.framer-v-1601p39 .framer-1ojenoc, .framer-9tqoG.framer-v-mwygru .framer-1ojenoc { height: var(--framer-aspect-ratio-supported, 10px); order: 1; width: 10px; }\",\".framer-9tqoG.framer-v-gh542c .framer-yogslt, .framer-9tqoG.framer-v-uf9hk3 .framer-yogslt, .framer-9tqoG.framer-v-t5ubeb .framer-yogslt, .framer-9tqoG.framer-v-lrpvgi .framer-yogslt, .framer-9tqoG.framer-v-mwygru .framer-yogslt { justify-content: flex-start; order: 4; width: 100%; }\",\".framer-9tqoG.framer-v-gh542c .framer-1py9z3i, .framer-9tqoG.framer-v-uf9hk3 .framer-1py9z3i, .framer-9tqoG.framer-v-t5ubeb .framer-1py9z3i, .framer-9tqoG.framer-v-lrpvgi .framer-1py9z3i, .framer-9tqoG.framer-v-mwygru .framer-1py9z3i { justify-content: flex-start; order: 6; width: 100%; }\",\".framer-9tqoG.framer-v-gh542c .framer-1rqttfa, .framer-9tqoG.framer-v-lrpvgi .framer-1rqttfa, .framer-9tqoG.framer-v-mwygru .framer-1rqttfa { justify-content: flex-start; order: 9; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9tqoG.framer-v-gh542c .framer-19mhurw { gap: 0px; } .framer-9tqoG.framer-v-gh542c .framer-19mhurw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-9tqoG.framer-v-gh542c .framer-19mhurw > :first-child { margin-top: 0px; } .framer-9tqoG.framer-v-gh542c .framer-19mhurw > :last-child { margin-bottom: 0px; } }\",\".framer-9tqoG.framer-v-uf9hk3 .framer-1tatxok { flex: none; order: 3; width: 100%; }\",\".framer-9tqoG.framer-v-uf9hk3 .framer-1rqttfa, .framer-9tqoG.framer-v-t5ubeb .framer-1rqttfa { justify-content: flex-start; order: 8; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9tqoG.framer-v-uf9hk3 .framer-19mhurw { gap: 0px; } .framer-9tqoG.framer-v-uf9hk3 .framer-19mhurw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-9tqoG.framer-v-uf9hk3 .framer-19mhurw > :first-child { margin-top: 0px; } .framer-9tqoG.framer-v-uf9hk3 .framer-19mhurw > :last-child { margin-bottom: 0px; } }\",\".framer-9tqoG.framer-v-t5ubeb .framer-1l7sc5d { flex: none; order: 9; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9tqoG.framer-v-t5ubeb .framer-19mhurw { gap: 0px; } .framer-9tqoG.framer-v-t5ubeb .framer-19mhurw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-9tqoG.framer-v-t5ubeb .framer-19mhurw > :first-child { margin-top: 0px; } .framer-9tqoG.framer-v-t5ubeb .framer-19mhurw > :last-child { margin-bottom: 0px; } }\",\".framer-9tqoG.framer-v-lrpvgi .framer-1e06ipc { flex: none; order: 7; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9tqoG.framer-v-lrpvgi .framer-19mhurw { gap: 0px; } .framer-9tqoG.framer-v-lrpvgi .framer-19mhurw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-9tqoG.framer-v-lrpvgi .framer-19mhurw > :first-child { margin-top: 0px; } .framer-9tqoG.framer-v-lrpvgi .framer-19mhurw > :last-child { margin-bottom: 0px; } }\",\".framer-9tqoG.framer-v-1601p39 .framer-12lvhoh { gap: unset; justify-content: space-between; order: 0; width: 100%; }\",\".framer-9tqoG.framer-v-1601p39 .framer-jcy1o4 { gap: unset; justify-content: space-between; order: 2; width: 100%; }\",\".framer-9tqoG.framer-v-1601p39 .framer-1actkqo, .framer-9tqoG.framer-v-mwygru .framer-1wpvsfv-container { order: 0; }\",\".framer-9tqoG.framer-v-1601p39 .framer-yogslt { gap: unset; justify-content: space-between; order: 4; width: 100%; }\",\".framer-9tqoG.framer-v-1601p39 .framer-1py9z3i { gap: unset; justify-content: space-between; order: 6; width: 100%; }\",\".framer-9tqoG.framer-v-1601p39 .framer-1rqttfa { gap: unset; justify-content: space-between; order: 8; width: 100%; }\",\".framer-9tqoG.framer-v-1601p39 .framer-1cpvega { flex: none; order: 5; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9tqoG.framer-v-1601p39 .framer-19mhurw, .framer-9tqoG.framer-v-1601p39 .framer-12lvhoh, .framer-9tqoG.framer-v-1601p39 .framer-jcy1o4, .framer-9tqoG.framer-v-1601p39 .framer-yogslt, .framer-9tqoG.framer-v-1601p39 .framer-1py9z3i, .framer-9tqoG.framer-v-1601p39 .framer-1rqttfa { gap: 0px; } .framer-9tqoG.framer-v-1601p39 .framer-19mhurw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-9tqoG.framer-v-1601p39 .framer-19mhurw > :first-child { margin-top: 0px; } .framer-9tqoG.framer-v-1601p39 .framer-19mhurw > :last-child { margin-bottom: 0px; } .framer-9tqoG.framer-v-1601p39 .framer-12lvhoh > *, .framer-9tqoG.framer-v-1601p39 .framer-12lvhoh > :first-child, .framer-9tqoG.framer-v-1601p39 .framer-12lvhoh > :last-child, .framer-9tqoG.framer-v-1601p39 .framer-jcy1o4 > *, .framer-9tqoG.framer-v-1601p39 .framer-jcy1o4 > :first-child, .framer-9tqoG.framer-v-1601p39 .framer-jcy1o4 > :last-child, .framer-9tqoG.framer-v-1601p39 .framer-yogslt > *, .framer-9tqoG.framer-v-1601p39 .framer-yogslt > :first-child, .framer-9tqoG.framer-v-1601p39 .framer-yogslt > :last-child, .framer-9tqoG.framer-v-1601p39 .framer-1py9z3i > *, .framer-9tqoG.framer-v-1601p39 .framer-1py9z3i > :first-child, .framer-9tqoG.framer-v-1601p39 .framer-1py9z3i > :last-child, .framer-9tqoG.framer-v-1601p39 .framer-1rqttfa > *, .framer-9tqoG.framer-v-1601p39 .framer-1rqttfa > :first-child, .framer-9tqoG.framer-v-1601p39 .framer-1rqttfa > :last-child { margin: 0px; } }\",\".framer-9tqoG.framer-v-mwygru .framer-5j0dki { flex: none; order: 1; width: 100%; }\",\".framer-9tqoG.framer-v-mwygru .framer-8wl6ax-container { order: 6; }\",\".framer-9tqoG.framer-v-mwygru .framer-1u6gnnq { order: 1; }\",\".framer-9tqoG.framer-v-mwygru .framer-xb5ynr { order: 3; }\",\".framer-9tqoG.framer-v-mwygru .framer-1x5n3u3-container { order: 2; }\",\".framer-9tqoG.framer-v-mwygru .framer-fme1zr { order: 5; }\",\".framer-9tqoG.framer-v-mwygru .framer-1tf14x4-container { order: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9tqoG.framer-v-mwygru .framer-19mhurw { gap: 0px; } .framer-9tqoG.framer-v-mwygru .framer-19mhurw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-9tqoG.framer-v-mwygru .framer-19mhurw > :first-child { margin-top: 0px; } .framer-9tqoG.framer-v-mwygru .framer-19mhurw > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-9tqoG[data-border=\"true\"]::after, .framer-9tqoG [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 571.5\n * @framerIntrinsicWidth 1120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"l8dOg87mb\":{\"layout\":[\"fixed\",\"auto\"]},\"ULWLkDs6t\":{\"layout\":[\"fixed\",\"auto\"]},\"e1L_2iOXr\":{\"layout\":[\"fixed\",\"auto\"]},\"wd3dNLLFP\":{\"layout\":[\"fixed\",\"auto\"]},\"NLb1rNJ6A\":{\"layout\":[\"fixed\",\"auto\"]},\"atuewJM7N\":{\"layout\":[\"fixed\",\"auto\"]},\"zEe80HoSA\":{\"layout\":[\"fixed\",\"auto\"]},\"PdRYwBytg\":{\"layout\":[\"fixed\",\"auto\"]},\"i6uP2mEAH\":{\"layout\":[\"fixed\",\"auto\"]},\"HB2xlZGMZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"LBJlzGXHi\":\"contentQuestion1\",\"KLCkZoN8Z\":\"contentAnswerFormat1\",\"n7vJ3Pi7P\":\"contentQuestion2\",\"oLNNUAiBe\":\"contentAnswerFormat2\",\"Jk8idsm_K\":\"contentQuestion3\",\"RhdmkbEfJ\":\"contentAnswerFormat3\",\"nNbrpVdMR\":\"contentQuestion4\",\"iAbyufoSD\":\"contentAnswerFormat4\",\"y4zLXwzmS\":\"billingQuestion1\",\"Jt6SM8y5H\":\"billingAnswerFormat1\",\"DF5sxsBX4\":\"billingQuestion2\",\"ZgKN1JmVe\":\"billingAnswerFormat2\",\"zO3cGQRZN\":\"billingQuestion3\",\"cX8cHEggV\":\"billingAnswerFormat3\",\"r8G_9a1W4\":\"billingQuestion4\",\"aSkClKQPl\":\"billingAnswerFormat4\",\"M0Ewqju2E\":\"refundQuestion1\",\"ncE9AqVdC\":\"refundAnswerFormat1\",\"wa1LMxqK0\":\"refundQuestion2\",\"z0utHTRuH\":\"refundAnswerFormat2\",\"FlsFe6hJa\":\"dataQuestion1\",\"BU8LZt9zs\":\"dataAnswerFormat1\",\"HURIILlik\":\"plansQuestion1\",\"xpQVyNtuk\":\"planAnswerFormat1\",\"YBDYJfSqF\":\"planQuestion2\",\"JgGRW6yYN\":\"planAnswerFormat2\",\"vqSgHqPXT\":\"plansQuestion3\",\"kVw7VYR_K\":\"planAnswerFormat3\",\"e2GhkC1r7\":\"plansQuestion4\",\"cD2YOCRlW\":\"planAnswerFormat4\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWJCaoUaFT=withCSS(Component,css,\"framer-9tqoG\");export default FramerWJCaoUaFT;FramerWJCaoUaFT.displayName=\"FAQ Tabs\";FramerWJCaoUaFT.defaultProps={height:571.5,width:1120};addPropertyControls(FramerWJCaoUaFT,{variant:{options:[\"NpzwOiNB0\",\"l8dOg87mb\",\"ULWLkDs6t\",\"e1L_2iOXr\",\"wd3dNLLFP\",\"NLb1rNJ6A\",\"atuewJM7N\",\"zEe80HoSA\",\"PdRYwBytg\",\"i6uP2mEAH\",\"HB2xlZGMZ\"],optionTitles:[\"Gravity Content\",\"Chat AI\",\"Image Generation\",\"Voice\",\"General\",\"FAQ Mobile\",\"Billing\",\"Refund/Cancellation\",\"Data Protection\",\"Plans\",\"Content\"],title:\"Variant\",type:ControlType.Enum},LBJlzGXHi:{defaultValue:\"What customization options does GravityWrite offer for content generation?\",displayTextArea:false,title:\"Content question 1\",type:ControlType.String},KLCkZoN8Z:{defaultValue:\"\",title:\"Content Answer Format 1\",type:ControlType.RichText},n7vJ3Pi7P:{defaultValue:\"Can GravityWrite generate content in multiple languages?\",displayTextArea:false,title:\"Content question 2\",type:ControlType.String},oLNNUAiBe:{defaultValue:\"\",title:\"Content Answer Format 2\",type:ControlType.RichText},Jk8idsm_K:{defaultValue:\"Can GravityWrite help improve my SEO efforts?\",displayTextArea:false,title:\"Content question 3\",type:ControlType.String},RhdmkbEfJ:{defaultValue:\"\",title:\"Content Answer Format 3\",type:ControlType.RichText},nNbrpVdMR:{defaultValue:\"What if the generated content doesn't meet my expectations?\",displayTextArea:false,title:\"Content question 4\",type:ControlType.String},iAbyufoSD:{defaultValue:\"\",title:\"Content Answer Format 4\",type:ControlType.RichText},y4zLXwzmS:{defaultValue:\"Will I be charged VAT/GST?\",displayTextArea:false,title:\"Billing question 1\",type:ControlType.String},Jt6SM8y5H:{defaultValue:\"\",title:\"Billing Answer Format 1\",type:ControlType.RichText},DF5sxsBX4:{defaultValue:\"Can I pay via PayPal?\",displayTextArea:false,title:\"Billing question 2\",type:ControlType.String},ZgKN1JmVe:{defaultValue:\"\",title:\"Billing Answer Format 2\",type:ControlType.RichText},zO3cGQRZN:{defaultValue:\"Will I receive an invoice for my subscription?\",displayTextArea:false,title:\"Billing question 3\",type:ControlType.String},cX8cHEggV:{defaultValue:\"\",title:\"Billing Answer Format 3\",type:ControlType.RichText},r8G_9a1W4:{defaultValue:\"Can I pay in INR?\",displayTextArea:false,title:\"Billing question 4\",type:ControlType.String},aSkClKQPl:{defaultValue:\"\",title:\"Billing Answer Format 4\",type:ControlType.RichText},M0Ewqju2E:{defaultValue:\"How do I cancel my GW subscription or trial?\",displayTextArea:false,title:\"Refund Question 1\",type:ControlType.String},ncE9AqVdC:{defaultValue:\"\",title:\"refund Answer Format 1\",type:ControlType.RichText},wa1LMxqK0:{defaultValue:\"Is there a refund policy if I'm not satisfied with the service?\",displayTextArea:false,title:\"Refund Question 2\",type:ControlType.String},z0utHTRuH:{defaultValue:\"\",title:\"refund Answer Format 2\",type:ControlType.RichText},FlsFe6hJa:{defaultValue:\"How does Gravity Write protect my data? What kind of security measures are in place to protect my data and content?\",displayTextArea:false,title:\"Data Question 1\",type:ControlType.String},BU8LZt9zs:{defaultValue:\"\",title:\"Data Answer Format 1\",type:ControlType.RichText},HURIILlik:{defaultValue:\"Is there a free trial available for Gravity Write?\",displayTextArea:false,title:\"Plans Question 1\",type:ControlType.String},xpQVyNtuk:{defaultValue:\"\",title:\"Plan Answer Format 1\",type:ControlType.RichText},YBDYJfSqF:{defaultValue:\"Can I get extra word usage or any customised plan available?\",displayTextArea:false,title:\"Plan Question 2\",type:ControlType.String},JgGRW6yYN:{defaultValue:\"\",title:\"Plan Answer Format 2\",type:ControlType.RichText},vqSgHqPXT:{defaultValue:\"Can I log in on multiple devices?\",displayTextArea:false,title:\"Plans Question 3\",type:ControlType.String},kVw7VYR_K:{defaultValue:\"\",title:\"Plan Answer Format 3\",type:ControlType.RichText},e2GhkC1r7:{defaultValue:\"Are there different subscription plans available?\",displayTextArea:false,title:\"Plans Question 4\",type:ControlType.String},cD2YOCRlW:{defaultValue:\"\",title:\"Plan Answer Format 4\",type:ControlType.RichText}});addFonts(FramerWJCaoUaFT,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{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\"}]},...FaqFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWJCaoUaFT\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"LBJlzGXHi\\\":\\\"contentQuestion1\\\",\\\"KLCkZoN8Z\\\":\\\"contentAnswerFormat1\\\",\\\"n7vJ3Pi7P\\\":\\\"contentQuestion2\\\",\\\"oLNNUAiBe\\\":\\\"contentAnswerFormat2\\\",\\\"Jk8idsm_K\\\":\\\"contentQuestion3\\\",\\\"RhdmkbEfJ\\\":\\\"contentAnswerFormat3\\\",\\\"nNbrpVdMR\\\":\\\"contentQuestion4\\\",\\\"iAbyufoSD\\\":\\\"contentAnswerFormat4\\\",\\\"y4zLXwzmS\\\":\\\"billingQuestion1\\\",\\\"Jt6SM8y5H\\\":\\\"billingAnswerFormat1\\\",\\\"DF5sxsBX4\\\":\\\"billingQuestion2\\\",\\\"ZgKN1JmVe\\\":\\\"billingAnswerFormat2\\\",\\\"zO3cGQRZN\\\":\\\"billingQuestion3\\\",\\\"cX8cHEggV\\\":\\\"billingAnswerFormat3\\\",\\\"r8G_9a1W4\\\":\\\"billingQuestion4\\\",\\\"aSkClKQPl\\\":\\\"billingAnswerFormat4\\\",\\\"M0Ewqju2E\\\":\\\"refundQuestion1\\\",\\\"ncE9AqVdC\\\":\\\"refundAnswerFormat1\\\",\\\"wa1LMxqK0\\\":\\\"refundQuestion2\\\",\\\"z0utHTRuH\\\":\\\"refundAnswerFormat2\\\",\\\"FlsFe6hJa\\\":\\\"dataQuestion1\\\",\\\"BU8LZt9zs\\\":\\\"dataAnswerFormat1\\\",\\\"HURIILlik\\\":\\\"plansQuestion1\\\",\\\"xpQVyNtuk\\\":\\\"planAnswerFormat1\\\",\\\"YBDYJfSqF\\\":\\\"planQuestion2\\\",\\\"JgGRW6yYN\\\":\\\"planAnswerFormat2\\\",\\\"vqSgHqPXT\\\":\\\"plansQuestion3\\\",\\\"kVw7VYR_K\\\":\\\"planAnswerFormat3\\\",\\\"e2GhkC1r7\\\":\\\"plansQuestion4\\\",\\\"cD2YOCRlW\\\":\\\"planAnswerFormat4\\\"}\",\"framerIntrinsicHeight\":\"571.5\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"l8dOg87mb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ULWLkDs6t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"e1L_2iOXr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wd3dNLLFP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NLb1rNJ6A\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"atuewJM7N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zEe80HoSA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PdRYwBytg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"i6uP2mEAH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HB2xlZGMZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1120\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";/**\n * These annotations control how your component sizes\n * Learn more: https://www.framer.com/developers/#code-components-auto-sizing\n *\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */export default function Home_Form(props){const[email,setEmail]=useState(\"\");useEffect(()=>{const style=document.createElement(\"style\");style.innerHTML=`\n            @media (max-width: 600px) {\n                form {\n                    width: 480px !important;\n                }\n            }\n\n            @media (max-width: 480px) {\n                form {\n                    width: 100% !important;\n                }\n            }\n\n            @media (max-width: 388px) {\n                input::placeholder {\n                    text-align: center;\n                }\n            }\n        `;document.head.appendChild(style);return()=>{document.head.removeChild(style);};},[]);const handleSubmit=event=>{event.preventDefault();const emailPattern=/^[^\\s@]+@[^\\s@]+\\.[^\\s@]+$/;if(emailPattern.test(email)){// Open the URL in a new tab\nconst url=`https://app2.gravitywrite.com/register?email=${email}`;window.open(url,\"_blank\");}else{alert(\"Please enter a valid email address.\");}};return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"form\",{onSubmit:handleSubmit,style:formStyle,children:[/*#__PURE__*/_jsx(\"input\",{type:\"email\",value:email,onChange:e=>setEmail(e.target.value),placeholder:\"Enter your email\",style:inputStyle,required:true}),/*#__PURE__*/_jsx(\"button\",{type:\"submit\",style:buttonStyle,children:\"Sign Up\"})]}),/*#__PURE__*/_jsx(\"style\",{children:`\n                input::placeholder {\n                    color: #B9C2CC;\n                }\n                input:focus {\n                    outline: none;\n                    background: #ffffff;\n                }\n            `})]});}const formStyle={background:\"#ffffff\",border:\"1px solid rgba(231, 237, 244, 1)\",boxShadow:\"0px 12px 24px 0px rgba(46, 66, 255, 0.12)\",padding:\"10px\",width:\"520px\",maxWidth:\"520px\",margin:\"auto\",display:\"flex\",flexWrap:\"wrap\",borderRadius:\"10px\",justifyContent:\"center\",gap:\"10px\"};const inputStyle={fontFamily:\"Inter, sans-serif\",fontSize:\"18px\",fontWeight:\"400\",lineHeight:\"24px\",letterSpacing:\"-0.03em\",textAlign:\"left\",color:\"#000000\",border:\"0px solid #e7edf4\",borderRadius:\"4px\",flexGrow:1,background:\"#ffffff\",paddingLeft:\"13px\"};const buttonStyle={width:\"auto\",background:\"linear-gradient(110.37deg, #963FFF -9.83%, #2E42FF 91.64%)\",padding:\"12px 38px\",fontFamily:\"Inter, sans-serif\",fontSize:\"16px\",fontWeight:\"600\",lineHeight:\"23px\",letterSpacing:\"-0.03em\",textAlign:\"center\",color:\"#ffffff\",border:\"none\",borderRadius:\"4px\",cursor:\"pointer\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Home_Form\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"auto\",\"framerSupportedLayoutHeight\":\"auto\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Home_Form.map", "// Generated by Framer (915daba)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{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-EmT0I .framer-styles-preset-11ujk56:not(.rich-text-wrapper), .framer-EmT0I .framer-styles-preset-11ujk56.rich-text-wrapper h1 { --framer-font-family: \"Inter\", \"Inter 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: normal; --framer-font-size: 90px; --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: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.05em; --framer-line-height: 0.9em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, #19154e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-EmT0I .framer-styles-preset-11ujk56:not(.rich-text-wrapper), .framer-EmT0I .framer-styles-preset-11ujk56.rich-text-wrapper h1 { --framer-font-family: \"Inter\", \"Inter 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: normal; --framer-font-size: 72px; --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: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.05em; --framer-line-height: 0.9em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, #19154e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-EmT0I .framer-styles-preset-11ujk56:not(.rich-text-wrapper), .framer-EmT0I .framer-styles-preset-11ujk56.rich-text-wrapper h1 { --framer-font-family: \"Inter\", \"Inter 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: normal; --framer-font-size: 50px; --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: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.05em; --framer-line-height: 0.9em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, #19154e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-EmT0I\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f082bd6)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-4HqRK .framer-styles-preset-j03wlc:not(.rich-text-wrapper), .framer-4HqRK .framer-styles-preset-j03wlc.rich-text-wrapper a { --framer-link-current-text-color: #f3f2ff; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #f3f2ff; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #f3f2ff; --framer-link-text-decoration: none; }\"];export const className=\"framer-4HqRK\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ae50a0d)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{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-lFXEN .framer-styles-preset-7nfr3z:not(.rich-text-wrapper), .framer-lFXEN .framer-styles-preset-7nfr3z.rich-text-wrapper h2 { --framer-font-family: \"Inter\", \"Inter 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: normal; --framer-font-size: 80px; --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: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.05em; --framer-line-height: 0.95em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, #19154e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-lFXEN .framer-styles-preset-7nfr3z:not(.rich-text-wrapper), .framer-lFXEN .framer-styles-preset-7nfr3z.rich-text-wrapper h2 { --framer-font-family: \"Inter\", \"Inter 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: normal; --framer-font-size: 64px; --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: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.05em; --framer-line-height: 0.95em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, #19154e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-lFXEN .framer-styles-preset-7nfr3z:not(.rich-text-wrapper), .framer-lFXEN .framer-styles-preset-7nfr3z.rich-text-wrapper h2 { --framer-font-family: \"Inter\", \"Inter 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: normal; --framer-font-size: 48px; --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: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.05em; --framer-line-height: 0.95em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, #19154e); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-lFXEN\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6aa4fc0)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={CGwg1K5Ui:new LazyValue(()=>import(\"./SwetY06FA-2.js\")),iXQKf8Thp:new LazyValue(()=>import(\"./SwetY06FA-0.js\")),jIAtOxHsJ:new LazyValue(()=>import(\"./SwetY06FA-3.js\")),q2zyzADM1:new LazyValue(()=>import(\"./SwetY06FA-1.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 (6aa4fc0)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Vimeo from\"https://framerusercontent.com/modules/0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Loader from\"https://framerusercontent.com/modules/cqWrmoTRJuMdIdYw6b0A/P2weL8lIvpGyps0kPj0o/rlIcZ3c2D.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import PricingCardNew from\"#framer/local/canvasComponent/bWYBMPPMK/bWYBMPPMK.js\";import SocialWrap from\"#framer/local/canvasComponent/Ca6xqpDaS/Ca6xqpDaS.js\";import Aaaa from\"#framer/local/canvasComponent/Cp4ElgmUD/Cp4ElgmUD.js\";import Aaab from\"#framer/local/canvasComponent/D3D2zwriZ/D3D2zwriZ.js\";import ImageGeneration from\"#framer/local/canvasComponent/JTX7dVa3E/JTX7dVa3E.js\";import NewCta from\"#framer/local/canvasComponent/oPhlCzN52/oPhlCzN52.js\";import NewGradientButton from\"#framer/local/canvasComponent/Rqn19GlsK/Rqn19GlsK.js\";import Button from\"#framer/local/canvasComponent/Tnz4seCKc/Tnz4seCKc.js\";import NewAnimator from\"#framer/local/canvasComponent/VVfIW6Mkw/VVfIW6Mkw.js\";import FAQTabs from\"#framer/local/canvasComponent/WJCaoUaFT/WJCaoUaFT.js\";import Testimonial from\"#framer/local/canvasComponent/XsV1_ODpJ/XsV1_ODpJ.js\";import Dismiss from\"#framer/local/codeFile/IsuiW3P/Dismiss.js\";import Home_Form from\"#framer/local/codeFile/KYLM1gK/Home_Form.js\";import*as sharedStyle from\"#framer/local/css/bLOjXTcmC/bLOjXTcmC.js\";import*as sharedStyle6 from\"#framer/local/css/CpA5ppCCp/CpA5ppCCp.js\";import*as sharedStyle5 from\"#framer/local/css/kaQjBqpWY/kaQjBqpWY.js\";import*as sharedStyle1 from\"#framer/local/css/LKPN9vjzK/LKPN9vjzK.js\";import*as sharedStyle2 from\"#framer/local/css/LnfYZ6YjK/LnfYZ6YjK.js\";import*as sharedStyle3 from\"#framer/local/css/ReSQ8ey8L/ReSQ8ey8L.js\";import*as sharedStyle4 from\"#framer/local/css/Z1DcQRLa8/Z1DcQRLa8.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/SwetY06FA/SwetY06FA.js\";import metadataProvider from\"#framer/local/webPageMetadata/SwetY06FA/SwetY06FA.js\";const AaaaFonts=getFonts(Aaaa);const AaaaWithVariantAppearEffect=withVariantAppearEffect(Aaaa);const DismissFonts=getFonts(Dismiss);const MotionDivWithFX=withFX(motion.div);const EmbedFonts=getFonts(Embed);const Home_FormFonts=getFonts(Home_Form);const ImageWithFX=withFX(Image);const TickerFonts=getFonts(Ticker);const Ticker1Fonts=getFonts(Ticker1);const ButtonFonts=getFonts(Button);const LoaderFonts=getFonts(Loader);const VimeoFonts=getFonts(Vimeo);const NewCtaFonts=getFonts(NewCta);const NewGradientButtonFonts=getFonts(NewGradientButton);const NewAnimatorFonts=getFonts(NewAnimator);const SocialWrapFonts=getFonts(SocialWrap);const ImageGenerationFonts=getFonts(ImageGeneration);const TestimonialFonts=getFonts(Testimonial);const PricingCardNewFonts=getFonts(PricingCardNew);const FAQTabsFonts=getFonts(FAQTabs);const AaabFonts=getFonts(Aaab);const breakpoints={CWHQ2UeDV:\"(max-width: 809px)\",DyL_aXI9T:\"(min-width: 810px) and (max-width: 1199px)\",eOmaiTn1M:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-w2pG5\";const variantClassNames={CWHQ2UeDV:\"framer-v-1gg9aul\",DyL_aXI9T:\"framer-v-gj2bu5\",eOmaiTn1M:\"framer-v-12ibrh9\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={delay:0,duration:5,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1.3,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:3,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.5,skewX:0,skewY:0,x:0,y:0};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition3,x:0,y:20};const transition4={damping:30,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const animation5={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.3,skewX:0,skewY:0,x:0,y:0};const transition5={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5};const transition6={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"eOmaiTn1M\",Phone:\"CWHQ2UeDV\",Tablet:\"DyL_aXI9T\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"eOmaiTn1M\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,UaWHVX1Cz,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const AzZNlMa5C3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);const elementId=useRouteElementId(\"c18HLMtYl\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"DyL_aXI9T\",\"CWHQ2UeDV\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"CWHQ2UeDV\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"CWHQ2UeDV\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"eOmaiTn1M\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-12ibrh9\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:121,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ebsmb6-container\",layoutScroll:true,nodeId:\"JtIUOIMvK\",rendersWithMotion:true,scopeId:\"SwetY06FA\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{__framer__scrollDirection:{direction:\"down\",target:\"nF5dVEqYl\"},variant:\"XTGnninIu\"},DyL_aXI9T:{__framer__scrollDirection:{direction:\"down\",target:\"SDRxBdvUX\"},variant:\"LQlPdb2j9\"}},children:/*#__PURE__*/_jsx(AaaaWithVariantAppearEffect,{__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:\"iq7LtcSOT\"},__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,d91YY7v1p:\"https://app2.gravitywrite.com/login\",height:\"100%\",id:\"JtIUOIMvK\",layoutId:\"JtIUOIMvK\",style:{width:\"100%\"},variant:\"PDYW7g8ZS\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5yg9v6-container\",isAuthoredByUser:true,nodeId:\"lFLcWCGWY\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(Dismiss,{height:\"100%\",id:\"lFLcWCGWY\",layoutId:\"lFLcWCGWY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200),pixelHeight:1160,pixelWidth:1600,positionX:\"center\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/rzi71De3ABZbW4xtEn7oMmqF0.svg\",srcSet:\"https://framerusercontent.com/images/rzi71De3ABZbW4xtEn7oMmqF0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/rzi71De3ABZbW4xtEn7oMmqF0.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rzi71De3ABZbW4xtEn7oMmqF0.svg 1600w\"}},DyL_aXI9T:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200),pixelHeight:1160,pixelWidth:1600,positionX:\"center\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/rzi71De3ABZbW4xtEn7oMmqF0.svg\",srcSet:\"https://framerusercontent.com/images/rzi71De3ABZbW4xtEn7oMmqF0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/rzi71De3ABZbW4xtEn7oMmqF0.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rzi71De3ABZbW4xtEn7oMmqF0.svg 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1160,pixelWidth:1600,positionX:\"center\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/rzi71De3ABZbW4xtEn7oMmqF0.svg\",srcSet:\"https://framerusercontent.com/images/rzi71De3ABZbW4xtEn7oMmqF0.svg?scale-down-to=512 512w,https://framerusercontent.com/images/rzi71De3ABZbW4xtEn7oMmqF0.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rzi71De3ABZbW4xtEn7oMmqF0.svg 1600w\"},className:\"framer-1g1hvll\",\"data-framer-name\":\"header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tdbfa2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4mluk8\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7k44ct\",style:{rotate:45}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7hkna2\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q4lcmp-container\",isModuleExternal:true,nodeId:\"uOZ5sZcnI\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:getLocalizedValue(\"v0\",activeLocale)??'<div class=\"typing-container\">\\n    <span style=\"color: #2E42FF;\" id=\"hashtag\">#</span>\\n    <span id=\"typing-text\" style=\"margin-left: 10px;\"></span>\\n</div>\\n\\n<style>\\n@import url(\\'https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap\\');\\n\\n.typing-container {\\n    font-family: \\'Inter\\', sans-serif;\\n    font-size: 1.125em; /* equivalent to 18px */\\n    font-weight: 600;\\n    line-height: 1.5556em; /* equivalent to 28px */\\n    letter-spacing: -0.03em;\\n    display: flex;\\n    justify-content: center;\\n    align-items: center;\\n    height: auto;\\n    width: auto; /* Make the container width vary based on text length */\\n    text-align: center; /* Center the text inside the span */\\n    background-color: #ffffff;\\n    padding: 10px 30px;\\n    border-radius: 8px;\\n}\\n\\n#typing-text {\\n    display: inline-block;\\n    white-space: nowrap; /* Prevent the text from wrapping */\\n}\\n</style>\\n\\n<script>\\nconst texts = [\"Image Generation.\", \"Blog Writer.\", \"Social Media.\"];\\nlet currentTextIndex = 0;\\nlet currentStep = 0;\\nconst typingTextElement = document.getElementById(\\'typing-text\\');\\nconst typingSpeed = 100; // speed of typing in milliseconds\\nconst pauseTime = 1500; // time to wait before changing to the next text in milliseconds\\nconst slowDownFactor = 1.5; // slowing down by 1.5 seconds\\n\\nfunction type() {\\n    const text = texts[currentTextIndex];\\n\\n    typingTextElement.textContent = text.substring(0, currentStep + 1);\\n\\n    if (currentStep < text.length - 1) {\\n        currentStep++;\\n    } else {\\n        setTimeout(() => {\\n            currentTextIndex = (currentTextIndex + 1) % texts.length;\\n            currentStep = 0;\\n            typingTextElement.textContent = \\'\\';\\n            setTimeout(type, typingSpeed * slowDownFactor);\\n        }, pauseTime * slowDownFactor);\\n        return;\\n    }\\n\\n    setTimeout(type, typingSpeed * slowDownFactor);\\n}\\n\\n// Start the typing effect on page load\\nwindow.onload = type;\\n</script>',id:\"uOZ5sZcnI\",layoutId:\"uOZ5sZcnI\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15s1ucd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-11ujk56\",\"data-styles-preset\":\"bLOjXTcmC\",style:{\"--framer-text-color\":\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78))\"},children:\"Create Better Content in Less Time\"})}),className:\"framer-1l9amcn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o7twql\",\"data-styles-preset\":\"LKPN9vjzK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\"},children:\"GravityWrite helps you create amazing, original content that ranks #1 on search engines. Try for Free.\"})}),className:\"framer-1900zcp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lk21ig-container\",isAuthoredByUser:true,nodeId:\"D3W7iUpJt\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(Home_Form,{height:\"100%\",id:\"D3W7iUpJt\",layoutId:\"D3W7iUpJt\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"AI Blog Writer\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+180+0+0+1006),pixelHeight:2060,pixelWidth:6400,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,src:\"https://framerusercontent.com/images/JeyhwpMbwkxvQ061uji5z6izPg.png\",srcSet:\"https://framerusercontent.com/images/JeyhwpMbwkxvQ061uji5z6izPg.png?scale-down-to=512 512w,https://framerusercontent.com/images/JeyhwpMbwkxvQ061uji5z6izPg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JeyhwpMbwkxvQ061uji5z6izPg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JeyhwpMbwkxvQ061uji5z6izPg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/JeyhwpMbwkxvQ061uji5z6izPg.png 6400w\"}},DyL_aXI9T:{background:{alt:\"AI Blog Writer\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+180+0+0+1006),pixelHeight:2060,pixelWidth:6400,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,src:\"https://framerusercontent.com/images/JeyhwpMbwkxvQ061uji5z6izPg.png\",srcSet:\"https://framerusercontent.com/images/JeyhwpMbwkxvQ061uji5z6izPg.png?scale-down-to=512 512w,https://framerusercontent.com/images/JeyhwpMbwkxvQ061uji5z6izPg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JeyhwpMbwkxvQ061uji5z6izPg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JeyhwpMbwkxvQ061uji5z6izPg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/JeyhwpMbwkxvQ061uji5z6izPg.png 6400w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1.2,stiffness:200,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:30,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"AI Blog Writer\",fit:\"fit\",pixelHeight:2060,pixelWidth:6400,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,src:\"https://framerusercontent.com/images/JeyhwpMbwkxvQ061uji5z6izPg.png\",srcSet:\"https://framerusercontent.com/images/JeyhwpMbwkxvQ061uji5z6izPg.png?scale-down-to=512 512w,https://framerusercontent.com/images/JeyhwpMbwkxvQ061uji5z6izPg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JeyhwpMbwkxvQ061uji5z6izPg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JeyhwpMbwkxvQ061uji5z6izPg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/JeyhwpMbwkxvQ061uji5z6izPg.png 6400w\"},className:\"framer-gio0qu\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+180+0+534.6929),pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vylgz15WpTSKDZAtD6sMVLkTtU.svg\"}},DyL_aXI9T:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+180+0+645.4318),pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vylgz15WpTSKDZAtD6sMVLkTtU.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"star praticle\",fit:\"fit\",pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vylgz15WpTSKDZAtD6sMVLkTtU.svg\"},className:\"framer-1iubi8z\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+180+0+805.6499),pixelHeight:13,pixelWidth:13,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4EqC1P0mijPTJtKu4vPD1t6qzkA.svg\"}},DyL_aXI9T:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+180+0+780.0606),pixelHeight:13,pixelWidth:13,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4EqC1P0mijPTJtKu4vPD1t6qzkA.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"star praticle\",fit:\"fit\",pixelHeight:13,pixelWidth:13,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4EqC1P0mijPTJtKu4vPD1t6qzkA.svg\"},className:\"framer-9rlm89\"})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l7pgen\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(25, 21, 78)\"},children:\"Trusted by most popular brands\"})}),className:\"framer-13t97em\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ml2lvr-container\",isModuleExternal:true,nodeId:\"hkRAK4h0l\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:80,height:\"100%\",hoverFactor:0,id:\"hkRAK4h0l\",layoutId:\"hkRAK4h0l\",padding:10,paddingBottom:60,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y9aitk\",\"data-framer-name\":\"Used By\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"wipro\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:101,pixelHeight:40,pixelWidth:101,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/jaotqF1aPcCeDmzCdh51nbAJ40.svg\"},className:\"framer-g071z7\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"zoho\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:150,pixelHeight:40,pixelWidth:150,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/SeABDjSlLAt1Eg3EN8xMotIx7OM.svg\"},className:\"framer-stugsn\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"accenture\",fit:\"fit\",intrinsicHeight:32,intrinsicWidth:122,pixelHeight:32,pixelWidth:122,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/TKWtwE4CRwrQsqVIfG3doP66JGM.svg\"},className:\"framer-1qob24c\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:32,intrinsicWidth:110,pixelHeight:32,pixelWidth:110,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GHBlhR8sMeYbhsOiOOsQydYDAk.svg\"},className:\"framer-1giseas\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"swiggy\",fit:\"fit\",intrinsicHeight:32,intrinsicWidth:111,pixelHeight:32,pixelWidth:111,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/V9s8QsUbTluvGL5VfoxumHfBAQ.svg\"},className:\"framer-1ebqjx2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"comcast\",fit:\"fit\",intrinsicHeight:32,intrinsicWidth:66,pixelHeight:32,pixelWidth:66,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/68SpMYt6jKZUIYrleITjE665WR4.svg\"},className:\"framer-onw53a\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"byju's\",fit:\"fit\",intrinsicHeight:32,intrinsicWidth:119,pixelHeight:32,pixelWidth:119,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dZecvJ2LYcX5Bqg5NkGJTpEUQ.svg\"},className:\"framer-195e55u\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"paypal\",fit:\"fit\",intrinsicHeight:32,intrinsicWidth:133,pixelHeight:32,pixelWidth:133,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/TVbN8rGLD9zGwVUpS4Z1meb0jRk.svg\"},className:\"framer-1n7hqxn\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"asianpaints\",fit:\"fit\",intrinsicHeight:32,intrinsicWidth:164,pixelHeight:32,pixelWidth:164,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Zu2oDTi1OSE47lKqvTP3uuhU2k.svg\"},className:\"framer-5uolnh\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"krispykreme\",fit:\"fill\",intrinsicHeight:34,intrinsicWidth:98,pixelHeight:34,pixelWidth:98,src:\"https://framerusercontent.com/images/cpohUkeChZ1nUTClX9DdhhdX3o4.svg\"},className:\"framer-19mpbks\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"unacademy\",fit:\"fit\",intrinsicHeight:30,intrinsicWidth:202,pixelHeight:30,pixelWidth:202,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/QR2PKiX2NUdA0tvRqGebTPfC2fs.svg\"},className:\"framer-1g2kzh1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"zomato\",fit:\"fill\",intrinsicHeight:32,intrinsicWidth:114,pixelHeight:32,pixelWidth:114,src:\"https://framerusercontent.com/images/o0xXq4iK6yotrG8w5C60lbsZ0g.svg\"},className:\"framer-ay87x9\"})]})],speed:45,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gxrmw7\",\"data-framer-name\":\"video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fqc64v-container\",isModuleExternal:true,nodeId:\"o_qnDYxkf\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:1,id:\"o_qnDYxkf\",layoutId:\"o_qnDYxkf\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:152,pixelWidth:6650,positionX:\"center\",positionY:\"center\",sizes:\"4200px\",src:\"https://framerusercontent.com/images/P66abSdxnNHmE5ZZYISnac9svI.svg\",srcSet:\"https://framerusercontent.com/images/P66abSdxnNHmE5ZZYISnac9svI.svg?scale-down-to=512 512w,https://framerusercontent.com/images/P66abSdxnNHmE5ZZYISnac9svI.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/P66abSdxnNHmE5ZZYISnac9svI.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/P66abSdxnNHmE5ZZYISnac9svI.svg?scale-down-to=4096 4096w,https://framerusercontent.com/images/P66abSdxnNHmE5ZZYISnac9svI.svg 6650w\"},className:\"framer-fk97o9\",\"data-framer-name\":\"Wave - Reverse\",style:{rotate:180}})],speed:300,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"Video.img\",fit:\"fit\",intrinsicHeight:738,intrinsicWidth:1018,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2093+20+0),pixelHeight:2320,pixelWidth:4001,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,src:\"https://framerusercontent.com/images/LvLiruSXMDVkO3KSMTd2LQvnyA.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/LvLiruSXMDVkO3KSMTd2LQvnyA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/LvLiruSXMDVkO3KSMTd2LQvnyA.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/LvLiruSXMDVkO3KSMTd2LQvnyA.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/LvLiruSXMDVkO3KSMTd2LQvnyA.webp 4001w\"}},DyL_aXI9T:{background:{alt:\"Video.img\",fit:\"fit\",intrinsicHeight:738,intrinsicWidth:1018,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2158+50),pixelHeight:2320,pixelWidth:4001,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px)`,src:\"https://framerusercontent.com/images/LvLiruSXMDVkO3KSMTd2LQvnyA.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/LvLiruSXMDVkO3KSMTd2LQvnyA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/LvLiruSXMDVkO3KSMTd2LQvnyA.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/LvLiruSXMDVkO3KSMTd2LQvnyA.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/LvLiruSXMDVkO3KSMTd2LQvnyA.webp 4001w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Video.img\",fit:\"fit\",intrinsicHeight:738,intrinsicWidth:1018,pixelHeight:2320,pixelWidth:4001,positionX:\"center\",positionY:\"center\",sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px)`,src:\"https://framerusercontent.com/images/LvLiruSXMDVkO3KSMTd2LQvnyA.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/LvLiruSXMDVkO3KSMTd2LQvnyA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/LvLiruSXMDVkO3KSMTd2LQvnyA.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/LvLiruSXMDVkO3KSMTd2LQvnyA.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/LvLiruSXMDVkO3KSMTd2LQvnyA.webp 4001w\"},className:\"framer-9mclpd\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{height:60,width:\"60px\",y:(componentViewport?.y||0)+0+2093+20+0+295},DyL_aXI9T:{y:(componentViewport?.y||0)+0+2158+50+296.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-ix1mzg-container\",id:\"ix1mzg\",nodeId:\"cPQGf1gud\",scopeId:\"SwetY06FA\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{AzZNlMa5C:AzZNlMa5C3bnx0g({overlay}),ePZ0Op3Jn:\"rgb(255, 255, 255)\",Goeh0UlpU:\"PlayCircle\",height:\"100%\",hyoIEBZCr:getLocalizedValue(\"v4\",activeLocale)??\"Watch the video\",id:\"cPQGf1gud\",igfDdwzXW:false,layoutId:\"cPQGf1gud\",mH7JQnSZ_:\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78))\",oTsTlNliL:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",PQcRLCA2s:false,variant:\"ggm5rhZ8v\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.1,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1qpryr4\"),\"data-framer-portal-id\":\"ix1mzg\",exit:{opacity:0,transition:{delay:0,duration:.1,ease:[.5,0,.88,.77],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"sSNZEZXjd\"),/*#__PURE__*/_jsxs(motion.div,{className:cx(scopingClassNames,\"framer-c2itg2\"),\"data-framer-portal-id\":\"ix1mzg\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-jdvlqp\",onTap:onTap1wnntms({overlay}),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xezpdb\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-po9wfz\",\"data-framer-name\":\"x\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 30\"><path d=\"M 22.5 7.5 L 7.5 22.5 M 7.5 7.5 L 22.5 22.5\" fill=\"transparent\" stroke-width=\"2.5\" stroke=\"hsl(0, 0%, 100%)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9306919110,withExternalLayout:true})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qwoux8\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5omlvg-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"HyqgHptYo\",rendersWithMotion:true,scopeId:\"SwetY06FA\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(Loader,{height:\"100%\",id:\"HyqgHptYo\",layoutId:\"HyqgHptYo\",variant:\"AXpNtSsXY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{animate:animation3,className:\"framer-1wmkm4q\",\"data-framer-name\":\"Video\",exit:animation2,initial:animation4,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vjaxej-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"iOb5IEh1l\",rendersWithMotion:true,scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:true,height:\"100%\",id:\"iOb5IEh1l\",isMixedBorderRadius:false,layoutId:\"iOb5IEh1l\",loop:false,mute:false,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,video:getLocalizedValue(\"v5\",activeLocale)??\"https://vimeo.com/907325309?share=copy\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14l6h4a\"})]})]}),getContainer())})})]})})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DyL_aXI9T:{__framer__loopEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nh7sm4\",style:{rotate:45},transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2093+60.9341),pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Fdb49Gp1ZOxYx7RTd9jiRv10aNI.svg\"}},DyL_aXI9T:{__framer__loopEffectEnabled:undefined,background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2158+85.4286),pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Fdb49Gp1ZOxYx7RTd9jiRv10aNI.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"star praticle\",fit:\"fit\",pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Fdb49Gp1ZOxYx7RTd9jiRv10aNI.svg\"},className:\"framer-16w4nuh\",transformTemplate:transformTemplate2})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2813),pixelHeight:2660,pixelWidth:1600,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ZHpvb4zZBYOTUGBKjtOIBLVOPdI.svg\",srcSet:\"https://framerusercontent.com/images/ZHpvb4zZBYOTUGBKjtOIBLVOPdI.svg?scale-down-to=1024 615w,https://framerusercontent.com/images/ZHpvb4zZBYOTUGBKjtOIBLVOPdI.svg?scale-down-to=2048 1231w,https://framerusercontent.com/images/ZHpvb4zZBYOTUGBKjtOIBLVOPdI.svg 1600w\"}},DyL_aXI9T:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2958),pixelHeight:2660,pixelWidth:1600,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/ZHpvb4zZBYOTUGBKjtOIBLVOPdI.svg\",srcSet:\"https://framerusercontent.com/images/ZHpvb4zZBYOTUGBKjtOIBLVOPdI.svg?scale-down-to=1024 615w,https://framerusercontent.com/images/ZHpvb4zZBYOTUGBKjtOIBLVOPdI.svg?scale-down-to=2048 1231w,https://framerusercontent.com/images/ZHpvb4zZBYOTUGBKjtOIBLVOPdI.svg 1600w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2660,pixelWidth:1600,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/z5zzfxdNKneJsynidLXCTdCXBk.svg\",srcSet:\"https://framerusercontent.com/images/z5zzfxdNKneJsynidLXCTdCXBk.svg?scale-down-to=1024 615w,https://framerusercontent.com/images/z5zzfxdNKneJsynidLXCTdCXBk.svg?scale-down-to=2048 1231w,https://framerusercontent.com/images/z5zzfxdNKneJsynidLXCTdCXBk.svg 1600w\"},className:\"framer-l9dq9p\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ice8gf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-7nfr3z\",\"data-styles-preset\":\"LnfYZ6YjK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"Rank #1 with our Blog Writer\"})}),className:\"framer-1vma7im\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-hwhvam\",\"data-styles-preset\":\"ReSQ8ey8L\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:[\"Boost your \",/*#__PURE__*/_jsx(\"strong\",{children:\"Blog's visibility\"}),\" across Search Engines! \",/*#__PURE__*/_jsx(\"br\",{}),\"Drive more traffic and ensure your content reaches \",/*#__PURE__*/_jsx(\"strong\",{children:\"wider audience\"}),\".\"]})}),className:\"framer-i84ua8\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nsgcns\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bg0bze\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c8jc63\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bp8kyx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(243, 242, 255)\"},children:\"Out-Rank your Competitors on Google\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(243, 242, 255)\"},children:\"(with ease).\"})]})},DyL_aXI9T:{children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"51px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(243, 242, 255)\"},children:\"Out-Rank your Competitors on Google\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"51px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(243, 242, 255)\"},children:\"(with ease).\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(243, 242, 255)\"},children:\"Out-Rank your Competitors on Google\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(243, 242, 255)\"},children:\"(with ease).\"})]}),className:\"framer-179yyka\",fonts:[\"Inter-Bold\",\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1u3haz7\",\"data-styles-preset\":\"Z1DcQRLa8\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(243, 242, 255)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Our AI Writer will analyse your keywords\"}),\", read competitors Blogs and write a better Article with AI.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1u3haz7\",\"data-styles-preset\":\"Z1DcQRLa8\",style:{\"--framer-text-color\":\"rgb(243, 242, 255)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Our AI Writer will analyse your keywords\"}),\", read competitors Blogs and write a better Article with AI.\"]})}),className:\"framer-170xc8h\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{y:(componentViewport?.y||0)+0+2813+60+276+0+0+0+0+0+545},DyL_aXI9T:{y:(componentViewport?.y||0)+0+2958+100+276+0+0+0+0+735}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,children:/*#__PURE__*/_jsx(Container,{className:\"framer-co3uq2-container\",nodeId:\"zzG0qsRjy\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(NewCta,{height:\"100%\",id:\"zzG0qsRjy\",layoutId:\"zzG0qsRjy\",uvDKkzYwI:getLocalizedValue(\"v13\",activeLocale)??\"Start for Free\",variant:\"HqzbBUTUO\",w5pfKxN1a:\"rgb(181, 185, 255)\",width:\"100%\",zXw2Ooxmr:\"https://app2.gravitywrite.com/register\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"Blog Outline\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2813+60+276+0+0+0+566),pixelHeight:477,pixelWidth:668,positionX:\"center\",positionY:\"center\",sizes:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 650px)`,src:\"https://framerusercontent.com/images/5Zqrk3aVbgY5jpYNb0kKDd3iT8.svg\",srcSet:\"https://framerusercontent.com/images/5Zqrk3aVbgY5jpYNb0kKDd3iT8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/5Zqrk3aVbgY5jpYNb0kKDd3iT8.svg 668w\"}},DyL_aXI9T:{background:{alt:\"Blog Outline\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2958+100+276+0+0+106.5),pixelHeight:477,pixelWidth:668,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) / 1.8, 1px), 650px)`,src:\"https://framerusercontent.com/images/5Zqrk3aVbgY5jpYNb0kKDd3iT8.svg\",srcSet:\"https://framerusercontent.com/images/5Zqrk3aVbgY5jpYNb0kKDd3iT8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/5Zqrk3aVbgY5jpYNb0kKDd3iT8.svg 668w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Blog Outline\",fit:\"fit\",pixelHeight:477,pixelWidth:668,positionX:\"center\",positionY:\"center\",sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) / 1.5, 1px), 650px)`,src:\"https://framerusercontent.com/images/5Zqrk3aVbgY5jpYNb0kKDd3iT8.svg\",srcSet:\"https://framerusercontent.com/images/5Zqrk3aVbgY5jpYNb0kKDd3iT8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/5Zqrk3aVbgY5jpYNb0kKDd3iT8.svg 668w\"},className:\"framer-19nu0ej\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3wxseg\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ut1t1p\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2813+60+276+0+1159+0+0+118.2308),pixelHeight:13,pixelWidth:13,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DDtyzvtod88i1BHu5arokzHCqg.svg\"}},DyL_aXI9T:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2958+100+276+0+816+0+78.5132),pixelHeight:13,pixelWidth:13,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DDtyzvtod88i1BHu5arokzHCqg.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"star praticle\",fit:\"fit\",pixelHeight:13,pixelWidth:13,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DDtyzvtod88i1BHu5arokzHCqg.svg\"},className:\"framer-i9xfm5\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"triangle praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2813+60+276+0+1159+0+0+294.6391),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/khpsfnWyxjq7wZXeu9n2IUM7ZeM.svg\"}},DyL_aXI9T:{background:{alt:\"triangle praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2958+100+276+0+816+0+317.3026),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/khpsfnWyxjq7wZXeu9n2IUM7ZeM.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"triangle praticle\",fit:\"fit\",pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/khpsfnWyxjq7wZXeu9n2IUM7ZeM.svg\"},className:\"framer-lyjad0\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78))\"},children:\"Write articles with 3000- 5000 words in 1-Click with Real-Time Data\"})})},DyL_aXI9T:{children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"29px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78))\"},children:\"Write articles with 3000- 5000 words in 1-Click with Real-Time Data\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78))\"},children:\"Write articles with 3000- 5000 words in 1-Click with Real-Time Data\"})}),className:\"framer-u7mxfu\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"Blog Outline\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2813+60+276+0+1159+0+0+15+42),pixelHeight:1234,pixelWidth:2094,positionX:\"center\",positionY:\"center\",sizes:`min(min(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 600px) - 30px, 670px)`,src:\"https://framerusercontent.com/images/cijY4XMKnyvUEjuCkOXNYGj4k.webp\",srcSet:\"https://framerusercontent.com/images/cijY4XMKnyvUEjuCkOXNYGj4k.webp?scale-down-to=512 512w,https://framerusercontent.com/images/cijY4XMKnyvUEjuCkOXNYGj4k.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/cijY4XMKnyvUEjuCkOXNYGj4k.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/cijY4XMKnyvUEjuCkOXNYGj4k.webp 2094w\"}},DyL_aXI9T:{background:{alt:\"Blog Outline\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2958+100+276+0+816+0+30+49),pixelHeight:1234,pixelWidth:2094,positionX:\"center\",positionY:\"center\",sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 15px) * 0.6, 1px) - 50px, 670px)`,src:\"https://framerusercontent.com/images/cijY4XMKnyvUEjuCkOXNYGj4k.webp\",srcSet:\"https://framerusercontent.com/images/cijY4XMKnyvUEjuCkOXNYGj4k.webp?scale-down-to=512 512w,https://framerusercontent.com/images/cijY4XMKnyvUEjuCkOXNYGj4k.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/cijY4XMKnyvUEjuCkOXNYGj4k.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/cijY4XMKnyvUEjuCkOXNYGj4k.webp 2094w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Blog Outline\",fit:\"fit\",pixelHeight:1234,pixelWidth:2094,positionX:\"center\",positionY:\"center\",sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 15px) * 0.6, 1px) - 50px, 670px)`,src:\"https://framerusercontent.com/images/cijY4XMKnyvUEjuCkOXNYGj4k.webp\",srcSet:\"https://framerusercontent.com/images/cijY4XMKnyvUEjuCkOXNYGj4k.webp?scale-down-to=512 512w,https://framerusercontent.com/images/cijY4XMKnyvUEjuCkOXNYGj4k.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/cijY4XMKnyvUEjuCkOXNYGj4k.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/cijY4XMKnyvUEjuCkOXNYGj4k.webp 2094w\"},className:\"framer-sl2zbq\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-x23ph7\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-brc7mm-container\",isModuleExternal:true,nodeId:\"eQ4s6ths5\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:getLocalizedValue(\"v17\",activeLocale)??'<!-- Import Inter font -->\\n<link rel=\"preconnect\" href=\"https://fonts.googleapis.com\">\\n<link rel=\"preconnect\" href=\"https://fonts.gstatic.com\" crossorigin>\\n<link href=\"https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap\" rel=\"stylesheet\">\\n\\n<!-- Counter Element -->\\n<div id=\"count\" aria-label=\"count\" style=\"\\n    color: #ffffff;\\n    font-family: \\'Inter\\', sans-serif;\\n    font-size: clamp(1rem, 2.5vw, 1.5rem);\\n    font-weight: 500;\\n    line-height: 1.9em;\\n    letter-spacing: -0.04em;\\n    text-align: center;\\n    width: auto;\\n    height: auto;\\noverflow-y: hidden; \">\\n    1000 Words Generated\\n</div>\\n\\n<!-- Counter Animation Script -->\\n<script>\\n    const start = 1000;\\n    const end = 5463;\\n    const duration = 6000; // 6 seconds\\n    const frameRate = 60; // frames per second\\n    const totalFrames = Math.round(duration / (1000 / frameRate));\\n    let currentFrame = 0;\\n\\n    const easeInOutQuad = (t) => t < 0.5 ? 2 * t * t : 1 - Math.pow(-2 * t + 2, 2) / 2;\\n\\n    const countElement = document.getElementById(\\'count\\');\\n\\n    const animateCount = () => {\\n        const counter = setInterval(() => {\\n            currentFrame++;\\n            const progress = easeInOutQuad(currentFrame / totalFrames);\\n            const currentCount = Math.round(start + (end - start) * progress);\\n            countElement.textContent = `${currentCount} Words Generated`;\\n\\n            if (currentFrame >= totalFrames) {\\n                clearInterval(counter);\\n                countElement.textContent = `${end + 1} Words Generated`;\\n            }\\n        }, 1000 / frameRate);\\n    };\\n\\n    const observer = new IntersectionObserver((entries) => {\\n        entries.forEach(entry => {\\n            if (entry.isIntersecting) {\\n                animateCount();\\n                observer.unobserve(entry.target);\\n            }\\n        });\\n    }, {\\n        threshold: 0.1\\n    });\\n\\n    observer.observe(countElement);\\n</script>\\n',id:\"eQ4s6ths5\",layoutId:\"eQ4s6ths5\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ytcuj7\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10gjfp\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78))\"},children:\"Create unique blog Images with AI\"})})},DyL_aXI9T:{children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"29px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78))\"},children:\"Create unique blog Images with AI\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, rgb(25, 21, 78))\"},children:\"Create unique blog Images with AI\"})}),className:\"framer-1uwrxat\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"Blog outline with image\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2813+60+276+0+1159+0+447+15+42),pixelHeight:1532,pixelWidth:1632,positionX:\"center\",positionY:\"center\",sizes:`min(min(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 600px) - 30px, 405px)`,src:\"https://framerusercontent.com/images/hreSpGo1nOqLx5qG8SWoRoc1ziI.png\",srcSet:\"https://framerusercontent.com/images/hreSpGo1nOqLx5qG8SWoRoc1ziI.png?scale-down-to=512 512w,https://framerusercontent.com/images/hreSpGo1nOqLx5qG8SWoRoc1ziI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hreSpGo1nOqLx5qG8SWoRoc1ziI.png 1632w\"}},DyL_aXI9T:{background:{alt:\"Blog outline with image\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2958+100+276+0+816+0+30+49),pixelHeight:1532,pixelWidth:1632,positionX:\"center\",positionY:\"center\",sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 15px) * 0.4, 1px) - 60px)`,src:\"https://framerusercontent.com/images/hreSpGo1nOqLx5qG8SWoRoc1ziI.png\",srcSet:\"https://framerusercontent.com/images/hreSpGo1nOqLx5qG8SWoRoc1ziI.png?scale-down-to=512 512w,https://framerusercontent.com/images/hreSpGo1nOqLx5qG8SWoRoc1ziI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hreSpGo1nOqLx5qG8SWoRoc1ziI.png 1632w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Blog outline with image\",fit:\"fit\",pixelHeight:1532,pixelWidth:1632,positionX:\"center\",positionY:\"center\",sizes:`min(max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 15px) * 0.4, 1px) - 60px, 405px)`,src:\"https://framerusercontent.com/images/hreSpGo1nOqLx5qG8SWoRoc1ziI.png\",srcSet:\"https://framerusercontent.com/images/hreSpGo1nOqLx5qG8SWoRoc1ziI.png?scale-down-to=512 512w,https://framerusercontent.com/images/hreSpGo1nOqLx5qG8SWoRoc1ziI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hreSpGo1nOqLx5qG8SWoRoc1ziI.png 1632w\"},className:\"framer-w7fgl9\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2813+60+276+0+1159+0+447+101.5),pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ysCigotXLnkKQmsira6y9lsv5qc.svg\"}},DyL_aXI9T:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2958+100+276+0+816+0+101.5),pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ysCigotXLnkKQmsira6y9lsv5qc.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"star praticle\",fit:\"fit\",pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ysCigotXLnkKQmsira6y9lsv5qc.svg\"},className:\"framer-6kupso\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1iyimzn\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-28yuxo\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-153m0v3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-kdhifp\",\"data-styles-preset\":\"kaQjBqpWY\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(243, 242, 255)\"},children:\"1-Click Publish to WordPress Site\"})}),className:\"framer-xqkl4n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1u3haz7\",\"data-styles-preset\":\"Z1DcQRLa8\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(243, 242, 255)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"GravityWrite's \"}),/*#__PURE__*/_jsx(Link,{href:\"https://gravitywrite.com/ai-blog-writer\",motionChild:true,nodeId:\"DTrTNoH5P\",openInNewTab:true,scopeId:\"SwetY06FA\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-j03wlc\",\"data-styles-preset\":\"CpA5ppCCp\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"AI Blog Writer\"})})}),\" can Integrate seamlessly with Wordpress and publish content in \",/*#__PURE__*/_jsx(\"strong\",{children:\"No Time\"}),\".\"]})}),className:\"framer-1vrcqvn\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"1-Click blog post\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2813+60+276+0+2088+20+271),pixelHeight:1856,pixelWidth:4884,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,src:\"https://framerusercontent.com/images/Rf2pXnsDQd73VwvjeCV9edmQ.png\",srcSet:\"https://framerusercontent.com/images/Rf2pXnsDQd73VwvjeCV9edmQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/Rf2pXnsDQd73VwvjeCV9edmQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Rf2pXnsDQd73VwvjeCV9edmQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Rf2pXnsDQd73VwvjeCV9edmQ.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Rf2pXnsDQd73VwvjeCV9edmQ.png 4884w\"}},DyL_aXI9T:{background:{alt:\"1-Click blog post\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2958+100+276+0+1345+20+301),pixelHeight:1856,pixelWidth:4884,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,src:\"https://framerusercontent.com/images/Rf2pXnsDQd73VwvjeCV9edmQ.png\",srcSet:\"https://framerusercontent.com/images/Rf2pXnsDQd73VwvjeCV9edmQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/Rf2pXnsDQd73VwvjeCV9edmQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Rf2pXnsDQd73VwvjeCV9edmQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Rf2pXnsDQd73VwvjeCV9edmQ.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Rf2pXnsDQd73VwvjeCV9edmQ.png 4884w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"1-Click blog post\",fit:\"fit\",pixelHeight:1856,pixelWidth:4884,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,src:\"https://framerusercontent.com/images/Rf2pXnsDQd73VwvjeCV9edmQ.png\",srcSet:\"https://framerusercontent.com/images/Rf2pXnsDQd73VwvjeCV9edmQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/Rf2pXnsDQd73VwvjeCV9edmQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Rf2pXnsDQd73VwvjeCV9edmQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Rf2pXnsDQd73VwvjeCV9edmQ.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Rf2pXnsDQd73VwvjeCV9edmQ.png 4884w\"},className:\"framer-be781q\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,y:(componentViewport?.y||0)+0+2813+60+276+0+2088+20+751},DyL_aXI9T:{y:(componentViewport?.y||0)+0+2958+100+276+0+1345+20+811}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12dxl2x-container\",nodeId:\"mKwZZunAO\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(NewGradientButton,{height:\"100%\",id:\"mKwZZunAO\",layoutId:\"mKwZZunAO\",RrzSG1Y4j:getLocalizedValue(\"v23\",activeLocale)??\"Try AI Blog Writer\",style:{width:\"100%\"},width:\"100%\",XpXsQR8HT:\"https://app.gravitywrite.com/blog-writer\"})})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pvvwzn\",\"data-framer-name\":\"blog writer\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nokuyg\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"triangle praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6118+60+0+1279.0577),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Z3PHeoic5KAJQv4OdraWMDEv4.svg\"}},DyL_aXI9T:{background:{alt:\"triangle praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5660+80+1261.1706),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Z3PHeoic5KAJQv4OdraWMDEv4.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation5,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"triangle praticle\",fit:\"fit\",pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Z3PHeoic5KAJQv4OdraWMDEv4.svg\"},className:\"framer-1tobc5p\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fpsh4j\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6118+60+0+0+0+0+0),pixelHeight:81,pixelWidth:98,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/YCAOrad7Z2qhkh5BRyb2juIUFfU.svg\"}},DyL_aXI9T:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5660+80+0+0+0+0),pixelHeight:81,pixelWidth:98,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/YCAOrad7Z2qhkh5BRyb2juIUFfU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:81,pixelWidth:98,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/YCAOrad7Z2qhkh5BRyb2juIUFfU.svg\"},className:\"framer-2pfbyf\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6duqb7-container\",isModuleExternal:true,nodeId:\"uIJjcsRLM\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{html:getLocalizedValue(\"v25\",activeLocale)??'<style>\\n  .text {\\n    font-family: Inter;\\n    font-size: 80px;\\n    font-weight: 700;\\n    line-height: 1.2em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    color: #1E2022;\\n  }\\n\\n  .image {\\n    font-family: Inter;\\n    font-size: 80px;\\n    font-weight: 700;\\n    line-height: 1.2em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    background-image: url(\\'https://framerusercontent.com/images/FUqHZ5UgE70TJWU2iZXzd1J8jMM.webp\\');\\n    background-repeat: repeat-x;\\n    background-size: cover;\\n    background-position: 0 50%;\\n    color: transparent;\\n    background-clip: text;\\n    -webkit-background-clip: text;\\n    animation: marquee 8s linear infinite;\\n  }\\n\\n  @keyframes marquee {\\n    0% {\\n      background-position: 0 50%;\\n    }\\n    100% {\\n      background-position: 200% 50%;\\n    }\\n  }\\n\\n  @media (max-width: 1199px) {\\n    .text, .image {\\n      font-size: 64px;\\n    }\\n  }\\n\\n  @media (max-width: 560px) {\\n    .text, .image {\\n      font-size: 48px;\\n    }\\n  }\\n</style>\\n    \\n<h2 class=\"text\">Write <span class=\"image\">SEO</span> <span class=\"image\">Blogs </span> in 1-Click</h2>'}},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:getLocalizedValue(\"v24\",activeLocale)??'<style>\\n  .text {\\n    font-family: Inter;\\n    font-size: 80px;\\n    font-weight: 700;\\n    line-height: 1.2em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    color: #1E2022;\\n  }\\n\\n  .image {\\n    font-family: Inter;\\n    font-size: 80px;\\n    font-weight: 700;\\n    line-height: 1.2em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    background-image: url(\\'https://framerusercontent.com/images/FUqHZ5UgE70TJWU2iZXzd1J8jMM.webp\\');\\n    background-repeat: repeat-x;\\n    background-size: cover;\\n    background-position: 0 50%;\\n    color: transparent;\\n    background-clip: text;\\n    -webkit-background-clip: text;\\n    animation: marquee 8s linear infinite;\\n  }\\n\\n  @keyframes marquee {\\n    0% {\\n      background-position: 0 50%;\\n    }\\n    100% {\\n      background-position: 200% 50%;\\n    }\\n  }\\n\\n  @media (max-width: 1199px) {\\n    .text, .image {\\n      font-size: 64px;\\n    }\\n  }\\n\\n  @media (max-width: 560px) {\\n    .text, .image {\\n      font-size: 50px;\\n    }\\n  }\\n</style>\\n    \\n<h2 class=\"text\">Write <span class=\"image\">SEO</span> <span class=\"image\">Blogs </span> in 1-Click</h2>',id:\"uIJjcsRLM\",layoutId:\"uIJjcsRLM\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6118+60+0+0+0+626.1977),pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PzcDRd94HKYwxfLm1qv03bPGkrw.svg\"}},DyL_aXI9T:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5660+80+0+0+621.6111),pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PzcDRd94HKYwxfLm1qv03bPGkrw.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"star praticle\",fit:\"fit\",pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PzcDRd94HKYwxfLm1qv03bPGkrw.svg\"},className:\"framer-198c5ra\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-hwhvam\",\"data-styles-preset\":\"ReSQ8ey8L\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Create organized, Search-Engine-Optimized Blogs on any topic\"}),\" you choose in the style and language you prefer in a matter of seconds.\"]})}),className:\"framer-fru26r\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dz47yv\",style:{rotate:45}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lugwjy\",style:{rotate:45}})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,y:(componentViewport?.y||0)+0+6118+60+0+0+701},DyL_aXI9T:{y:(componentViewport?.y||0)+0+5660+80+0+701}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:568,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cnut7h-container\",nodeId:\"bLzs8Mbem\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{style:{width:\"100%\"},variant:\"NMdgXIy5Q\"}},children:/*#__PURE__*/_jsx(NewAnimator,{height:\"100%\",id:\"bLzs8Mbem\",layoutId:\"bLzs8Mbem\",variant:\"uSbRKtcYA\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{y:(componentViewport?.y||0)+0+6118+60+0+0+1319},DyL_aXI9T:{y:(componentViewport?.y||0)+0+5660+80+0+1319}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,children:/*#__PURE__*/_jsx(Container,{className:\"framer-adx4m8-container\",nodeId:\"IV7492U5e\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(NewCta,{height:\"100%\",id:\"IV7492U5e\",KXJ_K1mF6:addImageAlt({pixelHeight:17,pixelWidth:16,src:\"https://framerusercontent.com/images/C2bo7YzhP0lC2IY7yY0SvIG5nas.svg\"},\"\"),layoutId:\"IV7492U5e\",utoG7cyO9:addImageAlt({pixelHeight:13,pixelWidth:23,src:\"https://framerusercontent.com/images/swEzPphxxOw1GDOJgnH1KK7GD6Q.svg\"},\"\"),uvDKkzYwI:getLocalizedValue(\"v27\",activeLocale)??\"Learn More\",variant:\"onUMUqWQn\",w5pfKxN1a:\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255))\",width:\"100%\",zXw2Ooxmr:\"https://gravitywrite.com/ai-blog-writer\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1btswxv\",transformTemplate:transformTemplate2})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2joa9x\",\"data-framer-name\":\"Tempates\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k0p4yg\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7548+60+0+0+0),pixelHeight:81,pixelWidth:98,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/L6ZFsgC4PFoIU5hBLZ3TBLuYTQ.svg\"}},DyL_aXI9T:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7110+80+0+0+0),pixelHeight:81,pixelWidth:98,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/L6ZFsgC4PFoIU5hBLZ3TBLuYTQ.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:81,pixelWidth:98,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/L6ZFsgC4PFoIU5hBLZ3TBLuYTQ.svg\"},className:\"framer-15qbwv2\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12o69m3\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jrqwqa-container\",isModuleExternal:true,nodeId:\"aXvnoBQ2w\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{html:getLocalizedValue(\"v29\",activeLocale)??'<style>\\n  .text {\\n    font-family: Inter;\\n    font-size: 80px;\\n    font-weight: 700;\\n    line-height:1em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    color: #1E2022;\\n  }\\n\\n  .image {\\n    font-family: Inter;\\n    font-size: 80px;\\n    font-weight: 700;\\n    line-height: 1em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    background-image: url(\\'https://framerusercontent.com/images/FUqHZ5UgE70TJWU2iZXzd1J8jMM.webp\\');\\n    background-repeat: repeat-x;\\n    background-size: cover;\\n    background-position: 0 50%;\\n    color: transparent;\\n    background-clip: text;\\n    -webkit-background-clip: text;\\n    animation: marquee 8s linear infinite;\\n  }\\n\\n  @keyframes marquee {\\n    0% {\\n      background-position: 0 50%;\\n    }\\n    100% {\\n      background-position: 200% 50%;\\n    }\\n  }\\n\\n  @media (max-width: 1199px) {\\n    .text, .image {\\n      font-size: 64px;\\n    }\\n  }\\n\\n  @media (max-width: 560px) {\\n    .text, .image {\\n      font-size: 48px;\\n    }\\n  }\\n</style>\\n    \\n<h2 class=\"text\">Access 250+ <span class=\"image\">Temp</span><span class=\"image\">lates </span><span class=\"dot\">.</span></h2>'}},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:getLocalizedValue(\"v28\",activeLocale)??'<style>\\n  .text {\\n    font-family: Inter;\\n    font-size: 80px;\\n    font-weight: 700;\\n    line-height:1em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    color: #1E2022;\\n  }\\n\\n  .image {\\n    font-family: Inter;\\n    font-size: 80px;\\n    font-weight: 700;\\n    line-height: 1em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    background-image: url(\\'https://framerusercontent.com/images/FUqHZ5UgE70TJWU2iZXzd1J8jMM.webp\\');\\n    background-repeat: repeat-x;\\n    background-size: cover;\\n    background-position: 0 50%;\\n    color: transparent;\\n    background-clip: text;\\n    -webkit-background-clip: text;\\n    animation: marquee 8s linear infinite;\\n  }\\n\\n  @keyframes marquee {\\n    0% {\\n      background-position: 0 50%;\\n    }\\n    100% {\\n      background-position: 200% 50%;\\n    }\\n  }\\n\\n  @media (max-width: 1199px) {\\n    .text, .image {\\n      font-size: 64px;\\n    }\\n  }\\n\\n  @media (max-width: 560px) {\\n    .text, .image {\\n      font-size: 50px;\\n    }\\n  }\\n</style>\\n    \\n<h2 class=\"text\">Access 250+ <span class=\"image\">Temp</span><span class=\"image\">lates </span><span class=\"dot\">.</span></h2>',id:\"aXvnoBQ2w\",layoutId:\"aXvnoBQ2w\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-hwhvam\",\"data-styles-preset\":\"ReSQ8ey8L\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"With 250+ AI templates\"}),\", you can generate various content like Blogs, Social Media Posts, Ad copies and more \",/*#__PURE__*/_jsx(\"strong\",{children:\"all in one place\"}),\".\"]})}),className:\"framer-44pq62\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{width:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 750px)`,y:(componentViewport?.y||0)+0+7548+60+0+0+691},DyL_aXI9T:{y:(componentViewport?.y||0)+0+7110+80+0+0+691}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:723,width:`min(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 820px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s6lys-container\",nodeId:\"Z1EL21uST\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{variant:\"hx9IiSB3W\"}},children:/*#__PURE__*/_jsx(SocialWrap,{height:\"100%\",id:\"Z1EL21uST\",layoutId:\"Z1EL21uST\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"wdCQzVgTn\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7548+60+0+173.7424),pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vylgz15WpTSKDZAtD6sMVLkTtU.svg\"}},DyL_aXI9T:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7110+80+0+171.7424),pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vylgz15WpTSKDZAtD6sMVLkTtU.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"star praticle\",fit:\"fit\",pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vylgz15WpTSKDZAtD6sMVLkTtU.svg\"},className:\"framer-14zewzw\",style:{rotate:30}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7548+60+0+343.7452),pixelHeight:8,pixelWidth:8,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AQ4gC1htO8jrpT1HMcC9lKvfo.svg\"}},DyL_aXI9T:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7110+80+0+370.562),pixelHeight:8,pixelWidth:8,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AQ4gC1htO8jrpT1HMcC9lKvfo.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",pixelHeight:8,pixelWidth:8,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AQ4gC1htO8jrpT1HMcC9lKvfo.svg\"},className:\"framer-xtg1n1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7548+60+0+1307.6747),pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vylgz15WpTSKDZAtD6sMVLkTtU.svg\"}},DyL_aXI9T:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7110+80+0+1305.6747),pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vylgz15WpTSKDZAtD6sMVLkTtU.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"star praticle\",fit:\"fit\",pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vylgz15WpTSKDZAtD6sMVLkTtU.svg\"},className:\"framer-1j1v9ma\",style:{rotate:30}})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15ekcdn\",style:{rotate:45}})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18m0vrq\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z9ak9l\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7548+60+1535+0+0),pixelHeight:81,pixelWidth:98,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/A14rCtl76xn7rvyhTx6kbaISw8.svg\"}},DyL_aXI9T:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7110+80+1575+0+0),pixelHeight:81,pixelWidth:98,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/A14rCtl76xn7rvyhTx6kbaISw8.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:81,pixelWidth:98,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/A14rCtl76xn7rvyhTx6kbaISw8.svg\"},className:\"framer-1971ft2\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fuqh62\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sa88er-container\",isModuleExternal:true,nodeId:\"b97L40Dbo\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{html:getLocalizedValue(\"v32\",activeLocale)??'<style>\\n  .text {\\n    font-family: Inter;\\n    font-size: 80px;\\n    font-weight: 700;\\n    line-height: 1em; /* Fixed missing semicolon */\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    color: #1E2022;\\ntext-decoration: none;\\n  }\\n\\n  .image {\\n    font-family: Inter;\\n    font-size: 80px;\\n    font-weight: 700;\\n    line-height: 1em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    background-image: url(\\'https://framerusercontent.com/images/FUqHZ5UgE70TJWU2iZXzd1J8jMM.webp\\');\\n    background-repeat: repeat-x;\\n    background-size: cover;\\n    background-position: 0 50%;\\n    color: transparent;\\n    background-clip: text;\\n    -webkit-background-clip: text;\\n    animation: marquee 8s linear infinite;\\n  }\\n\\n  @keyframes marquee {\\n    0% {\\n      background-position: 0 50%;\\n    }\\n    100% {\\n      background-position: 200% 50%;\\n    }\\n  }\\n\\n  @media (max-width: 1199px) {\\n    .text, .image {\\n      font-size: 64px;\\n    }\\n  }\\n\\n  @media (max-width: 560px) {\\n    .text, .image {\\n      font-size: 48px;\\n    }\\n  }\\n</style>\\n\\n<a href=\"https://gravitywrite.com/ai-image-generator\" class=\"text\">\\n  <span class=\"image\">Image</span> Generation\\n</a>\\n'}},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:getLocalizedValue(\"v31\",activeLocale)??'<style>\\n  .text {\\n    font-family: Inter;\\n    font-size: 80px;\\n    font-weight: 700;\\n    line-height: 1em; /* Fixed missing semicolon */\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    color: #1E2022;\\ntext-decoration: none;\\n  }\\n\\n  .image {\\n    font-family: Inter;\\n    font-size: 80px;\\n    font-weight: 700;\\n    line-height: 1em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    background-image: url(\\'https://framerusercontent.com/images/FUqHZ5UgE70TJWU2iZXzd1J8jMM.webp\\');\\n    background-repeat: repeat-x;\\n    background-size: cover;\\n    background-position: 0 50%;\\n    color: transparent;\\n    background-clip: text;\\n    -webkit-background-clip: text;\\n    animation: marquee 8s linear infinite;\\n  }\\n\\n  @keyframes marquee {\\n    0% {\\n      background-position: 0 50%;\\n    }\\n    100% {\\n      background-position: 200% 50%;\\n    }\\n  }\\n\\n  @media (max-width: 1199px) {\\n    .text, .image {\\n      font-size: 64px;\\n    }\\n  }\\n\\n  @media (max-width: 560px) {\\n    .text, .image {\\n      font-size: 50px;\\n    }\\n  }\\n</style>\\n\\n<a href=\"https://gravitywrite.com/ai-image-generator\" class=\"text\">\\n  <span class=\"image\">Image</span> Generation\\n</a>\\n',id:\"b97L40Dbo\",layoutId:\"b97L40Dbo\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v33\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-hwhvam\",\"data-styles-preset\":\"ReSQ8ey8L\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Generate high-quality, Artistic and Creative images\"}),\" by entering a simple text description in several styles without designing them.\"]})}),className:\"framer-k1zoqw\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{width:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 740px)`,y:(componentViewport?.y||0)+0+7548+60+1535+0+691},DyL_aXI9T:{width:`min(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 650px)`,y:(componentViewport?.y||0)+0+7110+80+1575+0+691}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:559,width:`min(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 740px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-161omo8-container\",nodeId:\"FNYQk8AIz\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{variant:\"AKJYnimeW\"}},children:/*#__PURE__*/_jsx(ImageGeneration,{height:\"100%\",id:\"FNYQk8AIz\",layoutId:\"FNYQk8AIz\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"b8qWnjQFM\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7548+60+1535+94.9494),pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Fdb49Gp1ZOxYx7RTd9jiRv10aNI.svg\"}},DyL_aXI9T:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7110+80+1575+177.3434),pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Fdb49Gp1ZOxYx7RTd9jiRv10aNI.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"star praticle\",fit:\"fit\",pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Fdb49Gp1ZOxYx7RTd9jiRv10aNI.svg\"},className:\"framer-1oyx20q\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"triangle praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7548+60+1535+509.0533),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/khpsfnWyxjq7wZXeu9n2IUM7ZeM.svg\"}},DyL_aXI9T:{background:{alt:\"triangle praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7110+80+1575+363.7729),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/khpsfnWyxjq7wZXeu9n2IUM7ZeM.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"triangle praticle\",fit:\"fit\",pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/khpsfnWyxjq7wZXeu9n2IUM7ZeM.svg\"},className:\"framer-fmao8n\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jtl8ui\",style:{rotate:45}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xdypfn\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wcktpm\",\"data-framer-name\":\"Gravity Images\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a06mdd-container hidden-gj2bu5 hidden-1gg9aul\",isModuleExternal:true,nodeId:\"FitaoISyd\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:.8,id:\"FitaoISyd\",layoutId:\"FitaoISyd\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fo3kf\",\"data-framer-name\":\"Row-5\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Card Layouts\",fit:\"fit\",pixelHeight:400,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/wMOQXgZj8KIkLuYAU1cCnqMCDo0.jpg\",srcSet:\"https://framerusercontent.com/images/wMOQXgZj8KIkLuYAU1cCnqMCDo0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wMOQXgZj8KIkLuYAU1cCnqMCDo0.jpg 800w\"},className:\"framer-13gjbb8\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Scifi Logo\",fit:\"fit\",pixelHeight:400,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/9Vkwrg1Nc9xX1nFcAfbfF7K5CE.jpg\",srcSet:\"https://framerusercontent.com/images/9Vkwrg1Nc9xX1nFcAfbfF7K5CE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9Vkwrg1Nc9xX1nFcAfbfF7K5CE.jpg 800w\"},className:\"framer-1ksw7x1\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Children Book Covers\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/xdFk5wkV4Sq3GPoSBe1WW8HWv40.jpg\",srcSet:\"https://framerusercontent.com/images/xdFk5wkV4Sq3GPoSBe1WW8HWv40.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xdFk5wkV4Sq3GPoSBe1WW8HWv40.jpg 800w\"},className:\"framer-17kw5wv\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Chalk Style\",fit:\"fill\",pixelHeight:250,pixelWidth:500,src:\"https://framerusercontent.com/images/XABkbmokSf7Ar7KKvbKFpehWc4.jpg\"},className:\"framer-k0kmfs\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Website Templates\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/eIZYWHRtmPOijYDP8inRncXQe2g.jpg\",srcSet:\"https://framerusercontent.com/images/eIZYWHRtmPOijYDP8inRncXQe2g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/eIZYWHRtmPOijYDP8inRncXQe2g.jpg 800w\"},className:\"framer-1jv504p\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Sticker Design\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/H2Ueu1oydtbN8UndDTMEw0HfLnQ.jpg\",srcSet:\"https://framerusercontent.com/images/H2Ueu1oydtbN8UndDTMEw0HfLnQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/H2Ueu1oydtbN8UndDTMEw0HfLnQ.jpg 800w\"},className:\"framer-1323oz9\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Fairytale Animals\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/CLuBJDNQCAzYofYnPvrdvUfF4E.jpg\",srcSet:\"https://framerusercontent.com/images/CLuBJDNQCAzYofYnPvrdvUfF4E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CLuBJDNQCAzYofYnPvrdvUfF4E.jpg 800w\"},className:\"framer-u2sr7w\",whileHover:animation7})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gi3ixu-container hidden-1gg9aul\",isModuleExternal:true,nodeId:\"kejz3W2Gw\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:.8,id:\"kejz3W2Gw\",layoutId:\"kejz3W2Gw\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wvlad6\",\"data-framer-name\":\"Row -1\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Scifi Logo\",fit:\"fit\",pixelHeight:400,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/9Vkwrg1Nc9xX1nFcAfbfF7K5CE.jpg\",srcSet:\"https://framerusercontent.com/images/9Vkwrg1Nc9xX1nFcAfbfF7K5CE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9Vkwrg1Nc9xX1nFcAfbfF7K5CE.jpg 800w\"},className:\"framer-196vi64\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Chalk Style\",fit:\"fill\",pixelHeight:250,pixelWidth:500,src:\"https://framerusercontent.com/images/XABkbmokSf7Ar7KKvbKFpehWc4.jpg\"},className:\"framer-r8d3x8\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Sticker Design\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/H2Ueu1oydtbN8UndDTMEw0HfLnQ.jpg\",srcSet:\"https://framerusercontent.com/images/H2Ueu1oydtbN8UndDTMEw0HfLnQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/H2Ueu1oydtbN8UndDTMEw0HfLnQ.jpg 800w\"},className:\"framer-de22y6\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Product Mockups In hands\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/LKQWwGlxJ0bshXIuOdVWCno58.jpg\",srcSet:\"https://framerusercontent.com/images/LKQWwGlxJ0bshXIuOdVWCno58.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LKQWwGlxJ0bshXIuOdVWCno58.jpg 800w\"},className:\"framer-1ktvpn4\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Iconic Destination photos for Travel Bloggers\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/vNGslapi5jqWszP2BRwsUmaFTJQ.jpg\",srcSet:\"https://framerusercontent.com/images/vNGslapi5jqWszP2BRwsUmaFTJQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vNGslapi5jqWszP2BRwsUmaFTJQ.jpg 800w\"},className:\"framer-1nu4cod\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Pixar Characters\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/GjcplGlAt6sO7JUvQN3RxAi1Bv0.jpg\",srcSet:\"https://framerusercontent.com/images/GjcplGlAt6sO7JUvQN3RxAi1Bv0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GjcplGlAt6sO7JUvQN3RxAi1Bv0.jpg 800w\"},className:\"framer-1whyoef\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"3D Patterns\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/Sg2A4mUD93OeVvSWd7hqo7tPBjs.jpg\",srcSet:\"https://framerusercontent.com/images/Sg2A4mUD93OeVvSWd7hqo7tPBjs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Sg2A4mUD93OeVvSWd7hqo7tPBjs.jpg 800w\"},className:\"framer-1l7e7ct\",whileHover:animation7})]})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gogwg3-container hidden-1gg9aul\",isModuleExternal:true,nodeId:\"ctK90F2SL\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:.8,id:\"ctK90F2SL\",layoutId:\"ctK90F2SL\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eba0p1\",\"data-framer-name\":\"Row -2\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Post-it Notes\",fit:\"fit\",pixelHeight:400,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/jXJO0MyUZeMUrUFfGyspKPnMc7o.jpg\",srcSet:\"https://framerusercontent.com/images/jXJO0MyUZeMUrUFfGyspKPnMc7o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jXJO0MyUZeMUrUFfGyspKPnMc7o.jpg 800w\"},className:\"framer-53ls5\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Minimalist Book Covers\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/DgBz8vO4WaB8VewxpTfBLdOpkac.jpg\",srcSet:\"https://framerusercontent.com/images/DgBz8vO4WaB8VewxpTfBLdOpkac.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DgBz8vO4WaB8VewxpTfBLdOpkac.jpg 800w\"},className:\"framer-16vy4b5\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Website Templates\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/P8Jb0H6i3kn5waP9VzSCZAz7A.jpg\",srcSet:\"https://framerusercontent.com/images/P8Jb0H6i3kn5waP9VzSCZAz7A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/P8Jb0H6i3kn5waP9VzSCZAz7A.jpg 800w\"},className:\"framer-165waht\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Summer Animals\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/gIs11oFe5eVSWAa4oS8tcesYE.jpg\",srcSet:\"https://framerusercontent.com/images/gIs11oFe5eVSWAa4oS8tcesYE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gIs11oFe5eVSWAa4oS8tcesYE.jpg 800w\"},className:\"framer-1s3781c\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Animal Emotions\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/5kL8qPFzhtcWkvzH5P8axgmAwak.jpg\",srcSet:\"https://framerusercontent.com/images/5kL8qPFzhtcWkvzH5P8axgmAwak.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5kL8qPFzhtcWkvzH5P8axgmAwak.jpg 800w\"},className:\"framer-rwg71c\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Marble Texture Wallpaper\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/JMTwCvhX27l3ppJXHWOjiriSRQ.jpg\",srcSet:\"https://framerusercontent.com/images/JMTwCvhX27l3ppJXHWOjiriSRQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JMTwCvhX27l3ppJXHWOjiriSRQ.jpg 800w\"},className:\"framer-1kvph8y\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Chibi Style\",fit:\"fill\",pixelHeight:375,pixelWidth:750,sizes:\"400px\",src:\"https://framerusercontent.com/images/q5d9iz4qG8RV29DtGKEc1ihCb4.jpg\",srcSet:\"https://framerusercontent.com/images/q5d9iz4qG8RV29DtGKEc1ihCb4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/q5d9iz4qG8RV29DtGKEc1ihCb4.jpg 750w\"},className:\"framer-1ms3edc\",whileHover:animation7})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://app.gravitywrite.com/image-generator\",motionChild:true,nodeId:\"t6PF3eTiu\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1atr3bo framer-1n4pvxv\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kdhifp\",\"data-styles-preset\":\"kaQjBqpWY\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"Images Created with Gravity AI\"})}),className:\"framer-o6l0rt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16pxag6-container hidden-1gg9aul\",isModuleExternal:true,nodeId:\"YSrXZkRqB\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:.8,id:\"YSrXZkRqB\",layoutId:\"YSrXZkRqB\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bd541h\",\"data-framer-name\":\"Row -3\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Vibrant Logos\",fit:\"fit\",pixelHeight:400,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/Yy2f6aFeG4WH4Bj5HzTIRjjW0r8.jpg\",srcSet:\"https://framerusercontent.com/images/Yy2f6aFeG4WH4Bj5HzTIRjjW0r8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Yy2f6aFeG4WH4Bj5HzTIRjjW0r8.jpg 800w\"},className:\"framer-1j6r61m\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Live Illustrations\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/bYP09tSFHTLHFY8fYbb0lqL4mDw.jpg\",srcSet:\"https://framerusercontent.com/images/bYP09tSFHTLHFY8fYbb0lqL4mDw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bYP09tSFHTLHFY8fYbb0lqL4mDw.jpg 800w\"},className:\"framer-mqcrsy\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Cosmic Cartoon Characters\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/sJcXHfWtLWBDHfJg2vPGr1dxsw.jpg\",srcSet:\"https://framerusercontent.com/images/sJcXHfWtLWBDHfJg2vPGr1dxsw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sJcXHfWtLWBDHfJg2vPGr1dxsw.jpg 800w\"},className:\"framer-c9i0x4\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Packaging & Advertising\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/gEwDSXTDgh88eox6y2eyk6TIpMA.jpg\",srcSet:\"https://framerusercontent.com/images/gEwDSXTDgh88eox6y2eyk6TIpMA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gEwDSXTDgh88eox6y2eyk6TIpMA.jpg 800w\"},className:\"framer-1ou7718\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Photos for Food Bloggers\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/TSleyiLFpaNMvkhrMRvsd9TSWyk.jpg\",srcSet:\"https://framerusercontent.com/images/TSleyiLFpaNMvkhrMRvsd9TSWyk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TSleyiLFpaNMvkhrMRvsd9TSWyk.jpg 800w\"},className:\"framer-1128bl\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Abstract Paintings\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/AdSJZ2Nz3HpEVoxH9cI0XC2kAk.jpg\",srcSet:\"https://framerusercontent.com/images/AdSJZ2Nz3HpEVoxH9cI0XC2kAk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AdSJZ2Nz3HpEVoxH9cI0XC2kAk.jpg 800w\"},className:\"framer-1ovirx8\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Poster Design\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/om8bHgrp7XuYwqKmZuOEaDsPME.jpg\",srcSet:\"https://framerusercontent.com/images/om8bHgrp7XuYwqKmZuOEaDsPME.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/om8bHgrp7XuYwqKmZuOEaDsPME.jpg 800w\"},className:\"framer-ufqs1p\",whileHover:animation7})]})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8eb2pg-container hidden-gj2bu5 hidden-1gg9aul\",isModuleExternal:true,nodeId:\"cQ3Ml2eRj\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:.8,id:\"cQ3Ml2eRj\",layoutId:\"cQ3Ml2eRj\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jh0l73\",\"data-framer-name\":\"Row -4\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Card Layouts\",fit:\"fit\",pixelHeight:400,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/wMOQXgZj8KIkLuYAU1cCnqMCDo0.jpg\",srcSet:\"https://framerusercontent.com/images/wMOQXgZj8KIkLuYAU1cCnqMCDo0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wMOQXgZj8KIkLuYAU1cCnqMCDo0.jpg 800w\"},className:\"framer-1ixto5y\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Children Book Covers\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/xdFk5wkV4Sq3GPoSBe1WW8HWv40.jpg\",srcSet:\"https://framerusercontent.com/images/xdFk5wkV4Sq3GPoSBe1WW8HWv40.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xdFk5wkV4Sq3GPoSBe1WW8HWv40.jpg 800w\"},className:\"framer-9f3nc0\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Website Templates\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/eIZYWHRtmPOijYDP8inRncXQe2g.jpg\",srcSet:\"https://framerusercontent.com/images/eIZYWHRtmPOijYDP8inRncXQe2g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/eIZYWHRtmPOijYDP8inRncXQe2g.jpg 800w\"},className:\"framer-1deudoa\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Fairytale Animals\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/CLuBJDNQCAzYofYnPvrdvUfF4E.jpg\",srcSet:\"https://framerusercontent.com/images/CLuBJDNQCAzYofYnPvrdvUfF4E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CLuBJDNQCAzYofYnPvrdvUfF4E.jpg 800w\"},className:\"framer-iovo83\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Floral design\",fit:\"fill\",pixelHeight:250,pixelWidth:500,src:\"https://framerusercontent.com/images/pTHTyEk6avhxhyk3pvEgnDFg0g.jpg\"},className:\"framer-1s2c5fj\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Cartoon Style\",fit:\"fill\",pixelHeight:375,pixelWidth:750,sizes:\"400px\",src:\"https://framerusercontent.com/images/BXzqJyzj44G6pC7TBRwPRuxa1i0.jpg\",srcSet:\"https://framerusercontent.com/images/BXzqJyzj44G6pC7TBRwPRuxa1i0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BXzqJyzj44G6pC7TBRwPRuxa1i0.jpg 750w\"},className:\"framer-q23mke\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Wire Frame Neons\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/tEFoYSXGas8nZryYUJHeIkBi5k.jpg\",srcSet:\"https://framerusercontent.com/images/tEFoYSXGas8nZryYUJHeIkBi5k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tEFoYSXGas8nZryYUJHeIkBi5k.jpg 800w\"},className:\"framer-p20qth\",whileHover:animation7})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pwifkq-container hidden-gj2bu5 hidden-1gg9aul\",isModuleExternal:true,nodeId:\"kXriIT6Cy\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:.8,id:\"kXriIT6Cy\",layoutId:\"kXriIT6Cy\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q6efa2\",\"data-framer-name\":\"Row -6 \",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Summer Animals\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/gIs11oFe5eVSWAa4oS8tcesYE.jpg\",srcSet:\"https://framerusercontent.com/images/gIs11oFe5eVSWAa4oS8tcesYE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gIs11oFe5eVSWAa4oS8tcesYE.jpg 800w\"},className:\"framer-1oantry\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Vibrant Logos\",fit:\"fit\",pixelHeight:400,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/Yy2f6aFeG4WH4Bj5HzTIRjjW0r8.jpg\",srcSet:\"https://framerusercontent.com/images/Yy2f6aFeG4WH4Bj5HzTIRjjW0r8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Yy2f6aFeG4WH4Bj5HzTIRjjW0r8.jpg 800w\"},className:\"framer-1iw7piv\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Minimalist Book Covers\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/DgBz8vO4WaB8VewxpTfBLdOpkac.jpg\",srcSet:\"https://framerusercontent.com/images/DgBz8vO4WaB8VewxpTfBLdOpkac.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DgBz8vO4WaB8VewxpTfBLdOpkac.jpg 800w\"},className:\"framer-1htxgfh\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Live Illustrations\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/bYP09tSFHTLHFY8fYbb0lqL4mDw.jpg\",srcSet:\"https://framerusercontent.com/images/bYP09tSFHTLHFY8fYbb0lqL4mDw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bYP09tSFHTLHFY8fYbb0lqL4mDw.jpg 800w\"},className:\"framer-8qb86j\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Cosmic Cartoon Characters\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/sJcXHfWtLWBDHfJg2vPGr1dxsw.jpg\",srcSet:\"https://framerusercontent.com/images/sJcXHfWtLWBDHfJg2vPGr1dxsw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sJcXHfWtLWBDHfJg2vPGr1dxsw.jpg 800w\"},className:\"framer-1gqyyio\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Marble Texture Wallpaper\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/JMTwCvhX27l3ppJXHWOjiriSRQ.jpg\",srcSet:\"https://framerusercontent.com/images/JMTwCvhX27l3ppJXHWOjiriSRQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JMTwCvhX27l3ppJXHWOjiriSRQ.jpg 800w\"},className:\"framer-1t6bpxv\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Packaging & Advertising\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/gEwDSXTDgh88eox6y2eyk6TIpMA.jpg\",srcSet:\"https://framerusercontent.com/images/gEwDSXTDgh88eox6y2eyk6TIpMA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gEwDSXTDgh88eox6y2eyk6TIpMA.jpg 800w\"},className:\"framer-bjzs06\",whileHover:animation7})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b4qi20-container hidden-12ibrh9 hidden-gj2bu5\",isModuleExternal:true,nodeId:\"TEI0bjYkq\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:.8,id:\"TEI0bjYkq\",layoutId:\"TEI0bjYkq\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13m51nw\",\"data-framer-name\":\"Row-5 Mobile\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Card Layouts\",fit:\"fit\",pixelHeight:400,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/wMOQXgZj8KIkLuYAU1cCnqMCDo0.jpg\",srcSet:\"https://framerusercontent.com/images/wMOQXgZj8KIkLuYAU1cCnqMCDo0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wMOQXgZj8KIkLuYAU1cCnqMCDo0.jpg 800w\"},className:\"framer-pt91h2\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Scifi Logo\",fit:\"fit\",pixelHeight:400,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/9Vkwrg1Nc9xX1nFcAfbfF7K5CE.jpg\",srcSet:\"https://framerusercontent.com/images/9Vkwrg1Nc9xX1nFcAfbfF7K5CE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9Vkwrg1Nc9xX1nFcAfbfF7K5CE.jpg 800w\"},className:\"framer-1gs7hd3\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Children Book Covers\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/xdFk5wkV4Sq3GPoSBe1WW8HWv40.jpg\",srcSet:\"https://framerusercontent.com/images/xdFk5wkV4Sq3GPoSBe1WW8HWv40.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xdFk5wkV4Sq3GPoSBe1WW8HWv40.jpg 800w\"},className:\"framer-1oo6cwu\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Chalk Style\",fit:\"fill\",pixelHeight:250,pixelWidth:500,src:\"https://framerusercontent.com/images/XABkbmokSf7Ar7KKvbKFpehWc4.jpg\"},className:\"framer-19jgy8b\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Website Templates\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/eIZYWHRtmPOijYDP8inRncXQe2g.jpg\",srcSet:\"https://framerusercontent.com/images/eIZYWHRtmPOijYDP8inRncXQe2g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/eIZYWHRtmPOijYDP8inRncXQe2g.jpg 800w\"},className:\"framer-r3ip2b\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Sticker Design\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/H2Ueu1oydtbN8UndDTMEw0HfLnQ.jpg\",srcSet:\"https://framerusercontent.com/images/H2Ueu1oydtbN8UndDTMEw0HfLnQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/H2Ueu1oydtbN8UndDTMEw0HfLnQ.jpg 800w\"},className:\"framer-pr76pq\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Fairytale Animals\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"400px\",src:\"https://framerusercontent.com/images/CLuBJDNQCAzYofYnPvrdvUfF4E.jpg\",srcSet:\"https://framerusercontent.com/images/CLuBJDNQCAzYofYnPvrdvUfF4E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CLuBJDNQCAzYofYnPvrdvUfF4E.jpg 800w\"},className:\"framer-er2w4m\",whileHover:animation7})]})],speed:50,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wnw9wk-container hidden-12ibrh9 hidden-gj2bu5\",isModuleExternal:true,nodeId:\"frv6O6Jfs\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{direction:\"right\",style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:.8,id:\"frv6O6Jfs\",layoutId:\"frv6O6Jfs\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15lhl7g\",\"data-framer-name\":\"Row -1 Mobile\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Scifi Logo\",fit:\"fit\",pixelHeight:400,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"390px\",src:\"https://framerusercontent.com/images/9Vkwrg1Nc9xX1nFcAfbfF7K5CE.jpg\",srcSet:\"https://framerusercontent.com/images/9Vkwrg1Nc9xX1nFcAfbfF7K5CE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9Vkwrg1Nc9xX1nFcAfbfF7K5CE.jpg 800w\"},className:\"framer-5vx5do\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Chalk Style\",fit:\"fill\",pixelHeight:250,pixelWidth:500,src:\"https://framerusercontent.com/images/XABkbmokSf7Ar7KKvbKFpehWc4.jpg\"},className:\"framer-136o0ti\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Sticker Design\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"390px\",src:\"https://framerusercontent.com/images/H2Ueu1oydtbN8UndDTMEw0HfLnQ.jpg\",srcSet:\"https://framerusercontent.com/images/H2Ueu1oydtbN8UndDTMEw0HfLnQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/H2Ueu1oydtbN8UndDTMEw0HfLnQ.jpg 800w\"},className:\"framer-1pfr95q\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Product Mockups In hands\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"390px\",src:\"https://framerusercontent.com/images/LKQWwGlxJ0bshXIuOdVWCno58.jpg\",srcSet:\"https://framerusercontent.com/images/LKQWwGlxJ0bshXIuOdVWCno58.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LKQWwGlxJ0bshXIuOdVWCno58.jpg 800w\"},className:\"framer-77grdn\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Iconic Destination photos for Travel Bloggers\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"390px\",src:\"https://framerusercontent.com/images/vNGslapi5jqWszP2BRwsUmaFTJQ.jpg\",srcSet:\"https://framerusercontent.com/images/vNGslapi5jqWszP2BRwsUmaFTJQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vNGslapi5jqWszP2BRwsUmaFTJQ.jpg 800w\"},className:\"framer-15pmi8r\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Pixar Characters\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"390px\",src:\"https://framerusercontent.com/images/GjcplGlAt6sO7JUvQN3RxAi1Bv0.jpg\",srcSet:\"https://framerusercontent.com/images/GjcplGlAt6sO7JUvQN3RxAi1Bv0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/GjcplGlAt6sO7JUvQN3RxAi1Bv0.jpg 800w\"},className:\"framer-3ug1ny\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"3D Patterns\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"390px\",src:\"https://framerusercontent.com/images/Sg2A4mUD93OeVvSWd7hqo7tPBjs.jpg\",srcSet:\"https://framerusercontent.com/images/Sg2A4mUD93OeVvSWd7hqo7tPBjs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Sg2A4mUD93OeVvSWd7hqo7tPBjs.jpg 800w\"},className:\"framer-r7zsmu\",whileHover:animation7})]})],speed:60,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6watzv-container hidden-12ibrh9 hidden-gj2bu5\",isModuleExternal:true,nodeId:\"nfnJjW0xW\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:.8,id:\"nfnJjW0xW\",layoutId:\"nfnJjW0xW\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yifxiv\",\"data-framer-name\":\"Row -2 Mobile\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Post-it Notes\",fit:\"fit\",pixelHeight:400,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"390px\",src:\"https://framerusercontent.com/images/jXJO0MyUZeMUrUFfGyspKPnMc7o.jpg\",srcSet:\"https://framerusercontent.com/images/jXJO0MyUZeMUrUFfGyspKPnMc7o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jXJO0MyUZeMUrUFfGyspKPnMc7o.jpg 800w\"},className:\"framer-xc1dnb\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Minimalist Book Covers\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"390px\",src:\"https://framerusercontent.com/images/DgBz8vO4WaB8VewxpTfBLdOpkac.jpg\",srcSet:\"https://framerusercontent.com/images/DgBz8vO4WaB8VewxpTfBLdOpkac.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DgBz8vO4WaB8VewxpTfBLdOpkac.jpg 800w\"},className:\"framer-1c6ejpy\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Website Templates\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"390px\",src:\"https://framerusercontent.com/images/P8Jb0H6i3kn5waP9VzSCZAz7A.jpg\",srcSet:\"https://framerusercontent.com/images/P8Jb0H6i3kn5waP9VzSCZAz7A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/P8Jb0H6i3kn5waP9VzSCZAz7A.jpg 800w\"},className:\"framer-1iqmgl4\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Summer Animals\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"390px\",src:\"https://framerusercontent.com/images/gIs11oFe5eVSWAa4oS8tcesYE.jpg\",srcSet:\"https://framerusercontent.com/images/gIs11oFe5eVSWAa4oS8tcesYE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gIs11oFe5eVSWAa4oS8tcesYE.jpg 800w\"},className:\"framer-x1h2t8\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Animal Emotions\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"390px\",src:\"https://framerusercontent.com/images/5kL8qPFzhtcWkvzH5P8axgmAwak.jpg\",srcSet:\"https://framerusercontent.com/images/5kL8qPFzhtcWkvzH5P8axgmAwak.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5kL8qPFzhtcWkvzH5P8axgmAwak.jpg 800w\"},className:\"framer-1yg6whl\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Marble Texture Wallpaper\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"390px\",src:\"https://framerusercontent.com/images/JMTwCvhX27l3ppJXHWOjiriSRQ.jpg\",srcSet:\"https://framerusercontent.com/images/JMTwCvhX27l3ppJXHWOjiriSRQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JMTwCvhX27l3ppJXHWOjiriSRQ.jpg 800w\"},className:\"framer-zkfyta\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Chibi Style\",fit:\"fill\",pixelHeight:375,pixelWidth:750,sizes:\"390px\",src:\"https://framerusercontent.com/images/q5d9iz4qG8RV29DtGKEc1ihCb4.jpg\",srcSet:\"https://framerusercontent.com/images/q5d9iz4qG8RV29DtGKEc1ihCb4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/q5d9iz4qG8RV29DtGKEc1ihCb4.jpg 750w\"},className:\"framer-dv53vt\",whileHover:animation7})]})],speed:50,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ejk6tl-container hidden-12ibrh9 hidden-gj2bu5\",isModuleExternal:true,nodeId:\"aoVVzoY0y\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:.8,id:\"aoVVzoY0y\",layoutId:\"aoVVzoY0y\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10clvsu\",\"data-framer-name\":\"Row -3 Mobile\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Vibrant Logos\",fit:\"fit\",pixelHeight:400,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"390px\",src:\"https://framerusercontent.com/images/Yy2f6aFeG4WH4Bj5HzTIRjjW0r8.jpg\",srcSet:\"https://framerusercontent.com/images/Yy2f6aFeG4WH4Bj5HzTIRjjW0r8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Yy2f6aFeG4WH4Bj5HzTIRjjW0r8.jpg 800w\"},className:\"framer-1ds6uew\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Live Illustrations\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"390px\",src:\"https://framerusercontent.com/images/bYP09tSFHTLHFY8fYbb0lqL4mDw.jpg\",srcSet:\"https://framerusercontent.com/images/bYP09tSFHTLHFY8fYbb0lqL4mDw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bYP09tSFHTLHFY8fYbb0lqL4mDw.jpg 800w\"},className:\"framer-1pl5ve8\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Cosmic Cartoon Characters\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"390px\",src:\"https://framerusercontent.com/images/sJcXHfWtLWBDHfJg2vPGr1dxsw.jpg\",srcSet:\"https://framerusercontent.com/images/sJcXHfWtLWBDHfJg2vPGr1dxsw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sJcXHfWtLWBDHfJg2vPGr1dxsw.jpg 800w\"},className:\"framer-qwv0xa\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Packaging & Advertising\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"390px\",src:\"https://framerusercontent.com/images/gEwDSXTDgh88eox6y2eyk6TIpMA.jpg\",srcSet:\"https://framerusercontent.com/images/gEwDSXTDgh88eox6y2eyk6TIpMA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/gEwDSXTDgh88eox6y2eyk6TIpMA.jpg 800w\"},className:\"framer-19xkmi3\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Photos for Food Bloggers\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"390px\",src:\"https://framerusercontent.com/images/TSleyiLFpaNMvkhrMRvsd9TSWyk.jpg\",srcSet:\"https://framerusercontent.com/images/TSleyiLFpaNMvkhrMRvsd9TSWyk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TSleyiLFpaNMvkhrMRvsd9TSWyk.jpg 800w\"},className:\"framer-bxrqwg\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Abstract Paintings\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"390px\",src:\"https://framerusercontent.com/images/AdSJZ2Nz3HpEVoxH9cI0XC2kAk.jpg\",srcSet:\"https://framerusercontent.com/images/AdSJZ2Nz3HpEVoxH9cI0XC2kAk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AdSJZ2Nz3HpEVoxH9cI0XC2kAk.jpg 800w\"},className:\"framer-19a982u\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Poster Design\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"390px\",src:\"https://framerusercontent.com/images/om8bHgrp7XuYwqKmZuOEaDsPME.jpg\",srcSet:\"https://framerusercontent.com/images/om8bHgrp7XuYwqKmZuOEaDsPME.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/om8bHgrp7XuYwqKmZuOEaDsPME.jpg 800w\"},className:\"framer-1yxno9v\",whileHover:animation7})]})],speed:60,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18gz1jy-container hidden-12ibrh9 hidden-gj2bu5\",isModuleExternal:true,nodeId:\"Q3JTE5of3\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:.8,id:\"Q3JTE5of3\",layoutId:\"Q3JTE5of3\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11rbo7d\",\"data-framer-name\":\"Row -4 Mobile\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Card Layouts\",fit:\"fit\",pixelHeight:400,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"390px\",src:\"https://framerusercontent.com/images/wMOQXgZj8KIkLuYAU1cCnqMCDo0.jpg\",srcSet:\"https://framerusercontent.com/images/wMOQXgZj8KIkLuYAU1cCnqMCDo0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wMOQXgZj8KIkLuYAU1cCnqMCDo0.jpg 800w\"},className:\"framer-1dljq8q\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Children Book Covers\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"390px\",src:\"https://framerusercontent.com/images/xdFk5wkV4Sq3GPoSBe1WW8HWv40.jpg\",srcSet:\"https://framerusercontent.com/images/xdFk5wkV4Sq3GPoSBe1WW8HWv40.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xdFk5wkV4Sq3GPoSBe1WW8HWv40.jpg 800w\"},className:\"framer-1a77y50\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Website Templates\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"390px\",src:\"https://framerusercontent.com/images/eIZYWHRtmPOijYDP8inRncXQe2g.jpg\",srcSet:\"https://framerusercontent.com/images/eIZYWHRtmPOijYDP8inRncXQe2g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/eIZYWHRtmPOijYDP8inRncXQe2g.jpg 800w\"},className:\"framer-en0m6z\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Fairytale Animals\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"390px\",src:\"https://framerusercontent.com/images/CLuBJDNQCAzYofYnPvrdvUfF4E.jpg\",srcSet:\"https://framerusercontent.com/images/CLuBJDNQCAzYofYnPvrdvUfF4E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CLuBJDNQCAzYofYnPvrdvUfF4E.jpg 800w\"},className:\"framer-1bt1kk3\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Cartoon Style\",fit:\"fill\",pixelHeight:375,pixelWidth:750,sizes:\"390px\",src:\"https://framerusercontent.com/images/BXzqJyzj44G6pC7TBRwPRuxa1i0.jpg\",srcSet:\"https://framerusercontent.com/images/BXzqJyzj44G6pC7TBRwPRuxa1i0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BXzqJyzj44G6pC7TBRwPRuxa1i0.jpg 750w\"},className:\"framer-mfx2ch\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Floral design\",fit:\"fill\",pixelHeight:250,pixelWidth:500,src:\"https://framerusercontent.com/images/pTHTyEk6avhxhyk3pvEgnDFg0g.jpg\"},className:\"framer-wgpnhm\",whileHover:animation7}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Wire Frame Neons\",fit:\"fill\",pixelHeight:400,pixelWidth:800,sizes:\"390px\",src:\"https://framerusercontent.com/images/tEFoYSXGas8nZryYUJHeIkBi5k.jpg\",srcSet:\"https://framerusercontent.com/images/tEFoYSXGas8nZryYUJHeIkBi5k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/tEFoYSXGas8nZryYUJHeIkBi5k.jpg 800w\"},className:\"framer-1c8yzn1\",whileHover:animation7})]})],speed:50,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n8x85x\",\"data-framer-name\":\"Creating Templates\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i5osin\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1npm97e-container\",isModuleExternal:true,nodeId:\"OTAZj64ts\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{html:getLocalizedValue(\"v36\",activeLocale)??'<style>\\n  .text {\\n    font-family: Inter;\\n    font-size: 80px;\\n    font-weight: 700;\\n    line-height: 1em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    color: #1E2022;\\n  }\\n\\n  .image {\\n    font-family: Inter;\\n    font-size: 80px;\\n    font-weight: 700;\\n    line-height: 1em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    background-image: url(\\'https://framerusercontent.com/images/FUqHZ5UgE70TJWU2iZXzd1J8jMM.webp\\');\\n    background-repeat: repeat-x;\\n    background-size: cover;\\n    background-position: 0 50%;\\n    color: transparent;\\n    background-clip: text;\\n    -webkit-background-clip: text;\\n    animation: marquee 8s linear infinite;\\n  }\\n\\n  @keyframes marquee {\\n    0% {\\n      background-position: 0 50%;\\n    }\\n    100% {\\n      background-position: 200% 50%;\\n    }\\n  }\\n\\n  @media (max-width: 1199px) {\\n    .text, .image {\\n      font-size: 64px;\\n    }\\n  }\\n\\n  @media (max-width: 560px) {\\n    .text, .image {\\n      font-size: 48px;\\n    }\\n  }\\n</style>\\n\\n<h2 class=\"text\">One-of-a-Kind <span class=\"image\">AI</span> <span class=\"image\">Writer</span></h2>\\n'}},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:getLocalizedValue(\"v35\",activeLocale)??'<style>\\n  .text {\\n    font-family: Inter;\\n    font-size: 80px;\\n    font-weight: 700;\\n    line-height: 1em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    color: #1E2022;\\n  }\\n\\n  .image {\\n    font-family: Inter;\\n    font-size: 80px;\\n    font-weight: 700;\\n    line-height: 1em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    background-image: url(\\'https://framerusercontent.com/images/FUqHZ5UgE70TJWU2iZXzd1J8jMM.webp\\');\\n    background-repeat: repeat-x;\\n    background-size: cover;\\n    background-position: 0 50%;\\n    color: transparent;\\n    background-clip: text;\\n    -webkit-background-clip: text;\\n    animation: marquee 8s linear infinite;\\n  }\\n\\n  @keyframes marquee {\\n    0% {\\n      background-position: 0 50%;\\n    }\\n    100% {\\n      background-position: 200% 50%;\\n    }\\n  }\\n\\n  @media (max-width: 1199px) {\\n    .text, .image {\\n      font-size: 64px;\\n    }\\n  }\\n\\n  @media (max-width: 560px) {\\n    .text, .image {\\n      font-size: 50px;\\n    }\\n  }\\n</style>\\n\\n<h2 class=\"text\">One-of-a-Kind <span class=\"image\">AI</span> <span class=\"image\">Writer</span></h2>\\n',id:\"OTAZj64ts\",layoutId:\"OTAZj64ts\",style:{maxWidth:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v37\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-hwhvam\",\"data-styles-preset\":\"ReSQ8ey8L\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"A comprehensive solution to generate tailored content\"}),\" for Bloggers, Marketers, Business Owners and many more, all in one place.\"]})}),className:\"framer-1clwrxu\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"GravityWrite Features\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11453+60+560),pixelHeight:1654,pixelWidth:375,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 40px, 650px)`,src:\"https://framerusercontent.com/images/ooJvJ521fPjxgKkjoKLeiSpLxt8.svg\",srcSet:\"https://framerusercontent.com/images/ooJvJ521fPjxgKkjoKLeiSpLxt8.svg 375w\"}},DyL_aXI9T:{background:{alt:\"GravityWrite Features\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11095+80+560),pixelHeight:960,pixelWidth:1600,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 80px, 1200px)`,src:\"https://framerusercontent.com/images/g3diDV5R32bPAj68aGCUQzBC3w.svg\",srcSet:\"https://framerusercontent.com/images/g3diDV5R32bPAj68aGCUQzBC3w.svg?scale-down-to=512 512w,https://framerusercontent.com/images/g3diDV5R32bPAj68aGCUQzBC3w.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/g3diDV5R32bPAj68aGCUQzBC3w.svg 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"GravityWrite Features\",fit:\"fill\",pixelHeight:960,pixelWidth:1600,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 80px, 1200px)`,src:\"https://framerusercontent.com/images/g3diDV5R32bPAj68aGCUQzBC3w.svg\",srcSet:\"https://framerusercontent.com/images/g3diDV5R32bPAj68aGCUQzBC3w.svg?scale-down-to=512 512w,https://framerusercontent.com/images/g3diDV5R32bPAj68aGCUQzBC3w.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/g3diDV5R32bPAj68aGCUQzBC3w.svg 1600w\"},className:\"framer-194iyf4\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11453+104.2576),pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Fdb49Gp1ZOxYx7RTd9jiRv10aNI.svg\"}},DyL_aXI9T:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11095+303.516),pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Fdb49Gp1ZOxYx7RTd9jiRv10aNI.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"star praticle\",fit:\"fit\",pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Fdb49Gp1ZOxYx7RTd9jiRv10aNI.svg\"},className:\"framer-1r21xr9\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition6,__perspectiveFX:false,__targetOpacity:1,className:\"framer-119kwb9\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"triangle praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11453+660.8899),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/khpsfnWyxjq7wZXeu9n2IUM7ZeM.svg\"}},DyL_aXI9T:{background:{alt:\"triangle praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11095+1176.8376),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/khpsfnWyxjq7wZXeu9n2IUM7ZeM.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"triangle praticle\",fit:\"fit\",pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/khpsfnWyxjq7wZXeu9n2IUM7ZeM.svg\"},className:\"framer-vfsdcl\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4ktbwz\",\"data-framer-name\":\"Testimonial\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eb8pea-container\",isModuleExternal:true,nodeId:\"mDBs3153w\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{html:getLocalizedValue(\"v39\",activeLocale)??'<style>\\n  .text {\\n    font-family: Inter;\\n    font-size: 78px;\\n    font-weight: 700;\\n    line-height: 1em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    color: #1E2022;\\n  }\\n\\n  .image {\\n    font-family: Inter;\\n    font-size: 78px;\\n    font-weight: 700;\\n    line-height: 1em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    background-image: url(\\'https://framerusercontent.com/images/FUqHZ5UgE70TJWU2iZXzd1J8jMM.webp\\');\\n    background-repeat: repeat-x;\\n    background-size: cover;\\n    background-position: 0 50%;\\n    color: transparent;\\n    background-clip: text;\\n    -webkit-background-clip: text;\\n    animation: marquee 8s linear infinite;\\n  }\\n\\n  @keyframes marquee {\\n    0% {\\n      background-position: 0 50%;\\n    }\\n    100% {\\n      background-position: 200% 50%;\\n    }\\n  }\\n\\n  @media (max-width: 1199px) {\\n    .text, .image {\\n      font-size: 64px;\\n    }\\n  }\\n\\n  @media (max-width: 560px) {\\n    .text, .image {\\n      font-size: 48px;\\n    }\\n  }\\n</style>\\n<h2 class=\"text\">What <span class=\"image\">Our Content</span> <span class=\"image\">Creators </span> Say</h2>\\n'}},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:getLocalizedValue(\"v38\",activeLocale)??'<style>\\n  .text {\\n    font-family: Inter;\\n    font-size: 78px;\\n    font-weight: 700;\\n    line-height: 1em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    color: #1E2022;\\n  }\\n\\n  .image {\\n    font-family: Inter;\\n    font-size: 78px;\\n    font-weight: 700;\\n    line-height: 1em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    background-image: url(\\'https://framerusercontent.com/images/FUqHZ5UgE70TJWU2iZXzd1J8jMM.webp\\');\\n    background-repeat: repeat-x;\\n    background-size: cover;\\n    background-position: 0 50%;\\n    color: transparent;\\n    background-clip: text;\\n    -webkit-background-clip: text;\\n    animation: marquee 8s linear infinite;\\n  }\\n\\n  @keyframes marquee {\\n    0% {\\n      background-position: 0 50%;\\n    }\\n    100% {\\n      background-position: 200% 50%;\\n    }\\n  }\\n\\n  @media (max-width: 1199px) {\\n    .text, .image {\\n      font-size: 64px;\\n    }\\n  }\\n\\n  @media (max-width: 560px) {\\n    .text, .image {\\n      font-size: 50px;\\n    }\\n  }\\n</style>\\n<h2 class=\"text\">What <span class=\"image\">Our Content</span> <span class=\"image\">Creators </span> Say</h2>\\n',id:\"mDBs3153w\",layoutId:\"mDBs3153w\",style:{maxWidth:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1280px) - 40px, 750px)`,y:(componentViewport?.y||0)+0+12124+0+440},DyL_aXI9T:{y:(componentViewport?.y||0)+0+12480+0+460}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:341,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) - 80px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mraril-container\",nodeId:\"BJOyxi0mJ\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{style:{maxWidth:\"100%\",width:\"100%\"},variant:\"tKsAE9Euj\"},DyL_aXI9T:{variant:\"K48sU7aL2\"}},children:/*#__PURE__*/_jsx(Testimonial,{FMqCjRCKB:getLocalizedValue(\"v41\",activeLocale)??\"Chandrashekhar S.\",FrGGJ86oo:getLocalizedValue(\"v47\",activeLocale)??\"Leandro C.\",gw9Z6pgz_:getLocalizedValue(\"v40\",activeLocale)??\"As a content creator, I have to write substantial content for online platforms in the form of blogs and promotional materials. I was in a dire need of a tool that can simplify my writing process and enhance efficiency. When I came across Gravityrite, it was bang on one stop solution for me !\",height:\"100%\",HGUInLnEw:getLocalizedValue(\"v48\",activeLocale)??\"Small-Business\",iAlUdNIbw:getLocalizedValue(\"v48\",activeLocale)??\"Small-Business\",id:\"BJOyxi0mJ\",io7m_Sa15:getLocalizedValue(\"v50\",activeLocale)??\"Dindo L.\",J7CNSwEQJ:getLocalizedValue(\"v49\",activeLocale)??\"GravityWrite's most helpful feature is its ability to simplify and speed up content creation. With its AI-powered tools, you can generate high-quality text for blogs, social media, emails, and more, all while ensuring the content is SEO-optimized and engaging.\",jo19Gu3yF:getLocalizedValue(\"v52\",activeLocale)??\"Curtiss S.\",k6DtGT0Xc:getLocalizedValue(\"v42\",activeLocale)??\"Head of Marketing\",layoutId:\"BJOyxi0mJ\",lUoKVfgkN:getLocalizedValue(\"v43\",activeLocale)??\"GravityWrite has been a game-changer for me. Its intuitive interface and powerful features have transformed my writing experience, making it more efficient and enjoyable. I love how it seamlessly integrates with my workflow, allowing me to effortlessly organize my ideas and bring them to life.\",MOWhopj24:getLocalizedValue(\"v51\",activeLocale)??\"GravityWrite is an essential set of tools for any professional that needs to quickly create original engaging content. I highly recommend GravityWrite to set yourself up for success.\",OsWHBlkaq:getLocalizedValue(\"v46\",activeLocale)??\"The rewriting tool is seriously awesome! Thanks to it, I can now effortlessly craft unique content filled with captivating details. It's been a game-changer for me, providing the much-needed boost to my writing. This tool has proven to be a valuable ally, making the process of creating engaging and distinctive content a breeze.\",style:{width:\"100%\"},ThCUegUrR:getLocalizedValue(\"v53\",activeLocale)??\"Senior Program Manager\",variant:\"RBIgEujRf\",width:\"100%\",wLhJms5ko:getLocalizedValue(\"v44\",activeLocale)??\"Grace R\",xPDyu8fyO:getLocalizedValue(\"v45\",activeLocale)??\"Senior US Recruiter\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12124+245.34),pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PzcDRd94HKYwxfLm1qv03bPGkrw.svg\"}},DyL_aXI9T:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12480+157.0754),pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PzcDRd94HKYwxfLm1qv03bPGkrw.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"star praticle\",fit:\"fit\",pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PzcDRd94HKYwxfLm1qv03bPGkrw.svg\"},className:\"framer-12w24k8\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition6,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qqb71r\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"triangle praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12124+787.5288),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/khpsfnWyxjq7wZXeu9n2IUM7ZeM.svg\"}},DyL_aXI9T:{background:{alt:\"triangle praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12480+822.3639),pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/khpsfnWyxjq7wZXeu9n2IUM7ZeM.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"triangle praticle\",fit:\"fit\",pixelHeight:12,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/khpsfnWyxjq7wZXeu9n2IUM7ZeM.svg\"},className:\"framer-cpee4c\",transformTemplate:transformTemplate2})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f4qs1b\",\"data-framer-name\":\"Pricing\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3vpzhc\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-agub2u\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nkrcu-container\",isModuleExternal:true,nodeId:\"DLQfuKhXr\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{html:getLocalizedValue(\"v55\",activeLocale)??'<style>\\n  .text {\\n    font-family: Inter;\\n    font-size: 80px;\\n    font-weight: 700;\\n    line-height: 1em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    color: #1E2022;\\n  }\\n\\n  .image {\\n    font-family: Inter;\\n    font-size: 80px;\\n    font-weight: 700;\\n    line-height: 1em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    background-image: url(\\'https://i.ibb.co/s95KxzN/image-25.webp\\');\\n    background-repeat: repeat-x;\\n    background-size: cover;\\n    background-position: 0 50%;\\n    color: transparent;\\n    background-clip: text;\\n    -webkit-background-clip: text;\\n    animation: marquee 8s linear infinite;\\n  }\\n\\n  @keyframes marquee {\\n    0% {\\n      background-position: 0 50%;\\n    }\\n    100% {\\n      background-position: 200% 50%;\\n    }\\n  }\\n\\n  @media (max-width: 1199px) {\\n    .text, .image {\\n      font-size: 64px;\\n    }\\n  }\\n\\n  @media (max-width: 560px) {\\n    .text, .image {\\n      font-size: 48px;\\n    }\\n  }\\n</style>\\n\\n<h2 class=\"text\"><span class=\"image\">Pricing</span> Plan</h2>\\n'}},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:getLocalizedValue(\"v54\",activeLocale)??'<style>\\n  .text {\\n    font-family: Inter;\\n    font-size: 80px;\\n    font-weight: 700;\\n    line-height: 1em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    color: #1E2022;\\n  }\\n\\n  .image {\\n    font-family: Inter;\\n    font-size: 80px;\\n    font-weight: 700;\\n    line-height: 1em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    background-image: url(\\'https://framerusercontent.com/images/FUqHZ5UgE70TJWU2iZXzd1J8jMM.webp\\');\\n    background-repeat: repeat-x;\\n    background-size: cover;\\n    background-position: 0 50%;\\n    color: transparent;\\n    background-clip: text;\\n    -webkit-background-clip: text;\\n    animation: marquee 8s linear infinite;\\n  }\\n\\n  @keyframes marquee {\\n    0% {\\n      background-position: 0 50%;\\n    }\\n    100% {\\n      background-position: 200% 50%;\\n    }\\n  }\\n\\n  @media (max-width: 1199px) {\\n    .text, .image {\\n      font-size: 64px;\\n    }\\n  }\\n\\n  @media (max-width: 560px) {\\n    .text, .image {\\n      font-size: 50px;\\n    }\\n  }\\n</style>\\n\\n<h2 class=\"text\"><span class=\"image\">Pricing</span> Plan</h2>\\n',id:\"DLQfuKhXr\",layoutId:\"DLQfuKhXr\",style:{maxWidth:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v56\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-hwhvam\",\"data-styles-preset\":\"ReSQ8ey8L\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a9957493-b6c2-4ddd-877a-ed0e6182078c, rgb(30, 32, 34))\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Affordable plans\"}),\" to make generative AI accessible for everyone. \"]})}),className:\"framer-95u5ir\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h4t1ty\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,y:(componentViewport?.y||0)+0+12965+80+0+0+580+0+0},DyL_aXI9T:{y:(componentViewport?.y||0)+0+13381+100+0+600+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:684,width:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18jcp08-container\",nodeId:\"CwfQhVJZW\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(PricingCardNew,{A_jxWv3Ch:.4,B3EcT0BDl:getLocalizedValue(\"v69\",activeLocale)??\"text\",CJAlmCAG1:false,eKpnZ7AGQ:addImageAlt({pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/LayU3RZXcjPAoBmVhaxRYWDoaU.svg\"},\"\"),emELRr8GW:\"https://app2.gravitywrite.com/register\",eqGiqgFCx:getLocalizedValue(\"v67\",activeLocale)??\"N/A\",gFHH0r43V:getLocalizedValue(\"v64\",activeLocale)??\"50+ Content Templates\",gOSgvocd_:getLocalizedValue(\"v63\",activeLocale)??\"AI Image Creation\",height:\"100%\",hr8pTSCRq:getLocalizedValue(\"v61\",activeLocale)??\"Get 1,000 Words/mo\",I8n8dYX1J:getLocalizedValue(\"v70\",activeLocale)??\"AI Website Builder - 1 generation\",id:\"CwfQhVJZW\",iPqy3ddzp:getLocalizedValue(\"v60\",activeLocale)??\"Single Device Access\",jg69Xx3CX:false,KEbGzlKG8:getLocalizedValue(\"v58\",activeLocale)??\"0\",Kip9vI7Uc:\"rgb(233, 245, 255)\",layoutId:\"CwfQhVJZW\",LBHYR1ycy:getLocalizedValue(\"v58\",activeLocale)??\"0\",lhQjYcVEq:getLocalizedValue(\"v58\",activeLocale)??\"0\",LneDRrYpk:\"b48suxf0R\",MD2NWLJ1M:getLocalizedValue(\"v66\",activeLocale)??\"Limited Languages\",mF7R9Xv3g:\"rgb(0, 0, 0)\",Nz5JYZJ1y:true,O3RMkVXGU:false,OscoTFJ_A:\"rgb(233, 245, 255)\",oyWhgYETU:getLocalizedValue(\"v68\",activeLocale)??\"Try for free\",PQELsPM3y:getLocalizedValue(\"v59\",activeLocale)??\"free\",rglrTrsO_:getLocalizedValue(\"v69\",activeLocale)??\"text\",rWddGw24f:getLocalizedValue(\"v67\",activeLocale)??\"N/A\",s5Qh_mWfB:false,style:{width:\"100%\"},te5bBU7j1:getLocalizedValue(\"v62\",activeLocale)??\"Chat Access\",variant:\"gCZYZp8dd\",width:\"100%\",WtddjEIYD:true,X0kcplQCi:false,X3xLE3WZC:false,x9C1gIDZW:false,xf3WfpN8e:getLocalizedValue(\"v57\",activeLocale)??\"Free\",XugS1EFob:false,XxPIhKWYe:getLocalizedValue(\"v58\",activeLocale)??\"0\",y2xZ1gMAw:getLocalizedValue(\"v65\",activeLocale)??\"Limited Tones\",y5pQFaVCb:getLocalizedValue(\"v67\",activeLocale)??\"N/A\",YnhWAIe8M:true,YW4JSlpUa:\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(116, 33, 252))\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,y:(componentViewport?.y||0)+0+12965+80+0+0+580+0+704},DyL_aXI9T:{y:(componentViewport?.y||0)+0+13381+100+0+600+0+704}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:684,width:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mda99u-container\",nodeId:\"Z_wBZ9491\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(PricingCardNew,{A_jxWv3Ch:1,B3EcT0BDl:getLocalizedValue(\"v90\",activeLocale)??\"200 Stock Images for Blogs\",CJAlmCAG1:true,d1TZAb00c:addImageAlt({pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/AFsUQ4GmDTjbMfyILDqPZnHFDp8.svg\"},\"\"),eKpnZ7AGQ:addImageAlt({pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/AFsUQ4GmDTjbMfyILDqPZnHFDp8.svg\"},\"\"),emELRr8GW:\"https://app2.gravitywrite.com/register\",eqGiqgFCx:getLocalizedValue(\"v82\",activeLocale)??\"Access to All Pro Tools\",gFHH0r43V:getLocalizedValue(\"v79\",activeLocale)??\"100+ Content Templates\",gOSgvocd_:getLocalizedValue(\"v78\",activeLocale)??\"AI Image Creation - 50/mo\",height:\"100%\",hr8pTSCRq:getLocalizedValue(\"v76\",activeLocale)??\"Get 75,000 Words/mo\",I8n8dYX1J:getLocalizedValue(\"v89\",activeLocale)??\"AI Website Builder - 5/mo\",id:\"Z_wBZ9491\",iPqy3ddzp:getLocalizedValue(\"v75\",activeLocale)??\"Single Device Access\",jg69Xx3CX:true,KEbGzlKG8:getLocalizedValue(\"v87\",activeLocale)??\"1,499\",Kip9vI7Uc:\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255))\",layoutId:\"Z_wBZ9491\",LBHYR1ycy:getLocalizedValue(\"v86\",activeLocale)??\"1,233\",lhQjYcVEq:getLocalizedValue(\"v72\",activeLocale)??\"15\",LneDRrYpk:\"rR8gbhtfg\",MD2NWLJ1M:getLocalizedValue(\"v81\",activeLocale)??\"15+ Languages\",mF7R9Xv3g:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",Nz5JYZJ1y:true,O3RMkVXGU:true,OscoTFJ_A:\"var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, rgb(46, 66, 255))\",oyWhgYETU:getLocalizedValue(\"v85\",activeLocale)??\"Get started\",PQELsPM3y:getLocalizedValue(\"v74\",activeLocale)??\"free,\",rglrTrsO_:getLocalizedValue(\"v88\",activeLocale)??\"Standard Quality Images\",rWddGw24f:getLocalizedValue(\"v83\",activeLocale)??\"Access to Latest Models\",s5Qh_mWfB:false,style:{width:\"100%\"},te5bBU7j1:getLocalizedValue(\"v77\",activeLocale)??\"Limited Chat Words\",variant:\"gCZYZp8dd\",width:\"100%\",WtddjEIYD:true,X0kcplQCi:false,X3xLE3WZC:false,x9C1gIDZW:true,xf3WfpN8e:getLocalizedValue(\"v71\",activeLocale)??\"Starter\",XugS1EFob:false,XxPIhKWYe:getLocalizedValue(\"v73\",activeLocale)??\"19\",y2xZ1gMAw:getLocalizedValue(\"v80\",activeLocale)??\"15+ Tones\",y5pQFaVCb:getLocalizedValue(\"v84\",activeLocale)??\"Unlimited Downloads\",YnhWAIe8M:true,YW4JSlpUa:\"rgba(255, 255, 255, 0.5)\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,y:(componentViewport?.y||0)+0+12965+80+0+0+580+0+1408},DyL_aXI9T:{y:(componentViewport?.y||0)+0+13381+100+0+600+0+1408}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:684,width:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s4o3ot-container\",nodeId:\"c_4cHNkqp\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(PricingCardNew,{A_jxWv3Ch:1,B3EcT0BDl:getLocalizedValue(\"v106\",activeLocale)??\"500 Stock Images for Blogs\",CJAlmCAG1:true,d1TZAb00c:addImageAlt({pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/tqXnBefhgFW3VMzETaL7bnBVQkM.svg\"},\"\"),eKpnZ7AGQ:addImageAlt({pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/tqXnBefhgFW3VMzETaL7bnBVQkM.svg\"},\"\"),emELRr8GW:\"https://app2.gravitywrite.com/register\",eqGiqgFCx:getLocalizedValue(\"v84\",activeLocale)??\"Unlimited Downloads\",gFHH0r43V:getLocalizedValue(\"v99\",activeLocale)??\"250+ Content Templates\",gOSgvocd_:getLocalizedValue(\"v98\",activeLocale)??\"AI Image Creation - 100/mo\",height:\"100%\",hr8pTSCRq:getLocalizedValue(\"v96\",activeLocale)??\"Get 250,000 Words/mo\",I8n8dYX1J:getLocalizedValue(\"v105\",activeLocale)??\"AI Website Builder - 30/mo\",id:\"c_4cHNkqp\",iPqy3ddzp:getLocalizedValue(\"v95\",activeLocale)??\"Multiple Device Access\",jg69Xx3CX:true,KEbGzlKG8:getLocalizedValue(\"v103\",activeLocale)??\"6,499\",Kip9vI7Uc:\"rgb(20, 18, 35)\",layoutId:\"c_4cHNkqp\",LBHYR1ycy:getLocalizedValue(\"v102\",activeLocale)??\"5,699\",lhQjYcVEq:getLocalizedValue(\"v92\",activeLocale)??\"69\",LneDRrYpk:\"rR8gbhtfg\",MD2NWLJ1M:getLocalizedValue(\"v101\",activeLocale)??\"30+ Languages\",mF7R9Xv3g:\"var(--token-0cdf47b3-ce1f-4341-98ec-f094608541cb, rgb(246, 244, 255))\",Nz5JYZJ1y:true,O3RMkVXGU:true,OscoTFJ_A:\"rgb(20, 18, 35)\",oyWhgYETU:getLocalizedValue(\"v85\",activeLocale)??\"Get started\",PQELsPM3y:getLocalizedValue(\"v94\",activeLocale)??\"starter,\",rglrTrsO_:getLocalizedValue(\"v104\",activeLocale)??\"HD Quality Images\",rWddGw24f:getLocalizedValue(\"v82\",activeLocale)??\"Access to All Pro Tools\",s5Qh_mWfB:false,style:{width:\"100%\"},te5bBU7j1:getLocalizedValue(\"v97\",activeLocale)??\"Unlimited Chat Words\",variant:\"gCZYZp8dd\",width:\"100%\",WtddjEIYD:true,X0kcplQCi:false,X3xLE3WZC:true,x9C1gIDZW:true,xf3WfpN8e:getLocalizedValue(\"v91\",activeLocale)??\"Pro\",XugS1EFob:true,XxPIhKWYe:getLocalizedValue(\"v93\",activeLocale)??\"79\",y2xZ1gMAw:getLocalizedValue(\"v100\",activeLocale)??\"25+ Tones\",y5pQFaVCb:getLocalizedValue(\"v83\",activeLocale)??\"Access to Latest Models\",YnhWAIe8M:true,YW4JSlpUa:\"rgba(255, 255, 255, 0.7)\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12965+80+0+38.6979),pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PzcDRd94HKYwxfLm1qv03bPGkrw.svg\"}},DyL_aXI9T:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13381+100+37.025),pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PzcDRd94HKYwxfLm1qv03bPGkrw.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"star praticle\",fit:\"fit\",pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PzcDRd94HKYwxfLm1qv03bPGkrw.svg\"},className:\"framer-1pn2dja\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12965+80+0+2892.4863),pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PzcDRd94HKYwxfLm1qv03bPGkrw.svg\"}},DyL_aXI9T:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13381+100+2914.189),pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PzcDRd94HKYwxfLm1qv03bPGkrw.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"star praticle\",fit:\"fit\",pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PzcDRd94HKYwxfLm1qv03bPGkrw.svg\"},className:\"framer-ex7msy\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"triangle praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12965+80+0+2032.4994),pixelHeight:11,pixelWidth:11,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uOmkVtkCAhY2eE8MRiktcCHtNco.svg\"}},DyL_aXI9T:{background:{alt:\"triangle praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+13381+100+2041.9579),pixelHeight:11,pixelWidth:11,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uOmkVtkCAhY2eE8MRiktcCHtNco.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"triangle praticle\",fit:\"fit\",pixelHeight:11,pixelWidth:11,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uOmkVtkCAhY2eE8MRiktcCHtNco.svg\"},className:\"framer-sgqrjd\"})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xk9opu\",\"data-framer-name\":\"FAQ\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1et5ess\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16tswl5-container\",isModuleExternal:true,nodeId:\"o2YBWHS94\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{html:getLocalizedValue(\"v108\",activeLocale)??'<style>\\n  .text {\\n    font-family: Inter;\\n    font-size: 80px;\\n    font-weight: 700;\\n    line-height: 1em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    color: #1E2022;\\n  }\\n\\n  .image {\\n    font-family: Inter;\\n    font-size: 80px;\\n    font-weight: 700;\\n    line-height: 1em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    background-image: url(\\'https://framerusercontent.com/images/FUqHZ5UgE70TJWU2iZXzd1J8jMM.webp\\');\\n    background-repeat: repeat-x;\\n    background-size: cover;\\n    background-position: 0 50%;\\n    color: transparent;\\n    background-clip: text;\\n    -webkit-background-clip: text;\\n    animation: marquee 8s linear infinite;\\n  }\\n\\n  .dot {\\n    font-size: 0px;\\n    line-height: 0px;\\n  }\\n\\n  @keyframes marquee {\\n    0% {\\n      background-position: 0 50%;\\n    }\\n    100% {\\n      background-position: 200% 50%;\\n    }\\n  }\\n\\n  @media (max-width: 1199px) {\\n    .text, .image {\\n      font-size: 64px;\\n    }\\n  }\\n\\n  @media (max-width: 560px) {\\n    .text, .image {\\n      font-size: 48px;\\n    }\\n  }\\n</style>\\n\\n<h2 class=\"text\">Frequently Asked <span class=\"image\">Quest</span><span class=\"image\">ions </span><span class=\"dot\">.</span></h2>\\n'}},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:getLocalizedValue(\"v107\",activeLocale)??'<style>\\n  .text {\\n    font-family: Inter;\\n    font-size: 80px;\\n    font-weight: 700;\\n    line-height: 1em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    color: #1E2022;\\n  }\\n\\n  .image {\\n    font-family: Inter;\\n    font-size: 80px;\\n    font-weight: 700;\\n    line-height: 1em;\\n    letter-spacing: -0.05em;\\n    text-align: center;\\n    background-image: url(\\'https://framerusercontent.com/images/FUqHZ5UgE70TJWU2iZXzd1J8jMM.webp\\');\\n    background-repeat: repeat-x;\\n    background-size: cover;\\n    background-position: 0 50%;\\n    color: transparent;\\n    background-clip: text;\\n    -webkit-background-clip: text;\\n    animation: marquee 8s linear infinite;\\n  }\\n\\n  .dot {\\n    font-size: 0px;\\n    line-height: 0px;\\n  }\\n\\n  @keyframes marquee {\\n    0% {\\n      background-position: 0 50%;\\n    }\\n    100% {\\n      background-position: 200% 50%;\\n    }\\n  }\\n\\n  @media (max-width: 1199px) {\\n    .text, .image {\\n      font-size: 64px;\\n    }\\n  }\\n\\n  @media (max-width: 560px) {\\n    .text, .image {\\n      font-size: 50px;\\n    }\\n  }\\n</style>\\n\\n<h2 class=\"text\">Frequently Asked <span class=\"image\">Quest</span><span class=\"image\">ions </span><span class=\"dot\">.</span></h2>\\n',id:\"o2YBWHS94\",layoutId:\"o2YBWHS94\",style:{maxWidth:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15797+50+0+180.2205),pixelHeight:8,pixelWidth:8,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AQ4gC1htO8jrpT1HMcC9lKvfo.svg\"}},DyL_aXI9T:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+16273+100+182.9949),pixelHeight:8,pixelWidth:8,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AQ4gC1htO8jrpT1HMcC9lKvfo.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition6,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",pixelHeight:8,pixelWidth:8,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/AQ4gC1htO8jrpT1HMcC9lKvfo.svg\"},className:\"framer-1o28col\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{width:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 850px)`,y:(componentViewport?.y||0)+0+15797+50+0+0+425},DyL_aXI9T:{y:(componentViewport?.y||0)+0+16273+100+0+440}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:571,width:`min(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px), 850px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3imipw-container\",nodeId:\"M8w0F8Ton\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{variant:\"NLb1rNJ6A\"}},children:/*#__PURE__*/_jsx(FAQTabs,{aSkClKQPl:getLocalizedValue(\"v124\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Yes, we accept INR payments. Our payment gateway is compatible with various currencies, including INR. During the checkout process, you can choose your preferred currency.\"})}),BU8LZt9zs:getLocalizedValue(\"v130\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"We prioritize data and content security and privacy. Our tool secures all data and content with powerful encryption and access control algorithms. To secure user data, we undertake regular security assessments and follow best practices. Your privacy and data security are of utmost importance to us.\"})}),cD2YOCRlW:getLocalizedValue(\"v138\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"We provide both free and premium plans with various features that match your needs. Check out our pricing plans and find the right fit for you.\"})}),cX8cHEggV:getLocalizedValue(\"v122\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Yes, If you need an invoice, please reach out to our support team at support@gravitywrite.com, and they will be happy to assist you.\"})}),DF5sxsBX4:getLocalizedValue(\"v119\",activeLocale)??\"Can I pay via PayPal?\",e2GhkC1r7:getLocalizedValue(\"v137\",activeLocale)??\"Are there different subscription plans available?\",FlsFe6hJa:getLocalizedValue(\"v129\",activeLocale)??\"How does Gravity Write protect my data? What kind of security measures are in place to protect my data and content?\",height:\"100%\",HURIILlik:getLocalizedValue(\"v131\",activeLocale)??\"Is there a free trial available for Gravity Write?\",iAbyufoSD:getLocalizedValue(\"v116\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"At GravityWrite, we strive to deliver high-quality content tailored to your needs. If the generated content doesn't meet your expectations, we encourage you to provide feedback so we can continuously improve our algorithms. Additionally, our support team is always available to assist you in getting the best results.\"})}),id:\"M8w0F8Ton\",JgGRW6yYN:getLocalizedValue(\"v134\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Yes, we offer customised plans to meet your specific needs. If you require additional word usage or specific features, please contact our sales team to discuss a tailored plan that suits your requirements.\"})}),Jk8idsm_K:getLocalizedValue(\"v113\",activeLocale)??\"Can GravityWrite help improve my SEO efforts?\",Jt6SM8y5H:getLocalizedValue(\"v118\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Yes, VAT/GST may be applicable depending on your location and local tax regulations. The applicable taxes will be calculated and displayed during the checkout process.\"})}),KLCkZoN8Z:getLocalizedValue(\"v110\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"GravityWrite offers a range of customization options, including tone adjustment, and specific keywords or phrases you want to be included. These options allow you to tailor the generated content to suit your unique requirements and audience.\"})}),kVw7VYR_K:getLocalizedValue(\"v136\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Currently, GravityWrite does not support simultaneous logins on multiple devices. We recommend using the tool on one device at a time to ensure the best performance and user experience.\"})}),layoutId:\"M8w0F8Ton\",LBJlzGXHi:getLocalizedValue(\"v109\",activeLocale)??\"What customization options does GravityWrite offer for content generation?\",M0Ewqju2E:getLocalizedValue(\"v125\",activeLocale)??\"How do I cancel my GW subscription or trial?\",n7vJ3Pi7P:getLocalizedValue(\"v111\",activeLocale)??\"Can GravityWrite generate content in multiple languages?\",ncE9AqVdC:getLocalizedValue(\"v126\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"To cancel your Gravity Write subscription or trial, simply log into your account, navigate to the subscription settings, and select the cancellation option. If you encounter any issues, our support team is here to assist you.\"})}),nNbrpVdMR:getLocalizedValue(\"v115\",activeLocale)??\"What if the generated content doesn't meet my expectations?\",oLNNUAiBe:getLocalizedValue(\"v112\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Yes, GravityWrite supports content generation in multiple languages. We are committed to helping you reach a global audience with high-quality content in the language of your choice.\"})}),r8G_9a1W4:getLocalizedValue(\"v123\",activeLocale)??\"Can I pay in INR?\",RhdmkbEfJ:getLocalizedValue(\"v114\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Absolutely. GravityWrite is designed to help improve your SEO efforts by generating keyword-rich content that is optimized for search engines. By using our tool, you can enhance your website's visibility and drive more organic traffic.\"})}),style:{maxWidth:\"100%\",width:\"100%\"},variant:\"NpzwOiNB0\",vqSgHqPXT:getLocalizedValue(\"v135\",activeLocale)??\"Can I log in on multiple devices?\",wa1LMxqK0:getLocalizedValue(\"v127\",activeLocale)??\"Is there a refund policy if I'm not satisfied with the service?\",width:\"100%\",xpQVyNtuk:getLocalizedValue(\"v132\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Yes. Our free plan allows you to write up to 1,000 words monthly and doesn't need any investment. Take advantage of this opportunity to evaluate our AI writing tool and discover whether it can fulfil your needs.\"})}),y4zLXwzmS:getLocalizedValue(\"v117\",activeLocale)??\"Will I be charged VAT/GST?\",YBDYJfSqF:getLocalizedValue(\"v133\",activeLocale)??\"Can I get extra word usage or any customised plan available?\",z0utHTRuH:getLocalizedValue(\"v128\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[\"Yes, we offer a 7-day refund policy. If you are not satisfied with our service within the first 7 days of your purchase, you can request a refund. Subject to the usage limits as mentioned in \",/*#__PURE__*/_jsx(Link,{href:\"https://gravitywrite.com/legal/refund-policy\",motionChild:true,nodeId:\"M8w0F8Ton\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"https://gravitywrite.com/legal/refund-policy\"})})]})}),ZgKN1JmVe:getLocalizedValue(\"v120\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Yes, we accept PayPal as one of our payment methods. Additionally, we support various other payment methods, including credit/debit cards and direct bank transfers.\"})}),zO3cGQRZN:getLocalizedValue(\"v121\",activeLocale)??\"Will I receive an invoice for my subscription?\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"triangle praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15797+50+0+524.9136),pixelHeight:11,pixelWidth:11,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uOmkVtkCAhY2eE8MRiktcCHtNco.svg\"}},DyL_aXI9T:{background:{alt:\"triangle praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+16273+100+567.7064),pixelHeight:11,pixelWidth:11,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uOmkVtkCAhY2eE8MRiktcCHtNco.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"triangle praticle\",fit:\"fit\",pixelHeight:11,pixelWidth:11,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uOmkVtkCAhY2eE8MRiktcCHtNco.svg\"},className:\"framer-eq0t9u\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+15797+50+0+1057.7958),pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PzcDRd94HKYwxfLm1qv03bPGkrw.svg\"}},DyL_aXI9T:{background:{alt:\"star praticle\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+16273+100+766.4787),pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PzcDRd94HKYwxfLm1qv03bPGkrw.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"star praticle\",fit:\"fit\",pixelHeight:14,pixelWidth:14,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PzcDRd94HKYwxfLm1qv03bPGkrw.svg\"},className:\"framer-uti7ao\"})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{y:(componentViewport?.y||0)+0+16923},DyL_aXI9T:{y:(componentViewport?.y||0)+0+17484}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:877,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2t9116-container\",nodeId:\"yPnl9PIMa\",scopeId:\"SwetY06FA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CWHQ2UeDV:{variant:\"yF89qeogh\"},DyL_aXI9T:{variant:\"lp82IEig7\"}},children:/*#__PURE__*/_jsx(Aaab,{height:\"100%\",id:\"yPnl9PIMa\",layoutId:\"yPnl9PIMa\",style:{width:\"100%\"},variant:\"E0CgnQyLs\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-w2pG5.framer-1n4pvxv, .framer-w2pG5 .framer-1n4pvxv { display: block; }\",\".framer-w2pG5.framer-12ibrh9 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-w2pG5 .framer-ebsmb6-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 4; }\",\".framer-w2pG5 .framer-5yg9v6-container, .framer-w2pG5 .framer-1lk21ig-container, .framer-w2pG5 .framer-co3uq2-container, .framer-w2pG5 .framer-cnut7h-container, .framer-w2pG5 .framer-adx4m8-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-w2pG5 .framer-1g1hvll { 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: 180px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-1tdbfa2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-4mluk8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-7k44ct { background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); flex: none; height: 8px; left: calc(7.946428571428593% - 8px / 2); overflow: hidden; position: absolute; top: calc(20.816326530612265% - 8px / 2); width: 8px; z-index: 1; }\",\".framer-w2pG5 .framer-7hkna2 { background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 8px; left: calc(99.64285714285717% - 8px / 2); overflow: hidden; position: absolute; top: calc(0.8163265306122671% - 8px / 2); width: 8px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-w2pG5 .framer-1q4lcmp-container { flex: none; height: auto; position: relative; width: 200px; }\",\".framer-w2pG5 .framer-15s1ucd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; max-width: 865px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-1l9amcn, .framer-w2pG5 .framer-1vma7im, .framer-w2pG5 .framer-i84ua8, .framer-w2pG5 .framer-179yyka, .framer-w2pG5 .framer-u7mxfu, .framer-w2pG5 .framer-1uwrxat, .framer-w2pG5 .framer-xqkl4n, .framer-w2pG5 .framer-o6l0rt, .framer-w2pG5 .framer-1clwrxu, .framer-w2pG5 .framer-95u5ir { --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-w2pG5 .framer-1900zcp, .framer-w2pG5 .framer-k1zoqw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 660px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-w2pG5 .framer-gio0qu { aspect-ratio: 3.102493074792244 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 361px); overflow: hidden; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-1iubi8z { flex: none; height: 14px; left: calc(85.98214285714289% - 14px / 2); overflow: hidden; position: absolute; top: calc(47.72727272727275% - 14px / 2); width: 14px; z-index: 1; }\",\".framer-w2pG5 .framer-9rlm89 { flex: none; height: 14px; left: calc(11.339285714285737% - 14px / 2); overflow: hidden; position: absolute; top: calc(57.5757575757576% - 14px / 2); width: 14px; z-index: 1; }\",\".framer-w2pG5 .framer-l7pgen { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 80px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-13t97em { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-w2pG5 .framer-1ml2lvr-container { flex: none; height: 87px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-y9aitk { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-w2pG5 .framer-g071z7 { flex: none; height: 42px; overflow: hidden; position: relative; width: 101px; }\",\".framer-w2pG5 .framer-stugsn { flex: none; height: 40px; overflow: hidden; position: relative; width: 149px; }\",\".framer-w2pG5 .framer-1qob24c { flex: none; height: 40px; overflow: hidden; position: relative; width: 152px; }\",\".framer-w2pG5 .framer-1giseas, .framer-w2pG5 .framer-1ebqjx2 { flex: none; height: 40px; overflow: hidden; position: relative; width: 137px; }\",\".framer-w2pG5 .framer-onw53a { flex: none; height: 40px; overflow: hidden; position: relative; width: 81px; }\",\".framer-w2pG5 .framer-195e55u { flex: none; height: 40px; overflow: hidden; position: relative; width: 147px; }\",\".framer-w2pG5 .framer-1n7hqxn { flex: none; height: 40px; overflow: hidden; position: relative; width: 165px; }\",\".framer-w2pG5 .framer-5uolnh { flex: none; height: 40px; overflow: hidden; position: relative; width: 205px; }\",\".framer-w2pG5 .framer-19mpbks { flex: none; height: 40px; overflow: hidden; position: relative; width: 118px; }\",\".framer-w2pG5 .framer-1g2kzh1 { aspect-ratio: 6.7 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: hidden; position: relative; width: 201px; }\",\".framer-w2pG5 .framer-ay87x9 { flex: none; height: 40px; overflow: hidden; position: relative; width: 113px; }\",\".framer-w2pG5 .framer-gxrmw7 { align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 90px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-1fqc64v-container { aspect-ratio: 8.450704225352112 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 142px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 100%; z-index: 0; }\",\".framer-w2pG5 .framer-fk97o9 { aspect-ratio: 29.577464788732396 / 1; height: var(--framer-aspect-ratio-supported, 142px); overflow: hidden; position: relative; width: 4200px; }\",\".framer-w2pG5 .framer-9mclpd { aspect-ratio: 1.7230769230769232 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 650px); max-width: 1200px; overflow: hidden; position: relative; width: 1px; }\",\".framer-w2pG5 .framer-ix1mzg-container { flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: auto; }\",\".framer-w2pG5.framer-1qpryr4 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-w2pG5.framer-c2itg2 { align-content: center; align-items: center; bottom: 0px; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; justify-content: space-between; left: 0px; overflow: visible; padding: 20px; pointer-events: none; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-w2pG5 .framer-jdvlqp { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-xezpdb { flex: none; height: 30px; overflow: hidden; position: relative; width: 30px; }\",\".framer-w2pG5 .framer-po9wfz { flex: none; height: 30px; left: calc(50.00000000000002% - 30px / 2); position: absolute; top: calc(50.00000000000002% - 30px / 2); width: 30px; }\",\".framer-w2pG5 .framer-qwoux8 { aspect-ratio: 1.7620137299771168 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 114px); max-height: 100%; max-width: 1500px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-w2pG5 .framer-5omlvg-container { flex: none; height: auto; left: 50%; opacity: 0.8; position: absolute; top: 50%; transform: translate(-50%, -50%); width: auto; }\",\".framer-w2pG5 .framer-1wmkm4q { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; pointer-events: auto; position: absolute; top: calc(49.91243432574433% - 100% / 2); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-w2pG5 .framer-vjaxej-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-w2pG5 .framer-14l6h4a { flex: none; height: 30px; overflow: visible; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-1nh7sm4 { aspect-ratio: 1 / 1; background-color: #963fff; flex: none; height: var(--framer-aspect-ratio-supported, 8px); left: 2%; overflow: hidden; position: absolute; top: 83%; transform: translate(-50%, -50%); width: 8px; z-index: 1; }\",\".framer-w2pG5 .framer-16w4nuh { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); left: 98%; overflow: hidden; position: absolute; top: 11%; transform: translate(-50%, -50%); width: 12px; z-index: 1; }\",\".framer-w2pG5 .framer-l9dq9p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-ice8gf, .framer-w2pG5 .framer-12o69m3, .framer-w2pG5 .framer-1fuqh62 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 660px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-1nsgcns { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-bg0bze { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-c8jc63 { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-w2pG5 .framer-1bp8kyx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-170xc8h { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 450px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-w2pG5 .framer-19nu0ej { aspect-ratio: 1.2771639042357275 / 1; flex: 1 0 0px; gap: 10px; height: var(--framer-aspect-ratio-supported, 509px); max-width: 650px; overflow: visible; position: relative; width: 1px; }\",\".framer-w2pG5 .framer-3wxseg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-1ut1t1p { align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: #e7e8ff; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: 0.6 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: hidden; padding: 30px 25px 30px 25px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-w2pG5 .framer-i9xfm5 { flex: none; height: 14px; left: calc(95.36321483771253% - 14px / 2); overflow: hidden; position: absolute; top: calc(18.23308270676694% - 14px / 2); width: 14px; z-index: 1; }\",\".framer-w2pG5 .framer-lyjad0 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); left: 2%; overflow: hidden; position: absolute; top: 69%; transform: translate(-50%, -50%); width: 16px; z-index: 1; }\",\".framer-w2pG5 .framer-sl2zbq { align-content: center; align-items: center; aspect-ratio: 1.6583333333333334 / 1; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; box-shadow: 0px -4px 14px 0px rgba(30, 32, 34, 0.04); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 360px); justify-content: flex-end; max-width: 670px; overflow: hidden; padding: 0px 0px 25px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-w2pG5 .framer-x23ph7 { align-content: center; align-items: center; background-color: var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, #2e42ff); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; box-shadow: 0px 6px 14px 0px rgba(46, 66, 255, 0.38); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 7px 20px 5px 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-w2pG5 .framer-brc7mm-container { flex: none; height: auto; position: relative; width: 181px; }\",\".framer-w2pG5 .framer-ytcuj7 { background-color: #963fff; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 8px; left: calc(97.06336939721794% - 8px / 2); overflow: hidden; position: absolute; top: calc(96.42857142857146% - 8px / 2); width: 8px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-w2pG5 .framer-10gjfp { align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: 0.4 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-w2pG5 .framer-w7fgl9 { aspect-ratio: 1.0756756756756756 / 1; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; box-shadow: 0px -4px 14px 0px rgba(30, 32, 34, 0.04); flex: none; height: var(--framer-aspect-ratio-supported, 370px); max-width: 405px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-w2pG5 .framer-6kupso { flex: none; height: 14px; left: 407px; overflow: hidden; position: absolute; top: 102px; width: 14px; z-index: 1; }\",\".framer-w2pG5 .framer-1iyimzn { background-color: #963fff; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 8px; left: calc(31.44104803493452% - 8px / 2); overflow: hidden; position: absolute; top: calc(96.80451127819552% - 8px / 2); width: 8px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-w2pG5 .framer-28yuxo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-153m0v3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 950px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-1vrcqvn { flex: none; height: auto; max-width: 595px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-w2pG5 .framer-be781q { aspect-ratio: 2.488888888888889 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 450px); max-width: 1200px; overflow: hidden; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-12dxl2x-container, .framer-w2pG5 .framer-6duqb7-container, .framer-w2pG5 .framer-1jrqwqa-container, .framer-w2pG5 .framer-sa88er-container, .framer-w2pG5 .framer-1mraril-container, .framer-w2pG5 .framer-2t9116-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-pvvwzn { align-content: center; align-items: center; background-color: rgba(240, 248, 255, 0.6); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 95px 40px 30px 40px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-nokuyg, .framer-w2pG5 .framer-3vpzhc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-w2pG5 .framer-1tobc5p { flex: none; height: 16px; left: calc(4.285714285714308% - 16px / 2); overflow: hidden; position: absolute; top: calc(88.09302325581397% - 16px / 2); width: 16px; z-index: 1; }\",\".framer-w2pG5 .framer-fpsh4j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 920px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-2pfbyf { flex: none; height: 101px; overflow: hidden; position: relative; width: 98px; }\",\".framer-w2pG5 .framer-198c5ra { flex: none; height: 14px; left: calc(0.7608695652174136% - 14px / 2); overflow: hidden; position: absolute; top: calc(93.95509499136445% - 14px / 2); width: 14px; z-index: 1; }\",\".framer-w2pG5 .framer-fru26r { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 690px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-w2pG5 .framer-1dz47yv { background-color: #963fff; flex: none; height: 8px; left: calc(99.34782608695654% - 8px / 2); overflow: visible; position: absolute; top: calc(42.487046632124375% - 8px / 2); width: 8px; z-index: 1; }\",\".framer-w2pG5 .framer-1lugwjy { background-color: #963fff; flex: none; height: 8px; left: calc(99.34782608695654% - 8px / 2); overflow: hidden; position: absolute; top: calc(75.17985611510794% - 8px / 2); width: 8px; z-index: 1; }\",\".framer-w2pG5 .framer-1btswxv { aspect-ratio: 1 / 1; background-color: rgba(150, 63, 255, 0.5); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 16px); left: 90%; overflow: hidden; position: absolute; top: 71%; transform: translate(-50%, -50%); width: 16px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-w2pG5 .framer-2joa9x { align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 40px 150px 40px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-1k0p4yg, .framer-w2pG5 .framer-z9ak9l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-15qbwv2, .framer-w2pG5 .framer-1971ft2 { flex: none; height: 81px; overflow: hidden; position: relative; width: 98px; }\",\".framer-w2pG5 .framer-44pq62 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-w2pG5 .framer-s6lys-container { flex: none; height: auto; max-width: 820px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-14zewzw { flex: none; height: 14px; left: calc(96.6964285714286% - 14px / 2); overflow: hidden; position: absolute; top: calc(12.640901771336576% - 14px / 2); width: 14px; z-index: 1; }\",\".framer-w2pG5 .framer-xtg1n1 { border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 8px; left: calc(5.714285714285737% - 8px / 2); overflow: hidden; position: absolute; top: calc(30.917874396135286% - 8px / 2); width: 8px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-w2pG5 .framer-1j1v9ma { flex: none; height: 14px; left: calc(9.821428571428594% - 14px / 2); overflow: hidden; position: absolute; top: calc(84.15079043372519% - 14px / 2); width: 14px; z-index: 1; }\",\".framer-w2pG5 .framer-15ekcdn { background-color: var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, #2e42ff); flex: none; height: 8px; left: calc(87.4107142857143% - 8px / 2); overflow: hidden; position: absolute; top: calc(64.81481481481484% - 8px / 2); width: 8px; z-index: 1; }\",\".framer-w2pG5 .framer-18m0vrq { background-color: #d8e0e7; flex: none; height: 1px; max-width: 1200px; overflow: hidden; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-161omo8-container { flex: none; height: auto; max-width: 740px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-1oyx20q { flex: none; height: 14px; left: calc(11.339285714285737% - 14px / 2); overflow: hidden; position: absolute; top: calc(24.830917874396157% - 14px / 2); width: 14px; z-index: 1; }\",\".framer-w2pG5 .framer-fmao8n { flex: none; height: 14px; left: calc(88.6607142857143% - 14px / 2); overflow: hidden; position: absolute; top: calc(29.661835748792292% - 14px / 2); width: 14px; z-index: 1; }\",\".framer-w2pG5 .framer-1jtl8ui { background-color: #963fff; flex: none; height: 8px; left: calc(11.071428571428592% - 8px / 2); overflow: hidden; position: absolute; top: calc(68.21256038647346% - 8px / 2); width: 8px; z-index: 1; }\",\".framer-w2pG5 .framer-1xdypfn { background-color: #963fff; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 8px; left: calc(88.92857142857144% - 8px / 2); overflow: hidden; position: absolute; top: calc(88.0193236714976% - 8px / 2); width: 8px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-w2pG5 .framer-1wcktpm { align-content: center; align-items: center; background-color: #141223; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-1a06mdd-container, .framer-w2pG5 .framer-1gi3ixu-container, .framer-w2pG5 .framer-gogwg3-container, .framer-w2pG5 .framer-16pxag6-container, .framer-w2pG5 .framer-8eb2pg-container, .framer-w2pG5 .framer-pwifkq-container { flex: none; height: 100vh; position: relative; width: 400px; }\",\".framer-w2pG5 .framer-1fo3kf, .framer-w2pG5 .framer-1wvlad6, .framer-w2pG5 .framer-q6efa2 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-w2pG5 .framer-13gjbb8, .framer-w2pG5 .framer-1ksw7x1, .framer-w2pG5 .framer-17kw5wv, .framer-w2pG5 .framer-k0kmfs, .framer-w2pG5 .framer-1jv504p, .framer-w2pG5 .framer-1323oz9, .framer-w2pG5 .framer-u2sr7w, .framer-w2pG5 .framer-196vi64, .framer-w2pG5 .framer-r8d3x8, .framer-w2pG5 .framer-de22y6, .framer-w2pG5 .framer-1ktvpn4, .framer-w2pG5 .framer-1nu4cod, .framer-w2pG5 .framer-1whyoef, .framer-w2pG5 .framer-1l7e7ct, .framer-w2pG5 .framer-53ls5, .framer-w2pG5 .framer-16vy4b5, .framer-w2pG5 .framer-165waht, .framer-w2pG5 .framer-1s3781c, .framer-w2pG5 .framer-rwg71c, .framer-w2pG5 .framer-1kvph8y, .framer-w2pG5 .framer-1ms3edc, .framer-w2pG5 .framer-1j6r61m, .framer-w2pG5 .framer-mqcrsy, .framer-w2pG5 .framer-c9i0x4, .framer-w2pG5 .framer-1ou7718, .framer-w2pG5 .framer-1128bl, .framer-w2pG5 .framer-1ovirx8, .framer-w2pG5 .framer-ufqs1p, .framer-w2pG5 .framer-1ixto5y, .framer-w2pG5 .framer-9f3nc0, .framer-w2pG5 .framer-1deudoa, .framer-w2pG5 .framer-iovo83, .framer-w2pG5 .framer-1s2c5fj, .framer-w2pG5 .framer-q23mke, .framer-w2pG5 .framer-p20qth, .framer-w2pG5 .framer-1oantry, .framer-w2pG5 .framer-1iw7piv, .framer-w2pG5 .framer-1htxgfh, .framer-w2pG5 .framer-8qb86j, .framer-w2pG5 .framer-1gqyyio, .framer-w2pG5 .framer-1t6bpxv, .framer-w2pG5 .framer-bjzs06, .framer-w2pG5 .framer-pt91h2, .framer-w2pG5 .framer-1gs7hd3, .framer-w2pG5 .framer-1oo6cwu, .framer-w2pG5 .framer-19jgy8b, .framer-w2pG5 .framer-r3ip2b, .framer-w2pG5 .framer-pr76pq, .framer-w2pG5 .framer-er2w4m { aspect-ratio: 2 / 1; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; height: var(--framer-aspect-ratio-supported, 200px); opacity: 0.5; overflow: hidden; position: relative; width: 400px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-w2pG5 .framer-1eba0p1, .framer-w2pG5 .framer-1bd541h, .framer-w2pG5 .framer-jh0l73 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-w2pG5 .framer-1atr3bo { align-content: center; align-items: center; background-color: rgba(20, 18, 35, 0.9); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 18px 50px 0px rgba(255, 255, 255, 0.4); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; max-width: 620px; overflow: hidden; padding: 30px 48px 30px 48px; position: absolute; text-decoration: none; top: 50%; transform: translate(-50%, -50%); width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-w2pG5 .framer-b4qi20-container, .framer-w2pG5 .framer-1wnw9wk-container, .framer-w2pG5 .framer-6watzv-container, .framer-w2pG5 .framer-ejk6tl-container, .framer-w2pG5 .framer-18gz1jy-container { flex: 1 0 0px; height: 100%; max-width: 400px; position: relative; width: 1px; }\",\".framer-w2pG5 .framer-13m51nw, .framer-w2pG5 .framer-15lhl7g, .framer-w2pG5 .framer-1yifxiv, .framer-w2pG5 .framer-10clvsu, .framer-w2pG5 .framer-11rbo7d { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-w2pG5 .framer-5vx5do, .framer-w2pG5 .framer-136o0ti, .framer-w2pG5 .framer-1pfr95q, .framer-w2pG5 .framer-77grdn, .framer-w2pG5 .framer-15pmi8r, .framer-w2pG5 .framer-3ug1ny, .framer-w2pG5 .framer-r7zsmu, .framer-w2pG5 .framer-xc1dnb, .framer-w2pG5 .framer-1c6ejpy, .framer-w2pG5 .framer-1iqmgl4, .framer-w2pG5 .framer-x1h2t8, .framer-w2pG5 .framer-1yg6whl, .framer-w2pG5 .framer-zkfyta, .framer-w2pG5 .framer-dv53vt, .framer-w2pG5 .framer-1ds6uew, .framer-w2pG5 .framer-1pl5ve8, .framer-w2pG5 .framer-qwv0xa, .framer-w2pG5 .framer-19xkmi3, .framer-w2pG5 .framer-bxrqwg, .framer-w2pG5 .framer-19a982u, .framer-w2pG5 .framer-1yxno9v, .framer-w2pG5 .framer-1dljq8q, .framer-w2pG5 .framer-1a77y50, .framer-w2pG5 .framer-en0m6z, .framer-w2pG5 .framer-1bt1kk3, .framer-w2pG5 .framer-mfx2ch, .framer-w2pG5 .framer-wgpnhm, .framer-w2pG5 .framer-1c8yzn1 { aspect-ratio: 2 / 1; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; height: var(--framer-aspect-ratio-supported, 195px); opacity: 0.5; overflow: hidden; position: relative; width: 390px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-w2pG5 .framer-1n8x85x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 130px 40px 70px 40px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-i5osin { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 720px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-1npm97e-container { flex: none; height: auto; max-width: 610px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-194iyf4 { aspect-ratio: 1.6592592592592592 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 675px); max-width: 1200px; overflow: hidden; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-1r21xr9 { flex: none; height: 14px; left: calc(88.6607142857143% - 14px / 2); overflow: hidden; position: absolute; top: calc(15.027829313543622% - 14px / 2); width: 14px; z-index: 1; }\",\".framer-w2pG5 .framer-119kwb9 { background-color: #963fff; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 8px; left: calc(11.071428571428592% - 8px / 2); overflow: hidden; position: absolute; top: calc(28.213457076566144% - 8px / 2); width: 8px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-w2pG5 .framer-vfsdcl { flex: none; height: 14px; left: calc(27.32142857142859% - 14px / 2); overflow: hidden; position: absolute; top: calc(85.4756380510441% - 14px / 2); width: 14px; z-index: 1; }\",\".framer-w2pG5 .framer-4ktbwz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 90px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px 40px 150px 40px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-1eb8pea-container { flex: none; height: auto; max-width: 756px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-12w24k8 { flex: none; height: 14px; left: calc(7.767857142857165% - 14px / 2); overflow: hidden; position: absolute; top: calc(23.957543593631563% - 14px / 2); width: 14px; z-index: 1; }\",\".framer-w2pG5 .framer-1qqb71r { background-color: #963fff; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 8px; left: calc(88.92857142857144% - 8px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 8px / 2); width: 8px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-w2pG5 .framer-cpee4c { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 14px); left: 68%; overflow: hidden; position: absolute; top: 92%; transform: translate(-50%, -50%); width: 14px; z-index: 1; }\",\".framer-w2pG5 .framer-1f4qs1b { align-content: center; align-items: center; background-color: rgba(240, 248, 255, 0.6); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-agub2u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 700px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-1nkrcu-container { flex: none; height: auto; max-width: 900px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-h4t1ty { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-18jcp08-container, .framer-w2pG5 .framer-mda99u-container, .framer-w2pG5 .framer-s4o3ot-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-w2pG5 .framer-1pn2dja { flex: none; height: 14px; left: calc(1.517857142857165% - 14px / 2); overflow: hidden; position: absolute; top: calc(1.6354016354016576% - 14px / 2); width: 14px; z-index: 1; }\",\".framer-w2pG5 .framer-ex7msy { flex: none; height: 14px; left: calc(2.4107142857143082% - 14px / 2); overflow: hidden; position: absolute; top: calc(108.51370851370854% - 14px / 2); width: 14px; z-index: 1; }\",\".framer-w2pG5 .framer-sgqrjd { flex: none; height: 13px; left: calc(101.16071428571432% - 13px / 2); overflow: hidden; position: absolute; top: calc(76.09427609427611% - 13px / 2); width: 13px; z-index: 1; }\",\".framer-w2pG5 .framer-xk9opu { align-content: center; align-items: center; background-color: #f6fbff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 120px 40px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-1et5ess { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-w2pG5 .framer-16tswl5-container { flex: none; height: auto; max-width: 756px; position: relative; width: 68%; }\",\".framer-w2pG5 .framer-1o28col { border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 8px; left: calc(88.92857142857144% - 8px / 2); overflow: hidden; position: absolute; top: calc(11.577964519141013% - 8px / 2); width: 8px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-w2pG5 .framer-3imipw-container { flex: none; height: auto; max-width: 850px; position: relative; width: 100%; }\",\".framer-w2pG5 .framer-eq0t9u { flex: none; height: 13px; left: calc(8.750000000000021% - 13px / 2); overflow: hidden; position: absolute; top: calc(49.19129949804798% - 13px / 2); width: 13px; z-index: 1; }\",\".framer-w2pG5 .framer-uti7ao { flex: none; height: 14px; left: calc(94.64285714285717% - 14px / 2); overflow: hidden; position: absolute; top: calc(78.08142777467934% - 14px / 2); width: 14px; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-w2pG5.framer-12ibrh9 { width: 810px; } .framer-w2pG5 .framer-gio0qu { height: var(--framer-aspect-ratio-supported, 236px); } .framer-w2pG5 .framer-l7pgen { padding: 80px 40px 50px 40px; } .framer-w2pG5 .framer-gxrmw7 { padding: 50px 40px 100px 40px; } .framer-w2pG5 .framer-1fqc64v-container { height: var(--framer-aspect-ratio-supported, 96px); } .framer-w2pG5 .framer-9mclpd { height: var(--framer-aspect-ratio-supported, 424px); } .framer-w2pG5 .framer-1nsgcns { gap: 60px; } .framer-w2pG5 .framer-c8jc63 { flex: 0.8 0 0px; order: 0; } .framer-w2pG5 .framer-19nu0ej { height: var(--framer-aspect-ratio-supported, 318px); order: 1; } .framer-w2pG5 .framer-1ut1t1p { align-content: center; align-items: center; gap: 20px; justify-content: center; } .framer-w2pG5 .framer-sl2zbq { height: var(--framer-aspect-ratio-supported, 219px); } .framer-w2pG5 .framer-10gjfp { gap: 20px; justify-content: center; } .framer-w2pG5 .framer-w7fgl9 { height: var(--framer-aspect-ratio-supported, 225px); max-width: unset; } .framer-w2pG5 .framer-be781q { height: var(--framer-aspect-ratio-supported, 293px); } .framer-w2pG5 .framer-pvvwzn { padding: 80px 40px 30px 40px; } .framer-w2pG5 .framer-nokuyg, .framer-w2pG5 .framer-2pfbyf { order: 0; } .framer-w2pG5 .framer-1tobc5p { left: calc(2.1917808219178303% - 16px / 2); top: calc(94.71422432316288% - 16px / 2); } .framer-w2pG5 .framer-6duqb7-container { order: 1; } .framer-w2pG5 .framer-198c5ra { left: calc(0.9589041095890634% - 14px / 2); order: 2; top: calc(96.56084656084658% - 14px / 2); } .framer-w2pG5 .framer-fru26r { order: 5; } .framer-w2pG5 .framer-1dz47yv { order: 3; } .framer-w2pG5 .framer-1lugwjy { order: 4; } .framer-w2pG5 .framer-1btswxv { left: 98%; top: 49%; } .framer-w2pG5 .framer-2joa9x { gap: 80px; padding: 80px 40px 80px 40px; } .framer-w2pG5 .framer-xtg1n1 { left: calc(3.2876712328767344% - 8px / 2); top: calc(26.489533011272165% - 8px / 2); } .framer-w2pG5 .framer-1j1v9ma { left: calc(2.220446049250313e-14% - 14px / 2); top: calc(92.83413848631243% - 14px / 2); } .framer-w2pG5 .framer-15ekcdn { left: calc(97.12328767123289% - 8px / 2); top: calc(58.85668276972626% - 8px / 2); } .framer-w2pG5 .framer-161omo8-container { max-width: 650px; } .framer-w2pG5 .framer-1oyx20q { left: calc(3.835616438356187% - 14px / 2); top: calc(14.74747474747477% - 14px / 2); } .framer-w2pG5 .framer-1jtl8ui { left: calc(-2.465753424657512% - 8px / 2); top: calc(43.43434343434346% - 8px / 2); } .framer-w2pG5 .framer-1xdypfn { left: calc(101.64383561643837% - 8px / 2); top: calc(101.21212121212125% - 8px / 2); } .framer-w2pG5 .framer-1n8x85x { padding: 80px 40px 70px 40px; } .framer-w2pG5 .framer-194iyf4 { height: var(--framer-aspect-ratio-supported, 440px); } .framer-w2pG5 .framer-1r21xr9 { left: calc(94.79452054794523% - 14px / 2); top: calc(22.419928825622797% - 14px / 2); } .framer-w2pG5 .framer-4ktbwz { gap: 60px; padding: 0px 40px 100px 40px; } .framer-w2pG5 .framer-12w24k8 { left: calc(7.123287671232899% - 14px / 2); top: calc(18.210361067503946% - 14px / 2); } .framer-w2pG5 .framer-1f4qs1b, .framer-w2pG5 .framer-xk9opu { padding: 100px 40px 100px 40px; } .framer-w2pG5 .framer-h4t1ty { align-content: center; align-items: center; flex-direction: column; } .framer-w2pG5 .framer-18jcp08-container, .framer-w2pG5 .framer-mda99u-container, .framer-w2pG5 .framer-s4o3ot-container { flex: none; width: 100%; } .framer-w2pG5 .framer-1et5ess { overflow: visible; } .framer-w2pG5 .framer-1o28col { left: calc(94.10958904109592% - 8px / 2); top: calc(18.49602989257359% - 8px / 2); } .framer-w2pG5 .framer-eq0t9u { left: calc(2.220446049250313e-14% - 13px / 2); top: calc(56.79588977113501% - 13px / 2); } .framer-w2pG5 .framer-uti7ao { left: calc(100.95890410958906% - 14px / 2); top: calc(76.50630546473613% - 14px / 2); }}\",\"@media (max-width: 809px) { .framer-w2pG5.framer-12ibrh9 { width: 390px; } .framer-w2pG5 .framer-ebsmb6-container, .framer-w2pG5 .framer-i5osin { order: 0; } .framer-w2pG5 .framer-5yg9v6-container, .framer-w2pG5 .framer-6duqb7-container { order: 1; } .framer-w2pG5 .framer-1g1hvll { order: 2; padding: 180px 20px 0px 20px; } .framer-w2pG5 .framer-7k44ct { left: calc(1.7142857142857366% - 8px / 2); top: calc(11.258278145695387% - 8px / 2); } .framer-w2pG5 .framer-7hkna2 { height: 6px; left: calc(99.64285714285717% - 6px / 2); top: calc(0.8163265306122671% - 6px / 2); width: 6px; } .framer-w2pG5 .framer-gio0qu { height: var(--framer-aspect-ratio-supported, 113px); } .framer-w2pG5 .framer-1iubi8z { height: 10px; left: calc(98.5714285714286% - 10px / 2); top: calc(39.4800974817222% - 10px / 2); width: 10px; } .framer-w2pG5 .framer-9rlm89 { height: 10px; left: calc(9.142857142857165% - 10px / 2); top: calc(59.3013809910642% - 10px / 2); width: 10px; } .framer-w2pG5 .framer-l7pgen { gap: 25px; order: 3; padding: 60px 20px 20px 20px; } .framer-w2pG5 .framer-gxrmw7 { flex-direction: column; order: 4; padding: 20px 20px 50px 20px; } .framer-w2pG5 .framer-1fqc64v-container { height: var(--framer-aspect-ratio-supported, 47px); } .framer-w2pG5 .framer-9mclpd { flex: none; height: var(--framer-aspect-ratio-supported, 203px); width: 100%; } .framer-w2pG5 .framer-ix1mzg-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 60px); width: 60px; } .framer-w2pG5 .framer-1nh7sm4 { height: var(--framer-aspect-ratio-supported, 6px); left: 1%; top: 90%; width: 6px; } .framer-w2pG5 .framer-16w4nuh { height: var(--framer-aspect-ratio-supported, 10px); left: 96%; top: 9%; width: 10px; } .framer-w2pG5 .framer-l9dq9p { order: 5; padding: 60px 20px 60px 20px; } .framer-w2pG5 .framer-1nsgcns { gap: 50px; } .framer-w2pG5 .framer-bg0bze, .framer-w2pG5 .framer-h4t1ty { flex-direction: column; } .framer-w2pG5 .framer-c8jc63 { align-content: center; align-items: center; flex: none; gap: 20px; max-width: 585px; width: 100%; } .framer-w2pG5 .framer-19nu0ej { flex: none; height: var(--framer-aspect-ratio-supported, 274px); width: 100%; } .framer-w2pG5 .framer-3wxseg { flex-direction: column; max-width: 600px; } .framer-w2pG5 .framer-1ut1t1p { align-content: center; align-items: center; align-self: unset; flex: none; gap: 20px; height: min-content; justify-content: center; padding: 15px; width: 100%; } .framer-w2pG5 .framer-i9xfm5 { height: 10px; left: calc(97.14285714285717% - 10px / 2); top: calc(28.525641025641047% - 10px / 2); width: 10px; } .framer-w2pG5 .framer-lyjad0 { height: var(--framer-aspect-ratio-supported, 10px); width: 10px; } .framer-w2pG5 .framer-sl2zbq { height: var(--framer-aspect-ratio-supported, 193px); } .framer-w2pG5 .framer-x23ph7 { padding: 5px 10px 5px 10px; } .framer-w2pG5 .framer-ytcuj7 { height: 6px; left: calc(97.06336939721794% - 6px / 2); top: calc(96.42857142857146% - 6px / 2); width: 6px; } .framer-w2pG5 .framer-10gjfp { flex: none; gap: 20px; justify-content: center; padding: 15px; width: 100%; } .framer-w2pG5 .framer-w7fgl9 { height: var(--framer-aspect-ratio-supported, 298px); } .framer-w2pG5 .framer-1iyimzn { height: 6px; left: calc(31.44104803493452% - 6px / 2); top: calc(96.80451127819552% - 6px / 2); width: 6px; } .framer-w2pG5 .framer-28yuxo { gap: 30px; } .framer-w2pG5 .framer-be781q { height: var(--framer-aspect-ratio-supported, 141px); } .framer-w2pG5 .framer-pvvwzn { flex-direction: column; order: 6; padding: 60px 20px 30px 20px; } .framer-w2pG5 .framer-nokuyg { flex: none; order: 0; width: 100%; } .framer-w2pG5 .framer-1tobc5p { height: 10px; left: calc(2.000000000000022% - 10px / 2); top: calc(95.8252048380804% - 10px / 2); width: 10px; } .framer-w2pG5 .framer-2pfbyf { aspect-ratio: 0.9702970297029703 / 1; height: var(--framer-aspect-ratio-supported, 72px); order: 0; width: 70px; } .framer-w2pG5 .framer-198c5ra { height: 10px; left: calc(2.220446049250313e-14% - 10px / 2); order: 2; top: calc(96.95817490494298% - 10px / 2); width: 10px; } .framer-w2pG5 .framer-fru26r { order: 5; } .framer-w2pG5 .framer-1dz47yv { order: 3; } .framer-w2pG5 .framer-1lugwjy { height: 6px; left: calc(99.34782608695654% - 6px / 2); order: 4; top: calc(75.17985611510794% - 6px / 2); width: 6px; } .framer-w2pG5 .framer-cnut7h-container, .framer-w2pG5 .framer-16tswl5-container { width: 100%; } .framer-w2pG5 .framer-1btswxv { height: var(--framer-aspect-ratio-supported, 10px); left: 97%; top: 54%; width: 10px; } .framer-w2pG5 .framer-2joa9x { gap: 60px; order: 7; padding: 60px 20px 60px 20px; } .framer-w2pG5 .framer-15qbwv2, .framer-w2pG5 .framer-1971ft2 { aspect-ratio: 1.2098765432098766 / 1; height: var(--framer-aspect-ratio-supported, 58px); width: 70px; } .framer-w2pG5 .framer-12o69m3, .framer-w2pG5 .framer-1fuqh62 { overflow: visible; } .framer-w2pG5 .framer-s6lys-container, .framer-w2pG5 .framer-1mraril-container { max-width: 750px; } .framer-w2pG5 .framer-14zewzw { height: 10px; left: calc(96.6964285714286% - 10px / 2); top: calc(12.640901771336576% - 10px / 2); width: 10px; } .framer-w2pG5 .framer-xtg1n1 { height: 6px; left: calc(2.5714285714285934% - 6px / 2); top: calc(24.522292993630597% - 6px / 2); width: 6px; } .framer-w2pG5 .framer-1j1v9ma { height: 10px; left: calc(2.220446049250313e-14% - 10px / 2); top: calc(92.83413848631243% - 10px / 2); width: 10px; } .framer-w2pG5 .framer-15ekcdn { height: 6px; left: calc(97.12328767123289% - 6px / 2); top: calc(58.85668276972626% - 6px / 2); width: 6px; } .framer-w2pG5 .framer-1oyx20q { height: 10px; left: calc(6.000000000000022% - 10px / 2); top: calc(7.995951417004071% - 10px / 2); width: 10px; } .framer-w2pG5 .framer-fmao8n { height: 10px; left: calc(98.5714285714286% - 10px / 2); top: calc(41.124260355029605% - 10px / 2); width: 10px; } .framer-w2pG5 .framer-1jtl8ui { height: 6px; left: calc(-2.465753424657512% - 6px / 2); top: calc(43.43434343434346% - 6px / 2); width: 6px; } .framer-w2pG5 .framer-1xdypfn { height: 6px; left: calc(101.64383561643837% - 6px / 2); top: calc(101.21212121212125% - 6px / 2); width: 6px; } .framer-w2pG5 .framer-1wcktpm { flex-direction: column; gap: 10px; order: 8; } .framer-w2pG5 .framer-1atr3bo { padding: 25px 20px 25px 20px; width: 90%; } .framer-w2pG5 .framer-b4qi20-container, .framer-w2pG5 .framer-1wnw9wk-container, .framer-w2pG5 .framer-6watzv-container, .framer-w2pG5 .framer-ejk6tl-container, .framer-w2pG5 .framer-18gz1jy-container { height: 1px; max-width: unset; width: 100%; } .framer-w2pG5 .framer-1n8x85x { order: 9; padding: 60px 20px 50px 20px; } .framer-w2pG5 .framer-194iyf4 { aspect-ratio: 0.25252525252525254 / 1; height: var(--framer-aspect-ratio-supported, 1386px); max-width: 650px; order: 1; } .framer-w2pG5 .framer-1r21xr9 { height: 10px; left: calc(95.71428571428574% - 10px / 2); order: 2; top: calc(16.28280664167115% - 10px / 2); width: 10px; } .framer-w2pG5 .framer-119kwb9 { height: 6px; left: calc(11.071428571428592% - 6px / 2); order: 3; top: calc(28.213457076566144% - 6px / 2); width: 6px; } .framer-w2pG5 .framer-vfsdcl { height: 10px; left: calc(28.28571428571431% - 10px / 2); order: 4; top: calc(99.2384299941418% - 10px / 2); width: 10px; } .framer-w2pG5 .framer-4ktbwz { gap: 40px; order: 10; padding: 0px 20px 60px 20px; } .framer-w2pG5 .framer-12w24k8 { height: 10px; left: calc(3.7142857142857366% - 10px / 2); top: calc(29.766949152542395% - 10px / 2); width: 10px; } .framer-w2pG5 .framer-1qqb71r { height: 6px; left: calc(88.92857142857144% - 6px / 2); top: calc(50.00000000000002% - 6px / 2); width: 6px; } .framer-w2pG5 .framer-cpee4c { height: var(--framer-aspect-ratio-supported, 10px); left: 20%; top: 94%; width: 10px; } .framer-w2pG5 .framer-1f4qs1b { flex-direction: column; order: 11; padding: 80px 20px 80px 20px; } .framer-w2pG5 .framer-3vpzhc { flex: none; gap: 30px; width: 100%; } .framer-w2pG5 .framer-18jcp08-container, .framer-w2pG5 .framer-mda99u-container, .framer-w2pG5 .framer-s4o3ot-container { flex: none; width: 100%; } .framer-w2pG5 .framer-1pn2dja { height: 10px; left: calc(1.517857142857165% - 10px / 2); top: calc(1.6354016354016576% - 10px / 2); width: 10px; } .framer-w2pG5 .framer-sgqrjd { height: 10px; left: calc(101.71428571428574% - 10px / 2); top: calc(76.25372108999315% - 10px / 2); width: 10px; } .framer-w2pG5 .framer-xk9opu { flex-direction: column; order: 12; padding: 50px 20px 80px 20px; } .framer-w2pG5 .framer-1et5ess { flex: none; gap: 25px; overflow: visible; width: 100%; } .framer-w2pG5 .framer-1o28col { left: calc(94.10958904109592% - 8px / 2); top: calc(18.49602989257359% - 8px / 2); } .framer-w2pG5 .framer-eq0t9u { height: 10px; left: calc(-3.999999999999978% - 10px / 2); top: calc(53.20417287630404% - 10px / 2); width: 10px; } .framer-w2pG5 .framer-uti7ao { height: 10px; left: calc(97.71428571428574% - 10px / 2); top: calc(106.70640834575262% - 10px / 2); width: 10px; } .framer-w2pG5 .framer-2t9116-container { order: 13; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 14636.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"DyL_aXI9T\":{\"layout\":[\"fixed\",\"auto\"]},\"CWHQ2UeDV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"c18HLMtYl\":{\"pattern\":\":c18HLMtYl\",\"name\":\"count\"}}\n * @framerResponsiveScreen\n */const FramerSwetY06FA=withCSS(Component,css,\"framer-w2pG5\");export default FramerSwetY06FA;FramerSwetY06FA.displayName=\"Home\";FramerSwetY06FA.defaultProps={height:14636.5,width:1200};addFonts(FramerSwetY06FA,[{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:\"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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...AaaaFonts,...DismissFonts,...EmbedFonts,...Home_FormFonts,...TickerFonts,...Ticker1Fonts,...ButtonFonts,...LoaderFonts,...VimeoFonts,...NewCtaFonts,...NewGradientButtonFonts,...NewAnimatorFonts,...SocialWrapFonts,...ImageGenerationFonts,...TestimonialFonts,...PricingCardNewFonts,...FAQTabsFonts,...AaabFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSwetY06FA\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"c18HLMtYl\\\":{\\\"pattern\\\":\\\":c18HLMtYl\\\",\\\"name\\\":\\\"count\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DyL_aXI9T\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CWHQ2UeDV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"14636.5\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "giEACe,SAARA,GAAwB,CAAC,QAAAC,EAAQ,YAAAC,CAAW,EAAE,CAAC,GAAK,CAACC,EAAcC,CAAgB,EAAEC,GAAS,EAAE,EAAO,CAACC,EAAMC,CAAQ,EAAEF,GAAS,CAAC,EACnIG,EAAiBP,EAAQ,QAAQ,MAAM,MAAM,EAAQQ,EAAYP,EAAYM,EAAiB,OACnG,OAAAE,GAAU,IAAI,CACfN,EAAiB,EAAE,EAAEG,EAAS,CAAC,CAAE,EAAE,CAACN,EAAQC,CAAW,CAAC,EAAEQ,GAAU,IAAI,CAAC,GAAGJ,EAAME,EAAiB,OAAO,CAAC,IAAMG,EAAQ,WAAW,IAAI,CAACP,EAAiBQ,GAAMA,EAAKJ,EAAiBF,CAAK,CAAC,EAAEC,EAASK,GAAMA,EAAK,CAAC,EACnN,IAAMC,EAAW,SAAS,eAAe,SAAS,EAAKA,IAAYA,EAAW,UAAUA,EAAW,aAAc,EAAEJ,CAAW,EAAE,MAAM,IAAI,aAAaE,CAAO,CAAE,MAAM,WAAW,IAAI,CAAC,SAAS,eAAe,SAAS,EAAE,SAAS,CAAC,IAAI,EAAE,SAAS,QAAQ,CAAC,CAAE,EAAE,GAAG,CAChQ,EAAE,CAACL,EAAME,EAAiBC,CAAW,CAAC,EAAsBK,EAAK,MAAM,CAAC,MAAMC,GAAe,SAAsBD,EAAK,MAAM,CAAC,GAAG,UAAU,MAAME,GAAY,wBAAwB,CAAC,OAAOb,CAAa,CAAC,CAAC,CAAC,CAAC,CAAE,CACnNc,GAAoBjB,GAAO,CAAC,QAAQ,CAAC,KAAKkB,EAAY,OAAO,MAAM,UAAU,aAAa;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,4CAqB9C,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,eAAe,aAAa,IAAI,IAAI,IAAI,IAAI,IAAI,KAAK,GAAG,CAAC,CAAC,EACnJ,IAAMH,GAAe,CAAC,MAAM,OAAO,OAAO,QAAQ,QAAQ,OAAO,eAAe,SAAS,WAAW,SAAS,SAAS,QAAQ,EAAQC,GAAY,CAAC,MAAM,OAAO,SAAS,QAAQ,WAAW,WAAW,WAAW,SAAS,SAAS,OAAO,WAAW,QAAQ,cAAc,UAAU,WAAW,QAAQ,UAAU,OAAO,OAAO,OAAO,EC5B1SG,GAAU,UAAU,CAAC,iBAAiB,cAAc,oBAAoB,kBAAkB,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,6FAA6F,OAAO,KAAK,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,wiCAAwiC,EAAeC,GAAU,eCDtgM,IAAAC,GAAA,GAAAC,GAAAD,GAAA,wBAAAE,GAAA,YAAAC,KAC6e,IAAMC,GAAW,CAAC,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAA0hB,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,WAAAC,EAAW,MAAAC,EAAM,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAK,MAAM,CAAC,GAAGD,EAAM,UAAUJ,GAAmCI,EAAM,UAAU,WAAWC,EAAKN,GAAkDK,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACF,EAAMG,IAAeH,EAAM,iBAAwBG,EAAS,KAAK,GAAG,EAAEH,EAAM,iBAAwBG,EAAS,KAAK,GAAG,EAAUC,GAA6BC,GAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEtB,GAASM,CAAK,EAAO,CAAC,YAAAiB,GAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,GAAe,UAAAC,GAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAArB,EAAQ,EAAEsB,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,QAAAb,EAAQ,kBAAAc,EAAiB,CAAC,EAAQC,EAAiB1B,GAAuBF,EAAMG,EAAQ,EAAO,CAAC,sBAAA0B,GAAsB,MAAAC,CAAK,EAAEC,GAAyBd,EAAW,EAAQe,EAAYH,GAAsB,SAASI,IAAO,CAAoC,GAAnCV,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAKT,GAAqB,MAAMA,EAAU,GAAGmB,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQC,GAAWC,GAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBlD,EAAKmD,GAAY,CAAC,GAAG7B,GAA4CwB,EAAgB,SAAsB9C,EAAKC,GAAS,CAAC,QAAQY,GAAS,QAAQ,GAAM,SAAsBb,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,OAAO,CAAC,GAAGwB,EAAU,GAAGI,EAAgB,UAAUsB,EAAGC,GAAkB,GAAGL,EAAsB,iBAAiB3B,EAAUO,CAAU,EAAE,mBAAmB,YAAY,iBAAiB,GAAK,aAAa,SAAS,iBAAiBU,EAAiB,SAAS,YAAY,MAAMI,EAAY,IAAI1B,GAA6B4B,GAAK,MAAM,CAAC,WAAW,uEAAuE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,GAAGxB,CAAK,EAAE,SAAsBpB,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,iBAAiBoC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKb,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ8B,GAAI,CAAC,kFAAkF,kFAAkF,+UAA+U,uKAAuK,8WAA8W,EAS1+KC,GAAgBC,GAAQ3C,GAAUyC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,kBAAkBA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,UAAU,CAAC,MAAM,QAAQ,KAAKI,EAAY,YAAY,EAAE,UAAU,CAAC,aAAa,YAAY,gBAAgB,GAAM,MAAM,cAAc,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,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,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,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC1/D,IAAMM,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,qBAAuB,MAAM,6BAA+B,OAAO,yBAA2B,QAAQ,sBAAwB,OAAO,sBAAwB,IAAI,oCAAsC,4EAA0F,yBAA2B,OAAO,gBAAkB,gDAAwD,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECVogB,IAAMC,GAAYC,EAASC,EAAM,EAAQC,GAAoBF,EAASG,EAAc,EAAQC,GAA6DC,GAAqBC,GAAoBH,EAAc,EAAEI,EAAkB,EAAQC,GAAeC,GAAUC,CAAK,EAAQC,GAAYX,EAASY,EAAM,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAmB,CAACC,EAAEC,IAAI,yBAAyBA,CAAC,GAASC,GAAW,CAAC,CAAC,MAAAJ,EAAM,SAAAK,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWT,GAAOM,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,oBAAoB,YAAY,oBAAoB,YAAY,iBAAiB,YAAY,qBAAqB,YAAY,mBAAmB,YAAY,WAAW,YAAY,mBAAmB,YAAY,WAAW,YAAY,mBAAmB,YAAY,WAAW,YAAY,iBAAiB,YAAY,QAAQ,YAAY,kBAAkB,YAAY,kBAAkB,YAAY,cAAc,YAAY,kBAAkB,YAAY,iBAAiB,YAAY,SAAS,YAAY,iBAAiB,YAAY,iBAAiB,YAAY,SAAS,YAAY,eAAe,YAAY,SAAS,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,QAAAC,EAAQ,QAAAC,EAAQ,OAAAC,EAAO,GAAAC,EAAG,QAAAC,EAAQ,UAAAC,EAAU,UAAAC,EAAU,WAAAC,EAAW,mBAAAC,EAAmB,gBAAAC,EAAgB,QAAAC,EAAQ,MAAAC,GAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUX,GAASW,EAAM,WAAW,KAAK,UAAUJ,GAAoBI,EAAM,WAAW,smBAAsmB,UAAUL,GAAYK,EAAM,WAAW,CAAC,IAAI,qEAAqE,EAAE,UAAUP,GAAWO,EAAM,WAAW,yCAAkC,UAAUF,GAASE,EAAM,WAAW,GAAK,UAAUR,GAASQ,EAAM,WAAW,EAAE,QAAQd,GAAwBc,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUN,GAAWM,EAAM,WAAW,0CAAmC,UAAUZ,GAASY,EAAM,WAAW;AAAA;AAAA;AAAA,EAA4J,UAAUH,GAAiBG,EAAM,WAAW,oBAAoB,GAAUC,GAAuB,CAACD,EAAMnC,IAAemC,EAAM,iBAAwBnC,EAAS,KAAK,GAAG,EAAEmC,EAAM,iBAAwBnC,EAAS,KAAK,GAAG,EAAUqC,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA3C,EAAQ,UAAA4C,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,GAAU,GAAGC,CAAS,EAAEjC,GAASa,CAAK,EAAO,CAAC,YAAAqB,EAAY,WAAAC,GAAW,oBAAAC,EAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAA/D,CAAQ,EAAEgE,GAAgB,CAAC,WAAArE,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQoE,EAAiB7B,GAAuBD,EAAMnC,CAAQ,EAAO,CAAC,sBAAAkE,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAaH,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,GAAaL,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,GAAYN,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQU,EAAaP,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQW,GAAYR,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQY,GAAaT,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQa,GAAYV,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQc,GAAYX,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQe,GAAaZ,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQgB,EAAab,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQiB,GAAad,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQkB,GAAaf,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQmB,GAAgBhB,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQoB,EAAgBjB,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQqB,GAAiBlB,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQsB,GAAiBnB,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQuB,GAAiBpB,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAmFwB,EAAkBC,EAAG5F,GAAkB,GAA5F,CAAagD,GAAuBA,EAAS,CAAuE,EAAQ6C,GAAWC,GAAO,IAAI,EAAQC,GAAY,IAAQ,GAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAASnC,CAAW,EAAmCoC,GAAa,IAAQ,EAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAASpC,CAAW,EAAmCqC,GAAaxF,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAASmD,CAAW,EAAS,GAAanD,EAAcyF,GAAa,IAAQ,EAAC,YAAY,YAAY,YAAY,WAAW,EAAE,SAAStC,CAAW,EAAmCuC,GAAsBC,GAAM,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBjF,EAAKkF,GAAY,CAAC,GAAGtD,GAAUkD,GAAgB,SAAsB9E,EAAKC,GAAS,CAAC,QAAQlB,EAAS,QAAQ,GAAM,SAAsBiB,EAAKR,GAAW,CAAC,MAAMN,GAAY,SAAsBc,EAAKE,EAAO,IAAI,CAAC,GAAGoC,EAAU,GAAGI,GAAgB,UAAU6B,EAAGD,EAAkB,iBAAiB3C,EAAUa,EAAU,EAAE,mBAAmB,QAAQ,iBAAiBQ,EAAiB,SAAS,YAAY,IAAI1B,GAAKkD,GAAK,MAAM,CAAC,GAAG9C,CAAK,EAAE,GAAG7C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,EAAE,UAAU,CAAC,mBAAmB,iBAAiB,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,iBAAiB,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,mBAAmB,EAAE,UAAU,CAAC,mBAAmB,iBAAiB,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,oBAAoB,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,mBAAmB,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAE0D,EAAYI,CAAc,EAAE,SAAsBwC,EAAMjF,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,0CAA0C,EAAE,SAAS,CAAchD,EAAKzB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ6G,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,iBAAiB,iBAAiBhC,EAAiB,SAAS,YAAY,GAAGnE,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuG,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,CAAC,EAAEzC,EAAYI,CAAc,CAAC,CAAC,EAAewC,EAAMjF,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAcmC,EAAMjF,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8C,EAAiB,SAAS,YAAY,SAAS,CAAcmC,EAAMjF,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8C,EAAiB,SAAS,YAAY,SAAS,CAAchD,EAAKzB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ6G,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,kBAAkB,EAAE,MAAM,OAAO,GAAG7F,GAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,EAAE,UAAU,gBAAgB,iBAAiBmB,EAAiB,SAAS,YAAY,GAAGnE,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuG,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,kBAAkB,EAAE,MAAM,OAAO,GAAG7F,GAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuD,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE,MAAM,OAAO,GAAG7F,GAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuD,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE,MAAM,OAAO,GAAG7F,GAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuD,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,kBAAkB,EAAE,MAAM,OAAO,GAAG7F,GAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuD,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE,MAAM,OAAO,GAAG7F,GAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuD,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE,MAAM,OAAO,GAAG7F,GAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuD,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,kBAAkB,EAAE,MAAM,OAAO,GAAG7F,GAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuD,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,kBAAkB,EAAE,MAAM,OAAO,GAAG7F,GAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuD,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,kBAAkB,EAAE,MAAM,OAAO,GAAG7F,GAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuD,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE,MAAM,OAAO,GAAG7F,GAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,MAAM,OAAO,GAAG1C,GAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuD,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,kBAAkB,EAAE,MAAM,OAAO,GAAG7F,GAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuD,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE,MAAM,OAAO,GAAG7F,GAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,MAAM,OAAO,GAAG1C,GAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuD,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,kBAAkB,EAAE,MAAM,OAAO,GAAG7F,GAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,MAAM,OAAO,GAAG1C,GAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuD,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,kBAAkB,EAAE,MAAM,OAAO,GAAG7F,GAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,MAAM,OAAO,GAAG1C,GAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuD,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,kBAAkB,EAAE,MAAM,OAAO,GAAG7F,GAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuD,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,kBAAkB,EAAE,MAAM,OAAO,GAAG7F,GAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuD,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE,MAAM,OAAO,GAAG7F,GAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuD,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE,MAAM,OAAO,GAAG7F,GAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuD,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,kBAAkB,EAAE,MAAM,OAAO,GAAG7F,GAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,CAAC,EAAEU,EAAYI,CAAc,CAAC,CAAC,EAAe3C,EAAKqF,EAAS,CAAC,sBAAsB,GAAK,SAAsBrF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKlB,EAAU,kBAAkB,MAAM,mBAAmB,GAAK,GAAGjD,GAAqB,CAAC,UAAU,CAAC,SAAsBmB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+B,GAAY,GAAgBS,EAAMjF,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB,GAAK,iBAAiB8C,EAAiB,SAAS,YAAY,MAAMI,GAAa,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,sEAAsE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,2BAA2B,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,GAAGvE,GAAqB,CAAC,UAAU,CAAC,MAAM0E,EAAW,EAAE,UAAU,CAAC,MAAMS,EAAY,EAAE,UAAU,CAAC,MAAMF,CAAY,EAAE,UAAU,CAAC,MAAMR,EAAY,EAAE,UAAU,CAAC,MAAMI,EAAY,EAAE,UAAU,CAAC,MAAMC,EAAW,EAAE,UAAU,CAAC,MAAMC,EAAW,EAAE,UAAU,CAAC,MAAMJ,CAAY,EAAE,UAAU,CAAC,MAAMC,EAAW,EAAE,UAAU,CAAC,MAAMM,EAAY,EAAE,UAAU,CAAC,MAAMF,EAAY,CAAC,EAAEtB,EAAYI,CAAc,EAAE,SAAS,CAAc3C,EAAKzB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,iBAAiByE,EAAiB,SAAS,YAAY,GAAGnE,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuG,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,mBAAmB,iBAAiB,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,IAAI,IAAI,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,IAAI,IAAI,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,mBAAmB,iBAAiB,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,mBAAmB,iBAAiB,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,mBAAmB,iBAAiB,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,IAAI,IAAI,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,EAAE,IAAI,IAAI,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAEzC,EAAYI,CAAc,CAAC,CAAC,EAAe3C,EAAKqF,EAAS,CAAC,sBAAsB,GAAK,SAAsBrF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,8FAA8F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,sEAAsE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGnE,GAAqB,CAAC,UAAU,CAAC,SAAsBmB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,8FAA8F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,8FAA8F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,8FAA8F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,8FAA8F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAMjF,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,2BAA2B,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAcmC,EAAMjF,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8C,EAAiB,SAAS,YAAY,SAAS,CAAcmC,EAAMjF,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8C,EAAiB,SAAS,YAAY,SAAS,CAAC2B,GAAa,GAAgB3E,EAAKqF,EAAS,CAAC,sBAAsB,GAAK,SAAsBrF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,sCAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKjB,EAAU,kBAAkB,MAAM,mBAAmB,GAAK,GAAGlD,GAAqB,CAAC,UAAU,CAAC,SAAsBmB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,wCAAiC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,qBAAqB,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,wCAAiC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,qBAAqB,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,wCAAiC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,qBAAqB,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,wCAAiC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,qBAAqB,CAAC,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAewC,EAAMjF,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qBAAqB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,gBAAgB,wBAAwB,CAAC,EAAE,SAAS,CAAC2B,GAAa,GAAgB3E,EAAKqF,EAAS,CAAC,sBAAsB,GAAK,SAAsBrF,EAAWG,EAAS,CAAC,SAAsBgF,EAAMjF,EAAO,EAAE,CAAC,MAAM,CAAC,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,CAAC,sJAAmKF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKhB,GAAU,kBAAkB,MAAM,mBAAmB,GAAK,GAAGnD,GAAqB,CAAC,UAAU,CAAC,SAAsBmB,EAAWG,EAAS,CAAC,SAAsBgF,EAAMjF,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,CAAC,sJAAmKF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,mBAAmB,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBgF,EAAMjF,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,CAAC,sJAAmKF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,mBAAmB,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBgF,EAAMjF,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,CAAC,sJAAmKF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,mBAAmB,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBgF,EAAMjF,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,CAAC,sJAAmKF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,mBAAmB,CAAC,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE+B,GAAY,GAAgB1E,EAAKsF,EAA0B,CAAC,SAAsBtF,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8C,EAAiB,SAAS,sBAAsB,SAAsBhD,EAAKlC,GAAO,CAAC,QAAQqE,EAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,YAAY,IAAI,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyC,GAAavC,EAAS,GAAgB8C,EAAMjF,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQZ,EAAS,EAAE,SAAS,CAAcpC,EAAKqF,EAAS,CAAC,sBAAsB,GAAK,SAAsBrF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,0BAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKf,EAAU,kBAAkB,MAAM,mBAAmB,GAAK,GAAGpD,GAAqB,CAAC,UAAU,CAAC,SAAsBmB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,yCAAkC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,qBAAqB,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,yCAAkC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,qBAAqB,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,yCAAkC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,qBAAqB,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,yCAAkC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,qBAAqB,CAAC,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAe3C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qBAAqB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAsBhD,EAAKqF,EAAS,CAAC,sBAAsB,GAAK,SAAsBrF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKd,EAAU,kBAAkB,MAAM,mBAAmB,GAAK,GAAGrD,GAAqB,CAAC,UAAU,CAAC,SAAsBmB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,mBAAmB,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,mBAAmB,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,mBAAmB,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,mBAAmB,CAAC,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgC,GAAa,GAAgBQ,EAAMjF,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8C,EAAiB,SAAS,YAAY,SAAS,CAAchD,EAAKsF,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQN,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,KAAK,GAAG,MAAM,EAAE,GAAGnG,GAAqB,CAAC,UAAU,CAAC,GAAGmG,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,GAAG,GAAG,MAAM,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,KAAK,GAAG,IAAI,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,GAAG,GAAG,MAAM,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,KAAK,GAAG,IAAI,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,KAAK,GAAG,MAAM,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,GAAG,GAAG,MAAM,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,KAAK,GAAG,IAAI,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,GAAG,GAAG,MAAM,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,KAAK,GAAG,MAAM,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,KAAK,GAAG,IAAI,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,KAAK,GAAG,MAAM,CAAC,CAAC,EAAEzC,EAAYI,CAAc,EAAE,SAAsB3C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8C,EAAiB,SAAS,sBAAsB,SAAsBhD,EAAK/B,GAA6D,CAAC,UAAUgG,GAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,iBAAiB,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGpF,GAAqB,CAAC,UAAU,CAAC,UAAUuF,EAAgB,EAAE,UAAU,CAAC,UAAUD,EAAgB,EAAE,UAAU,CAAC,UAAUE,EAAgB,EAAE,UAAU,CAAC,UAAUH,CAAe,CAAC,EAAE3B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkC,GAAa,GAAgBM,EAAMjF,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8C,EAAiB,SAAS,YAAY,kBAAkB3D,GAAmB,SAAS,CAAcW,EAAK3B,GAAe,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ+G,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,KAAK,GAAG,MAAM,mBAAmB,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,iBAAiBhC,EAAiB,SAAS,YAAY,MAAM,CAAC,OAAO,EAAE,EAAE,GAAGnE,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuG,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,GAAG,GAAG,MAAM,mBAAmB,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,GAAG,GAAG,MAAM,mBAAmB,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,KAAK,GAAG,MAAM,mBAAmB,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,GAAG,GAAG,MAAM,mBAAmB,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,GAAG,GAAG,MAAM,mBAAmB,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,KAAK,GAAG,MAAM,mBAAmB,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQI,GAA2BJ,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,KAAK,GAAG,MAAM,mBAAmB,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,CAAC,EAAEzC,EAAYI,CAAc,CAAC,CAAC,EAAe3C,EAAKsF,EAA0B,CAAC,SAAsBtF,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8C,EAAiB,SAAS,sBAAsB,MAAM,CAAC,OAAO,IAAI,QAAQ,GAAG,EAAE,SAAsBhD,EAAKvB,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAK,SAAS,YAAY,KAAK,GAAK,QAAQ,GAAK,OAAO,OAAO,eAAe,EAAE,SAAS,EAAE,MAAM,EAAE,QAAQ,wEAAwE,QAAQ,SAAS,OAAO,0FAA0F,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ8G,GAAI,CAAC,kFAAkF,gFAAgF,qQAAqQ,gRAAgR,kHAAkH,kRAAkR,4SAA4S,gRAAgR,iHAAiH,2MAA2M,mTAAmT,kHAAkH,kRAAkR,gRAAgR,4TAA4T,mRAAmR,oMAAoM,4GAA4G,2QAA2Q,wGAAwG,iUAAiU,mHAAmH,oLAAoL,mvFAAmvF,obAAob,yjBAAyjB,4YAA4Y,uZAAuZ,8sBAA8sB,+sBAA+sB,8wBAA8wB,8wBAA8wB,8wBAA8wB,2KAA2K,8wBAA8wB,sVAAsV,wZAAwZ,4cAA4c,4NAA4N,8cAA8c,muBAAmuB,iEAAiE,oQAAoQ,wGAAwG,yNAAyN,uRAAuR,qOAAqO,o1CAAo1C,2tBAA2tB,8iCAA8iC,2tBAA2tB,8iCAA8iC,2tBAA2tB,8iCAA8iC,swBAAswB,8wBAA8wB,swBAAswB,swBAAswB,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EAS5r4FC,GAAgBC,GAAQrE,GAAUmE,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,kBAAkBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,QAAQ,SAAS,SAAS,WAAW,SAAS,WAAW,SAAS,WAAW,cAAc,iBAAiB,kBAAkB,oBAAoB,kBAAkB,qBAAqB,kBAAkB,oBAAoB,eAAe,iBAAiB,iBAAiB,mBAAmB,iBAAiB,mBAAmB,iBAAiB,kBAAkB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,wBAAwB,mIAAmI,MAAM,cAAc,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,qBAAqB,gBAAgB,GAAM,MAAM,oBAAoB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,yCAAkC,gBAAgB,GAAM,MAAM,aAAa,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa;AAAA;AAAA;AAAA,EAA4J,gBAAgB,GAAK,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,0CAAmC,gBAAgB,GAAM,MAAM,aAAa,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,KAAK,gBAAgB,GAAK,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,smBAAsmB,MAAM,uBAAuB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,MAAM,UAAU,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,UAAU,KAAKA,EAAY,OAAO,CAAC,CAAC,EAAEC,GAASL,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,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,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,uEAAuE,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,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,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,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,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG5H,GAAY,GAAGG,GAAoB,GAAGS,GAAY,GAAGsH,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT76O,IAAMC,GAAoBC,EAASC,EAAc,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,aAAa,YAAY,eAAe,YAAY,gBAAgB,YAAY,iBAAiB,YAAY,IAAI,YAAY,MAAM,YAAY,OAAO,YAAY,QAAQ,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMzB,IAAeyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAEyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAU2B,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,GAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAxC,GAAQ,GAAGyC,CAAS,EAAEtB,GAASI,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAAnD,EAAQ,EAAEoD,GAAgB,CAAC,WAAAzD,GAAW,eAAe,YAAY,IAAIqC,EAAW,QAAA9B,GAAQ,kBAAAL,EAAiB,CAAC,EAAQwD,EAAiB3B,GAAuBD,EAAMzB,EAAQ,EAAO,CAAC,sBAAAsD,EAAsB,MAAAC,EAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAaH,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAYL,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAYN,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQU,EAAaP,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQW,EAAYR,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQY,GAAaT,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQa,GAAaV,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQc,GAAaX,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAuCe,GAAkBC,EAAGvE,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBoB,EAAKoD,GAAY,CAAC,GAAG1B,GAAUT,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQjB,GAAS,QAAQ,GAAM,SAAsBgB,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBa,EAAKqD,EAAM,CAAC,GAAG1B,EAAU,GAAGI,GAAgB,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuB,EAA0BhC,GAAmB,GAAG,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU6B,EAAGD,GAAkB,gBAAgBzB,EAAUI,CAAU,EAAE,mBAAmB,SAAS,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAG1C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,KAAK,EAAE,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAE8C,EAAYI,CAAc,EAAE,SAAsBuB,EAAMrD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAckB,EAAMrD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,yCAAyC,EAAE,SAAS,CAAckB,EAAMrD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB,GAAK,iBAAiBmC,EAAiB,SAAS,YAAY,MAAMI,EAAa,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,yCAAyC,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,yBAAyB,UAAU,sCAAsC,EAAE,UAAU,CAAC,gBAAgB,yBAAyB,UAAU,sCAAsC,EAAE,UAAU,CAAC,gBAAgB,yBAAyB,UAAU,sCAAsC,EAAE,UAAU,CAAC,gBAAgB,yBAAyB,UAAU,sCAAsC,EAAE,UAAU,CAAC,gBAAgB,yBAAyB,UAAU,sCAAsC,EAAE,UAAU,CAAC,gBAAgB,yBAAyB,UAAU,sCAAsC,CAAC,EAAE,GAAG3D,GAAqB,CAAC,UAAU,CAAC,MAAM6D,CAAW,EAAE,UAAU,CAAC,MAAMA,CAAW,EAAE,UAAU,CAAC,MAAMA,CAAW,EAAE,UAAU,CAAC,MAAMA,CAAW,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAS,CAAchC,EAAKqD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQC,GAA2BhC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,kBAAkB,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,iBAAiBe,EAAiB,SAAS,YAAY,GAAGvD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQwE,GAA2BhC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,kBAAkB,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQgC,GAA2BhC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,kBAAkB,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQgC,GAA2BhC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,kBAAkB,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAEM,EAAYI,CAAc,CAAC,CAAC,EAAehC,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,oBAAoB,EAAE,UAAU,CAAC,qBAAqB,oBAAoB,EAAE,UAAU,CAAC,qBAAqB,oBAAoB,EAAE,UAAU,CAAC,qBAAqB,oBAAoB,EAAE,UAAU,CAAC,qBAAqB,oBAAoB,EAAE,UAAU,CAAC,qBAAqB,oBAAoB,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGvD,GAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAMrD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB,GAAK,iBAAiBmC,EAAiB,SAAS,YAAY,MAAMO,EAAY,MAAM,CAAC,gBAAgB,yBAAyB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,sCAAsC,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,qBAAqB,UAAU,yCAAyC,EAAE,UAAU,CAAC,gBAAgB,qBAAqB,UAAU,yCAAyC,CAAC,EAAE,GAAG9D,GAAqB,CAAC,UAAU,CAAC,MAAM+D,CAAY,EAAE,UAAU,CAAC,MAAMA,CAAY,EAAE,UAAU,CAAC,MAAMA,CAAY,EAAE,UAAU,CAAC,MAAMA,CAAY,CAAC,EAAEjB,EAAYI,CAAc,EAAE,SAAS,CAAchC,EAAKqD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQC,GAA2BhC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,kBAAkB,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,iBAAiBe,EAAiB,SAAS,YAAY,GAAGvD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQwE,GAA2BhC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,kBAAkB,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,mEAAmE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQgC,GAA2BhC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,kBAAkB,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,mEAAmE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQgC,GAA2BhC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,kBAAkB,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,CAAC,EAAEM,EAAYI,CAAc,CAAC,CAAC,EAAehC,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,oEAAoE,EAAE,UAAU,CAAC,qBAAqB,oEAAoE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGvD,GAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAMrD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB,GAAK,iBAAiBmC,EAAiB,SAAS,YAAY,MAAMS,EAAY,MAAM,CAAC,gBAAgB,yBAAyB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,sCAAsC,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,qBAAqB,UAAU,yCAAyC,EAAE,UAAU,CAAC,gBAAgB,qBAAqB,UAAU,yCAAyC,CAAC,EAAE,GAAGhE,GAAqB,CAAC,UAAU,CAAC,MAAMiE,EAAY,EAAE,UAAU,CAAC,MAAMA,EAAY,EAAE,UAAU,CAAC,MAAMA,EAAY,EAAE,UAAU,CAAC,MAAMA,EAAY,CAAC,EAAEnB,EAAYI,CAAc,EAAE,SAAS,CAAchC,EAAKqD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQC,GAA2BhC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,kBAAkB,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,iBAAiBe,EAAiB,SAAS,YAAY,GAAGvD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQwE,GAA2BhC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,kBAAkB,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQgC,GAA2BhC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,kBAAkB,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,CAAC,EAAEM,EAAYI,CAAc,CAAC,CAAC,EAAehC,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,oEAAoE,EAAE,UAAU,CAAC,qBAAqB,oEAAoE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGvD,GAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAMrD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB,GAAK,iBAAiBmC,EAAiB,SAAS,YAAY,MAAMW,GAAa,MAAM,CAAC,gBAAgB,yBAAyB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,sCAAsC,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,qBAAqB,UAAU,yCAAyC,EAAE,UAAU,CAAC,gBAAgB,qBAAqB,UAAU,yCAAyC,CAAC,EAAE,GAAGlE,GAAqB,CAAC,UAAU,CAAC,MAAMmE,EAAY,EAAE,UAAU,CAAC,MAAMA,EAAY,EAAE,UAAU,CAAC,MAAMA,EAAY,EAAE,UAAU,CAAC,MAAMA,EAAY,CAAC,EAAErB,EAAYI,CAAc,EAAE,SAAS,CAAchC,EAAKqD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQC,GAA2BhC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,kBAAkB,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,iBAAiBe,EAAiB,SAAS,YAAY,GAAGvD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQwE,GAA2BhC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,kBAAkB,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQgC,GAA2BhC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,kBAAkB,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAEM,EAAYI,CAAc,CAAC,CAAC,EAAehC,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,oEAAoE,EAAE,UAAU,CAAC,qBAAqB,oEAAoE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGvD,GAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKyD,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQnC,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,MAAM,GAAGxC,GAAqB,CAAC,UAAU,CAAC,MAAM,QAAQwC,GAAmB,OAAO,OAAO,UAAU,EAAE,MAAS,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,KAAK,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,UAAU,EAAE,MAAS,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,UAAU,EAAE,MAAS,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,UAAU,EAAE,MAAS,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,KAAK,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsBhC,EAAK0D,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBrB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKtB,GAAe,CAAC,UAAU,KAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,0/CAAi0C,UAAU,yCAAkC,UAAU,GAAK,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,EAAE,QAAQ,YAAY,UAAU,0CAAmC,MAAM,OAAO,UAAU;AAAA;AAAA;AAAA;AAAA;AAAA,EAAuE,UAAU,qBAAqB,GAAGI,GAAqB,CAAC,UAAU,CAAC,UAAU,65DAAm5D,UAAUM,GAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,UAAU,6CAAsC,UAAU,GAAM,UAAU,EAAE,QAAQ,YAAY,UAAU,uCAAgC,UAAU;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAoV,UAAU,aAAa,EAAE,UAAU,CAAC,UAAU;AAAA;AAAA;AAAA;AAAA;AAAA,EAA8D,UAAU,y1EAAkuE,UAAUA,GAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,UAAU,iCAAqB,QAAQ,YAAY,UAAU,4CAAqC,UAAU,yBAAyB,UAAU,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAU;AAAA;AAAA;AAAA;AAAA;AAAA,EAA8D,UAAU,y1EAAkuE,UAAUA,GAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,UAAU,iCAAqB,QAAQ,YAAY,UAAU,4CAAqC,UAAU,yBAAyB,UAAU,WAAW,EAAE,UAAU,CAAC,UAAU,mzGAAwvG,UAAUA,GAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,UAAU,+CAAwC,UAAU,EAAE,QAAQ,YAAY,UAAU;AAAA;AAAA;AAAA;AAAA;AAAA,EAAiD,UAAU,uBAAuB,EAAE,UAAU,CAAC,UAAU,mzGAAwvG,UAAUA,GAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,UAAU,+CAAwC,UAAU,EAAE,QAAQ,YAAY,UAAU;AAAA;AAAA;AAAA;AAAA;AAAA,EAAiD,UAAU,uBAAuB,EAAE,UAAU,CAAC,UAAU,65DAAm5D,UAAUA,GAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,UAAU,6CAAsC,UAAU,GAAM,UAAU,EAAE,QAAQ,YAAY,UAAU,uCAAgC,UAAU;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAoV,UAAU,aAAa,CAAC,EAAEwC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ2B,GAAI,CAAC,kFAAkF,gFAAgF,qQAAqQ,iRAAiR,4VAA4V,iZAAiZ,wQAAwQ,2MAA2M,wGAAwG,y4CAAy4C,oNAAoN,0NAA0N,6GAA6G,2xBAA2xB,szBAAszB,67DAA67D,+MAA+M,q/DAAq/D,q/DAAq/D,o/DAAo/D,EAQlk/DC,GAAgBC,GAAQlD,GAAUgD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,cAAcA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,SAAS,UAAU,MAAM,QAAQ,gBAAgB,iBAAiB,aAAa,cAAc,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,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,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,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGpF,EAAmB,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRjwC,IAAM0F,GAAWC,EAASC,EAAK,EAAQC,GAAoBF,EAASG,EAAc,EAAQC,GAA6DC,GAAqBC,GAAoBH,EAAc,EAAEI,EAAkB,EAAQC,GAAeC,GAAUC,CAAK,EAAQC,GAAYX,EAASY,EAAM,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAEC,IAAI,yBAAyBA,CAAC,GAASC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,eAAe,YAAY,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMzB,IAAeyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAEyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAU2B,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAjC,EAAQ,GAAGkC,CAAS,EAAEf,GAASI,CAAK,EAAO,CAAC,YAAAY,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAA5C,CAAQ,EAAE6C,GAAgB,CAAC,WAAAlD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQiD,EAAiBpB,GAAuBD,EAAMzB,CAAQ,EAAO,CAAC,sBAAA+C,GAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAaH,GAAsB,SAASI,KAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQQ,EAAaL,GAAsB,SAASI,KAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQS,EAAYN,GAAsB,SAASI,KAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQU,GAAgBP,GAAsB,SAASI,KAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQW,EAAgBR,GAAsB,SAASI,KAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAuCY,EAAkBC,EAAG7D,GAAkB,GAAhD,CAAC,CAAuE,EAAQ8D,EAAWC,GAAO,IAAI,EAAQC,EAAY,IAAQ,EAAC,YAAY,WAAW,EAAE,SAASvB,CAAW,EAAmCwB,GAAa,IAAQ,GAAC,YAAY,WAAW,EAAE,SAASxB,CAAW,EAAmCyB,GAAa,IAAQzB,IAAc,YAA6C0B,GAAsBC,GAAM,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBlD,EAAKmD,GAAY,CAAC,GAAGhC,GAAU4B,GAAgB,SAAsB/C,EAAKC,GAAS,CAAC,QAAQjB,EAAS,QAAQ,GAAM,SAAsBgB,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBa,EAAKxB,EAAM,CAAC,GAAG4C,EAAU,GAAGI,EAAgB,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ4B,EAA0BH,GAAmB,GAAG,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAUR,EAAGD,EAAkB,iBAAiBtB,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAAK6B,EAAK,MAAM,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,GAAGzB,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,CAAC,EAAE,GAAGnC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,SAAS,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQsE,EAA0BH,GAAmB,GAAG,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAMA,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,CAAC,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAE5B,EAAYI,CAAc,EAAE,SAAsB4B,EAAMnD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,0CAA0C,EAAE,SAAS,CAAc9B,EAAKxB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ4E,GAA2BH,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,OAAO,GAAG,OAAO,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,OAAOA,GAAmB,OAAO,OAAO,WAAW,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,iBAAiBnB,EAAiB,SAAS,YAAY,GAAGhD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,OAAOmE,GAAmB,OAAO,OAAO,WAAW,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQG,GAA2BH,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,OAAO,GAAG,OAAO,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,OAAOA,GAAmB,OAAO,OAAO,WAAW,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,CAAC,EAAE5B,EAAYI,CAAc,CAAC,CAAC,EAAe4B,EAAMnD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAcuB,EAAMnD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB4B,EAAiB,SAAS,YAAY,SAAS,CAAcuB,EAAMnD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB4B,EAAiB,SAAS,YAAY,SAAS,CAACc,EAAY,GAAgB5C,EAAKxB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ4E,GAA2BH,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,OAAO,GAAG,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,qBAAqB,EAAE,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,iBAAiBnB,EAAiB,SAAS,YAAY,GAAGhD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAEuC,EAAYI,CAAc,CAAC,CAAC,EAAEmB,EAAY,GAAgB5C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,kXAAkX,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEe,GAAa,GAAgBQ,EAAMnD,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiB,GAAK,iBAAiB4B,EAAiB,SAAS,YAAY,MAAMI,GAAa,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,sEAAsE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,2BAA2B,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,GAAGpD,GAAqB,CAAC,UAAU,CAAC,MAAMuD,CAAW,EAAE,UAAU,CAAC,MAAMD,CAAY,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAS,CAAczB,EAAKxB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,iBAAiBsD,EAAiB,SAAS,YAAY,GAAGhD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQsE,GAA2BH,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,OAAO,GAAG,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,sBAAsB,EAAE,EAAE,GAAG,iBAAiB,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE5B,EAAYI,CAAc,CAAC,CAAC,EAAezB,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,8FAA8F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,sEAAsE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGhD,GAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,8FAA8F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoB,GAAa,GAAgB7C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB4B,EAAiB,SAAS,YAAY,SAASe,GAAa,GAAgBQ,EAAMnD,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qBAAqB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,0CAA0C,EAAE,SAAS,CAAcuB,EAAMnD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB4B,EAAiB,SAAS,YAAY,SAAS,CAAc9B,EAAKxB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,iBAAiBsD,EAAiB,SAAS,YAAY,GAAGhD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQsE,GAA2BH,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,OAAO,GAAG,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,sBAAsB,EAAE,EAAE,EAAE,EAAE,mBAAmB,kBAAkB,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,CAAC,EAAE5B,EAAYI,CAAc,CAAC,CAAC,EAAezB,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,6FAA6F,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGhD,GAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,6FAA6F,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4B,EAAMnD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sEAAsE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAc9B,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,gGAAgG,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGhD,GAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,gGAAgG,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmB,EAAYI,CAAc,CAAC,CAAC,EAAezB,EAAKxB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,iBAAiBsD,EAAiB,SAAS,YAAY,GAAGhD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQsE,GAA2BH,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,OAAO,GAAG,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,sBAAsB,EAAE,EAAE,EAAE,EAAE,GAAG,kBAAkB,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,CAAC,EAAE5B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmB,EAAY,GAAgBS,EAAMnD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB4B,EAAiB,SAAS,YAAY,SAAS,CAAcuB,EAAMnD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB4B,EAAiB,SAAS,YAAY,SAAS,CAAc9B,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGhD,GAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmB,EAAYI,CAAc,CAAC,CAAC,EAAe4B,EAAMnD,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qBAAqB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAcuB,EAAMnD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB4B,EAAiB,SAAS,YAAY,SAAS,CAAc9B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,qEAAqE,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,CAAC,CAAC,CAAC,EAAe9B,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGhD,GAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezB,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,qEAAqE,sBAAsB,QAAQ,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAMnD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB4B,EAAiB,SAAS,YAAY,SAAS,CAAc9B,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGhD,GAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmB,EAAYI,CAAc,CAAC,CAAC,EAAezB,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qBAAqB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAsBuB,EAAMnD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB4B,EAAiB,SAAS,YAAY,SAAS,CAAc9B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAsB9B,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,8FAA8F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,sEAAsE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGhD,GAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,8FAA8F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAezB,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,6FAA6F,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGhD,GAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,6FAA6F,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4B,EAAMnD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB4B,EAAiB,SAAS,YAAY,SAAS,CAAc9B,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,MAAM,CAAC,gBAAgB,EAAE,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGhD,GAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmB,EAAYI,CAAc,CAAC,CAAC,EAAe4B,EAAMnD,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qBAAqB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAc9B,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGhD,GAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmB,EAAYI,CAAc,CAAC,CAAC,EAAezB,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,qEAAqE,sBAAsB,QAAQ,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEe,GAAa,GAAgB7C,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB4B,EAAiB,SAAS,sBAAsB,SAAsB9B,EAAKjC,GAAM,CAAC,OAAO,OAAO,KAAK;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,UAAugB,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,OAAO,GAAGe,GAAqB,CAAC,UAAU,CAAC,KAAK;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,SAA6gB,EAAE,UAAU,CAAC,KAAK;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,SAA6gB,CAAC,EAAEuC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmB,EAAY,GAAgBS,EAAMnD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB4B,EAAiB,SAAS,YAAY,SAAS,CAAc9B,EAAKuD,EAA0B,CAAC,OAAO,GAAG,MAAM,YAAYN,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,OAAO,GAAG,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,mBAAmB,EAAE,GAAGnE,GAAqB,CAAC,UAAU,CAAC,MAAM,YAAYmE,GAAmB,OAAO,OAAO,mBAAmB,EAAE,MAAS,CAAC,EAAE5B,EAAYI,CAAc,EAAE,SAAsBzB,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB4B,EAAiB,SAAS,sBAAsB,SAAsB9B,EAAK9B,GAA6D,CAAC,UAAUoE,GAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,iBAAiB,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGxD,GAAqB,CAAC,UAAU,CAAC,UAAUyD,CAAe,CAAC,EAAElB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqB,GAAa,GAAgBO,EAAMnD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB4B,EAAiB,SAAS,YAAY,kBAAkB1C,GAAmB,SAAS,CAAcY,EAAK1B,GAAe,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ8E,GAA2BH,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,OAAO,GAAG,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,GAAG,mBAAmB,mBAAmB,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,iBAAiBnB,EAAiB,SAAS,YAAY,MAAM,CAAC,OAAO,GAAG,CAAC,CAAC,EAAe9B,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB4B,EAAiB,SAAS,sBAAsB,MAAM,CAAC,OAAO,EAAE,EAAE,SAAsB9B,EAAKtB,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAK,SAAS,YAAY,KAAK,GAAK,QAAQ,GAAK,OAAO,OAAO,eAAe,EAAE,SAAS,EAAE,MAAM,EAAE,QAAQ,wEAAwE,QAAQ,SAAS,OAAO,0FAA0F,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ8E,GAAI,CAAC,kFAAkF,gFAAgF,mRAAmR,kSAAkS,iHAAiH,mRAAmR,gRAAgR,0RAA0R,kHAAkH,qMAAqM,kTAAkT,8KAA8K,oWAAoW,+SAA+S,2QAA2Q,4RAA4R,2RAA2R,yRAAyR,wVAAwV,0SAA0S,oRAAoR,kHAAkH,yMAAyM,0QAA0Q,4QAA4Q,6RAA6R,oLAAoL,6QAA6Q,yGAAyG,8TAA8T,kHAAkH,wGAAwG,k6GAAk6G,+DAA+D,yMAAyM,gGAAgG,uEAAuE,8GAA8G,4HAA4H,mbAAmb,iHAAiH,+EAA+E,gFAAgF,2IAA2I,qEAAqE,oLAAoL,4GAA4G,+IAA+I,mKAAmK,4GAA4G,wHAAwH,sFAAsF,iHAAiH,6GAA6G,+2DAA+2D,uEAAuE,+EAA+E,kHAAkH,kEAAkE,sFAAsF,yHAAyH,yFAAyF,yFAAyF,6HAA6H,wwBAAwwB,+bAA+b,EAQrimDC,GAAgBC,GAAQ/C,GAAU6C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,mBAAmBA,GAAgB,aAAa,CAAC,OAAO,MAAM,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,QAAQ,SAAS,cAAc,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,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,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,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,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,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,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG5F,GAAW,GAAGG,GAAoB,GAAGS,EAAW,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRjpJ,IAAMsF,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAyT,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAE,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWN,GAAmCG,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,gBAAgB,YAAY,MAAM,YAAY,MAAM,WAAW,EAAQC,GAAS,CAAC,CAAC,QAAAC,EAAQ,WAAAC,EAAW,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,UAAAC,EAAU,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,GAAMC,EAAuCC,EAAMC,EAAM,MAAM,CAAC,GAAGN,EAAM,WAAWC,EAAKT,GAAyCQ,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,CAAC,IAAI,qEAAqE,EAAE,WAAWC,EAAMT,GAAkDO,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,CAAC,IAAI,sEAAsE,EAAE,WAAWC,GAAML,GAAmCE,EAAM,aAAa,MAAMG,KAAQ,OAAOA,GAAM,iBAAiB,SAASE,GAAOD,EAAuCd,GAAwBU,EAAM,OAAO,KAAK,MAAMI,IAAyC,OAAOA,EAAuCJ,EAAM,WAAW,MAAMK,IAAQ,OAAOA,EAAM,YAAY,WAAWC,EAAMT,GAA+CG,EAAM,aAAa,MAAMM,IAAQ,OAAOA,EAAM,qBAAqB,UAAUV,GAAgCI,EAAM,SAAS,CAAE,EAAQO,GAAuB,CAACP,EAAMQ,IAAeR,EAAM,iBAAwBQ,EAAS,KAAK,GAAG,EAAER,EAAM,iBAAwBQ,EAAS,KAAK,GAAG,EAAUC,GAA6BC,GAAW,SAASV,EAAMW,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEjC,GAASS,CAAK,EAAO,CAAC,YAAAyB,EAAY,WAAAC,GAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,EAAgB,WAAAC,GAAW,SAAAxB,CAAQ,EAAEyB,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,QAAAhB,EAAQ,kBAAAiB,EAAiB,CAAC,EAAQC,EAAiB7B,GAAuBP,EAAMQ,CAAQ,EAAQ6B,GAAWC,GAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBzD,EAAK0D,GAAY,CAAC,GAAG3B,GAA4CsB,EAAgB,SAAsBrD,EAAKC,GAAS,CAAC,QAAQqB,EAAS,QAAQ,GAAM,SAAsBtB,EAAKR,GAAW,CAAC,MAAMH,GAAY,SAAsBW,EAAK2D,GAAK,CAAC,KAAKtB,EAAU,SAAsBuB,EAAM1D,EAAO,EAAE,CAAC,GAAGoC,EAAU,GAAGI,EAAgB,UAAU,GAAGmB,EAAGC,GAAkB,GAAGP,EAAsB,gBAAgBzB,EAAUU,EAAU,CAAC,iBAAiB,mBAAmB,QAAQ,iBAAiBU,EAAiB,SAAS,YAAY,IAAIzB,GAA6B0B,GAAK,MAAM,CAAC,GAAGtB,CAAK,EAAE,GAAGkC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,eAAe,CAAC,EAAExB,EAAYI,CAAc,EAAE,SAAS,CAAc3C,EAAKgE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,iBAAiBd,EAAiB,SAAS,YAAY,GAAGa,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,MAAM,OAAO,GAAGzE,GAAkB6C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,CAAC,EAAEI,EAAYI,CAAc,CAAC,CAAC,EAAe3C,EAAKiE,EAAS,CAAC,sBAAsB,GAAK,SAAsBjE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,UAAU,sBAAsB,wEAAwE,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBgD,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,gDAAgD,2BAA2B,mBAAmB,gCAAgC,YAAY,2CAA2CjB,CAAS,EAAE,KAAKC,EAAU,kBAAkB,MAAM,mBAAmB,GAAK,GAAG6B,GAAqB,CAAC,UAAU,CAAC,SAAsB/D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,0BAA0B,UAAU,sBAAsB,wEAAwE,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,sBAAsB,wEAAwE,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,CAAC,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAe3C,EAAKgE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,MAAM,OAAO,GAAG1E,GAAkB8C,EAAS,EAAM,UAAU,SAAS,UAAU,QAAS,EAAE,UAAU,gBAAgB,iBAAiBc,EAAiB,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQgB,GAAI,CAAC,kFAAkF,gFAAgF,6RAA6R,kHAAkH,iHAAiH,iHAAiH,0WAA0W,EAS9yPC,GAAgBC,GAAQ7C,GAAU2C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,UAAUA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,KAAK,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,QAAQ,QAAQ,eAAe,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,qBAAqB,MAAM,aAAa,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,aAAa,iBAAiB,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,wBAAwB,wHAAwH,MAAM,WAAW,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,wBAAwB,4GAA4G,MAAM,cAAc,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,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,EAAE,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTh4E,IAAMM,GAAW,CAAC,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAA0hB,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAK,MAAM,CAAC,GAAGD,EAAM,WAAWC,EAAKH,GAAmCE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,YAAY,UAAUJ,GAAgCG,EAAM,SAAS,CAAE,EAAQE,GAAuB,CAACF,EAAMG,IAAeH,EAAM,iBAAwBG,EAAS,KAAK,GAAG,EAAEH,EAAM,iBAAwBG,EAAS,KAAK,GAAG,EAAUC,GAA6BC,GAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEtB,GAASM,CAAK,EAAO,CAAC,YAAAiB,GAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,GAAe,UAAAC,GAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAArB,EAAQ,EAAEsB,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,QAAAb,EAAQ,kBAAAc,EAAiB,CAAC,EAAQC,EAAiB1B,GAAuBF,EAAMG,EAAQ,EAAQ0B,GAAWC,GAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,GAAkBC,GAAqB,EAAE,OAAoB7C,EAAK8C,GAAY,CAAC,GAAGxB,GAA4CmB,EAAgB,SAAsBzC,EAAKC,GAAS,CAAC,QAAQY,GAAS,QAAQ,GAAM,SAAsBb,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAK+C,GAAK,CAAC,KAAKvB,EAAU,aAAa,GAAK,SAAsBxB,EAAKE,EAAO,EAAE,CAAC,GAAGwB,EAAU,GAAGI,EAAgB,UAAU,GAAGkB,EAAGC,GAAkB,GAAGN,EAAsB,iBAAiBtB,EAAUO,CAAU,CAAC,iBAAiB,mBAAmB,YAAY,aAAa,SAAS,iBAAiBU,EAAiB,SAAS,YAAY,IAAItB,GAA6BuB,GAAK,MAAM,CAAC,WAAW,uEAAuE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,GAAGnB,CAAK,EAAE,SAAsBpB,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,iBAAiBoC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKb,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ0B,GAAI,CAAC,kFAAkF,gFAAgF,sVAAsV,uKAAuK,8WAA8W,EASvvKC,GAAgBC,GAAQvC,GAAUqC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,sBAAsBA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,UAAU,CAAC,MAAM,OAAO,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,YAAY,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,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,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,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTr5B,IAAMM,GAAYC,EAASC,EAAM,EAAQC,GAAoBF,EAASG,EAAc,EAAQC,GAAmEC,GAAqBC,GAA6BH,GAAe,CAAC,OAAO,YAAY,SAASI,GAAoB,QAAQ,WAAW,CAAC,EAAEC,EAAkB,EAAQC,GAAsBH,GAA6BI,EAAM,CAAC,OAAO,YAAY,SAASC,GAAU,QAAQ,WAAW,CAAC,EAAQC,GAAYZ,EAASa,EAAM,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAEC,IAAI,yBAAyBA,CAAC,GAASC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,eAAe,YAAY,UAAU,YAAY,cAAc,YAAY,QAAQ,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMzB,IAAeyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAEyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAU2B,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,GAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAxC,GAAQ,GAAGyC,CAAS,EAAEtB,GAASI,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAAnD,EAAQ,EAAEoD,GAAgB,CAAC,WAAAzD,GAAW,eAAe,YAAY,IAAIqC,EAAW,QAAA9B,GAAQ,kBAAAL,EAAiB,CAAC,EAAQwD,EAAiB3B,GAAuBD,EAAMzB,EAAQ,EAAO,CAAC,sBAAAsD,EAAsB,MAAAC,EAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAaH,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAaL,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAYN,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQU,EAAYP,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQW,EAAgBR,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQY,GAAgBT,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAA4Da,GAAkBC,EAAGrE,GAAkB,GAArE,CAAa6C,EAAS,CAAuE,EAAQyB,EAAY,IAAQ,EAAC,YAAY,WAAW,EAAE,SAAStB,CAAW,EAAmCuB,GAAa,IAAQ,GAAC,YAAY,WAAW,EAAE,SAASvB,CAAW,EAAmCwB,GAAa,IAAQxB,IAAc,YAAuC,OAAoB5B,EAAKqD,GAAY,CAAC,GAAG3B,GAAUT,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQjB,GAAS,QAAQ,GAAM,SAAsBgB,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBa,EAAKzB,EAAM,CAAC,GAAGoD,EAAU,GAAGI,GAAgB,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuB,EAA0BhC,GAAmB,GAAG,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,qEAAqE,OAAO,mKAAmK,EAAE,UAAU2B,EAAGD,GAAkB,gBAAgBvB,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAG1C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,cAAc,CAAC,EAAE8C,EAAYI,CAAc,EAAE,SAAsBuB,EAAMrD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAckB,EAAMrD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAckB,EAAMrD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB,GAAK,iBAAiBmC,EAAiB,SAAS,YAAY,MAAMI,EAAa,GAAG3D,GAAqB,CAAC,UAAU,CAAC,MAAM6D,CAAY,EAAE,UAAU,CAAC,MAAMA,CAAY,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAS,CAAchC,EAAKzB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ+E,GAA2BhC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,iBAAiBe,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,GAAGvD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQwE,GAA2BhC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,CAAC,EAAEM,EAAYI,CAAc,CAAC,CAAC,EAAehC,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,6FAA6F,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGvD,GAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,6FAA6F,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,6FAA6F,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAMrD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB,GAAK,iBAAiBmC,EAAiB,SAAS,YAAY,MAAMO,EAAY,GAAG9D,GAAqB,CAAC,UAAU,CAAC,MAAM+D,CAAW,EAAE,UAAU,CAAC,MAAMA,CAAW,CAAC,EAAEjB,EAAYI,CAAc,EAAE,SAAS,CAAchC,EAAKzB,EAAM,CAAC,UAAU,gBAAgB,iBAAiB8D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,CAAC,EAAE,GAAGvD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQwE,GAA2BhC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAASkB,EAAY,GAAgBlD,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,UAAU,0BAA0B,QAAQ,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGvD,GAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,6FAA6F,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGvD,GAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,6FAA6F,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,6FAA6F,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAMrD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,0CAA0C,EAAE,SAAS,CAAcrC,EAAKzB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ+E,GAA2BhC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,iBAAiBe,EAAiB,SAAS,YAAY,GAAGvD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQwC,GAAmB,OAAO,OAAO,UAAU,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQA,GAAmB,OAAO,OAAO,UAAU,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQgC,GAA2BhC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,CAAC,EAAEM,EAAYI,CAAc,CAAC,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAsBkB,EAAMrD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,2BAA2B,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAckB,EAAMrD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAckB,EAAMrD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAACa,EAAY,GAAgBlD,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,sCAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAekB,EAAMrD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,gBAAgB,wBAAwB,CAAC,EAAE,SAAS,CAACa,EAAY,GAAgBlD,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEc,GAAa,GAAgBnD,EAAKyD,EAA0B,CAAC,SAAsBzD,EAAK0D,GAA8B,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiBrB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKlC,GAAO,CAAC,QAAQ,g7GAAs6G,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,YAAY,KAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoF,EAAY,GAAgBK,EAAMrD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6FAA6F,EAAE,SAAS,0BAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAekB,EAAMrD,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qBAAqB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAcrC,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAerC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,qEAAqE,sBAAsB,QAAQ,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEa,EAAY,GAAgBK,EAAMrD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sEAAsE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAsBrC,EAAKzB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ+E,GAA2BhC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,GAAG,GAAG,EAAE,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,YAAY,EAAE,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,mEAAmE,EAAE,UAAU,gBAAgB,iBAAiBe,EAAiB,SAAS,YAAY,GAAGvD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,EAAE,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,mEAAmE,CAAC,CAAC,EAAE8C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEa,EAAY,GAAgBK,EAAMrD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAKyD,EAA0B,CAAC,OAAO,GAAG,MAAM,YAAYnC,GAAmB,OAAO,OAAO,+BAA+B,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,GAAG,GAAG,MAAM,EAAE,GAAGxC,GAAqB,CAAC,UAAU,CAAC,MAAM,YAAYwC,GAAmB,OAAO,OAAO,8BAA8B,EAAE,MAAS,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsBhC,EAAK0D,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBrB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAK/B,GAAmE,CAAC,UAAU6E,EAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,iBAAiB,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGhE,GAAqB,CAAC,UAAU,CAAC,UAAUiE,EAAe,CAAC,EAAEnB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoB,GAAa,GAAgBG,EAAMrD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,kBAAkBjD,GAAmB,SAAS,CAAcY,EAAK1B,GAAsB,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQgF,GAA2BhC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,GAAG,GAAG,MAAM,mBAAmB,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,iBAAiBe,EAAiB,SAAS,YAAY,MAAM,CAAC,OAAO,GAAG,CAAC,CAAC,EAAerC,EAAKyD,EAA0B,CAAC,SAAsBzD,EAAK0D,GAA8B,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBrB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,EAAE,EAAE,SAAsBrC,EAAKtB,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAK,SAAS,YAAY,KAAK,GAAK,QAAQ,GAAK,OAAO,OAAO,eAAe,EAAE,SAAS,EAAE,MAAM,EAAE,QAAQ,wEAAwE,QAAQ,SAAS,OAAO,0FAA0F,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiF,GAAI,CAAC,kFAAkF,gFAAgF,oQAAoQ,+QAA+Q,4QAA4Q,qUAAqU,iHAAiH,sUAAsU,sQAAsQ,gRAAgR,iHAAiH,8QAA8Q,oRAAoR,gRAAgR,2TAA2T,mRAAmR,4GAA4G,0QAA0Q,2KAA2K,iRAAiR,0QAA0Q,8KAA8K,6QAA6Q,wGAAwG,6TAA6T,mHAAmH,wGAAwG,qrGAAqrG,uEAAuE,mPAAmP,iIAAiI,2aAA2a,gEAAgE,8GAA8G,8HAA8H,uOAAuO,8EAA8E,iHAAiH,6EAA6E,qJAAqJ,8vBAA8vB,iEAAiE,wFAAwF,swBAAswB,GAAeA,GAAI,+bAA+b,EAQ/lyCC,GAAgBC,GAAQlD,GAAUgD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,eAAeA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,eAAe,UAAU,aAAa,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,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,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,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGhG,GAAY,GAAGG,GAAoB,GAAGU,GAAY,GAAGyF,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT3oH,IAAAC,GAAA,GAAAC,GAAAD,GAAA,wBAAAE,GAAA,OAAAC,GAAA,OAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,KAAgH,IAAMC,GAAgBC,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAeC,GAAgBH,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAeE,GAAgBJ,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,EAAeG,GAAgBL,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAeI,GAAgBN,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAeK,GAAgBP,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAeM,GAAgBR,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAeO,GAAgBT,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAeQ,GAAgBV,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAeS,GAAgBX,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAeU,GAAiBZ,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAeW,GAAiBb,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAeY,GAAiBd,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAea,GAAiBf,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAec,GAAiBhB,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,4BAA4B,CAAC,CAAC,CAAC,EACv4Ke,GAAqB,CAAC,QAAU,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,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,ECDvmC,IAAAC,GAAA,GAAAC,GAAAD,GAAA,wBAAAE,GAAA,OAAAC,GAAA,OAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,KAAgH,IAAMC,GAAgBC,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,4CAAS,CAAC,CAAC,CAAC,EAAeC,GAAgBH,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,4CAAS,CAAC,CAAC,CAAC,EAAeE,GAAgBJ,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,4CAAS,CAAC,CAAC,CAAC,EAAeG,GAAgBL,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,kDAAU,CAAC,CAAC,CAAC,EAAeI,GAAgBN,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,kDAAU,CAAC,CAAC,CAAC,EAAeK,GAAgBP,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,kDAAU,CAAC,CAAC,CAAC,EAAeM,GAAgBR,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,oBAAK,CAAC,CAAC,CAAC,EAAeO,GAAgBT,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,oBAAK,CAAC,CAAC,CAAC,EAAeQ,GAAgBV,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,oBAAK,CAAC,CAAC,CAAC,EAAeS,GAAgBX,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,iFAAgB,CAAC,CAAC,CAAC,EAAeU,GAAiBZ,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,iFAAgB,CAAC,CAAC,CAAC,EAAeW,GAAiBb,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,iFAAgB,CAAC,CAAC,CAAC,EAAeY,GAAiBd,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,6EAAiB,CAAC,CAAC,CAAC,EAAea,GAAiBf,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,6EAAiB,CAAC,CAAC,CAAC,EAAec,GAAiBhB,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,6EAAiB,CAAC,CAAC,CAAC,EAC7yKe,GAAqB,CAAC,QAAU,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,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,ECDvmC,IAAAC,GAAA,GAAAC,GAAAD,GAAA,wBAAAE,GAAA,OAAAC,GAAA,OAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,KAAgH,IAAMC,GAAgBC,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAeC,GAAgBH,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAeE,GAAgBJ,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAeG,GAAgBL,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAeI,GAAgBN,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAeK,GAAgBP,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,EAAeM,GAAgBR,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAeO,GAAgBT,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAeQ,GAAgBV,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,EAAeS,GAAgBX,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAeU,GAAiBZ,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAeW,GAAiBb,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAeY,GAAiBd,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAea,GAAiBf,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAec,GAAiBhB,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAC93Ke,GAAqB,CAAC,QAAU,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,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,ECDvmC,IAAAC,GAAA,GAAAC,GAAAD,GAAA,wBAAAE,GAAA,OAAAC,GAAA,OAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,KAAgH,IAAMC,GAAgBC,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAeC,GAAgBH,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAeE,GAAgBJ,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,EAAeG,GAAgBL,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAeI,GAAgBN,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAeK,GAAgBP,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAeM,GAAgBR,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAeO,GAAgBT,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAeQ,GAAgBV,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAeS,GAAgBX,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAeU,GAAiBZ,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAeW,GAAiBb,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAeY,GAAiBd,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAea,GAAiBf,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAec,GAAiBhB,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAC74Ke,GAAqB,CAAC,QAAU,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECAh6B,IAAMC,GAAiB,CAAC,UAAUC,GAAiB,UAAUC,GAAgB,UAAUC,GAAiB,UAAUC,EAAgB,EAAiB,SAARC,EAAmCC,EAAIC,EAAO,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAOR,GAAiBO,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAOF,CAAG,EAAE,GAAGG,EAAM,OAAOA,CAAM,CAACF,EAAOA,EAAO,QAAS,CAAC,CCAwM,IAAMG,GAASC,EAASC,EAAG,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,UAAU,YAAY,kBAAkB,YAAY,aAAa,YAAY,kBAAkB,YAAY,mBAAmB,YAAY,sBAAsB,YAAY,QAAQ,YAAY,QAAQ,YAAY,QAAQ,YAAY,MAAM,YAAY,MAAM,WAAW,EAAQC,GAAS,CAAC,CAAC,qBAAAC,EAAqB,qBAAAC,EAAqB,qBAAAC,EAAqB,qBAAAC,EAAqB,iBAAAC,EAAiB,iBAAAC,EAAiB,iBAAAC,EAAiB,iBAAAC,EAAiB,qBAAAC,EAAqB,qBAAAC,EAAqB,qBAAAC,EAAqB,qBAAAC,GAAqB,iBAAAC,EAAiB,iBAAAC,EAAiB,iBAAAC,EAAiB,iBAAAC,GAAiB,kBAAAC,GAAkB,cAAAC,EAAc,OAAAC,EAAO,GAAAC,GAAG,kBAAAC,EAAkB,kBAAAC,GAAkB,kBAAAC,EAAkB,kBAAAC,EAAkB,cAAAC,GAAc,eAAAC,EAAe,eAAAC,EAAe,eAAAC,EAAe,oBAAAC,EAAoB,oBAAAC,EAAoB,gBAAAC,GAAgB,gBAAAC,GAAgB,MAAAC,GAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAU9B,GAAsB8B,EAAM,WAAwBvC,EAAWG,EAAS,CAAC,CAAC,EAAE,UAAUmB,IAAmBiB,EAAM,WAAwBvC,EAAWG,EAAS,CAAC,CAAC,EAAE,UAAU0B,GAAmBU,EAAM,WAAwBvC,EAAWG,EAAS,CAAC,CAAC,EAAE,UAAUK,GAAsB+B,EAAM,WAAwBvC,EAAWG,EAAS,CAAC,CAAC,EAAE,UAAUQ,GAAkB4B,EAAM,WAAW,wBAAwB,UAAUN,GAAgBM,EAAM,WAAW,oDAAoD,UAAUhB,GAAegB,EAAM,WAAW,sHAAsH,UAAUR,GAAgBQ,EAAM,WAAW,qDAAqD,UAAUtB,IAAsBsB,EAAM,WAAwBvC,EAAWG,EAAS,CAAC,CAAC,EAAE,UAAUwB,IAAmBY,EAAM,WAAwBvC,EAAWG,EAAS,CAAC,CAAC,EAAE,UAAUiB,GAAkBmB,EAAM,WAAW,gDAAgD,UAAUjC,GAAsBiC,EAAM,WAAwBvC,EAAWG,EAAS,CAAC,CAAC,EAAE,UAAUW,GAAsByB,EAAM,WAAwBvC,EAAWG,EAAS,CAAC,CAAC,EAAE,UAAUyB,GAAmBW,EAAM,WAAwBvC,EAAWG,EAAS,CAAC,CAAC,EAAE,UAAUe,GAAkBqB,EAAM,WAAW,6EAA6E,UAAUH,IAAiBG,EAAM,WAAW,+CAA+C,UAAUpB,GAAkBoB,EAAM,WAAW,2DAA2D,UAAUL,GAAqBK,EAAM,WAAwBvC,EAAWG,EAAS,CAAC,CAAC,EAAE,UAAUkB,IAAkBkB,EAAM,WAAW,8DAA8D,UAAUxB,GAAsBwB,EAAM,WAAwBvC,EAAWG,EAAS,CAAC,CAAC,EAAE,UAAUU,GAAkB0B,EAAM,WAAW,oBAAoB,UAAUvB,GAAsBuB,EAAM,WAAwBvC,EAAWG,EAAS,CAAC,CAAC,EAAE,QAAQC,GAAwBmC,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUP,GAAgBO,EAAM,WAAW,oCAAoC,UAAUF,IAAiBE,EAAM,WAAW,kEAAkE,UAAUb,GAAmBa,EAAM,WAAwBvC,EAAWG,EAAS,CAAC,CAAC,EAAE,UAAUO,GAAkB6B,EAAM,WAAW,6BAA6B,UAAUT,IAAeS,EAAM,WAAW,+DAA+D,UAAUJ,GAAqBI,EAAM,WAAwBvC,EAAWG,EAAS,CAAC,CAAC,EAAE,UAAUI,GAAsBgC,EAAM,WAAwBvC,EAAWG,EAAS,CAAC,CAAC,EAAE,UAAUS,GAAkB2B,EAAM,WAAW,gDAAgD,GAAUC,GAAuB,CAACD,EAAMpD,IAAeoD,EAAM,iBAAwBpD,EAAS,KAAK,GAAG,EAAEoD,EAAM,iBAAwBpD,EAAS,KAAK,GAAG,EAAUsD,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA5D,EAAQ,UAAA6D,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,GAAGC,EAAS,EAAE3E,GAASkC,CAAK,EAAO,CAAC,YAAA0C,EAAY,WAAAC,GAAW,oBAAAC,GAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAArG,EAAQ,EAAEsG,GAAgB,CAAC,WAAA3G,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ0G,EAAiBlD,GAAuBD,EAAMpD,EAAQ,EAAO,CAAC,sBAAAwG,GAAsB,MAAAC,EAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAYH,GAAsB,SAASI,KAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQQ,GAAYL,GAAsB,SAASI,KAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQS,GAAaN,GAAsB,SAASI,KAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQU,GAAYP,GAAsB,SAASI,KAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQW,EAAYR,GAAsB,SAASI,KAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQY,EAAaT,GAAsB,SAASI,KAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQa,GAAaV,GAAsB,SAASI,KAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQc,GAAYX,GAAsB,SAASI,KAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQe,GAAYZ,GAAsB,SAASI,KAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQgB,GAAab,GAAsB,SAASI,KAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAA4DiB,GAAkBC,EAAG3H,GAAkB,GAArE,CAAaiE,EAAS,CAAuE,EAAQ2D,GAAWC,GAAO,IAAI,EAAQC,GAAY,IAAQ,GAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAAS5B,CAAW,EAAmC6B,GAAa,IAAQ7B,IAAc,YAA6C8B,GAAa,IAAQ9B,IAAc,YAA6C+B,GAAa,IAAQ/B,IAAc,YAA6CgC,GAAa,IAAQhC,IAAc,YAA6CiC,GAAa,IAAQjC,IAAc,YAA6CkC,GAAa,IAAQ,EAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAASlC,CAAW,EAAmCmC,GAAa,IAAQnC,IAAc,YAA6CoC,GAAa,IAAQ,EAAC,YAAY,WAAW,EAAE,SAASpC,CAAW,EAAmCqC,GAAsBC,GAAM,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBzH,EAAK0H,GAAY,CAAC,GAAGzE,GAAUqE,GAAgB,SAAsBtH,EAAKC,GAAS,CAAC,QAAQd,GAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBqI,EAAMzH,EAAO,IAAI,CAAC,GAAG8E,GAAU,GAAGI,GAAgB,UAAUsB,EAAGD,GAAkB,iBAAiBzD,EAAUkC,EAAU,EAAE,mBAAmB,kBAAkB,iBAAiBQ,EAAiB,SAAS,YAAY,IAAI/C,GAAKgE,GAAK,MAAM,CAAC,GAAG5D,CAAK,EAAE,GAAG9D,EAAqB,CAAC,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,iBAAiB,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,qBAAqB,CAAC,EAAEgG,EAAYI,CAAc,EAAE,SAAS,CAAcsC,EAAMzH,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBwF,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,yCAAyC,EAAE,SAAS,CAAciC,EAAMzH,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB,GAAK,iBAAiBwF,EAAiB,SAAS,YAAY,MAAMI,GAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,CAAC,EAAE,GAAG7G,EAAqB,CAAC,UAAU,CAAC,MAAM+G,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAS,CAAcrF,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,MAAM,CAAC,cAAc,EAAE,iBAAiBwF,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,sEAAsE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,oBAAoB,EAAE,UAAU,CAAC,qBAAqB,oBAAoB,EAAE,UAAU,CAAC,qBAAqB,oBAAoB,EAAE,UAAU,CAAC,qBAAqB,oBAAoB,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzG,EAAqB,CAAC,UAAU,CAAC,SAAS4I,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE+E,EAAYI,CAAc,CAAC,CAAC,EAAEwB,GAAY,GAAgB7G,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiBwF,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,OAAO,IAAI,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiC,EAAMzH,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB,GAAK,iBAAiBwF,EAAiB,SAAS,YAAY,MAAMO,GAAa,MAAM,CAAC,gBAAgB,yBAAyB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,oBAAoB,EAAE,UAAU,CAAC,gBAAgB,oBAAoB,CAAC,EAAE,GAAGhH,EAAqB,CAAC,UAAU,CAAC,MAAMiH,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,CAAC,EAAEjB,EAAYI,CAAc,EAAE,SAAS,CAAcrF,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,iBAAiBwF,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,qEAAqE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzG,EAAqB,CAAC,UAAU,CAAC,SAAS4I,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE+E,EAAYI,CAAc,CAAC,CAAC,EAAEwB,GAAY,GAAgB7G,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiBwF,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,OAAO,IAAI,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiC,EAAMzH,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB,GAAK,iBAAiBwF,EAAiB,SAAS,YAAY,MAAMS,EAAY,MAAM,CAAC,gBAAgB,yBAAyB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,oBAAoB,EAAE,UAAU,CAAC,gBAAgB,oBAAoB,CAAC,EAAE,GAAGlH,EAAqB,CAAC,UAAU,CAAC,MAAMmH,CAAY,EAAE,UAAU,CAAC,MAAMA,CAAY,EAAE,UAAU,CAAC,MAAMA,CAAY,EAAE,UAAU,CAAC,MAAMA,CAAY,EAAE,UAAU,CAAC,MAAMA,CAAY,EAAE,UAAU,CAAC,MAAMA,CAAY,CAAC,EAAEnB,EAAYI,CAAc,EAAE,SAAS,CAAcrF,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,iBAAiBwF,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,qEAAqE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzG,EAAqB,CAAC,UAAU,CAAC,SAAS4I,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE+E,EAAYI,CAAc,CAAC,CAAC,EAAEwB,GAAY,GAAgB7G,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiBwF,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,OAAO,IAAI,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoB,GAAa,GAAgBa,EAAMzH,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBwF,EAAiB,SAAS,YAAY,SAAS,CAAc1F,EAAK8H,EAA0B,CAAC,OAAO,GAAG,GAAG7I,EAAqB,CAAC,UAAU,CAAC,MAAM,QAAQuI,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,GAAG,IAAI,EAAE,CAAC,CAAC,EAAEvC,EAAYI,CAAc,EAAE,SAAsBrF,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBwF,EAAiB,SAAS,sBAAsB,SAAsB1F,EAAKnB,GAAI,CAAC,UAAU6E,GAAU,UAAUC,EAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3D,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBwF,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,CAAC,CAAC,EAAe1F,EAAK8H,EAA0B,CAAC,OAAO,GAAG,GAAG7I,EAAqB,CAAC,UAAU,CAAC,MAAM,QAAQuI,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,GAAG,IAAI,EAAE,GAAG,CAAC,EAAEvC,EAAYI,CAAc,EAAE,SAAsBrF,EAAKE,EAAO,IAAI,CAAC,UAAU,yBAAyB,iBAAiBwF,EAAiB,SAAS,sBAAsB,SAAsB1F,EAAKnB,GAAI,CAAC,UAAU+E,EAAU,UAAUC,GAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7D,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBwF,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,CAAC,CAAC,EAAe1F,EAAK8H,EAA0B,CAAC,OAAO,GAAG,GAAG7I,EAAqB,CAAC,UAAU,CAAC,MAAM,QAAQuI,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,GAAG,IAAI,EAAE,GAAG,CAAC,EAAEvC,EAAYI,CAAc,EAAE,SAAsBrF,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBwF,EAAiB,SAAS,sBAAsB,SAAsB1F,EAAKnB,GAAI,CAAC,UAAUiF,EAAU,UAAUC,GAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/D,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBwF,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,CAAC,CAAC,EAAe1F,EAAK8H,EAA0B,CAAC,OAAO,GAAG,GAAG7I,EAAqB,CAAC,UAAU,CAAC,MAAM,QAAQuI,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,GAAG,IAAI,EAAE,GAAG,CAAC,EAAEvC,EAAYI,CAAc,EAAE,SAAsBrF,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBwF,EAAiB,SAAS,sBAAsB,SAAsB1F,EAAKnB,GAAI,CAAC,UAAUmF,EAAU,UAAUC,EAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0D,EAAMzH,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB,GAAK,iBAAiBwF,EAAiB,SAAS,YAAY,MAAMW,GAAa,MAAM,CAAC,gBAAgB,yBAAyB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,oBAAoB,EAAE,UAAU,CAAC,gBAAgB,oBAAoB,CAAC,EAAE,GAAGpH,EAAqB,CAAC,UAAU,CAAC,MAAMqH,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,CAAC,EAAErB,EAAYI,CAAc,EAAE,SAAS,CAAcrF,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,KAAKjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,iBAAiBwF,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,qEAAqE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzG,EAAqB,CAAC,UAAU,CAAC,SAAS4I,EAAkB,MAAMjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,MAAMjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,MAAMjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,MAAMjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,MAAMjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,MAAMjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,MAAMjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE+E,EAAYI,CAAc,CAAC,CAAC,EAAEwB,GAAY,GAAgB7G,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiBwF,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,OAAO,IAAI,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiC,EAAMzH,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB,GAAK,iBAAiBwF,EAAiB,SAAS,YAAY,MAAMa,GAAY,MAAM,CAAC,gBAAgB,yBAAyB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,oBAAoB,EAAE,UAAU,CAAC,gBAAgB,oBAAoB,CAAC,EAAE,GAAGtH,EAAqB,CAAC,UAAU,CAAC,MAAMuH,EAAY,EAAE,UAAU,CAAC,MAAMA,EAAY,EAAE,UAAU,CAAC,MAAMA,EAAY,EAAE,UAAU,CAAC,MAAMA,EAAY,EAAE,UAAU,CAAC,MAAMA,EAAY,EAAE,UAAU,CAAC,MAAMA,EAAY,CAAC,EAAEvB,EAAYI,CAAc,EAAE,SAAS,CAAcrF,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,MAAMjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,iBAAiBwF,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,qEAAqE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzG,EAAqB,CAAC,UAAU,CAAC,SAAS4I,EAAkB,MAAMjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,MAAMjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,MAAMjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,MAAMjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,MAAMjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,MAAMjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAS2H,EAAkB,MAAMjF,CAAY,GAAgB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE+E,EAAYI,CAAc,CAAC,CAAC,EAAEwB,GAAY,GAAgB7G,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiBwF,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,OAAO,IAAI,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqB,GAAa,GAAgBY,EAAMzH,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBwF,EAAiB,SAAS,YAAY,SAAS,CAAc1F,EAAK8H,EAA0B,CAAC,OAAO,GAAG,GAAG7I,EAAqB,CAAC,UAAU,CAAC,MAAM,QAAQuI,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,GAAG,IAAI,EAAE,CAAC,CAAC,EAAEvC,EAAYI,CAAc,EAAE,SAAsBrF,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBwF,EAAiB,SAAS,sBAAsB,SAAsB1F,EAAKnB,GAAI,CAAC,UAAUqF,GAAU,UAAUC,EAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenE,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBwF,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,CAAC,CAAC,EAAe1F,EAAK8H,EAA0B,CAAC,OAAO,GAAG,GAAG7I,EAAqB,CAAC,UAAU,CAAC,MAAM,QAAQuI,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,GAAG,IAAI,EAAE,GAAG,CAAC,EAAEvC,EAAYI,CAAc,EAAE,SAAsBrF,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBwF,EAAiB,SAAS,sBAAsB,SAAsB1F,EAAKnB,GAAI,CAAC,UAAUuF,EAAU,UAAUC,EAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE2C,GAAa,GAAgBhH,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBwF,EAAiB,SAAS,YAAY,SAAsB1F,EAAK8H,EAA0B,CAAC,OAAO,GAAG,GAAG7I,EAAqB,CAAC,UAAU,CAAC,MAAM,QAAQuI,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,GAAG,IAAI,EAAE,CAAC,CAAC,EAAEvC,EAAYI,CAAc,EAAE,SAAsBrF,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBwF,EAAiB,SAAS,sBAAsB,SAAsB1F,EAAKnB,GAAI,CAAC,UAAUyF,EAAU,UAAUC,EAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0C,GAAa,GAAgBU,EAAMzH,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBwF,EAAiB,SAAS,YAAY,SAAS,CAACuB,GAAa,GAAgBjH,EAAK8H,EAA0B,CAAC,GAAG7I,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,QAAQuI,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,GAAG,GAAG,EAAE,CAAC,CAAC,EAAEvC,EAAYI,CAAc,EAAE,SAAsBrF,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBwF,EAAiB,SAAS,sBAAsB,SAAsB1F,EAAKnB,GAAI,CAAC,UAAUqE,EAAU,UAAUC,EAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenD,EAAK8H,EAA0B,CAAC,OAAO,GAAG,GAAG7I,EAAqB,CAAC,UAAU,CAAC,MAAM,QAAQuI,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,GAAG,GAAG,EAAE,GAAG,CAAC,EAAEvC,EAAYI,CAAc,EAAE,SAAsBrF,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBwF,EAAiB,SAAS,sBAAsB,SAAsB1F,EAAKnB,GAAI,CAAC,UAAU2E,EAAU,UAAUC,GAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezD,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBwF,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,CAAC,CAAC,EAAe1F,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBwF,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,CAAC,CAAC,EAAe1F,EAAK8H,EAA0B,CAAC,OAAO,GAAG,GAAG7I,EAAqB,CAAC,UAAU,CAAC,MAAM,QAAQuI,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,GAAG,GAAG,EAAE,GAAG,CAAC,EAAEvC,EAAYI,CAAc,EAAE,SAAsBrF,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBwF,EAAiB,SAAS,sBAAsB,SAAsB1F,EAAKnB,GAAI,CAAC,UAAUuE,EAAU,UAAUC,GAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerD,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBwF,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,CAAC,CAAC,EAAe1F,EAAK8H,EAA0B,CAAC,OAAO,GAAG,GAAG7I,EAAqB,CAAC,UAAU,CAAC,MAAM,QAAQuI,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,GAAG,GAAG,EAAE,GAAG,CAAC,EAAEvC,EAAYI,CAAc,EAAE,SAAsBrF,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBwF,EAAiB,SAAS,sBAAsB,SAAsB1F,EAAKnB,GAAI,CAAC,UAAUyE,EAAU,UAAUC,EAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE2D,GAAa,GAAgBS,EAAMzH,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBwF,EAAiB,SAAS,YAAY,SAAS,CAAc1F,EAAK8H,EAA0B,CAAC,OAAO,GAAG,GAAG7I,EAAqB,CAAC,UAAU,CAAC,MAAM,QAAQuI,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,GAAG,IAAI,EAAE,CAAC,CAAC,EAAEvC,EAAYI,CAAc,EAAE,SAAsBrF,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBwF,EAAiB,SAAS,sBAAsB,SAAsB1F,EAAKnB,GAAI,CAAC,UAAU2F,GAAU,UAAUC,GAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezE,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBwF,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,CAAC,CAAC,EAAe1F,EAAK8H,EAA0B,CAAC,OAAO,GAAG,GAAG7I,EAAqB,CAAC,UAAU,CAAC,MAAM,QAAQuI,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,GAAG,IAAI,EAAE,GAAG,CAAC,EAAEvC,EAAYI,CAAc,EAAE,SAAsBrF,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBwF,EAAiB,SAAS,sBAAsB,SAAsB1F,EAAKnB,GAAI,CAAC,UAAU6F,GAAU,UAAUC,EAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3E,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBwF,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,CAAC,CAAC,EAAe1F,EAAK8H,EAA0B,CAAC,OAAO,GAAG,GAAG7I,EAAqB,CAAC,UAAU,CAAC,MAAM,QAAQuI,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,GAAG,IAAI,EAAE,GAAG,CAAC,EAAEvC,EAAYI,CAAc,EAAE,SAAsBrF,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBwF,EAAiB,SAAS,sBAAsB,SAAsB1F,EAAKnB,GAAI,CAAC,UAAU+F,GAAU,UAAUC,GAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7E,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBwF,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,CAAC,CAAC,EAAe1F,EAAK8H,EAA0B,CAAC,OAAO,GAAG,GAAG7I,EAAqB,CAAC,UAAU,CAAC,MAAM,QAAQuI,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,GAAG,IAAI,EAAE,GAAG,CAAC,EAAEvC,EAAYI,CAAc,EAAE,SAAsBrF,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBwF,EAAiB,SAAS,sBAAsB,SAAsB1F,EAAKnB,GAAI,CAAC,UAAUiG,GAAU,UAAUC,GAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoC,GAAa,GAAgBQ,EAAMzH,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBwF,EAAiB,SAAS,YAAY,SAAS,CAAc1F,EAAK8H,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAON,GAAmB,OAAO,OAAO,kBAAkB,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,OAAO,EAAE,KAAK,IAAI,EAAE,EAAE,GAAGvI,EAAqB,CAAC,UAAU,CAAC,GAAGuI,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,OAAO,EAAE,KAAK,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,KAAK,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,KAAK,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,KAAK,IAAI,EAAE,CAAC,CAAC,EAAEvC,EAAYI,CAAc,EAAE,SAAsBrF,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBwF,EAAiB,SAAS,sBAAsB,SAAsB1F,EAAKnB,GAAI,CAAC,UAAUqE,EAAU,UAAUC,EAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGlE,EAAqB,CAAC,UAAU,CAAC,UAAUqF,EAAU,UAAUC,CAAS,EAAE,UAAU,CAAC,UAAUb,GAAU,UAAUC,CAAS,EAAE,UAAU,CAAC,UAAUO,GAAU,UAAUC,CAAS,EAAE,UAAU,CAAC,UAAUK,GAAU,UAAUC,EAAS,CAAC,EAAEQ,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+B,GAAa,GAAgBpH,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBwF,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,CAAC,CAAC,EAAE0B,GAAa,GAAgBpH,EAAK8H,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAON,GAAmB,OAAO,OAAO,kBAAkB,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,OAAO,EAAE,KAAK,IAAI,EAAE,IAAI,GAAGvI,EAAqB,CAAC,UAAU,CAAC,GAAGuI,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,KAAK,IAAI,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,KAAK,IAAI,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,KAAK,IAAI,EAAE,GAAG,CAAC,EAAEvC,EAAYI,CAAc,EAAE,SAAsBrF,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBwF,EAAiB,SAAS,sBAAsB,SAAsB1F,EAAKnB,GAAI,CAAC,UAAUuE,EAAU,UAAUC,GAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGpE,EAAqB,CAAC,UAAU,CAAC,UAAU2E,EAAU,UAAUC,EAAS,EAAE,UAAU,CAAC,UAAUO,EAAU,UAAUC,CAAS,EAAE,UAAU,CAAC,UAAUK,GAAU,UAAUC,CAAS,CAAC,EAAEM,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgC,GAAa,GAAgBrH,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBwF,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,CAAC,CAAC,EAAE2B,GAAa,GAAgBrH,EAAK8H,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAON,GAAmB,OAAO,OAAO,kBAAkB,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,OAAO,EAAE,KAAK,IAAI,EAAE,IAAI,GAAGvI,EAAqB,CAAC,UAAU,CAAC,GAAGuI,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,KAAK,IAAI,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,KAAK,IAAI,EAAE,GAAG,CAAC,EAAEvC,EAAYI,CAAc,EAAE,SAAsBrF,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBwF,EAAiB,SAAS,sBAAsB,SAAsB1F,EAAKnB,GAAI,CAAC,UAAUyE,EAAU,UAAUC,EAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGtE,EAAqB,CAAC,UAAU,CAAC,UAAU6E,EAAU,UAAUC,EAAS,EAAE,UAAU,CAAC,UAAUa,GAAU,UAAUC,EAAS,CAAC,EAAEI,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgC,GAAa,GAAgBrH,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBwF,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,CAAC,CAAC,EAAE2B,GAAa,GAAgBrH,EAAK8H,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAON,GAAmB,OAAO,OAAO,kBAAkB,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,OAAO,EAAE,KAAK,IAAI,EAAE,IAAI,GAAGvI,EAAqB,CAAC,UAAU,CAAC,GAAGuI,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,KAAK,IAAI,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,OAAO,EAAE,KAAK,IAAI,EAAE,GAAG,CAAC,EAAEvC,EAAYI,CAAc,EAAE,SAAsBrF,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBwF,EAAiB,SAAS,sBAAsB,SAAsB1F,EAAKnB,GAAI,CAAC,UAAU2E,EAAU,UAAUC,GAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGxE,EAAqB,CAAC,UAAU,CAAC,UAAU+E,EAAU,UAAUC,CAAS,EAAE,UAAU,CAAC,UAAUa,GAAU,UAAUC,EAAS,CAAC,EAAEE,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ0C,GAAI,CAAC,kFAAkF,gFAAgF,qQAAqQ,2VAA2V,gbAAgb,0OAA0O,uSAAuS,8YAA8Y,m0BAAm0B,keAAke,iSAAiS,43EAA43E,uZAAuZ,oSAAoS,mgCAAmgC,sqCAAsqC,+RAA+R,2VAA2V,2WAA2W,+RAA+R,oSAAoS,sMAAsM,mbAAmb,uFAAuF,uJAAuJ,mbAAmb,uFAAuF,mbAAmb,uFAAuF,mbAAmb,wHAAwH,uHAAuH,wHAAwH,uHAAuH,wHAAwH,wHAAwH,wFAAwF,oiDAAoiD,sFAAsF,uEAAuE,8DAA8D,6DAA6D,wEAAwE,6DAA6D,wEAAwE,mbAAmb,GAAeA,GAAI,+bAA+b,EAS/0+DC,GAAgBC,GAAQxF,GAAUsF,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,WAAWA,GAAgB,aAAa,CAAC,OAAO,MAAM,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,kBAAkB,UAAU,mBAAmB,QAAQ,UAAU,aAAa,UAAU,sBAAsB,kBAAkB,QAAQ,SAAS,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,6EAA6E,gBAAgB,GAAM,MAAM,qBAAqB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAG,MAAM,0BAA0B,KAAKA,EAAY,QAAQ,EAAE,UAAU,CAAC,aAAa,2DAA2D,gBAAgB,GAAM,MAAM,qBAAqB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAG,MAAM,0BAA0B,KAAKA,EAAY,QAAQ,EAAE,UAAU,CAAC,aAAa,gDAAgD,gBAAgB,GAAM,MAAM,qBAAqB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAG,MAAM,0BAA0B,KAAKA,EAAY,QAAQ,EAAE,UAAU,CAAC,aAAa,8DAA8D,gBAAgB,GAAM,MAAM,qBAAqB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAG,MAAM,0BAA0B,KAAKA,EAAY,QAAQ,EAAE,UAAU,CAAC,aAAa,6BAA6B,gBAAgB,GAAM,MAAM,qBAAqB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAG,MAAM,0BAA0B,KAAKA,EAAY,QAAQ,EAAE,UAAU,CAAC,aAAa,wBAAwB,gBAAgB,GAAM,MAAM,qBAAqB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAG,MAAM,0BAA0B,KAAKA,EAAY,QAAQ,EAAE,UAAU,CAAC,aAAa,iDAAiD,gBAAgB,GAAM,MAAM,qBAAqB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAG,MAAM,0BAA0B,KAAKA,EAAY,QAAQ,EAAE,UAAU,CAAC,aAAa,oBAAoB,gBAAgB,GAAM,MAAM,qBAAqB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAG,MAAM,0BAA0B,KAAKA,EAAY,QAAQ,EAAE,UAAU,CAAC,aAAa,+CAA+C,gBAAgB,GAAM,MAAM,oBAAoB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAG,MAAM,yBAAyB,KAAKA,EAAY,QAAQ,EAAE,UAAU,CAAC,aAAa,kEAAkE,gBAAgB,GAAM,MAAM,oBAAoB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAG,MAAM,yBAAyB,KAAKA,EAAY,QAAQ,EAAE,UAAU,CAAC,aAAa,sHAAsH,gBAAgB,GAAM,MAAM,kBAAkB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAG,MAAM,uBAAuB,KAAKA,EAAY,QAAQ,EAAE,UAAU,CAAC,aAAa,qDAAqD,gBAAgB,GAAM,MAAM,mBAAmB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAG,MAAM,uBAAuB,KAAKA,EAAY,QAAQ,EAAE,UAAU,CAAC,aAAa,+DAA+D,gBAAgB,GAAM,MAAM,kBAAkB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAG,MAAM,uBAAuB,KAAKA,EAAY,QAAQ,EAAE,UAAU,CAAC,aAAa,oCAAoC,gBAAgB,GAAM,MAAM,mBAAmB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAG,MAAM,uBAAuB,KAAKA,EAAY,QAAQ,EAAE,UAAU,CAAC,aAAa,oDAAoD,gBAAgB,GAAM,MAAM,mBAAmB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAG,MAAM,uBAAuB,KAAKA,EAAY,QAAQ,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,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,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,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGrJ,GAAS,GAAG2J,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECJhtO,SAARC,GAA2BC,EAAM,CAAC,GAAK,CAACC,EAAMC,CAAQ,EAAEC,GAAS,EAAE,EAAE,OAAAC,GAAU,IAAI,CAAC,IAAMC,EAAM,SAAS,cAAc,OAAO,EAAE,OAAAA,EAAM,UAAU;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,UAkBhJ,SAAS,KAAK,YAAYA,CAAK,EAAQ,IAAI,CAAC,SAAS,KAAK,YAAYA,CAAK,CAAE,CAAE,EAAE,CAAC,CAAC,EACyEC,EAAMC,GAAU,CAAC,SAAS,CAAcD,EAAM,OAAO,CAAC,SAD1GE,GAAO,CAAwE,GAAvEA,EAAM,eAAe,EAAqB,6BAA6C,KAAKP,CAAK,EAAE,CAC7N,IAAMQ,EAAI,gDAAgDR,CAAK,GAAGS,EAAO,KAAKD,EAAI,QAAQ,CAAE,MAAM,MAAM,qCAAqC,CAAG,EAAkG,MAAME,GAAU,SAAS,CAAcC,EAAK,QAAQ,CAAC,KAAK,QAAQ,MAAMX,EAAM,SAASY,GAAGX,EAASW,EAAE,OAAO,KAAK,EAAE,YAAY,mBAAmB,MAAMC,GAAW,SAAS,EAAI,CAAC,EAAeF,EAAK,SAAS,CAAC,KAAK,SAAS,MAAMG,GAAY,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,EAAeH,EAAK,QAAQ,CAAC,SAAS;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,aAQhhB,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,IAAMD,GAAU,CAAC,WAAW,UAAU,OAAO,mCAAmC,UAAU,4CAA4C,QAAQ,OAAO,MAAM,QAAQ,SAAS,QAAQ,OAAO,OAAO,QAAQ,OAAO,SAAS,OAAO,aAAa,OAAO,eAAe,SAAS,IAAI,MAAM,EAAQG,GAAW,CAAC,WAAW,oBAAoB,SAAS,OAAO,WAAW,MAAM,WAAW,OAAO,cAAc,UAAU,UAAU,OAAO,MAAM,UAAU,OAAO,oBAAoB,aAAa,MAAM,SAAS,EAAE,WAAW,UAAU,YAAY,MAAM,EAAQC,GAAY,CAAC,MAAM,OAAO,WAAW,6DAA6D,QAAQ,YAAY,WAAW,oBAAoB,SAAS,OAAO,WAAW,MAAM,WAAW,OAAO,cAAc,UAAU,UAAU,SAAS,MAAM,UAAU,OAAO,OAAO,aAAa,MAAM,OAAO,SAAS,EChCx0BC,GAAU,UAAU,CAAC,aAAa,cAAc,oBAAoB,kBAAkB,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,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,uEAAuE,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,uEAAuE,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,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,glCAAglC,soCAAsoC,koCAAkoC,EAAeC,GAAU,eCAnpTC,GAAU,UAAU,CAAC,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,sYAAsY,EAAeC,GAAU,eCA5fC,GAAU,UAAU,CAAC,aAAa,cAAc,oBAAoB,kBAAkB,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,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,uEAAuE,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,uEAAuE,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,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,6kCAA6kC,moCAAmoC,+nCAA+nC,EAAeC,GAAU,eCA1oT,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,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,CAAM,CAACF,EAAOA,EAAO,QAAS,CAAC,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,CAAE,CAACL,EAAOA,EAAO,QAAS,CAAC,GAAGI,EAAS,OAAO,EAAE,OAAO,QAAQ,IAAIA,CAAQ,CAAE,CAAQ,SAASE,GAA0BN,EAAO,CAAC,IAAMO,EAAeJ,GAAQH,CAAM,EAAE,GAAGO,EAAe,MAAMA,CAAe,CCAq7D,IAAMC,GAAUC,EAASC,EAAI,EAAQC,GAA4BC,GAAwBF,EAAI,EAAQG,GAAaJ,EAASK,EAAO,EAAQC,GAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAWT,EAASU,EAAK,EAAQC,GAAeX,EAASY,EAAS,EAAQC,GAAYN,GAAOO,CAAK,EAAQC,GAAYf,EAASgB,EAAM,EAAQC,GAAajB,EAASgB,EAAO,EAAQE,GAAYlB,EAASmB,EAAM,EAAQC,GAAYpB,EAASqB,EAAM,EAAQC,GAAWtB,EAASuB,EAAK,EAAQC,GAAYxB,EAASyB,EAAM,EAAQC,GAAuB1B,EAAS2B,EAAiB,EAAQC,GAAiB5B,EAAS6B,EAAW,EAAQC,GAAgB9B,EAAS+B,EAAU,EAAQC,GAAqBhC,EAASiC,EAAe,EAAQC,GAAiBlC,EAASmC,EAAW,EAAQC,GAAoBpC,EAASqC,EAAc,EAAQC,GAAatC,EAASuC,EAAO,EAAQC,GAAUxC,EAASyC,EAAI,EAAQC,GAAY,CAAC,UAAU,qBAAqB,UAAU,6CAA6C,UAAU,qBAAqB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,EAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,EAAU,CAAC,QAAQ,EAAE,OAAO,IAAI,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAmB,CAACN,EAAEC,IAAI,yBAAyBA,CAAC,GAASM,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAa,IAAY,SAAS,cAAc,mBAAmB,GAAG,SAAS,cAAc,UAAU,GAAG,SAAS,KAAaC,GAAQ,CAAC,CAAC,SAAAC,EAAS,uBAAAC,EAAuB,QAAAC,EAAQ,EAAI,IAAI,CAAC,GAAK,CAACC,EAAQC,CAAU,EAAEC,GAAgB,CAAC,uBAAAJ,CAAsB,CAAC,EAAE,OAAOD,EAAS,CAAC,KAAK,IAAII,EAAW,EAAK,EAAE,KAAK,IAAIA,EAAW,EAAI,EAAE,OAAO,IAAIA,EAAW,CAACD,CAAO,EAAE,QAAQD,GAASC,CAAO,CAAC,CAAE,EAAQG,GAAW,CAAC,QAAQ,EAAE,OAAO,IAAI,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,EAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,EAAW,EAAQE,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAA6BC,GAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,GAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,GAAQ,UAAAC,EAAU,GAAGC,CAAS,EAAEvB,GAASI,CAAK,EAAQoB,GAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUZ,CAAY,EAAE,GAAGY,EAAS,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,EAAG,CAAC,EAAE,CAAC,OAAUb,CAAY,CAAC,EAAQc,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUZ,CAAY,EAAE,SAAS,MAAMY,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUZ,CAAY,CAAC,EAAE,GAAK,CAACe,EAAYC,EAAmB,EAAEC,GAA8BT,GAAQ3D,GAAY,EAAK,EAAQqE,GAAe,OAAe,CAAC,sBAAAC,EAAsB,MAAAC,CAAK,EAAEC,GAAyB,MAAS,EAAQC,GAAgB,CAAC,CAAC,QAAAC,EAAQ,SAAAC,CAAQ,IAAIL,EAAsB,SAASM,KAAO,CAACF,EAAQ,OAAO,CAAE,CAAC,EAAQG,EAAa,CAAC,CAAC,QAAAH,EAAQ,SAAAC,CAAQ,IAAIL,EAAsB,SAASM,KAAO,CAACF,EAAQ,KAAK,CAAE,CAAC,EAAsMI,EAAkBC,EAAG7E,GAAkB,GAA/M,CAAauD,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAEuB,GAA0B7B,CAAY,EAAE,IAAM8B,EAAUC,GAAkB,WAAW,EAAQC,GAAWpC,GAAO,IAAI,EAAQqC,EAAY,IAASnF,GAAU,EAAiB,EAAC,YAAY,WAAW,EAAE,SAASiE,CAAW,EAAtD,GAAyFmB,EAAa,IAASpF,GAAU,EAAiBiE,IAAc,YAAtB,GAAmEoB,EAAa,IAAQ,CAACrF,GAAU,GAAiBiE,IAAc,YAAuC,OAAAqB,GAAiB,CAAC,CAAC,EAAsBnD,EAAKoD,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAArF,EAAiB,EAAE,SAAsBsF,EAAMC,GAAY,CAAC,GAAGhC,GAAUT,EAAgB,SAAS,CAAcb,EAAKH,GAAU,CAAC,MAAM,+CAA+C,CAAC,EAAewD,EAAM3H,EAAO,IAAI,CAAC,GAAG+F,EAAU,UAAUkB,EAAGD,EAAkB,iBAAiBrB,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcpB,EAAKuD,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,EAAE,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,aAAa,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,kBAAkBxF,GAAmB,SAAsBgC,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,0BAA0B,CAAC,UAAU,OAAO,OAAO,WAAW,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,0BAA0B,CAAC,UAAU,OAAO,OAAO,WAAW,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsB9B,EAAK5E,GAA4B,CAAC,sBAAsB,GAAM,0BAA0B,CAAC,UAAU,OAAO,OAAO,WAAW,EAAE,oBAAoB,GAAG,qCAAqC,GAAK,UAAU,sCAAsC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4E,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKzE,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyE,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,MAAM,MAAMA,GAAmB,OAAO,QAAQ,IAAI,qEAAqE,OAAO,gQAAgQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,MAAM,MAAMA,GAAmB,OAAO,QAAQ,IAAI,qEAAqE,OAAO,gQAAgQ,CAAC,CAAC,EAAE,SAAsBlB,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,MAAM,MAAMkF,GAAmB,OAAO,QAAQ,IAAI,qEAAqE,OAAO,gQAAgQ,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,SAAsBmC,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAKxE,GAAgB,CAAC,eAAe4C,EAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC,EAAe6B,EAAKxE,GAAgB,CAAC,eAAe8C,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,OAAO,yBAAyBD,GAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,eAAe,CAAC,EAAe2B,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKpE,GAAM,CAAC,OAAO,OAAO,KAAK+H,EAAkB,KAAK5C,CAAY,GAAG;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;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,YAA08D,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesC,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrD,EAAK4D,EAAS,CAAC,sBAAsB,GAAK,SAASD,EAAkB,KAAK5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,oCAAoC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK4D,EAAS,CAAC,sBAAsB,GAAK,SAASD,EAAkB,KAAK5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,wGAAwG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKlE,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekE,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,iBAAiB,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,EAAE,EAAE,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAOA,GAAmB,OAAO,OAAO,mBAAmB,IAAI,sEAAsE,OAAO,6bAA6b,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,iBAAiB,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,EAAE,EAAE,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAOA,GAAmB,OAAO,OAAO,mBAAmB,IAAI,sEAAsE,OAAO,6bAA6b,CAAC,CAAC,EAAE,SAAsBlB,EAAKjE,GAAY,CAAC,iBAAiB,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,IAAI,UAAU,IAAI,KAAK,QAAQ,EAAE,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,GAAG,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,WAAW,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,iBAAiB,IAAI,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAOmF,GAAmB,OAAO,OAAO,mBAAmB,IAAI,sEAAsE,OAAO,6bAA6b,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,EAAE,QAAQ,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,EAAE,QAAQ,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjE,GAAY,CAAC,eAAeqC,EAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAe6B,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,EAAE,QAAQ,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,EAAE,QAAQ,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjE,GAAY,CAAC,eAAeqC,EAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekF,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAK4D,EAAS,CAAC,sBAAsB,GAAK,SAASD,EAAkB,KAAK5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,iBAAiB,EAAE,SAAS,gCAAgC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAK9D,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,EAAE,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcmH,EAAM3H,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcsE,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,QAAQ,IAAI,MAAM,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,eAAe,CAAC,EAAegE,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,OAAO,IAAI,MAAM,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,eAAe,CAAC,EAAegE,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,YAAY,IAAI,MAAM,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,CAAC,EAAegE,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,CAAC,EAAegE,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,SAAS,IAAI,MAAM,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,CAAC,EAAegE,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,UAAU,IAAI,MAAM,gBAAgB,GAAG,eAAe,GAAG,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,eAAe,CAAC,EAAegE,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,SAAS,IAAI,MAAM,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,CAAC,EAAegE,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,SAAS,IAAI,MAAM,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,CAAC,EAAegE,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,cAAc,IAAI,MAAM,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,eAAe,CAAC,EAAegE,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,cAAc,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,CAAC,EAAegE,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,YAAY,IAAI,MAAM,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,CAAC,EAAegE,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,SAAS,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqH,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAcrD,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAK9D,GAAQ,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,EAAE,OAAO,OAAO,YAAY,EAAE,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAc8D,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,SAAS,IAAI,sEAAsE,OAAO,6bAA6b,EAAE,UAAU,gBAAgB,mBAAmB,iBAAiB,MAAM,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC,EAAE,MAAM,IAAI,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegE,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,YAAY,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAOA,GAAmB,OAAO,OAAO,mBAAmB,IAAI,0FAA0F,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,YAAY,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,WAAWA,GAAmB,OAAO,OAAO,yBAAyB,IAAI,0FAA0F,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBlB,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,YAAY,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,WAAWkF,GAAmB,OAAO,OAAO,yBAAyB,IAAI,0FAA0F,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,SAAsBlB,EAAKlB,GAAQ,CAAC,SAASwD,GAAsBtC,EAAK8D,GAAU,CAAC,SAAsB9D,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,OAAO,GAAGZ,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,KAAK,CAAC,EAAE,SAAsBlB,EAAKuD,EAA0B,CAAC,OAAO,GAAG,SAAsBF,EAAMG,EAAU,CAAC,UAAU,0BAA0B,GAAG,SAAS,OAAO,YAAY,QAAQ,YAAY,SAAS,CAAcxD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB9B,EAAK3D,GAAO,CAAC,UAAUgG,GAAgB,CAAC,QAAAC,CAAO,CAAC,EAAE,UAAU,qBAAqB,UAAU,aAAa,OAAO,OAAO,UAAUqB,EAAkB,KAAK5C,CAAY,GAAG,kBAAkB,GAAG,YAAY,UAAU,GAAM,SAAS,YAAY,UAAU,qEAAqE,UAAU,wEAAwE,UAAU,GAAM,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,EAAef,EAAK+D,GAAgB,CAAC,SAASzB,EAAQ,SAAsBtC,EAAK8D,GAAU,CAAC,SAA+BE,GAA0BX,EAAYQ,EAAS,CAAC,SAAS,CAAc7D,EAAKtE,EAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,GAAG,EAAE,IAAI,GAAG,EAAE,KAAK,OAAO,CAAC,EAAE,UAAUiH,EAAGD,EAAkB,gBAAgB,EAAE,wBAAwB,SAAS,KAAK,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,GAAG,EAAE,IAAI,GAAG,EAAE,KAAK,OAAO,CAAC,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,IAAIJ,EAAQ,KAAK,CAAC,EAAE,WAAW,EAAee,EAAM3H,EAAO,IAAI,CAAC,UAAUiH,EAAGD,EAAkB,eAAe,EAAE,wBAAwB,SAAS,SAAS,CAAc1C,EAAKtE,EAAO,IAAI,CAAC,UAAU,gBAAgB,MAAM+G,EAAa,CAAC,QAAAH,CAAO,CAAC,EAAE,SAAsBtC,EAAKtE,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsBsE,EAAKiE,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,IAAI,QAAQ,EAAE,IAAI,4RAA4R,aAAa,WAAW,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeZ,EAAM3H,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAcsE,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,kBAAkBjF,GAAmB,SAAsByB,EAAKzD,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyD,EAAKtE,EAAO,IAAI,CAAC,QAAQiD,GAAW,UAAU,iBAAiB,mBAAmB,QAAQ,KAAKF,GAAW,QAAQG,GAAW,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBoB,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBxD,EAAKvD,GAAM,CAAC,SAAS,GAAK,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAK,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAM,KAAK,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,MAAMkH,EAAkB,KAAK5C,CAAY,GAAG,yCAAyC,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKtE,EAAO,IAAI,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmD,GAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemB,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,4BAA4B,MAAS,CAAC,EAAE,SAAsB9B,EAAKxE,GAAgB,CAAC,eAAe4C,EAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,EAAE,kBAAkBI,EAAkB,CAAC,CAAC,CAAC,EAAeyB,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,OAAO,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,4BAA4B,OAAU,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,OAAO,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjE,GAAY,CAAC,eAAeqC,EAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,kBAAkBI,EAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyB,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,uQAAuQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,uQAAuQ,CAAC,CAAC,EAAE,SAAsBmC,EAAMrH,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAMkF,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,oQAAoQ,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAcmC,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAK4D,EAAS,CAAC,sBAAsB,GAAK,SAASD,EAAkB,KAAK5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK4D,EAAS,CAAC,sBAAsB,GAAK,SAASD,EAAkB,KAAK5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsBR,EAAM,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,CAAC,cAA2BrD,EAAK,SAAS,CAAC,SAAS,mBAAmB,CAAC,EAAE,2BAAwCA,EAAK,KAAK,CAAC,CAAC,EAAE,sDAAmEA,EAAK,SAAS,CAAC,SAAS,gBAAgB,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,QAAQ,YAAY,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeqD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS6B,EAAkB,MAAM5C,CAAY,GAAgBsC,EAAYQ,EAAS,CAAC,SAAS,CAAc7D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,qCAAqC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAS2D,EAAkB,KAAK5C,CAAY,GAAgBsC,EAAYQ,EAAS,CAAC,SAAS,CAAc7D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,sBAAsB,oBAAoB,EAAE,SAAS,qCAAqC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,sBAAsB,oBAAoB,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK4D,EAAS,CAAC,sBAAsB,GAAK,SAASD,EAAkB,KAAK5C,CAAY,GAAgBsC,EAAYQ,EAAS,CAAC,SAAS,CAAc7D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,sBAAsB,oBAAoB,EAAE,SAAS,qCAAqC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,sBAAsB,oBAAoB,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,aAAa,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS6B,EAAkB,MAAM5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsBR,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,CAAcrD,EAAK,SAAS,CAAC,SAAS,0CAA0C,CAAC,EAAE,8DAA8D,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK4D,EAAS,CAAC,sBAAsB,GAAK,SAASD,EAAkB,MAAM5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsBR,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oBAAoB,EAAE,SAAS,CAAcrD,EAAK,SAAS,CAAC,SAAS,0CAA0C,CAAC,EAAE,8DAA8D,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,QAAQ,YAAY,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGZ,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,IAAI,EAAE,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKuD,EAA0B,CAAC,OAAO,GAAG,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKrD,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUgH,EAAkB,MAAM5C,CAAY,GAAG,iBAAiB,QAAQ,YAAY,UAAU,qBAAqB,MAAM,OAAO,UAAU,wCAAwC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,IAAI,EAAE,EAAE,EAAE,GAAG,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,WAAWA,GAAmB,OAAO,OAAO,2BAA2B,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,IAAI,EAAE,EAAE,KAAK,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,eAAeA,GAAmB,OAAO,OAAO,uCAAuC,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,CAAC,EAAE,SAAsBlB,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,eAAekF,GAAmB,OAAO,OAAO,uCAAuC,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemC,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,GAAGR,EAAU,IAAIE,GAAK,SAAS,CAAc/C,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,IAAI,EAAE,KAAK,EAAE,EAAE,QAAQ,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjE,GAAY,CAAC,eAAeqC,EAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAe6B,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,IAAI,EAAE,KAAK,EAAE,EAAE,QAAQ,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,IAAI,EAAE,IAAI,EAAE,QAAQ,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjE,GAAY,CAAC,eAAeqC,EAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,kBAAkBI,EAAkB,CAAC,CAAC,CAAC,EAAeyB,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS6B,EAAkB,MAAM5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,qEAAqE,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAS2D,EAAkB,MAAM5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,qEAAqE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK4D,EAAS,CAAC,sBAAsB,GAAK,SAASD,EAAkB,MAAM5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,qEAAqE,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,IAAI,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,eAAeA,GAAmB,OAAO,OAAO,0CAA0C,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,sDAAsD,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBlB,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,gBAAgBkF,GAAmB,OAAO,OAAO,sDAAsD,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,SAAsBlB,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKpE,GAAM,CAAC,OAAO,OAAO,KAAK+H,EAAkB,MAAM5C,CAAY,GAAG;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;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA67D,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKxE,GAAgB,CAAC,eAAe8C,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,OAAO,yBAAyBD,GAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,EAAegF,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS6B,EAAkB,MAAM5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,mCAAmC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAS2D,EAAkB,MAAM5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,mCAAmC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK4D,EAAS,CAAC,sBAAsB,GAAK,SAASD,EAAkB,MAAM5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,mCAAmC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,0BAA0B,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,IAAI,EAAE,KAAK,EAAE,IAAI,GAAG,EAAE,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,eAAeA,GAAmB,OAAO,OAAO,0CAA0C,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,0BAA0B,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,iBAAiBA,GAAmB,OAAO,OAAO,+CAA+C,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsBlB,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,0BAA0B,IAAI,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,gBAAgBkF,GAAmB,OAAO,OAAO,sDAAsD,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAelB,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,IAAI,EAAE,KAAK,EAAE,IAAI,KAAK,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjE,GAAY,CAAC,eAAeqC,EAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAe6B,EAAKxE,GAAgB,CAAC,eAAe8C,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,OAAO,yBAAyBD,GAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegF,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrD,EAAK4D,EAAS,CAAC,sBAAsB,GAAK,SAASD,EAAkB,MAAM5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,mCAAmC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK4D,EAAS,CAAC,sBAAsB,GAAK,SAASD,EAAkB,MAAM5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsBR,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,CAAcrD,EAAK,SAAS,CAAC,SAAS,iBAAiB,CAAC,EAAeA,EAAKkE,GAAK,CAAC,KAAK,0CAA0C,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,aAAa,GAAM,SAAsBlE,EAAKtE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAsBsE,EAAK,SAAS,CAAC,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,mEAAgFA,EAAK,SAAS,CAAC,SAAS,SAAS,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,QAAQ,YAAY,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,IAAI,EAAE,KAAK,GAAG,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAOA,GAAmB,OAAO,OAAO,mBAAmB,IAAI,oEAAoE,OAAO,mbAAmb,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,IAAI,EAAE,KAAK,GAAG,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAOA,GAAmB,OAAO,OAAO,mBAAmB,IAAI,oEAAoE,OAAO,mbAAmb,CAAC,CAAC,EAAE,SAAsBlB,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAOkF,GAAmB,OAAO,OAAO,mBAAmB,IAAI,oEAAoE,OAAO,mbAAmb,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAelB,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOZ,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,IAAI,EAAE,KAAK,GAAG,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,IAAI,EAAE,KAAK,GAAG,GAAG,CAAC,EAAE,SAAsBlB,EAAKuD,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAOrC,GAAmB,OAAO,OAAO,mBAAmB,SAAsBlB,EAAKwD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKnD,GAAkB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU8G,EAAkB,MAAM5C,CAAY,GAAG,qBAAqB,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,UAAU,0CAA0C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAsBqD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,SAAS,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,SAAS,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjE,GAAY,CAAC,eAAesD,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBlB,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAekF,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,MAAM,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,MAAM,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,MAAM,IAAI,sEAAsE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAegE,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,KAAK6B,EAAkB,MAAM5C,CAAY,GAAG;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;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,wGAAmnC,CAAC,EAAE,SAAsBf,EAAKpE,GAAM,CAAC,OAAO,OAAO,KAAK+H,EAAkB,MAAM5C,CAAY,GAAG;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;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,yGAAonC,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,QAAQ,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,QAAQ,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjE,GAAY,CAAC,eAAeqC,EAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAe6B,EAAK4D,EAAS,CAAC,sBAAsB,GAAK,SAASD,EAAkB,MAAM5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsBR,EAAM,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,CAAcrD,EAAK,SAAS,CAAC,SAAS,8DAA8D,CAAC,EAAE,0EAA0E,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,QAAQ,YAAY,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKtE,EAAO,IAAI,CAAC,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC,EAAesE,EAAKxE,GAAgB,CAAC,eAAe4C,EAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOZ,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKuD,EAA0B,CAAC,OAAO,IAAI,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsB9B,EAAKjD,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGZ,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,IAAI,CAAC,EAAE,SAAsBlB,EAAKuD,EAA0B,CAAC,OAAO,GAAG,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKrD,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU2C,GAAY,CAAC,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,EAAE,EAAE,SAAS,YAAY,UAAUA,GAAY,CAAC,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,EAAE,EAAE,UAAUqE,EAAkB,MAAM5C,CAAY,GAAG,aAAa,QAAQ,YAAY,UAAU,sEAAsE,MAAM,OAAO,UAAU,yCAAyC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKxE,GAAgB,CAAC,eAAeiE,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBpB,GAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,kBAAkBE,EAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8E,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBlB,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeqH,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrD,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,KAAK6B,EAAkB,MAAM5C,CAAY,GAAG;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;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,6HAAmoC,CAAC,EAAE,SAAsBf,EAAKpE,GAAM,CAAC,OAAO,OAAO,KAAK+H,EAAkB,MAAM5C,CAAY,GAAG;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;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,8HAAooC,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAK4D,EAAS,CAAC,sBAAsB,GAAK,SAASD,EAAkB,MAAM5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsBR,EAAM,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,CAAcrD,EAAK,SAAS,CAAC,SAAS,wBAAwB,CAAC,EAAE,yFAAsGA,EAAK,SAAS,CAAC,SAAS,kBAAkB,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,QAAQ,YAAY,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWZ,GAAmB,OAAO,OAAO,2BAA2B,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKuD,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWrC,GAAmB,OAAO,OAAO,2BAA2B,SAAsBlB,EAAKwD,EAAU,CAAC,UAAU,yBAAyB,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB9B,EAAK/C,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,QAAQ,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,QAAQ,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjE,GAAY,CAAC,eAAeqC,EAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,QAAQ,EAAE,YAAY,EAAE,WAAW,EAAE,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,OAAO,EAAE,YAAY,EAAE,WAAW,EAAE,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjE,GAAY,CAAC,eAAeuC,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,OAAO,yBAAyBD,GAAY,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,EAAE,WAAW,EAAE,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAe2B,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,SAAS,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,SAAS,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjE,GAAY,CAAC,eAAeqC,EAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAKxE,GAAgB,CAAC,eAAe4C,EAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeqD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,KAAK,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,KAAK,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBlB,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeqH,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrD,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,KAAK6B,EAAkB,MAAM5C,CAAY,GAAG;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;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,CAAorC,CAAC,EAAE,SAAsBf,EAAKpE,GAAM,CAAC,OAAO,OAAO,KAAK+H,EAAkB,MAAM5C,CAAY,GAAG;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;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAqrC,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAK4D,EAAS,CAAC,sBAAsB,GAAK,SAASD,EAAkB,MAAM5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsBR,EAAM,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,CAAcrD,EAAK,SAAS,CAAC,SAAS,qDAAqD,CAAC,EAAE,kFAAkF,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,QAAQ,YAAY,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWZ,GAAmB,OAAO,OAAO,2BAA2B,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,KAAK,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,WAAWA,GAAmB,OAAO,OAAO,2BAA2B,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,KAAK,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKuD,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWrC,GAAmB,OAAO,OAAO,2BAA2B,SAAsBlB,EAAKwD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB9B,EAAK7C,GAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6C,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,KAAK,OAAO,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,KAAK,QAAQ,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjE,GAAY,CAAC,eAAeqC,EAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAe6B,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,KAAK,QAAQ,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,KAAK,QAAQ,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjE,GAAY,CAAC,eAAeqC,EAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAe6B,EAAKxE,GAAgB,CAAC,eAAe4C,EAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC,EAAe6B,EAAKxE,GAAgB,CAAC,eAAe8C,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,OAAO,yBAAyBD,GAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegF,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,SAAS,CAACL,EAAY,GAAgBhD,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,wDAAwD,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAK9D,GAAQ,CAAC,UAAU,SAAS,UAAU,SAAS,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,EAAE,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcmH,EAAM3H,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAcsE,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,aAAa,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,uBAAuB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,cAAc,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,iBAAiB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsD,EAAa,GAAgBjD,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,0CAA0C,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAK9D,GAAQ,CAAC,UAAU,SAAS,UAAU,MAAM,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,EAAE,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcmH,EAAM3H,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAS,CAAcsE,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,aAAa,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,cAAc,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,iBAAiB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,2BAA2B,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,qEAAqE,OAAO,mKAAmK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,gDAAgD,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,mBAAmB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,cAAc,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsD,EAAa,GAAgBjD,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,yCAAyC,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAK9D,GAAQ,CAAC,UAAU,SAAS,UAAU,SAAS,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,EAAE,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcmH,EAAM3H,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAS,CAAcsE,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,eAAe,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,yBAAyB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,qEAAqE,OAAO,mKAAmK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,iBAAiB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,qEAAqE,OAAO,mKAAmK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,kBAAkB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,2BAA2B,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,cAAc,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeK,EAAKkE,GAAK,CAAC,KAAK,+CAA+C,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBlE,EAAKtE,EAAO,EAAE,CAAC,UAAU,gCAAgC,kBAAkB6C,GAAmB,SAAsByB,EAAK4D,EAAS,CAAC,sBAAsB,GAAK,SAASD,EAAkB,MAAM5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,gCAAgC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiD,EAAa,GAAgBjD,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,0CAA0C,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAK9D,GAAQ,CAAC,UAAU,SAAS,UAAU,MAAM,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,EAAE,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcmH,EAAM3H,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAS,CAAcsE,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,qBAAqB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,4BAA4B,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,0BAA0B,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,2BAA2B,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,qBAAqB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqD,EAAY,GAAgBhD,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,uDAAuD,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAK9D,GAAQ,CAAC,UAAU,SAAS,UAAU,SAAS,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,EAAE,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcmH,EAAM3H,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAS,CAAcsE,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,uBAAuB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,mBAAmB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqD,EAAY,GAAgBhD,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,uDAAuD,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAK9D,GAAQ,CAAC,UAAU,SAAS,UAAU,SAAS,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,EAAE,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcmH,EAAM3H,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcsE,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,iBAAiB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,qEAAqE,OAAO,mKAAmK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,yBAAyB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,qBAAqB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,4BAA4B,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,2BAA2B,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,0BAA0B,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEuD,EAAa,GAAgBlD,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,uDAAuD,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB9B,EAAK9D,GAAQ,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,EAAE,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcmH,EAAM3H,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAS,CAAcsE,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,aAAa,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,uBAAuB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,cAAc,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,iBAAiB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,SAAS,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEuD,EAAa,GAAgBlD,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,wDAAwD,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU,QAAQ,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB9B,EAAK9D,GAAQ,CAAC,UAAU,SAAS,UAAU,MAAM,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,EAAE,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcmH,EAAM3H,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAS,CAAcsE,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,aAAa,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,cAAc,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,iBAAiB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,2BAA2B,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,qEAAqE,OAAO,mKAAmK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,gDAAgD,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,mBAAmB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,cAAc,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,SAAS,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEuD,EAAa,GAAgBlD,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,uDAAuD,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB9B,EAAK9D,GAAQ,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,EAAE,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcmH,EAAM3H,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAS,CAAcsE,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,yBAAyB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,qEAAqE,OAAO,mKAAmK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,iBAAiB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,qEAAqE,OAAO,mKAAmK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,kBAAkB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,2BAA2B,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,cAAc,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,SAAS,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEuD,EAAa,GAAgBlD,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,uDAAuD,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB9B,EAAK9D,GAAQ,CAAC,UAAU,SAAS,UAAU,QAAQ,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,EAAE,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcmH,EAAM3H,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAS,CAAcsE,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,qBAAqB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,4BAA4B,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,0BAA0B,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,2BAA2B,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,qBAAqB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,SAAS,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEuD,EAAa,GAAgBlD,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,wDAAwD,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB9B,EAAK9D,GAAQ,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,EAAE,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcmH,EAAM3H,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAS,CAAcsE,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,uBAAuB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,WAAW2D,CAAU,CAAC,EAAeK,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,mBAAmB,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,iBAAiB,WAAW2D,CAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,SAAS,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0D,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,KAAK6B,EAAkB,MAAM5C,CAAY,GAAG;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;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,CAAymC,CAAC,EAAE,SAAsBf,EAAKpE,GAAM,CAAC,OAAO,OAAO,KAAK+H,EAAkB,MAAM5C,CAAY,GAAG;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;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA0mC,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAK4D,EAAS,CAAC,sBAAsB,GAAK,SAASD,EAAkB,MAAM5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsBR,EAAM,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,CAAcrD,EAAK,SAAS,CAAC,SAAS,uDAAuD,CAAC,EAAE,4EAA4E,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,QAAQ,YAAY,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,wBAAwB,IAAI,OAAO,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,MAAM,GAAG,GAAG,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,WAAWA,GAAmB,OAAO,OAAO,2BAA2B,IAAI,uEAAuE,OAAO,2EAA2E,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,wBAAwB,IAAI,OAAO,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,MAAM,GAAG,GAAG,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,WAAWA,GAAmB,OAAO,OAAO,4BAA4B,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsBlB,EAAKhE,EAAM,CAAC,WAAW,CAAC,IAAI,wBAAwB,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM,WAAWkF,GAAmB,OAAO,OAAO,4BAA4B,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAelB,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,MAAM,QAAQ,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,MAAM,OAAO,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjE,GAAY,CAAC,eAAeqC,EAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAe6B,EAAKxE,GAAgB,CAAC,eAAe8C,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBsB,GAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,CAAC,EAAeI,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,MAAM,QAAQ,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,MAAM,SAAS,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjE,GAAY,CAAC,eAAeqC,EAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekF,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAcrD,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,KAAK6B,EAAkB,MAAM5C,CAAY,GAAG;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;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,CAA8mC,CAAC,EAAE,SAAsBf,EAAKpE,GAAM,CAAC,OAAO,OAAO,KAAK+H,EAAkB,MAAM5C,CAAY,GAAG;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;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA+mC,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWZ,GAAmB,OAAO,OAAO,2BAA2B,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKuD,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYrC,GAAmB,OAAO,OAAO,oBAAoB,SAAsBlB,EAAKwD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB9B,EAAK3C,GAAY,CAAC,UAAUsG,EAAkB,MAAM5C,CAAY,GAAG,oBAAoB,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,aAAa,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,uSAAuS,OAAO,OAAO,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,iBAAiB,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,iBAAiB,GAAG,YAAY,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,WAAW,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,uQAAuQ,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,aAAa,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,oBAAoB,SAAS,YAAY,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,ySAAyS,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,yLAAyL,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,4UAA4U,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,yBAAyB,QAAQ,YAAY,MAAM,OAAO,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,UAAU,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,qBAAqB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,MAAM,MAAM,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,MAAM,QAAQ,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjE,GAAY,CAAC,eAAeqC,EAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAe6B,EAAKxE,GAAgB,CAAC,eAAe8C,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBsB,GAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,CAAC,EAAeI,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,MAAM,QAAQ,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,MAAM,QAAQ,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjE,GAAY,CAAC,eAAeqC,EAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,kBAAkBI,EAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyB,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBqD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,KAAK6B,EAAkB,MAAM5C,CAAY,GAAG;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;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,CAAoiC,CAAC,EAAE,SAAsBf,EAAKpE,GAAM,CAAC,OAAO,OAAO,KAAK+H,EAAkB,MAAM5C,CAAY,GAAG;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;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAokC,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAK4D,EAAS,CAAC,sBAAsB,GAAK,SAASD,EAAkB,MAAM5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsBR,EAAM,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,CAAcrD,EAAK,SAAS,CAAC,SAAS,kBAAkB,CAAC,EAAE,kDAAkD,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,QAAQ,YAAY,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeqD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOZ,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,GAAG,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKuD,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWrC,GAAmB,OAAO,OAAO,yBAAyB,SAAsBlB,EAAKwD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKzC,GAAe,CAAC,UAAU,GAAG,UAAUoG,EAAkB,MAAM5C,CAAY,GAAG,OAAO,UAAU,GAAM,UAAUzB,GAAY,CAAC,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,EAAE,EAAE,UAAU,yCAAyC,UAAUqE,EAAkB,MAAM5C,CAAY,GAAG,MAAM,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,wBAAwB,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,oBAAoB,OAAO,OAAO,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,qBAAqB,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,oCAAoC,GAAG,YAAY,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,uBAAuB,UAAU,GAAM,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,IAAI,UAAU,qBAAqB,SAAS,YAAY,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,IAAI,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,IAAI,UAAU,YAAY,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,oBAAoB,UAAU,eAAe,UAAU,GAAK,UAAU,GAAM,UAAU,qBAAqB,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,eAAe,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,OAAO,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,OAAO,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,MAAM,UAAU,GAAM,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,cAAc,QAAQ,YAAY,MAAM,OAAO,UAAU,GAAK,UAAU,GAAM,UAAU,GAAM,UAAU,GAAM,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,OAAO,UAAU,GAAM,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,IAAI,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,gBAAgB,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,MAAM,UAAU,GAAK,UAAU,sEAAsE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOZ,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,GAAG,EAAE,EAAE,IAAI,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKuD,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWrC,GAAmB,OAAO,OAAO,yBAAyB,SAAsBlB,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKzC,GAAe,CAAC,UAAU,EAAE,UAAUoG,EAAkB,MAAM5C,CAAY,GAAG,6BAA6B,UAAU,GAAK,UAAUzB,GAAY,CAAC,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,EAAE,EAAE,UAAUA,GAAY,CAAC,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,EAAE,EAAE,UAAU,yCAAyC,UAAUqE,EAAkB,MAAM5C,CAAY,GAAG,0BAA0B,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,yBAAyB,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,4BAA4B,OAAO,OAAO,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,sBAAsB,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,4BAA4B,GAAG,YAAY,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,uBAAuB,UAAU,GAAK,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,QAAQ,UAAU,sEAAsE,SAAS,YAAY,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,QAAQ,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,KAAK,UAAU,YAAY,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,gBAAgB,UAAU,wEAAwE,UAAU,GAAK,UAAU,GAAK,UAAU,sEAAsE,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,cAAc,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,QAAQ,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,0BAA0B,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,0BAA0B,UAAU,GAAM,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,qBAAqB,QAAQ,YAAY,MAAM,OAAO,UAAU,GAAK,UAAU,GAAM,UAAU,GAAM,UAAU,GAAK,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,UAAU,UAAU,GAAM,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,KAAK,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,YAAY,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,sBAAsB,UAAU,GAAK,UAAU,0BAA0B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOZ,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,GAAG,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,EAAE,SAAsBlB,EAAKuD,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWrC,GAAmB,OAAO,OAAO,yBAAyB,SAAsBlB,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKzC,GAAe,CAAC,UAAU,EAAE,UAAUoG,EAAkB,OAAO5C,CAAY,GAAG,6BAA6B,UAAU,GAAK,UAAUzB,GAAY,CAAC,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,EAAE,EAAE,UAAUA,GAAY,CAAC,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,EAAE,EAAE,UAAU,yCAAyC,UAAUqE,EAAkB,MAAM5C,CAAY,GAAG,sBAAsB,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,yBAAyB,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,6BAA6B,OAAO,OAAO,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,uBAAuB,UAAU4C,EAAkB,OAAO5C,CAAY,GAAG,6BAA6B,GAAG,YAAY,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,yBAAyB,UAAU,GAAK,UAAU4C,EAAkB,OAAO5C,CAAY,GAAG,QAAQ,UAAU,kBAAkB,SAAS,YAAY,UAAU4C,EAAkB,OAAO5C,CAAY,GAAG,QAAQ,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,KAAK,UAAU,YAAY,UAAU4C,EAAkB,OAAO5C,CAAY,GAAG,gBAAgB,UAAU,wEAAwE,UAAU,GAAK,UAAU,GAAK,UAAU,kBAAkB,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,cAAc,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,WAAW,UAAU4C,EAAkB,OAAO5C,CAAY,GAAG,oBAAoB,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,0BAA0B,UAAU,GAAM,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,uBAAuB,QAAQ,YAAY,MAAM,OAAO,UAAU,GAAK,UAAU,GAAM,UAAU,GAAK,UAAU,GAAK,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,MAAM,UAAU,GAAK,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,KAAK,UAAU4C,EAAkB,OAAO5C,CAAY,GAAG,YAAY,UAAU4C,EAAkB,MAAM5C,CAAY,GAAG,0BAA0B,UAAU,GAAK,UAAU,0BAA0B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,MAAM,GAAG,EAAE,OAAO,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,MAAM,IAAI,MAAM,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjE,GAAY,CAAC,eAAeqC,EAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAe6B,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,MAAM,GAAG,EAAE,SAAS,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,MAAM,IAAI,QAAQ,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjE,GAAY,CAAC,eAAeqC,EAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAe6B,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,MAAM,GAAG,EAAE,SAAS,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,MAAM,IAAI,SAAS,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjE,GAAY,CAAC,eAAeqC,EAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,SAAsBqD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrD,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,KAAK6B,EAAkB,OAAO5C,CAAY,GAAG;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;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,CAAosC,CAAC,EAAE,SAAsBf,EAAKpE,GAAM,CAAC,OAAO,OAAO,KAAK+H,EAAkB,OAAO5C,CAAY,GAAG;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;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAqsC,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,MAAM,GAAG,EAAE,QAAQ,EAAE,YAAY,EAAE,WAAW,EAAE,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,MAAM,IAAI,QAAQ,EAAE,YAAY,EAAE,WAAW,EAAE,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjE,GAAY,CAAC,eAAeuC,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBsB,GAAY,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,EAAE,WAAW,EAAE,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeI,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWZ,GAAmB,OAAO,OAAO,2BAA2B,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,GAAG,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,IAAI,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKuD,EAA0B,CAAC,OAAO,IAAI,MAAM,eAAerC,GAAmB,OAAO,OAAO,iCAAiC,SAAsBlB,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB9B,EAAKvC,GAAQ,CAAC,UAAUkG,EAAkB,OAAO5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,SAAS,6KAA6K,CAAC,CAAC,CAAC,EAAE,UAAU2D,EAAkB,OAAO5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,SAAS,6SAA6S,CAAC,CAAC,CAAC,EAAE,UAAU2D,EAAkB,OAAO5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,SAAS,iJAAiJ,CAAC,CAAC,CAAC,EAAE,UAAU2D,EAAkB,OAAO5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,SAAS,sIAAsI,CAAC,CAAC,CAAC,EAAE,UAAU2D,EAAkB,OAAO5C,CAAY,GAAG,wBAAwB,UAAU4C,EAAkB,OAAO5C,CAAY,GAAG,oDAAoD,UAAU4C,EAAkB,OAAO5C,CAAY,GAAG,sHAAsH,OAAO,OAAO,UAAU4C,EAAkB,OAAO5C,CAAY,GAAG,qDAAqD,UAAU4C,EAAkB,OAAO5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,SAAS,+TAA+T,CAAC,CAAC,CAAC,EAAE,GAAG,YAAY,UAAU2D,EAAkB,OAAO5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,SAAS,+MAA+M,CAAC,CAAC,CAAC,EAAE,UAAU2D,EAAkB,OAAO5C,CAAY,GAAG,gDAAgD,UAAU4C,EAAkB,OAAO5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,SAAS,yKAAyK,CAAC,CAAC,CAAC,EAAE,UAAU2D,EAAkB,OAAO5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,SAAS,mPAAmP,CAAC,CAAC,CAAC,EAAE,UAAU2D,EAAkB,OAAO5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,SAAS,2LAA2L,CAAC,CAAC,CAAC,EAAE,SAAS,YAAY,UAAU2D,EAAkB,OAAO5C,CAAY,GAAG,6EAA6E,UAAU4C,EAAkB,OAAO5C,CAAY,GAAG,+CAA+C,UAAU4C,EAAkB,OAAO5C,CAAY,GAAG,2DAA2D,UAAU4C,EAAkB,OAAO5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,SAAS,mOAAmO,CAAC,CAAC,CAAC,EAAE,UAAU2D,EAAkB,OAAO5C,CAAY,GAAG,8DAA8D,UAAU4C,EAAkB,OAAO5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,SAAS,wLAAwL,CAAC,CAAC,CAAC,EAAE,UAAU2D,EAAkB,OAAO5C,CAAY,GAAG,oBAAoB,UAAU4C,EAAkB,OAAO5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,SAAS,6OAA6O,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU2D,EAAkB,OAAO5C,CAAY,GAAG,oCAAoC,UAAU4C,EAAkB,OAAO5C,CAAY,GAAG,kEAAkE,MAAM,OAAO,UAAU4C,EAAkB,OAAO5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,SAAS,qNAAqN,CAAC,CAAC,CAAC,EAAE,UAAU2D,EAAkB,OAAO5C,CAAY,GAAG,6BAA6B,UAAU4C,EAAkB,OAAO5C,CAAY,GAAG,+DAA+D,UAAU4C,EAAkB,OAAO5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsBR,EAAM,IAAI,CAAC,SAAS,CAAC,kMAA+MrD,EAAKkE,GAAK,CAAC,KAAK,+CAA+C,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,aAAa,GAAM,SAAsBlE,EAAKtE,EAAO,EAAE,CAAC,SAAS,8CAA8C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAUiI,EAAkB,OAAO5C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,SAAS,sKAAsK,CAAC,CAAC,CAAC,EAAE,UAAU2D,EAAkB,OAAO5C,CAAY,GAAG,gDAAgD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,MAAM,GAAG,EAAE,QAAQ,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,MAAM,IAAI,QAAQ,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjE,GAAY,CAAC,eAAeqC,EAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAe6B,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQ4B,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,MAAM,GAAG,EAAE,SAAS,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQwC,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,MAAM,IAAI,QAAQ,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjE,GAAY,CAAC,eAAeqC,EAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGZ,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,CAAC,EAAE,SAAsBlB,EAAKuD,EAA0B,CAAC,OAAO,IAAI,MAAMrC,GAAmB,OAAO,QAAQ,SAAsBlB,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKyD,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB9B,EAAKrC,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqC,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmE,GAAI,CAAC,kFAAkF,kFAAkF,oSAAoS,mKAAmK,yQAAyQ,+RAA+R,oSAAoS,gRAAgR,4RAA4R,4dAA4d,0GAA0G,kSAAkS,ogBAAogB,kSAAkS,4LAA4L,kNAAkN,iNAAiN,iTAAiT,oQAAoQ,yGAAyG,uQAAuQ,iHAAiH,iHAAiH,kHAAkH,iJAAiJ,gHAAgH,kHAAkH,kHAAkH,iHAAiH,kHAAkH,+KAA+K,iHAAiH,2WAA2W,wPAAwP,mLAAmL,kNAAkN,+JAA+J,sIAAsI,yUAAyU,gSAAgS,gHAAgH,mLAAmL,8ZAA8Z,6KAA6K,kkBAAkkB,0GAA0G,kHAAkH,uQAAuQ,+OAA+O,iSAAiS,+VAA+V,mSAAmS,wQAAwQ,2RAA2R,wRAAwR,oQAAoQ,8NAA8N,4QAA4Q,6gBAA6gB,iNAAiN,6OAA6O,omBAAomB,gmBAAgmB,yGAAyG,waAAwa,kiBAAkiB,6bAA6b,qJAAqJ,yaAAya,4RAA4R,kSAAkS,uLAAuL,+MAA+M,mTAAmT,wUAAwU,mUAAmU,kNAAkN,kSAAkS,iHAAiH,mNAAmN,mQAAmQ,2OAA2O,yOAAyO,0dAA0d,gXAAgX,kUAAkU,gJAAgJ,mQAAmQ,yHAAyH,kNAAkN,8YAA8Y,kNAAkN,2RAA2R,8JAA8J,2HAA2H,oNAAoN,iNAAiN,0OAA0O,waAAwa,kSAAkS,qTAAqT,iUAAiU,szDAAszD,wUAAwU,yqBAAyqB,8RAA8R,oYAAoY,mrCAAmrC,oTAAoT,iSAAiS,2HAA2H,iNAAiN,kNAAkN,2aAA2a,gNAAgN,mTAAmT,2HAA2H,mNAAmN,yaAAya,8OAA8O,2UAA2U,iSAAiS,0HAA0H,sSAAsS,2LAA2L,mNAAmN,mNAAmN,kNAAkN,yTAAyT,qSAAqS,0HAA0H,+YAA+Y,0HAA0H,iNAAiN,iNAAiN,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,+wHAA+wH,ovRAAovR,EAapk8NC,GAAgBC,GAAQ9D,GAAU4D,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,QAAQ,MAAM,IAAI,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,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,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,uEAAuE,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,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,uEAAuE,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,uEAAuE,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,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,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,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGnJ,GAAU,GAAGK,GAAa,GAAGK,GAAW,GAAGE,GAAe,GAAGI,GAAY,GAAGE,GAAa,GAAGC,GAAY,GAAGE,GAAY,GAAGE,GAAW,GAAGE,GAAY,GAAGE,GAAuB,GAAGE,GAAiB,GAAGE,GAAgB,GAAGE,GAAqB,GAAGE,GAAiB,GAAGE,GAAoB,GAAGE,GAAa,GAAGE,GAAU,GAAG8G,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC/gO,IAAMC,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,yBAA2B,OAAO,qBAAuB,wDAAkE,4BAA8B,OAAO,uBAAyB,GAAG,yBAA2B,QAAQ,qBAAuB,OAAO,6BAA+B,OAAO,sBAAwB,IAAI,qBAAuB,OAAO,kBAAoB,OAAO,oCAAsC,4JAA0L,sBAAwB,SAAS,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["Typing", "content", "maxDuration", "displayedText", "setDisplayedText", "ye", "index", "setIndex", "formattedContent", "typingSpeed", "ue", "timeout", "prev", "contentDiv", "p", "containerStyle", "typingStyle", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "Z2zrq6lIe_exports", "__export", "__FramerMetadata__", "Z2zrq6lIe_default", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "buttonText", "click", "height", "id", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "bxgbZ5nBa", "JPSU_6228", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap2psz1q", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "RichText2", "css", "FramerZ2zrq6lIe", "withCSS", "Z2zrq6lIe_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__", "TypingFonts", "getFonts", "Typing", "GradientButtonFonts", "Z2zrq6lIe_default", "GradientButtonWithJiggleOnVisibleWithMappedReactProps1rmg27t", "withMappedReactProps", "withJiggleOnVisible", "Z2zrq6lIe_exports", "ImageWithShake", "withShake", "Image2", "LottieFonts", "Lottie", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer1", "answer2", "height", "id", "opacity", "question1", "question2", "socialIcon", "socialMediaContent", "socialMediaName", "visible", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "rxlCpwMSw", "XxMuE0Szy", "s3AZBuxuh", "WIXWxghO3", "vptZktgfC", "AEwUywzAG", "OhhhbOSOA", "TVrQPHnoZ", "s9oC_wr6V", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1x2b43m", "args", "onTap11jcnv2", "onTapipfbm1", "onTap1oiux04", "onTappkoxyf", "onTap1ula4ym", "onTapsdmoeb", "onTaphad5lm", "onTap1ynj3yp", "onTap1su5pg7", "onTap1k54dsx", "onTap1vcgdvm", "bxgbZ5nBar19pse", "bxgbZ5nBapeb836", "bxgbZ5nBa1bn3n7p", "bxgbZ5nBa1o0y1qv", "bxgbZ5nBa1sionj0", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "css", "FramermDOTgt7mE", "withCSS", "mDOTgt7mE_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SocialAnimatorFonts", "getFonts", "mDOTgt7mE_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1yd3thm", "args", "onTapksfgqz", "onTapt8p03q", "onTap1j212ch", "onTaprr1vav", "onTap1ekabj6", "onTap12twn6w", "onTap19qpsk1", "scopingClassNames", "cx", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerCa6xqpDaS", "withCSS", "Ca6xqpDaS_default", "addPropertyControls", "ControlType", "addFonts", "EmbedFonts", "getFonts", "Embed", "GradientButtonFonts", "Z2zrq6lIe_default", "GradientButtonWithJiggleOnVisibleWithMappedReactProps1rmg27t", "withMappedReactProps", "withJiggleOnVisible", "Z2zrq6lIe_exports", "ImageWithShake", "withShake", "Image2", "LottieFonts", "Lottie", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1x2b43m", "args", "onTap10bfg9v", "onTap96gzat", "bxgbZ5nBadw14wj", "bxgbZ5nBae2uuqx", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "getLoadingLazyAtYPosition", "u", "RichText2", "ComponentViewportProvider", "css", "FramerJTX7dVa3E", "withCSS", "JTX7dVa3E_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "aIImage", "arrowImage", "height", "id", "link", "textColor", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "w5pfKxN1a", "uvDKkzYwI", "KXJ_K1mF6", "utoG7cyO9", "zXw2Ooxmr", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "serializationHash", "addPropertyOverrides", "Image2", "RichText2", "css", "FrameroPhlCzN52", "withCSS", "oPhlCzN52_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "title", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "XpXsQR8HT", "RrzSG1Y4j", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "serializationHash", "RichText2", "css", "FramerRqn19GlsK", "withCSS", "Rqn19GlsK_default", "addPropertyControls", "ControlType", "addFonts", "TypingFonts", "getFonts", "Typing", "GradientButtonFonts", "Z2zrq6lIe_default", "GradientButtonWithJiggleOnVisiblee1ki5vWithMappedReactProps1rmg27t", "withMappedReactProps", "withCodeBoundaryForOverrides", "withJiggleOnVisible", "Z2zrq6lIe_exports", "ImageWithShake1vjnvoa", "Image2", "withShake", "LottieFonts", "Lottie", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1igcm1a", "args", "onTap14b0sae", "onTapt4ugf2", "onTapfa3vim", "bxgbZ5nBat4ugf2", "bxgbZ5nBafa3vim", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "getLoadingLazyAtYPosition", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerVVfIW6Mkw", "withCSS", "VVfIW6Mkw_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "WJCaoUaFT_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v12", "v13", "v14", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "v11", "v12", "v13", "v14", "__FramerMetadata__", "WJCaoUaFT_1_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v12", "v13", "v14", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "v11", "v12", "v13", "v14", "__FramerMetadata__", "WJCaoUaFT_2_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v12", "v13", "v14", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "v11", "v12", "v13", "v14", "__FramerMetadata__", "WJCaoUaFT_3_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v12", "v13", "v14", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "v11", "v12", "v13", "v14", "__FramerMetadata__", "valuesByLocaleId", "WJCaoUaFT_2_exports", "WJCaoUaFT_0_exports", "WJCaoUaFT_3_exports", "WJCaoUaFT_1_exports", "getLocalizedValue", "key", "locale", "values", "value", "FaqFonts", "getFonts", "MOni3BMX1_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "billingAnswerFormat1", "billingAnswerFormat2", "billingAnswerFormat3", "billingAnswerFormat4", "billingQuestion1", "billingQuestion2", "billingQuestion3", "billingQuestion4", "contentAnswerFormat1", "contentAnswerFormat2", "contentAnswerFormat3", "contentAnswerFormat4", "contentQuestion1", "contentQuestion2", "contentQuestion3", "contentQuestion4", "dataAnswerFormat1", "dataQuestion1", "height", "id", "planAnswerFormat1", "planAnswerFormat2", "planAnswerFormat3", "planAnswerFormat4", "planQuestion2", "plansQuestion1", "plansQuestion3", "plansQuestion4", "refundAnswerFormat1", "refundAnswerFormat2", "refundQuestion1", "refundQuestion2", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "LBJlzGXHi", "KLCkZoN8Z", "n7vJ3Pi7P", "oLNNUAiBe", "Jk8idsm_K", "RhdmkbEfJ", "nNbrpVdMR", "iAbyufoSD", "y4zLXwzmS", "Jt6SM8y5H", "DF5sxsBX4", "ZgKN1JmVe", "zO3cGQRZN", "cX8cHEggV", "r8G_9a1W4", "aSkClKQPl", "M0Ewqju2E", "ncE9AqVdC", "wa1LMxqK0", "z0utHTRuH", "FlsFe6hJa", "BU8LZt9zs", "HURIILlik", "xpQVyNtuk", "YBDYJfSqF", "JgGRW6yYN", "vqSgHqPXT", "kVw7VYR_K", "e2GhkC1r7", "cD2YOCRlW", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapheo1k5", "args", "onTapywz0j9", "onTap1hdft7a", "onTap20p86x", "onTapavvx2a", "onTap1jvcf7w", "onTap1x4ovh0", "onTapsuy1ri", "onTap9e1k0u", "onTap1dnlmxb", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "getLocalizedValue", "ComponentViewportProvider", "css", "FramerWJCaoUaFT", "withCSS", "WJCaoUaFT_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "Home_Form", "props", "email", "setEmail", "ye", "ue", "style", "u", "l", "event", "url", "window", "formStyle", "p", "e", "inputStyle", "buttonStyle", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "AaaaFonts", "getFonts", "Cp4ElgmUD_default", "AaaaWithVariantAppearEffect", "withVariantAppearEffect", "DismissFonts", "Dismiss", "MotionDivWithFX", "withFX", "motion", "EmbedFonts", "Embed", "Home_FormFonts", "Home_Form", "ImageWithFX", "Image2", "TickerFonts", "Ticker", "Ticker1Fonts", "ButtonFonts", "Tnz4seCKc_default", "LoaderFonts", "rlIcZ3c2D_default", "VimeoFonts", "Vimeo_default", "NewCtaFonts", "oPhlCzN52_default", "NewGradientButtonFonts", "Rqn19GlsK_default", "NewAnimatorFonts", "VVfIW6Mkw_default", "SocialWrapFonts", "Ca6xqpDaS_default", "ImageGenerationFonts", "JTX7dVa3E_default", "TestimonialFonts", "XsV1_ODpJ_default", "PricingCardNewFonts", "bWYBMPPMK_default", "FAQTabsFonts", "WJCaoUaFT_default", "AaabFonts", "D3D2zwriZ_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "transition2", "animation1", "transformTemplate2", "transition3", "animation2", "transition4", "animation3", "animation4", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation5", "addImageAlt", "image", "alt", "animation6", "transition5", "animation7", "transition6", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "UaWHVX1Cz", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "AzZNlMa5C3bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "scopingClassNames", "cx", "usePreloadLocalizedValues", "elementId", "useRouteElementId", "ref1", "isDisplayed", "isDisplayed1", "isDisplayed2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "PropertyOverrides2", "getLoadingLazyAtYPosition", "getLocalizedValue", "RichText2", "x", "l", "AnimatePresence", "Ga", "SVG", "Link", "css", "FramerSwetY06FA", "withCSS", "SwetY06FA_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
