{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js", "ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/YnJq9QRMz3qTkn8Nbo0f/Carousel.js", "ssg:https://framerusercontent.com/modules/7GI6wgFC43sRK7KM2mg9/nTxe4Mjpk8DRekK5PhF4/CDRJNwUvO.js", "ssg:https://framerusercontent.com/modules/RYUNqjpOqYjT72DVATqR/pMfAKg1YBKkdX8J5VwGI/iMNDMd4SJ.js", "ssg:https://framerusercontent.com/modules/DPSnsi3I7AJDU4GkNCG4/UQhud7VVArrZ2QRjgnKH/r0dXzwlJt.js", "ssg:https://framerusercontent.com/modules/HXe3SxgmXD7CCHMZQWRA/U3Ez0mLWa2PGWOcTWGtb/r665D9L5t.js", "ssg:https://framerusercontent.com/modules/tCNzEec7YerDbcc86WH3/mLNBiRJgg19WnP4ziDia/whqN8FOxM.js", "ssg:https://framerusercontent.com/modules/CJtF8TMAtRuvetBt2XBA/vLPPWYMFPpGWL2z0WdyN/WZYCZS0CF.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\")}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn _getWebPSupported=element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn _getWebPSupported=false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{startTransition(()=>setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches));},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}/*const findNextItem = (delta: 1 | -1, target: number) => {\n        if (!scrollInfo.current) return\n        const { current } = scrollInfo.current\n        const { children } = carouselRef.current\n        let scrollTarget\n\n        let i = delta === 1 ? 0 : children.length - 1\n        while (scrollTarget === undefined) {\n            const item = children[i]\n\n            const start = axis ? item.offsetLeft : item.offsetTop\n            const length = axis ? item.offsetWidth : item.offsetHeight\n            const end = start + length\n\n            const threshold = 0.05\n            if (delta === 1) {\n                const visibility = progress(start, end, target)\n                if (visibility < 1 - threshold) {\n                    scrollTarget = start\n                } else if (i === children.length - 1) {\n                    scrollTarget = end\n                }\n            } else if (delta === -1) {\n                const visibility = progress(start, end, target)\n                if (visibility > threshold) {\n                    scrollTarget = end\n                } else if (i === 0) {\n                    scrollTarget = start\n                }\n            }\n\n            i += delta\n        }\n\n        return scrollTarget\n    }*/const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=(page,adjustment)=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;const totalLen=scrollLength/(numPages-1);goto(page*totalLen+adjustment*totalLen);};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));let adjustment=0;if(snap&&(snapEdge===\"start\"||snapEdge===\"end\")&&delta>=1)adjustment=.4// this ensures it doesn't snap back to previous page*/\n    ;gotoPage(currentPage+delta,adjustment);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>startTransition(()=>gotoPage(i)),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>/*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...child.props?.style,...childStyle}})}))}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{if(!scrollInfo.current?.scrollLength){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=scrollInfo.current?.scrollLength/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (c105afa)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/YnJq9QRMz3qTkn8Nbo0f/Carousel.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/vQ46Qw4wLqTjuGNyJzqI/LkNNIkUX9cO1swGjSGtq/cA1Aqmkpk.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/DvY1E4bMnxSFaT7FlvSp/q3beNEJZHQx4wLochszG/dRCktiUJs.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/BWX5yweg2TSuKalYdjUA/gJI6pApKu650x8qO9kA7/gKXBbac3R.js\";const PhosphorFonts=getFonts(Phosphor);const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"ENpTuvDok\",\"h04Kk4VUF\",\"WKGfYKi7L\"];const serializationHash=\"framer-tWLef\";const variantClassNames={ENpTuvDok:\"framer-v-jswl98\",h04Kk4VUF:\"framer-v-bvroa2\",WKGfYKi7L:\"framer-v-wh6rd0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,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={\"Variant 1\":\"ENpTuvDok\",mobile:\"WKGfYKi7L\",tab:\"h04Kk4VUF\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ENpTuvDok\"};};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:\"ENpTuvDok\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-jswl98\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ENpTuvDok\",ref:refBinding,style:{...style},...addPropertyOverrides({h04Kk4VUF:{\"data-framer-name\":\"tab\"},WKGfYKi7L:{\"data-framer-name\":\"mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-adhavz-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"lWuOzXxpd-container\",nodeId:\"lWuOzXxpd\",rendersWithMotion:true,scopeId:\"CDRJNwUvO\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-3537e7dc-d161-4b85-9733-7df0cbe9da64, rgb(232, 59, 136))\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"lWuOzXxpd\",layoutId:\"lWuOzXxpd\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:8,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6ypwb9\",\"data-framer-name\":\"Content 1\",layoutDependency:layoutDependency,layoutId:\"CTGy6ZbBO\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f3zy8i\",layoutDependency:layoutDependency,layoutId:\"sOzjV7Yeg\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u9e8ri\",layoutDependency:layoutDependency,layoutId:\"HQaN2gGb5\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-brpa60\",\"data-framer-name\":\"quotation_mark_svgrepo_com\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"H_YoSGA44\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 64 64\"><path d=\"M 36.868 37.808 C 34.653 26.402 24.204 21.219 13.541 23.239 C 14.764 16.84 20.755 11.607 24.648 6.743 C 25.2 6.054 25.484 4.841 24.648 4.191 C 22.596 2.596 20.68 2.1 18.916 2.352 C 18.793 2.017 18.469 1.767 18.049 1.899 C 11.786 3.871 7.73 10.561 5.016 16.106 C 1.436 23.424 -0.36 31.895 0.06 40.026 C 0.724 52.846 12.17 65.07 25.799 61.511 C 35.75 58.913 38.574 46.596 36.868 37.808 Z M 11.366 48.066 C 11.367 48.062 11.369 48.059 11.37 48.055 C 11.433 47.815 11.486 47.572 11.543 47.33 C 11.733 47.577 11.9 47.841 12.042 48.119 C 11.809 48.15 11.581 48.169 11.364 48.174 C 11.362 48.136 11.367 48.102 11.366 48.066 Z M 8.483 17.981 C 8.648 18.052 8.824 18.096 9.003 18.113 C 8.469 19.18 7.98 20.269 7.537 21.378 C 7.362 21.326 7.18 21.299 6.997 21.299 C 7.447 20.175 7.951 19.072 8.483 17.981 Z M 7.115 50.522 C 7.551 50.969 8.007 51.395 8.482 51.798 C 8.411 51.89 8.349 51.99 8.298 52.094 C 7.872 51.595 7.469 51.077 7.115 50.522 Z M 19.409 50.478 C 18.859 49.761 18.445 48.97 18.184 48.105 C 18.176 48.038 18.155 47.973 18.122 47.914 C 18.04 47.613 17.979 47.306 17.938 46.996 C 18.839 48.22 19.563 49.584 20.234 50.962 C 19.944 50.828 19.667 50.666 19.409 50.478 Z\" fill=\"rgba(61, 61, 61, 0.66)\"></path><path d=\"M 38.944 21.176 C 40.15 16.308 43.437 12.947 45.825 8.556 C 46.214 7.842 46.061 6.732 45.248 6.354 C 43.761 5.664 42.425 4.897 40.939 4.329 C 40.489 3.369 39.131 2.74 38.091 3.677 C 36.252 5.334 34.245 7.459 32.641 9.833 C 30.514 12.442 28.987 15.609 28.479 18.655 C 28.419 19.016 28.482 19.382 28.623 19.715 C 28.546 19.848 28.469 19.98 28.393 20.113 C 28.004 20.786 28.225 21.69 28.908 22.08 C 37.004 26.695 40.353 34.211 40.114 42.131 C 39.704 43.286 39.6 44.534 39.756 45.788 C 39.101 49.773 37.601 53.764 35.385 57.449 C 34.887 58.277 35.072 59.052 35.558 59.577 C 35.686 59.992 36.02 60.342 36.622 60.478 C 49.528 63.394 62.513 57.217 63.913 43.135 C 65.216 30.032 51.566 18.989 38.944 21.176 Z M 43.854 57.589 C 43.9 57.546 43.94 57.499 43.985 57.456 C 45.17 57.364 46.253 57.031 47.173 56.495 C 47.184 56.541 47.191 56.583 47.202 56.629 C 47.231 56.756 47.296 56.851 47.347 56.959 C 46.199 57.253 45.032 57.463 43.854 57.589 Z M 53.009 32.954 C 52.886 33.178 52.779 33.404 52.671 33.629 C 52.662 33.566 52.661 33.501 52.651 33.438 C 52.668 32.972 52.75 32.492 52.877 32.002 C 52.89 32.011 52.905 32.019 52.919 32.029 C 52.984 32.298 53.037 32.574 53.078 32.854 C 53.057 32.888 53.029 32.917 53.009 32.954 Z M 59.175 47.084 C 59.18 46.777 59.175 46.467 59.164 46.155 C 59.368 45.813 59.55 45.458 59.711 45.094 C 59.581 45.791 59.392 46.447 59.175 47.084 Z\" fill=\"rgba(61, 61, 61, 0.66)\"></path></svg>',svgContentId:10886447244,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-38oo8s\",\"data-styles-preset\":\"gKXBbac3R\",style:{\"--framer-text-alignment\":\"center\"},children:\"Working with Virlo has allowed me to keep an honest pulse on trends that are actually working across short form content platforms, not just guess\"})}),className:\"framer-1pzw7ao\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zV9ZBGn_o\",style:{\"--framer-paragraph-spacing\":\"48px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i9c8j7\",\"data-framer-name\":\"Attribution and arrows\",layoutDependency:layoutDependency,layoutId:\"VPGB32lCa\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vwuy0l\",\"data-framer-name\":\"Avatar and text\",layoutDependency:layoutDependency,layoutId:\"JiEuyyIPR\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Deniz Sancar\",fit:\"fill\",intrinsicHeight:560,intrinsicWidth:560,pixelHeight:170,pixelWidth:147,src:\"https://framerusercontent.com/images/J9G5JtjaqUE3gelEE2WHrMraaaM.png\"},className:\"framer-142lort\",\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"K0JsSElpQ\",style:{borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hd981l\",\"data-border\":true,\"data-framer-name\":\"Contrast border\",layoutDependency:layoutDependency,layoutId:\"UD9_o1pAP\",style:{\"--border-bottom-width\":\"0.75px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"0.75px\",\"--border-right-width\":\"0.75px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.75px\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-f8m6cb\",\"data-framer-name\":\"Text and supporting text\",layoutDependency:layoutDependency,layoutId:\"aTNhkmTDo\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7QnJpY29sYWdlIEdyb3Rlc3F1ZS01MDA=\",\"--framer-font-family\":'\"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-444f69d2-aebf-4367-bfd7-b0dd8928b69b, rgb(245, 245, 246)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"www.youtube.com/@denizsancar\",motionChild:true,nodeId:\"fudlHuhFt\",openInNewTab:true,scopeId:\"CDRJNwUvO\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k07fxo\",\"data-styles-preset\":\"cA1Aqmkpk\",children:\"Deniz Sancar\"})})})}),className:\"framer-4ypo42\",\"data-framer-name\":\"Text\",fonts:[\"GF;Bricolage Grotesque-500\"],layoutDependency:layoutDependency,layoutId:\"fudlHuhFt\",style:{\"--extracted-1lwpl3i\":\"var(--token-444f69d2-aebf-4367-bfd7-b0dd8928b69b, rgb(245, 245, 246))\",\"--framer-paragraph-spacing\":\"18px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h2bt0r\",layoutDependency:layoutDependency,layoutId:\"k1mKiEdrQ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-193jce6-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"GKaBsvaaS-container\",nodeId:\"GKaBsvaaS\",rendersWithMotion:true,scopeId:\"CDRJNwUvO\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"YoutubeLogo\",id:\"GKaBsvaaS\",layoutId:\"GKaBsvaaS\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-we11ai\",\"data-styles-preset\":\"dRCktiUJs\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"30.1k Subscribers\"})}),className:\"framer-1xhyjfy\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rEB5O2Q15\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"48px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sj1e3o\",\"data-framer-name\":\"Content 2\",layoutDependency:layoutDependency,layoutId:\"kHKzUfXRg\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a9w0us\",layoutDependency:layoutDependency,layoutId:\"TSTNCHo0D\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1geh2yp\",layoutDependency:layoutDependency,layoutId:\"Q64C9u_cp\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qtuo4t\",\"data-framer-name\":\"quotation_mark_svgrepo_com\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"JcslfQMiS\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 64 64\"><path d=\"M 36.868 37.808 C 34.653 26.402 24.204 21.219 13.541 23.239 C 14.764 16.84 20.755 11.607 24.648 6.743 C 25.2 6.054 25.484 4.841 24.648 4.191 C 22.596 2.596 20.68 2.1 18.916 2.352 C 18.793 2.017 18.469 1.767 18.049 1.899 C 11.786 3.871 7.73 10.561 5.016 16.106 C 1.436 23.424 -0.36 31.895 0.06 40.026 C 0.724 52.846 12.17 65.07 25.799 61.511 C 35.75 58.913 38.574 46.596 36.868 37.808 Z M 11.366 48.066 C 11.367 48.062 11.369 48.059 11.37 48.055 C 11.433 47.815 11.486 47.572 11.543 47.33 C 11.733 47.577 11.9 47.841 12.042 48.119 C 11.809 48.15 11.581 48.169 11.364 48.174 C 11.362 48.136 11.367 48.102 11.366 48.066 Z M 8.483 17.981 C 8.648 18.052 8.824 18.096 9.003 18.113 C 8.469 19.18 7.98 20.269 7.537 21.378 C 7.362 21.326 7.18 21.299 6.997 21.299 C 7.447 20.175 7.951 19.072 8.483 17.981 Z M 7.115 50.522 C 7.551 50.969 8.007 51.395 8.482 51.798 C 8.411 51.89 8.349 51.99 8.298 52.094 C 7.872 51.595 7.469 51.077 7.115 50.522 Z M 19.409 50.478 C 18.859 49.761 18.445 48.97 18.184 48.105 C 18.176 48.038 18.155 47.973 18.122 47.914 C 18.04 47.613 17.979 47.306 17.938 46.996 C 18.839 48.22 19.563 49.584 20.234 50.962 C 19.944 50.828 19.667 50.666 19.409 50.478 Z\" fill=\"rgba(61, 61, 61, 0.66)\"></path><path d=\"M 38.944 21.176 C 40.15 16.308 43.437 12.947 45.825 8.556 C 46.214 7.842 46.061 6.732 45.248 6.354 C 43.761 5.664 42.425 4.897 40.939 4.329 C 40.489 3.369 39.131 2.74 38.091 3.677 C 36.252 5.334 34.245 7.459 32.641 9.833 C 30.514 12.442 28.987 15.609 28.479 18.655 C 28.419 19.016 28.482 19.382 28.623 19.715 C 28.546 19.848 28.469 19.98 28.393 20.113 C 28.004 20.786 28.225 21.69 28.908 22.08 C 37.004 26.695 40.353 34.211 40.114 42.131 C 39.704 43.286 39.6 44.534 39.756 45.788 C 39.101 49.773 37.601 53.764 35.385 57.449 C 34.887 58.277 35.072 59.052 35.558 59.577 C 35.686 59.992 36.02 60.342 36.622 60.478 C 49.528 63.394 62.513 57.217 63.913 43.135 C 65.216 30.032 51.566 18.989 38.944 21.176 Z M 43.854 57.589 C 43.9 57.546 43.94 57.499 43.985 57.456 C 45.17 57.364 46.253 57.031 47.173 56.495 C 47.184 56.541 47.191 56.583 47.202 56.629 C 47.231 56.756 47.296 56.851 47.347 56.959 C 46.199 57.253 45.032 57.463 43.854 57.589 Z M 53.009 32.954 C 52.886 33.178 52.779 33.404 52.671 33.629 C 52.662 33.566 52.661 33.501 52.651 33.438 C 52.668 32.972 52.75 32.492 52.877 32.002 C 52.89 32.011 52.905 32.019 52.919 32.029 C 52.984 32.298 53.037 32.574 53.078 32.854 C 53.057 32.888 53.029 32.917 53.009 32.954 Z M 59.175 47.084 C 59.18 46.777 59.175 46.467 59.164 46.155 C 59.368 45.813 59.55 45.458 59.711 45.094 C 59.581 45.791 59.392 46.447 59.175 47.084 Z\" fill=\"rgba(61, 61, 61, 0.66)\"></path></svg>',svgContentId:10886447244,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-38oo8s\",\"data-styles-preset\":\"gKXBbac3R\",style:{\"--framer-text-alignment\":\"center\"},children:\"I've been using this Virlo for a few months now, and it has completely transformed the way I approach short-form content. The detailed profile analytics give me invaluable insights into my audience's behavior, helping me understand exactly what works and what doesn\u2019t.\"})}),className:\"framer-1aqitiy\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NqnHrfio4\",style:{\"--framer-paragraph-spacing\":\"48px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qa5x2r\",\"data-framer-name\":\"Attribution and arrows\",layoutDependency:layoutDependency,layoutId:\"W93vLQFPx\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kp5ibo\",\"data-framer-name\":\"Avatar and text\",layoutDependency:layoutDependency,layoutId:\"noASxYroD\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Deniz Sancar\",fit:\"fill\",intrinsicHeight:560,intrinsicWidth:560,pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/Bz5yHI7dA8VNLawzymtrtpQguHs.jpg\"},className:\"framer-mwxi68\",\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"ckxs3UcVQ\",style:{borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-191ztq8\",\"data-border\":true,\"data-framer-name\":\"Contrast border\",layoutDependency:layoutDependency,layoutId:\"szrL4yvNI\",style:{\"--border-bottom-width\":\"0.75px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"0.75px\",\"--border-right-width\":\"0.75px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.75px\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16jwcub\",\"data-framer-name\":\"Text and supporting text\",layoutDependency:layoutDependency,layoutId:\"icgbSKuH0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7QnJpY29sYWdlIEdyb3Rlc3F1ZS01MDA=\",\"--framer-font-family\":'\"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-444f69d2-aebf-4367-bfd7-b0dd8928b69b, rgb(245, 245, 246)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"www.youtube.com/@denizsancar\",motionChild:true,nodeId:\"fwnViPwVz\",openInNewTab:true,scopeId:\"CDRJNwUvO\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k07fxo\",\"data-styles-preset\":\"cA1Aqmkpk\",children:\"Trae\"})})})}),className:\"framer-ug383j\",\"data-framer-name\":\"Text\",fonts:[\"GF;Bricolage Grotesque-500\"],layoutDependency:layoutDependency,layoutId:\"fwnViPwVz\",style:{\"--extracted-1lwpl3i\":\"var(--token-444f69d2-aebf-4367-bfd7-b0dd8928b69b, rgb(245, 245, 246))\",\"--framer-paragraph-spacing\":\"18px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sbwzpq\",layoutDependency:layoutDependency,layoutId:\"hSGgcJJYv\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-191lclx-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"EG8Txo4N5-container\",nodeId:\"EG8Txo4N5\",rendersWithMotion:true,scopeId:\"CDRJNwUvO\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"EG8Txo4N5\",layoutId:\"EG8Txo4N5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-we11ai\",\"data-styles-preset\":\"dRCktiUJs\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://x.com/traeracks\",motionChild:true,nodeId:\"S9Pc9hHEK\",openInNewTab:true,scopeId:\"CDRJNwUvO\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k07fxo\",\"data-styles-preset\":\"cA1Aqmkpk\",children:\"@traeracks\"})})})}),className:\"framer-g7kp43\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S9Pc9hHEK\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"48px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mrotvi\",\"data-framer-name\":\"Content 3\",layoutDependency:layoutDependency,layoutId:\"nXMxpB6C1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z68d5k\",layoutDependency:layoutDependency,layoutId:\"wOEAs1yfa\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xxuomh\",layoutDependency:layoutDependency,layoutId:\"eLnVTsqQ6\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-14kj4lu\",\"data-framer-name\":\"quotation_mark_svgrepo_com\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"GbjrE9E_L\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 64 64\"><path d=\"M 36.868 37.808 C 34.653 26.402 24.204 21.219 13.541 23.239 C 14.764 16.84 20.755 11.607 24.648 6.743 C 25.2 6.054 25.484 4.841 24.648 4.191 C 22.596 2.596 20.68 2.1 18.916 2.352 C 18.793 2.017 18.469 1.767 18.049 1.899 C 11.786 3.871 7.73 10.561 5.016 16.106 C 1.436 23.424 -0.36 31.895 0.06 40.026 C 0.724 52.846 12.17 65.07 25.799 61.511 C 35.75 58.913 38.574 46.596 36.868 37.808 Z M 11.366 48.066 C 11.367 48.062 11.369 48.059 11.37 48.055 C 11.433 47.815 11.486 47.572 11.543 47.33 C 11.733 47.577 11.9 47.841 12.042 48.119 C 11.809 48.15 11.581 48.169 11.364 48.174 C 11.362 48.136 11.367 48.102 11.366 48.066 Z M 8.483 17.981 C 8.648 18.052 8.824 18.096 9.003 18.113 C 8.469 19.18 7.98 20.269 7.537 21.378 C 7.362 21.326 7.18 21.299 6.997 21.299 C 7.447 20.175 7.951 19.072 8.483 17.981 Z M 7.115 50.522 C 7.551 50.969 8.007 51.395 8.482 51.798 C 8.411 51.89 8.349 51.99 8.298 52.094 C 7.872 51.595 7.469 51.077 7.115 50.522 Z M 19.409 50.478 C 18.859 49.761 18.445 48.97 18.184 48.105 C 18.176 48.038 18.155 47.973 18.122 47.914 C 18.04 47.613 17.979 47.306 17.938 46.996 C 18.839 48.22 19.563 49.584 20.234 50.962 C 19.944 50.828 19.667 50.666 19.409 50.478 Z\" fill=\"rgba(61, 61, 61, 0.66)\"></path><path d=\"M 38.944 21.176 C 40.15 16.308 43.437 12.947 45.825 8.556 C 46.214 7.842 46.061 6.732 45.248 6.354 C 43.761 5.664 42.425 4.897 40.939 4.329 C 40.489 3.369 39.131 2.74 38.091 3.677 C 36.252 5.334 34.245 7.459 32.641 9.833 C 30.514 12.442 28.987 15.609 28.479 18.655 C 28.419 19.016 28.482 19.382 28.623 19.715 C 28.546 19.848 28.469 19.98 28.393 20.113 C 28.004 20.786 28.225 21.69 28.908 22.08 C 37.004 26.695 40.353 34.211 40.114 42.131 C 39.704 43.286 39.6 44.534 39.756 45.788 C 39.101 49.773 37.601 53.764 35.385 57.449 C 34.887 58.277 35.072 59.052 35.558 59.577 C 35.686 59.992 36.02 60.342 36.622 60.478 C 49.528 63.394 62.513 57.217 63.913 43.135 C 65.216 30.032 51.566 18.989 38.944 21.176 Z M 43.854 57.589 C 43.9 57.546 43.94 57.499 43.985 57.456 C 45.17 57.364 46.253 57.031 47.173 56.495 C 47.184 56.541 47.191 56.583 47.202 56.629 C 47.231 56.756 47.296 56.851 47.347 56.959 C 46.199 57.253 45.032 57.463 43.854 57.589 Z M 53.009 32.954 C 52.886 33.178 52.779 33.404 52.671 33.629 C 52.662 33.566 52.661 33.501 52.651 33.438 C 52.668 32.972 52.75 32.492 52.877 32.002 C 52.89 32.011 52.905 32.019 52.919 32.029 C 52.984 32.298 53.037 32.574 53.078 32.854 C 53.057 32.888 53.029 32.917 53.009 32.954 Z M 59.175 47.084 C 59.18 46.777 59.175 46.467 59.164 46.155 C 59.368 45.813 59.55 45.458 59.711 45.094 C 59.581 45.791 59.392 46.447 59.175 47.084 Z\" fill=\"rgba(61, 61, 61, 0.66)\"></path></svg>',svgContentId:10886447244,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-38oo8s\",\"data-styles-preset\":\"gKXBbac3R\",style:{\"--framer-text-alignment\":\"center\"},children:\"Virlo is a one-of-a-kind tool. We were able to analyze trends and create a strategy that accurately predicted how our posts would perform. We\u2019re only a few posts away from going viral now.\"})}),className:\"framer-wvlar5\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Lgtqwzfh7\",style:{\"--framer-paragraph-spacing\":\"48px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r68p9p\",\"data-framer-name\":\"Attribution and arrows\",layoutDependency:layoutDependency,layoutId:\"gsU47guUr\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y5lzqx\",\"data-framer-name\":\"Avatar and text\",layoutDependency:layoutDependency,layoutId:\"hLxFbYB0e\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-11uv0n1\",layoutDependency:layoutDependency,layoutId:\"czU44zONq\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:70.5,intrinsicWidth:256,pixelHeight:141,pixelWidth:512,src:\"https://framerusercontent.com/images/IzjT7qPfwRGuxrZfP6rVYqhOQfI.png\"},className:\"framer-1obygv0\",\"data-framer-name\":\"X6IuyYequPbqEGmYxClPvpJHP7s\",layoutDependency:layoutDependency,layoutId:\"RIl0W5OWM\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13be0h1\",\"data-framer-name\":\"Text and supporting text\",layoutDependency:layoutDependency,layoutId:\"LkoT1aZrc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7QnJpY29sYWdlIEdyb3Rlc3F1ZS01MDA=\",\"--framer-font-family\":'\"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-444f69d2-aebf-4367-bfd7-b0dd8928b69b, rgb(245, 245, 246)))\"},children:\"Marzoq\"})}),className:\"framer-87mx8\",\"data-framer-name\":\"Text\",fonts:[\"GF;Bricolage Grotesque-500\"],layoutDependency:layoutDependency,layoutId:\"jCvLXcEIN\",style:{\"--extracted-1lwpl3i\":\"var(--token-444f69d2-aebf-4367-bfd7-b0dd8928b69b, rgb(245, 245, 246))\",\"--framer-paragraph-spacing\":\"18px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1267h8w\",layoutDependency:layoutDependency,layoutId:\"aPrsfQ710\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-we11ai\",\"data-styles-preset\":\"dRCktiUJs\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(Link,{href:\"https://x.com/traeracks\",motionChild:true,nodeId:\"uK2jQNDHD\",openInNewTab:true,scopeId:\"CDRJNwUvO\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k07fxo\",\"data-styles-preset\":\"cA1Aqmkpk\",children:\"F\"})}),\"ounder -\"]})}),className:\"framer-1j4pxex\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uK2jQNDHD\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"48px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-we11ai\",\"data-styles-preset\":\"dRCktiUJs\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://trailblazermktg.com/\",motionChild:true,nodeId:\"CvItB7wej\",openInNewTab:true,scopeId:\"CDRJNwUvO\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k07fxo\",\"data-styles-preset\":\"cA1Aqmkpk\",children:\"Trailblazer Marketing\"})})})}),className:\"framer-nvxvx0\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CvItB7wej\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"48px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2a7ft5\",\"data-framer-name\":\"Content 4\",layoutDependency:layoutDependency,layoutId:\"Bk7oaJmZa\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1avkgmb\",layoutDependency:layoutDependency,layoutId:\"ezbjnSqPw\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-xeceqd\",layoutDependency:layoutDependency,layoutId:\"M1LhUowIZ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-hk4vdb\",\"data-framer-name\":\"quotation_mark_svgrepo_com\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"TSWT4Ppj7\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 64 64\"><path d=\"M 36.868 37.808 C 34.653 26.402 24.204 21.219 13.541 23.239 C 14.764 16.84 20.755 11.607 24.648 6.743 C 25.2 6.054 25.484 4.841 24.648 4.191 C 22.596 2.596 20.68 2.1 18.916 2.352 C 18.793 2.017 18.469 1.767 18.049 1.899 C 11.786 3.871 7.73 10.561 5.016 16.106 C 1.436 23.424 -0.36 31.895 0.06 40.026 C 0.724 52.846 12.17 65.07 25.799 61.511 C 35.75 58.913 38.574 46.596 36.868 37.808 Z M 11.366 48.066 C 11.367 48.062 11.369 48.059 11.37 48.055 C 11.433 47.815 11.486 47.572 11.543 47.33 C 11.733 47.577 11.9 47.841 12.042 48.119 C 11.809 48.15 11.581 48.169 11.364 48.174 C 11.362 48.136 11.367 48.102 11.366 48.066 Z M 8.483 17.981 C 8.648 18.052 8.824 18.096 9.003 18.113 C 8.469 19.18 7.98 20.269 7.537 21.378 C 7.362 21.326 7.18 21.299 6.997 21.299 C 7.447 20.175 7.951 19.072 8.483 17.981 Z M 7.115 50.522 C 7.551 50.969 8.007 51.395 8.482 51.798 C 8.411 51.89 8.349 51.99 8.298 52.094 C 7.872 51.595 7.469 51.077 7.115 50.522 Z M 19.409 50.478 C 18.859 49.761 18.445 48.97 18.184 48.105 C 18.176 48.038 18.155 47.973 18.122 47.914 C 18.04 47.613 17.979 47.306 17.938 46.996 C 18.839 48.22 19.563 49.584 20.234 50.962 C 19.944 50.828 19.667 50.666 19.409 50.478 Z\" fill=\"rgba(61, 61, 61, 0.66)\"></path><path d=\"M 38.944 21.176 C 40.15 16.308 43.437 12.947 45.825 8.556 C 46.214 7.842 46.061 6.732 45.248 6.354 C 43.761 5.664 42.425 4.897 40.939 4.329 C 40.489 3.369 39.131 2.74 38.091 3.677 C 36.252 5.334 34.245 7.459 32.641 9.833 C 30.514 12.442 28.987 15.609 28.479 18.655 C 28.419 19.016 28.482 19.382 28.623 19.715 C 28.546 19.848 28.469 19.98 28.393 20.113 C 28.004 20.786 28.225 21.69 28.908 22.08 C 37.004 26.695 40.353 34.211 40.114 42.131 C 39.704 43.286 39.6 44.534 39.756 45.788 C 39.101 49.773 37.601 53.764 35.385 57.449 C 34.887 58.277 35.072 59.052 35.558 59.577 C 35.686 59.992 36.02 60.342 36.622 60.478 C 49.528 63.394 62.513 57.217 63.913 43.135 C 65.216 30.032 51.566 18.989 38.944 21.176 Z M 43.854 57.589 C 43.9 57.546 43.94 57.499 43.985 57.456 C 45.17 57.364 46.253 57.031 47.173 56.495 C 47.184 56.541 47.191 56.583 47.202 56.629 C 47.231 56.756 47.296 56.851 47.347 56.959 C 46.199 57.253 45.032 57.463 43.854 57.589 Z M 53.009 32.954 C 52.886 33.178 52.779 33.404 52.671 33.629 C 52.662 33.566 52.661 33.501 52.651 33.438 C 52.668 32.972 52.75 32.492 52.877 32.002 C 52.89 32.011 52.905 32.019 52.919 32.029 C 52.984 32.298 53.037 32.574 53.078 32.854 C 53.057 32.888 53.029 32.917 53.009 32.954 Z M 59.175 47.084 C 59.18 46.777 59.175 46.467 59.164 46.155 C 59.368 45.813 59.55 45.458 59.711 45.094 C 59.581 45.791 59.392 46.447 59.175 47.084 Z\" fill=\"rgba(61, 61, 61, 0.66)\"></path></svg>',svgContentId:10886447244,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-38oo8s\",\"data-styles-preset\":\"gKXBbac3R\",style:{\"--framer-text-alignment\":\"center\"},children:\"Virlo has completely changed the way I create content. Instead of guessing what works, I now have clear insights into trending niches, the best posting times, and top-performing videos. My engagement has skyrocketed, and I finally feel like I understand the algorithm!\"})}),className:\"framer-1xppef9\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Q_SWmWzCF\",style:{\"--framer-paragraph-spacing\":\"48px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oa7ye3\",\"data-framer-name\":\"Attribution and arrows\",layoutDependency:layoutDependency,layoutId:\"tVvJdxwCU\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n9859r\",\"data-framer-name\":\"Avatar and text\",layoutDependency:layoutDependency,layoutId:\"dKCVoh86W\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Deniz Sancar\",fit:\"fill\",intrinsicHeight:560,intrinsicWidth:560,pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/PXupUc4AlNRYjDpo1tR8o1XPlo.jpg\"},className:\"framer-gxxnbd\",\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"gL_R9XExe\",style:{borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jarbem\",\"data-border\":true,\"data-framer-name\":\"Contrast border\",layoutDependency:layoutDependency,layoutId:\"gYlo1gOwX\",style:{\"--border-bottom-width\":\"0.75px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"0.75px\",\"--border-right-width\":\"0.75px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.75px\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dz8y3v\",\"data-framer-name\":\"Text and supporting text\",layoutDependency:layoutDependency,layoutId:\"vherkztTU\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7QnJpY29sYWdlIEdyb3Rlc3F1ZS01MDA=\",\"--framer-font-family\":'\"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-444f69d2-aebf-4367-bfd7-b0dd8928b69b, rgb(245, 245, 246)))\"},children:\"Dhaval Makwana\"})}),className:\"framer-4435mf\",\"data-framer-name\":\"Text\",fonts:[\"GF;Bricolage Grotesque-500\"],layoutDependency:layoutDependency,layoutId:\"tx0dECtBN\",style:{\"--extracted-1lwpl3i\":\"var(--token-444f69d2-aebf-4367-bfd7-b0dd8928b69b, rgb(245, 245, 246))\",\"--framer-paragraph-spacing\":\"18px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19mq3re\",layoutDependency:layoutDependency,layoutId:\"thBdphfWD\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bvnmr7-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"E3QcuSln1-container\",nodeId:\"E3QcuSln1\",rendersWithMotion:true,scopeId:\"CDRJNwUvO\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"E3QcuSln1\",layoutId:\"E3QcuSln1\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-we11ai\",\"data-styles-preset\":\"dRCktiUJs\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://x.com/heyDhavall\",motionChild:true,nodeId:\"hYuLKll00\",openInNewTab:true,scopeId:\"CDRJNwUvO\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k07fxo\",\"data-styles-preset\":\"cA1Aqmkpk\",children:\"@heyDhavall\"})})})}),className:\"framer-tsm2qv\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hYuLKll00\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"48px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e8l9f\",\"data-framer-name\":\"Content 5\",layoutDependency:layoutDependency,layoutId:\"PBBuxEcPc\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1945k1x\",layoutDependency:layoutDependency,layoutId:\"cVO24fTrE\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jgvpuc\",layoutDependency:layoutDependency,layoutId:\"w4kOE3sQp\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1nh1htv\",\"data-framer-name\":\"quotation_mark_svgrepo_com\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"KnkCeIj9J\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 64 64\"><path d=\"M 36.868 37.808 C 34.653 26.402 24.204 21.219 13.541 23.239 C 14.764 16.84 20.755 11.607 24.648 6.743 C 25.2 6.054 25.484 4.841 24.648 4.191 C 22.596 2.596 20.68 2.1 18.916 2.352 C 18.793 2.017 18.469 1.767 18.049 1.899 C 11.786 3.871 7.73 10.561 5.016 16.106 C 1.436 23.424 -0.36 31.895 0.06 40.026 C 0.724 52.846 12.17 65.07 25.799 61.511 C 35.75 58.913 38.574 46.596 36.868 37.808 Z M 11.366 48.066 C 11.367 48.062 11.369 48.059 11.37 48.055 C 11.433 47.815 11.486 47.572 11.543 47.33 C 11.733 47.577 11.9 47.841 12.042 48.119 C 11.809 48.15 11.581 48.169 11.364 48.174 C 11.362 48.136 11.367 48.102 11.366 48.066 Z M 8.483 17.981 C 8.648 18.052 8.824 18.096 9.003 18.113 C 8.469 19.18 7.98 20.269 7.537 21.378 C 7.362 21.326 7.18 21.299 6.997 21.299 C 7.447 20.175 7.951 19.072 8.483 17.981 Z M 7.115 50.522 C 7.551 50.969 8.007 51.395 8.482 51.798 C 8.411 51.89 8.349 51.99 8.298 52.094 C 7.872 51.595 7.469 51.077 7.115 50.522 Z M 19.409 50.478 C 18.859 49.761 18.445 48.97 18.184 48.105 C 18.176 48.038 18.155 47.973 18.122 47.914 C 18.04 47.613 17.979 47.306 17.938 46.996 C 18.839 48.22 19.563 49.584 20.234 50.962 C 19.944 50.828 19.667 50.666 19.409 50.478 Z\" fill=\"rgba(61, 61, 61, 0.66)\"></path><path d=\"M 38.944 21.176 C 40.15 16.308 43.437 12.947 45.825 8.556 C 46.214 7.842 46.061 6.732 45.248 6.354 C 43.761 5.664 42.425 4.897 40.939 4.329 C 40.489 3.369 39.131 2.74 38.091 3.677 C 36.252 5.334 34.245 7.459 32.641 9.833 C 30.514 12.442 28.987 15.609 28.479 18.655 C 28.419 19.016 28.482 19.382 28.623 19.715 C 28.546 19.848 28.469 19.98 28.393 20.113 C 28.004 20.786 28.225 21.69 28.908 22.08 C 37.004 26.695 40.353 34.211 40.114 42.131 C 39.704 43.286 39.6 44.534 39.756 45.788 C 39.101 49.773 37.601 53.764 35.385 57.449 C 34.887 58.277 35.072 59.052 35.558 59.577 C 35.686 59.992 36.02 60.342 36.622 60.478 C 49.528 63.394 62.513 57.217 63.913 43.135 C 65.216 30.032 51.566 18.989 38.944 21.176 Z M 43.854 57.589 C 43.9 57.546 43.94 57.499 43.985 57.456 C 45.17 57.364 46.253 57.031 47.173 56.495 C 47.184 56.541 47.191 56.583 47.202 56.629 C 47.231 56.756 47.296 56.851 47.347 56.959 C 46.199 57.253 45.032 57.463 43.854 57.589 Z M 53.009 32.954 C 52.886 33.178 52.779 33.404 52.671 33.629 C 52.662 33.566 52.661 33.501 52.651 33.438 C 52.668 32.972 52.75 32.492 52.877 32.002 C 52.89 32.011 52.905 32.019 52.919 32.029 C 52.984 32.298 53.037 32.574 53.078 32.854 C 53.057 32.888 53.029 32.917 53.009 32.954 Z M 59.175 47.084 C 59.18 46.777 59.175 46.467 59.164 46.155 C 59.368 45.813 59.55 45.458 59.711 45.094 C 59.581 45.791 59.392 46.447 59.175 47.084 Z\" fill=\"rgba(61, 61, 61, 0.66)\"></path></svg>',svgContentId:10886447244,withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-38oo8s\",\"data-styles-preset\":\"gKXBbac3R\",style:{\"--framer-text-alignment\":\"center\"},children:\"I used to struggle with finding content ideas and keeping up with trends, but Virlo makes it effortless. The idea generator, hashtag analytics, and niche insights have made my workflow so much smoother. My videos are getting more views than ever, and I finally feel in control of my content strategy!\"})}),className:\"framer-1fuf04z\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lul19wRez\",style:{\"--framer-paragraph-spacing\":\"48px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4h3dq6\",\"data-framer-name\":\"Attribution and arrows\",layoutDependency:layoutDependency,layoutId:\"OniChpeb_\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q8ha7x\",\"data-framer-name\":\"Avatar and text\",layoutDependency:layoutDependency,layoutId:\"rGkVTZ6dS\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Deniz Sancar\",fit:\"fill\",intrinsicHeight:560,intrinsicWidth:560,pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/csojChxK1JuF9ijzOjd9paxGys.jpg\"},className:\"framer-1kdh4tg\",\"data-framer-name\":\"Avatar\",layoutDependency:layoutDependency,layoutId:\"On4sabUWN\",style:{borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xpqibb\",\"data-border\":true,\"data-framer-name\":\"Contrast border\",layoutDependency:layoutDependency,layoutId:\"onqXSxFZx\",style:{\"--border-bottom-width\":\"0.75px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"0.75px\",\"--border-right-width\":\"0.75px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.75px\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-274p28\",\"data-framer-name\":\"Text and supporting text\",layoutDependency:layoutDependency,layoutId:\"ulZt4oMvf\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7QnJpY29sYWdlIEdyb3Rlc3F1ZS01MDA=\",\"--framer-font-family\":'\"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-444f69d2-aebf-4367-bfd7-b0dd8928b69b, rgb(245, 245, 246)))\"},children:\"Jaynit Makwana\"})}),className:\"framer-1r9q2o5\",\"data-framer-name\":\"Text\",fonts:[\"GF;Bricolage Grotesque-500\"],layoutDependency:layoutDependency,layoutId:\"w3XqEIHus\",style:{\"--extracted-1lwpl3i\":\"var(--token-444f69d2-aebf-4367-bfd7-b0dd8928b69b, rgb(245, 245, 246))\",\"--framer-paragraph-spacing\":\"18px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7rauau\",layoutDependency:layoutDependency,layoutId:\"Kpg40bSlY\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jayqlf-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"IcTel_Kq2-container\",nodeId:\"IcTel_Kq2\",rendersWithMotion:true,scopeId:\"CDRJNwUvO\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"IcTel_Kq2\",layoutId:\"IcTel_Kq2\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-we11ai\",\"data-styles-preset\":\"dRCktiUJs\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://x.com/JaynitMakwana\",motionChild:true,nodeId:\"K6wkoWmJl\",openInNewTab:true,scopeId:\"CDRJNwUvO\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-k07fxo\",\"data-styles-preset\":\"cA1Aqmkpk\",children:\"@JaynitMakwana\"})})})}),className:\"framer-1qvtice\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"K6wkoWmJl\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"48px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({h04Kk4VUF:{sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"columns\"}},WKGfYKi7L:{arrowObject:{arrowFill:\"var(--token-3537e7dc-d161-4b85-9733-7df0cbe9da64, rgb(232, 59, 136))\",arrowPadding:6,arrowRadius:40,arrowSize:36,showMouseControls:true},progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:8,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:true},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"columns\"}}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tWLef.framer-oqcgss, .framer-tWLef .framer-oqcgss { display: block; }\",\".framer-tWLef.framer-jswl98 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-tWLef .framer-adhavz-container { flex: none; height: auto; max-width: 1200px; position: relative; width: 1200px; }\",\".framer-tWLef .framer-6ypwb9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 60px 0px; position: relative; width: 1200px; }\",\".framer-tWLef .framer-1f3zy8i, .framer-tWLef .framer-1a9w0us, .framer-tWLef .framer-z68d5k, .framer-tWLef .framer-1avkgmb, .framer-tWLef .framer-1945k1x { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tWLef .framer-1u9e8ri, .framer-tWLef .framer-1geh2yp, .framer-tWLef .framer-1xxuomh, .framer-tWLef .framer-xeceqd, .framer-tWLef .framer-1jgvpuc { flex: none; height: 64px; overflow: hidden; position: relative; width: 64px; z-index: 1; }\",\".framer-tWLef .framer-brpa60, .framer-tWLef .framer-qtuo4t, .framer-tWLef .framer-14kj4lu, .framer-tWLef .framer-hk4vdb, .framer-tWLef .framer-1nh1htv { flex: none; height: 64px; left: calc(50.00000000000002% - 64px / 2); position: absolute; top: calc(50.00000000000002% - 64px / 2); width: 64px; }\",\".framer-tWLef .framer-1pzw7ao { flex: none; height: auto; max-width: 75%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-tWLef .framer-i9c8j7, .framer-tWLef .framer-1qa5x2r, .framer-tWLef .framer-r68p9p, .framer-tWLef .framer-1oa7ye3, .framer-tWLef .framer-4h3dq6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-tWLef .framer-1vwuy0l, .framer-tWLef .framer-kp5ibo, .framer-tWLef .framer-1y5lzqx, .framer-tWLef .framer-1n9859r, .framer-tWLef .framer-1q8ha7x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tWLef .framer-142lort, .framer-tWLef .framer-mwxi68, .framer-tWLef .framer-gxxnbd, .framer-tWLef .framer-1kdh4tg { flex: none; height: 56px; overflow: visible; position: relative; width: 56px; }\",\".framer-tWLef .framer-hd981l, .framer-tWLef .framer-191ztq8, .framer-tWLef .framer-jarbem, .framer-tWLef .framer-1xpqibb { aspect-ratio: 1 / 1; bottom: var(--framer-aspect-ratio-supported, 0px); flex: none; height: 56px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tWLef .framer-f8m6cb, .framer-tWLef .framer-16jwcub, .framer-tWLef .framer-13be0h1, .framer-tWLef .framer-dz8y3v, .framer-tWLef .framer-274p28 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tWLef .framer-4ypo42, .framer-tWLef .framer-ug383j, .framer-tWLef .framer-87mx8, .framer-tWLef .framer-4435mf, .framer-tWLef .framer-1r9q2o5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-tWLef .framer-1h2bt0r, .framer-tWLef .framer-1sbwzpq, .framer-tWLef .framer-19mq3re, .framer-tWLef .framer-7rauau { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tWLef .framer-193jce6-container, .framer-tWLef .framer-191lclx-container, .framer-tWLef .framer-1bvnmr7-container, .framer-tWLef .framer-1jayqlf-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-tWLef .framer-1xhyjfy, .framer-tWLef .framer-g7kp43, .framer-tWLef .framer-1j4pxex, .framer-tWLef .framer-nvxvx0, .framer-tWLef .framer-tsm2qv, .framer-tWLef .framer-1qvtice { flex: none; height: auto; max-width: 80%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-tWLef .framer-1sj1e3o, .framer-tWLef .framer-1mrotvi, .framer-tWLef .framer-2a7ft5, .framer-tWLef .framer-1e8l9f { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-tWLef .framer-1aqitiy, .framer-tWLef .framer-wvlar5, .framer-tWLef .framer-1xppef9, .framer-tWLef .framer-1fuf04z { flex: none; height: auto; max-width: 80%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-tWLef .framer-11uv0n1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 120px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tWLef .framer-1obygv0 { aspect-ratio: 3.631205673758865 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 108px; }\",\".framer-tWLef .framer-1267h8w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tWLef.framer-jswl98, .framer-tWLef .framer-6ypwb9, .framer-tWLef .framer-1f3zy8i, .framer-tWLef .framer-i9c8j7, .framer-tWLef .framer-1vwuy0l, .framer-tWLef .framer-f8m6cb, .framer-tWLef .framer-1h2bt0r, .framer-tWLef .framer-1sj1e3o, .framer-tWLef .framer-1a9w0us, .framer-tWLef .framer-1qa5x2r, .framer-tWLef .framer-kp5ibo, .framer-tWLef .framer-16jwcub, .framer-tWLef .framer-1sbwzpq, .framer-tWLef .framer-1mrotvi, .framer-tWLef .framer-z68d5k, .framer-tWLef .framer-r68p9p, .framer-tWLef .framer-1y5lzqx, .framer-tWLef .framer-11uv0n1, .framer-tWLef .framer-13be0h1, .framer-tWLef .framer-1267h8w, .framer-tWLef .framer-2a7ft5, .framer-tWLef .framer-1avkgmb, .framer-tWLef .framer-1oa7ye3, .framer-tWLef .framer-1n9859r, .framer-tWLef .framer-dz8y3v, .framer-tWLef .framer-19mq3re, .framer-tWLef .framer-1e8l9f, .framer-tWLef .framer-1945k1x, .framer-tWLef .framer-4h3dq6, .framer-tWLef .framer-1q8ha7x, .framer-tWLef .framer-274p28, .framer-tWLef .framer-7rauau { gap: 0px; } .framer-tWLef.framer-jswl98 > *, .framer-tWLef .framer-11uv0n1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-tWLef.framer-jswl98 > :first-child, .framer-tWLef .framer-1h2bt0r > :first-child, .framer-tWLef .framer-1sbwzpq > :first-child, .framer-tWLef .framer-11uv0n1 > :first-child, .framer-tWLef .framer-1267h8w > :first-child, .framer-tWLef .framer-19mq3re > :first-child, .framer-tWLef .framer-7rauau > :first-child { margin-left: 0px; } .framer-tWLef.framer-jswl98 > :last-child, .framer-tWLef .framer-1h2bt0r > :last-child, .framer-tWLef .framer-1sbwzpq > :last-child, .framer-tWLef .framer-11uv0n1 > :last-child, .framer-tWLef .framer-1267h8w > :last-child, .framer-tWLef .framer-19mq3re > :last-child, .framer-tWLef .framer-7rauau > :last-child { margin-right: 0px; } .framer-tWLef .framer-6ypwb9 > *, .framer-tWLef .framer-1sj1e3o > *, .framer-tWLef .framer-1mrotvi > *, .framer-tWLef .framer-2a7ft5 > *, .framer-tWLef .framer-1e8l9f > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-tWLef .framer-6ypwb9 > :first-child, .framer-tWLef .framer-1f3zy8i > :first-child, .framer-tWLef .framer-i9c8j7 > :first-child, .framer-tWLef .framer-1vwuy0l > :first-child, .framer-tWLef .framer-f8m6cb > :first-child, .framer-tWLef .framer-1sj1e3o > :first-child, .framer-tWLef .framer-1a9w0us > :first-child, .framer-tWLef .framer-1qa5x2r > :first-child, .framer-tWLef .framer-kp5ibo > :first-child, .framer-tWLef .framer-16jwcub > :first-child, .framer-tWLef .framer-1mrotvi > :first-child, .framer-tWLef .framer-z68d5k > :first-child, .framer-tWLef .framer-r68p9p > :first-child, .framer-tWLef .framer-1y5lzqx > :first-child, .framer-tWLef .framer-13be0h1 > :first-child, .framer-tWLef .framer-2a7ft5 > :first-child, .framer-tWLef .framer-1avkgmb > :first-child, .framer-tWLef .framer-1oa7ye3 > :first-child, .framer-tWLef .framer-1n9859r > :first-child, .framer-tWLef .framer-dz8y3v > :first-child, .framer-tWLef .framer-1e8l9f > :first-child, .framer-tWLef .framer-1945k1x > :first-child, .framer-tWLef .framer-4h3dq6 > :first-child, .framer-tWLef .framer-1q8ha7x > :first-child, .framer-tWLef .framer-274p28 > :first-child { margin-top: 0px; } .framer-tWLef .framer-6ypwb9 > :last-child, .framer-tWLef .framer-1f3zy8i > :last-child, .framer-tWLef .framer-i9c8j7 > :last-child, .framer-tWLef .framer-1vwuy0l > :last-child, .framer-tWLef .framer-f8m6cb > :last-child, .framer-tWLef .framer-1sj1e3o > :last-child, .framer-tWLef .framer-1a9w0us > :last-child, .framer-tWLef .framer-1qa5x2r > :last-child, .framer-tWLef .framer-kp5ibo > :last-child, .framer-tWLef .framer-16jwcub > :last-child, .framer-tWLef .framer-1mrotvi > :last-child, .framer-tWLef .framer-z68d5k > :last-child, .framer-tWLef .framer-r68p9p > :last-child, .framer-tWLef .framer-1y5lzqx > :last-child, .framer-tWLef .framer-13be0h1 > :last-child, .framer-tWLef .framer-2a7ft5 > :last-child, .framer-tWLef .framer-1avkgmb > :last-child, .framer-tWLef .framer-1oa7ye3 > :last-child, .framer-tWLef .framer-1n9859r > :last-child, .framer-tWLef .framer-dz8y3v > :last-child, .framer-tWLef .framer-1e8l9f > :last-child, .framer-tWLef .framer-1945k1x > :last-child, .framer-tWLef .framer-4h3dq6 > :last-child, .framer-tWLef .framer-1q8ha7x > :last-child, .framer-tWLef .framer-274p28 > :last-child { margin-bottom: 0px; } .framer-tWLef .framer-1f3zy8i > *, .framer-tWLef .framer-1a9w0us > *, .framer-tWLef .framer-z68d5k > *, .framer-tWLef .framer-1avkgmb > *, .framer-tWLef .framer-1945k1x > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-tWLef .framer-i9c8j7 > *, .framer-tWLef .framer-1qa5x2r > *, .framer-tWLef .framer-r68p9p > *, .framer-tWLef .framer-1oa7ye3 > *, .framer-tWLef .framer-4h3dq6 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-tWLef .framer-1vwuy0l > *, .framer-tWLef .framer-kp5ibo > *, .framer-tWLef .framer-1y5lzqx > *, .framer-tWLef .framer-1n9859r > *, .framer-tWLef .framer-1q8ha7x > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-tWLef .framer-f8m6cb > *, .framer-tWLef .framer-16jwcub > *, .framer-tWLef .framer-13be0h1 > *, .framer-tWLef .framer-dz8y3v > *, .framer-tWLef .framer-274p28 > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-tWLef .framer-1h2bt0r > *, .framer-tWLef .framer-1sbwzpq > *, .framer-tWLef .framer-19mq3re > *, .framer-tWLef .framer-7rauau > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-tWLef .framer-1267h8w > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-tWLef.framer-v-bvroa2.framer-jswl98 { max-width: 810px; width: 810px; }\",\".framer-tWLef.framer-v-bvroa2 .framer-adhavz-container, .framer-tWLef.framer-v-wh6rd0 .framer-adhavz-container { flex: 1 0 0px; width: 1px; }\",\".framer-tWLef.framer-v-wh6rd0.framer-jswl98 { max-width: 390px; width: 390px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-tWLef[data-border=\"true\"]::after, .framer-tWLef [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 443.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"h04Kk4VUF\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"810px\",null,null]},\"WKGfYKi7L\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"390px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerCDRJNwUvO=withCSS(Component,css,\"framer-tWLef\");export default FramerCDRJNwUvO;FramerCDRJNwUvO.displayName=\"Testimonials\";FramerCDRJNwUvO.defaultProps={height:443.5,width:1200};addPropertyControls(FramerCDRJNwUvO,{variant:{options:[\"ENpTuvDok\",\"h04Kk4VUF\",\"WKGfYKi7L\"],optionTitles:[\"Variant 1\",\"tab\",\"mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerCDRJNwUvO,[{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:\"Bricolage Grotesque\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bricolagegrotesque/v8/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvSniyMgvs-wJDtw.woff2\",weight:\"500\"}]},...PhosphorFonts,...CarouselFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCDRJNwUvO\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"h04Kk4VUF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"810px\\\",null,null]},\\\"WKGfYKi7L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"390px\\\",null,null]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"443.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CDRJNwUvO.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,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{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={zCx0O9h8Q:{hover:true}};const serializationHash=\"framer-gdtHo\";const variantClassNames={zCx0O9h8Q:\"framer-v-1b3hjvm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,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 getProps=({click,height,id,width,...props})=>{return{...props,b7dTiwSTk:click??props.b7dTiwSTk};};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,b7dTiwSTk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"zCx0O9h8Q\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapno00rv=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(b7dTiwSTk){const res=await b7dTiwSTk(...args);if(res===false)return false;}});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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1b3hjvm\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"zCx0O9h8Q\",onTap:onTapno00rv,ref:refBinding,style:{background:'linear-gradient(90deg, var(--token-0ac0ec75-91d8-44b0-ab1f-e7b70cbab42d, rgb(255, 114, 159)) /* {\"name\":\"primary light\"} */ 0%, var(--token-3537e7dc-d161-4b85-9733-7df0cbe9da64, rgb(232, 59, 136)) /* {\"name\":\"primary dark\"} */ 100%)',borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"none\",...style},variants:{\"zCx0O9h8Q-hover\":{boxShadow:\"0.24087492070975713px 0.24087492070975713px 1.1582051709911603px -0.5833333333333333px rgba(255, 31, 165, 0.36807), 0.9154133212973828px 0.9154133212973828px 4.401605776129578px -1.1666666666666665px rgba(255, 31, 165, 0.41866), 4px 4px 19.23330444827409px -1.75px rgba(255, 31, 165, 0.65), -0.24087492070975713px -0.24087492070975713px 1.1582051709911603px -0.5833333333333333px rgba(255, 31, 165, 0.36807), -0.9154133212973828px -0.9154133212973828px 4.401605776129578px -1.1666666666666665px rgba(255, 31, 165, 0.41866), -4px -4px 19.23330444827409px -1.75px rgba(255, 31, 165, 0.65)\"}},...addPropertyOverrides({\"zCx0O9h8Q-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5re5yj-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Y2PT86iVE-container\",nodeId:\"Y2PT86iVE\",rendersWithMotion:true,scopeId:\"iMNDMd4SJ\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"PlayCircle\",id:\"Y2PT86iVE\",layoutId:\"Y2PT86iVE\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"RlM7TnVuaXRvLXNlbWlib2xk\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\"},children:\"Play Video\"})}),className:\"framer-1tjjuvc\",fonts:[\"FS;Nunito-semibold\"],layoutDependency:layoutDependency,layoutId:\"isdbSiY0G\",style:{\"--extracted-1eung3n\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"zCx0O9h8Q-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"RlM7TnVuaXRvLWJvbGQ=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\"},children:\"Play Video\"})}),fonts:[\"FS;Nunito-bold\"]}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gdtHo.framer-61ha20, .framer-gdtHo .framer-61ha20 { display: block; }\",\".framer-gdtHo.framer-1b3hjvm { 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: visible; padding: 16px 24px 16px 24px; position: relative; width: min-content; }\",\".framer-gdtHo .framer-5re5yj-container { flex: none; height: 24px; position: relative; width: 24px; z-index: 1; }\",\".framer-gdtHo .framer-1tjjuvc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gdtHo.framer-1b3hjvm { gap: 0px; } .framer-gdtHo.framer-1b3hjvm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-gdtHo.framer-1b3hjvm > :first-child { margin-left: 0px; } .framer-gdtHo.framer-1b3hjvm > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 180.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"a5yY09NDT\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"b7dTiwSTk\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameriMNDMd4SJ=withCSS(Component,css,\"framer-gdtHo\");export default FrameriMNDMd4SJ;FrameriMNDMd4SJ.displayName=\"Home/play\";FrameriMNDMd4SJ.defaultProps={height:60,width:180.5};addPropertyControls(FrameriMNDMd4SJ,{b7dTiwSTk:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FrameriMNDMd4SJ,[{explicitInter:true,fonts:[{family:\"Nunito\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LX36A2EOUCLIDVM4XR3ZIWY6CX4DQYKE/YM36K55HS52MFB6AKX3BB366JCLDQFJF/MKTS7VJCH3IMUVTV3MN54KOVFE4Y43BD.woff2\",weight:\"600\"},{family:\"Nunito\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/4Q5HYDBTANL3ERCJ43BT3T6PCABTP525/2J7UE7LIQPPQNRFDSDUVDGBPVBD5BTAO/4V6IAVOQFOLXHZMSUY7BQKCWJG5N4TWB.woff2\",weight:\"700\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameriMNDMd4SJ\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"180.5\",\"framerIntrinsicHeight\":\"60\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"b7dTiwSTk\\\":\\\"click\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"a5yY09NDT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./iMNDMd4SJ.map", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ZKj4y62Lxwt1LObdtGp4/ZCy74fRHcRJBr2UQCg4j/dRyncBhA8.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/BWX5yweg2TSuKalYdjUA/gJI6pApKu650x8qO9kA7/gKXBbac3R.js\";const cycleOrder=[\"gR7DTnAn9\",\"LzKL1JPFc\",\"zw4k4mJDG\",\"M2L8Y9l_T\"];const serializationHash=\"framer-8HmoH\";const variantClassNames={gR7DTnAn9:\"framer-v-neu70r\",LzKL1JPFc:\"framer-v-1huwbxl\",M2L8Y9l_T:\"framer-v-1ho9r9o\",zw4k4mJDG:\"framer-v-1c4mem0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;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 humanReadableVariantMap={\"Close Small\":\"zw4k4mJDG\",\"Open Small\":\"M2L8Y9l_T\",Close:\"gR7DTnAn9\",Open:\"LzKL1JPFc\"};const getProps=({answer,answerVisible,height,iconClose,iconOpen,id,question,tap,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5;return{...props,b1gPskFZn:(_ref=iconOpen!==null&&iconOpen!==void 0?iconOpen:props.b1gPskFZn)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/nvz8kMzYRBewS5zCsJBmI2NetBo.svg\"},baxjXyJgE:tap!==null&&tap!==void 0?tap:props.baxjXyJgE,C4FeBjQqd:(_ref1=question!==null&&question!==void 0?question:props.C4FeBjQqd)!==null&&_ref1!==void 0?_ref1:\"What is Virlo?\",dtpfKkxEc:(_ref2=answer!==null&&answer!==void 0?answer:props.dtpfKkxEc)!==null&&_ref2!==void 0?_ref2:\"Virlo is a cloud-based platform that offers a suite of software as a service (SaaS) solutions designed to streamline business operations, enhance collaboration, and drive productivity.\",Iepd46w62:(_ref3=iconClose!==null&&iconClose!==void 0?iconClose:props.Iepd46w62)!==null&&_ref3!==void 0?_ref3:{src:\"https://framerusercontent.com/images/dDFnN7NQRlS8lCvI0dkVOJZAUnw.svg\"},pXz6G8n4y:(_ref4=answerVisible!==null&&answerVisible!==void 0?answerVisible:props.pXz6G8n4y)!==null&&_ref4!==void 0?_ref4:true,variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"gR7DTnAn9\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,baxjXyJgE,C4FeBjQqd,dtpfKkxEc,pXz6G8n4y,Iepd46w62,b1gPskFZn,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"gR7DTnAn9\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapjiuhcq=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(baxjXyJgE){const res=await baxjXyJgE(...args);if(res===false)return false;}});const onTapfapylw=activeVariantCallback(async(...args)=>{setVariant(\"LzKL1JPFc\");});const onTapsw0wr5=activeVariantCallback(async(...args)=>{setVariant(\"gR7DTnAn9\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"LzKL1JPFc\",\"M2L8Y9l_T\"].includes(baseVariant))return true;return false;};const isDisplayed1=value=>{if([\"LzKL1JPFc\",\"M2L8Y9l_T\"].includes(baseVariant))return true;return value;};const defaultLayoutId=React.useId();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.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-neu70r\",className,classNames),\"data-framer-name\":\"Close\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"gR7DTnAn9\",onTap:onTapjiuhcq,ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({LzKL1JPFc:{\"data-framer-name\":\"Open\"},M2L8Y9l_T:{\"data-framer-name\":\"Open Small\"},zw4k4mJDG:{\"data-framer-name\":\"Close Small\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-aj422u\",\"data-framer-name\":\"Content & Icon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"RQpRNsfUo\",onTap:onTapfapylw,...addPropertyOverrides({LzKL1JPFc:{onTap:onTapsw0wr5},M2L8Y9l_T:{onTap:onTapsw0wr5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y7k13m\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"yH_gR1Ig4\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rszonw\",\"data-framer-name\":\"Question\",layoutDependency:layoutDependency,layoutId:\"lJdxGRLdJ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-38oo8s\",\"data-styles-preset\":\"gKXBbac3R\",children:\"What is Virlo?\"})}),className:\"framer-149avpp\",\"data-framer-name\":\"How many items are there in this list?\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nz2yuUzV7\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:C4FeBjQqd,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cvpswy\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"G9cAPBklM\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},...addPropertyOverrides({zw4k4mJDG:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||103)-64-39.199999999999996)/2+0+0)+0+0+0+5.599999999999998+4),pixelHeight:24,pixelWidth:24,sizes:\"24px\",...toResponsiveImage(Iepd46w62)},className:\"framer-jicsi1\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"CK5dUwiQo\",style:{rotate:0},variants:{LzKL1JPFc:{rotate:180}},...addPropertyOverrides({LzKL1JPFc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||223)-56-251.2)/2+0+0)+0+0+0+5.599999999999998+4),pixelHeight:24,pixelWidth:24,sizes:\"24px\",...toResponsiveImage(b1gPskFZn)}},M2L8Y9l_T:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||271)-0-243.2)/2+0+0)+0+0+0+5.599999999999998+4),pixelHeight:24,pixelWidth:24,sizes:\"24px\",...toResponsiveImage(b1gPskFZn)}},zw4k4mJDG:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||103)-64-39.199999999999996)/2+0+0)+0+0+0+6.563934426229515+4),pixelHeight:24,pixelWidth:24,sizes:\"24px\",...toResponsiveImage(Iepd46w62)}}},baseVariant,gestureVariant)})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-lipi27\",\"data-framer-name\":\"answer\",layoutDependency:layoutDependency,layoutId:\"lBom8Vv8W\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{LzKL1JPFc:{background:'linear-gradient(180deg, var(--token-b6d51f22-be47-4711-83ea-64824b136ffd, rgb(0, 5, 9)) /* {\"name\":\"bg light\"} */ 0%, var(--token-d741c313-533c-4fc2-b26b-4e0e95ec9642, rgb(19, 15, 36)) /* {\"name\":\"bg dark\"} */ 100%)',borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},M2L8Y9l_T:{background:\"linear-gradient(180deg, var(--token-30adfd80-ecab-4819-b6d1-8070a9e3e5af, rgb(0, 16, 25)) 0%, var(--token-30adfd80-ecab-4819-b6d1-8070a9e3e5af, rgb(0, 16, 25)) 100%)\",backgroundColor:\"var(--token-30adfd80-ecab-4819-b6d1-8070a9e3e5af, rgb(0, 16, 25))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16}},children:isDisplayed1(pXz6G8n4y)&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-t86zhv\",\"data-styles-preset\":\"dRyncBhA8\",children:\"Virlo is a cloud-based platform that offers a suite of software as a service (SaaS) solutions designed to streamline business operations, enhance collaboration, and drive productivity.\"})}),className:\"framer-1jyr9u0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"roTNNm0Ds\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:dtpfKkxEc,verticalAlignment:\"top\",withExternalLayout:true})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8HmoH.framer-1tby8kn, .framer-8HmoH .framer-1tby8kn { display: block; }\",\".framer-8HmoH.framer-neu70r { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 0px 32px 0px; position: relative; width: 1105px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8HmoH .framer-aj422u { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8HmoH .framer-y7k13m { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-8HmoH .framer-1rszonw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8HmoH .framer-149avpp { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-8HmoH .framer-cvpswy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 0px 0px 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-8HmoH .framer-jicsi1 { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-8HmoH .framer-lipi27 { align-content: flex-start; align-items: flex-start; 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-8HmoH .framer-1jyr9u0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8HmoH.framer-neu70r, .framer-8HmoH .framer-aj422u, .framer-8HmoH .framer-y7k13m, .framer-8HmoH .framer-1rszonw, .framer-8HmoH .framer-cvpswy, .framer-8HmoH .framer-lipi27 { gap: 0px; } .framer-8HmoH.framer-neu70r > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-8HmoH.framer-neu70r > :first-child, .framer-8HmoH .framer-y7k13m > :first-child { margin-top: 0px; } .framer-8HmoH.framer-neu70r > :last-child, .framer-8HmoH .framer-y7k13m > :last-child { margin-bottom: 0px; } .framer-8HmoH .framer-aj422u > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-8HmoH .framer-aj422u > :first-child, .framer-8HmoH .framer-1rszonw > :first-child, .framer-8HmoH .framer-cvpswy > :first-child, .framer-8HmoH .framer-lipi27 > :first-child { margin-left: 0px; } .framer-8HmoH .framer-aj422u > :last-child, .framer-8HmoH .framer-1rszonw > :last-child, .framer-8HmoH .framer-cvpswy > :last-child, .framer-8HmoH .framer-lipi27 > :last-child { margin-right: 0px; } .framer-8HmoH .framer-y7k13m > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-8HmoH .framer-1rszonw > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-8HmoH .framer-cvpswy > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-8HmoH .framer-lipi27 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-8HmoH.framer-v-1huwbxl.framer-neu70r { padding: 32px 0px 24px 0px; }\",\".framer-8HmoH.framer-v-1huwbxl .framer-y7k13m, .framer-8HmoH.framer-v-1ho9r9o .framer-y7k13m { gap: 24px; }\",\".framer-8HmoH.framer-v-1huwbxl .framer-149avpp, .framer-8HmoH.framer-v-1c4mem0 .framer-jicsi1, .framer-8HmoH.framer-v-1ho9r9o .framer-149avpp { order: 0; }\",\".framer-8HmoH.framer-v-1huwbxl .framer-cvpswy, .framer-8HmoH.framer-v-1ho9r9o .framer-cvpswy { order: 1; }\",\".framer-8HmoH.framer-v-1huwbxl .framer-lipi27 { justify-content: center; padding: 24px; }\",\".framer-8HmoH.framer-v-1huwbxl .framer-1jyr9u0, .framer-8HmoH.framer-v-1ho9r9o .framer-1jyr9u0 { flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8HmoH.framer-v-1huwbxl .framer-y7k13m { gap: 0px; } .framer-8HmoH.framer-v-1huwbxl .framer-y7k13m > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-8HmoH.framer-v-1huwbxl .framer-y7k13m > :first-child { margin-top: 0px; } .framer-8HmoH.framer-v-1huwbxl .framer-y7k13m > :last-child { margin-bottom: 0px; } }\",\".framer-8HmoH.framer-v-1c4mem0.framer-neu70r { width: 385px; }\",\".framer-8HmoH.framer-v-1c4mem0 .framer-1rszonw { align-content: flex-start; align-items: flex-start; flex-direction: column; }\",\".framer-8HmoH.framer-v-1c4mem0 .framer-149avpp { flex: none; width: 91%; }\",\".framer-8HmoH.framer-v-1c4mem0 .framer-cvpswy { position: absolute; right: 6px; top: 52%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8HmoH.framer-v-1c4mem0 .framer-1rszonw { gap: 0px; } .framer-8HmoH.framer-v-1c4mem0 .framer-1rszonw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-8HmoH.framer-v-1c4mem0 .framer-1rszonw > :first-child { margin-top: 0px; } .framer-8HmoH.framer-v-1c4mem0 .framer-1rszonw > :last-child { margin-bottom: 0px; } }\",\".framer-8HmoH.framer-v-1ho9r9o.framer-neu70r { padding: 0px; width: 380px; }\",\".framer-8HmoH.framer-v-1ho9r9o .framer-lipi27 { justify-content: center; padding: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8HmoH.framer-v-1ho9r9o .framer-y7k13m { gap: 0px; } .framer-8HmoH.framer-v-1ho9r9o .framer-y7k13m > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-8HmoH.framer-v-1ho9r9o .framer-y7k13m > :first-child { margin-top: 0px; } .framer-8HmoH.framer-v-1ho9r9o .framer-y7k13m > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 103\n * @framerIntrinsicWidth 1105\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"LzKL1JPFc\":{\"layout\":[\"fixed\",\"auto\"]},\"zw4k4mJDG\":{\"layout\":[\"fixed\",\"auto\"]},\"M2L8Y9l_T\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"baxjXyJgE\":\"tap\",\"C4FeBjQqd\":\"question\",\"dtpfKkxEc\":\"answer\",\"pXz6G8n4y\":\"answerVisible\",\"Iepd46w62\":\"iconClose\",\"b1gPskFZn\":\"iconOpen\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerr0dXzwlJt=withCSS(Component,css,\"framer-8HmoH\");export default Framerr0dXzwlJt;Framerr0dXzwlJt.displayName=\"Section/Single Faq\";Framerr0dXzwlJt.defaultProps={height:103,width:1105};addPropertyControls(Framerr0dXzwlJt,{variant:{options:[\"gR7DTnAn9\",\"LzKL1JPFc\",\"zw4k4mJDG\",\"M2L8Y9l_T\"],optionTitles:[\"Close\",\"Open\",\"Close Small\",\"Open Small\"],title:\"Variant\",type:ControlType.Enum},baxjXyJgE:{title:\"Tap\",type:ControlType.EventHandler},C4FeBjQqd:{defaultValue:\"What is Virlo?\",displayTextArea:false,title:\"Question\",type:ControlType.String},dtpfKkxEc:{defaultValue:\"Virlo is a cloud-based platform that offers a suite of software as a service (SaaS) solutions designed to streamline business operations, enhance collaboration, and drive productivity.\",displayTextArea:false,title:\"Answer\",type:ControlType.String},pXz6G8n4y:{defaultValue:true,title:\"Answer Visible\",type:ControlType.Boolean},Iepd46w62:{__defaultAssetReference:\"data:framer/asset-reference,dDFnN7NQRlS8lCvI0dkVOJZAUnw.svg?originalFilename=plus.svg&preferredSize=auto\",title:\"Icon Close\",type:ControlType.ResponsiveImage},b1gPskFZn:{__defaultAssetReference:\"data:framer/asset-reference,nvz8kMzYRBewS5zCsJBmI2NetBo.svg?originalFilename=minus.svg&preferredSize=auto\",title:\"Icon Open\",type:ControlType.ResponsiveImage}});addFonts(Framerr0dXzwlJt,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerr0dXzwlJt\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1105\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LzKL1JPFc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zw4k4mJDG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"M2L8Y9l_T\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"baxjXyJgE\\\":\\\"tap\\\",\\\"C4FeBjQqd\\\":\\\"question\\\",\\\"dtpfKkxEc\\\":\\\"answer\\\",\\\"pXz6G8n4y\\\":\\\"answerVisible\\\",\\\"Iepd46w62\\\":\\\"iconClose\\\",\\\"b1gPskFZn\\\":\\\"iconOpen\\\"}\",\"framerIntrinsicHeight\":\"103\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./r0dXzwlJt.map", "// Generated by Framer (9d598a4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,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 SectionSingleFaq from\"https://framerusercontent.com/modules/DPSnsi3I7AJDU4GkNCG4/UQhud7VVArrZ2QRjgnKH/r0dXzwlJt.js\";const SectionSingleFaqFonts=getFonts(SectionSingleFaq);const cycleOrder=[\"IzEYL5mBv\",\"ZXdYwB9mv\",\"M0cABJ0Nl\",\"dMd8P6m9v\",\"anM1NgRCN\",\"qfEUt2iEH\",\"qRoWUTUxX\",\"bN4Kn_Qwb\",\"HwcvqLJ35\"];const serializationHash=\"framer-PH012\";const variantClassNames={anM1NgRCN:\"framer-v-13l97wq\",bN4Kn_Qwb:\"framer-v-wmq02w\",dMd8P6m9v:\"framer-v-1fd3tjl\",HwcvqLJ35:\"framer-v-6nzdnb\",IzEYL5mBv:\"framer-v-gv1zzo\",M0cABJ0Nl:\"framer-v-1mvfu7y\",qfEUt2iEH:\"framer-v-11vp1hy\",qRoWUTUxX:\"framer-v-68wgra\",ZXdYwB9mv:\"framer-v-teo99n\"};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={\"Variant 2\":\"ZXdYwB9mv\",\"Variant 3\":\"M0cABJ0Nl\",\"Variant 4\":\"dMd8P6m9v\",\"Variant 5\":\"anM1NgRCN\",\"Variant 6\":\"qfEUt2iEH\",\"Variant 7\":\"qRoWUTUxX\",\"Variant 8\":\"HwcvqLJ35\",\"Variant 9\":\"bN4Kn_Qwb\",Desktop:\"IzEYL5mBv\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"IzEYL5mBv\"};};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:\"IzEYL5mBv\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const baxjXyJgE16pimlv=activeVariantCallback(async(...args)=>{setVariant(\"bN4Kn_Qwb\");});const baxjXyJgE1el9mno=activeVariantCallback(async(...args)=>{setVariant(\"ZXdYwB9mv\");});const baxjXyJgE1pfzcrl=activeVariantCallback(async(...args)=>{setVariant(\"M0cABJ0Nl\");});const baxjXyJgE1xin8oi=activeVariantCallback(async(...args)=>{setVariant(\"dMd8P6m9v\");});const baxjXyJgE17v1kln=activeVariantCallback(async(...args)=>{setVariant(\"anM1NgRCN\");});const baxjXyJgEj9u33w=activeVariantCallback(async(...args)=>{setVariant(\"qfEUt2iEH\");});const baxjXyJgEqcohki=activeVariantCallback(async(...args)=>{setVariant(\"qRoWUTUxX\");});const baxjXyJgE72o5kq=activeVariantCallback(async(...args)=>{setVariant(\"HwcvqLJ35\");});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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-gv1zzo\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"IzEYL5mBv\",ref:refBinding,style:{...style},...addPropertyOverrides({anM1NgRCN:{\"data-framer-name\":\"Variant 5\"},bN4Kn_Qwb:{\"data-framer-name\":\"Variant 9\"},dMd8P6m9v:{\"data-framer-name\":\"Variant 4\"},HwcvqLJ35:{\"data-framer-name\":\"Variant 8\"},M0cABJ0Nl:{\"data-framer-name\":\"Variant 3\"},qfEUt2iEH:{\"data-framer-name\":\"Variant 6\"},qRoWUTUxX:{\"data-framer-name\":\"Variant 7\"},ZXdYwB9mv:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y70qvf\",\"data-framer-name\":\"SIngle FAQ\",layoutDependency:layoutDependency,layoutId:\"H8XQ9z0mi\",style:{borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||945.5)-0-824)/2+0+0)+0,...addPropertyOverrides({anM1NgRCN:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||917.5)-0-824)/2+0+0)+0},bN4Kn_Qwb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||825.5)-0-824)/2+0+0)+0},HwcvqLJ35:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+0+0)+0},M0cABJ0Nl:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+0+0)+0},qfEUt2iEH:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+0+0)+0},qRoWUTUxX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1001.5)-0-824)/2+0+0)+0},ZXdYwB9mv:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+0+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-g2nq6g-container\",layoutDependency:layoutDependency,layoutId:\"hLTlWSemj-container\",nodeId:\"hLTlWSemj\",rendersWithMotion:true,scopeId:\"r665D9L5t\",children:/*#__PURE__*/_jsx(SectionSingleFaq,{baxjXyJgE:baxjXyJgE16pimlv,C4FeBjQqd:\"What is Virlo?\",dtpfKkxEc:\"Virlo is a dashboard that identifies viral trends and niches on short form content platforms to help you as a creator go viral easier!\",height:\"100%\",id:\"hLTlWSemj\",layoutId:\"hLTlWSemj\",pXz6G8n4y:true,style:{width:\"100%\"},variant:\"LzKL1JPFc\",width:\"100%\",...addPropertyOverrides({anM1NgRCN:{variant:\"gR7DTnAn9\"},bN4Kn_Qwb:{variant:\"gR7DTnAn9\"},dMd8P6m9v:{variant:\"gR7DTnAn9\"},HwcvqLJ35:{variant:\"gR7DTnAn9\"},M0cABJ0Nl:{variant:\"gR7DTnAn9\"},qfEUt2iEH:{variant:\"gR7DTnAn9\"},qRoWUTUxX:{variant:\"gR7DTnAn9\"},ZXdYwB9mv:{variant:\"gR7DTnAn9\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c3h3qz\",\"data-border\":true,\"data-framer-name\":\"SIngle FAQ\",layoutDependency:layoutDependency,layoutId:\"cW5NAjoT7\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||945.5)-0-824)/2+103+0)+0,...addPropertyOverrides({anM1NgRCN:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||917.5)-0-824)/2+103+0)+0},bN4Kn_Qwb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||825.5)-0-824)/2+103+0)+0},HwcvqLJ35:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+103+0)+0},M0cABJ0Nl:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+103+0)+0},qfEUt2iEH:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+103+0)+0},qRoWUTUxX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1001.5)-0-824)/2+103+0)+0},ZXdYwB9mv:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+103+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13yyjg7-container\",layoutDependency:layoutDependency,layoutId:\"o2keqRvSZ-container\",nodeId:\"o2keqRvSZ\",rendersWithMotion:true,scopeId:\"r665D9L5t\",children:/*#__PURE__*/_jsx(SectionSingleFaq,{baxjXyJgE:baxjXyJgE1el9mno,C4FeBjQqd:\"How does Virlo work?\",dtpfKkxEc:\"We use a proprietary algorithm to scrape viral content and use AI to analyze those trends. This allows us to package the data for you to easily leverage the insights to get ahead of the competition and post on viral niches and trends whilst they are unsaturated.\",height:\"100%\",id:\"o2keqRvSZ\",layoutId:\"o2keqRvSZ\",pXz6G8n4y:true,style:{width:\"100%\"},variant:\"gR7DTnAn9\",width:\"100%\",...addPropertyOverrides({ZXdYwB9mv:{baxjXyJgE:baxjXyJgE16pimlv,variant:\"LzKL1JPFc\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yzcbzh\",\"data-framer-name\":\"SIngle FAQ\",layoutDependency:layoutDependency,layoutId:\"vAOs8or0q\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||945.5)-0-824)/2+206+0)+0,...addPropertyOverrides({anM1NgRCN:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||917.5)-0-824)/2+206+0)+0},bN4Kn_Qwb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||825.5)-0-824)/2+206+0)+0},HwcvqLJ35:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+206+0)+0},M0cABJ0Nl:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+206+0)+0},qfEUt2iEH:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+206+0)+0},qRoWUTUxX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1001.5)-0-824)/2+206+0)+0},ZXdYwB9mv:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+206+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1sfbmyl-container\",layoutDependency:layoutDependency,layoutId:\"vX8H_GEcs-container\",nodeId:\"vX8H_GEcs\",rendersWithMotion:true,scopeId:\"r665D9L5t\",children:/*#__PURE__*/_jsx(SectionSingleFaq,{baxjXyJgE:baxjXyJgE1pfzcrl,C4FeBjQqd:\"Why did you start Virlo?\",dtpfKkxEc:\"We started Virlo because we\u2019re deeply interested in the rapidly changing nature of the viral world. We want to create a platform that continues to get better at identifying these viral trends and can catch them as early as possible for creators like you.\",height:\"100%\",id:\"vX8H_GEcs\",layoutId:\"vX8H_GEcs\",pXz6G8n4y:true,style:{width:\"100%\"},variant:\"gR7DTnAn9\",width:\"100%\",...addPropertyOverrides({M0cABJ0Nl:{baxjXyJgE:baxjXyJgE16pimlv,variant:\"LzKL1JPFc\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-163w8he\",\"data-border\":true,\"data-framer-name\":\"SIngle FAQ\",layoutDependency:layoutDependency,layoutId:\"btmvVx55W\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||945.5)-0-824)/2+309+0)+0,...addPropertyOverrides({anM1NgRCN:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||917.5)-0-824)/2+309+0)+0},bN4Kn_Qwb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||825.5)-0-824)/2+309+0)+0},HwcvqLJ35:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+309+0)+0},M0cABJ0Nl:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+309+0)+0},qfEUt2iEH:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+309+0)+0},qRoWUTUxX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1001.5)-0-824)/2+309+0)+0},ZXdYwB9mv:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+309+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4a3hjb-container\",layoutDependency:layoutDependency,layoutId:\"V1A9W8Jlo-container\",nodeId:\"V1A9W8Jlo\",rendersWithMotion:true,scopeId:\"r665D9L5t\",children:/*#__PURE__*/_jsx(SectionSingleFaq,{baxjXyJgE:baxjXyJgE1xin8oi,C4FeBjQqd:\"Can I cancel anytime I want?\",dtpfKkxEc:\"Yes, of course you can, go to the billing page to do so. But we would be sad to see you go. You can also deactivate your account and come back as you please.\",height:\"100%\",id:\"V1A9W8Jlo\",layoutId:\"V1A9W8Jlo\",pXz6G8n4y:true,style:{width:\"100%\"},variant:\"gR7DTnAn9\",width:\"100%\",...addPropertyOverrides({dMd8P6m9v:{baxjXyJgE:baxjXyJgE16pimlv,variant:\"LzKL1JPFc\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lj0oe2\",\"data-border\":true,\"data-framer-name\":\"SIngle FAQ\",layoutDependency:layoutDependency,layoutId:\"wnQKpaH_w\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||945.5)-0-824)/2+412+0)+0,...addPropertyOverrides({anM1NgRCN:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||917.5)-0-824)/2+412+0)+0},bN4Kn_Qwb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||825.5)-0-824)/2+412+0)+0},HwcvqLJ35:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+412+0)+0},M0cABJ0Nl:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+412+0)+0},qfEUt2iEH:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+412+0)+0},qRoWUTUxX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1001.5)-0-824)/2+412+0)+0},ZXdYwB9mv:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+412+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ahj0v2-container\",layoutDependency:layoutDependency,layoutId:\"MEFIEgG7C-container\",nodeId:\"MEFIEgG7C\",rendersWithMotion:true,scopeId:\"r665D9L5t\",children:/*#__PURE__*/_jsx(SectionSingleFaq,{baxjXyJgE:baxjXyJgE17v1kln,C4FeBjQqd:\"I have more questions!\",dtpfKkxEc:\"Join the Discord or email us at info@virlo.ai if you need help or have any questions or feedback for us!\",height:\"100%\",id:\"MEFIEgG7C\",layoutId:\"MEFIEgG7C\",pXz6G8n4y:true,style:{width:\"100%\"},variant:\"gR7DTnAn9\",width:\"100%\",...addPropertyOverrides({anM1NgRCN:{baxjXyJgE:baxjXyJgE16pimlv,variant:\"LzKL1JPFc\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-y3a1b6\",\"data-border\":true,\"data-framer-name\":\"SIngle FAQ\",layoutDependency:layoutDependency,layoutId:\"PjtHG8cEI\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||945.5)-0-824)/2+515+0)+0,...addPropertyOverrides({anM1NgRCN:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||917.5)-0-824)/2+515+0)+0},bN4Kn_Qwb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||825.5)-0-824)/2+515+0)+0},HwcvqLJ35:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+515+0)+0},M0cABJ0Nl:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+515+0)+0},qfEUt2iEH:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+515+0)+0},qRoWUTUxX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1001.5)-0-824)/2+515+0)+0},ZXdYwB9mv:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+515+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-znyl48-container\",layoutDependency:layoutDependency,layoutId:\"MQm8tTZDE-container\",nodeId:\"MQm8tTZDE\",rendersWithMotion:true,scopeId:\"r665D9L5t\",children:/*#__PURE__*/_jsx(SectionSingleFaq,{baxjXyJgE:baxjXyJgEj9u33w,C4FeBjQqd:\"Does Virlo have all short form platforms currently on it?\",dtpfKkxEc:\"We are currently focusing on TikTok & YouTube Shorts as they are the most popular short-form platforms and have the highest monetization opportunities for creators. Most of the niches apply broadly in a \u201Ctrickle down\u201D manner to the Reels & Snapchat of the world.\",height:\"100%\",id:\"MQm8tTZDE\",layoutId:\"MQm8tTZDE\",pXz6G8n4y:true,style:{width:\"100%\"},variant:\"gR7DTnAn9\",width:\"100%\",...addPropertyOverrides({qfEUt2iEH:{baxjXyJgE:baxjXyJgE16pimlv,variant:\"LzKL1JPFc\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-btkq1h\",\"data-border\":true,\"data-framer-name\":\"SIngle FAQ\",layoutDependency:layoutDependency,layoutId:\"IqMt84B2c\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||945.5)-0-824)/2+618+0)+0,...addPropertyOverrides({anM1NgRCN:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||917.5)-0-824)/2+618+0)+0},bN4Kn_Qwb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||825.5)-0-824)/2+618+0)+0},HwcvqLJ35:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+618+0)+0},M0cABJ0Nl:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+618+0)+0},qfEUt2iEH:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+618+0)+0},qRoWUTUxX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1001.5)-0-824)/2+618+0)+0},ZXdYwB9mv:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+618+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14o3zvi-container\",layoutDependency:layoutDependency,layoutId:\"j7vBhlACY-container\",nodeId:\"j7vBhlACY\",rendersWithMotion:true,scopeId:\"r665D9L5t\",children:/*#__PURE__*/_jsx(SectionSingleFaq,{baxjXyJgE:baxjXyJgEqcohki,C4FeBjQqd:\"If I\u2019m a beginner, where should I start?\",dtpfKkxEc:\"Virlo is more than adept at helping beginners go viral with their very first video! We recommend scrolling the outliers tab to browse a wide array of viral videos and find a niche/ topic that fits your interests. If you already have a niche in mind, we\u2019d suggest exploring the drilldown of your selected niche to find relevant high performing videos and data for you to use to your benefit.\",height:\"100%\",id:\"j7vBhlACY\",layoutId:\"j7vBhlACY\",pXz6G8n4y:true,style:{width:\"100%\"},variant:\"gR7DTnAn9\",width:\"100%\",...addPropertyOverrides({HwcvqLJ35:{baxjXyJgE:baxjXyJgE16pimlv},qRoWUTUxX:{baxjXyJgE:baxjXyJgE16pimlv,variant:\"LzKL1JPFc\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ci1jxf\",\"data-border\":true,\"data-framer-name\":\"SIngle FAQ\",layoutDependency:layoutDependency,layoutId:\"MD5YF2ekg\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||945.5)-0-824)/2+721+0)+0,...addPropertyOverrides({anM1NgRCN:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||917.5)-0-824)/2+721+0)+0},bN4Kn_Qwb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||825.5)-0-824)/2+721+0)+0},HwcvqLJ35:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+721+0)+0},M0cABJ0Nl:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+721+0)+0},qfEUt2iEH:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+721+0)+0},qRoWUTUxX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||1001.5)-0-824)/2+721+0)+0},ZXdYwB9mv:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||973.5)-0-824)/2+721+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-j69ap2-container\",layoutDependency:layoutDependency,layoutId:\"qKo7PJcA7-container\",nodeId:\"qKo7PJcA7\",rendersWithMotion:true,scopeId:\"r665D9L5t\",children:/*#__PURE__*/_jsx(SectionSingleFaq,{baxjXyJgE:baxjXyJgE72o5kq,C4FeBjQqd:\"How quickly can I see results using Virlo?\",dtpfKkxEc:\"Most creators at minimum triple their average views per video within 3 months of using Virlo regularly. We recommend checking in for just 5-10 minutes everyday to see what is going viral in your niche and posting at least daily on your social media platforms to take advantage of this. Nothing beats consistency!\",height:\"100%\",id:\"qKo7PJcA7\",layoutId:\"qKo7PJcA7\",pXz6G8n4y:true,style:{width:\"100%\"},variant:\"gR7DTnAn9\",width:\"100%\",...addPropertyOverrides({bN4Kn_Qwb:{baxjXyJgE:baxjXyJgEqcohki},dMd8P6m9v:{baxjXyJgE:baxjXyJgEqcohki},HwcvqLJ35:{baxjXyJgE:baxjXyJgE16pimlv,variant:\"LzKL1JPFc\"},M0cABJ0Nl:{baxjXyJgE:baxjXyJgEqcohki}},baseVariant,gestureVariant)})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PH012.framer-1lhlgdw, .framer-PH012 .framer-1lhlgdw { display: block; }\",\".framer-PH012.framer-gv1zzo { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1105px; }\",\".framer-PH012 .framer-1y70qvf, .framer-PH012 .framer-1c3h3qz, .framer-PH012 .framer-1yzcbzh, .framer-PH012 .framer-163w8he, .framer-PH012 .framer-lj0oe2, .framer-PH012 .framer-y3a1b6, .framer-PH012 .framer-btkq1h, .framer-PH012 .framer-ci1jxf { 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-PH012 .framer-g2nq6g-container, .framer-PH012 .framer-13yyjg7-container, .framer-PH012 .framer-1sfbmyl-container, .framer-PH012 .framer-4a3hjb-container, .framer-PH012 .framer-ahj0v2-container, .framer-PH012 .framer-znyl48-container, .framer-PH012 .framer-14o3zvi-container, .framer-PH012 .framer-j69ap2-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PH012.framer-gv1zzo, .framer-PH012 .framer-1y70qvf, .framer-PH012 .framer-1c3h3qz, .framer-PH012 .framer-1yzcbzh, .framer-PH012 .framer-163w8he, .framer-PH012 .framer-lj0oe2, .framer-PH012 .framer-y3a1b6, .framer-PH012 .framer-btkq1h, .framer-PH012 .framer-ci1jxf { gap: 0px; } .framer-PH012.framer-gv1zzo > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PH012.framer-gv1zzo > :first-child { margin-top: 0px; } .framer-PH012.framer-gv1zzo > :last-child { margin-bottom: 0px; } .framer-PH012 .framer-1y70qvf > *, .framer-PH012 .framer-1c3h3qz > *, .framer-PH012 .framer-1yzcbzh > *, .framer-PH012 .framer-163w8he > *, .framer-PH012 .framer-lj0oe2 > *, .framer-PH012 .framer-y3a1b6 > *, .framer-PH012 .framer-btkq1h > *, .framer-PH012 .framer-ci1jxf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PH012 .framer-1y70qvf > :first-child, .framer-PH012 .framer-1c3h3qz > :first-child, .framer-PH012 .framer-1yzcbzh > :first-child, .framer-PH012 .framer-163w8he > :first-child, .framer-PH012 .framer-lj0oe2 > :first-child, .framer-PH012 .framer-y3a1b6 > :first-child, .framer-PH012 .framer-btkq1h > :first-child, .framer-PH012 .framer-ci1jxf > :first-child { margin-left: 0px; } .framer-PH012 .framer-1y70qvf > :last-child, .framer-PH012 .framer-1c3h3qz > :last-child, .framer-PH012 .framer-1yzcbzh > :last-child, .framer-PH012 .framer-163w8he > :last-child, .framer-PH012 .framer-lj0oe2 > :last-child, .framer-PH012 .framer-y3a1b6 > :last-child, .framer-PH012 .framer-btkq1h > :last-child, .framer-PH012 .framer-ci1jxf > :last-child { margin-right: 0px; } }\",'.framer-PH012[data-border=\"true\"]::after, .framer-PH012 [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 945.5\n * @framerIntrinsicWidth 1105\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZXdYwB9mv\":{\"layout\":[\"fixed\",\"auto\"]},\"M0cABJ0Nl\":{\"layout\":[\"fixed\",\"auto\"]},\"dMd8P6m9v\":{\"layout\":[\"fixed\",\"auto\"]},\"anM1NgRCN\":{\"layout\":[\"fixed\",\"auto\"]},\"qfEUt2iEH\":{\"layout\":[\"fixed\",\"auto\"]},\"qRoWUTUxX\":{\"layout\":[\"fixed\",\"auto\"]},\"bN4Kn_Qwb\":{\"layout\":[\"fixed\",\"auto\"]},\"HwcvqLJ35\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerr665D9L5t=withCSS(Component,css,\"framer-PH012\");export default Framerr665D9L5t;Framerr665D9L5t.displayName=\"Section/Faq area\";Framerr665D9L5t.defaultProps={height:945.5,width:1105};addPropertyControls(Framerr665D9L5t,{variant:{options:[\"IzEYL5mBv\",\"ZXdYwB9mv\",\"M0cABJ0Nl\",\"dMd8P6m9v\",\"anM1NgRCN\",\"qfEUt2iEH\",\"qRoWUTUxX\",\"bN4Kn_Qwb\",\"HwcvqLJ35\"],optionTitles:[\"Desktop\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\",\"Variant 9\",\"Variant 8\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerr665D9L5t,[{explicitInter:true,fonts:[]},...SectionSingleFaqFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerr665D9L5t\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZXdYwB9mv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"M0cABJ0Nl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dMd8P6m9v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"anM1NgRCN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qfEUt2iEH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qRoWUTUxX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bN4Kn_Qwb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HwcvqLJ35\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"945.5\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1105\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./r665D9L5t.map", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"qzSZ9tJcl\",\"wMRc1O_cL\",\"SDcAI4PCl\"];const serializationHash=\"framer-o7w4x\";const variantClassNames={qzSZ9tJcl:\"framer-v-8p5kt4\",SDcAI4PCl:\"framer-v-lue1pj\",wMRc1O_cL:\"framer-v-ux5fvl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Variant 1\":\"qzSZ9tJcl\",\"Variant 2\":\"wMRc1O_cL\",\"Variant 3\":\"SDcAI4PCl\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"qzSZ9tJcl\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);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:\"qzSZ9tJcl\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear17g0o5p=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"wMRc1O_cL\"),500);});const onAppear1wda6vr=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"SDcAI4PCl\"),1e3);});const onAppearqi91v8=activeVariantCallback(async(...args)=>{setVariant(\"qzSZ9tJcl\");});useOnVariantChange(baseVariant,{default:onAppear17g0o5p,SDcAI4PCl:onAppearqi91v8,wMRc1O_cL:onAppear1wda6vr});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-8p5kt4\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"qzSZ9tJcl\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({SDcAI4PCl:{\"data-framer-name\":\"Variant 3\"},wMRc1O_cL:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1edf4tx\",layoutDependency:layoutDependency,layoutId:\"gVVQ7w1CL\",style:{backgroundColor:\"var(--token-3537e7dc-d161-4b85-9733-7df0cbe9da64, rgb(232, 59, 136))\",rotate:20}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uzh3s5\",layoutDependency:layoutDependency,layoutId:\"kyNicfX0P\",style:{backgroundColor:\"var(--token-3537e7dc-d161-4b85-9733-7df0cbe9da64, rgb(232, 59, 136))\",rotate:20}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c8y5as\",layoutDependency:layoutDependency,layoutId:\"pa8oEy3Pk\",style:{backgroundColor:\"var(--token-0ac0ec75-91d8-44b0-ab1f-e7b70cbab42d, rgb(255, 114, 159))\",rotate:90}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ukdkb6\",layoutDependency:layoutDependency,layoutId:\"fR7_UhPm7\",style:{backgroundColor:\"var(--token-0ac0ec75-91d8-44b0-ab1f-e7b70cbab42d, rgb(255, 114, 159))\",rotate:90}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-o7w4x.framer-13qgdl0, .framer-o7w4x .framer-13qgdl0 { display: block; }\",\".framer-o7w4x.framer-8p5kt4 { height: 46px; overflow: hidden; position: relative; width: 54px; }\",\".framer-o7w4x .framer-1edf4tx { bottom: -1px; flex: none; left: 15px; overflow: hidden; position: absolute; top: -1px; width: 2px; }\",\".framer-o7w4x .framer-1uzh3s5 { bottom: -1px; flex: none; left: 35px; overflow: hidden; position: absolute; top: -1px; width: 2px; }\",\".framer-o7w4x .framer-1c8y5as { flex: none; height: 52px; left: calc(50.00000000000002% - 2px / 2); overflow: hidden; position: absolute; top: -15px; width: 2px; }\",\".framer-o7w4x .framer-ukdkb6 { bottom: -16px; flex: none; height: 52px; left: calc(46.29629629629632% - 2px / 2); overflow: hidden; position: absolute; width: 2px; }\",\".framer-o7w4x.framer-v-ux5fvl .framer-1edf4tx { left: 22px; }\",\".framer-o7w4x.framer-v-ux5fvl .framer-1uzh3s5 { left: unset; right: 23px; }\",\".framer-o7w4x.framer-v-ux5fvl .framer-1c8y5as { top: -7px; }\",\".framer-o7w4x.framer-v-ux5fvl .framer-ukdkb6 { bottom: -8px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 46\n * @framerIntrinsicWidth 54\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"wMRc1O_cL\":{\"layout\":[\"fixed\",\"fixed\"]},\"SDcAI4PCl\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerwhqN8FOxM=withCSS(Component,css,\"framer-o7w4x\");export default FramerwhqN8FOxM;FramerwhqN8FOxM.displayName=\"hashtagicon\";FramerwhqN8FOxM.defaultProps={height:46,width:54};addPropertyControls(FramerwhqN8FOxM,{variant:{options:[\"qzSZ9tJcl\",\"wMRc1O_cL\",\"SDcAI4PCl\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerwhqN8FOxM,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwhqN8FOxM\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"46\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wMRc1O_cL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SDcAI4PCl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"54\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./whqN8FOxM.map", "// Generated by Framer (f7ce5cf)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps}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 Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import Banner from\"#framer/local/canvasComponent/AwJlOjIbZ/AwJlOjIbZ.js\";import Testimonials from\"#framer/local/canvasComponent/CDRJNwUvO/CDRJNwUvO.js\";import SectionSectionBadge from\"#framer/local/canvasComponent/e3bCcGy9N/e3bCcGy9N.js\";import HomePlay from\"#framer/local/canvasComponent/iMNDMd4SJ/iMNDMd4SJ.js\";import ButtonButtonRegular from\"#framer/local/canvasComponent/OvOrWvqJc/OvOrWvqJc.js\";import SectionFaqArea from\"#framer/local/canvasComponent/r665D9L5t/r665D9L5t.js\";import WhyChooseUsSingleCard from\"#framer/local/canvasComponent/tOVqvisWd/tOVqvisWd.js\";import ButtonButton,*as ButtonButtonInfo from\"#framer/local/canvasComponent/WFXpViQIs/WFXpViQIs.js\";import Hashtagicon from\"#framer/local/canvasComponent/whqN8FOxM/whqN8FOxM.js\";import SectionNavbar from\"#framer/local/canvasComponent/xcu538dCS/xcu538dCS.js\";import SectionFooter from\"#framer/local/canvasComponent/Z9bcIBrOD/Z9bcIBrOD.js\";import{preserveReferral}from\"#framer/local/codeFile/w32zcNL/Examples_2.js\";import*as sharedStyle2 from\"#framer/local/css/dRyncBhA8/dRyncBhA8.js\";import*as sharedStyle from\"#framer/local/css/gKXBbac3R/gKXBbac3R.js\";import*as sharedStyle3 from\"#framer/local/css/MomgTYgy0/MomgTYgy0.js\";import*as sharedStyle1 from\"#framer/local/css/VIBJVL1mO/VIBJVL1mO.js\";import metadataProvider from\"#framer/local/webPageMetadata/WZYCZS0CF/WZYCZS0CF.js\";const ButtonButtonFonts=getFonts(ButtonButton);const ButtonButtonPreserveReferral12a8avvWithMappedReactProps16xpo9g=withMappedReactProps(withCodeBoundaryForOverrides(ButtonButton,{nodeId:\"ThLOGZiQ9\",override:preserveReferral,scopeId:\"WZYCZS0CF\"}),ButtonButtonInfo);const TickerFonts=getFonts(Ticker);const MotionDivWithFX=withFX(motion.div);const SectionSectionBadgeFonts=getFonts(SectionSectionBadge);const ContainerWithFX=withFX(Container);const RichTextWithFX=withFX(RichText);const HomePlayFonts=getFonts(HomePlay);const YouTubeFonts=getFonts(YouTube);const PhosphorFonts=getFonts(Phosphor);const ImageWithFX=withFX(Image);const ButtonButtonPreserveReferralzaguseWithMappedReactProps16xpo9g=withMappedReactProps(withCodeBoundaryForOverrides(ButtonButton,{nodeId:\"zrD0RqGUX\",override:preserveReferral,scopeId:\"WZYCZS0CF\"}),ButtonButtonInfo);const WhyChooseUsSingleCardFonts=getFonts(WhyChooseUsSingleCard);const HashtagiconFonts=getFonts(Hashtagicon);const ButtonButtonPreserveReferral1kn6cwfWithMappedReactProps16xpo9g=withMappedReactProps(withCodeBoundaryForOverrides(ButtonButton,{nodeId:\"TxytfiwpI\",override:preserveReferral,scopeId:\"WZYCZS0CF\"}),ButtonButtonInfo);const TestimonialsFonts=getFonts(Testimonials);const SectionFaqAreaFonts=getFonts(SectionFaqArea);const ButtonButtonRegularFonts=getFonts(ButtonButtonRegular);const SectionNavbarFonts=getFonts(SectionNavbar);const SectionFooterFonts=getFonts(SectionFooter);const BannerFonts=getFonts(Banner);const breakpoints={bxSO8cNLk:\"(min-width: 1200px) and (max-width: 1439px)\",hSXnnG9Wl:\"(min-width: 1440px)\",S_VD2GDvw:\"(max-width: 809px)\",VJ2fFZlMC:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-ZHudh\";const variantClassNames={bxSO8cNLk:\"framer-v-1tttpgh\",hSXnnG9Wl:\"framer-v-biw4gr\",S_VD2GDvw:\"framer-v-250d5\",VJ2fFZlMC:\"framer-v-10atr58\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition1={damping:60,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition2={damping:30,delay:.5,mass:1,stiffness:150,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition3={damping:30,delay:0,mass:1,stiffness:150,type:\"spring\"};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 addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"bxSO8cNLk\",Desktop:\"hSXnnG9Wl\",Phone:\"S_VD2GDvw\",Tablet:\"VJ2fFZlMC\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"hSXnnG9Wl\"};};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);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 b7dTiwSTk3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onClick1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"RV3XeZkCC\");const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const elementId1=useRouteElementId(\"CpLYklHIy\");const elementId2=useRouteElementId(\"xOMwvQCaL\");const elementId3=useRouteElementId(\"LUnzpPioF\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"r6zdSevNC\");const ref5=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"hSXnnG9Wl\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(11, 12, 11); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-biw4gr\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-tp5vbp\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8fdzw\",\"data-framer-name\":\"Linear Color\"}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-q3kx1w\",\"data-framer-name\":\"Container\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1krkrb4\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rg1mpi\",\"data-framer-name\":\"Title & Button\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i3l5mn\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o9m15s\",\"data-framer-name\":\"Title & Tag Line\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RnVubmVsIERpc3BsYXktcmVndWxhcg==\",\"--framer-font-family\":'\"Funnel Display\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8765c46c-afe8-481b-8321-5b63c80d0460, rgb(255, 255, 255))\"},children:\"Create Viral Shorts with the #1 Virality Trend Tool\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RnVubmVsIERpc3BsYXktcmVndWxhcg==\",\"--framer-font-family\":'\"Funnel Display\", sans-serif',\"--framer-font-size\":\"102px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8765c46c-afe8-481b-8321-5b63c80d0460, rgb(255, 255, 255))\"},children:\"Create Viral Shorts with the #1 Virality Trend Tool\"})}),className:\"framer-69b6g4\",fonts:[\"GF;Funnel Display-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-38oo8s\",\"data-styles-preset\":\"gKXBbac3R\",style:{\"--framer-text-alignment\":\"center\"},children:\"Detailed profile analytics, short-form trends, and optimized posting potential\"})}),className:\"framer-1dc8z7a\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-csil0y\",\"data-framer-name\":\"Button Wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{y:(componentViewport?.y||0)+0+0+20+0+0+0+140+156+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:63,y:(componentViewport?.y||0)+0+0+20+0+0+0+180+215.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12a8avv-container\",nodeId:\"ThLOGZiQ9\",rendersWithMotion:true,scopeId:\"WZYCZS0CF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{mlfcsn0lT:24}},children:/*#__PURE__*/_jsx(ButtonButtonPreserveReferral12a8avvWithMappedReactProps16xpo9g,{fshMEdBNL:\"16px 32px 16px 32px\",height:\"100%\",id:\"ThLOGZiQ9\",layoutId:\"ThLOGZiQ9\",mggdDmaFY:\"999px\",mlfcsn0lT:32,variant:\"uvSo6Vaq6\",width:\"100%\",y73JFdtH6:true,ylVlgUgjr:\"Get Access to Virlo\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e9mi68\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mewfxz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"BY6gJSjsy\",scopeId:\"WZYCZS0CF\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:64,height:\"100%\",hoverFactor:1,id:\"BY6gJSjsy\",layoutId:\"BY6gJSjsy\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:true,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:204,intrinsicWidth:306,pixelHeight:408,pixelWidth:612,sizes:\"340.5px\",src:\"https://framerusercontent.com/images/g7JG35FPRn2YM9b8FfyB6wklt0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/g7JG35FPRn2YM9b8FfyB6wklt0.png?scale-down-to=512 512w,https://framerusercontent.com/images/g7JG35FPRn2YM9b8FfyB6wklt0.png 612w\"},className:\"framer-ha8uwq\",\"data-framer-name\":\"1697644940555-removebg-preview\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1500,pixelHeight:2e3,pixelWidth:3e3,sizes:\"300px\",src:\"https://framerusercontent.com/images/lpmykwxXNhoI8nXhOx1wP6IUY.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/lpmykwxXNhoI8nXhOx1wP6IUY.png?scale-down-to=512 512w,https://framerusercontent.com/images/lpmykwxXNhoI8nXhOx1wP6IUY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lpmykwxXNhoI8nXhOx1wP6IUY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/lpmykwxXNhoI8nXhOx1wP6IUY.png 3000w\"},className:\"framer-rif6ia\",\"data-framer-name\":\"Image\"})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1vpu9nf\",\"data-framer-name\":\"Demo\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hvksag\",\"data-framer-name\":\"Section Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{y:(componentViewport?.y||0)+0+6094.2+60+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+0+782.4+120+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bxSO8cNLk:{__framer__targets:[{ref:ref3,target:\"animate\"}]},S_VD2GDvw:{__framer__targets:[{ref:ref3,target:\"animate\"}]},VJ2fFZlMC:{__framer__targets:[{ref:ref3,target:\"animate\"}]}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mlwzy6-container\",nodeId:\"A1mK4_CNN\",rendersWithMotion:true,scopeId:\"WZYCZS0CF\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SectionSectionBadge,{h5mTi1koL:\"Our Tool\",height:\"100%\",id:\"A1mK4_CNN\",layoutId:\"A1mK4_CNN\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1csvmzi\",\"data-styles-preset\":\"VIBJVL1mO\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8765c46c-afe8-481b-8321-5b63c80d0460, rgb(255, 255, 255))\"},children:\"Have a look at the tool\"})}),className:\"framer-4g53x7\",\"data-framer-name\":\"Benefits of being a member\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-t86zhv\",\"data-styles-preset\":\"dRyncBhA8\",style:{\"--framer-text-alignment\":\"center\"},children:\"Analyze trends, discover what works, and elevate content creation with data-driven insights.\"})}),className:\"framer-15veo3o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nugsoz\",\"data-framer-name\":\"mock\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{y:(componentViewport?.y||0)+0+6094.2+60+333+70.6914},VJ2fFZlMC:{y:(componentViewport?.y||0)+0+782.4+120+333+167.3752}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+782.4+120+333+278.0857,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-ofnj52-container\",id:\"ofnj52\",nodeId:\"DD5QdQ5vV\",scopeId:\"WZYCZS0CF\",children:[/*#__PURE__*/_jsx(HomePlay,{b7dTiwSTk:b7dTiwSTk3bnx0g({overlay}),height:\"100%\",id:\"DD5QdQ5vV\",layoutId:\"DD5QdQ5vV\",variant:overlay.visible?\"zCx0O9h8Q\":undefined,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:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1cvq6k6\"),\"data-framer-portal-id\":\"ofnj52\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0}},\"j6LBmGZJQ\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1epqpk3-container\"),\"data-framer-portal-id\":\"ofnj52\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wvY_6Dqjp\",rendersWithMotion:true,scopeId:\"WZYCZS0CF\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"wvY_6Dqjp\",isMixedBorderRadius:false,isRed:true,layoutId:\"wvY_6Dqjp\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=-mRvPnZhcL8\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1nx59bf-container\"),\"data-framer-portal-id\":\"ofnj52\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yCRsCtc9t\",rendersWithMotion:true,scopeId:\"WZYCZS0CF\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"yCRsCtc9t\",layoutId:\"yCRsCtc9t\",mirrored:false,onClick:onClick1wnntms({overlay}),selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bxSO8cNLk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+782.4+120+333+0+0),pixelHeight:1470,pixelWidth:2874,sizes:\"1127px\",src:\"https://framerusercontent.com/images/GEVH9I6cj9az7XimLKAAZWLWg.png\",srcSet:\"https://framerusercontent.com/images/GEVH9I6cj9az7XimLKAAZWLWg.png?scale-down-to=512 512w,https://framerusercontent.com/images/GEVH9I6cj9az7XimLKAAZWLWg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GEVH9I6cj9az7XimLKAAZWLWg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GEVH9I6cj9az7XimLKAAZWLWg.png 2874w\"}},S_VD2GDvw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6094.2+60+333+0+0),pixelHeight:1470,pixelWidth:2874,sizes:\"391px\",src:\"https://framerusercontent.com/images/GEVH9I6cj9az7XimLKAAZWLWg.png\",srcSet:\"https://framerusercontent.com/images/GEVH9I6cj9az7XimLKAAZWLWg.png?scale-down-to=512 512w,https://framerusercontent.com/images/GEVH9I6cj9az7XimLKAAZWLWg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GEVH9I6cj9az7XimLKAAZWLWg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GEVH9I6cj9az7XimLKAAZWLWg.png 2874w\"}},VJ2fFZlMC:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+782.4+120+333+0+0),pixelHeight:1470,pixelWidth:2874,sizes:\"765px\",src:\"https://framerusercontent.com/images/GEVH9I6cj9az7XimLKAAZWLWg.png\",srcSet:\"https://framerusercontent.com/images/GEVH9I6cj9az7XimLKAAZWLWg.png?scale-down-to=512 512w,https://framerusercontent.com/images/GEVH9I6cj9az7XimLKAAZWLWg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GEVH9I6cj9az7XimLKAAZWLWg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GEVH9I6cj9az7XimLKAAZWLWg.png 2874w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__spring:{damping:40,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:200,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:20,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40}},{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:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+782.4+120+333+0+0),pixelHeight:1470,pixelWidth:2874,sizes:\"1196px\",src:\"https://framerusercontent.com/images/GEVH9I6cj9az7XimLKAAZWLWg.png\",srcSet:\"https://framerusercontent.com/images/GEVH9I6cj9az7XimLKAAZWLWg.png?scale-down-to=512 512w,https://framerusercontent.com/images/GEVH9I6cj9az7XimLKAAZWLWg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GEVH9I6cj9az7XimLKAAZWLWg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GEVH9I6cj9az7XimLKAAZWLWg.png 2874w\"},className:\"framer-1bkk5nq\",\"data-framer-name\":\"Screen mockup (REPLACE FILL)\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16eowi5\",\"data-framer-name\":\"shadow\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-81tqnr\",\"data-framer-name\":\"Group 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-58d6pe\",\"data-framer-name\":\"Ellipse 2\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8vccfs\",\"data-framer-name\":\"Ellipse 3\"})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:303,intrinsicWidth:1872,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6094.2+100),pixelHeight:606,pixelWidth:3744,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/3WNzkyRHY0vRr8kUHrMN55DRI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/3WNzkyRHY0vRr8kUHrMN55DRI.png?scale-down-to=512 512w,https://framerusercontent.com/images/3WNzkyRHY0vRr8kUHrMN55DRI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3WNzkyRHY0vRr8kUHrMN55DRI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3WNzkyRHY0vRr8kUHrMN55DRI.png 3744w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:303,intrinsicWidth:1872,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+782.4+100),pixelHeight:606,pixelWidth:3744,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/3WNzkyRHY0vRr8kUHrMN55DRI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/3WNzkyRHY0vRr8kUHrMN55DRI.png?scale-down-to=512 512w,https://framerusercontent.com/images/3WNzkyRHY0vRr8kUHrMN55DRI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3WNzkyRHY0vRr8kUHrMN55DRI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3WNzkyRHY0vRr8kUHrMN55DRI.png 3744w\"},className:\"framer-1r7ugh\",\"data-framer-name\":\"Hero-background-top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-onl4oc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:303,intrinsicWidth:1872,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6094.2+100+0+0),pixelHeight:606,pixelWidth:3744,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/yzTNy5oDL8ZYv2DXWULaZ8UdM.svg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/yzTNy5oDL8ZYv2DXWULaZ8UdM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/yzTNy5oDL8ZYv2DXWULaZ8UdM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yzTNy5oDL8ZYv2DXWULaZ8UdM.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/yzTNy5oDL8ZYv2DXWULaZ8UdM.svg 3744w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:303,intrinsicWidth:1872,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+782.4+100+0+0),pixelHeight:606,pixelWidth:3744,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/yzTNy5oDL8ZYv2DXWULaZ8UdM.svg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/yzTNy5oDL8ZYv2DXWULaZ8UdM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/yzTNy5oDL8ZYv2DXWULaZ8UdM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yzTNy5oDL8ZYv2DXWULaZ8UdM.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/yzTNy5oDL8ZYv2DXWULaZ8UdM.svg 3744w\"},className:\"framer-1rqu525\",\"data-framer-name\":\"Hero-background-top\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12fzqqn\",\"data-framer-name\":\"glow\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p12cir\",\"data-framer-name\":\"Benefits\",id:elementId1,ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-c8pdhv\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vdefsp\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{y:(componentViewport?.y||0)+0+675+60+0+0+0+0+0},VJ2fFZlMC:{y:(componentViewport?.y||0)+0+1719.4+80+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+0+1850.4+120+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tccop7-container\",nodeId:\"OZdu7mERF\",rendersWithMotion:true,scopeId:\"WZYCZS0CF\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SectionSectionBadge,{h5mTi1koL:\"What Makes Us Unique\",height:\"100%\",id:\"OZdu7mERF\",layoutId:\"OZdu7mERF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1csvmzi\",\"data-styles-preset\":\"VIBJVL1mO\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8765c46c-afe8-481b-8321-5b63c80d0460, rgb(255, 255, 255))\"},children:\"Your journey to creating viral shorts starts here\"})}),className:\"framer-n200pd\",\"data-framer-name\":\"Benefits of being a member\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-t86zhv\",\"data-styles-preset\":\"dRyncBhA8\",style:{\"--framer-text-alignment\":\"center\"},children:\"Discover how Virlo helps you create viral shorts. Analyze top accounts, follow trends, and get personalized support to grow your content.\"})}),className:\"framer-kychlk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h6grwn\",\"data-framer-name\":\"grid\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1itq6xa\",\"data-border\":true,\"data-framer-name\":\"Section/Card 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bxSO8cNLk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:776,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1850.4+120+329+0+0+0+0),pixelHeight:800,pixelWidth:1552,sizes:`max((min((${componentViewport?.width||\"100vw\"} - 180px) * 0.95, 1200px) - 48px) / 3, 200px)`,src:\"https://framerusercontent.com/images/hpgEFDh64jeCjdz5l53CgcWUKI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/hpgEFDh64jeCjdz5l53CgcWUKI.png?scale-down-to=512 512w,https://framerusercontent.com/images/hpgEFDh64jeCjdz5l53CgcWUKI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hpgEFDh64jeCjdz5l53CgcWUKI.png 1552w\"}},S_VD2GDvw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:776,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+675+60+301+0+0+0+0),pixelHeight:800,pixelWidth:1552,sizes:`max(min((${componentViewport?.width||\"100vw\"} - 40px) * 0.95, 1200px), 200px)`,src:\"https://framerusercontent.com/images/hpgEFDh64jeCjdz5l53CgcWUKI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/hpgEFDh64jeCjdz5l53CgcWUKI.png?scale-down-to=512 512w,https://framerusercontent.com/images/hpgEFDh64jeCjdz5l53CgcWUKI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hpgEFDh64jeCjdz5l53CgcWUKI.png 1552w\"}},VJ2fFZlMC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:776,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1719.4+80+329+0+0+0+0),pixelHeight:800,pixelWidth:1552,sizes:`max(min((${componentViewport?.width||\"100vw\"} - 80px) * 0.95, 1200px), 200px)`,src:\"https://framerusercontent.com/images/hpgEFDh64jeCjdz5l53CgcWUKI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/hpgEFDh64jeCjdz5l53CgcWUKI.png?scale-down-to=512 512w,https://framerusercontent.com/images/hpgEFDh64jeCjdz5l53CgcWUKI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hpgEFDh64jeCjdz5l53CgcWUKI.png 1552w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:776,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1850.4+120+329+0+0+0+0),pixelHeight:800,pixelWidth:1552,sizes:\"388px\",src:\"https://framerusercontent.com/images/hpgEFDh64jeCjdz5l53CgcWUKI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/hpgEFDh64jeCjdz5l53CgcWUKI.png?scale-down-to=512 512w,https://framerusercontent.com/images/hpgEFDh64jeCjdz5l53CgcWUKI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hpgEFDh64jeCjdz5l53CgcWUKI.png 1552w\"},className:\"framer-rfh24k\",\"data-framer-name\":\"Virlo image 1\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ujnapq\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1zbe2c\",\"data-styles-preset\":\"MomgTYgy0\",style:{\"--framer-text-alignment\":\"center\"},children:\"Study Viral Short Accounts\"})}),className:\"framer-yv7h6d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-t86zhv\",\"data-styles-preset\":\"dRyncBhA8\",style:{\"--framer-text-alignment\":\"center\"},children:\"Analyze viral accounts, including yours, with AI-driven recommendations to boost your chances of creating viral shorts.\"})}),className:\"framer-8959ay\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qwjayv\",\"data-framer-name\":\"glow-blue\",style:{rotate:-152}}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bxSO8cNLk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1850.4+120+329+0+0+-.4436),pixelHeight:4e3,pixelWidth:6e3,sizes:`max((min((${componentViewport?.width||\"100vw\"} - 180px) * 0.95, 1200px) - 48px) / 3, 200px)`,src:\"https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg 6000w\"}},S_VD2GDvw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+675+60+301+0+0+-.4436),pixelHeight:4e3,pixelWidth:6e3,sizes:`max(min((${componentViewport?.width||\"100vw\"} - 40px) * 0.95, 1200px), 200px)`,src:\"https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg 6000w\"}},VJ2fFZlMC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1719.4+80+329+0+0+-.4806),pixelHeight:4e3,pixelWidth:6e3,sizes:`max(min((${componentViewport?.width||\"100vw\"} - 80px) * 0.95, 1200px), 200px)`,src:\"https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg 6000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1850.4+120+329+0+0+-.4436),pixelHeight:4e3,pixelWidth:6e3,sizes:`max((min((${componentViewport?.width||\"100vw\"} - 180px) * 0.95, 1200px) - 32px) / 3, 200px)`,src:\"https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg 6000w\"},className:\"framer-1wdtk11\",\"data-framer-name\":\"AdobeStock 311755791\",style:{rotate:-180}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b461wy\",\"data-border\":true,\"data-framer-name\":\"Section/Card 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bxSO8cNLk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:776,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1850.4+120+329+0+0+0+0),pixelHeight:800,pixelWidth:1552,sizes:`max((min((${componentViewport?.width||\"100vw\"} - 180px) * 0.95, 1200px) - 48px) / 3, 200px)`,src:\"https://framerusercontent.com/images/t3zrvLqpWgjH0DZDNoGptWI8ls.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/t3zrvLqpWgjH0DZDNoGptWI8ls.png?scale-down-to=512 512w,https://framerusercontent.com/images/t3zrvLqpWgjH0DZDNoGptWI8ls.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/t3zrvLqpWgjH0DZDNoGptWI8ls.png 1552w\"}},S_VD2GDvw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:776,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+675+60+301+0+494+0+0),pixelHeight:800,pixelWidth:1552,sizes:`max(min((${componentViewport?.width||\"100vw\"} - 40px) * 0.95, 1200px), 200px)`,src:\"https://framerusercontent.com/images/t3zrvLqpWgjH0DZDNoGptWI8ls.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/t3zrvLqpWgjH0DZDNoGptWI8ls.png?scale-down-to=512 512w,https://framerusercontent.com/images/t3zrvLqpWgjH0DZDNoGptWI8ls.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/t3zrvLqpWgjH0DZDNoGptWI8ls.png 1552w\"}},VJ2fFZlMC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:776,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1719.4+80+329+0+544+0+0),pixelHeight:800,pixelWidth:1552,sizes:`max(min((${componentViewport?.width||\"100vw\"} - 80px) * 0.95, 1200px), 200px)`,src:\"https://framerusercontent.com/images/t3zrvLqpWgjH0DZDNoGptWI8ls.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/t3zrvLqpWgjH0DZDNoGptWI8ls.png?scale-down-to=512 512w,https://framerusercontent.com/images/t3zrvLqpWgjH0DZDNoGptWI8ls.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/t3zrvLqpWgjH0DZDNoGptWI8ls.png 1552w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:776,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1850.4+120+329+0+0+0+0),pixelHeight:800,pixelWidth:1552,sizes:\"388px\",src:\"https://framerusercontent.com/images/t3zrvLqpWgjH0DZDNoGptWI8ls.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/t3zrvLqpWgjH0DZDNoGptWI8ls.png?scale-down-to=512 512w,https://framerusercontent.com/images/t3zrvLqpWgjH0DZDNoGptWI8ls.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/t3zrvLqpWgjH0DZDNoGptWI8ls.png 1552w\"},className:\"framer-eqov3e\",\"data-framer-name\":\"Virlo image 2\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x6luza\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1zbe2c\",\"data-styles-preset\":\"MomgTYgy0\",style:{\"--framer-text-alignment\":\"center\"},children:\"Know The Viral Trends\"})}),className:\"framer-kx6mp8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-t86zhv\",\"data-styles-preset\":\"dRyncBhA8\",style:{\"--framer-text-alignment\":\"center\"},children:\"Stay ahead of viral trends, discover content ideas, best posting times, and trending niches to fuel your growth.\"})}),className:\"framer-zv45mi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-s7bhf5\",\"data-framer-name\":\"glow-blue\",style:{rotate:-152}}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bxSO8cNLk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1850.4+120+329+0+0+-.4436),pixelHeight:4e3,pixelWidth:6e3,sizes:`max((min((${componentViewport?.width||\"100vw\"} - 180px) * 0.95, 1200px) - 48px) / 3, 200px)`,src:\"https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg 6000w\"}},S_VD2GDvw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+675+60+301+0+494+-.4436),pixelHeight:4e3,pixelWidth:6e3,sizes:`max(min((${componentViewport?.width||\"100vw\"} - 40px) * 0.95, 1200px), 200px)`,src:\"https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg 6000w\"}},VJ2fFZlMC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1719.4+80+329+0+544+-.4806),pixelHeight:4e3,pixelWidth:6e3,sizes:`max(min((${componentViewport?.width||\"100vw\"} - 80px) * 0.95, 1200px), 200px)`,src:\"https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg 6000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1850.4+120+329+0+0+-.4436),pixelHeight:4e3,pixelWidth:6e3,sizes:`max((min((${componentViewport?.width||\"100vw\"} - 180px) * 0.95, 1200px) - 32px) / 3, 200px)`,src:\"https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg 6000w\"},className:\"framer-a3rlgy\",\"data-framer-name\":\"AdobeStock 311755791\",style:{rotate:-180}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jd4hw0\",\"data-border\":true,\"data-framer-name\":\"Section/Card 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bxSO8cNLk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:776,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1850.4+120+329+0+0+0+0),pixelHeight:800,pixelWidth:1552,sizes:`max((min((${componentViewport?.width||\"100vw\"} - 180px) * 0.95, 1200px) - 48px) / 3, 200px)`,src:\"https://framerusercontent.com/images/uPsu9T8N1DtvcOrNYbgkmlDJ0E.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uPsu9T8N1DtvcOrNYbgkmlDJ0E.png?scale-down-to=512 512w,https://framerusercontent.com/images/uPsu9T8N1DtvcOrNYbgkmlDJ0E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uPsu9T8N1DtvcOrNYbgkmlDJ0E.png 1552w\"}},S_VD2GDvw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:776,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+675+60+301+0+988+0+0),pixelHeight:800,pixelWidth:1552,sizes:`max(min((${componentViewport?.width||\"100vw\"} - 40px) * 0.95, 1200px), 200px)`,src:\"https://framerusercontent.com/images/uPsu9T8N1DtvcOrNYbgkmlDJ0E.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uPsu9T8N1DtvcOrNYbgkmlDJ0E.png?scale-down-to=512 512w,https://framerusercontent.com/images/uPsu9T8N1DtvcOrNYbgkmlDJ0E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uPsu9T8N1DtvcOrNYbgkmlDJ0E.png 1552w\"}},VJ2fFZlMC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:776,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1719.4+80+329+0+1088+0+0),pixelHeight:800,pixelWidth:1552,sizes:`max(min((${componentViewport?.width||\"100vw\"} - 80px) * 0.95, 1200px), 200px)`,src:\"https://framerusercontent.com/images/uPsu9T8N1DtvcOrNYbgkmlDJ0E.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uPsu9T8N1DtvcOrNYbgkmlDJ0E.png?scale-down-to=512 512w,https://framerusercontent.com/images/uPsu9T8N1DtvcOrNYbgkmlDJ0E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uPsu9T8N1DtvcOrNYbgkmlDJ0E.png 1552w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:776,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1850.4+120+329+0+0+0+0),pixelHeight:800,pixelWidth:1552,sizes:\"388px\",src:\"https://framerusercontent.com/images/uPsu9T8N1DtvcOrNYbgkmlDJ0E.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uPsu9T8N1DtvcOrNYbgkmlDJ0E.png?scale-down-to=512 512w,https://framerusercontent.com/images/uPsu9T8N1DtvcOrNYbgkmlDJ0E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uPsu9T8N1DtvcOrNYbgkmlDJ0E.png 1552w\"},className:\"framer-1iufl1f\",\"data-framer-name\":\"Virlo image 3\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lqupci\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1zbe2c\",\"data-styles-preset\":\"MomgTYgy0\",style:{\"--framer-text-alignment\":\"center\"},children:\"Personalized Support\"})}),className:\"framer-1cia2bz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-t86zhv\",\"data-styles-preset\":\"dRyncBhA8\",style:{\"--framer-text-alignment\":\"center\"},children:\"Join our Discord for around-the-clock support. We ensure you're on the right path to earning from short-form videos.\"})}),className:\"framer-cpc54b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16n3lir\",\"data-framer-name\":\"glow-blue\",style:{rotate:-152}}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bxSO8cNLk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1850.4+120+329+0+0+-.4436),pixelHeight:4e3,pixelWidth:6e3,sizes:`max((min((${componentViewport?.width||\"100vw\"} - 180px) * 0.95, 1200px) - 48px) / 3, 200px)`,src:\"https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg 6000w\"}},S_VD2GDvw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+675+60+301+0+988+-.4436),pixelHeight:4e3,pixelWidth:6e3,sizes:`max(min((${componentViewport?.width||\"100vw\"} - 40px) * 0.95, 1200px), 200px)`,src:\"https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg 6000w\"}},VJ2fFZlMC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1719.4+80+329+0+1088+-.4806),pixelHeight:4e3,pixelWidth:6e3,sizes:`max(min((${componentViewport?.width||\"100vw\"} - 80px) * 0.95, 1200px), 200px)`,src:\"https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg 6000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1850.4+120+329+0+0+-.4436),pixelHeight:4e3,pixelWidth:6e3,sizes:`max((min((${componentViewport?.width||\"100vw\"} - 180px) * 0.95, 1200px) - 32px) / 3, 200px)`,src:\"https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/iWhXqXC6TZLg19Ax7O5nFU5L54.jpg 6000w\"},className:\"framer-1a9pdec\",\"data-framer-name\":\"AdobeStock 311755791\",style:{rotate:-180}})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{y:(componentViewport?.y||0)+0+675+60+1801},VJ2fFZlMC:{y:(componentViewport?.y||0)+0+1719.4+80+1997}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:63,y:(componentViewport?.y||0)+0+1850.4+120+869,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zaguse-container\",nodeId:\"zrD0RqGUX\",rendersWithMotion:true,scopeId:\"WZYCZS0CF\",children:/*#__PURE__*/_jsx(ButtonButtonPreserveReferralzaguseWithMappedReactProps16xpo9g,{fshMEdBNL:\"8px 20px 8px 20px\",height:\"100%\",id:\"zrD0RqGUX\",layoutId:\"zrD0RqGUX\",mggdDmaFY:\"999px\",mlfcsn0lT:18,variant:\"uvSo6Vaq6\",width:\"100%\",y73JFdtH6:true,ylVlgUgjr:\"Get Started\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zoo7iv\",\"data-framer-name\":\"Benefits\",id:elementId2,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fhptm5\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3yh9c1\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{y:(componentViewport?.y||0)+0+2659+60+0+0+0+0+0},VJ2fFZlMC:{y:(componentViewport?.y||0)+0+3939.4+80+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+0+2962.4+120+0+0+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bxSO8cNLk:{__framer__targets:[{ref:ref3,target:\"animate\"}]},S_VD2GDvw:{__framer__targets:[{ref:ref3,target:\"animate\"}]},VJ2fFZlMC:{__framer__targets:[{ref:ref3,target:\"animate\"}]}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13keho0-container\",nodeId:\"ni9YF78zs\",rendersWithMotion:true,scopeId:\"WZYCZS0CF\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SectionSectionBadge,{h5mTi1koL:\"Top Features\",height:\"100%\",id:\"ni9YF78zs\",layoutId:\"ni9YF78zs\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bxSO8cNLk:{__framer__targets:[{ref:ref3,target:\"animate\"}]},S_VD2GDvw:{__framer__targets:[{ref:ref3,target:\"animate\"}]},VJ2fFZlMC:{__framer__targets:[{ref:ref3,target:\"animate\"}]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1csvmzi\",\"data-styles-preset\":\"VIBJVL1mO\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8765c46c-afe8-481b-8321-5b63c80d0460, rgb(255, 255, 255))\"},children:\"Unlock your Viral Shorts potential\"})}),className:\"framer-46s1y0\",\"data-framer-name\":\"Benefits of being a member\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-t86zhv\",\"data-styles-preset\":\"dRyncBhA8\",style:{\"--framer-text-alignment\":\"center\"},children:\"Explore key features to boost your virality, from trend analysis to hashtag insights, and grow your audience faster.\"})}),className:\"framer-ruovyu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6i5vyd\",\"data-framer-name\":\"Job Openings Single Card Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 50px)`,y:(componentViewport?.y||0)+0+2659+60+301+0+0},VJ2fFZlMC:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3939.4+80+329+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:311,width:`max((min(${componentViewport?.width||\"100vw\"} - 180px, 1200px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+2962.4+120+329+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3bnovi-container\",nodeId:\"gZK4kw_T2\",scopeId:\"WZYCZS0CF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{variant:\"JH9VKf6_V\"}},children:/*#__PURE__*/_jsx(WhyChooseUsSingleCard,{AxKG0DNUK:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/9NmsINDVRONGBOiCkBg80MUQEhw.gif\"},\"Icon\"),Elx69lCsC:true,FefHNjM7x:\"We embrace creativity and cutting-edge technology to solve complex challenges and drive meaningful change.\",HEi_N23Tq:\"Best Posting Time\",height:\"100%\",HGOJd_2Oe:false,id:\"gZK4kw_T2\",layoutId:\"gZK4kw_T2\",MHrns74oN:false,s1Yq3TeVt:\"1\",style:{width:\"100%\"},variant:\"AAOMyUneW\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 50px)`,y:(componentViewport?.y||0)+0+2659+60+301+0+335},VJ2fFZlMC:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3939.4+80+329+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:311,width:`max((min(${componentViewport?.width||\"100vw\"} - 180px, 1200px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+2962.4+120+329+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bmhf2a-container\",nodeId:\"QbPxFSoco\",scopeId:\"WZYCZS0CF\",children:/*#__PURE__*/_jsx(WhyChooseUsSingleCard,{AxKG0DNUK:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/4fyeOMx9sdWOeDBq5sAKOpDoMfU.gif\"},\"\"),Elx69lCsC:true,FefHNjM7x:\"Our diverse team of experts brings years of experience and a shared passion for excellence in every project.\",HEi_N23Tq:\"Viral Niches\",height:\"100%\",HGOJd_2Oe:false,id:\"QbPxFSoco\",layoutId:\"QbPxFSoco\",MHrns74oN:false,s1Yq3TeVt:\"1\",style:{width:\"100%\"},variant:\"AAOMyUneW\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 50px)`,y:(componentViewport?.y||0)+0+2659+60+301+0+670},VJ2fFZlMC:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3939.4+80+329+0+335}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:311,width:`max((min(${componentViewport?.width||\"100vw\"} - 180px, 1200px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+2962.4+120+329+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kw2zqw-container\",nodeId:\"QY16VamWl\",scopeId:\"WZYCZS0CF\",children:/*#__PURE__*/_jsx(WhyChooseUsSingleCard,{AxKG0DNUK:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/W2UhN8wonn2RFXUUT6vf50sWc.gif\"},\"\"),Elx69lCsC:true,FefHNjM7x:\"Our diverse team of experts brings years of experience and a shared passion for excellence in every project.\",HEi_N23Tq:\"Popularity Trends\",height:\"100%\",HGOJd_2Oe:false,id:\"QY16VamWl\",layoutId:\"QY16VamWl\",MHrns74oN:false,s1Yq3TeVt:\"1\",style:{width:\"100%\"},variant:\"AAOMyUneW\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-810u6n\",\"data-border\":true,\"data-framer-name\":\"Why Choose Us Single Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wwu1sg\",\"data-border\":true,\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{y:(componentViewport?.y||0)+0+2659+60+301+0+1005+48+0+17},VJ2fFZlMC:{y:(componentViewport?.y||0)+0+3939.4+80+329+0+335+48+0+17}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:\"54px\",y:(componentViewport?.y||0)+0+2962.4+120+329+0+335+48+0+17,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lkt7ot-container\",nodeId:\"bcCSRFVd8\",scopeId:\"WZYCZS0CF\",children:/*#__PURE__*/_jsx(Hashtagicon,{height:\"100%\",id:\"bcCSRFVd8\",layoutId:\"bcCSRFVd8\",style:{height:\"100%\",width:\"100%\"},variant:\"qzSZ9tJcl\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1clcsvc\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-38oo8s\",\"data-styles-preset\":\"gKXBbac3R\",children:\"Hashtag Analytics\"})}),className:\"framer-15lobn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 50px)`,y:(componentViewport?.y||0)+0+2659+60+301+0+1268.2},VJ2fFZlMC:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3939.4+80+329+0+670}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:311,width:`max((min(${componentViewport?.width||\"100vw\"} - 180px, 1200px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+2962.4+120+329+0+335,children:/*#__PURE__*/_jsx(Container,{className:\"framer-egth79-container\",nodeId:\"pCkipFwBd\",scopeId:\"WZYCZS0CF\",children:/*#__PURE__*/_jsx(WhyChooseUsSingleCard,{AxKG0DNUK:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/SQXSSJ6sl7wiPdiXF7j6Sg1YKag.gif\"},\"\"),Elx69lCsC:true,FefHNjM7x:\"With clients and partners worldwide, we deliver solutions that meet diverse needs across industries and regions.\",HEi_N23Tq:\"Creator Research\",height:\"100%\",HGOJd_2Oe:false,id:\"pCkipFwBd\",layoutId:\"pCkipFwBd\",MHrns74oN:false,s1Yq3TeVt:\"1\",style:{width:\"100%\"},variant:\"AAOMyUneW\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 50px)`,y:(componentViewport?.y||0)+0+2659+60+301+0+1603.2},VJ2fFZlMC:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3939.4+80+329+0+670}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:311,width:`max((min(${componentViewport?.width||\"100vw\"} - 180px, 1200px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+2962.4+120+329+0+335,children:/*#__PURE__*/_jsx(Container,{className:\"framer-n5od70-container\",nodeId:\"yM3Sq1vRK\",scopeId:\"WZYCZS0CF\",children:/*#__PURE__*/_jsx(WhyChooseUsSingleCard,{AxKG0DNUK:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/oKUTOsd1b3goSIffhkiYuM1XApI.gif\"},\"\"),Elx69lCsC:true,FefHNjM7x:\"We prioritize delivering top-notch solutions with a relentless focus on quality, reliability, and customer satisfaction.\",HEi_N23Tq:\"Idea Generation\",height:\"100%\",HGOJd_2Oe:false,id:\"yM3Sq1vRK\",layoutId:\"yM3Sq1vRK\",MHrns74oN:false,s1Yq3TeVt:\"1\",style:{width:\"100%\"},variant:\"AAOMyUneW\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 50px)`,y:(componentViewport?.y||0)+0+2659+60+301+0+1938.2},VJ2fFZlMC:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3939.4+80+329+0+1005}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:311,width:`max((min(${componentViewport?.width||\"100vw\"} - 180px, 1200px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+2962.4+120+329+0+670,children:/*#__PURE__*/_jsx(Container,{className:\"framer-eh1jbr-container\",nodeId:\"JTtfK7Wmf\",scopeId:\"WZYCZS0CF\",children:/*#__PURE__*/_jsx(WhyChooseUsSingleCard,{AxKG0DNUK:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/nVGxyaau3GiH0aXI1m907xzuDz0.gif\"},\"\"),Elx69lCsC:true,FefHNjM7x:\"We prioritize delivering top-notch solutions with a relentless focus on quality, reliability, and customer satisfaction.\",HEi_N23Tq:\"Collection Creation\",height:\"100%\",HGOJd_2Oe:false,id:\"JTtfK7Wmf\",layoutId:\"JTtfK7Wmf\",MHrns74oN:false,s1Yq3TeVt:\"1\",style:{width:\"100%\"},variant:\"AAOMyUneW\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 50px)`,y:(componentViewport?.y||0)+0+2659+60+301+0+2273.2},VJ2fFZlMC:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3939.4+80+329+0+1005}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:311,width:`max((min(${componentViewport?.width||\"100vw\"} - 180px, 1200px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+2962.4+120+329+0+670,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1340oxj-container\",nodeId:\"aXQBv1SHY\",scopeId:\"WZYCZS0CF\",children:/*#__PURE__*/_jsx(WhyChooseUsSingleCard,{AxKG0DNUK:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/VNz7GvDbBLrgUdIsgknUyY3WE.gif\"},\"\"),Elx69lCsC:true,FefHNjM7x:\"We prioritize delivering top-notch solutions with a relentless focus on quality, reliability, and customer satisfaction.\",HEi_N23Tq:\"Top Videos\",height:\"100%\",HGOJd_2Oe:false,id:\"aXQBv1SHY\",layoutId:\"aXQBv1SHY\",MHrns74oN:false,s1Yq3TeVt:\"1\",style:{width:\"100%\"},variant:\"AAOMyUneW\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 50px)`,y:(componentViewport?.y||0)+0+2659+60+301+0+2608.2},VJ2fFZlMC:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 24px) / 2, 50px)`,y:(componentViewport?.y||0)+0+3939.4+80+329+0+1340}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:311,width:`max((min(${componentViewport?.width||\"100vw\"} - 180px, 1200px) - 48px) / 3, 50px)`,y:(componentViewport?.y||0)+0+2962.4+120+329+0+670,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kq0h8m-container\",nodeId:\"aDXDsyxQV\",scopeId:\"WZYCZS0CF\",children:/*#__PURE__*/_jsx(WhyChooseUsSingleCard,{AxKG0DNUK:addImageAlt({pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/8MWupGCWtLNrhONSce3630I4kA.gif\"},\"\"),Elx69lCsC:true,FefHNjM7x:\"We prioritize delivering top-notch solutions with a relentless focus on quality, reliability, and customer satisfaction.\",HEi_N23Tq:\"Top Sounds\",height:\"100%\",HGOJd_2Oe:false,id:\"aDXDsyxQV\",layoutId:\"aDXDsyxQV\",MHrns74oN:false,s1Yq3TeVt:\"1\",style:{width:\"100%\"},variant:\"AAOMyUneW\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{y:(componentViewport?.y||0)+0+2659+60+3252.2},VJ2fFZlMC:{y:(componentViewport?.y||0)+0+3939.4+80+2040}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:63,y:(componentViewport?.y||0)+0+2962.4+120+1370,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kn6cwf-container\",nodeId:\"TxytfiwpI\",rendersWithMotion:true,scopeId:\"WZYCZS0CF\",children:/*#__PURE__*/_jsx(ButtonButtonPreserveReferral1kn6cwfWithMappedReactProps16xpo9g,{fshMEdBNL:\"8px 20px 8px 20px\",height:\"100%\",id:\"TxytfiwpI\",layoutId:\"TxytfiwpI\",mggdDmaFY:\"999px\",mlfcsn0lT:18,variant:\"uvSo6Vaq6\",width:\"100%\",y73JFdtH6:true,ylVlgUgjr:\"Get Started\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bkgkta\",\"data-framer-name\":\"shadow\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m5cyei\",\"data-framer-name\":\"Group 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uiwdky\",\"data-framer-name\":\"Ellipse 2\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rt3rst\",\"data-framer-name\":\"Ellipse 3\"})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1qpw7r5\",\"data-framer-name\":\"Testimonials\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r86x1j\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wx1go\",\"data-framer-name\":\"Section Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{y:(componentViewport?.y||0)+0+6748.2+60+0+0+0+0+0},VJ2fFZlMC:{y:(componentViewport?.y||0)+0+6202.4+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+0+4575.4+120+0+0+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bxSO8cNLk:{__framer__targets:[{ref:ref3,target:\"animate\"}]},S_VD2GDvw:{__framer__targets:[{ref:ref3,target:\"animate\"}]},VJ2fFZlMC:{__framer__targets:[{ref:ref3,target:\"animate\"}]}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1mref77-container\",nodeId:\"mJwH5BBzY\",rendersWithMotion:true,scopeId:\"WZYCZS0CF\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SectionSectionBadge,{h5mTi1koL:\"Reviews\",height:\"100%\",id:\"mJwH5BBzY\",layoutId:\"mJwH5BBzY\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1csvmzi\",\"data-styles-preset\":\"VIBJVL1mO\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8765c46c-afe8-481b-8321-5b63c80d0460, rgb(255, 255, 255))\"},children:\"Trusted by 6500+ creators\"})}),className:\"framer-3mts6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,y:(componentViewport?.y||0)+0+6748.2+60+0+0+153},VJ2fFZlMC:{width:`min(${componentViewport?.width||\"100vw\"} - 60px, 1200px)`,y:(componentViewport?.y||0)+0+6202.4+0+0+0+153}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:443,width:`min(${componentViewport?.width||\"100vw\"} - 180px, 1200px)`,y:(componentViewport?.y||0)+0+4575.4+120+0+0+173,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4ybw1v-container\",nodeId:\"zaPxen33B\",scopeId:\"WZYCZS0CF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{variant:\"WKGfYKi7L\"},VJ2fFZlMC:{variant:\"h04Kk4VUF\"}},children:/*#__PURE__*/_jsx(Testimonials,{height:\"100%\",id:\"zaPxen33B\",layoutId:\"zaPxen33B\",style:{width:\"100%\"},variant:\"ENpTuvDok\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-3tvbp3\",\"data-framer-name\":\"FAQs\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dxl0mu\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gqmsib\",\"data-framer-name\":\"Section Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{y:(componentViewport?.y||0)+0+7464.2+0+0+0+0+0+0},VJ2fFZlMC:{y:(componentViewport?.y||0)+0+6878.4+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,y:(componentViewport?.y||0)+0+5371.4+120+0+0+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bxSO8cNLk:{__framer__targets:[{ref:ref3,target:\"animate\"}]},S_VD2GDvw:{__framer__targets:[{ref:ref3,target:\"animate\"}]},VJ2fFZlMC:{__framer__targets:[{ref:ref3,target:\"animate\"}]}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18y7igk-container\",nodeId:\"Dwq009Vfu\",rendersWithMotion:true,scopeId:\"WZYCZS0CF\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SectionSectionBadge,{h5mTi1koL:\"FAQ\",height:\"100%\",id:\"Dwq009Vfu\",layoutId:\"Dwq009Vfu\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1csvmzi\",\"data-styles-preset\":\"VIBJVL1mO\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8765c46c-afe8-481b-8321-5b63c80d0460, rgb(255, 255, 255))\"},children:\"Common questions\"})}),className:\"framer-1ngkd7q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-t86zhv\",\"data-styles-preset\":\"dRyncBhA8\",style:{\"--framer-text-alignment\":\"center\"},children:\"Haven\u2019t found what you\u2019re looking for? Contact us\"})}),className:\"framer-olqb1d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u42gcq\",\"data-framer-name\":\"Section Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,y:(componentViewport?.y||0)+0+7464.2+0+0+0+309+0+0},VJ2fFZlMC:{width:`min((${componentViewport?.width||\"100vw\"} - 60px) * 0.9, 768px)`,y:(componentViewport?.y||0)+0+6878.4+0+0+0+319+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:945,width:`calc(min(${componentViewport?.width||\"100vw\"} - 180px, 1200px) * 0.5917)`,y:(componentViewport?.y||0)+0+5371.4+120+0+0+333+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ftztx1-container\",\"data-framer-name\":\"Faq Area\",name:\"Faq Area\",nodeId:\"PtJC1MTFI\",scopeId:\"WZYCZS0CF\",children:/*#__PURE__*/_jsx(SectionFaqArea,{height:\"100%\",id:\"PtJC1MTFI\",layoutId:\"PtJC1MTFI\",name:\"Faq Area\",style:{width:\"100%\"},variant:\"IzEYL5mBv\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lc47vk\",children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-41llkm\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p4lsci\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k3lhl5\",\"data-framer-name\":\"Secton Title\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-sewod5\",\"data-framer-name\":\"Virlo-logo-mark\",fill:\"black\",intrinsicHeight:70,intrinsicWidth:72,svg:'<svg width=\"72\" height=\"70\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m61.905 25.976 9.287-17.114C73.36 4.864 70.467 0 65.918 0H52.097L38.002 25.976 23.903 0H0l26.048 47.98L38.002 70l11.95-22.02-11.95-22.004h23.903Z\" fill=\"#FF729F\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m61.905 25.976 9.287-17.114C73.36 4.864 70.467 0 65.918 0H52.097L38.002 25.976 23.903 0H0l26.048 47.98L38.002 70l11.95-22.02-11.95-22.004h23.903Z\" fill=\"url(#a)\" fill-opacity=\".5\"/><defs><linearGradient id=\"a\" x1=\"38\" y1=\"0\" x2=\"38\" y2=\"70\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#D10170\" stop-opacity=\"0\"/><stop offset=\"1\" stop-color=\"#D10170\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19szj9m\",\"data-framer-name\":\"Contant\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1csvmzi\",\"data-styles-preset\":\"VIBJVL1mO\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8765c46c-afe8-481b-8321-5b63c80d0460, rgb(255, 255, 255))\"},children:\"Join the Virlo newsletter for free viral ideas\"})}),className:\"framer-197g54t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-t86zhv\",\"data-styles-preset\":\"dRyncBhA8\",style:{\"--framer-text-alignment\":\"center\"},children:\"Empowering your success as a creator\"})}),className:\"framer-n2kko7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{y:(componentViewport?.y||0)+0+8728.2+60+0+100+0+10+0+0+383},VJ2fFZlMC:{y:(componentViewport?.y||0)+0+8152.4+120+0+90+0+50+0+0+383}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:(componentViewport?.y||0)+0+6839.4+120+0+90+0+24+0+0+383,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a9jot-container\",nodeId:\"rIc6m3E8m\",scopeId:\"WZYCZS0CF\",children:/*#__PURE__*/_jsx(ButtonButtonRegular,{height:\"100%\",id:\"rIc6m3E8m\",J2rZDEGhx:\"Join Now\",layoutId:\"rIc6m3E8m\",lIkRj_ATg:\"https://virlo.beehiiv.com/subscribe\",nf4pz2gVu:true,style:{height:\"100%\"},tkk5FFhl7:\"8px 20px 8px 20px\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:303,intrinsicWidth:1872,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8728.2+60+0+0),pixelHeight:606,pixelWidth:3744,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,src:\"https://framerusercontent.com/images/3WNzkyRHY0vRr8kUHrMN55DRI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/3WNzkyRHY0vRr8kUHrMN55DRI.png?scale-down-to=512 512w,https://framerusercontent.com/images/3WNzkyRHY0vRr8kUHrMN55DRI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3WNzkyRHY0vRr8kUHrMN55DRI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3WNzkyRHY0vRr8kUHrMN55DRI.png 3744w\"}},VJ2fFZlMC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:303,intrinsicWidth:1872,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8152.4+120+0+0),pixelHeight:606,pixelWidth:3744,sizes:`min(${componentViewport?.width||\"100vw\"} - 180px, 1000px)`,src:\"https://framerusercontent.com/images/3WNzkyRHY0vRr8kUHrMN55DRI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/3WNzkyRHY0vRr8kUHrMN55DRI.png?scale-down-to=512 512w,https://framerusercontent.com/images/3WNzkyRHY0vRr8kUHrMN55DRI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3WNzkyRHY0vRr8kUHrMN55DRI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3WNzkyRHY0vRr8kUHrMN55DRI.png 3744w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:303,intrinsicWidth:1872,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6839.4+120+0+0),pixelHeight:606,pixelWidth:3744,sizes:`min(${componentViewport?.width||\"100vw\"} - 180px, 1000px)`,src:\"https://framerusercontent.com/images/3WNzkyRHY0vRr8kUHrMN55DRI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/3WNzkyRHY0vRr8kUHrMN55DRI.png?scale-down-to=512 512w,https://framerusercontent.com/images/3WNzkyRHY0vRr8kUHrMN55DRI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3WNzkyRHY0vRr8kUHrMN55DRI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3WNzkyRHY0vRr8kUHrMN55DRI.png 3744w\"},className:\"framer-xf0dge\",\"data-framer-name\":\"Hero-background-top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bdvl10\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:303,intrinsicWidth:1872,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8728.2+60+0+0+0+0),pixelHeight:606,pixelWidth:3744,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1000px)`,src:\"https://framerusercontent.com/images/yzTNy5oDL8ZYv2DXWULaZ8UdM.svg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/yzTNy5oDL8ZYv2DXWULaZ8UdM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/yzTNy5oDL8ZYv2DXWULaZ8UdM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yzTNy5oDL8ZYv2DXWULaZ8UdM.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/yzTNy5oDL8ZYv2DXWULaZ8UdM.svg 3744w\"}},VJ2fFZlMC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:303,intrinsicWidth:1872,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8152.4+120+0+0+0+0),pixelHeight:606,pixelWidth:3744,sizes:`min(${componentViewport?.width||\"100vw\"} - 180px, 1000px)`,src:\"https://framerusercontent.com/images/yzTNy5oDL8ZYv2DXWULaZ8UdM.svg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/yzTNy5oDL8ZYv2DXWULaZ8UdM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/yzTNy5oDL8ZYv2DXWULaZ8UdM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yzTNy5oDL8ZYv2DXWULaZ8UdM.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/yzTNy5oDL8ZYv2DXWULaZ8UdM.svg 3744w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:303,intrinsicWidth:1872,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6839.4+120+0+0+0+0),pixelHeight:606,pixelWidth:3744,sizes:`min(${componentViewport?.width||\"100vw\"} - 180px, 1000px)`,src:\"https://framerusercontent.com/images/yzTNy5oDL8ZYv2DXWULaZ8UdM.svg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/yzTNy5oDL8ZYv2DXWULaZ8UdM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/yzTNy5oDL8ZYv2DXWULaZ8UdM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yzTNy5oDL8ZYv2DXWULaZ8UdM.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/yzTNy5oDL8ZYv2DXWULaZ8UdM.svg 3744w\"},className:\"framer-1azbg33\",\"data-framer-name\":\"Hero-background-top\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9a0tff\",\"data-framer-name\":\"glow\"})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bxSO8cNLk:{width:\"90vw\"},S_VD2GDvw:{width:\"90vw\"},VJ2fFZlMC:{width:\"780px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,y:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ywaatp-container\",layoutScroll:true,nodeId:\"rOrA4CANl\",scopeId:\"WZYCZS0CF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bxSO8cNLk:{style:{height:\"100%\",width:\"100%\"}},S_VD2GDvw:{style:{width:\"100%\"},variant:\"BicqO3vwt\"},VJ2fFZlMC:{style:{height:\"100%\",width:\"100%\"},variant:\"BicqO3vwt\"}},children:/*#__PURE__*/_jsx(SectionNavbar,{height:\"100%\",id:\"rOrA4CANl\",layoutId:\"rOrA4CANl\",style:{height:\"100%\"},variant:\"fvsfNIGwz\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"footer\",{className:\"framer-1ditmxl\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{y:(componentViewport?.y||0)+0+9533.2+0},VJ2fFZlMC:{y:(componentViewport?.y||0)+0+8904.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:647,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+7728.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1avm5xm-container\",nodeId:\"yYTk0WdIK\",scopeId:\"WZYCZS0CF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{S_VD2GDvw:{variant:\"o0QjwgNoH\"},VJ2fFZlMC:{variant:\"ADzrh0xNy\"}},children:/*#__PURE__*/_jsx(SectionFooter,{height:\"100%\",id:\"yYTk0WdIK\",layoutId:\"yYTk0WdIK\",style:{width:\"100%\"},variant:\"ueTWA41wn\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-q9cdso-container\",layoutScroll:true,nodeId:\"Cf9Lj7Zk8\",scopeId:\"WZYCZS0CF\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bxSO8cNLk:{variant:\"LEUT3c4Rp\"},S_VD2GDvw:{style:{width:\"100%\"},variant:\"oFIWc0LVl\"},VJ2fFZlMC:{variant:\"P9QAOKh8T\"}},children:/*#__PURE__*/_jsx(Banner,{height:\"100%\",id:\"Cf9Lj7Zk8\",layoutId:\"Cf9Lj7Zk8\",style:{height:\"100%\",width:\"100%\"},variant:\"FCIo1qeHs\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZHudh.framer-1reyxo3, .framer-ZHudh .framer-1reyxo3 { display: block; }\",\".framer-ZHudh.framer-biw4gr { align-content: center; align-items: center; background-color: #0b0c0b; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-ZHudh .framer-tp5vbp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-ZHudh .framer-8fdzw { background: linear-gradient(213deg, rgba(0, 0, 0, 0) 46%, rgb(14, 15, 17) 69.29244087837839%, var(--token-7ae4656e-d0df-45b2-ae8d-7aea60aafffe, rgb(14, 15, 17)) 87%); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-ZHudh .framer-q3kx1w { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55.00000000000001%, var(--token-cf335832-1e61-4cae-9420-c1c3e2848df5, rgb(232, 59, 136)) 100%); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-ZHudh .framer-1krkrb4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1224px; overflow: hidden; padding: 0px 0px 60px 0px; position: relative; width: 1px; z-index: 10; }\",\".framer-ZHudh .framer-1rg1mpi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 180px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-ZHudh .framer-1i3l5mn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 94%; }\",\".framer-ZHudh .framer-1o9m15s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZHudh .framer-69b6g4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 888px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZHudh .framer-1dc8z7a { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 590px; opacity: 0.7; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZHudh .framer-csil0y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZHudh .framer-12a8avv-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ZHudh .framer-1e9mi68 { 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: hidden; padding: 40px 0px 40px 0px; position: relative; width: 100%; z-index: 4; }\",\".framer-ZHudh .framer-mewfxz-container { flex: none; height: 100px; position: relative; width: 50%; }\",\".framer-ZHudh .framer-ha8uwq { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 227px); overflow: visible; position: relative; width: 340px; }\",\".framer-ZHudh .framer-rif6ia { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 200px); overflow: visible; position: relative; width: 300px; }\",\".framer-ZHudh .framer-1vpu9nf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-ZHudh .framer-1hvksag { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 700px; z-index: 4; }\",\".framer-ZHudh .framer-mlwzy6-container, .framer-ZHudh .framer-1tccop7-container, .framer-ZHudh .framer-13keho0-container, .framer-ZHudh .framer-1mref77-container, .framer-ZHudh .framer-18y7igk-container { flex: none; height: auto; position: relative; width: auto; z-index: 0; }\",\".framer-ZHudh .framer-4g53x7, .framer-ZHudh .framer-n200pd, .framer-ZHudh .framer-46s1y0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 0; }\",\".framer-ZHudh .framer-15veo3o, .framer-ZHudh .framer-kychlk, .framer-ZHudh .framer-ruovyu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZHudh .framer-1nugsoz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 615px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; z-index: 3; }\",\".framer-ZHudh .framer-ofnj52-container { flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: auto; z-index: 1; }\",\".framer-ZHudh.framer-1cvq6k6 { background-color: rgba(28, 28, 28, 0.5); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-ZHudh.framer-1epqpk3-container { flex: none; height: 509px; left: calc(50.00000000000002% - 905px / 2); position: fixed; top: calc(50.00000000000002% - 509px / 2); width: 905px; z-index: 10; }\",\".framer-ZHudh.framer-1nx59bf-container { cursor: pointer; flex: none; height: 36px; position: fixed; right: 72px; top: 72px; width: 36px; z-index: 10; }\",\".framer-ZHudh .framer-1bkk5nq { flex: none; height: 614px; overflow: visible; position: relative; width: 1196px; }\",\".framer-ZHudh .framer-16eowi5 { flex: none; height: 1457px; left: calc(50.00000000000002% - 1000px / 2); overflow: visible; position: absolute; top: -662px; width: 1000px; z-index: 2; }\",\".framer-ZHudh .framer-81tqnr { flex: none; height: 968px; left: -64px; opacity: 0.4; overflow: visible; position: absolute; right: -74px; top: -120px; }\",\".framer-ZHudh .framer-58d6pe { -webkit-filter: blur(169.4630889892578px); background-color: #0c0e1a; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(169.4630889892578px); flex: none; height: 922px; left: calc(49.99999549223409% - 922px / 2); position: absolute; top: 0px; width: 922px; }\",\".framer-ZHudh .framer-8vccfs { -webkit-filter: blur(169.4630889892578px); background-color: #ff78f4; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 0px; filter: blur(169.4630889892578px); flex: none; height: 725px; left: calc(49.99999549223409% - 725px / 2); opacity: 0.6; position: absolute; width: 725px; }\",\".framer-ZHudh .framer-1r7ugh { flex: none; height: 194px; left: 0px; opacity: 0.58; overflow: visible; position: absolute; top: 100px; width: 100%; z-index: 2; }\",\".framer-ZHudh .framer-onl4oc, .framer-ZHudh .framer-1bdvl10 { flex: none; height: 0px; left: 0px; opacity: 0.2; overflow: hidden; position: absolute; top: 0px; width: 100%; }\",\".framer-ZHudh .framer-1rqu525 { -webkit-filter: hue-rotate(153deg); aspect-ratio: 6.178217821782178 / 1; filter: hue-rotate(153deg); flex: none; height: var(--framer-aspect-ratio-supported, 233px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-ZHudh .framer-12fzqqn { -webkit-filter: blur(69px); background-color: #ef5cff; bottom: -147px; filter: blur(69px); flex: none; height: 146px; left: calc(50.00000000000002% - 1054px / 2); overflow: visible; position: absolute; width: 1054px; z-index: 3; }\",\".framer-ZHudh .framer-p12cir, .framer-ZHudh .framer-zoo7iv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 120px 90px 60px 90px; position: relative; width: 100%; }\",\".framer-ZHudh .framer-c8pdhv, .framer-ZHudh .framer-fhptm5 { 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: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-ZHudh .framer-vdefsp, .framer-ZHudh .framer-3yh9c1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 700px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-ZHudh .framer-1h6grwn { display: grid; flex: none; gap: 16px; grid-auto-rows: 480px; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(1, 480px); height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 95%; z-index: 5; }\",\".framer-ZHudh .framer-1itq6xa { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.25); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; background-color: #0c0c17; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: inset 0px -10px 40px 0px var(--token-30adfd80-ecab-4819-b6d1-8070a9e3e5af, #001019); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; justify-self: start; max-height: 480px; overflow: hidden; padding: 0px 0px 24px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZHudh .framer-rfh24k { aspect-ratio: 1.94 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); overflow: visible; position: relative; width: 388px; z-index: 3; }\",\".framer-ZHudh .framer-1ujnapq, .framer-ZHudh .framer-x6luza, .framer-ZHudh .framer-1lqupci { 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: center; overflow: hidden; padding: 16px 16px 0px 16px; position: relative; width: 100%; z-index: 2; }\",\".framer-ZHudh .framer-yv7h6d, .framer-ZHudh .framer-8959ay, .framer-ZHudh .framer-kx6mp8, .framer-ZHudh .framer-zv45mi, .framer-ZHudh .framer-1cia2bz, .framer-ZHudh .framer-cpc54b { --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZHudh .framer-1qwjayv, .framer-ZHudh .framer-s7bhf5, .framer-ZHudh .framer-16n3lir { -webkit-filter: blur(69px); background-color: #4c61ed; filter: blur(69px); flex: none; height: 286px; overflow: visible; position: absolute; right: 18px; top: -72px; width: 57px; z-index: 2; }\",\".framer-ZHudh .framer-1wdtk11, .framer-ZHudh .framer-a3rlgy, .framer-ZHudh .framer-1a9pdec { flex: none; height: 100%; opacity: 0.5; overflow: visible; position: absolute; right: 0px; top: calc(49.90757855822553% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-ZHudh .framer-b461wy, .framer-ZHudh .framer-jd4hw0 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.12); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: start; background-color: #0c0c17; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: inset 0px -10px 40px 0px var(--token-30adfd80-ecab-4819-b6d1-8070a9e3e5af, #001019); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; justify-self: start; max-height: 480px; overflow: hidden; padding: 0px 0px 24px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZHudh .framer-eqov3e, .framer-ZHudh .framer-1iufl1f { aspect-ratio: 1.94 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); overflow: visible; position: relative; width: 388px; z-index: 4; }\",\".framer-ZHudh .framer-zaguse-container, .framer-ZHudh .framer-1kn6cwf-container { flex: none; height: auto; position: relative; width: auto; z-index: 4; }\",\".framer-ZHudh .framer-6i5vyd { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 4; }\",\".framer-ZHudh .framer-3bnovi-container, .framer-ZHudh .framer-bmhf2a-container, .framer-ZHudh .framer-kw2zqw-container, .framer-ZHudh .framer-egth79-container, .framer-ZHudh .framer-n5od70-container, .framer-ZHudh .framer-eh1jbr-container, .framer-ZHudh .framer-1340oxj-container, .framer-ZHudh .framer-kq0h8m-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-ZHudh .framer-810u6n { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.06); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-852ab01e-4c8a-4815-81f4-59747a86f485, #0f1112); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; justify-self: start; min-width: 384px; overflow: hidden; padding: 48px 40px 48px 40px; position: relative; width: 1fr; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZHudh .framer-1wwu1sg { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.03); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: 80px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZHudh .framer-lkt7ot-container { flex: none; height: 46px; position: relative; width: 54px; }\",\".framer-ZHudh .framer-1clcsvc, .framer-ZHudh .framer-gqmsib { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZHudh .framer-15lobn { --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-ZHudh .framer-bkgkta { background-color: #0b0c0b; bottom: -139px; flex: none; left: 0px; overflow: visible; position: fixed; top: 0px; width: 100%; z-index: 1; }\",\".framer-ZHudh .framer-1m5cyei { flex: none; height: 968px; left: -64px; opacity: 0.4; overflow: visible; position: absolute; top: 0px; width: 1354px; }\",\".framer-ZHudh .framer-uiwdky { -webkit-filter: blur(169.4630889892578px); background-color: rgba(23, 48, 145, 0.6); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(169.4630889892578px); flex: none; height: 922px; left: 0px; position: absolute; top: 0px; width: 922px; }\",\".framer-ZHudh .framer-rt3rst { -webkit-filter: blur(169.4630889892578px); background-color: rgba(131, 42, 156, 0.51); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; filter: blur(169.4630889892578px); flex: none; height: 725px; left: 629px; opacity: 0.6; position: absolute; top: 243px; width: 725px; }\",\".framer-ZHudh .framer-1qpw7r5 { 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: 120px 90px 60px 90px; position: relative; scroll-margin-top: 50px; width: 100%; z-index: 6; }\",\".framer-ZHudh .framer-1r86x1j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-ZHudh .framer-wx1go { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 730px; }\",\".framer-ZHudh .framer-3mts6, .framer-ZHudh .framer-1ngkd7q, .framer-ZHudh .framer-olqb1d, .framer-ZHudh .framer-197g54t { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZHudh .framer-4ybw1v-container, .framer-ZHudh .framer-1ftztx1-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-ZHudh .framer-3tvbp3 { 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: 120px 90px 60px 90px; position: relative; width: 100%; z-index: 6; }\",\".framer-ZHudh .framer-1dxl0mu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-ZHudh .framer-1u42gcq { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 59%; }\",\".framer-ZHudh .framer-1lc47vk { 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: hidden; padding: 120px 90px 90px 90px; position: relative; width: 100%; }\",\".framer-ZHudh .framer-41llkm { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.12); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: inset 0px -10px 40px 0px var(--token-30adfd80-ecab-4819-b6d1-8070a9e3e5af, #001019); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 90px 0px 90px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-ZHudh .framer-1p4lsci { 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: visible; padding: 24px 0px 40px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-ZHudh .framer-1k3lhl5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 820px; }\",\".framer-ZHudh .framer-sewod5 { aspect-ratio: 1.0285714285714285 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 97px); position: relative; width: 100px; }\",\".framer-ZHudh .framer-19szj9m { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZHudh .framer-n2kko7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 69%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZHudh .framer-1a9jot-container { flex: none; height: 52px; position: relative; width: auto; }\",\".framer-ZHudh .framer-xf0dge { flex: none; height: 194px; left: 0px; opacity: 0.58; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 2; }\",\".framer-ZHudh .framer-1azbg33 { -webkit-filter: hue-rotate(153deg); aspect-ratio: 6.178217821782178 / 1; filter: hue-rotate(153deg); flex: none; height: var(--framer-aspect-ratio-supported, 162px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-ZHudh .framer-9a0tff { -webkit-filter: blur(69px); background-color: #ef5cff; filter: blur(69px); flex: none; height: 69px; left: calc(50.00000000000002% - 331px / 2); overflow: visible; position: absolute; top: -70px; width: 331px; z-index: 1; }\",\".framer-ZHudh .framer-ywaatp-container { flex: none; height: 72px; left: 50%; position: fixed; top: 48px; transform: translateX(-50%); width: auto; z-index: 9; }\",\".framer-ZHudh .framer-1ditmxl { align-content: center; align-items: center; background-color: #0b0c0b; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ZHudh .framer-1avm5xm-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-ZHudh .framer-q9cdso-container { flex: none; height: 40px; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: 0px; width: 100%; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZHudh.framer-biw4gr, .framer-ZHudh .framer-tp5vbp, .framer-ZHudh .framer-q3kx1w, .framer-ZHudh .framer-1krkrb4, .framer-ZHudh .framer-1rg1mpi, .framer-ZHudh .framer-1i3l5mn, .framer-ZHudh .framer-1o9m15s, .framer-ZHudh .framer-csil0y, .framer-ZHudh .framer-1e9mi68, .framer-ZHudh .framer-1vpu9nf, .framer-ZHudh .framer-1hvksag, .framer-ZHudh .framer-1nugsoz, .framer-ZHudh .framer-p12cir, .framer-ZHudh .framer-c8pdhv, .framer-ZHudh .framer-vdefsp, .framer-ZHudh .framer-1itq6xa, .framer-ZHudh .framer-1ujnapq, .framer-ZHudh .framer-b461wy, .framer-ZHudh .framer-x6luza, .framer-ZHudh .framer-jd4hw0, .framer-ZHudh .framer-1lqupci, .framer-ZHudh .framer-zoo7iv, .framer-ZHudh .framer-fhptm5, .framer-ZHudh .framer-3yh9c1, .framer-ZHudh .framer-810u6n, .framer-ZHudh .framer-1wwu1sg, .framer-ZHudh .framer-1clcsvc, .framer-ZHudh .framer-1qpw7r5, .framer-ZHudh .framer-1r86x1j, .framer-ZHudh .framer-wx1go, .framer-ZHudh .framer-3tvbp3, .framer-ZHudh .framer-1dxl0mu, .framer-ZHudh .framer-gqmsib, .framer-ZHudh .framer-1u42gcq, .framer-ZHudh .framer-1lc47vk, .framer-ZHudh .framer-41llkm, .framer-ZHudh .framer-1p4lsci, .framer-ZHudh .framer-1k3lhl5, .framer-ZHudh .framer-19szj9m, .framer-ZHudh .framer-1ditmxl { gap: 0px; } .framer-ZHudh.framer-biw4gr > *, .framer-ZHudh .framer-1nugsoz > *, .framer-ZHudh .framer-1qpw7r5 > *, .framer-ZHudh .framer-3tvbp3 > *, .framer-ZHudh .framer-41llkm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ZHudh.framer-biw4gr > :first-child, .framer-ZHudh .framer-1krkrb4 > :first-child, .framer-ZHudh .framer-1rg1mpi > :first-child, .framer-ZHudh .framer-1i3l5mn > :first-child, .framer-ZHudh .framer-1o9m15s > :first-child, .framer-ZHudh .framer-1e9mi68 > :first-child, .framer-ZHudh .framer-1vpu9nf > :first-child, .framer-ZHudh .framer-1hvksag > :first-child, .framer-ZHudh .framer-1nugsoz > :first-child, .framer-ZHudh .framer-p12cir > :first-child, .framer-ZHudh .framer-c8pdhv > :first-child, .framer-ZHudh .framer-vdefsp > :first-child, .framer-ZHudh .framer-1itq6xa > :first-child, .framer-ZHudh .framer-1ujnapq > :first-child, .framer-ZHudh .framer-b461wy > :first-child, .framer-ZHudh .framer-x6luza > :first-child, .framer-ZHudh .framer-jd4hw0 > :first-child, .framer-ZHudh .framer-1lqupci > :first-child, .framer-ZHudh .framer-zoo7iv > :first-child, .framer-ZHudh .framer-fhptm5 > :first-child, .framer-ZHudh .framer-3yh9c1 > :first-child, .framer-ZHudh .framer-810u6n > :first-child, .framer-ZHudh .framer-1clcsvc > :first-child, .framer-ZHudh .framer-1qpw7r5 > :first-child, .framer-ZHudh .framer-1r86x1j > :first-child, .framer-ZHudh .framer-wx1go > :first-child, .framer-ZHudh .framer-3tvbp3 > :first-child, .framer-ZHudh .framer-1dxl0mu > :first-child, .framer-ZHudh .framer-gqmsib > :first-child, .framer-ZHudh .framer-1u42gcq > :first-child, .framer-ZHudh .framer-1lc47vk > :first-child, .framer-ZHudh .framer-41llkm > :first-child, .framer-ZHudh .framer-1p4lsci > :first-child, .framer-ZHudh .framer-1k3lhl5 > :first-child, .framer-ZHudh .framer-19szj9m > :first-child { margin-top: 0px; } .framer-ZHudh.framer-biw4gr > :last-child, .framer-ZHudh .framer-1krkrb4 > :last-child, .framer-ZHudh .framer-1rg1mpi > :last-child, .framer-ZHudh .framer-1i3l5mn > :last-child, .framer-ZHudh .framer-1o9m15s > :last-child, .framer-ZHudh .framer-1e9mi68 > :last-child, .framer-ZHudh .framer-1vpu9nf > :last-child, .framer-ZHudh .framer-1hvksag > :last-child, .framer-ZHudh .framer-1nugsoz > :last-child, .framer-ZHudh .framer-p12cir > :last-child, .framer-ZHudh .framer-c8pdhv > :last-child, .framer-ZHudh .framer-vdefsp > :last-child, .framer-ZHudh .framer-1itq6xa > :last-child, .framer-ZHudh .framer-1ujnapq > :last-child, .framer-ZHudh .framer-b461wy > :last-child, .framer-ZHudh .framer-x6luza > :last-child, .framer-ZHudh .framer-jd4hw0 > :last-child, .framer-ZHudh .framer-1lqupci > :last-child, .framer-ZHudh .framer-zoo7iv > :last-child, .framer-ZHudh .framer-fhptm5 > :last-child, .framer-ZHudh .framer-3yh9c1 > :last-child, .framer-ZHudh .framer-810u6n > :last-child, .framer-ZHudh .framer-1clcsvc > :last-child, .framer-ZHudh .framer-1qpw7r5 > :last-child, .framer-ZHudh .framer-1r86x1j > :last-child, .framer-ZHudh .framer-wx1go > :last-child, .framer-ZHudh .framer-3tvbp3 > :last-child, .framer-ZHudh .framer-1dxl0mu > :last-child, .framer-ZHudh .framer-gqmsib > :last-child, .framer-ZHudh .framer-1u42gcq > :last-child, .framer-ZHudh .framer-1lc47vk > :last-child, .framer-ZHudh .framer-41llkm > :last-child, .framer-ZHudh .framer-1p4lsci > :last-child, .framer-ZHudh .framer-1k3lhl5 > :last-child, .framer-ZHudh .framer-19szj9m > :last-child { margin-bottom: 0px; } .framer-ZHudh .framer-tp5vbp > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-ZHudh .framer-tp5vbp > :first-child, .framer-ZHudh .framer-q3kx1w > :first-child, .framer-ZHudh .framer-csil0y > :first-child, .framer-ZHudh .framer-1wwu1sg > :first-child, .framer-ZHudh .framer-1ditmxl > :first-child { margin-left: 0px; } .framer-ZHudh .framer-tp5vbp > :last-child, .framer-ZHudh .framer-q3kx1w > :last-child, .framer-ZHudh .framer-csil0y > :last-child, .framer-ZHudh .framer-1wwu1sg > :last-child, .framer-ZHudh .framer-1ditmxl > :last-child { margin-right: 0px; } .framer-ZHudh .framer-q3kx1w > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-ZHudh .framer-1krkrb4 > *, .framer-ZHudh .framer-1vpu9nf > *, .framer-ZHudh .framer-1dxl0mu > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-ZHudh .framer-1rg1mpi > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-ZHudh .framer-1i3l5mn > *, .framer-ZHudh .framer-810u6n > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ZHudh .framer-1o9m15s > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-ZHudh .framer-csil0y > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-ZHudh .framer-1e9mi68 > *, .framer-ZHudh .framer-c8pdhv > *, .framer-ZHudh .framer-1itq6xa > *, .framer-ZHudh .framer-1ujnapq > *, .framer-ZHudh .framer-b461wy > *, .framer-ZHudh .framer-x6luza > *, .framer-ZHudh .framer-jd4hw0 > *, .framer-ZHudh .framer-1lqupci > *, .framer-ZHudh .framer-fhptm5 > *, .framer-ZHudh .framer-1lc47vk > *, .framer-ZHudh .framer-19szj9m > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ZHudh .framer-1hvksag > *, .framer-ZHudh .framer-vdefsp > *, .framer-ZHudh .framer-3yh9c1 > *, .framer-ZHudh .framer-1clcsvc > *, .framer-ZHudh .framer-wx1go > *, .framer-ZHudh .framer-gqmsib > *, .framer-ZHudh .framer-1u42gcq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ZHudh .framer-p12cir > *, .framer-ZHudh .framer-zoo7iv > *, .framer-ZHudh .framer-1r86x1j > *, .framer-ZHudh .framer-1p4lsci > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-ZHudh .framer-1wwu1sg > *, .framer-ZHudh .framer-1ditmxl > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ZHudh .framer-1k3lhl5 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-ZHudh[data-border=\"true\"]::after, .framer-ZHudh [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-ZHudh.framer-biw4gr { width: 810px; } .framer-ZHudh .framer-1vpu9nf { padding: 120px 0px 90px 0px; } .framer-ZHudh .framer-1hvksag, .framer-ZHudh .framer-wx1go { justify-content: flex-start; width: 87%; } .framer-ZHudh .framer-1nugsoz { height: 394px; width: 783px; } .framer-ZHudh.framer-1epqpk3-container { height: 401px; left: calc(50.00000000000002% - 713px / 2); top: calc(50.00000000000002% - 401px / 2); width: 713px; } .framer-ZHudh .framer-1bkk5nq { height: 388px; width: 765px; } .framer-ZHudh .framer-1rqu525, .framer-ZHudh .framer-1azbg33 { height: var(--framer-aspect-ratio-supported, 194px); } .framer-ZHudh .framer-12fzqqn { left: calc(50.74074074074076% - 704px / 2); width: 704px; } .framer-ZHudh .framer-p12cir, .framer-ZHudh .framer-zoo7iv { padding: 80px 40px 80px 40px; } .framer-ZHudh .framer-vdefsp, .framer-ZHudh .framer-3yh9c1 { max-width: 500px; } .framer-ZHudh .framer-1h6grwn { gap: 24px; grid-auto-rows: 520px; grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(1, 520px); } .framer-ZHudh .framer-1itq6xa { max-height: 520px; order: 0; } .framer-ZHudh .framer-rfh24k, .framer-ZHudh .framer-eqov3e, .framer-ZHudh .framer-1iufl1f { height: var(--framer-aspect-ratio-supported, 103px); width: 100%; } .framer-ZHudh .framer-b461wy { max-height: 520px; order: 1; } .framer-ZHudh .framer-jd4hw0 { max-height: 520px; order: 2; } .framer-ZHudh .framer-6i5vyd { grid-template-columns: repeat(2, minmax(50px, 1fr)); overflow: visible; } .framer-ZHudh .framer-810u6n { min-width: 353px; } .framer-ZHudh .framer-1qpw7r5 { padding: 0px 30px 80px 30px; } .framer-ZHudh .framer-1r86x1j { flex-wrap: wrap; gap: 40px; } .framer-ZHudh .framer-3tvbp3 { padding: 0px 30px 0px 30px; } .framer-ZHudh .framer-1dxl0mu { flex-wrap: wrap; gap: 50px; max-width: 768px; width: 90%; } .framer-ZHudh .framer-gqmsib { justify-content: flex-start; } .framer-ZHudh .framer-1u42gcq { justify-content: flex-start; width: 100%; } .framer-ZHudh .framer-41llkm { height: 542px; justify-content: flex-start; padding: 90px 0px 400px 0px; } .framer-ZHudh .framer-1p4lsci { gap: 50px; padding: 50px 0px 40px 0px; } .framer-ZHudh .framer-1k3lhl5 { width: 73%; } .framer-ZHudh .framer-n2kko7 { width: 100%; } .framer-ZHudh .framer-ywaatp-container { left: calc(50.00000000000002% - 780px / 2); transform: unset; width: 780px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZHudh .framer-1h6grwn, .framer-ZHudh .framer-1r86x1j, .framer-ZHudh .framer-1dxl0mu, .framer-ZHudh .framer-1p4lsci { gap: 0px; } .framer-ZHudh .framer-1h6grwn > *, .framer-ZHudh .framer-1h6grwn > :first-child, .framer-ZHudh .framer-1h6grwn > :last-child { margin: 0px; } .framer-ZHudh .framer-1r86x1j > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-ZHudh .framer-1r86x1j > :first-child, .framer-ZHudh .framer-1dxl0mu > :first-child, .framer-ZHudh .framer-1p4lsci > :first-child { margin-top: 0px; } .framer-ZHudh .framer-1r86x1j > :last-child, .framer-ZHudh .framer-1dxl0mu > :last-child, .framer-ZHudh .framer-1p4lsci > :last-child { margin-bottom: 0px; } .framer-ZHudh .framer-1dxl0mu > *, .framer-ZHudh .framer-1p4lsci > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }}\",\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-ZHudh.framer-biw4gr { width: 1200px; } .framer-ZHudh .framer-1bkk5nq { height: 577px; width: 1127px; } .framer-ZHudh .framer-1rqu525 { height: var(--framer-aspect-ratio-supported, 194px); } .framer-ZHudh .framer-vdefsp, .framer-ZHudh .framer-3yh9c1 { max-width: 800px; } .framer-ZHudh .framer-1h6grwn { gap: 24px; } .framer-ZHudh .framer-rfh24k, .framer-ZHudh .framer-eqov3e, .framer-ZHudh .framer-1iufl1f { height: var(--framer-aspect-ratio-supported, 159px); width: 100%; } .framer-ZHudh .framer-810u6n { min-width: 324px; } .framer-ZHudh .framer-ywaatp-container { left: calc(50.00000000000002% - 90% / 2); transform: unset; width: 90%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZHudh .framer-1h6grwn { gap: 0px; } .framer-ZHudh .framer-1h6grwn > *, .framer-ZHudh .framer-1h6grwn > :first-child, .framer-ZHudh .framer-1h6grwn > :last-child { margin: 0px; } }}\",\"@media (max-width: 809px) { .framer-ZHudh.framer-biw4gr { width: 390px; } .framer-ZHudh .framer-tp5vbp { order: 1; padding: 20px; } .framer-ZHudh .framer-1krkrb4 { gap: 36px; } .framer-ZHudh .framer-1rg1mpi { padding: 140px 0px 0px 0px; } .framer-ZHudh .framer-1vpu9nf { order: 4; padding: 60px 0px 60px 0px; } .framer-ZHudh .framer-1hvksag, .framer-ZHudh .framer-wx1go, .framer-ZHudh .framer-1u42gcq, .framer-ZHudh .framer-n2kko7 { width: 100%; } .framer-ZHudh .framer-1nugsoz { height: 201px; overflow: hidden; width: 390px; } .framer-ZHudh.framer-1epqpk3-container { height: 195px; left: calc(50.00000000000002% - 346px / 2); top: calc(50.00000000000002% - 195px / 2); width: 346px; } .framer-ZHudh .framer-1bkk5nq { height: 202px; width: 391px; } .framer-ZHudh .framer-16eowi5 { bottom: -19px; height: unset; left: 0px; right: 0px; width: unset; } .framer-ZHudh .framer-1rqu525, .framer-ZHudh .framer-1azbg33 { height: var(--framer-aspect-ratio-supported, 194px); } .framer-ZHudh .framer-12fzqqn { bottom: -67px; left: calc(50.00000000000002% - 350px / 2); width: 350px; } .framer-ZHudh .framer-p12cir { gap: 32px; order: 2; padding: 60px 20px 60px 20px; } .framer-ZHudh .framer-c8pdhv, .framer-ZHudh .framer-fhptm5 { max-width: unset; } .framer-ZHudh .framer-1h6grwn { gap: 14px; grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-ZHudh .framer-rfh24k, .framer-ZHudh .framer-eqov3e, .framer-ZHudh .framer-1iufl1f { height: var(--framer-aspect-ratio-supported, 103px); width: 100%; } .framer-ZHudh .framer-zoo7iv { gap: 32px; order: 3; padding: 60px 20px 60px 20px; } .framer-ZHudh .framer-6i5vyd { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-ZHudh .framer-810u6n { min-width: 350px; } .framer-ZHudh .framer-bkgkta { order: 5; right: 0px; width: unset; } .framer-ZHudh .framer-1qpw7r5 { order: 6; padding: 60px 20px 60px 20px; } .framer-ZHudh .framer-1r86x1j, .framer-ZHudh .framer-1dxl0mu { flex-wrap: wrap; gap: 40px; } .framer-ZHudh .framer-3tvbp3 { order: 7; padding: 0px 20px 0px 20px; } .framer-ZHudh .framer-1lc47vk { order: 8; padding: 60px 20px 60px 20px; } .framer-ZHudh .framer-41llkm { padding: 100px 0px 100px 0px; } .framer-ZHudh .framer-1p4lsci { gap: 30px; padding: 10px 0px 40px 0px; } .framer-ZHudh .framer-1k3lhl5 { padding: 0px 20px 0px 20px; width: 100%; } .framer-ZHudh .framer-ywaatp-container { height: auto; order: 9; width: 90%; } .framer-ZHudh .framer-1ditmxl { order: 10; } .framer-ZHudh .framer-q9cdso-container { height: auto; left: 50%; order: 0; transform: translateX(-50%); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-ZHudh .framer-1krkrb4, .framer-ZHudh .framer-p12cir, .framer-ZHudh .framer-1h6grwn, .framer-ZHudh .framer-zoo7iv, .framer-ZHudh .framer-1r86x1j, .framer-ZHudh .framer-1dxl0mu, .framer-ZHudh .framer-1p4lsci { gap: 0px; } .framer-ZHudh .framer-1krkrb4 > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-ZHudh .framer-1krkrb4 > :first-child, .framer-ZHudh .framer-p12cir > :first-child, .framer-ZHudh .framer-zoo7iv > :first-child, .framer-ZHudh .framer-1r86x1j > :first-child, .framer-ZHudh .framer-1dxl0mu > :first-child, .framer-ZHudh .framer-1p4lsci > :first-child { margin-top: 0px; } .framer-ZHudh .framer-1krkrb4 > :last-child, .framer-ZHudh .framer-p12cir > :last-child, .framer-ZHudh .framer-zoo7iv > :last-child, .framer-ZHudh .framer-1r86x1j > :last-child, .framer-ZHudh .framer-1dxl0mu > :last-child, .framer-ZHudh .framer-1p4lsci > :last-child { margin-bottom: 0px; } .framer-ZHudh .framer-p12cir > *, .framer-ZHudh .framer-zoo7iv > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-ZHudh .framer-1h6grwn > *, .framer-ZHudh .framer-1h6grwn > :first-child, .framer-ZHudh .framer-1h6grwn > :last-child { margin: 0px; } .framer-ZHudh .framer-1r86x1j > *, .framer-ZHudh .framer-1dxl0mu > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-ZHudh .framer-1p4lsci > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8268.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"VJ2fFZlMC\":{\"layout\":[\"fixed\",\"auto\"]},\"bxSO8cNLk\":{\"layout\":[\"fixed\",\"auto\"]},\"S_VD2GDvw\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"RV3XeZkCC\":{\"pattern\":\":RV3XeZkCC\",\"name\":\"hero\"},\"CpLYklHIy\":{\"pattern\":\":CpLYklHIy\",\"name\":\"benefits\"},\"xOMwvQCaL\":{\"pattern\":\":xOMwvQCaL\",\"name\":\"benefits\"},\"LUnzpPioF\":{\"pattern\":\":LUnzpPioF\",\"name\":\"reviews\"},\"r6zdSevNC\":{\"pattern\":\":r6zdSevNC\",\"name\":\"faq\"}}\n * @framerResponsiveScreen\n */const FramerWZYCZS0CF=withCSS(Component,css,\"framer-ZHudh\");export default FramerWZYCZS0CF;FramerWZYCZS0CF.displayName=\"Home\";FramerWZYCZS0CF.defaultProps={height:8268.5,width:1440};addFonts(FramerWZYCZS0CF,[{explicitInter:true,fonts:[{family:\"Funnel Display\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/funneldisplay/v1/B50bF7FGv37QNVWgE0ga--4PbZSRJXrOHcLHLoAYmmPXXcVwIZDKFA.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/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\"}]},...ButtonButtonFonts,...TickerFonts,...SectionSectionBadgeFonts,...HomePlayFonts,...YouTubeFonts,...PhosphorFonts,...WhyChooseUsSingleCardFonts,...HashtagiconFonts,...TestimonialsFonts,...SectionFaqAreaFonts,...ButtonButtonRegularFonts,...SectionNavbarFonts,...SectionFooterFonts,...BannerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWZYCZS0CF\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"RV3XeZkCC\\\":{\\\"pattern\\\":\\\":RV3XeZkCC\\\",\\\"name\\\":\\\"hero\\\"},\\\"CpLYklHIy\\\":{\\\"pattern\\\":\\\":CpLYklHIy\\\",\\\"name\\\":\\\"benefits\\\"},\\\"xOMwvQCaL\\\":{\\\"pattern\\\":\\\":xOMwvQCaL\\\",\\\"name\\\":\\\"benefits\\\"},\\\"LUnzpPioF\\\":{\\\"pattern\\\":\\\":LUnzpPioF\\\",\\\"name\\\":\\\"reviews\\\"},\\\"r6zdSevNC\\\":{\\\"pattern\\\":\\\":r6zdSevNC\\\",\\\"name\\\":\\\"faq\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"8268.5\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VJ2fFZlMC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bxSO8cNLk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"S_VD2GDvw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "8wCAAgY,IAAMA,GAAqB,IAAUC,GAAsB,CAAC,KAAKC,GAAQ,eAAeA,CAAM,MAAM,MAAMA,GAAQ,cAAcA,CAAM,MAAM,IAAIA,GAAQ,eAAeA,CAAM,MAAM,OAAOA,GAAQ,cAAcA,CAAM,KAAK,EAAQC,GAA8B,OAAO,UAAY,KAAa,OAAO,UAAU,UAAU,oBAAqB,WAS/rB,SAARC,GAAwBC,EAAM,CAAY,GAAG,CAAC,MAAAC,EAAM,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,MAAAC,EAAM,YAAAC,EAAY,UAAAC,EAAU,UAAAC,EAAU,cAAAC,EAAc,YAAAC,EAAY,MAAAC,CAAK,EAAEf,EAAW,CAAC,YAAAgB,EAAY,SAAAC,EAAS,UAAAC,EAAU,UAAAC,EAAU,UAAAC,CAAS,EAAEN,EAAiB,CAAC,UAAAO,EAAU,WAAAC,CAAU,EAAET,EAAoBU,EAAanB,EAAe,GAAGC,CAAU,MAAMC,CAAY,MAAMC,CAAa,MAAMC,CAAW,KAAK,GAAGL,CAAO,KAAuBqB,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAC5fC,EAAczB,EAAM,OAAO,OAAO,EAAQ0B,EAAYC,GAAS,MAAMF,CAAa,EAAQG,EAAYF,EAAY,EAAKhB,IAAY,KAAMA,EAAU,QAAQ,IAAMmB,EAAanB,IAAY,QAAQA,IAAY,QAAcd,GAAOkC,GAAe,CAAC,EAAQC,GAAYpC,GAAsBe,CAAS,EAAQsB,GAAUC,GAAarC,GAAOmC,EAAW,EAA4BG,EAAUC,EAAO,IAAI,EAAQC,EAAYC,EAAQ,IAAW,CAAcC,GAAU,EAAeA,GAAU,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,GAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,EAAkBC,EAAe,CAAC,EAAMC,GAAc,CAAC,EAA2BC,GAAY,EAAMC,GAAQ,EAAKtB,IAAUqB,GAAYlB,EAAY,KAAK,MAAM,GAAGA,CAAW,EAAE,EAAEmB,GAAQ,GAAM,CAACtB,GAAUK,GAAaW,GAAK,SAAQK,GAAY,KAAK,MAAML,GAAK,OAAOA,GAAK,SAAS,CAAC,EAAE,EAAEK,GAAY,KAAK,IAAIA,GAAYlD,EAAoB,EAAEmD,GAAQ,GAAiC,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAGnB,GAAaM,EAAU,QAAQ,CAAC,IAAMc,EAAanB,EAAaK,EAAU,QAAQ,YAAYA,EAAU,QAAQ,aAAmBe,EAAMb,EAAY,CAAC,EAAE,QAAQP,EAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,UAAU,EAAkMc,IAAtLd,EAAY,CAAC,EAAE,QAAQP,EAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,YAAYA,EAAY,CAAC,EAAE,QAAQ,UAAUA,EAAY,CAAC,EAAE,QAAQ,aAAa,GAA2Ba,EAAMhD,EAAIuC,GAAQ,CAAC,OAAOQ,EAAa,SAASE,EAAc,CAAC,CAAE,CAAC,EAAE,CAAC,CAAC,EAAQC,GAAe5B,EAAS,CAAC,kBAAkB,MAAM,EAAE,CAAC,EAAwC,GAAGK,EAAY,CAChkD,GAAG,CAACL,EAAS,CAGE,IAAI6B,EAAcjB,EAAO,EAAI,EAAEkB,GAAU,KAAKC,GAAM,KAAKR,EAAO,EAASS,GAAOrB,EAAU,QAAQ,CAAC,CAAC,YAAAsB,CAAW,IAAI,CAAI,CAACJ,EAAc,UAAUI,EAAY,OAAOA,EAAY,SAASF,GAAM,KAAKR,EAAO,EAAGM,EAAc,QAAQ,EAAM,CAAC,GAAI,CAAC,CAAC,CAAE,CAACV,EAAef,GAAS,IAAIF,EAAc,CAACgC,EAAMC,IAAQ,CAAC,IAAIC,GAAaC,GAAcC,GAAcC,GAAc,IAAIC,GAAOL,IAAQ,IAAGK,GAAI3B,EAAY,CAAC,GAAMsB,IAAQjC,EAAc,OAAO,IAAGsC,GAAI3B,EAAY,CAAC,GAAG,IAAMG,GAAK,CAAC,MAAMnB,GAAWuC,GAAaF,EAAM,SAAS,MAAME,KAAe,OAAO,OAAOA,GAAa,MAAM,OAAO,OAAOtC,GAAYuC,GAAcH,EAAM,SAAS,MAAMG,KAAgB,OAAO,OAAOA,GAAc,OAAO,MAAM,EAAE,OAAoBI,EAAKC,GAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,IAAID,GAAI,MAAMxB,GAAK,SAAsB2B,GAAaT,EAAM,CAAC,MAAM,CAAC,IAAII,GAAcJ,EAAM,SAAS,MAAMI,KAAgB,OAAO,OAAOA,GAAc,MAAM,GAAGtB,GAAK,WAAW,EAAE,GAAGY,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAaC,EAAM,MAAS,GAAGI,GAAcL,EAAM,SAAS,MAAMK,KAAgB,OAAO,OAAOA,GAAc,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAE,CAAC,GAAG,CAACvC,EAAU,QAAQ4C,EAAE,EAAEA,EAAEvB,GAAYuB,IAAKxB,GAAc,CAAC,GAAGA,GAAc,GAAGhB,GAAS,IAAIF,EAAc,CAACgC,EAAMW,KAAa,CAAC,IAAIT,GAAaC,GAAcC,GAAcC,GAAcO,GAAcC,GAAc,IAAM/B,GAAK,CAAC,MAAMnB,GAAWuC,GAAaF,EAAM,SAAS,MAAME,KAAe,OAAO,OAAOA,GAAa,MAAM,OAAO,OAAOtC,GAAYuC,GAAcH,EAAM,SAAS,MAAMG,KAAgB,OAAO,OAAOA,GAAc,OAAO,OAAO,WAAW,WAAW,EAAE,OAAoBI,EAAKC,GAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,MAAMzB,GAAK,cAAc,GAAK,SAAsB2B,GAAaT,EAAM,CAAC,IAAIU,EAAE,IAAIC,GAAW,MAAM,CAAC,IAAIP,GAAcJ,EAAM,SAAS,MAAMI,KAAgB,OAAO,OAAOA,GAAc,MAAM,MAAMzC,GAAW0C,GAAcL,EAAM,SAAS,MAAMK,KAAgB,OAAO,OAAOA,GAAc,MAAM,OAAO,OAAOzC,GAAYgD,GAAcZ,EAAM,SAAS,MAAMY,KAAgB,OAAO,OAAOA,GAAc,OAAO,OAAO,WAAW,EAAE,GAAGlB,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,SAASU,EAAE,MAAS,GAAGG,GAAcb,EAAM,SAAS,MAAMa,KAAgB,OAAO,OAAOA,GAAc,QAAQ,CAAC,EAAEH,EAAE,KAAKC,EAAU,CAAC,EAAED,EAAE,KAAKC,EAAU,CAAE,CAAC,CAAC,EAAI,IAAMG,GAAehC,GAAK,SAASA,GAAK,SAAS,KAAK,MAAMA,GAAK,OAAOA,GAAK,QAAQ,EAAQiC,GAAYrC,EAAO,IAAI,EAAQsC,GAAStC,EAAO,IAAI,EAAQuC,GAAKvC,EAAO,CAAC,EAAQwC,GAAQxC,EAAO,EAAK,EAAQyC,GAAgBC,GAAiB,EAAQC,GAAQ3C,EAAO,IAAI,EAAQ4C,GAAa5C,EAAO,IAAI,EAE7lF,GAAG,CAACZ,EAAS,CAAC,IAAMyD,EAASC,GAAU/C,CAAS,EAEzCrC,IAA+BwD,GAAU,IAAI,CAAC,GAAG,EAAAuB,IAAiB,CAACL,IAAgB,CAAC/D,GAAe,OAAAuE,GAAa,QAAQD,GAAQ,QAAQ,QAAQ,CAAC,UAAU,CAAC/C,GAAY,CAAC,EAAEA,GAAYwC,EAAc,CAAC,CAAC,EAAE,CAAC,SAAS,KAAK,IAAIA,EAAc,EAAE/D,EAAM,IAAI,WAAW,IAAS,OAAO,QAAQ,CAAC,EAAQ,IAAIuE,GAAa,QAAQ,OAAO,CAAE,EAAE,CAACtE,EAAY8D,GAAe/D,CAAK,CAAC,EACtX6C,GAAU,IAAI,CAAK0B,GAAa,UAAkBC,GAAUD,GAAa,QAAQ,YAAY,SAAUA,GAAa,QAAQ,KAAK,EAAW,CAACC,GAAUD,GAAa,QAAQ,YAAY,WAAWA,GAAa,QAAQ,MAAM,EAAG,EAAE,CAACC,CAAQ,CAAC,GAG9NE,GAAkBC,GAAG,CAAC,GAAG,CAACZ,IAAgBK,IAAiB/E,GAA+B,OAKnF2E,GAAY,UAAU,OAAMA,GAAY,QAAQW,GAAGA,EAAEA,EAAEX,GAAY,QAAqE,IAAIY,IAAjDX,GAAS,UAAU,KAAK,EAAEU,EAAEV,GAAS,UAA6BjE,EAAM,KAAQmE,GAAQ,UAASS,IAAO3E,GAAaiE,GAAK,SAASU,GAAMV,GAAK,QAAQW,GAAK,EAAEd,GAAeG,GAAK,OAAO,EAAED,GAAS,QAAQU,EAAMH,GAAgBpF,GAAO,IAAI8E,GAAK,OAAO,CAAE,CAAC,CAAG,CAAY,IAAMY,GAAczD,EAAa,WAAW,YAAkB0D,GAAetE,EAAU,EAAQuE,GAAa,IAAIvE,EAAU,EAAQwE,GAAeC,GAAMxE,EAAU,EAAEqE,EAAc,EAAQI,GAAa,IAAIzE,EAAgB0E,GAAS,mBAAmBN,EAAa,mBAAmBnE,CAAS,KAAKsE,EAAc,uBAAuBF,EAAc,uBAAuBC,EAAY,oBAAoBrE,CAAS,KAAKwE,EAAY,KAAsB,OAAI/D,EAAkWoC,EAAK,UAAU,CAAC,MAAM,CAAC,GAAG6B,GAAe,QAAQhD,GAAQ,gBAAgB9B,EAAY6E,GAAS,OAAU,aAAa7E,EAAY6E,GAAS,OAAU,UAAU7E,EAAY6E,GAAS,OAAU,SAAS5E,EAAS,UAAU,SAAS,QAAQM,CAAY,EAAE,IAAIY,EAAU,SAAsB4D,EAAMC,EAAO,GAAG,CAAC,IAAIjB,GAAQ,MAAM,CAAC,GAAGe,GAAe,IAAI5F,EAAI,IAAIS,IAAY,UAAUsF,GAAczB,EAAc,EAAE,CAACA,GAAe,OAAU,KAAK7D,IAAY,SAASsF,GAAczB,EAAc,EAAE,CAACA,GAAe,OAAU,WAAW5D,EAAU,SAAS,WAAW,cAAckB,EAAa,MAAM,SAAS,GAAGf,EAAM,WAAWS,EAAS,OAAO,YAAY,UAAU1B,GAA8BkC,GAAY,CAAC,EAAEC,EAAS,EAAE,aAAa,IAAI,CAAC2C,GAAQ,QAAQ,GAAQI,GAAa,UACz5DA,GAAa,QAAQ,aAAatE,EAAa,EAAE,aAAa,IAAI,CAACkE,GAAQ,QAAQ,GAASI,GAAa,UACzGA,GAAa,QAAQ,aAAa,EAAG,EAAE,SAAS,CAACrC,EAAeC,EAAa,CAAC,CAAC,CAAC,CAAC,EAF6wBmD,EAAM,UAAU,CAAC,MAAMG,GAAkB,SAAS,CAAcjC,EAAK,MAAM,CAAC,MAAMkC,GAAY,SAAS,QAAG,CAAC,EAAelC,EAAK,IAAI,CAAC,MAAMmC,GAAY,SAAS,oBAAoB,CAAC,EAAenC,EAAK,IAAI,CAAC,MAAMoC,GAAe,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAErjC,CAAyBtG,GAAO,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,cAAc,CAAC,UAAU,GAAK,WAAW,EAAI,EAAE,YAAY,CAAC,YAAY,GAAK,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,UAAU,EAAI,EAAyBuG,GAAoBvG,GAAO,CAAC,MAAM,CAAC,KAAKwG,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,IAAI,KAAK,IAAI,eAAe,GAAK,KAAK,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAgB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,aAAa,OAAO,wBAAwB,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKuG,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKuG,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKuG,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKuG,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,YAAY,8CAA8C,CAAC,CAAC,EAA0B,IAAMT,GAAe,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAAoBI,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQC,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAAgDV,GAAM,CAACa,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAAQT,GAAcU,GAAO,OAAOA,GAAQ,UAAU,CAAC,MAAMA,CAAK,EC3Bz4G,IAAMC,GAAkB,CAC3B,SAAU,WACV,MAAO,OACP,OAAQ,OACR,QAAS,OACT,eAAgB,SAChB,WAAY,QAChB,EACaC,GAAkB,CAC3B,GAAGD,GACH,aAAc,EACd,WAAY,0BACZ,MAAO,OACP,OAAQ,kBACR,cAAe,QACnB,EACaE,GAAgB,CACzB,QAAS,CACL,KAAMC,EAAY,YACtB,EACA,aAAc,CACV,KAAMA,EAAY,YACtB,EACA,aAAc,CACV,KAAMA,EAAY,YACtB,CACJ,EACaC,GAAkB,CAC3B,KAAMD,EAAY,OAClB,MAAO,YACP,IAAK,EACL,IAAK,IACL,KAAM,EACN,eAAgB,EACpB,EACaE,GAAe,CACxB,KAAM,CACF,KAAMF,EAAY,QAClB,MAAO,OACP,aAAc,GACd,cAAe,UACf,aAAc,QAClB,EACA,WAAY,CACR,KAAMA,EAAY,OAClB,MAAO,SACP,YAAa,QACb,OAAQ,CAAC,CAAE,KAAAG,CAAM,IAAI,CAACA,CAC1B,EACA,WAAY,CACR,KAAMH,EAAY,KAClB,MAAO,SACP,QAAS,CACL,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,GACJ,EACA,aAAc,CACV,OACA,cACA,QACA,UACA,SACA,YACA,OACA,aACA,OACJ,EACA,OAAQ,CAAC,CAAE,KAAAG,CAAM,IAAI,CAACA,CAC1B,CACJ,EClEO,SAASC,IAAgB,CAG5B,OAFiBC,EAAQ,IAAIC,GAAa,QAAQ,IAAMA,GAAa,OACnE,CAAC,CAAC,CAER,CCdO,SAASC,GAAUC,EAAO,CAC7B,GAAM,CAAE,aAAAC,EAAe,oBAAAC,EAAsB,cAAAC,EAAgB,eAAAC,EAAiB,kBAAAC,EAAoB,iBAAAC,CAAoB,EAAIN,EAU1H,OAToBO,EAAQ,IAAIL,EAAsB,GAAGC,CAAa,MAAMC,CAAc,MAAMC,CAAiB,MAAMC,CAAgB,KAAO,GAAGL,CAAY,KAC3J,CACEA,EACAC,EACAC,EACAC,EACAC,EACAC,CACJ,CAAC,CAEL,CACO,IAAME,GAAsB,CAC/B,aAAc,CACV,MAAO,SACP,KAAMC,EAAY,YAClB,UAAW,sBACX,aAAc,CACV,SACA,mBACJ,EACA,UAAW,CACP,gBACA,iBACA,oBACA,kBACJ,EACA,YAAa,CACT,KACA,KACA,KACA,IACJ,EACA,IAAK,CACT,CACJ,EACO,SAASC,GAAWV,EAAO,CAC9B,GAAM,CAAE,QAAAW,EAAU,eAAAC,EAAiB,WAAAC,EAAa,aAAAC,EAAe,cAAAC,EAAgB,YAAAC,CAAe,EAAIhB,EAUlG,OATqBO,EAAQ,IAAIK,EAAiB,GAAGC,CAAU,MAAMC,CAAY,MAAMC,CAAa,MAAMC,CAAW,KAAOL,EAC1H,CACEA,EACAC,EACAC,EACAC,EACAC,EACAC,CACJ,CAAC,CAEL,CACO,IAAMC,GAAiB,CAC1B,QAAS,CACL,KAAMR,EAAY,YAClB,UAAW,iBACX,aAAc,CACV,UACA,kBACJ,EACA,UAAW,CACP,aACA,eACA,gBACA,aACJ,EACA,YAAa,CACT,IACA,IACA,IACA,GACJ,EACA,IAAK,EACL,MAAO,SACX,CACJ,EC3EgT,IAAIS,IAAa,SAASA,EAAY,CAACA,EAAY,OAAU,MAAMA,EAAY,KAAQ,KAAKA,EAAY,KAAQ,MAAO,GAAGA,KAAcA,GAAY,CAAC,EAAE,EAAE,IAAIC,IAAkB,SAASA,EAAiB,CAACA,EAAiB,KAAQ,eAAeA,EAAiB,OAAU,iBAAiBA,EAAiB,IAAO,cAAcA,EAAiB,IAAO,KAAM,GAAGA,KAAmBA,GAAiB,CAAC,EAAE,EAAE,IAAIC,IAAiB,SAASA,EAAgB,CAACA,EAAgB,KAAQ,OAAOA,EAAgB,IAAO,KAAM,GAAGA,KAAkBA,GAAgB,CAAC,EAAE,EAQv0B,SAASC,GAAQ,CAAC,IAAAC,EAAI,KAAAC,EAAK,WAAAC,EAAW,UAAAC,EAAU,MAAAC,EAAM,QAAAC,EAAQ,aAAAC,EAAa,aAAAC,EAAa,YAAAC,EAAY,UAAAC,EAAU,MAAAC,EAAM,GAAGC,CAAK,EAAE,CAAC,IAAMC,EAASC,GAAc,EAAQC,EAAWb,IAAO,MAAYc,EAAcH,GAAUT,IAAY,OAAO,CAACW,EAAgB,CAACE,EAAaC,CAAY,EAAEC,GAAW,IAAI,GAAK,EAAK,EAAO,CAACC,EAAUC,CAAU,EAAEF,GAAW,IAAI,GAAK,CAACH,CAAa,EAAO,CAACM,EAAUC,CAAU,EAAEC,GAAS,EAAK,EAAQC,EAAaC,GAAUd,CAAK,EAAQe,EAAgBF,IAAe,mBAAmBA,IAAe,MAAM,GAAGxB,IAAM,GAAI,OAAoB2B,EAAKC,GAAa,CAAC,CAAC,EAAG,IAAMC,EAAUC,GAAc9B,CAAG,EAAE,GAAG6B,IAAY,OAAW,OAAoBF,EAAKI,GAAa,CAAC,QAAQ,sBAAsB,CAAC,EAAG,GAAK,CAACC,EAAQC,CAAQ,EAAEJ,EAC5uBK,EAAaD,EAAS,aAAaC,EAAa,IAAI,iBAAiB,GAAG,EAAEA,EAAa,IAAI,MAAM,GAAG,EAAEA,EAAa,IAAI,iBAAiB,GAAG,EAAEA,EAAa,IAAI,cAAc,GAAG,EAAMf,GACjJL,GAC1CC,GAAeI,IAAWe,EAAa,IAAI,WAAW,GAAG,EADzDA,EAAa,IAAI,WAAW,GAAG,EACgCpB,GAAYZ,GAAYgC,EAAa,IAAI,OAAO,GAAG,EAAMjC,IAAO,SAAQiC,EAAa,IAAI,OAAO,GAAG,EAAEA,EAAa,IAAI,WAAWF,CAAO,GAAO5B,GAAO8B,EAAa,IAAI,QAAQ,OAAO,EAAG,IAAMC,EAAY,CAAC,MAAMzB,GAAO,gBAAgB,MAAM,oGAAoG,IAAIuB,EAAS,KAAK,YAAY,IAAI,QAAA5B,EAAQ,aAAAC,EAAa,aAAAC,EAAa,YAAAC,EAAY,UAAAC,CAAS,EAAE,OAAoB2B,EAAM,UAAU,CAAC,eAAe,IAAId,EAAW,EAAI,EAAE,eAAe,IAAIA,EAAW,EAAK,EAAE,cAAcL,EAAa,UAAUG,EAAW,QAAQA,EAAW,MAAM,CAAC,GAAGiB,GAAa,aAAAb,EAAa,UAGlsBE,IAAkBP,GAAWP,GAAU,yBAAyB,QAAQ,OAAO,UAAU,SAAS,QAAQ,EAAE,KAAK,eAAe,SAAS,CAACI,GAA2BW,EAAK,OAAO,CAAC,IAAI,aAAa,KAAK,yBAAyB,CAAC,EAAEX,GAA2BW,EAAK,OAAO,CAAC,IAAI,aAAa,KAAK,wBAAwB,CAAC,EAAeA,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGW,GAAW,WAAWvB,EAAc,sBAAsBwB,GAAgBP,EAAQ7B,EAAUqC,GAAiB,EAAE,OAAO,KAAK,CAAC,cAAc,MAAS,CAAC,CAAC,EAAG5B,EAAqJ,KAA/He,EAAK,SAAS,CAAC,QAASR,EAAiB,OAAP,OAAiB,MAAOA,EAAyCmB,GAA/B,CAAC,GAAGA,GAAW,QAAQ,MAAM,EAAa,GAAGH,CAAW,CAAC,EAAOhB,EAAU,KAAkBQ,EAAKc,GAAW,CAAC,QAAQrB,EAAW,UAAUC,EAAU,MAAMjB,CAAK,CAAC,CAAC,CAAC,CAAC,CAAE,CAACL,GAAQ,YAAY,UAAU2C,GAAoB3C,GAAQ,CAAC,IAAI,CAAC,KAAK4C,EAAY,OAAO,MAAM,OAAO,EAAE,KAAK,CAAC,KAAKA,EAAY,KAAK,MAAM,WAAW,QAAQ,OAAO,OAAO/C,EAAW,CAAC,EAAE,WAAW,CAAC,MAAM,OAAO,KAAK+C,EAAY,QAAQ,aAAa,MAAM,cAAc,KAAK,OAAOhC,EAAM,CAAC,OAAOA,EAAM,OAAO,KAAM,CAAC,EAAE,UAAU,CAAC,MAAM,YAAY,YAAY,4CAA4C,KAAKgC,EAAY,KAAK,QAAQ,OAAO,OAAO9C,EAAgB,EAAE,OAAOc,EAAM,CAAC,OAAOA,EAAM,OAAO,KAAM,CAAC,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKgC,EAAY,QAAQ,aAAa,MAAM,cAAc,OAAO,EAAE,GAAGC,GAAoB,GAAGC,EAAa,CAAC,EAAE,IAAMC,GAAa,CAAC,IAAI,+BAA+B,KAAK,MAAM,WAAW,GAAK,UAAU,iBAAiB,MAAM,EAAI,EAAE/C,GAAQ,aAAa+C,GAAa,SAAShB,GAAciB,EAAU,CAAC,IAAI/C,EAAI,GAAG,CAACA,EAAI,IAAI,IAAI+C,CAAS,CAAE,MAAM,CAAC,IAAMd,EAASe,GAAYD,CAAS,EAAE,MAAM,CAACA,EAAUd,CAAQ,CAAE,CAAC,GAAGjC,EAAI,WAAW,eAAeA,EAAI,WAAW,mBAAmBA,EAAI,WAAW,wBAAwBA,EAAI,WAAW,2BAA2B,CAAC,IAAMiD,EAAajD,EAAI,SAAS,MAAM,CAAC,EAAE,MAAM,GAAG,EACn2D,GAAGiD,EAAa,CAAC,IAAI,QAAQ,CAAC,IAAMjB,EAAQhC,EAAI,aAAa,IAAI,GAAG,EAAQiC,EAASe,GAAYhB,CAAO,EAAE,MAAM,CAACA,EAAQC,CAAQ,CAAE,CACnI,GAAGgB,EAAa,CAAC,IAAI,QAAuC,MAAM,CAAtBA,EAAa,CAAC,EAAiBjD,CAAG,CAAG,CACjF,GAAGA,EAAI,WAAW,WAAW,CAAC,IAAMgC,EAAQhC,EAAI,SAAS,MAAM,CAAC,EAAQiC,EAASe,GAAYhB,CAAO,EAAE,MAAM,CAACA,EAAQC,CAAQ,CAAE,CAAC,CAAC,SAASe,GAAYhB,EAAQ,CAAC,OAAO,IAAI,IAAI,iCAAiCA,CAAO,EAAE,CAAE,CAAC,SAASO,GAAgBP,EAAQkB,EAAIC,EAAO,MAAM,CAC7Q,IAAMC,EAAQD,IAAS,OAAaE,EAAID,EAAQ,+BAA+B,0BAAgCE,EAAIF,EAAQ,OAAO,MAAM,OAAOF,EAAI,CAAC,IAAI,cAAc,MAAM,GAAGG,CAAG,GAAGrB,CAAO,cAAcsB,CAAG,GAAG,IAAI,iBAAiB,MAAM,GAAGD,CAAG,GAAGrB,CAAO,cAAcsB,CAAG,GAAG,IAAI,eAAe,MAAM,GAAGD,CAAG,GAAGrB,CAAO,kBAAkBsB,CAAG,GAAG,QAAQ,MAAM,GAAGD,CAAG,GAAGrB,CAAO,MAAMsB,CAAG,EAAG,CAAC,CAAC,IAAIC,GAChY,SAASf,IAAkB,CAC3B,GAAG,CAACgB,EAAQ,MAAO,GAAM,GAAGD,KAAoB,OAAW,OAAOA,GAAmB,IAAME,EAAQ,SAAS,cAAc,QAAQ,EAAE,OAAGA,EAAQ,YAAYA,EAAQ,WAAW,IAAI,EAC3KF,GAAkBE,EAAQ,UAAU,YAAY,EAAE,QAAQ,iBAAiB,IAAI,EAC/EF,GAAkB,EAAO,CAChC,SAAS3B,IAAc,CAAC,OAAoBD,EAAK,MAAM,CAAC,MAAM,CAAC,GAAG+B,GAAgB,SAAS,QAAQ,EAAE,SAAsB/B,EAAK,MAAM,CAAC,MAAMgC,GAAgB,SAAS,mEAAmE,CAAC,CAAC,CAAC,CAAE,CAAC,SAAS5B,GAAa,CAAC,QAAA6B,CAAO,EAAE,CAAC,OAAoBjC,EAAK,MAAM,CAAC,UAAU,oCAAoC,MAAM,CAAC,GAAGkC,GAAgB,SAAS,QAAQ,EAAE,SAAsBzB,EAAM,MAAM,CAAC,MAAMuB,GAAgB,SAAS,CAAC,UAAUC,CAAO,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASnB,GAAW,CAAC,QAAApC,EAAQ,UAAAgB,EAAU,MAAAjB,CAAK,EAAE,CAAC,OAAoBuB,EAAK,SAAS,CAAC,QAAQtB,EAAQ,aAAa,OAAO,MAAMyD,GAAY,SAAsB1B,EAAM,MAAM,CAAC,OAAO,OAAO,QAAQ,MAAM,QAAQ,YAAY,MAAM,OAAO,SAAS,CAAcT,EAAK,OAAO,CAAC,EAAE,wTAAwT,KAAKN,EAAUjB,EAAM,OAAO,OAAO,UAAU,YAAYiB,GAAUjB,EAAM,EAAK,GAAG,MAAM,CAAC,WAAW,kFAAkF,CAAC,CAAC,EAAeuB,EAAK,OAAO,CAAC,EAAE,sBAAsB,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,IAAMmC,GAAY,CAAC,SAAS,WAAW,IAAI,MAAM,KAAK,MAAM,UAAU,wBAAwB,MAAM,GAAG,OAAO,GAAG,QAAQ,EAAE,OAAO,OAAO,WAAW,cAAc,OAAO,SAAS,EAAQzB,GAAa,CAAC,SAAS,WAAW,MAAM,OAAO,OAAO,MAAM,EAAQsB,GAAgB,CAAC,UAAU,SAAS,SAAS,GAAG,EAAQrB,GAAW,CAAC,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,OAAO,OAAO,MAAM,MAAM,ECvB7iD,IAAMyB,GAAM,CAAC,EAAEC,EAAEC,IAAI,KAAK,IAAI,KAAK,IAAIA,EAAE,CAAC,EAAED,CAAC,ECIrK,SAASE,GAAc,CAACC,EAAMC,CAAK,EAAE,CAAC,OAAOD,GAAO,IAAIA,IAAQC,EAAM,KAAK,EAAG,CAG9E,SAASC,IAAY,CAAC,GAAK,CAACC,EAAcC,CAAgB,EAAEC,GAAS,EAAK,EAAE,OAAAC,GAAgB,IAAI,CAACC,GAAgB,IAAIH,EAAiBI,EAAO,WAAW,gBAAgB,EAAE,OAAO,CAAC,CAAE,EAAE,CAAC,CAAC,EAASL,CAAc,CAK/M,SAASM,GAAWC,EAASC,EAAO,CAAC,YAAAC,EAAY,UAAAC,EAAU,UAAAC,CAAS,EAAEC,EAAW,CAAIF,EAAU,SAASH,IAAWC,GAAQE,EAAU,QAAQ,GAAMG,GAAQJ,EAAY,EAAEG,CAAU,EAAED,EAAU,QAAQ,aAAa,WAAW,EAAE,GAAW,CAACD,EAAU,SAASH,IAAWC,IAAQE,EAAU,QAAQ,GAAKG,GAAQJ,EAAY,EAAEG,CAAU,EAAED,EAAU,QAAQ,gBAAgB,UAAU,EAAG,CAAC,SAASG,GAAOC,EAAiBC,EAAa,CAAC,IAAMN,EAAUO,EAAOF,CAAgB,EAAQN,EAAYS,GAAeR,EAAU,QAAQ,EAAE,CAAC,EAAQS,EAAYC,GAAaX,EAAY,CAAC,EAAE,CAAC,EAAE,CAACO,GAAc,EAAE,CAAC,CAAC,EAAQK,EAAcD,GAAaX,EAAYa,GAAG,EAAEA,CAAC,EAAQX,EAAUM,EAAO,IAAI,EAKxpBM,EAAcH,GAAaC,EAAcC,GAAGA,EAAE,GAAG,OAAO,MAAM,EAG9DE,EAAOJ,GAAaG,EAAcD,GAAGA,IAAI,OAAO,UAAU,SAAS,EAAQG,EAAY,CAAC,GAAGC,GAAiB,QAAQL,EAAc,cAAAE,EAAc,OAAAC,CAAM,EAAE,MAAM,CAAC,UAAAd,EAAU,YAAAS,EAAY,YAAAV,EAAY,YAAAgB,EAAY,UAAAd,CAAS,CAAE,CAAC,SAASgB,GAAe,CAAC,QAAAC,CAAO,EAAE,CAACA,EAAQ,aAAa,cAAc,EAAK,CAAE,CAAC,SAASC,GAAgBC,EAAUC,EAAKC,EAAWC,EAAoBC,EAAaC,EAAYC,EAAa,CAACC,GAAU,IAAI,CAAC,GAAG,CAACP,EAAU,QAAQ,OAIlT,IAAMQ,EAAWC,GAJ+TC,GAAM,CAACR,EAAW,QAAQQ,EAAKT,CAAI,EAItfS,EAAKT,CAAI,EAAE,UAAUG,EAAa,UAASA,EAAa,QAAQ,QAAWD,EAAoBO,EAAKT,CAAI,EAAE,OAAO,EAAEI,EAAY,CAAE,EAA2C,CAAC,UAAUL,EAAU,QAAQ,KAAAC,CAAI,CAAC,EAAQU,EAAWC,GAAOZ,EAAU,QAAQ,IAAI,CAACM,EAAa,EAAED,EAAY,CAAE,CAAC,EAAE,MAAM,IAAI,CAACG,EAAW,EAAEG,EAAW,CAAE,CAAE,EAAE,CAACN,EAAYC,CAAY,CAAC,CAAE,CASpW,SAARO,GAA0B,CAAC,MAAAC,EAAM,IAAAC,EAAI,KAAAd,EAAK,MAAAe,EAAM,aAAAC,EAAa,WAAAC,EAAW,YAAAC,EAAY,WAAAC,EAAW,eAAAC,EAAe,UAAAC,EAAU,aAAAC,EAAa,cAAAC,EAAc,GAAGC,CAAK,EAAE,CACvK,IAAMC,EAAcZ,EAAM,OAAO,OAAO,EAAQa,EAASC,GAAS,MAAMF,CAAa,EAAQG,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAAaC,EAAQC,GAAWP,CAAK,EAAQQ,EAAUhC,EAAK,IAAI,IAAS,CAAC,YAAAiC,EAAY,UAAAC,EAAU,UAAAC,EAAU,eAAAC,EAAe,UAAAC,CAAS,EAAEpB,EAAgB,CAAC,KAAAqB,EAAK,SAAAC,EAAS,MAAAC,CAAK,EAAErB,EAAgB,CAAC,UAAAsB,EAAU,WAAAC,EAAW,aAAAC,EAAa,WAAAC,GAAW,YAAAC,GAAY,WAAAC,EAAU,EAAE9B,EAAkB,CAAC,cAAA+B,EAAc,iBAAAC,EAAiB,QAAAC,GAAQ,UAAAC,GAAU,WAAAC,EAAW,YAAAC,GAAY,QAAAC,GAAQ,SAAAC,GAAS,eAAAC,GAAe,kBAAAC,GAAkB,YAAAC,GAAY,SAAAC,EAAQ,EAAEtC,EAAoB,CAAC,kBAAAuC,GAAkB,UAAAC,GAAU,YAAAC,GAAY,UAAAC,GAAU,UAAAC,GAAU,WAAAC,GAAW,aAAAC,EAAY,EAAE/C,EAE5oBjB,GAAWf,EAAO,MAAS,EAG3BiB,GAAajB,EAAO,MAAS,EAI7BgF,GAAc/E,GAAe,CAAC,EAAQe,GAAoBiE,GAAW,CAACD,GAAc,IAAI/D,GAAa,UAAU,OAAUA,GAAa,QAAQgE,CAAS,CAAE,EAGzJlG,GAAcD,GAAW,EAEzBoG,EAAMrF,GAAO,GAAMsD,CAAS,EAAQgC,EAAItF,GAAO,GAAKsD,CAAS,EAAQiC,GAAenF,GAAegD,EAAU,EAAE,EAAQoC,GAAalF,GAAaiF,GAAe/E,GAAG,IAAIA,CAAC,EAAQiF,GAAUrF,GAAe+C,CAAS,EAAQuC,GAAepF,GAAa,CAACiF,GAAeE,EAAS,EAAE3G,EAAa,EAAQ6G,GAAarF,GAAaoF,GAAelF,GAAG,IAAIA,CAAC,EAAQoF,GAAUxF,GAAea,EAAK,QAAQ,QAAQ,EAAQ4E,GAAKvF,GAAa,CAACsF,GAAUP,EAAM,YAAYE,GAAeG,GAAeJ,EAAI,YAAYE,GAAaG,EAAY,EAAEG,GAAe,sBAAsBA,EAAO,CAAC,CAAC,kBAAkBA,EAAO,CAAC,CAAC,KAAKA,EAAO,CAAC,CAAC,sBAAsBA,EAAO,CAAC,CAAC,uBAAuBA,EAAO,CAAC,CAAC,mBAAmBA,EAAO,CAAC,CAAC,KAAKA,EAAO,CAAC,CAAC,IAAM,EAAQC,GAAY5F,EAAO,IAAI,EAEnvB,CAAC6F,GAASC,EAAW,EAAE7G,GAASyD,EAAS,EAAE,CAAC,EAE3CqD,GAAU,CAAC,gBAAgB1C,EAAS,WAAW,CAAC,EAAQ2C,GAAW,CAAC,EAAKnE,IAAQ,YAAcf,GAAMkF,GAAW,OAAO,OAAOD,GAAU,OAAO,SAAaC,GAAW,MAAM,OAAOD,GAAU,MAAM,SAAazC,IAAOyC,GAAU,eAAe,UAAaxC,IAAY,WAAWwC,GAAU,MAAM,eAAevC,GAAY,CAAC,MAAMwC,GAAW,MAAM,QAAgBzC,IAAY,YAAWwC,GAAU,MAAM,QAAQ,IAAItC,CAAY,OAAO7B,CAAG,QAAQA,EAAI6B,CAAY,MAAMuC,GAAW,MAAM,QAAWtC,KAAa,WAAWqC,GAAU,OAAO,eAAepC,IAAa,CAAC,MAAMqC,GAAW,OAAO,QAAgBtC,KAAa,SAAQqC,GAAU,OAAO,QAAQ,IAAInC,EAAU,OAAOhC,CAAG,QAAQA,EAAIgC,EAAU,MAAMoC,GAAW,OAAO,QAAQ,IAAMC,GAAevD,EAAS,SAAS,OAAawD,GAAe,CAAC,GAAGC,GAAmB,QAAAvD,CAAO,EAAQwD,GAAc,CAAC,GAAGC,GAAkB,IAAAzE,EAAI,WAAWC,EAAM,cAAcf,EAAK,MAAM,SAAS,UAAUA,EAAKmF,GAAe,SAAS,UAAUnF,EAAK,SAASmF,GAAe,eAAe7C,EAAK,GAAGN,CAAS,aAAa,OAAU,wBAAwB,QAAQ,gBAAgBC,EAAY2C,GAAK,OAAU,UAAU3C,EAAY2C,GAAK,OAAU,aAAAtD,CAAY,EAAQkE,GAAa,CAAE,uBAAwB,UAAU,EAAKnE,IAAWmE,GAAa,YAAY,EAAEnE,GAAW,IAAMoE,GAAS,CAAC,EAAgG,GAA3F1E,IAAQ,YAAW0E,GAAS,WAAW,EAAE,QAAQA,GAAS,sBAAsB,EAAE,SAAY,CAAC7D,EAAS,CAAC,IAAM8D,EAAUxG,EAAO,CAAC,CAAC,EAAEY,GAAgBgF,GAAY9C,EAAU/B,GAAWC,GAAoBC,GAAawF,GAAY,IAAI,CAAC,GAAG,CAAC1F,GAAW,QAAQ,OAAO,GAAK,CAAC,aAAA2F,EAAa,gBAAAC,GAAgB,aAAAC,EAAY,EAAE7F,GAAW,QAAc8F,GAAQ7B,GAAc,IAAI,EAAE,GAAG,CAAC0B,GAAc,CAACC,GAAgB,OAAO,GAAGD,EAAaC,GAAgB,CAACtH,GAAWwH,GAAQ,EAAE3B,EAAMhC,CAAc,EAAE7D,GAAWwH,GAAQD,GAAazB,EAAIjC,CAAc,EAAE,QAAQ4D,GAAE,EAAEA,GAAEN,EAAU,QAAQ,OAAOM,KAAI,CAAC,GAAK,CAAC,QAAAnG,GAAQ,MAAAuE,GAAM,IAAAC,EAAG,EAAEqB,EAAU,QAAQM,EAAC,EAAK3B,GAAI0B,IAAS3B,GAAM2B,GAAQF,GAAiBhG,GAAQ,aAAa,cAAc,EAAI,EAAQA,GAAQ,aAAa,cAAc,EAAK,CAAG,CAAC,MAAMtB,GAAW,EAAE,EAAE6F,EAAMhC,CAAc,EAAE7D,GAAW,EAAE,EAAE8F,EAAIjC,CAAc,EAAEsD,EAAU,QAAQ,QAAQ9F,EAAc,EAOvoE,IAAIqG,GAAY,KAAK,KAAKL,EAAaC,EAAe,EAAM,MAAMI,EAAW,IAC7FA,GAAYvE,EAAS,MAAIuE,GAAYvE,GAAYuE,KAAclB,IAASC,GAAYiB,EAAW,EAAG,EAAE,CAAClB,EAAQ,CAAC,EAAEY,GAAY,IAAI,CAAKb,GAAY,UAAeY,EAAU,QAAQ,MAAM,KAAKZ,GAAY,QAAQ,QAAQ,EAAE,IAAIjF,GAAiBG,EAAK,CAAC,QAAAH,EAAQ,MAAMA,EAAQ,WAAW,IAAIA,EAAQ,WAAWA,EAAQ,WAAW,EAAE,CAAC,QAAAA,EAAQ,MAAMA,EAAQ,UAAU,IAAIA,EAAQ,UAAUA,EAAQ,YAAY,CAAG,EAAE,EAAE,CAAC,CAAC,CAAC,CAAE,CAInZ+B,IAAUtB,GAAU,IAAI,CAACkE,GAAU,IAAItC,CAAS,CAAE,EAAE,CAACA,CAAS,CAAC,EAAE5B,GAAU,IAAI,CAACgE,GAAe,IAAInC,EAAU,EAAE,CAAE,EAAE,CAACA,CAAS,CAAC,EAAE7B,GAAU,IAAI,CAACqE,GAAU,IAAI3E,EAAK,QAAQ,QAAQ,CAAE,EAAE,CAACA,CAAI,CAAC,GAmC/L,IAAMkG,GAAgBC,GAAiB,EAAQC,GAAKC,GAAU,CAAClG,GAAa,QAAQkG,EAAS,IAAMC,EAAQtG,EAAK,CAAC,KAAKqG,CAAQ,EAAE,CAAC,IAAIA,CAAQ,EAAEvB,GAAY,QAAQ,SAAS,CAAC,GAAGwB,EAAQ,SAASJ,GAAgB,OAAO,QAAQ,CAAC,CAAE,EAAQK,GAAS,CAACC,EAAKC,IAAa,CAAC,GAAG,CAACxG,GAAW,QAAQ,OAAO,GAAK,CAAC,aAAA6F,EAAY,EAAE7F,GAAW,QAAcyG,GAASZ,IAAcf,GAAS,GAAGqB,GAAKI,EAAKE,GAASD,EAAWC,EAAQ,CAAE,EAAQC,GAAUC,GAAO,IAAI,CAAC,GAAG,CAAC3G,GAAW,QAAQ,OAAO,GAAK,CAAC,gBAAA4F,EAAgB,aAAAC,EAAY,EAAE7F,GAAW,QAAc8F,GAAQ7B,GAAc,IAAI,EAAQ2C,GAAWf,GAAaf,GAAe+B,GAAYC,GAAM,EAAEhC,GAAS,EAAE,KAAK,MAAMgB,GAAQc,EAAU,CAAC,EAAMJ,GAAW,EAAKnE,IAAOC,IAAW,SAASA,IAAW,QAAQqE,GAAO,IAAEH,GAAW,IACvvBF,GAASO,GAAYF,EAAMH,EAAU,CAAE,EAErC,GAAG/E,IAAW,EAAG,OAAoBsF,EAAKC,GAAY,CAAC,CAAC,EAAG,IAAMC,GAAK,CAAC,EAAQC,GAAc,CAAC,EAAE,GAAGpC,GAAS,GAAG/B,GAAkB,CAACD,EAAc,CAAC,QAAQiD,EAAE,EAAEA,EAAEjB,GAASiB,IAAI,CAAC,IAAMoB,EAAWxF,GAAU,CAACoE,GAAG,GAAMkB,GAAK,KAAkBF,EAAKK,GAAI,CAAC,SAAS,CAAC,GAAGC,GAAS,MAAMrE,GAAQ,OAAOA,GAAQ,gBAAgBK,EAAQ,EAAE,YAAY3D,GAAiB,WAAWyH,EAAW,gBAAgB5D,GAAkB,QAAQC,GAAY,QAAQ,IAAIpF,GAAgB,IAAIkI,GAASP,CAAC,CAAC,EAAE,cAAc9B,GAAc,WAAWjE,GAAW,MAAM8E,GAAS,MAAMiB,EAAE,IAAI3C,GAAQ,QAAQD,GAAY,KAAKpD,CAAI,CAAC,CAAC,CAAE,CAAI0D,KAAUyD,GAAc,eAAeA,GAAc,qBAAqB,QAAQzD,EAAQ,MAAO,CAAC,OAAoB6D,EAAM,UAAU,CAAC,MAAMnC,GAAe,GAAGI,GAAa,SAAS,CAAcwB,EAAKQ,EAAO,GAAG,CAAC,IAAI1C,GAAY,MAAMQ,GAAc,UAAU,mBAAmB,sBAAsBvC,EAAc,cAAc,QAAQ,YAAY,SAAS,QAAQ,IAAI5C,GAAa,QAAQ,OAAU,SAASwB,GAAS,IAAIF,EAAc,CAACgG,EAAMC,IAAqBV,EAAK,KAAK,CAAC,MAAM/B,GAAU,GAAGQ,GAAS,aAAa,GAAGiC,EAAM,CAAC,OAAOhG,CAAQ,GAAG,SAAsBiG,GAAaF,EAAM,CAAC,GAAGA,EAAM,MAAM,MAAM,CAAC,GAAGA,EAAM,OAAO,MAAM,GAAGvC,EAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqC,EAAM,WAAW,CAAC,MAAM,CAAC,GAAGK,GAAe,QAAQ3D,GAAa,QAAQ,OAAO,cAAcjE,EAAK,MAAM,QAAQ,EAAE,aAAa,+BAA+B,UAAU,4BAA4B,2BAA2B2D,GAAkB,SAAS,CAAcqD,EAAKQ,EAAO,OAAO,CAAC,IAAIpD,EAAM,UAAU,KAAK,SAAS,MAAM,CAAC,GAAGA,EAAM,YAAY,gBAAgBN,GAAU,MAAMF,GAAU,OAAOA,GAAU,aAAaC,GAAY,OAAQ7D,EAAQ,EAAH,GAAK,QAAQ2D,GAAkB,QAAQ,MAAM,EAAE,QAAQgD,GAAU,EAAE,EAAE,aAAa,WAAW,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBK,EAAK,MAAM,CAAC,SAAS,QAAQ,IAAI,GAAG,MAAMpD,GAAU,OAAOA,GAAU,IAAIG,IAAW,qEAAqE,CAAC,CAAC,CAAC,EAAeiD,EAAKQ,EAAO,OAAO,CAAC,IAAInD,EAAI,UAAU,KAAK,SAAS,MAAM,CAAC,GAAGA,EAAI,YAAY,gBAAgBP,GAAU,MAAMF,GAAU,OAAOA,GAAU,aAAaC,GAAY,OAAQ7D,EAAQ,EAAH,GAAK,QAAQ2D,GAAkB,QAAQ,MAAM,EAAE,QAAQgD,GAAU,CAAC,EAAE,aAAa,OAAO,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBK,EAAK,MAAM,CAAC,SAAS,QAAQ,IAAI,GAAG,MAAMpD,GAAU,OAAOA,GAAU,IAAII,IAAY,qEAAqE,CAAC,CAAC,CAAC,EAAEkD,GAAK,OAAO,EAAeF,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGa,GAAmB,KAAK7H,EAAK,MAAMkD,GAAU,IAAKlD,EAAW,QAAN,MAAc,UAAUA,EAAK,mBAAmB,mBAAmB,cAAcA,EAAK,MAAM,SAAS,OAAOA,EAAKkD,GAAU,QAAQ,aAAaC,EAAW,gBAAgBI,GAAe,GAAG4D,EAAa,EAAE,SAASD,EAAI,CAAC,EAAE,IAAI,CAAC,CAAC,EAAeF,EAAKc,GAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAyBlH,GAAS,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,eAAe,CAAC,cAAc,GAAM,iBAAiB,EAAK,EAAE,aAAa,CAAC,UAAU,OAAO,YAAY,EAAE,aAAa,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,CAAC,EAAE,aAAa,CAAC,EAAyBmH,GAAoBnH,GAAS,CAAC,MAAM,CAAC,KAAKoH,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,KAAK,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,GAAK,EAAK,EAAE,YAAY,CAAC,uBAAuB,oBAAoB,EAAE,wBAAwB,EAAI,EAAE,MAAM,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,KAAK,CAAC,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,MAAM,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,GAAGC,GAAe,aAAa,CAAC,KAAKD,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,OAAO,UAAU,SAAS,EAAE,aAAa,CAAC,OAAO,UAAU,SAAS,EAAE,aAAa,MAAM,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,EAAE,OAAOxG,GAAOA,EAAM,YAAY,SAAS,EAAE,aAAa,CAAC,KAAKwG,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,eAAe,GAAK,OAAOxG,GAAOA,EAAM,YAAY,SAAS,EAAE,WAAW,CAAC,KAAKwG,EAAY,KAAK,MAAM,SAAS,QAAQ,CAAC,OAAO,UAAU,MAAM,EAAE,aAAa,CAAC,OAAO,UAAU,MAAM,EAAE,aAAa,MAAM,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,EAAE,OAAOxG,GAAOA,EAAM,aAAa,SAAS,EAAE,WAAW,CAAC,KAAKwG,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,eAAe,GAAK,OAAOxG,GAAOA,EAAM,aAAa,MAAM,CAAC,CAAC,EAAE,WAAW,CAAC,KAAKwG,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,KAAK,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,EAAE,SAAS,CAAC,KAAKA,EAAY,KAAK,MAAM,OAAO,QAAQ,CAAC,QAAQ,SAAS,KAAK,EAAE,aAAa,CAAC,OAAO,SAAS,OAAO,EAAE,aAAa,SAAS,OAAOxG,GAAO,CAACA,EAAM,IAAI,EAAE,MAAM,CAAC,KAAKwG,EAAY,QAAQ,MAAM,QAAQ,aAAa,GAAM,OAAOxG,GAAO,CAACA,EAAM,IAAI,CAAC,CAAC,EAAE,WAAW,CAAC,KAAKwG,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,EAAK,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOxG,GAAO,CAACA,EAAM,WAAW,EAAE,UAAU,CAAC,KAAKwG,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOxG,GAAO,CAACA,EAAM,WAAW,EAAE,UAAU,CAAC,KAAKwG,EAAY,OAAO,MAAM,UAAU,OAAOxG,GAAO,CAACA,EAAM,YAAY,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,CAAC,EAAE,eAAe,CAAC,KAAKwG,EAAY,WAAW,MAAM,aAAa,OAAOxG,GAAO,CAACA,EAAM,WAAW,CAAC,CAAC,EAAE,eAAe,CAAC,KAAKwG,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,cAAc,CAAC,KAAKA,EAAY,QAAQ,MAAM,aAAa,aAAa,EAAK,EAAE,iBAAiB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,GAAM,OAAOxG,GAAOA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAKwG,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOxG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,UAAU,CAAC,KAAKwG,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOxG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAKwG,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOxG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAKwG,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOxG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAKwG,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,OAAOxG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,eAAe,CAAC,KAAKwG,EAAY,MAAM,MAAM,WAAW,aAAa,kBAAkB,OAAOxG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,WAAW,CAAC,KAAKwG,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAOxG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAKwG,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,GAAG,KAAK,GAAG,eAAe,GAAK,OAAOxG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,kBAAkB,CAAC,KAAKwG,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,OAAOxG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAKwG,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,KAAK,EAAE,OAAOxG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKwG,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,kBAAkB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,MAAM,MAAM,OAAO,aAAa,kBAAkB,OAAOxG,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAKwG,EAAY,MAAM,MAAM,WAAW,OAAOxG,GAAO,CAACA,EAAM,iBAAiB,EAAE,WAAW,CAAC,KAAKwG,EAAY,MAAM,MAAM,OAAO,OAAOxG,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAKwG,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,GAAG,OAAOxG,GAAO,CAACA,EAAM,iBAAiB,EAAE,YAAY,CAAC,KAAKwG,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAOxG,GAAO,CAACA,EAAM,iBAAiB,EAAE,aAAa,CAAC,KAAKwG,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOxG,GAAO,CAACA,EAAM,iBAAiB,CAAC,CAAC,EAAE,UAAU,CAAC,KAAKwG,EAAY,OAAO,MAAM,aAAa,YAAY,WAAW,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,CAAC,CAAC,CAAC,EAAE,SAASX,GAAI,CAAC,cAAAnD,EAAc,WAAAjE,EAAW,WAAAmH,EAAW,gBAAAc,EAAgB,QAAQC,EAAkB,MAAAC,EAAM,MAAAV,EAAM,SAAAJ,EAAS,YAAA5H,EAAY,IAAAoB,EAAI,QAAAgB,EAAQ,KAAA9B,EAAK,GAAGwB,CAAK,EAAE,CAAC,IAAM6G,EAAQhJ,GAAa6E,EAAc3E,GAAG,CAAC,GAAG,CAACU,EAAW,SAAS,aAAc,OAAOyH,IAAQ,EAAEQ,EAAgBC,EAAmB,IAAMtB,EAAW5G,EAAW,SAAS,aAAamI,EAAYE,EAAUzB,EAAWa,EAAYa,EAAUD,EAAUzB,EAAsF,OAA1DtH,GAAG+I,IAAYZ,EAAMU,EAAM,EAAE7I,EAAEgJ,EAAUb,IAAQU,EAAM,GAAqBF,EAAgBC,CAAkB,CAAC,EAAQK,EAAc1H,EAAI,EAAM2H,EAAI,CAACzI,GAAM0H,EAAM,EAAEc,EAAc1G,EAAY4G,EAAO,CAAC1I,GAAM0H,IAAQU,EAAM,EAAEI,EAAc1G,EAAY6G,EAAM3I,GAAM0H,IAAQU,EAAM,EAAEI,EAAc1G,EAAY8G,EAAK5I,GAAM0H,EAAM,EAAEc,EAAc1G,EAAQ,OAAoBkF,EAAK,SAAS,CAAC,aAAa,kBAAkBU,EAAM,CAAC,GAAG,KAAK,SAAS,GAAGlG,EAAM,MAAM,CAAC,GAAG9B,EAAY,QAAQ,GAAG+I,CAAG,MAAME,CAAK,MAAMD,CAAM,MAAME,CAAI,IAAI,EAAE,SAAsB5B,EAAKQ,EAAO,IAAI,CAAC,MAAM,CAAC,GAAGF,EAAS,QAAAe,CAAO,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASpB,IAAa,CAAC,OAAoBM,EAAM,UAAU,CAAC,MAAMsB,GAAkB,SAAS,CAAc7B,EAAK,MAAM,CAAC,MAAM8B,GAAY,SAAS,QAAG,CAAC,EAAe9B,EAAK,IAAI,CAAC,MAAM+B,GAAY,SAAS,oBAAoB,CAAC,EAAe/B,EAAK,IAAI,CAAC,MAAMgC,GAAe,SAAS,4CAA4C,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASlB,IAAa,CAAC,OAAoBd,EAAK,MAAM,CAAC,wBAAwB,CAAC,OAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,sBAgB9mT,CAAC,CAAC,CAAE,CAAa,IAAM6B,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQC,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAE9e,IAAMC,GAAmB,CAAC,QAAQ,OAAO,SAAS,SAAS,MAAM,OAAO,OAAO,OAAO,SAAS,UAAU,EAAQC,GAAkB,CAAC,QAAQ,EAAE,OAAO,EAAE,UAAU,OAAO,SAAS,WAAW,QAAQ,OAAO,KAAK,WAAW,MAAM,OAAO,OAAO,MAAM,EAAQC,GAAiB,CAAC,OAAO,OAAO,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,WAAW,cAAc,OAAO,UAAU,OAAO,EAAE,QAAQ,CAAC,EAAQC,GAAe,CAAC,QAAQ,OAAO,eAAe,gBAAgB,WAAW,SAAS,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,cAAc,OAAO,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAC,EAE1lBC,GAAmB,CAAC,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,SAAS,WAAW,cAAc,MAAM,EAAQC,GAAS,CAAC,aAAa,MAAM,WAAW,QAAQ,OAAO,UAAU,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,QAAQ,CAAC,ECzH4tB,IAAMC,GAAcC,EAASC,EAAQ,EAAQC,GAAcF,EAASG,EAAQ,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,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,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,OAAO,YAAY,IAAI,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,EAAMtB,IAAesB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAUwB,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,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,QAAArC,EAAQ,GAAGsC,CAAS,EAAEtB,GAASI,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAhD,CAAQ,EAAEiD,GAAgB,CAAC,WAAAtD,GAAW,eAAe,YAAY,IAAIkC,EAAW,QAAA3B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQqD,EAAiB3B,GAAuBD,EAAMtB,CAAQ,EAA0GmD,EAAkBC,EAAGxD,GAAkB,GAAnH,CAAa0C,GAAuBA,GAAuBA,EAAS,CAAuE,EAAE,OAAoBzB,EAAKwC,GAAY,CAAC,GAAGd,GAAUT,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGyB,EAAU,GAAGI,EAAgB,UAAUQ,EAAGD,EAAkB,gBAAgBb,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAGvC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,KAAK,EAAE,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAE2C,EAAYI,CAAc,EAAE,SAAsBhC,EAAKyC,EAA0B,CAAC,SAAsBzC,EAAK0C,GAA8B,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBL,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKnB,GAAS,CAAC,MAAM,SAAS,UAAU,GAAG,YAAY,CAAC,UAAU,uEAAuE,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,KAAK,GAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,EAAE,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,EAAE,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,GAAM,cAAc,EAAK,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAM,EAAE,MAAM,CAAc8D,EAAMzC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcM,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAK4C,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,6BAA6B,OAAO,WAAW,iBAAiBP,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,mrFAAmrF,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAerC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,mJAAmJ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,MAAM,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAMzC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,yBAAyB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcM,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBT,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,kBAAkB,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,SAAS,iBAAiB,4BAA4B,sBAAsB,SAAS,uBAAuB,SAAS,iBAAiB,QAAQ,qBAAqB,SAAS,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,EAAerC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,2BAA2B,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,uEAAuE,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,iGAAiG,EAAE,SAAsBF,EAAK+C,GAAK,CAAC,KAAK,+BAA+B,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,aAAa,GAAM,SAAsB/C,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,4BAA4B,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,6BAA6B,MAAM,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAKyC,EAA0B,CAAC,SAAsBzC,EAAK0C,GAA8B,CAAC,UAAU,2BAA2B,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBL,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKrB,GAAS,CAAC,MAAM,qBAAqB,OAAO,OAAO,WAAW,QAAQ,cAAc,cAAc,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcM,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAK4C,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,6BAA6B,OAAO,WAAW,iBAAiBP,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,mrFAAmrF,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAerC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,mRAA8Q,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,MAAM,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,yBAAyB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcM,EAAMzC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBT,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,kBAAkB,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,SAAS,iBAAiB,4BAA4B,sBAAsB,SAAS,uBAAuB,SAAS,iBAAiB,QAAQ,qBAAqB,SAAS,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,EAAerC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,2BAA2B,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,uEAAuE,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,iGAAiG,EAAE,SAAsBF,EAAK+C,GAAK,CAAC,KAAK,+BAA+B,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,aAAa,GAAM,SAAsB/C,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,4BAA4B,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,6BAA6B,MAAM,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAKyC,EAA0B,CAAC,SAAsBzC,EAAK0C,GAA8B,CAAC,UAAU,2BAA2B,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBL,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKrB,GAAS,CAAC,MAAM,qBAAqB,OAAO,OAAO,WAAW,QAAQ,cAAc,IAAI,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAsBF,EAAK+C,GAAK,CAAC,KAAK,0BAA0B,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,aAAa,GAAM,SAAsB/C,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcM,EAAMzC,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAK4C,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,6BAA6B,OAAO,WAAW,iBAAiBP,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,mrFAAmrF,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAerC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,mMAA8L,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,MAAM,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAMzC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,yBAAyB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcM,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAsBrC,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,8BAA8B,iBAAiBT,EAAiB,SAAS,WAAW,CAAC,CAAC,CAAC,EAAerC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,2BAA2B,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,uEAAuE,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,iGAAiG,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,mBAAmB,OAAO,MAAM,CAAC,4BAA4B,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,6BAA6B,MAAM,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAWG,EAAS,CAAC,SAAsBwC,EAAMzC,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,CAAcF,EAAK+C,GAAK,CAAC,KAAK,0BAA0B,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,aAAa,GAAM,SAAsB/C,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAerC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAsBF,EAAK+C,GAAK,CAAC,KAAK,+BAA+B,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,aAAa,GAAM,SAAsB/C,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,uBAAuB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAMzC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcM,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAK4C,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,6BAA6B,OAAO,WAAW,iBAAiBP,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,mrFAAmrF,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAerC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,8QAA8Q,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,MAAM,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,yBAAyB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcM,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBT,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,kBAAkB,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,SAAS,iBAAiB,4BAA4B,sBAAsB,SAAS,uBAAuB,SAAS,iBAAiB,QAAQ,qBAAqB,SAAS,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,EAAerC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,2BAA2B,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,uEAAuE,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,iGAAiG,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,4BAA4B,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,6BAA6B,MAAM,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAKyC,EAA0B,CAAC,SAAsBzC,EAAK0C,GAA8B,CAAC,UAAU,2BAA2B,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBL,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKrB,GAAS,CAAC,MAAM,qBAAqB,OAAO,OAAO,WAAW,QAAQ,cAAc,IAAI,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAsBF,EAAK+C,GAAK,CAAC,KAAK,2BAA2B,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,aAAa,GAAM,SAAsB/C,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAMzC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcM,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAK4C,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,6BAA6B,OAAO,WAAW,iBAAiBP,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,mrFAAmrF,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAerC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,8SAA8S,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,MAAM,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAMzC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,yBAAyB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcM,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBT,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,kBAAkB,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,SAAS,iBAAiB,4BAA4B,sBAAsB,SAAS,uBAAuB,SAAS,iBAAiB,QAAQ,qBAAqB,SAAS,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,CAAC,CAAC,EAAerC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,2BAA2B,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,uEAAuE,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,iGAAiG,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,4BAA4B,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,6BAA6B,MAAM,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAMzC,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAKyC,EAA0B,CAAC,SAAsBzC,EAAK0C,GAA8B,CAAC,UAAU,2BAA2B,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBL,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKrB,GAAS,CAAC,MAAM,qBAAqB,OAAO,OAAO,WAAW,QAAQ,cAAc,IAAI,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAsBF,EAAK+C,GAAK,CAAC,KAAK,8BAA8B,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,aAAa,GAAM,SAAsB/C,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,MAAM,GAAM,KAAK,GAAK,SAAS,QAAQ,EAAE,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGpD,GAAqB,CAAC,UAAU,CAAC,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,SAAS,CAAC,EAAE,UAAU,CAAC,YAAY,CAAC,UAAU,uEAAuE,aAAa,EAAE,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,EAAE,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,GAAM,cAAc,EAAI,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,SAAS,CAAC,CAAC,EAAE2C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQgB,GAAI,CAAC,kFAAkF,gFAAgF,wRAAwR,6HAA6H,uRAAuR,2YAA2Y,wPAAwP,6SAA6S,iMAAiM,0ZAA0Z,4YAA4Y,6MAA6M,oWAAoW,6YAA6Y,4RAA4R,yWAAyW,oOAAoO,yVAAyV,sWAAsW,6RAA6R,kUAAkU,8LAA8L,4QAA4Q,gnLAAgnL,kFAAkF,gJAAgJ,kFAAkF,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,+bAA+b,EASn7yDC,GAAgBC,GAAQvC,GAAUqC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,eAAeA,GAAgB,aAAa,CAAC,OAAO,MAAM,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,MAAM,QAAQ,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,sBAAsB,OAAO,SAAS,MAAM,SAAS,IAAI,0JAA0J,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGxE,GAAc,GAAGG,GAAc,GAAG2E,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTx3D,IAAMC,GAAcC,EAASC,EAAQ,EAAQC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,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,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,MAAAC,EAAM,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUJ,GAAOI,EAAM,SAAS,GAAUC,GAAuB,CAACD,EAAMtB,IAAesB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAUwB,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,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,QAAArC,EAAQ,UAAAsC,EAAU,GAAGC,CAAS,EAAExB,GAASK,CAAK,EAAO,CAAC,YAAAoB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAjD,CAAQ,EAAEkD,GAAgB,CAAC,eAAe,YAAY,gBAAAvD,GAAgB,IAAIkC,EAAW,QAAA3B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQsD,EAAiB5B,GAAuBD,EAAMtB,CAAQ,EAAO,CAAC,sBAAAoD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAYH,EAAsB,SAASI,KAAO,CAAoC,GAAnCR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAKR,GAAqB,MAAMA,EAAU,GAAGgB,EAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAuCC,EAAkBC,EAAG9D,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBiB,EAAK8C,GAAY,CAAC,GAAGpB,GAAUT,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsByD,EAAM7C,EAAO,IAAI,CAAC,GAAG0B,EAAU,GAAGI,EAAgB,UAAUa,EAAGD,EAAkB,iBAAiBnB,EAAUK,CAAU,EAAE,mBAAmB,YAAY,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,MAAMI,EAAY,IAAI1B,EAAW,MAAM,CAAC,WAAW,2OAA2O,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,OAAO,GAAGQ,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,UAAU,4kBAA4kB,CAAC,EAAE,GAAGvC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,CAAC,EAAE4C,EAAYI,CAAc,EAAE,SAAS,CAAcjC,EAAKgD,EAA0B,CAAC,SAAsBhD,EAAKiD,GAA8B,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBX,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtC,EAAKnB,GAAS,CAAC,MAAM,qBAAqB,OAAO,OAAO,WAAW,QAAQ,cAAc,aAAa,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemB,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,8CAA8C,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,oBAAoB,EAAE,iBAAiBoC,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGrD,GAAqB,CAAC,kBAAkB,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,8CAA8C,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,gBAAgB,CAAC,CAAC,EAAE2B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQkB,GAAI,CAAC,kFAAkF,gFAAgF,ySAAyS,oHAAoH,iHAAiH,8WAA8W,EASh2NC,GAAgBC,GAAQ1C,GAAUwC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,YAAYA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,KAAK,EAAEG,GAAoBH,GAAgB,CAAC,UAAU,CAAC,MAAM,QAAQ,KAAKI,EAAY,YAAY,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,SAAS,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,SAAS,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGzE,EAAa,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTnQ,IAAM+E,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,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,EAAmB,EAAQC,EAAWN,GAAmCG,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAAwB,CAAC,cAAc,YAAY,aAAa,YAAY,MAAM,YAAY,KAAK,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,cAAAC,EAAc,OAAAC,EAAO,UAAAC,EAAU,SAAAC,EAAS,GAAAC,EAAG,SAAAC,EAAS,IAAAC,EAAI,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAMC,EAAMC,EAAMC,EAAuCC,EAAM,MAAM,CAAC,GAAGP,EAAM,WAAWC,EAAKN,GAA4CK,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,CAAC,IAAI,sEAAsE,EAAE,UAAUH,GAA6BE,EAAM,UAAU,WAAWE,EAAML,GAA4CG,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,iBAAiB,WAAWC,EAAMZ,GAAsCS,EAAM,aAAa,MAAMG,IAAQ,OAAOA,EAAM,2LAA2L,WAAWC,EAAMV,GAA+CM,EAAM,aAAa,MAAMI,IAAQ,OAAOA,EAAM,CAAC,IAAI,sEAAsE,EAAE,WAAWC,EAAMb,GAA2DQ,EAAM,aAAa,MAAMK,IAAQ,OAAOA,EAAM,GAAK,SAASE,GAAOD,EAAuCjB,GAAwBW,EAAM,OAAO,KAAK,MAAMM,IAAyC,OAAOA,EAAuCN,EAAM,WAAW,MAAMO,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACR,EAAM7B,IAAe6B,EAAM,iBAAwB7B,EAAS,KAAK,GAAG,EAAE6B,EAAM,iBAAwB7B,EAAS,KAAK,GAAG,EAAUsC,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAA6BC,GAAW,SAASb,EAAMc,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA/C,EAAQ,UAAAgD,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAErC,GAASU,CAAK,EAAO,CAAC,YAAA4B,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAhE,CAAQ,EAAEiE,GAAgB,CAAC,WAAAtE,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQqE,EAAiB7B,GAAuBR,EAAM7B,CAAQ,EAAO,CAAC,sBAAAmE,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAYH,EAAsB,SAASI,KAAO,CAAoC,GAAnCR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAKb,GAAqB,MAAMA,EAAU,GAAGqB,EAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQC,EAAYL,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,GAAYN,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAmFU,GAAkBC,EAAG/E,GAAkB,GAA5F,CAAaoD,GAAuBA,EAAS,CAAuE,EAAQ4B,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQ,GAAC,YAAY,WAAW,EAAE,SAASrB,CAAW,EAAmCsB,GAAavE,IAAW,CAAC,YAAY,WAAW,EAAE,SAASiD,CAAW,EAAS,GAAYjD,GAAcwE,GAAsBC,GAAM,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBlE,EAAKmE,GAAY,CAAC,GAAGnC,GAA4C+B,GAAgB,SAAsB/D,EAAKqB,GAAS,CAAC,QAAQtC,EAAS,QAAQ,GAAM,SAAsBiB,EAAKR,GAAW,CAAC,MAAMN,GAAY,SAAsBc,EAAKsB,EAAO,IAAI,CAAC,GAAGiB,EAAU,GAAGI,EAAgB,UAAUe,EAAGD,GAAkB,gBAAgB1B,EAAUU,CAAU,EAAE,mBAAmB,QAAQ,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,MAAMI,EAAY,IAAI3B,GAA6BiC,EAAK,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAG7B,CAAK,EAAE,GAAGjD,GAAqB,CAAC,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,aAAa,CAAC,EAAE2D,EAAYI,CAAc,EAAE,SAAsB5C,EAAKsB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,iBAAiB,GAAK,iBAAiB2B,EAAiB,SAAS,YAAY,MAAMM,EAAY,GAAG1E,GAAqB,CAAC,UAAU,CAAC,MAAM2E,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAsBwB,EAAM9C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAcmB,EAAM9C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAcjD,EAAKqE,EAAS,CAAC,sBAAsB,GAAK,SAAsBrE,EAAWuB,EAAS,CAAC,SAAsBvB,EAAKsB,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,yCAAyC,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKf,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAelC,EAAKsB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,GAAGpE,GAAqB,CAAC,UAAU,CAAC,kBAAkBM,EAAkB,CAAC,EAAEqD,EAAYI,CAAc,EAAE,SAAsB5C,EAAKsE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAAwFN,GAAkB,GAAI,GAAG,MAAmEA,GAAkB,QAAS,KAAK,GAAG,oBAAoB,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,kBAAkB,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,MAAM,OAAO,GAAG3E,GAAkB+C,CAAS,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiBY,EAAiB,SAAS,YAAY,MAAM,CAAC,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,GAAG,CAAC,EAAE,GAAGpE,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ0F,GAAwFN,GAAkB,GAAI,GAAG,MAAmEA,GAAkB,QAAS,KAAK,GAAG,OAAO,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,kBAAkB,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,MAAM,OAAO,GAAG3E,GAAkBgD,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQiC,GAAwFN,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,kBAAkB,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,MAAM,OAAO,GAAG3E,GAAkBgD,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQiC,GAAwFN,GAAkB,GAAI,GAAG,MAAmEA,GAAkB,QAAS,KAAK,GAAG,oBAAoB,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,kBAAkB,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,MAAM,OAAO,GAAG3E,GAAkB+C,CAAS,CAAC,CAAC,CAAC,EAAEG,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiB,EAAY,GAAgB7D,EAAKsB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,WAAW,0NAA0N,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,UAAU,CAAC,WAAW,wKAAwK,gBAAgB,oEAAoE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,EAAE,SAASa,GAAa1B,CAAS,GAAgBpC,EAAKqE,EAAS,CAAC,sBAAsB,GAAK,SAAsBrE,EAAWuB,EAAS,CAAC,SAAsBvB,EAAKsB,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,0LAA0L,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKd,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQqC,GAAI,CAAC,kFAAkF,kFAAkF,sWAAsW,sSAAsS,kRAAkR,kRAAkR,uKAAuK,0VAA0V,8FAA8F,uRAAuR,oKAAoK,0gDAA0gD,+EAA+E,8GAA8G,8JAA8J,6GAA6G,4FAA4F,gIAAgI,mbAAmb,iEAAiE,iIAAiI,6EAA6E,0GAA0G,ubAAub,+EAA+E,4FAA4F,mbAAmb,GAAeA,GAAI,GAAgBA,EAAG,EAS7vhBC,GAAgBC,GAAQlD,GAAUgD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,qBAAqBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,QAAQ,OAAO,cAAc,YAAY,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,MAAM,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,aAAa,iBAAiB,gBAAgB,GAAM,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,2LAA2L,gBAAgB,GAAM,MAAM,SAAS,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,iBAAiB,KAAKA,EAAY,OAAO,EAAE,UAAU,CAAC,wBAAwB,2GAA2G,MAAM,aAAa,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,wBAAwB,4GAA4G,MAAM,YAAY,KAAKA,EAAY,eAAe,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,CAAC,CAAC,EAAE,GAAGM,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTz+E,IAAMC,GAAsBC,EAASC,EAAgB,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,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,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,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,EAAMtB,IAAesB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAUwB,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,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,QAAArC,EAAQ,GAAGsC,CAAS,EAAEtB,GAASI,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAhD,CAAQ,EAAEiD,GAAgB,CAAC,WAAAtD,GAAW,eAAe,YAAY,IAAIkC,EAAW,QAAA3B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQqD,EAAiB3B,GAAuBD,EAAMtB,CAAQ,EAAO,CAAC,sBAAAmD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAiBH,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAiBL,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAiBN,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQU,EAAiBP,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQW,GAAiBR,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQY,GAAgBT,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQa,GAAgBV,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQc,EAAgBX,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAuCe,GAAkBC,EAAGpE,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBiB,EAAKoD,GAAY,CAAC,GAAG1B,GAAUT,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsB+D,EAAMnD,EAAO,IAAI,CAAC,GAAGyB,EAAU,GAAGI,EAAgB,UAAUoB,EAAGD,GAAkB,gBAAgBzB,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAGvC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAE2C,EAAYI,CAAc,EAAE,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBrC,EAAKsD,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAOhC,GAAmB,OAAO,OAAO,SAAS,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAGrC,GAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,EAAE,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,EAAE,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,EAAE,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,EAAE,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,EAAE,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,QAAQ,EAAE,KAAK,EAAE,EAAE,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,EAAE,GAAG,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsBhC,EAAKuD,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBlB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKnB,GAAiB,CAAC,UAAU4D,EAAiB,UAAU,iBAAiB,UAAU,yIAAyI,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGxD,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE2C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,aAAa,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,4BAA4B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,SAAsBrC,EAAKsD,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAOhC,GAAmB,OAAO,OAAO,SAAS,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,EAAE,GAAGrC,GAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,QAAQ,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsBhC,EAAKuD,GAA8B,CAAC,UAAU,2BAA2B,iBAAiBlB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKnB,GAAiB,CAAC,UAAU8D,EAAiB,UAAU,uBAAuB,UAAU,yQAAyQ,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAG1D,GAAqB,CAAC,UAAU,CAAC,UAAUwD,EAAiB,QAAQ,WAAW,CAAC,EAAEb,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKsD,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAOhC,GAAmB,OAAO,OAAO,SAAS,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,EAAE,GAAGrC,GAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,QAAQ,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsBhC,EAAKuD,GAA8B,CAAC,UAAU,2BAA2B,iBAAiBlB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKnB,GAAiB,CAAC,UAAU+D,EAAiB,UAAU,2BAA2B,UAAU,sQAAiQ,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAG3D,GAAqB,CAAC,UAAU,CAAC,UAAUwD,EAAiB,QAAQ,WAAW,CAAC,EAAEb,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,aAAa,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,4BAA4B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,SAAsBrC,EAAKsD,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAOhC,GAAmB,OAAO,OAAO,SAAS,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,EAAE,GAAGrC,GAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,QAAQ,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsBhC,EAAKuD,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBlB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKnB,GAAiB,CAAC,UAAUgE,EAAiB,UAAU,+BAA+B,UAAU,gKAAgK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAG5D,GAAqB,CAAC,UAAU,CAAC,UAAUwD,EAAiB,QAAQ,WAAW,CAAC,EAAEb,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,aAAa,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,4BAA4B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,SAAsBrC,EAAKsD,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAOhC,GAAmB,OAAO,OAAO,SAAS,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,EAAE,GAAGrC,GAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,QAAQ,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsBhC,EAAKuD,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBlB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKnB,GAAiB,CAAC,UAAUiE,GAAiB,UAAU,yBAAyB,UAAU,2GAA2G,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAG7D,GAAqB,CAAC,UAAU,CAAC,UAAUwD,EAAiB,QAAQ,WAAW,CAAC,EAAEb,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,aAAa,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,4BAA4B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,SAAsBrC,EAAKsD,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAOhC,GAAmB,OAAO,OAAO,SAAS,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,EAAE,GAAGrC,GAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,QAAQ,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsBhC,EAAKuD,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBlB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKnB,GAAiB,CAAC,UAAUkE,GAAgB,UAAU,4DAA4D,UAAU,mRAAyQ,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAG9D,GAAqB,CAAC,UAAU,CAAC,UAAUwD,EAAiB,QAAQ,WAAW,CAAC,EAAEb,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,aAAa,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,4BAA4B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,SAAsBrC,EAAKsD,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAOhC,GAAmB,OAAO,OAAO,SAAS,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,EAAE,GAAGrC,GAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,QAAQ,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsBhC,EAAKuD,GAA8B,CAAC,UAAU,2BAA2B,iBAAiBlB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKnB,GAAiB,CAAC,UAAUmE,GAAgB,UAAU,gDAA2C,UAAU,8YAAyY,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAG/D,GAAqB,CAAC,UAAU,CAAC,UAAUwD,CAAgB,EAAE,UAAU,CAAC,UAAUA,EAAiB,QAAQ,WAAW,CAAC,EAAEb,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,aAAa,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,4BAA4B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,SAAsBrC,EAAKsD,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAOhC,GAAmB,OAAO,OAAO,SAAS,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,EAAE,GAAGrC,GAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,QAAQ,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,OAAO,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsBhC,EAAKuD,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBlB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKnB,GAAiB,CAAC,UAAUoE,EAAgB,UAAU,6CAA6C,UAAU,2TAA2T,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGhE,GAAqB,CAAC,UAAU,CAAC,UAAU+D,EAAe,EAAE,UAAU,CAAC,UAAUA,EAAe,EAAE,UAAU,CAAC,UAAUP,EAAiB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUO,EAAe,CAAC,EAAEpB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQwB,GAAI,CAAC,kFAAkF,kFAAkF,mQAAmQ,meAAme,qYAAqY,urDAAurD,+bAA+b,EAQj1wBC,GAAgBC,GAAQ/C,GAAU6C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,mBAAmBA,GAAgB,aAAa,CAAC,OAAO,MAAM,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAG9E,EAAqB,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRjU,IAAMoF,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAAwB,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMnB,IAAemB,EAAM,iBAAwBnB,EAAS,KAAK,GAAG,EAAEmB,EAAM,iBAAwBnB,EAAS,KAAK,GAAG,EAAUuB,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAA6BC,GAAW,SAASR,EAAMS,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEpB,GAASI,CAAK,EAAO,CAAC,YAAAiB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA3C,CAAQ,EAAE4C,GAAgB,CAAC,WAAAjD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQgD,EAAiBvB,GAAuBH,EAAMnB,CAAQ,EAAO,CAAC,sBAAA8C,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAgBH,EAAsB,SAASI,KAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQQ,EAAgBL,EAAsB,SAASI,KAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQS,EAAeN,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAEU,GAAmBjB,EAAY,CAAC,QAAQa,EAAgB,UAAUG,EAAe,UAAUD,CAAe,CAAC,EAAiC,IAAMG,EAAkBC,EAAG3D,GAAkB,GAAhD,CAAC,CAAuE,EAAQ4D,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBhD,EAAKiD,GAAY,CAAC,GAAG5B,GAA4CwB,EAAgB,SAAsB7C,EAAKU,GAAS,CAAC,QAAQvB,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsB4D,EAAMvC,EAAO,IAAI,CAAC,GAAGW,EAAU,GAAGI,EAAgB,UAAUgB,EAAGD,EAAkB,gBAAgBrB,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6B4B,EAAK,MAAM,CAAC,GAAGxB,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEsC,EAAYI,CAAc,EAAE,SAAS,CAAc3B,EAAKW,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBqB,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,uEAAuE,OAAO,EAAE,CAAC,CAAC,EAAehC,EAAKW,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBqB,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,uEAAuE,OAAO,EAAE,CAAC,CAAC,EAAehC,EAAKW,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBqB,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,OAAO,EAAE,CAAC,CAAC,EAAehC,EAAKW,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBqB,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmB,GAAI,CAAC,kFAAkF,kFAAkF,mGAAmG,uIAAuI,uIAAuI,sKAAsK,wKAAwK,gEAAgE,8EAA8E,+DAA+D,gEAAgE,EAQrjLC,GAAgBC,GAAQxC,GAAUsC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,cAAcA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECR01D,IAAMM,GAAkBC,EAASC,EAAY,EAAQC,GAA+DC,GAAqBC,GAA6BH,GAAa,CAAC,OAAO,YAAY,SAASI,GAAiB,QAAQ,WAAW,CAAC,EAAEC,EAAgB,EAAQC,GAAYP,EAASQ,EAAM,EAAQC,GAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAyBZ,EAASa,EAAmB,EAAQC,GAAgBJ,GAAOK,CAAS,EAAQC,GAAeN,GAAOO,CAAQ,EAAQC,GAAclB,EAASmB,EAAQ,EAAQC,GAAapB,EAASqB,EAAO,EAAQC,GAActB,EAASuB,EAAQ,EAAQC,GAAYd,GAAOe,CAAK,EAAQC,GAA8DvB,GAAqBC,GAA6BH,GAAa,CAAC,OAAO,YAAY,SAASI,GAAiB,QAAQ,WAAW,CAAC,EAAEC,EAAgB,EAAQqB,GAA2B3B,EAAS4B,EAAqB,EAAQC,GAAiB7B,EAAS8B,EAAW,EAAQC,GAA+D5B,GAAqBC,GAA6BH,GAAa,CAAC,OAAO,YAAY,SAASI,GAAiB,QAAQ,WAAW,CAAC,EAAEC,EAAgB,EAAQ0B,GAAkBhC,EAASiC,EAAY,EAAQC,GAAoBlC,EAASmC,EAAc,EAAQC,GAAyBpC,EAASqC,EAAmB,EAAQC,GAAmBtC,EAASuC,EAAa,EAAQC,GAAmBxC,EAASyC,EAAa,EAAQC,GAAY1C,EAAS2C,EAAM,EAAQC,GAAY,CAAC,UAAU,8CAA8C,UAAU,sBAAsB,UAAU,qBAAqB,UAAU,4CAA4C,EAAoD,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,UAAU,kBAAkB,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,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,GAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,YAAY,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,GAA6BC,GAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,EAAO,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,EAAQ,GAAGC,CAAS,EAAEtB,GAASI,CAAK,EAAQmB,GAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUX,CAAY,EAAE,GAAGW,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,OAAUZ,CAAY,CAAC,EAAQa,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUX,CAAY,EAAE,SAAS,MAAMW,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUX,CAAY,CAAC,EAAE,GAAK,CAACc,EAAYC,CAAmB,EAAEC,GAA8BR,EAAQS,GAAY,EAAK,EAAQC,EAAe,OAAe,CAAC,sBAAAC,EAAsB,MAAAC,CAAK,EAAEC,GAAyB,MAAS,EAAQC,EAAgB,CAAC,CAAC,QAAAC,EAAQ,SAAAC,CAAQ,IAAIL,EAAsB,SAASM,KAAO,CAACF,EAAQ,OAAO,CAAE,CAAC,EAAQG,EAAe,CAAC,CAAC,QAAAH,EAAQ,SAAAC,CAAQ,IAAIL,EAAsB,SAASM,KAAO,CAACF,EAAQ,KAAK,CAAE,CAAC,EAAiII,EAAkBC,EAAGjE,GAAkB,GAA1I,CAAa2C,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQuB,EAAUC,GAAkB,WAAW,EAAQC,EAAWnC,EAAO,IAAI,EAAQoC,EAAWpC,EAAO,IAAI,EAAQqC,EAAWrC,EAAO,IAAI,EAAQsC,EAAWJ,GAAkB,WAAW,EAAQK,EAAWL,GAAkB,WAAW,EAAQM,EAAWN,GAAkB,WAAW,EAAQO,GAAWzC,EAAO,IAAI,EAAQ0C,GAAWR,GAAkB,WAAW,EAAQS,GAAW3C,EAAO,IAAI,EAAE,OAAA4C,GAAiB,CAAC,CAAC,EAAsBvD,EAAKwD,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAA7E,EAAiB,EAAE,SAAsB8E,EAAMC,GAAY,CAAC,GAAGpC,GAAUT,EAAgB,SAAS,CAAcb,EAAKH,GAAU,CAAC,MAAM,4CAA4C,CAAC,EAAe4D,EAAME,EAAO,IAAI,CAAC,GAAGnC,EAAU,UAAUmB,EAAGD,EAAkB,gBAAgBrB,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcqC,EAAM,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAczD,EAAK,MAAM,CAAC,UAAU,eAAe,mBAAmB,cAAc,CAAC,EAAeA,EAAK4D,GAAgB,CAAC,kBAAkB,CAAC,WAAW/E,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAU,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,GAAGgE,EAAU,IAAIE,EAAK,SAAsBW,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAczD,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,SAAsBA,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAW8D,EAAS,CAAC,SAAsB9D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,+BAA+B,qBAAqB,OAAO,0BAA0B,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,qDAAqD,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK+D,EAAS,CAAC,sBAAsB,GAAK,SAAsB/D,EAAW8D,EAAS,CAAC,SAAsB9D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,+BAA+B,qBAAqB,QAAQ,0BAA0B,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,qDAAqD,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,2BAA2B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK+D,EAAS,CAAC,sBAAsB,GAAK,SAAsB/D,EAAW8D,EAAS,CAAC,SAAsB9D,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,gFAAgF,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,SAAsBA,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,IAAI,IAAI,CAAC,CAAC,EAAE,SAAsBlB,EAAKgE,EAA0B,CAAC,OAAO,GAAG,GAAG9C,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,IAAI,MAAM,EAAE,SAAsBlB,EAAKiE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBjE,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU,EAAE,CAAC,EAAE,SAAsB7B,EAAKkE,GAA+D,CAAC,UAAU,sBAAsB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,QAAQ,UAAU,GAAG,QAAQ,YAAY,MAAM,OAAO,UAAU,GAAK,UAAU,qBAAqB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelE,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKgE,EAA0B,CAAC,SAAsBhE,EAAKiE,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBjE,EAAKmE,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,GAAG,eAAe,GAAK,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcnE,EAAKoE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,UAAU,IAAI,wFAAwF,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,mBAAmB,gCAAgC,CAAC,EAAepE,EAAKoE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,wFAAwF,OAAO,4VAA4V,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeX,EAAM,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAS,CAAczD,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKgE,EAA0B,CAAC,OAAO,GAAG,GAAG9C,GAAmB,GAAG,GAAG,EAAE,MAAM,IAAI,EAAE,EAAE,EAAE,SAAsBlB,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,CAAC,IAAImB,EAAK,OAAO,SAAS,CAAC,CAAC,EAAE,UAAU,CAAC,kBAAkB,CAAC,CAAC,IAAIA,EAAK,OAAO,SAAS,CAAC,CAAC,EAAE,UAAU,CAAC,kBAAkB,CAAC,CAAC,IAAIA,EAAK,OAAO,SAAS,CAAC,CAAC,CAAC,EAAE,SAAsBhD,EAAKqE,GAAgB,CAAC,kBAAkB,CAAC,WAAWtF,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIiE,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB/C,EAAKsE,GAAoB,CAAC,UAAU,WAAW,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetE,EAAKuE,GAAe,CAAC,kBAAkB,CAAC,WAAWtF,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBgB,EAAW8D,EAAS,CAAC,SAAsB9D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,6BAA6B,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK+D,EAAS,CAAC,sBAAsB,GAAK,SAAsB/D,EAAW8D,EAAS,CAAC,SAAsB9D,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,8FAA8F,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeyD,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAczD,EAAKb,GAAQ,CAAC,SAASmD,GAAsBtC,EAAKwE,GAAU,CAAC,SAAsBxE,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,OAAO,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,IAAI,IAAI,QAAQ,CAAC,EAAE,SAAsBlB,EAAKgE,EAA0B,CAAC,OAAO,GAAG,GAAG9C,GAAmB,GAAG,GAAG,EAAE,MAAM,IAAI,IAAI,SAAS,SAAsBuC,EAAMQ,EAAU,CAAC,UAAU,0BAA0B,GAAG,SAAS,OAAO,YAAY,QAAQ,YAAY,SAAS,CAAcjE,EAAKyE,GAAS,CAAC,UAAUpC,EAAgB,CAAC,QAAAC,CAAO,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQA,EAAQ,QAAQ,YAAY,OAAU,MAAM,MAAM,CAAC,EAAetC,EAAK0E,GAAgB,CAAC,SAASpC,EAAQ,SAAsBtC,EAAKwE,GAAU,CAAC,SAA+BG,GAA0BlB,EAAYK,EAAS,CAAC,SAAS,CAAc9D,EAAK2D,EAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,GAAG,EAAE,IAAI,GAAG,EAAE,KAAK,OAAO,CAAC,EAAE,UAAUhB,EAAGD,EAAkB,gBAAgB,EAAE,wBAAwB,SAAS,KAAK,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,CAAC,EAAE,QAAQ,CAAC,QAAQ,CAAC,CAAC,EAAE,WAAW,EAAe1C,EAAKgE,EAA0B,CAAC,SAAsBhE,EAAKiE,EAAU,CAAC,UAAUtB,EAAGD,EAAkB,0BAA0B,EAAE,wBAAwB,SAAS,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB1C,EAAK4E,GAAQ,CAAC,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,MAAM,GAAK,SAAS,YAAY,KAAK,KAAK,WAAW,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,iBAAiB,cAAc,EAAE,eAAe,EAAE,IAAI,8CAA8C,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5E,EAAKgE,EAA0B,CAAC,SAAsBhE,EAAKiE,EAAU,CAAC,UAAUtB,EAAGD,EAAkB,0BAA0B,EAAE,wBAAwB,SAAS,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB1C,EAAK6E,GAAS,CAAC,MAAM,qBAAqB,OAAO,OAAO,WAAW,QAAQ,cAAc,IAAI,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,QAAQpC,EAAe,CAAC,QAAAH,CAAO,CAAC,EAAE,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEpD,GAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQiD,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,MAAM,IAAI,IAAI,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,SAAS,IAAI,qEAAqE,OAAO,4VAA4V,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ4D,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,qEAAqE,OAAO,4VAA4V,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ4D,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,MAAM,IAAI,IAAI,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,qEAAqE,OAAO,4VAA4V,CAAC,CAAC,EAAE,SAAsBlB,EAAK+E,GAAY,CAAC,iBAAiB,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,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,GAAG,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,GAAG,IAAI,OAAO,QAAQD,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,MAAM,IAAI,IAAI,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,SAAS,IAAI,qEAAqE,OAAO,4VAA4V,EAAE,UAAU,iBAAiB,mBAAmB,8BAA8B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAsByD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAczD,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQiD,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,YAAY,IAAI,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,wFAAwF,OAAO,4VAA4V,CAAC,CAAC,EAAE,SAAsBlB,EAAKoE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQU,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,MAAM,GAAG,EAAE,YAAY,IAAI,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,wFAAwF,OAAO,4VAA4V,EAAE,UAAU,gBAAgB,mBAAmB,sBAAsB,SAAsBlB,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQiD,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,wFAAwF,OAAO,4VAA4V,CAAC,CAAC,EAAE,SAAsBlB,EAAKoE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQU,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,MAAM,IAAI,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,wFAAwF,OAAO,4VAA4V,EAAE,UAAU,iBAAiB,mBAAmB,qBAAqB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,CAAC,CAAC,CAAC,CAAC,EAAeyD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,GAAGR,EAAW,IAAID,EAAK,SAAS,CAAchD,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAsByD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAczD,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKgE,EAA0B,CAAC,OAAO,GAAG,GAAG9C,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,SAAsBlB,EAAKqE,GAAgB,CAAC,kBAAkB,CAAC,WAAWtF,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIkE,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBhD,EAAKsE,GAAoB,CAAC,UAAU,uBAAuB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetE,EAAKuE,GAAe,CAAC,kBAAkB,CAAC,WAAWtF,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIgE,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBhD,EAAW8D,EAAS,CAAC,SAAsB9D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,mDAAmD,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,6BAA6B,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK+D,EAAS,CAAC,sBAAsB,GAAK,SAAsB/D,EAAW8D,EAAS,CAAC,SAAsB9D,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,2IAA2I,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyD,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,iBAAiB,SAAS,CAAczD,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQiD,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,aAAaA,GAAmB,OAAO,OAAO,gDAAgD,IAAI,yFAAyF,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ4D,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,YAAYA,GAAmB,OAAO,OAAO,mCAAmC,IAAI,yFAAyF,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ4D,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,YAAYA,GAAmB,OAAO,OAAO,mCAAmC,IAAI,yFAAyF,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsBlB,EAAKoE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQU,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,CAAC,CAAC,CAAC,EAAeuC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAczD,EAAK+D,EAAS,CAAC,sBAAsB,GAAK,SAAsB/D,EAAW8D,EAAS,CAAC,SAAsB9D,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK+D,EAAS,CAAC,sBAAsB,GAAK,SAAsB/D,EAAW8D,EAAS,CAAC,SAAsB9D,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,yHAAyH,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK2D,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,IAAI,CAAC,CAAC,EAAe3D,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQiD,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,IAAI,EAAE,EAAE,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,aAAaA,GAAmB,OAAO,OAAO,gDAAgD,IAAI,yFAAyF,OAAO,6bAA6b,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ4D,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,IAAI,EAAE,EAAE,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,YAAYA,GAAmB,OAAO,OAAO,mCAAmC,IAAI,yFAAyF,OAAO,6bAA6b,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ4D,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,EAAE,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,YAAYA,GAAmB,OAAO,OAAO,mCAAmC,IAAI,yFAAyF,OAAO,6bAA6b,CAAC,CAAC,EAAE,SAAsBlB,EAAKoE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQU,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,IAAI,EAAE,EAAE,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,aAAaA,GAAmB,OAAO,OAAO,gDAAgD,IAAI,yFAAyF,OAAO,6bAA6b,EAAE,UAAU,iBAAiB,mBAAmB,uBAAuB,MAAM,CAAC,OAAO,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuC,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,iBAAiB,SAAS,CAAczD,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQiD,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,aAAaA,GAAmB,OAAO,OAAO,gDAAgD,IAAI,yFAAyF,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ4D,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,IAAI,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,YAAYA,GAAmB,OAAO,OAAO,mCAAmC,IAAI,yFAAyF,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ4D,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,YAAYA,GAAmB,OAAO,OAAO,mCAAmC,IAAI,yFAAyF,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsBlB,EAAKoE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQU,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,CAAC,CAAC,CAAC,EAAeuC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAczD,EAAK+D,EAAS,CAAC,sBAAsB,GAAK,SAAsB/D,EAAW8D,EAAS,CAAC,SAAsB9D,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK+D,EAAS,CAAC,sBAAsB,GAAK,SAAsB/D,EAAW8D,EAAS,CAAC,SAAsB9D,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,kHAAkH,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK2D,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,IAAI,CAAC,CAAC,EAAe3D,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQiD,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,IAAI,EAAE,EAAE,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,aAAaA,GAAmB,OAAO,OAAO,gDAAgD,IAAI,yFAAyF,OAAO,6bAA6b,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ4D,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,IAAI,EAAE,IAAI,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,YAAYA,GAAmB,OAAO,OAAO,mCAAmC,IAAI,yFAAyF,OAAO,6bAA6b,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ4D,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,IAAI,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,YAAYA,GAAmB,OAAO,OAAO,mCAAmC,IAAI,yFAAyF,OAAO,6bAA6b,CAAC,CAAC,EAAE,SAAsBlB,EAAKoE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQU,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,IAAI,EAAE,EAAE,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,aAAaA,GAAmB,OAAO,OAAO,gDAAgD,IAAI,yFAAyF,OAAO,6bAA6b,EAAE,UAAU,gBAAgB,mBAAmB,uBAAuB,MAAM,CAAC,OAAO,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuC,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,iBAAiB,SAAS,CAAczD,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQiD,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,aAAaA,GAAmB,OAAO,OAAO,gDAAgD,IAAI,yFAAyF,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ4D,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,IAAI,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,YAAYA,GAAmB,OAAO,OAAO,mCAAmC,IAAI,yFAAyF,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ4D,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,KAAK,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,YAAYA,GAAmB,OAAO,OAAO,mCAAmC,IAAI,yFAAyF,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsBlB,EAAKoE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQU,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,mQAAmQ,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,CAAC,CAAC,CAAC,EAAeuC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAczD,EAAK+D,EAAS,CAAC,sBAAsB,GAAK,SAAsB/D,EAAW8D,EAAS,CAAC,SAAsB9D,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK+D,EAAS,CAAC,sBAAsB,GAAK,SAAsB/D,EAAW8D,EAAS,CAAC,SAAsB9D,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,sHAAsH,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK2D,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,IAAI,CAAC,CAAC,EAAe3D,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQiD,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,IAAI,EAAE,EAAE,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,aAAaA,GAAmB,OAAO,OAAO,gDAAgD,IAAI,yFAAyF,OAAO,6bAA6b,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ4D,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,IAAI,EAAE,IAAI,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,YAAYA,GAAmB,OAAO,OAAO,mCAAmC,IAAI,yFAAyF,OAAO,6bAA6b,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ4D,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,KAAK,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,YAAYA,GAAmB,OAAO,OAAO,mCAAmC,IAAI,yFAAyF,OAAO,6bAA6b,CAAC,CAAC,EAAE,SAAsBlB,EAAKoE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQU,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,IAAI,EAAE,EAAE,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,aAAaA,GAAmB,OAAO,OAAO,gDAAgD,IAAI,yFAAyF,OAAO,6bAA6b,EAAE,UAAU,iBAAiB,mBAAmB,uBAAuB,MAAM,CAAC,OAAO,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,IAAI,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,CAAC,EAAE,SAAsBlB,EAAKgE,EAA0B,CAAC,OAAO,GAAG,GAAG9C,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,IAAI,SAAsBlB,EAAKiE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBjE,EAAKgF,GAA8D,CAAC,UAAU,oBAAoB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,QAAQ,UAAU,GAAG,QAAQ,YAAY,MAAM,OAAO,UAAU,GAAK,UAAU,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,GAAGP,EAAW,IAAIH,EAAK,SAAS,CAAc/C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAsByD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAczD,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKgE,EAA0B,CAAC,OAAO,GAAG,GAAG9C,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,SAAsBlB,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,CAAC,IAAImB,EAAK,OAAO,SAAS,CAAC,CAAC,EAAE,UAAU,CAAC,kBAAkB,CAAC,CAAC,IAAIA,EAAK,OAAO,SAAS,CAAC,CAAC,EAAE,UAAU,CAAC,kBAAkB,CAAC,CAAC,IAAIA,EAAK,OAAO,SAAS,CAAC,CAAC,CAAC,EAAE,SAAsBhD,EAAKqE,GAAgB,CAAC,kBAAkB,CAAC,WAAWtF,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIiE,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB/C,EAAKsE,GAAoB,CAAC,UAAU,eAAe,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetE,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,CAAC,IAAImB,EAAK,OAAO,SAAS,CAAC,CAAC,EAAE,UAAU,CAAC,kBAAkB,CAAC,CAAC,IAAIA,EAAK,OAAO,SAAS,CAAC,CAAC,EAAE,UAAU,CAAC,kBAAkB,CAAC,CAAC,IAAIA,EAAK,OAAO,SAAS,CAAC,CAAC,CAAC,EAAE,SAAsBhD,EAAKuE,GAAe,CAAC,kBAAkB,CAAC,WAAWtF,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAI+D,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB/C,EAAW8D,EAAS,CAAC,SAAsB9D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,oCAAoC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,6BAA6B,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK+D,EAAS,CAAC,sBAAsB,GAAK,SAAsB/D,EAAW8D,EAAS,CAAC,SAAsB9D,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,sHAAsH,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,mCAAmC,SAAS,CAAczD,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWX,GAAmB,OAAO,OAAO,0BAA0B,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,sCAAsC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKgE,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAY9C,GAAmB,OAAO,OAAO,uCAAuC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,IAAI,EAAE,EAAE,SAAsBlB,EAAKiE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBjE,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKiF,GAAsB,CAAC,UAAUvF,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,MAAM,EAAE,UAAU,GAAK,UAAU,6GAA6G,UAAU,oBAAoB,OAAO,OAAO,UAAU,GAAM,GAAG,YAAY,SAAS,YAAY,UAAU,GAAM,UAAU,IAAI,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWX,GAAmB,OAAO,OAAO,0BAA0B,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,IAAI,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,sCAAsC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKgE,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAY9C,GAAmB,OAAO,OAAO,uCAAuC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,IAAI,EAAE,EAAE,SAAsBlB,EAAKiE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBjE,EAAKiF,GAAsB,CAAC,UAAUvF,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,EAAE,EAAE,UAAU,GAAK,UAAU,+GAA+G,UAAU,eAAe,OAAO,OAAO,UAAU,GAAM,GAAG,YAAY,SAAS,YAAY,UAAU,GAAM,UAAU,IAAI,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWX,GAAmB,OAAO,OAAO,0BAA0B,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,IAAI,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,sCAAsC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKgE,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAY9C,GAAmB,OAAO,OAAO,uCAAuC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,IAAI,EAAE,EAAE,SAAsBlB,EAAKiE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBjE,EAAKiF,GAAsB,CAAC,UAAUvF,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,oEAAoE,EAAE,EAAE,EAAE,UAAU,GAAK,UAAU,+GAA+G,UAAU,oBAAoB,OAAO,OAAO,UAAU,GAAM,GAAG,YAAY,SAAS,YAAY,UAAU,GAAM,UAAU,IAAI,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+D,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,4BAA4B,SAAS,CAAczD,EAAK,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,SAAsBA,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,IAAI,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,IAAI,GAAG,EAAE,EAAE,CAAC,EAAE,SAAsBlB,EAAKgE,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,GAAG9C,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,IAAI,EAAE,IAAI,GAAG,EAAE,GAAG,SAAsBlB,EAAKiE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBjE,EAAKkF,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelF,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAsBA,EAAK+D,EAAS,CAAC,sBAAsB,GAAK,SAAsB/D,EAAW8D,EAAS,CAAC,SAAsB9D,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWX,GAAmB,OAAO,OAAO,0BAA0B,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,IAAI,EAAE,MAAM,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,sCAAsC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKgE,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAY9C,GAAmB,OAAO,OAAO,uCAAuC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,IAAI,EAAE,IAAI,SAAsBlB,EAAKiE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBjE,EAAKiF,GAAsB,CAAC,UAAUvF,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,EAAE,EAAE,UAAU,GAAK,UAAU,mHAAmH,UAAU,mBAAmB,OAAO,OAAO,UAAU,GAAM,GAAG,YAAY,SAAS,YAAY,UAAU,GAAM,UAAU,IAAI,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWX,GAAmB,OAAO,OAAO,0BAA0B,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,IAAI,EAAE,MAAM,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,sCAAsC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKgE,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAY9C,GAAmB,OAAO,OAAO,uCAAuC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,IAAI,EAAE,IAAI,SAAsBlB,EAAKiE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBjE,EAAKiF,GAAsB,CAAC,UAAUvF,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,EAAE,EAAE,UAAU,GAAK,UAAU,2HAA2H,UAAU,kBAAkB,OAAO,OAAO,UAAU,GAAM,GAAG,YAAY,SAAS,YAAY,UAAU,GAAM,UAAU,IAAI,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWX,GAAmB,OAAO,OAAO,0BAA0B,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,IAAI,EAAE,MAAM,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,sCAAsC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,IAAI,CAAC,EAAE,SAAsBlB,EAAKgE,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAY9C,GAAmB,OAAO,OAAO,uCAAuC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,IAAI,EAAE,IAAI,SAAsBlB,EAAKiE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBjE,EAAKiF,GAAsB,CAAC,UAAUvF,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,EAAE,EAAE,UAAU,GAAK,UAAU,2HAA2H,UAAU,sBAAsB,OAAO,OAAO,UAAU,GAAM,GAAG,YAAY,SAAS,YAAY,UAAU,GAAM,UAAU,IAAI,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWX,GAAmB,OAAO,OAAO,0BAA0B,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,IAAI,EAAE,MAAM,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,sCAAsC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,IAAI,CAAC,EAAE,SAAsBlB,EAAKgE,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAY9C,GAAmB,OAAO,OAAO,uCAAuC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,IAAI,EAAE,IAAI,SAAsBlB,EAAKiE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBjE,EAAKiF,GAAsB,CAAC,UAAUvF,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,oEAAoE,EAAE,EAAE,EAAE,UAAU,GAAK,UAAU,2HAA2H,UAAU,aAAa,OAAO,OAAO,UAAU,GAAM,GAAG,YAAY,SAAS,YAAY,UAAU,GAAM,UAAU,IAAI,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWX,GAAmB,OAAO,OAAO,0BAA0B,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,IAAI,EAAE,MAAM,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,sCAAsC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,IAAI,CAAC,EAAE,SAAsBlB,EAAKgE,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAY9C,GAAmB,OAAO,OAAO,uCAAuC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,IAAI,EAAE,IAAI,SAAsBlB,EAAKiE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBjE,EAAKiF,GAAsB,CAAC,UAAUvF,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,EAAE,EAAE,UAAU,GAAK,UAAU,2HAA2H,UAAU,aAAa,OAAO,OAAO,UAAU,GAAM,GAAG,YAAY,SAAS,YAAY,UAAU,GAAM,UAAU,IAAI,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,MAAM,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,CAAC,EAAE,SAAsBlB,EAAKgE,EAA0B,CAAC,OAAO,GAAG,GAAG9C,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,KAAK,SAAsBlB,EAAKiE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBjE,EAAKmF,GAA+D,CAAC,UAAU,oBAAoB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,QAAQ,UAAU,GAAG,QAAQ,YAAY,MAAM,OAAO,UAAU,GAAK,UAAU,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenF,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAsByD,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAczD,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,GAAGmD,EAAW,IAAIC,GAAK,SAAsBK,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,eAAe,mBAAmB,gBAAgB,SAAS,CAAczD,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKgE,EAA0B,CAAC,OAAO,GAAG,GAAG9C,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,SAAsBlB,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,CAAC,IAAImB,EAAK,OAAO,SAAS,CAAC,CAAC,EAAE,UAAU,CAAC,kBAAkB,CAAC,CAAC,IAAIA,EAAK,OAAO,SAAS,CAAC,CAAC,EAAE,UAAU,CAAC,kBAAkB,CAAC,CAAC,IAAIA,EAAK,OAAO,SAAS,CAAC,CAAC,CAAC,EAAE,SAAsBhD,EAAKqE,GAAgB,CAAC,kBAAkB,CAAC,WAAWtF,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIiE,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB/C,EAAKsE,GAAoB,CAAC,UAAU,UAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetE,EAAK+D,EAAS,CAAC,sBAAsB,GAAK,SAAsB/D,EAAW8D,EAAS,CAAC,SAAsB9D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKgE,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO9C,GAAmB,OAAO,OAAO,oBAAoB,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,IAAI,SAAsBlB,EAAKiE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBjE,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKoF,GAAa,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,CAAC,CAAC,EAAepF,EAAK,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,GAAGqD,GAAW,IAAIC,GAAK,SAAsBG,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,SAAS,CAAczD,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKgE,EAA0B,CAAC,OAAO,GAAG,GAAG9C,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,SAAsBlB,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,CAAC,IAAImB,EAAK,OAAO,SAAS,CAAC,CAAC,EAAE,UAAU,CAAC,kBAAkB,CAAC,CAAC,IAAIA,EAAK,OAAO,SAAS,CAAC,CAAC,EAAE,UAAU,CAAC,kBAAkB,CAAC,CAAC,IAAIA,EAAK,OAAO,SAAS,CAAC,CAAC,CAAC,EAAE,SAAsBhD,EAAKqE,GAAgB,CAAC,kBAAkB,CAAC,WAAWtF,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIiE,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB/C,EAAKsE,GAAoB,CAAC,UAAU,MAAM,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetE,EAAK+D,EAAS,CAAC,sBAAsB,GAAK,SAAsB/D,EAAW8D,EAAS,CAAC,SAAsB9D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK+D,EAAS,CAAC,sBAAsB,GAAK,SAAsB/D,EAAW8D,EAAS,CAAC,SAAsB9D,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,6DAAmD,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAsBA,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,yBAAyB,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKgE,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAY9C,GAAmB,OAAO,OAAO,8BAA8B,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,IAAI,EAAE,EAAE,SAAsBlB,EAAKiE,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,WAAW,KAAK,WAAW,OAAO,YAAY,QAAQ,YAAY,SAAsBjE,EAAKqF,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,WAAW,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerF,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsByD,EAAM,UAAU,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,YAAY,SAAS,CAAczD,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsByD,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAS,CAAczD,EAAKsF,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,qtBAAqtB,mBAAmB,EAAI,CAAC,EAAe7B,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAczD,EAAK+D,EAAS,CAAC,sBAAsB,GAAK,SAAsB/D,EAAW8D,EAAS,CAAC,SAAsB9D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,gDAAgD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK+D,EAAS,CAAC,sBAAsB,GAAK,SAAsB/D,EAAW8D,EAAS,CAAC,SAAsB9D,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,sCAAsC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKgE,EAA0B,CAAC,OAAO,GAAG,GAAG9C,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,IAAI,SAAsBlB,EAAKiE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBjE,EAAKuF,GAAoB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,WAAW,SAAS,YAAY,UAAU,sCAAsC,UAAU,GAAK,MAAM,CAAC,OAAO,MAAM,EAAE,UAAU,oBAAoB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevF,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQiD,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,OAAO,mBAAmB,IAAI,wFAAwF,OAAO,4VAA4V,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQ4D,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,OAAO,oBAAoB,IAAI,wFAAwF,OAAO,4VAA4V,CAAC,CAAC,EAAE,SAAsBlB,EAAKoE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQU,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,OAAO,oBAAoB,IAAI,wFAAwF,OAAO,4VAA4V,EAAE,UAAU,gBAAgB,mBAAmB,sBAAsB,SAAsBlB,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQiD,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,OAAO,mBAAmB,IAAI,wFAAwF,OAAO,4VAA4V,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQ4D,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,OAAO,oBAAoB,IAAI,wFAAwF,OAAO,4VAA4V,CAAC,CAAC,EAAE,SAAsBlB,EAAKoE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQU,GAA2B5D,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,OAAO,oBAAoB,IAAI,wFAAwF,OAAO,4VAA4V,EAAE,UAAU,iBAAiB,mBAAmB,qBAAqB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,MAAM,EAAE,UAAU,CAAC,MAAM,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,CAAC,EAAE,SAAsB7B,EAAKgE,EAA0B,CAAC,OAAO,GAAG,EAAE,GAAG,SAAsBhE,EAAKiE,EAAU,CAAC,UAAU,0BAA0B,aAAa,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBjE,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKwF,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexF,EAAK,SAAS,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAsBA,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,OAAO,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,CAAC,CAAC,EAAE,SAAsBlB,EAAKgE,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO9C,GAAmB,OAAO,OAAO,SAAS,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,SAAsBlB,EAAKiE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBjE,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKyF,GAAc,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,EAAezF,EAAKgE,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,EAAE,EAAE,SAAsBhE,EAAKiE,EAAU,CAAC,UAAU,0BAA0B,aAAa,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBjE,EAAK6D,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK0F,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1F,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ2F,GAAI,CAAC,kFAAkF,kFAAkF,kSAAkS,2RAA2R,ifAAif,2mBAA2mB,+TAA+T,0SAA0S,+QAA+Q,gRAAgR,oSAAoS,yPAAyP,4QAA4Q,yGAAyG,0SAA0S,wGAAwG,oKAAoK,oKAAoK,8RAA8R,6RAA6R,wRAAwR,4OAA4O,iWAAiW,4RAA4R,2KAA2K,yIAAyI,2MAA2M,2JAA2J,qHAAqH,4LAA4L,2JAA2J,+XAA+X,gZAAgZ,oKAAoK,iLAAiL,kRAAkR,yQAAyQ,mUAAmU,4UAA4U,gVAAgV,2UAA2U,yzBAAyzB,6LAA6L,gXAAgX,gaAAga,gSAAgS,+PAA+P,s1BAAs1B,4NAA4N,6JAA6J,qVAAqV,yaAAya,sxBAAsxB,2pBAA2pB,wGAAwG,8SAA8S,iPAAiP,4KAA4K,0JAA0J,6WAA6W,iYAAiY,sUAAsU,gTAAgT,+QAA+Q,6WAA6W,iJAAiJ,2SAA2S,6TAA6T,qRAAqR,iSAAiS,owBAAowB,2SAA2S,iRAAiR,2KAA2K,gRAAgR,iRAAiR,wGAAwG,iKAAiK,kRAAkR,iQAAiQ,oKAAoK,wSAAwS,2GAA2G,uKAAuK,irOAAirO,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,gcAAgc,+vGAA+vG,m8BAAm8B,i/HAAi/H,EAa/wuHC,GAAgBC,GAAQtF,GAAUoF,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,OAAO,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,iBAAiB,OAAO,SAAS,MAAM,SAAS,IAAI,4GAA4G,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,GAAGI,GAAkB,GAAGC,GAAY,GAAGC,GAAyB,GAAGC,GAAc,GAAGC,GAAa,GAAGC,GAAc,GAAGC,GAA2B,GAAGC,GAAiB,GAAGC,GAAkB,GAAGC,GAAoB,GAAGC,GAAyB,GAAGC,GAAmB,GAAGC,GAAmB,GAAGC,GAAY,GAAGC,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACr8E,IAAMC,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,yBAA2B,OAAO,qBAAuB,OAAO,qBAAuB,OAAO,4BAA8B,OAAO,qBAAuB,6QAA+T,uBAAyB,GAAG,sBAAwB,SAAS,sBAAwB,IAAI,kBAAoB,OAAO,yBAA2B,QAAQ,oCAAsC,oMAA0O,6BAA+B,MAAM,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "useIsOnCanvas", "se", "RenderTarget", "useRadius", "props", "borderRadius", "isMixedBorderRadius", "topLeftRadius", "topRightRadius", "bottomRightRadius", "bottomLeftRadius", "se", "borderRadiusControl", "ControlType", "usePadding", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "paddingControl", "PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "searchParams", "iframeProps", "u", "wrapperStyle", "videoStyle", "getThumbnailURL", "getWebPSupported", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "clamp", "e", "n", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "Z", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "adjustment", "totalLen", "gotoDelta", "delta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "PhosphorFonts", "getFonts", "Icon", "CarouselFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "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", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "u", "SVG", "RichText2", "Image2", "Link", "css", "FramerCDRJNwUvO", "withCSS", "CDRJNwUvO_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "b7dTiwSTk", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapno00rv", "args", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FrameriMNDMd4SJ", "withCSS", "iMNDMd4SJ_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "answer", "answerVisible", "height", "iconClose", "iconOpen", "id", "question", "tap", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "createLayoutDependency", "Variants", "motion", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "baxjXyJgE", "C4FeBjQqd", "dtpfKkxEc", "pXz6G8n4y", "Iepd46w62", "b1gPskFZn", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapjiuhcq", "args", "onTapfapylw", "onTapsw0wr5", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "Framerr0dXzwlJt", "withCSS", "r0dXzwlJt_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SectionSingleFaqFonts", "getFonts", "r0dXzwlJt_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", "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", "baxjXyJgE16pimlv", "args", "baxjXyJgE1el9mno", "baxjXyJgE1pfzcrl", "baxjXyJgE1xin8oi", "baxjXyJgE17v1kln", "baxjXyJgEj9u33w", "baxjXyJgEqcohki", "baxjXyJgE72o5kq", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "Framerr665D9L5t", "withCSS", "r665D9L5t_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Variants", "motion", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear17g0o5p", "args", "onAppear1wda6vr", "onAppearqi91v8", "useOnVariantChange", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "css", "FramerwhqN8FOxM", "withCSS", "whqN8FOxM_default", "addPropertyControls", "ControlType", "addFonts", "ButtonButtonFonts", "getFonts", "WFXpViQIs_default", "ButtonButtonPreserveReferral12a8avvWithMappedReactProps16xpo9g", "withMappedReactProps", "withCodeBoundaryForOverrides", "preserveReferral", "WFXpViQIs_exports", "TickerFonts", "Ticker", "MotionDivWithFX", "withFX", "motion", "SectionSectionBadgeFonts", "e3bCcGy9N_default", "ContainerWithFX", "Container", "RichTextWithFX", "RichText2", "HomePlayFonts", "iMNDMd4SJ_default", "YouTubeFonts", "Youtube", "PhosphorFonts", "Icon", "ImageWithFX", "Image2", "ButtonButtonPreserveReferralzaguseWithMappedReactProps16xpo9g", "WhyChooseUsSingleCardFonts", "tOVqvisWd_default", "HashtagiconFonts", "whqN8FOxM_default", "ButtonButtonPreserveReferral1kn6cwfWithMappedReactProps16xpo9g", "TestimonialsFonts", "CDRJNwUvO_default", "SectionFaqAreaFonts", "r665D9L5t_default", "ButtonButtonRegularFonts", "OvOrWvqJc_default", "SectionNavbarFonts", "xcu538dCS_default", "SectionFooterFonts", "Z9bcIBrOD_default", "BannerFonts", "AwJlOjIbZ_default", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "transition3", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "addImageAlt", "image", "alt", "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", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "b7dTiwSTk3bnx0g", "overlay", "loadMore", "args", "onClick1wnntms", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "ref2", "ref3", "elementId1", "elementId2", "elementId3", "ref4", "elementId4", "ref5", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "MotionDivWithFX", "PropertyOverrides2", "x", "RichText2", "ComponentViewportProvider", "Container", "ButtonButtonPreserveReferral12a8avvWithMappedReactProps16xpo9g", "Ticker", "Image2", "ContainerWithFX", "e3bCcGy9N_default", "RichTextWithFX", "l", "iMNDMd4SJ_default", "AnimatePresence", "Ga", "Youtube", "Icon", "getLoadingLazyAtYPosition", "ImageWithFX", "ButtonButtonPreserveReferralzaguseWithMappedReactProps16xpo9g", "tOVqvisWd_default", "whqN8FOxM_default", "ButtonButtonPreserveReferral1kn6cwfWithMappedReactProps16xpo9g", "CDRJNwUvO_default", "r665D9L5t_default", "SVG", "OvOrWvqJc_default", "xcu538dCS_default", "Z9bcIBrOD_default", "AwJlOjIbZ_default", "css", "FramerWZYCZS0CF", "withCSS", "WZYCZS0CF_default", "addFonts", "ButtonButtonFonts", "TickerFonts", "SectionSectionBadgeFonts", "HomePlayFonts", "YouTubeFonts", "PhosphorFonts", "WhyChooseUsSingleCardFonts", "HashtagiconFonts", "TestimonialsFonts", "SectionFaqAreaFonts", "ButtonButtonRegularFonts", "SectionNavbarFonts", "SectionFooterFonts", "BannerFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
