{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/RFM6zI5MxOiqwwNiQep4/CmmUoyXEMOtoYkkeGDZZ/send.js", "ssg:https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js", "ssg:https://framerusercontent.com/modules/zvf2WTzc98u6EX2y7YDj/gvNUph1oNh8l2qQafSUu/consent.js", "ssg:https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/gnipUJynzv8FJkpTy04V/inEU.js", "ssg:https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/d7M4abVz5jhxcjrlWV66/region.js", "ssg:https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/77ZjdIUSoepa5KTwP0oH/Banner.js", "ssg:https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/zTapg9rnDfIs7uo8Zb0a/Cookies.js", "ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/ETru5rDqosQZIe1MqbyG/x9Ds2O0YWmbb694QnnXg/BysPvqQr7.js", "ssg:https://framerusercontent.com/modules/NY6ub90Dqhk7W0SS9DMW/QgBDhbTuw1IpfjOzCxVn/HI4S0BWx7.js", "ssg:https://framerusercontent.com/modules/OrPGnaPaDLtRvYiZkbyi/lbg8QD1bV8BGOJmW5TpG/Mo1ryl8_D.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{isBrowser}from\"framer-motion\";export const DEFAULT_DOMAIN=\"https://www.googletagmanager.com\";export const DEFAULT_SCRIPT_NAME=\"gtm.js\";/**\n * Function to get and set dataLayer\n * @param dataLayer - The dataLayer\n * @param dataLayerName - The dataLayer name\n */const getDataLayerSnippet=(dataLayer,dataLayerName=\"dataLayer\")=>`window['${dataLayerName}']=window['${dataLayerName}']||[];`+(dataLayer?`window['${dataLayerName}'].push(${JSON.stringify(dataLayer)});`:\"\")+`window['${dataLayerName}'].push({'gtm.start':new Date().getTime(),event:'gtm.js'})`;/**\n * Function to get the GTM script\n * @param dataLayerName - The name of the dataLayer\n * @param customDomain - Custom domain for gtm\n * @param customScriptName - Custom script file name for gtm\n * @param environment - The parameters to use a custom environment\n * @param id - The id of the container\n */const getGTMScript=(dataLayerName,id,environment,customDomain=DEFAULT_DOMAIN,customScriptName=DEFAULT_SCRIPT_NAME)=>{let params=\"\";if(environment){const{gtm_auth,gtm_preview}=environment;params=`&gtm_auth=${gtm_auth}&gtm_preview=${gtm_preview}&gtm_cookies_win=x`;}return`${customDomain}/${customScriptName}?id=${id}${dataLayerName===\"dataLayer\"?\"\":`&l=${dataLayerName}`}${params}`;};/**\n * Function to setup the Google Tag Manager\n * @param params - The snippets params\n */const setupGTM=params=>{const getDataLayerScript=()=>{const dataLayerScript=document.createElement(\"script\");if(params.nonce){dataLayerScript.setAttribute(\"nonce\",params.nonce);}dataLayerScript.innerHTML=getDataLayerSnippet(params.dataLayer,params.dataLayerName);return dataLayerScript;};const getScript=()=>{const script=document.createElement(\"script\");if(params.nonce){script.setAttribute(\"nonce\",params.nonce);}script.src=getGTMScript(params.dataLayerName,params.id,params.environment,params.customDomain,params.customScriptName);return script;};return{getDataLayerScript,getScript};};/**\n * Function to init the GTM\n * @param dataLayer - The dataLayer\n * @param dataLayerName - The dataLayer name\n * @param environment - Specify the custom environment to use\n * @param nonce - Server-generated nonce\n * @param id - The ID of the GTM\n */export const initGTM=({dataLayer,dataLayerName,environment,nonce,id,customDomain,customScriptName})=>{const gtm=setupGTM({dataLayer,dataLayerName,environment,nonce,id,customDomain,customScriptName});const dataLayerScript=gtm.getDataLayerScript();const script=gtm.getScript();document.head.append(dataLayerScript,script);};export function sendToGTM(){if(isBrowser){window[\"dataLayer\"]=window[\"dataLayer\"]||[];window[\"dataLayer\"].push(arguments);}}\nexport const __FramerMetadata__ = {\"exports\":{\"DEFAULT_SCRIPT_NAME\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"DEFAULT_DOMAIN\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"sendToGTM\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"initGTM\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./send.map", "import{isBrowser}from\"framer-motion\";import{useLayoutEffect}from\"react\";export const DEFAULT_FONT_FAMILY=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;export function getFlexboxValues(position){const positionParts=position.split(\"-\");let justifyContent,alignItems;switch(positionParts[0]){case\"top\":alignItems=\"flex-start\";break;case\"bottom\":alignItems=\"flex-end\";break;case\"center\":alignItems=\"center\";break;default:alignItems=\"initial\";break;}switch(positionParts[1]){case\"left\":justifyContent=\"flex-start\";break;case\"right\":justifyContent=\"flex-end\";break;case\"center\":justifyContent=\"center\";break;default:justifyContent=\"initial\";break;}return{justifyContent,alignItems};}export function getMultipleShadows(...shadows){const output=[];shadows.forEach(shadow=>{return shadow&&output.push(shadow);});return output.join(\", \");}export function getShadow(shadow){if(shadow){return`${shadow.shadowX}px ${shadow.shadowY}px ${shadow.shadowBlur}px ${shadow.shadowColor}`;}else return null;}export function safeJSONParse(jsonString,onError){try{return JSON.parse(jsonString);}catch{if(onError)onError();}}export const getCookie=(name,cookies)=>{cookies=cookies?cookies:isBrowser?document.cookie:\"\";var _cookies_match;const[,,cookie]=(_cookies_match=cookies.match(`(^|;) ?${name}=([^;]*)(;|$)`))!==null&&_cookies_match!==void 0?_cookies_match:[null,null,null];return cookie;};/**\n * Yields to main thread before continuing execution, which might allow the browser to paint.\n * If `options.priority` is 'user-blocking', it will asynchronously resolve in older browsers.\n * @param {object} options - see https://github.com/WICG/scheduling-apis/blob/main/explainers/yield-and-continuation.md\n * @see interactionResponse for guaranteeing execution after a paint\n */export function yieldToMain(options){if(\"scheduler\"in window){if(\"yield\"in scheduler)return scheduler.yield(options);if(\"postTask\"in scheduler)return scheduler.postTask(()=>{},options);}if((options===null||options===void 0?void 0:options.priority)===\"user-blocking\"){// `setTimeout` could suffer from being delayed for longer: https://developer.chrome.com/blog/introducing-scheduler-yield-origin-trial#the_problem_with_current_yielding_strategies\n// so for browsers not supporting yield, we guarantee execution for high priority actions, but this does not create space for a paint opportunity as trade-off.\nreturn Promise.resolve();}return new Promise(resolve=>{setTimeout(resolve);});}/**\n * Helper function for `yieldToMain`, which yields before calling `fn`.\n * @see yieldToMain\n */export async function yieldBeforeCb(fn,options){await yieldToMain(options);return fn();}/**\n * Similar to `yieldToMain`, but also waits for the next animation frame before yielding (with a fallback of 100ms if the animation frame never fires).\n * Compared to `yieldToMain`, it guarantees improved INP, but might make processing a little slower. Use only if necessary.\n * @see yieldToMain\n */export function interactionResponse(options){return new Promise(resolve=>{setTimeout(resolve,200)// Fallback for the case where the animation frame never fires.\n;requestAnimationFrame(()=>{void yieldBeforeCb(resolve,options);});});}/**\n * Runs `fn` after the next paint. Similar to `useEffect`, but *guarantees* that the function is run after the next paint.\n * @important Does not support a cleanup fn.\n * @see https://thoughtspile.github.io/2021/11/15/unintentional-layout-effect/\n */export function useAfterPaintEffect(fn,deps,options){useLayoutEffect(()=>{const runAfterPaint=async()=>{await interactionResponse(options);fn();};void runAfterPaint();// eslint-disable-next-line react-hooks/exhaustive-deps -- deps are passed in\n},deps);}\nexport const __FramerMetadata__ = {\"exports\":{\"useAfterPaintEffect\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getCookie\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"safeJSONParse\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFlexboxValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"yieldBeforeCb\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getShadow\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getMultipleShadows\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"FlexboxPosition\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"yieldToMain\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"interactionResponse\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"DEFAULT_FONT_FAMILY\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "import{useIsOnFramerCanvas}from\"framer\";import{isBrowser}from\"framer-motion\";import{useEffect,useReducer}from\"react\";import{initGTM,sendToGTM}from\"https://framerusercontent.com/modules/RFM6zI5MxOiqwwNiQep4/CmmUoyXEMOtoYkkeGDZZ/send.js\";import{safeJSONParse,yieldBeforeCb}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js\";function toGTMConsent(consent){return{functionality_storage:consent.necessary?\"granted\":\"denied\",security_storage:consent.necessary?\"granted\":\"denied\",ad_storage:consent.marketing?\"granted\":\"denied\",ad_user_data:consent.marketing?\"granted\":\"denied\",ad_personalization:consent.marketing?\"granted\":\"denied\",analytics_storage:consent.analytics?\"granted\":\"denied\",personalization_storage:consent.preferences?\"granted\":\"denied\"};}function reducer(state,action){switch(action.type){case\"autoAccept\":return{...state,sync:true,autoAccepted:true,modes:{analytics:true,marketing:true,necessary:true,preferences:true}};case\"acceptAll\":return{...state,sync:true,dismissed:true,modes:{analytics:true,marketing:true,necessary:true,preferences:true}};case\"rejectAll\":return{...state,sync:true,dismissed:true,modes:{analytics:false,marketing:false,necessary:false,preferences:false}};case\"acceptCurrent\":return{...state,dismissed:true,sync:true};case\"update\":return{...state,modes:{...state.modes,...action.modes},sync:action.sync};case\"toggle\":return{...state,modes:{...state.modes,[action.mode]:!state.modes[action.mode]}};case\"initFromLocalStorage\":return{...state,modes:action.modes,dismissed:action.dismissed,autoAccepted:action.autoAccepted,initializedFromLocalStorage:true,sync:true};case\"dismiss\":return{...state,dismissed:true};case\"synced\":return{...state,sync:false,hasSynced:true};default:return state;}}const initialState={dismissed:false,autoAccepted:false,modes:null,sync:false,initializedFromLocalStorage:false,hasSynced:false};export const defaultConsent={necessary:false,analytics:false,marketing:false,preferences:false};// Keep track of if GTM has been loaded as a script and default consent has been set,\n// to ensure the script does not keep appending between page switches.\nlet hasInitializedGTM=false;export function useConsent({gtmId,defaultConsent,gtmLoadedExternally=false}){const[state,dispatch]=useReducer(reducer,initialState);const isOnFramerCanvas=useIsOnFramerCanvas();const consentModeLocalStorageKey=\"framerCookiesConsentMode\";const dismissedLocalStorageKey=\"framerCookiesDismissed\";const autoAcceptedLocalStorageKey=\"framerCookiesAutoAccepted\";function getStateFromLocalStorage(){const consentFromLocalStorage=localStorage.getItem(consentModeLocalStorageKey);const dismissedFromLocalStorage=localStorage.getItem(dismissedLocalStorageKey);const autoAcceptedFromLocalStorage=localStorage.getItem(autoAcceptedLocalStorageKey);const isDismissed=dismissedFromLocalStorage!==null;const isAutoAccepted=autoAcceptedFromLocalStorage!==null;const hasConsentInLocalStorage=consentFromLocalStorage!==null;const consentInLocalStorageIsNotDefault=isDismissed||isAutoAccepted;const shouldLoadConsentFromLocalStorage=hasConsentInLocalStorage&&consentInLocalStorageIsNotDefault;dispatch({type:\"initFromLocalStorage\",dismissed:isDismissed,autoAccepted:isAutoAccepted,modes:shouldLoadConsentFromLocalStorage?safeJSONParse(consentFromLocalStorage,()=>localStorage.removeItem(consentModeLocalStorageKey)):defaultConsent});}function syncToGTM(){if(gtmId){if(!hasInitializedGTM&&!gtmLoadedExternally){// This is the first time we sync consent, so we save it as \"default\" and initialize tag manager.\n// This order is important, because we need to have set the default consent BEFORE we initialize GTM.\n// https://developers.google.com/tag-platform/devguides/consent?tab=tag-manager&sjid=11348191096952324675-EU#implementation_example\n// It might seem weird that we're \"sending\" before initializing, but \"sending\" here means building up\n// the \"dataLayer\" object that GTM picks up when it initializes.\nsendToGTM(\"consent\",\"default\",toGTMConsent(state.modes));initGTM({dataLayer:undefined,dataLayerName:\"dataLayer\",environment:undefined,nonce:undefined,injectScript:true,id:gtmId});hasInitializedGTM=true;}else{hasInitializedGTM=true;sendToGTM(\"consent\",\"update\",toGTMConsent(state.modes));// must be sent like this or else GTM doesn't act on it:\nwindow.dataLayer.push({event:\"cookie_consent_update\"});}}}useEffect(()=>{if(isOnFramerCanvas)return;yieldBeforeCb(()=>getStateFromLocalStorage(),{priority:\"user-blocking\"});},[]);// Anytime the dismissed value is updated, we need to persist it in local storage.\nuseEffect(()=>{if(isOnFramerCanvas)return;if(state.dismissed){localStorage.setItem(dismissedLocalStorageKey,\"true\");}},[state.dismissed]);// Anytime consent is auto accepted, we need to persist it in local storage.\nuseEffect(()=>{if(isOnFramerCanvas)return;if(state.autoAccepted){localStorage.setItem(autoAcceptedLocalStorageKey,\"true\");}},[state.autoAccepted]);// Sync data to dataLayer and localStorage.\nuseEffect(()=>{if(isOnFramerCanvas)return;const shouldSync=state.sync&&isBrowser&&state.modes!==null;if(!shouldSync){return;}yieldBeforeCb(()=>{syncToGTM();// Save locally\nlocalStorage.setItem(consentModeLocalStorageKey,JSON.stringify(state.modes));dispatch({type:\"synced\"});},{priority:\"user-blocking\"});},[state.sync]);function dismiss(){dispatch({type:\"dismiss\"});localStorage.setItem(dismissedLocalStorageKey,\"true\");}function autoAccept(){dispatch({type:\"autoAccept\"});}function acceptAll(){dispatch({type:\"acceptAll\"});}function rejectAll(){dispatch({type:\"rejectAll\"});}function acceptCurrent(){dispatch({type:\"acceptCurrent\"});}function toggleMode(mode){dispatch({type:\"toggle\",mode});}return{modes:state.modes,isInitialized:state.hasSynced,isDismissed:state.dismissed,isAutoAccepted:state.autoAccepted,dismiss,autoAccept,acceptAll,rejectAll,acceptCurrent,toggleMode};}\nexport const __FramerMetadata__ = {\"exports\":{\"defaultConsent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ConsentModes\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ConsentModeName\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useConsent\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./consent.map", "// Check if visitor is in EU\nconst countries=[\"BE\",\"EL\",\"LT\",\"PT\",\"BG\",\"ES\",\"LU\",\"RO\",\"CZ\",\"FR\",\"RE\",\"GP\",\"MQ\",\"GF\",\"YT\",\"BL\",\"MF\",\"PM\",\"WF\",\"PF\",\"NC\",\"HU\",\"SI\",\"DK\",\"FO\",\"GL\",\"HR\",\"MT\",\"SK\",\"DE\",\"IT\",\"NL\",\"AW\",\"CW\",\"SX\",\"FI\",\"AX\",\"EE\",\"CY\",\"AT\",\"SE\",\"IE\",\"LV\",\"PL\",\"UK\",\"GB\",\"AI\",\"BM\",\"IO\",\"VG\",\"KY\",\"FK\",\"GI\",\"MS\",\"PN\",\"SH\",\"TC\",\"GG\",\"JE\",\"IM\"];const isInEUTimezone=()=>{var _Intl_DateTimeFormat_resolvedOptions_timeZone,_Intl_DateTimeFormat_resolvedOptions,_Intl_DateTimeFormat,_Intl;return(_Intl=Intl)===null||_Intl===void 0?void 0:(_Intl_DateTimeFormat=_Intl.DateTimeFormat())===null||_Intl_DateTimeFormat===void 0?void 0:(_Intl_DateTimeFormat_resolvedOptions=_Intl_DateTimeFormat.resolvedOptions())===null||_Intl_DateTimeFormat_resolvedOptions===void 0?void 0:(_Intl_DateTimeFormat_resolvedOptions_timeZone=_Intl_DateTimeFormat_resolvedOptions.timeZone)===null||_Intl_DateTimeFormat_resolvedOptions_timeZone===void 0?void 0:_Intl_DateTimeFormat_resolvedOptions_timeZone.startsWith(\"Europe\");};const isEULocale=()=>{var _navigator_languages;var _navigator_language;const locale=(_navigator_language=navigator.language)!==null&&_navigator_language!==void 0?_navigator_language:(_navigator_languages=navigator.languages)===null||_navigator_languages===void 0?void 0:_navigator_languages[0];return countries.some(country=>{var _locale_toUpperCase;return locale===null||locale===void 0?void 0:(_locale_toUpperCase=locale.toUpperCase())===null||_locale_toUpperCase===void 0?void 0:_locale_toUpperCase.includes(country);});};let _inEU=null;export const inEU=()=>{if(_inEU===null)_inEU=isInEUTimezone()||isEULocale();return _inEU;};\nexport const __FramerMetadata__ = {\"exports\":{\"inEU\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./inEU.map", "import{isBrowser}from\"framer-motion\";import{inEU}from\"https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/gnipUJynzv8FJkpTy04V/inEU.js\";export function useRegion({content,useRegionFromProps}){const isInEUBasedOnLocation=isBrowser?inEU():false;const regionBasedOnLocation=isInEUBasedOnLocation?\"EU\":\"World\";const regionFromProps=content.isEU?\"EU\":\"World\";const regionContent={EU:{title:content.euTitle,description:content.euDescription,type:content.euType,defaults:content.euDefaults,policy:content.euPolicy,blocking:content.euBlocking,showReject:content.euType===\"advanced\"?content.euShowReject:true},World:{title:content.worldTitle,description:content.worldDescription,type:content.worldType,defaults:content.worldDefaults,policy:content.worldPolicy,blocking:content.worldBlocking,showReject:content.worldType===\"advanced\"?content.worldShowReject:true}};return regionContent[useRegionFromProps?regionFromProps:regionBasedOnLocation];}\nexport const __FramerMetadata__ = {\"exports\":{\"RegionContent\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RegionType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRegion\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState,lazy,Suspense}from\"react\";import{withCSS}from\"framer\";import{AnimatePresence,motion}from\"framer-motion\";import{DEFAULT_FONT_FAMILY,getMultipleShadows,getShadow}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js\";const SPACING=20;// if you update the Toggle component inside this project, copy the new URL to here:\nconst Toggle=/*#__PURE__*/lazy(()=>import(\"https://framerusercontent.com/modules/QDCSmi7dYWSK5AcRSFyX/iWVjq9atvKQLvxgv6qiM/Blf0sjosZ.js\"));export const Banner=withCSS(function Banner({banner,button,region,options,previewOptions,consentModes,onDismiss,onAcceptAll,onRejectAll,onAcceptCurrent,onToggleConsent,animateOnMount}){var _banner_style_border;const maxHeightReduction=banner.insetPerSide?banner.insetTop+banner.insetBottom:banner.inset*2;const linkColor=banner.style.link||button.primary.fill;const paddingValue=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;const bannerShadow=getShadow(banner.style.shadow);const borderShadow=((_banner_style_border=banner.style.border)===null||_banner_style_border===void 0?void 0:_banner_style_border.width)?`inset 0 0 0 ${banner.style.border.width}px ${banner.style.border.color}`:null;const bannerStyle={background:banner.style.fill,boxShadow:getMultipleShadows(bannerShadow,borderShadow),overflow:\"hidden\",borderRadius:banner.style.border.radius};return /*#__PURE__*/_jsx(motion.div,{initial:animateOnMount&&{x:banner.animation.x,y:banner.animation.y,scale:banner.animation.scale,opacity:0},animate:{y:0,x:0,scale:1,opacity:1},exit:{x:banner.animation.x,y:banner.animation.y,scale:banner.animation.scale,opacity:0},transition:animateOnMount?banner.animation.transition:{duration:0},style:{fontFamily:DEFAULT_FONT_FAMILY,maxHeight:`calc(100vh - ${maxHeightReduction}px)`,flexDirection:\"column\",gap:12,position:\"relative\",display:\"flex\",zIndex:100,pointerEvents:\"auto\"},children:/*#__PURE__*/_jsx(\"div\",{style:{...bannerStyle,overflow:\"scroll\",width:\"100%\",maxWidth:banner.width},className:`--framer-cookie-banner-container --framer-cookie-banner-type-${region.type}`,children:region.type===\"simple\"?/*#__PURE__*/_jsx(SimpleBanner,{banner:banner,button:button,linkColor:linkColor,description:region.description,policy:region.policy,onDismiss:onDismiss}):region.type===\"medium\"?/*#__PURE__*/_jsx(AcceptRejectBanner,{banner:banner,button:button,linkColor:linkColor,title:region.title,description:region.description,policy:region.policy,onAccept:onAcceptAll,onReject:onRejectAll}):/*#__PURE__*/_jsx(OptionsBanner,{banner:banner,button:button,options:options,previewOptions:previewOptions,linkColor:linkColor,title:region.title,description:region.description,showReject:region.showReject,policy:region.policy,onOptionToggle:onToggleConsent,consent:consentModes,onAcceptAll:onAcceptAll,onRejectAll:onRejectAll,onAcceptCurrent:onAcceptCurrent})})});},[`.--framer-cookie-banner-container::-webkit-scrollbar { display: none; }`,`.--framer-cookie-banner-container { \n            -ms-overflow-style: none; \n            scrollbar-width: none;  \n        }`]);function SimpleBanner({banner,button,description,policy,onDismiss,linkColor}){const padding=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"row\",padding,gap:SPACING},children:[/*#__PURE__*/_jsx(Description,{style:{...banner.style.fontBody,flex:1,alignItems:\"center\",color:banner.style.colorBody},linkColor:linkColor,description:description,policy:policy}),/*#__PURE__*/_jsx(motion.div,{style:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\"},children:/*#__PURE__*/_jsx(Button,{onClick:onDismiss,settings:{...button,fluid:false},id:\"dismiss\",children:button.labels.confirm})})]});}function AcceptRejectBanner({banner,button,title,linkColor,description,policy,onAccept,onReject}){const padding=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;return /*#__PURE__*/_jsxs(\"div\",{style:{padding},children:[/*#__PURE__*/_jsxs(\"div\",{children:[title&&/*#__PURE__*/_jsx(Headline,{style:{...banner.style.fontTitle,color:banner.style.colorTitle},children:title}),/*#__PURE__*/_jsx(Description,{style:{...banner.style.fontBody,color:banner.style.colorBody},linkColor:linkColor,description:description,policy:policy})]}),/*#__PURE__*/_jsxs(Buttons,{direction:button.direction,children:[/*#__PURE__*/_jsx(Button,{settings:button,onClick:onReject,id:\"reject\",children:button.labels.reject}),/*#__PURE__*/_jsx(Button,{settings:button,primary:true,onClick:onAccept,id:\"accept\",children:button.labels.accept})]})]});}function OptionsBanner({banner,button,options,previewOptions,title,description,policy,showReject=true,linkColor,consent,onAcceptCurrent,onAcceptAll,onRejectAll,onOptionToggle}){const[showOptions,setShowOptions]=useState(false);const optionTheme={...options.style,color:banner.style.colorBody};const padding=banner.paddingPerSide?`${banner.paddingTop}px ${banner.paddingRight}px ${banner.paddingBottom}px ${banner.paddingLeft}px`:`${banner.padding}px`;// const optionNames = consent && Object.keys(consent)\nconst optionNames=[\"necessary\",\"preferences\",\"analytics\",\"marketing\"];const shouldShowOptions=showOptions||previewOptions;return /*#__PURE__*/_jsxs(\"div\",{style:{padding},children:[/*#__PURE__*/_jsxs(\"div\",{children:[title&&/*#__PURE__*/_jsx(Headline,{style:{...banner.style.fontTitle,color:banner.style.colorTitle},children:title}),/*#__PURE__*/_jsx(Description,{style:{...banner.style.fontBody,color:banner.style.colorBody},linkColor:linkColor,description:description,policy:policy}),/*#__PURE__*/_jsx(AnimatePresence,{children:shouldShowOptions&&/*#__PURE__*/_jsx(motion.div,{initial:previewOptions?null:{opacity:0,height:0},animate:{opacity:1,height:\"auto\"},exit:{opacity:0,height:0},style:{display:\"flex\",flexDirection:\"column\",gap:10,marginTop:SPACING,overflow:\"hidden\"},children:optionNames&&optionNames.map(option=>/*#__PURE__*/_jsx(Option,{title:options[option].title,description:options[option].description,titleColor:banner.style.colorTitle,descriptionColor:banner.style.colorBody,showDescription:options.descriptions,enabled:consent[option],onClick:()=>onOptionToggle(option),theme:optionTheme,optional:option===\"necessary\"?options[option].optional:true}))},\"modal\")})]}),/*#__PURE__*/_jsx(Buttons,{direction:button.direction,children:shouldShowOptions?/*#__PURE__*/_jsx(Button,{settings:button,primary:true,onClick:onAcceptCurrent,id:\"accept\",children:button.labels.save}):/*#__PURE__*/_jsxs(_Fragment,{children:[showReject&&/*#__PURE__*/_jsx(Button,{settings:button,onClick:onRejectAll,id:\"reject\",children:button.labels.rejectAll}),/*#__PURE__*/_jsx(Button,{settings:button,onClick:()=>{setShowOptions(true);},id:\"customize\",children:button.labels.customize}),/*#__PURE__*/_jsx(Button,{settings:button,primary:true,onClick:onAcceptAll,id:\"accept\",children:button.labels.acceptAll})]})})]});}function Option({title,titleColor,description,descriptionColor,showDescription,enabled,optional,onClick,theme}){const paddingValue=theme.paddingPerSide?`${theme.paddingTop}px ${theme.paddingRight}px ${theme.paddingBottom}px ${theme.paddingLeft}px`:`${theme.padding}px`;const borderShadow=theme.border?`inset 0 0 0 ${theme.border.width}px ${theme.border.color}`:null;return /*#__PURE__*/_jsxs(motion.div,{style:{boxShadow:borderShadow,background:theme.background,borderRadius:theme.border.radius,padding:paddingValue,cursor:\"pointer\",userSelect:\"none\",pointerEvents:\"all\"},onClick:onClick,whileHover:{opacity:.5},children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",justifyContent:\"space-between\"},children:[/*#__PURE__*/_jsx(\"p\",{style:{margin:0,fontWeight:600,fontSize:12,color:titleColor,...theme.fontTitle},children:title}),optional?/*#__PURE__*/_jsx(Suspense,{children:/*#__PURE__*/_jsx(Toggle,{variant:enabled?\"On\":\"Off\",background:theme.toggleColor,backgroundInactive:theme.toggleColorInactive})}):/*#__PURE__*/_jsx(\"p\",{style:{margin:0,fontSize:12,color:theme.toggleColor,...theme.fontTitle,fontWeight:400},children:\"Always active\"})]}),description&&/*#__PURE__*/_jsx(\"p\",{style:{margin:0,marginTop:10,fontSize:12,lineHeight:1.5,color:descriptionColor,...theme.fontBody},children:description})]});}function Headline({children,style}){return /*#__PURE__*/_jsx(\"p\",{style:{fontSize:14,margin:\"0px 0px 10px 0px\",fontWeight:\"bold\",padding:0,...style},children:children});}function Description({style,description,policy,linkColor}){const shouldShow=description||(policy===null||policy===void 0?void 0:policy.link);if(!shouldShow)return null;if(!description){return /*#__PURE__*/_jsx(DescriptionParagraph,{policy:policy,style:style,linkColor:linkColor});}// @ivan: Support rendering the description in multiple paragraphs.\n// This is a site speed optimization: it allows to split a single\n// huge <p> into several smaller ones, which prevents the huge <p>\n// from becoming an LCP element.\nconst descriptionParagraphs=description===null||description===void 0?void 0:description.split(\"\\n\\n\");return description.split(\"\\n\\n\").map((line,index)=>/*#__PURE__*/_jsx(DescriptionParagraph,{line:line,// Only render the policy in the last paragraph\n    policy:index===descriptionParagraphs.length-1?policy:null,style:{// Add a spacing between paragraphs\n    marginTop:index>0?4:0,...style},linkColor:linkColor},index));}function DescriptionParagraph({line,policy,style,linkColor}){return /*#__PURE__*/_jsxs(\"p\",{style:{lineHeight:1.5,margin:0,padding:0,fontSize:14,...style},children:[line,line&&(policy===null||policy===void 0?void 0:policy.link)?\" \":null,(policy===null||policy===void 0?void 0:policy.link)&&/*#__PURE__*/_jsxs(\"span\",{children:[policy===null||policy===void 0?void 0:policy.prefix,\" \",/*#__PURE__*/_jsx(\"a\",{href:policy===null||policy===void 0?void 0:policy.link,target:\"_blank\",style:{color:linkColor,textDecoration:\"none\"},children:policy===null||policy===void 0?void 0:policy.label}),\".\"]})]});}function Buttons({children,direction}){return /*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:direction,gap:10,marginTop:16},children:children});}const Button=withCSS(function Button({id,children,primary,settings,onClick}){const paddingValue=settings.paddingPerSide?`${settings.paddingTop}px ${settings.paddingRight}px ${settings.paddingBottom}px ${settings.paddingLeft}px`:`${settings.padding}px`;const theme=primary?settings.primary:settings.secondary;var _settings_hoverOpacity,_settings_tapOpacity;return /*#__PURE__*/_jsx(motion.input,{className:\"__framer-cookie-component-button\",id:`__framer-cookie-component-button-${id}`,onClick:onClick,type:\"button\",value:`${children}`,whileHover:{opacity:(_settings_hoverOpacity=settings.hoverOpacity)!==null&&_settings_hoverOpacity!==void 0?_settings_hoverOpacity:.6},whileTap:{opacity:(_settings_tapOpacity=settings.tapOpacity)!==null&&_settings_tapOpacity!==void 0?_settings_tapOpacity:.4},style:{WebkitAppearance:\"none\",appearance:\"none\",width:settings.fluid?\"100%\":\"auto\",height:\"auto\",border:\"none\",padding:paddingValue,borderRadius:settings.borderRadius,boxShadow:getShadow(theme.shadow),background:theme.fill,color:theme.color,fontSize:14,lineHeight:1,cursor:\"pointer\",fontWeight:settings.font?\"unset\":600,...settings.font}});},\".__framer-cookie-component-button:focus:not(:focus-visible){outline-color:transparent}\");\nexport const __FramerMetadata__ = {\"exports\":{\"Banner\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"BannerComponentProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Banner.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsOnFramerCanvas,withCSS}from\"framer\";import{AnimatePresence,isBrowser,motion}from\"framer-motion\";import{lazy,Suspense,useEffect,useState}from\"react\";import{createPortal}from\"react-dom\";import{defaultConsent,useConsent}from\"https://framerusercontent.com/modules/zvf2WTzc98u6EX2y7YDj/gvNUph1oNh8l2qQafSUu/consent.js\";import{useRegion}from\"https://framerusercontent.com/modules/0oeZpJVursioGAbwgB9e/d7M4abVz5jhxcjrlWV66/region.js\";import{Banner}from\"https://framerusercontent.com/modules/EkwkxVF9vkTs720qqBC8/77ZjdIUSoepa5KTwP0oH/Banner.js\";import{inEU}from\"https://framerusercontent.com/modules/HKzIAGtbudIGLRAteuFH/gnipUJynzv8FJkpTy04V/inEU.js\";import{DEFAULT_FONT_FAMILY,getFlexboxValues,interactionResponse,yieldBeforeCb}from\"https://framerusercontent.com/modules/tfq8EDfrazNLXzc9LJte/hLcdFz4t8UjInDMvzq41/utils.js\";// Keep track of open state between page reloads\nlet initiallyOpen=false;/**\n * COOKIE BANNER\n * By Floris Verloop\n *\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n *\n * @framerDisableUnlink\n *\n */export default function CookieBanner({gtmId,preview,trigger,banner,button,content,options,style,gtmLoadedExternally,onShown,onConsentChange,onAccept,onDismiss,onReject,onSavePreferences}){const isOnFramerCanvas=useIsOnFramerCanvas();const isPreview=preview&&isOnFramerCanvas;const isInEU=isBrowser?inEU():false;const region=useRegion({content,useRegionFromProps:isPreview});const consent=useConsent({gtmId,defaultConsent:region.defaults,gtmLoadedExternally});const[isOpen,setIsOpen]=useState(initiallyOpen);// On page switch, disable all transitions so the banner shows up as fast as possible.\nconst[instantlyShowOnMount,setInstantlyShowOnMount]=useState(initiallyOpen);useEffect(()=>{// Save open state between page switches\ninitiallyOpen=isOpen;// Disable instantly show on mount after first open\nif(isOpen){setInstantlyShowOnMount(false);}// Track shown event\nif(isOpen&&!isPreview&&onShown){yieldBeforeCb(()=>onShown({isInEU}),{priority:\"user-blocking\"});}},[isOpen]);// Check if user should be prompted\nuseEffect(()=>{const noConsentGiven=consent.isInitialized&&!consent.isDismissed;const shouldAutoAccept=region.type===\"simple\"&&!consent.isAutoAccepted;if(noConsentGiven){performance.mark(\"framer-cookie-open\");setIsOpen(true);/** Automatically accept all cookies for simple banner. */if(shouldAutoAccept){consent.autoAccept();// Fire callback\nif(onAccept){yieldBeforeCb(()=>onAccept({isInEU}));}}}if(consent.isDismissed){setIsOpen(false);}},[consent.isInitialized,consent.isDismissed]);useEffect(()=>{if(onConsentChange){yieldBeforeCb(()=>onConsentChange({isInEU,consent:consent.modes}));}},[consent.modes]);async function handleDismiss(){await interactionResponse();consent.dismiss();setIsOpen(false);// Fire callback\nif(onDismiss){yieldBeforeCb(()=>onDismiss({isInEU}));}}async function handleAcceptAll(){await interactionResponse();consent.acceptAll();setIsOpen(false);// Fire callback\nif(onAccept){yieldBeforeCb(()=>onAccept({isInEU}));}}async function handleRejectAll(){await interactionResponse();consent.rejectAll();setIsOpen(false);// Fire callback\nif(onReject){yieldBeforeCb(()=>onReject({isInEU}));}}async function handleAcceptCurrent(){await interactionResponse();consent.acceptCurrent();setIsOpen(false);// Fire callbacks\nyieldBeforeCb(()=>{if(onAccept){onAccept({isInEU});}});yieldBeforeCb(()=>{if(onSavePreferences){onSavePreferences({isInEU});}});}if(isPreview){return /*#__PURE__*/_jsx(\"div\",{style:{...style,width:banner.width},children:/*#__PURE__*/_jsx(Banner,{banner:banner,button:button,region:region,options:options,previewOptions:isPreview&&options.preview,consentModes:{...defaultConsent,necessary:true},animateOnMount:false})});}return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(Trigger,{style:style,trigger:trigger,onClick:()=>setIsOpen(true)}),/*#__PURE__*/_jsx(Overlay,{banner:banner,button:button,region:region,options:options,consentModes:consent.modes,animateOnMount:!instantlyShowOnMount,onAcceptAll:handleAcceptAll,onAcceptCurrent:handleAcceptCurrent,onRejectAll:handleRejectAll,onDismiss:handleDismiss,onToggleConsent:consent.toggleMode,isOpen:isOpen})]});}const IconCookie=/*#__PURE__*/lazy(()=>import(\"https://framerusercontent.com/modules/80EyUU0Nk6u7skW3IlHH/qKhU3oZiLDe4R0LcF3Tp/Icons.js\"));function Overlay(props){var _props_banner_style;const insetValue=props.banner.insetPerSide?`${props.banner.insetTop}px ${props.banner.insetRight}px ${props.banner.insetBottom}px ${props.banner.insetLeft}px`:`${props.banner.inset}px`;const{justifyContent,alignItems}=getFlexboxValues(props.banner.position);const isOpen=props.isOpen;const[shouldRenderPortal,setShouldRenderPortal]=useState(isOpen);// if the portal has previously been rendered, we want to keep rendering the portal, which ensures:\n// - that AnimatePresence works (fade out effect)\n// - we don't cause body style recalc/reflow when the DOM node is removed\nif(!shouldRenderPortal&&isOpen)setShouldRenderPortal(isOpen);if(!shouldRenderPortal)return null;const blocking=props.region.blocking;return /*#__PURE__*/createPortal(/*#__PURE__*/_jsx(\"div\",{style:{display:\"contents\"},children:/*#__PURE__*/_jsx(AnimatePresence,{children:isOpen?/*#__PURE__*/_jsxs(motion.div,{style:{// We only need to span to the full viewport width if the overlay is blocking.\n// Otherwise, we optimize for a smaller layer size. see: https://framer-team.slack.com/archives/C05V49Q4NJ2/p1709820207863249\ntop:blocking||alignItems===\"flex-start\"?0:undefined,left:blocking||justifyContent===\"flex-start\"?0:undefined,right:blocking||justifyContent===\"flex-end\"?0:undefined,height:blocking?\"100%\":undefined,width:blocking||justifyContent===\"center\"?\"100%\":undefined,bottom:blocking||alignItems===\"flex-end\"?0:undefined,boxSizing:\"border-box\",position:\"fixed\",touchAction:\"none\",padding:insetValue,zIndex:props.banner.zIndex,display:\"flex\",flexDirection:\"row\",gap:20,justifyContent:\"center\",pointerEvents:blocking?\"all\":\"none\"},children:[blocking&&/*#__PURE__*/_jsx(Backdrop,{color:(_props_banner_style=props.banner.style)===null||_props_banner_style===void 0?void 0:_props_banner_style.backdrop}),/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",display:\"flex\",justifyContent,alignItems,pointerEvents:\"none\",maxWidth:props.banner.containerWidth>0?props.banner.containerWidth:\"unset\"},children:/*#__PURE__*/_jsx(Banner,{...props})})]}):null})}),document.body);}const Trigger=withCSS(({trigger,style,onClick})=>{const isOnFramerCanvas=useIsOnFramerCanvas();if(trigger.type!==\"none\"){return /*#__PURE__*/_jsx(\"button\",{className:\"__framer-cookie-component-button\",\"aria-label\":\"Cookie Trigger\",style:{width:\"100%\",height:\"100%\",background:\"none\",display:\"flex\",border:\"none\",padding:0,color:trigger.color,fontSize:16,cursor:\"pointer\",...trigger.textFont},onClick:onClick,children:trigger.type===\"icon\"?/*#__PURE__*/_jsx(_Fragment,{children:trigger.iconType===\"custom\"&&trigger.iconImage?/*#__PURE__*/_jsx(\"img\",{alt:\"icon entry point for Site Search\",src:trigger.iconImage.src,width:trigger.iconSize,height:trigger.iconSize}):/*#__PURE__*/_jsx(Suspense,{children:/*#__PURE__*/_jsx(IconCookie,{width:trigger.iconSize,height:trigger.iconSize,color:trigger.color})})}):/*#__PURE__*/_jsx(\"span\",{style:{whiteSpace:\"nowrap\"},children:trigger.text})});}if(isOnFramerCanvas){return /*#__PURE__*/_jsxs(\"div\",{style:{borderRadius:8,color:\"#09F\",border:\"1px dashed #09F\",background:\"rgba(0, 153, 255, 0.1)\",padding:20,display:\"flex\",flexDirection:\"column\",gap:5,fontFamily:DEFAULT_FONT_FAMILY,textAlign:\"center\",justifyContent:\"center\",width:164,...style},children:[/*#__PURE__*/_jsx(\"p\",{style:{fontSize:12,fontWeight:600,lineHeight:1,margin:0},children:\"Cookie Banner\"}),/*#__PURE__*/_jsx(\"p\",{style:{fontSize:12,lineHeight:1.5,margin:0},children:\"Put on a page to add a Cookie Banner.\"})]});}},\".__framer-cookie-component-button:focus:not(:focus-visible){outline-color:transparent}\");function Backdrop({color}){return /*#__PURE__*/_jsx(motion.div,{initial:{opacity:0},animate:{opacity:1},exit:{opacity:0},style:{position:\"absolute\",top:0,left:0,right:0,bottom:0,width:\"100%\",height:\"100%\",backgroundColor:color,pointerEvents:\"none\"}});}addPropertyControls(CookieBanner,{gtmId:{title:\"GTM ID\",type:ControlType.String,placeholder:\"GTM-AAAAAAA\",description:\"Your GTM container ID.\\n[Learn more](https://www.framer.com/learn/cookie-banner/)\"},preview:{type:ControlType.Boolean,defaultValue:true,description:\"Lets you preview the banner on the Canvas.\"},trigger:{type:ControlType.Object,buttonTitle:\"Icon, Text\",controls:{type:{title:\"Type\",type:ControlType.Enum,options:[\"text\",\"icon\",\"none\"],optionTitles:[\"Text\",\"Icon\",\"None\"],defaultValue:\"text\",displaySegmentedControl:true},iconType:{title:\"Icon\",type:ControlType.Enum,options:[\"default\",\"custom\"],optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true,hidden:props=>props.type!==\"icon\"},text:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.type!==\"text\"},textFont:{// @ts-ignore - internal\ntype:ControlType.Font,title:\" \",controls:\"extended\",hidden:props=>props.type!==\"text\"},iconSize:{title:\"Size\",type:ControlType.Number,displayStepper:true,defaultValue:24,hidden:props=>props.type!==\"icon\"},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#333\",hidden:props=>props.type===\"none\"||props.type===\"icon\"&&props.iconType===\"custom\"},iconImage:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.iconType===\"default\"}}},banner:{title:\"Banner\",type:ControlType.Object,buttonTitle:\"Font, Styles\",controls:{position:{type:ControlType.Enum,title:\"Position\",options:[\"top-left\",\"top-center\",\"top-right\",\"bottom-right\",\"bottom-center\",\"bottom-left\"],optionTitles:[\"Top Left\",\"Top Center\",\"Top Right\",\"Bottom Right\",\"Bottom Center\",\"Bottom Left\"],defaultValue:\"bottom-right\"},zIndex:{title:\"Z Index\",type:ControlType.Number,defaultValue:10,displayStepper:true,min:0,max:10},width:{title:\"Width\",type:ControlType.Number,defaultValue:360,min:200,max:1e3,displayStepper:true,step:5},containerWidth:{title:\"Wrapping\",type:ControlType.Number,defaultValue:0,min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:20,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},inset:{title:\"Inset\",type:ControlType.FusedNumber,toggleKey:\"insetPerSide\",toggleTitles:[\"Inset\",\"Inset per side\"],defaultValue:20,valueKeys:[\"insetTop\",\"insetRight\",\"insetBottom\",\"insetLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Object,title:\"Style\",buttonTitle:\"Fonts, Colors, Shadow\",controls:{fontTitle:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Title\",controls:\"extended\"},colorTitle:{title:\" \",type:ControlType.Color,defaultValue:\"#000\"},fontBody:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Body\",controls:\"extended\"},colorBody:{title:\" \",type:ControlType.Color,defaultValue:\"#444\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#FFF\"},link:{title:\"Link\",type:ControlType.Color,optional:true,defaultValue:\"#999\"},border:{type:ControlType.Object,title:\"Border\",buttonTitle:\"Radius, Width\",controls:{radius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:14},width:{title:\"Width\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:1},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.05)\"}}},shadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Blur\",type:ControlType.Number,min:0,max:100,defaultValue:4}}},backdrop:{title:\"Backdrop\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.1)\",hidden:(_,props)=>!props.content.euBlocking&&!props.content.worldBlocking}}},animation:{icon:\"effect\",buttonTitle:\"Options\",type:ControlType.Object,controls:{x:{type:ControlType.Number,displayStepper:true,defaultValue:0},y:{type:ControlType.Number,displayStepper:true,defaultValue:10},scale:{type:ControlType.Number,min:0,step:.1,defaultValue:1},transition:{type:ControlType.Transition}}}}},button:{title:\"Buttons\",type:ControlType.Object,buttonTitle:\"Variants, Style\",controls:{primary:{title:\"Primary\",type:ControlType.Object,buttonTitle:\"Colors, Shadow\",controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#000\"},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#FFF\"},shadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"X\",type:ControlType.Number,min:-100,max:100},shadowY:{title:\"Y\",type:ControlType.Number,min:-100,max:100},shadowBlur:{title:\"Blur\",type:ControlType.Number,min:0,max:100}}}}},secondary:{title:\"Secondary\",type:ControlType.Object,buttonTitle:\"Colors, Shadow\",controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EEE\"},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#444\"},shadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"X\",type:ControlType.Number,min:-100,max:100},shadowY:{title:\"Y\",type:ControlType.Number,min:-100,max:100},shadowBlur:{title:\"Blur\",type:ControlType.Number,min:0,max:100}}}}},labels:{type:ControlType.Object,controls:{accept:{type:ControlType.String,defaultValue:\"Accept\"},reject:{type:ControlType.String,defaultValue:\"Reject\"},acceptAll:{type:ControlType.String,defaultValue:\"Accept all\"},rejectAll:{type:ControlType.String,defaultValue:\"Reject all\"},customize:{type:ControlType.String,defaultValue:\"Customize\"},save:{type:ControlType.String,defaultValue:\"Save Preferences\"},confirm:{type:ControlType.String,defaultValue:\"Okay\"}}},font:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Font\",controls:\"extended\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:10,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},tapOpacity:{title:\"Tap Opacity\",type:ControlType.Number,step:.1,displayStepper:true,max:1,min:0,defaultValue:.4},hoverOpacity:{title:\"Hover Opacity\",type:ControlType.Number,step:.1,displayStepper:true,max:1,min:0,defaultValue:.6},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"row\",\"column\"],// @ts-ignore - internal\noptionIcons:[\"direction-horizontal\",\"direction-vertical\"],defaultValue:\"row\",displaySegmentedControl:true},fluid:{title:\"Fluid\",type:ControlType.Boolean,defaultValue:true}}},content:{title:\"Regions\",type:ControlType.Object,buttonTitle:\"World, EU\",controls:{isEU:{title:\" \",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"EU\",disabledTitle:\"World\"},euType:{title:\"Choices\",type:ControlType.Enum,options:[\"simple\",\"medium\",\"advanced\"],optionTitles:[\"None\",\"Accept/Reject\",\"Customizable\"],defaultValue:\"medium\",hidden:props=>!props.isEU},euTitle:{title:\"Title\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.euType===\"simple\"||!props.isEU},euDescription:{title:\"Description\",type:ControlType.String,defaultValue:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",displayTextArea:true,hidden:props=>!props.isEU},euPolicy:{title:\"Policy\",type:ControlType.Object,buttonTitle:\"Link, Prefix\",controls:{link:{title:\"Link\",type:ControlType.Link,defaultValue:\"https://www.framer.com/legal/policy/\"},prefix:{title:\"Prefix\",type:ControlType.String,defaultValue:\"Read our\"},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Policy\"}},hidden:props=>!props.isEU},euDefaults:{title:\"Defaults\",buttonTitle:\"Options\",type:ControlType.Object,controls:{necessary:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},preferences:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false},analytics:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false},marketing:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:false,description:\"The default consent when the user hasn\u2019t provided any yet.\"}},hidden:props=>!props.isEU},euShowReject:{title:\"Reject All\",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden:props=>props.euType!==\"advanced\"},euBlocking:{title:\"Blocking\",type:ControlType.Boolean,defaultValue:false,description:\"Renders a content blocking backdrop.\",hidden:props=>!props.isEU},worldType:{title:\"Choices\",type:ControlType.Enum,options:[\"simple\",\"medium\",\"advanced\"],optionTitles:[\"None\",\"Accept/Reject\",\"Customizable\"],defaultValue:\"simple\",hidden:props=>props.isEU},worldTitle:{title:\"Title\",type:ControlType.String,defaultValue:\"Cookie Settings\",hidden:props=>props.worldType===\"simple\"||props.isEU},worldDescription:{title:\"Description\",type:ControlType.String,defaultValue:\"We use cookies to personalize content, run ads, and analyze traffic.\",displayTextArea:true,hidden:props=>props.isEU},worldPolicy:{title:\"Policy\",type:ControlType.Object,buttonTitle:\"Link, Prefix\",controls:{link:{title:\"Link\",type:ControlType.Link},prefix:{title:\"Prefix\",type:ControlType.String,defaultValue:\"Read our\"},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Cookie Policy\"}},hidden:props=>props.isEU},worldDefaults:{title:\"Defaults\",buttonTitle:\"Options\",type:ControlType.Object,controls:{necessary:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},preferences:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},analytics:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true},marketing:{type:ControlType.Boolean,enabledTitle:\"Granted\",disabledTitle:\"Denied\",defaultValue:true,description:\"The default consent when the user hasn\u2019t provided any yet.\"}},hidden:props=>props.isEU},worldShowReject:{title:\"Reject All\",type:ControlType.Boolean,defaultValue:true,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden:props=>props.worldType!==\"advanced\"},worldBlocking:{title:\"Blocking\",type:ControlType.Boolean,defaultValue:false,description:\"Renders a content blocking backdrop.\",hidden:props=>props.isEU}}},options:{type:ControlType.Object,buttonTitle:\"Content, Styles\",hidden:(_,props)=>props.content.euType!==\"advanced\"&&props.content.worldType!==\"advanced\",controls:{preview:{type:ControlType.Boolean,defaultValue:false,description:\"Open when previewing banner on the canvas.\",hidden:(_,props)=>!props.preview},necessary:{title:\"Necessary\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Necessary\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables security and basic functionality.\",displayTextArea:true},optional:{title:\"Optional\",type:ControlType.Boolean,defaultValue:true}}},preferences:{title:\"Preferences\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Preferences\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables personalized content and settings.\",displayTextArea:true,optional:true}}},analytics:{title:\"Analytics\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Analytics\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables tracking of performance.\",displayTextArea:true}}},marketing:{title:\"Marketing\",type:ControlType.Object,buttonTitle:\"Content\",controls:{title:{title:\"Title\",type:ControlType.String,defaultValue:\"Marketing\"},description:{title:\"Description\",type:ControlType.String,defaultValue:\"Enables ads personalization and tracking.\",displayTextArea:true}}},style:{type:ControlType.Object,title:\"Style\",buttonTitle:\"Fonts, Colors\",controls:{fontTitle:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Title\",controls:\"basic\"},fontBody:{// @ts-ignore - internal\ntype:ControlType.Font,title:\"Body\",controls:\"basic\"},background:{title:\"Background\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.02)\"},border:{type:ControlType.Object,title:\"Border\",buttonTitle:\"Radius, Width\",controls:{radius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},width:{title:\"Width\",type:ControlType.Number,displayStepper:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.02)\"}}},toggleColor:{title:\"On\",type:ControlType.Color,defaultValue:\"#000\"},toggleColorInactive:{title:\"Off\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.1)\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:12,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0}}}}}});CookieBanner.displayName=\"Cookie Banner\";\nexport const __FramerMetadata__ = {\"exports\":{\"PolicyProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ContentType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ContentProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ButtonsProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"CookieBannerProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"OptionsStyle\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"CookieBanner\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"auto\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (99bc0fd)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"tuW7o_dw_\",\"ZuhZcqFvj\",\"IqVsOe_16\",\"s5j1DtBmA\"];const serializationHash=\"framer-GkJnJ\";const variantClassNames={IqVsOe_16:\"framer-v-lyskv7\",s5j1DtBmA:\"framer-v-4usy9l\",tuW7o_dw_:\"framer-v-gus46f\",ZuhZcqFvj:\"framer-v-hm1q2u\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-40};const transition1={damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Closed:\"ZuhZcqFvj\",FAQMobileClosed:\"s5j1DtBmA\",FAQMobileOpen:\"IqVsOe_16\",Open:\"tuW7o_dw_\"};const getProps=({answer,appear,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,m1wBZJAoM:(_ref=answer!==null&&answer!==void 0?answer:props.m1wBZJAoM)!==null&&_ref!==void 0?_ref:\"You can cancel your plan whenever you\u2019d like. You\u2019ll be downgraded to the free plan. You won\u2019t be locked out of any projects that have paid plans.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"tuW7o_dw_\",vd59XDbg4:(_ref2=question!==null&&question!==void 0?question:props.vd59XDbg4)!==null&&_ref2!==void 0?_ref2:\"Which pricing plan is right for me?\",ZoLXowkuc:appear!==null&&appear!==void 0?appear:props.ZoLXowkuc};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,vd59XDbg4,m1wBZJAoM,ZoLXowkuc,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"tuW7o_dw_\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap126kmcm=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"ZuhZcqFvj\");});const onAppearj4m4m4=activeVariantCallback(async(...args)=>{if(ZoLXowkuc){const res=await ZoLXowkuc(...args);if(res===false)return false;}});const onTapmregd2=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"tuW7o_dw_\");});const onTapkpky4y=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"s5j1DtBmA\");});const onTap1rwz4b=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"IqVsOe_16\");});useOnVariantChange(baseVariant,{default:onAppearj4m4m4});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"ZuhZcqFvj\",\"s5j1DtBmA\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-gus46f\",className,classNames),\"data-framer-name\":\"Open\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"tuW7o_dw_\",onTap:onTap126kmcm,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({IqVsOe_16:{\"data-framer-name\":\"FAQMobileOpen\",onTap:onTapkpky4y},s5j1DtBmA:{\"data-framer-name\":\"FAQMobileClosed\",onTap:onTap1rwz4b},ZuhZcqFvj:{\"data-framer-name\":\"Closed\",onTap:onTapmregd2}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wmx254\",layoutDependency:layoutDependency,layoutId:\"gFMoENfia\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)))\"},children:\"Which pricing plan is right for me?\"})}),className:\"framer-z3ce8e\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"BVYpMiBDI\",style:{\"--extracted-r6o4lv\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vd59XDbg4,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19q0l8o\",\"data-framer-name\":\"Chevron\",layoutDependency:layoutDependency,layoutId:\"voFh1UX92\",style:{rotate:-180},variants:{s5j1DtBmA:{rotate:0},ZuhZcqFvj:{rotate:0}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-dloh3y\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Qq1dD4Mam\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 19.5 8.25 L 12 15.75 L 4.5 8.25\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(223, 255, 222))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10716666806,withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mjsxdb\",layoutDependency:layoutDependency,layoutId:\"od69XCgmW\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(244, 244, 244))\"},children:\"You can cancel your plan whenever you\u2019d like. You\u2019ll be downgraded to the free plan. You won\u2019t be locked out of any projects that have paid plans.\"})}),className:\"framer-183bjer\",fonts:[\"GF;Plus Jakarta Sans-500\"],layoutDependency:layoutDependency,layoutId:\"ZP8iDAg1o\",style:{\"--extracted-r6o4lv\":\"rgb(244, 244, 244)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:m1wBZJAoM,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dzmlt9\",\"data-framer-name\":\"Line Bottom\",layoutDependency:layoutDependency,layoutId:\"tZyeZI1IT\",style:{backgroundColor:\"var(--token-329b73f7-53a8-405a-b051-552744604b43, rgb(0, 140, 178))\",opacity:.7}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GkJnJ.framer-s9h7vc, .framer-GkJnJ .framer-s9h7vc { display: block; }\",\".framer-GkJnJ.framer-gus46f { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 617px; }\",\".framer-GkJnJ .framer-1wmx254 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 24px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GkJnJ .framer-z3ce8e { flex: 1 0 0px; height: auto; max-width: 90%; overflow: hidden; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-GkJnJ .framer-19q0l8o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-GkJnJ .framer-dloh3y { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-GkJnJ .framer-1mjsxdb { 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 40px 0px 0px; position: relative; width: 100%; }\",\".framer-GkJnJ .framer-183bjer { flex: 1 0 0px; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-GkJnJ .framer-dzmlt9 { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GkJnJ.framer-gus46f, .framer-GkJnJ .framer-19q0l8o, .framer-GkJnJ .framer-1mjsxdb { gap: 0px; } .framer-GkJnJ.framer-gus46f > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-GkJnJ.framer-gus46f > :first-child { margin-top: 0px; } .framer-GkJnJ.framer-gus46f > :last-child { margin-bottom: 0px; } .framer-GkJnJ .framer-19q0l8o > *, .framer-GkJnJ .framer-1mjsxdb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-GkJnJ .framer-19q0l8o > :first-child, .framer-GkJnJ .framer-1mjsxdb > :first-child { margin-left: 0px; } .framer-GkJnJ .framer-19q0l8o > :last-child, .framer-GkJnJ .framer-1mjsxdb > :last-child { margin-right: 0px; } }\",\".framer-GkJnJ.framer-v-hm1q2u .framer-1wmx254 { height: min-content; }\",\".framer-GkJnJ.framer-v-lyskv7.framer-gus46f, .framer-GkJnJ.framer-v-4usy9l.framer-gus46f { width: 390px; }\",\".framer-GkJnJ.framer-v-lyskv7 .framer-1wmx254, .framer-GkJnJ.framer-v-4usy9l .framer-1wmx254 { align-content: flex-start; align-items: flex-start; height: min-content; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 137\n * @framerIntrinsicWidth 617\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZuhZcqFvj\":{\"layout\":[\"fixed\",\"auto\"]},\"IqVsOe_16\":{\"layout\":[\"fixed\",\"auto\"]},\"s5j1DtBmA\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"vd59XDbg4\":\"question\",\"m1wBZJAoM\":\"answer\",\"ZoLXowkuc\":\"appear\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBysPvqQr7=withCSS(Component,css,\"framer-GkJnJ\");export default FramerBysPvqQr7;FramerBysPvqQr7.displayName=\"FAQ\";FramerBysPvqQr7.defaultProps={height:137,width:617};addPropertyControls(FramerBysPvqQr7,{variant:{options:[\"tuW7o_dw_\",\"ZuhZcqFvj\",\"IqVsOe_16\",\"s5j1DtBmA\"],optionTitles:[\"Open\",\"Closed\",\"FAQMobileOpen\",\"FAQMobileClosed\"],title:\"Variant\",type:ControlType.Enum},vd59XDbg4:{defaultValue:\"Which pricing plan is right for me?\",displayTextArea:true,title:\"Question\",type:ControlType.String},m1wBZJAoM:{defaultValue:\"You can cancel your plan whenever you\u2019d like. You\u2019ll be downgraded to the free plan. You won\u2019t be locked out of any projects that have paid plans.\",displayTextArea:true,title:\"Answer\",type:ControlType.String},ZoLXowkuc:{title:\"Appear\",type:ControlType.EventHandler}});addFonts(FramerBysPvqQr7,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NTxXUEKi4Rw.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBysPvqQr7\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"137\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"vd59XDbg4\\\":\\\"question\\\",\\\"m1wBZJAoM\\\":\\\"answer\\\",\\\"ZoLXowkuc\\\":\\\"appear\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"617\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZuhZcqFvj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IqVsOe_16\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"s5j1DtBmA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BysPvqQr7.map", "// Generated by Framer (63f9d4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import FAQ from\"https://framerusercontent.com/modules/ETru5rDqosQZIe1MqbyG/x9Ds2O0YWmbb694QnnXg/BysPvqQr7.js\";const FAQFonts=getFonts(FAQ);const cycleOrder=[\"EB3UYWe2i\",\"NwPLL_n89\"];const serializationHash=\"framer-X84lJ\";const variantClassNames={EB3UYWe2i:\"framer-v-4tyhrq\",NwPLL_n89:\"framer-v-hby7jc\"};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 Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={FAQDesktop:\"EB3UYWe2i\",FAQMobile:\"NwPLL_n89\"};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:\"EB3UYWe2i\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"EB3UYWe2i\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"NwPLL_n89\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.ul,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-4tyhrq\",className,classNames),\"data-framer-name\":\"FAQDesktop\",layoutDependency:layoutDependency,layoutId:\"EB3UYWe2i\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({NwPLL_n89:{\"data-framer-name\":\"FAQMobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:137,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0,children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-187g1vf-container\",layoutDependency:layoutDependency,layoutId:\"B81OA1BUp-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"B81OA1BUp\",layoutId:\"B81OA1BUp\",m1wBZJAoM:\"waveX is a next-generation rowing performance tracking device integrated with a rear camera system, designed to enhance both safety and efficiency for rowers. The system offers real-time rear vision, safety alerts, and monitoring of surrounding conditions to improve overall performance. The new digitalized display provides advanced performance metrics, making it easier to track and optimize your rowing experience.\",style:{width:\"100%\"},variant:\"ZuhZcqFvj\",vd59XDbg4:\"What is waveX, and how does it help rowers?\",width:\"100%\",...addPropertyOverrides({NwPLL_n89:{variant:\"s5j1DtBmA\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:137,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+169,children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-1ogk6wy-container\",layoutDependency:layoutDependency,layoutId:\"BlWwOjsYH-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"BlWwOjsYH\",layoutId:\"BlWwOjsYH\",m1wBZJAoM:\"The rear camera is mounted at the back of your boat, streaming a live video feed to the main display. The screen processes this feed to assess your surroundings and generate safety alerts. This helps you stay aware of potential obstacles, ensuring safer rowing with real-time alerts shown directly on the display.\",style:{width:\"100%\"},variant:\"ZuhZcqFvj\",vd59XDbg4:\"How does the rear camera system work?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:137,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+338,children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-7kcq8t-container\",layoutDependency:layoutDependency,layoutId:\"v4DkF7OGa-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"v4DkF7OGa\",layoutId:\"v4DkF7OGa\",m1wBZJAoM:\"This advanced device allows you to monitor metrics such as stroke rate, stroke count, speed, distance, and more. The new display is visually enhanced, making it easier to track your performance and identify areas for improvement.\",style:{width:\"100%\"},variant:\"ZuhZcqFvj\",vd59XDbg4:\"What kind of training data can I track with the new device?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:137,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+507,children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-9bxnsj-container\",layoutDependency:layoutDependency,layoutId:\"ufbLTRw5x-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"ufbLTRw5x\",layoutId:\"ufbLTRw5x\",m1wBZJAoM:\"Yes! waveX is designed to benefit rowers of all levels. Whether you\u2019re just starting out or are an experienced rower, our system helps improve performance tracking and increase safety.\",style:{width:\"100%\"},variant:\"ZuhZcqFvj\",vd59XDbg4:\"Is the waveX system suitable for both beginners and advanced rowers?\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:137,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+676,children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-1taozn-container\",layoutDependency:layoutDependency,layoutId:\"Fp8d0LX2D-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"Fp8d0LX2D\",layoutId:\"Fp8d0LX2D\",m1wBZJAoM:\"Set up is simple. The rear camera can be easily mounted on most rowing boats using the provided kit. Detailed instructions are included, and we offer customer support to guide you through the process if needed.\",style:{width:\"100%\"},variant:\"ZuhZcqFvj\",vd59XDbg4:\"How do I set up the waveX system on my boat?\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:137,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+845,children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-ztnx40-container\",layoutDependency:layoutDependency,layoutId:\"Ea14WboQD-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"Ea14WboQD\",layoutId:\"Ea14WboQD\",m1wBZJAoM:\"Absolutely. The device allows you to choose which metrics you want to track and display, so you can tailor the experience to suit your training goals.\",style:{width:\"100%\"},variant:\"ZuhZcqFvj\",vd59XDbg4:\"Can I customize the data displayed on the new device?\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-X84lJ.framer-10z0tct, .framer-X84lJ .framer-10z0tct { display: block; }\",\".framer-X84lJ.framer-4tyhrq { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; list-style: none; margin: 0px; overflow: visible; padding: 0px; position: relative; width: 1008px; }\",\".framer-X84lJ .framer-187g1vf-container, .framer-X84lJ .framer-1ogk6wy-container, .framer-X84lJ .framer-7kcq8t-container, .framer-X84lJ .framer-9bxnsj-container, .framer-X84lJ .framer-1taozn-container, .framer-X84lJ .framer-ztnx40-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-X84lJ.framer-4tyhrq { gap: 0px; } .framer-X84lJ.framer-4tyhrq > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-X84lJ.framer-4tyhrq > :first-child { margin-top: 0px; } .framer-X84lJ.framer-4tyhrq > :last-child { margin-bottom: 0px; } }\",\".framer-X84lJ.framer-v-hby7jc.framer-4tyhrq { width: 390px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 526\n * @framerIntrinsicWidth 1008\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NwPLL_n89\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHI4S0BWx7=withCSS(Component,css,\"framer-X84lJ\");export default FramerHI4S0BWx7;FramerHI4S0BWx7.displayName=\"FAQList\";FramerHI4S0BWx7.defaultProps={height:526,width:1008};addPropertyControls(FramerHI4S0BWx7,{variant:{options:[\"EB3UYWe2i\",\"NwPLL_n89\"],optionTitles:[\"FAQDesktop\",\"FAQMobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerHI4S0BWx7,[{explicitInter:true,fonts:[]},...FAQFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHI4S0BWx7\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"526\",\"framerIntrinsicWidth\":\"1008\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NwPLL_n89\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HI4S0BWx7.map", "// Generated by Framer (ddd30d5)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,RichText,SVG,useCustomCursors,useDynamicRefs,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import CookieBanner from\"https://framerusercontent.com/modules/GbX8S6ghmyszcS2GLR2F/zTapg9rnDfIs7uo8Zb0a/Cookies.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";import Menu2 from\"#framer/local/canvasComponent/EoC2QtFD4/EoC2QtFD4.js\";import FAQList from\"#framer/local/canvasComponent/HI4S0BWx7/HI4S0BWx7.js\";import DownloadApp3 from\"#framer/local/canvasComponent/tHSi2q0pl/tHSi2q0pl.js\";import Footer2 from\"#framer/local/canvasComponent/U1NewzAVW/U1NewzAVW.js\";import Blog from\"#framer/local/collection/vZPFgnvvs/vZPFgnvvs.js\";import*as sharedStyle3 from\"#framer/local/css/AGOkGHOKm/AGOkGHOKm.js\";import*as sharedStyle from\"#framer/local/css/ITjLgBtQc/ITjLgBtQc.js\";import*as sharedStyle1 from\"#framer/local/css/mGyWh_kgC/mGyWh_kgC.js\";import*as sharedStyle2 from\"#framer/local/css/yY9DooUme/yY9DooUme.js\";import metadataProvider from\"#framer/local/webPageMetadata/Mo1ryl8_D/Mo1ryl8_D.js\";const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const EmbedFonts=getFonts(Embed);const MotionDivWithFX=withFX(motion.div);const TickerFonts=getFonts(Ticker);const FAQListFonts=getFonts(FAQList);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const SlideshowFonts=getFonts(Slideshow);const DownloadApp3Fonts=getFonts(DownloadApp3);const CookieBannerFonts=getFonts(CookieBanner);const Footer2Fonts=getFonts(Footer2);const Menu2Fonts=getFonts(Menu2);const Menu2WithVariantAppearEffect=withVariantAppearEffect(Menu2);const ContainerWithFX=withFX(Container);const breakpoints={aDeGr1xvw:\"(min-width: 1197px)\",dNtCTq2UU:\"(min-width: 810px) and (max-width: 1196px)\",l1NmqiU8C:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Aaejx\";const variantClassNames={aDeGr1xvw:\"framer-v-c4dzez\",dNtCTq2UU:\"framer-v-1b6ewtv\",l1NmqiU8C:\"framer-v-1cyav5f\"};const transition1={damping:40,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-30};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-80};const transition2={damping:40,delay:.1,mass:1,stiffness:200,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition3={damping:40,delay:.3,mass:1,stiffness:200,type:\"spring\"};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-148};const transition4={damping:40,delay:0,mass:1,stiffness:140,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-20};const transition5={damping:40,delay:.1,mass:1,stiffness:150,type:\"spring\"};const transition6={damping:40,delay:.2,mass:1,stiffness:140,type:\"spring\"};const transition7={damping:40,delay:.3,mass:1,stiffness:150,type:\"spring\"};const transition8={damping:40,delay:.4,mass:1,stiffness:140,type:\"spring\"};const transition9={damping:40,delay:.5,mass:1,stiffness:150,type:\"spring\"};const transition10={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transition:transition10};const transition11={damping:90,delay:.3,mass:1,stiffness:450,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition11,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.99,skewX:0,skewY:0,transition:transition10};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-40};const transition12={damping:40,delay:.4,mass:1,stiffness:150,type:\"spring\"};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"aDeGr1xvw\",Phone:\"l1NmqiU8C\",Tablet:\"dNtCTq2UU\"};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:\"aDeGr1xvw\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,R9NVJt3a2cf9vCp9eP,u1F11fZ8ycf9vCp9eP,KbwV4kuCzcf9vCp9eP,YahGhj3vgcf9vCp9eP,idcf9vCp9eP,R9NVJt3a2l9HDkaxlu,u1F11fZ8yl9HDkaxlu,KbwV4kuCzl9HDkaxlu,YahGhj3vgl9HDkaxlu,idl9HDkaxlu,R9NVJt3a2G88WdLJD2,u1F11fZ8yG88WdLJD2,KbwV4kuCzG88WdLJD2,YahGhj3vgG88WdLJD2,idG88WdLJD2,R9NVJt3a2h35NIUodz,u1F11fZ8yh35NIUodz,KbwV4kuCzh35NIUodz,YahGhj3vgh35NIUodz,idh35NIUodz,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-Aaejx`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-Aaejx`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const elementId=useRouteElementId(\"u1JxTS0i3\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"Rfkv_fDLF\");const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"dNtCTq2UU\",\"l1NmqiU8C\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"dNtCTq2UU\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"l1NmqiU8C\")return true;return false;};const elementId2=useRouteElementId(\"g39uS7Tv4\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"GYZmBYwbl\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"Abgv8rd7x\");const ref6=React.useRef(null);const elementId5=useRouteElementId(\"SgDCu9WZf\");const ref7=React.useRef(null);const elementId6=useRouteElementId(\"McpezKvkW\");const ref8=React.useRef(null);const activeLocaleCode=useLocaleCode();const elementId7=useRouteElementId(\"UP3H5ISyR\");const dynamicRef=useDynamicRefs();const elementId8=useRouteElementId(\"KkDcbarVG\");const ref9=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"aDeGr1xvw\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-c4dzez\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qwripd\",\"data-framer-name\":\"HeroSection\",id:elementId,name:\"HeroSection\",ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gjov4t\",\"data-framer-name\":\"Top\",name:\"Top\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-155hhsw\",\"data-framer-name\":\"Heading\",name:\"Heading\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-8mnk5m\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ffa784da-ef05-4ad3-8459-958f96628499, rgb(254, 248, 243))\"},children:\"Row Efficient and Safe\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-size\":\"58px\",\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ffa784da-ef05-4ad3-8459-958f96628499, rgb(254, 248, 243))\"},children:\"Row Efficient and Safe\"})}),className:\"framer-gk8lco\",\"data-framer-appear-id\":\"gk8lco\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Satoshi-black\"],initial:animation1,name:\"Heading\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1280,intrinsicWidth:1248},className:\"framer-xu6x3w\",\"data-framer-name\":\"3d\",name:\"3d\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-kntdi5\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sywkcz\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4rjwre-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script type=\"module\" src=\"https://unpkg.com/@splinetool/viewer@1.9.31/build/spline-viewer.js\" async></script>\\n<spline-viewer loading-anim-type=\"spinner-small-dark\" url=\"https://prod.spline.design/TgYNqgbXE13nY0n2/scene.splinecode\"><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAA4CAYAAAALrl3YAAAAAXNSR0IArs4c6QAAE61JREFUeF6FXAuWHMUR7N65/zFsPyMQwhjwPcwfxMf2Ndi1KzN+Wd0r856Y2dVMT3VFZWRkZI7Oz37/z8txHEf/r/5/vKzHl5d+PPCIn/tX/F2/E2+r9/aF1n/ncZ79yJ/zJ76qP8PX9Gc/1+f3z/n8ZX2i1srr9Eeuz8Ln6vk5f7/WwyUdp5eLC9W1/QLfw3n2b9djPe/r1vP83P4b/ee19r3knupe437OBUiCoQ1+7c21QQHaAGEC0uvP5c3FCvwPANLgByBxQAYYAUjvuTesNpiHI9eTS8ul68L9At1DgFG/u4DjI9fvbHj7xAYg657yoCcg737rCNHRrhdnFFwv1JvE1+C9ERneKNwQz8yIGIXliJBc+AKiPusZoGDhfbLihmMDFZU6xY4cgcLXByBa/gbGAJfgnE+KEgPDQ2BQ5p6adRwZfdDETMfLcb777d9eC2/yhrqSxnxBoJ+Qxp0pHnAqZ3ys3YgX49SQDu+oSwBt69wPQEZEnu5+nSnrCoJXRHpCiFTEdVA8DaoifQmYxEPnfKcqA1E0NiLk1wBE+WBD8//kkb4gtmWPlAsYzC2TcMitV0BMWfl3/swth91Fo2gKIXGOo5D8MBZFMGeeWOt/Os6nzh1PG3VNiiZ7NOv4QIF1bmjrfEdASFXY3PuEfhN2Oq07IMGnSHqDj3lax3YgPwU1MX8YDOaTEALcxjgXigYs42Wk2kHS82QMOmNUdBI/n0BVlTv6+ROAuSZ37wcjgHmjk/tdlBzH+e6Xf11UVt382JQ7IKy0eFqH2kpej6TaybZ3aeR7AlObevd5TuxUK1ZhfeKp2HxD6/dOFElRydM7dUlN9QmSknpSZDwBiKeKkI4W5hXmrDwlr0TIECu9/vPT9w1IS6d+hOwa8vdWfqYUVmTlgSNFUCaG+sHNxkMs40aV8LOQ4J/12VZ9netNYVLUeXvWPlOuZz6DxOWp5+MTIqQenxoM/s7Rg3uMbdgPWKpGP+9Fnp/+/Hsclg/ItJuawCc0VBduPrV8nbIhQyElQ9tP3iAgWRN1hBQQVF14/gwZ3uuJSLkBCHfoQ3dDWFbInSOamkhRKzriT0WII4Yqj9GfinVG9jXiC5C3P/12UVmmrE5EU2FtRZo2qC8j2nihhmcuQQGVxdQotnZI8uTPWmQB8rzWVcC8HM94JCAdPb0WRg1rJ6h1Vgha75Y6gqYMyMoXA4wbYDqaeM/7nvSae33Yx7X2SO7n2x8BCKXuoC5yeYISyD7vKJP5SH87ZUVlO4DZC0iy18wltcG8oednRQujxtHDmw5QIFp0SuPwsICTp4BNpYpqEAzGo35+NDgPRAsihYBQ4iu/sjDkuuteYv9AtecnP/zKKN6Kw7BPRrVMZBOYvXjkpQxIJ/FpN6xkOO2H4Vp0UYiNIxh1sgTKio4ARqePUdOAON84x1j/q56uU1DmSy2LkbFo6+l4EJDH41iAPAhERomSO6/kgzXoSmveDvT67E+++3WIxd172eVm+UqkjEQZtOFNDBIYVkZz8bHLxQx1HtXNNTA9PTdNrXUEffVzR1E/PwYgz2lhDGVmPcZTXkkb+aOi4rGAIRgPgbJ+91oeSYHkHMhD5LxI9+P8+NtfslwGpCl7YV9Ioi1AHCV90xPpq/cXvhKpCklyRIhAcT6xpM58gUMBQFbUFBgAhDnlOcDIvFLPqQrj0ZS1zosjpCnKYAgcRAvzCpVX31PcQyhCHxjmwAYnAHmPzDN5e7q83HCC4YstMHZQCIiRDgeWej30u0EJDS9nJX2zVFkAAIeBgHQUdVSQqtbPOp1HRsxMuuX9IpqbTbvwuwPk8XgoYjLRq0AcgDCXdTLvA8NHJnjUIW++ASAtkZRHZpkfUVIbsC7Wj6V0BiiUqluqjPzRAKCQAnURFJl5qI1Y5O3F4Mwjjh5K4I4WAvEKILjntH5qmTgXTVedzFcOKboqyjIYnUtWgu97Wo+S+aPmCUHCiA6lyJx2vvl6AZKlCEC51B0EIB4LCIPCU7h2wpXzTOy12C2Z589dKGZ1jeVFESpwlDN86gsEgXEcnTP493hMoQDgWRTTSGjKaurqCElAGoRrYp8qkqQ1E3pLdkl1HGbm3vPN1z9LZWEb0e94Dg9/cYCBaBD8xzWBawPr//NASeKTs4Ey84jFwKKQ8HXC8kd9UaE/o6A3n1YKnxOUUFkAypV9H8r1me3glu6o51RYCczTlj8YScP1jQ6D1V6IolCFrPXOj/75s62TEcL0qgAEQQgwiraCuprGLIHT26oPIW2hau+HTPj39YhsnVGFE4ykyPX8POooBSjrs6+/i6Ix3eoChLS1VFZHCWmLyZ15oxVWWih2JRx8sSepCkc50QuegMjLQtZfAd8cgHzB/PGHI4T5RMorAXGJI1HJu1VdAgOPXJEdVsU8/BgeHTJs3RB7cw1Gv7Jbs37Ec4KEyFMUh/xlU7foCgaocklK4FG1R05US3dTWeszRlEIt4FOBw4FAJl3Oo3E+9zRCf2PTu71x3YA+ZFGpfaPpZfMoqmq7AT3zdTm7FbsvBjuutKwnN0X2P0NSCM8wTGlNYA70itS1zs6QlSxM8kDGFbwEiijx07V6jaBCtSs44ZJ+sIIyQVl1Z1VOenJ0TEpC0VO0FbvJ6khFpit3GgW7R3eVqETkVM/2kEGwRwHunmtXdc7u7vXAAEUgEMg7AgbadUjVFtbpDRAYcFHkbsPd+j+tfHhwW1grNeebyqHpB5n7uCJzzyxJ/KkrmuB2FIOGhxn2cI6AFJ05+aDUx35LUcVE5aXbKsuQDonLSAIRj8WtAVS73II/LDhPwAKC8XtcbfoW/JmdPBQblQuQzQabjsgsxgEIKGumqaCqlJt3VTs1NaaSYhowRGQirrSBlQPjrDB8BiON2MB0fZFg/J0HHjeGToiRWCQylh/6VhiQ6m6nOCdVyxvE5BZQ6m9JDf3WksBjDB0z4+X7L1RV/3mLTqQNyo5JVCiqd1CsZLJ5lGfTlTg9JZiUSpQITIIRj/mZqBHUWA80GJdYPTzAmIAAyoThX0oSjdAEFldNMYaNPyQ8RsJnYJhqE9GS7Qy8LrzEwCirhZ8DydpbL4k7lRY6WtdToA2m4mtgeg6YXeITZUfBATNrm6drq4djT0AImAeDUZ5Zv1YuQR/rPp8kq0gTJ17PmGO4MFonHBUVM+iglITdqOryCcSPmSCt990hEwT7yaZl2QLMNI6CePR7nBsuirjV/h0nJ62aVCdHmdSlqRoJNVlWyBClhvbkWJwGCEdMSuPIKdEcoeodvsBEqCVHhVf/yTVTtk+nIUwsPY93Q9g1CBNUIjIT7/tSr1RQfcqKYj0VL9rQIaPxWG2Me45waCT2dExT4t/zpqnax8Cs5SV/CVsREnOkp+9+e0nPY5zgALqEn05n9TtpkWzZ+IBRAw+AiLbO9khDKpSTcfDfo0S5uwGAyLm3QJEJX5wmxzJsEyQ0GUqKsewkCTtABCBPNupAxQVS7b12XNZj6xFZGWUpUEjj73t7t6tyFiWRkZIRQb/KDpAXaW8Qsa98jSYSJO7WTPlAODQiQIF+8p0cCN3KfXOz76DuZi8PvodvVFZc+TzMdg2EjUT5pbYGYXqhbP6t4i4AtKMX6AoQkhbziGMlnO5sU+dQxqQB5pipCvL4Frla6AggqbUJoVhRYlWAOrZAhzSoCzNKLCXTqDWUv5WgCCLJJ3IyQ1Ahk0SCoHO8OjAGRBSomXwnB5RPyWUmygLzRvW4bYz5hRIRQejBI8EZCouR0dV8NlJ2jbXhWpMvgNBDzJcEVU1Ayqi2FFKkJMejUCwyfn592xQefqBCouRQHd3VOb0YNR9i9Z8uJw0JsiLVFeZO/q6U2ZXl4l5ZA2QAdWyMhglGs9p6qrZKOSTqkcYIaWymuZSaXFgzxGSRppzg0Z7JH37dQ3TNN/M/86jdixyWCTBUBI/zi9+eI/o2itJ9jpMV0zm7Hg59KwSGLVW8YyUsFEkHux/tfHW0UirHw3xSO6gLtnjbgqxMNwfu6mRFTzyBqSq1AI2G1oK7kuHjGUtBjXidwYkeS9rrAQG9xtjP55hQMfwywXIUFhO7IqQaERJYY3EFAYdj9utrLSN4prlXmJXxxJOM5oe8rVcKHqQrYs1RAWq8258Rd5gHSJnOU44qWvMihGAWZmPwT9FiAGRC3GT1IdxG0mex/b8ioDQ1lBbsSODzad6nr2PkrnMPdRp9IqCV5OjQWVuXjX4s8HVVMU+yxUUGo4ijJvvahgE9lvsZ6XDTLphTwbxET2aac+4d6OvJSiy9hpk5uWUuKVSBxiOqPOrH9+rLdf5c7q2AgLg3DehmD+wqKSD2xOEBVyoa+YSAsMIGZGC2oQUI55nJn6FkmgugosgmQIQOAFjgFr9f06/kwJnBE26jvpjV1j1c9omAcg/FiDyWxoQjjr27JMjRWCw9RhyjWLQNzrVzCX5QWbvc1+KDJiVKYEnMGHNQ9aA8cdS0iLpMxtJOGhqdi/9tYOe6TUV9lD1HTBTbdk8hexnAS1wJiBM/CcBUTXNCOFA3BYZlwixWSqbm+pFdMGWba55dwdi1jU7lLWunuMBlXURKs9cVvK1meXcyLO7ZG48Bzi9TpqGTXf0ynqSJBTcBZyYMrnQM8mHheHe4sY0T+TwDRArLeUO1R45LdH5w44tbTlzcnI3J99vvhAyuNR6Par2yFuUwd1W9p9OlOZsnjY3HEP1AI+mLjJW5gYkcH3lgFJ6MzEhudmDIahZZZLIJWA2qqKjLoZaS5oRkoBw3orJvOdoPT1B1GnD3IChvvkKcSZT7gLfR/cf9oum7Z1PWgY7Utznx3sAkGR4KcCZVGe0RM3EeiIt9VWzDCe5vbKucRgx6+c5X8ZOpXOJ781F8R4l7WPJXCxANj5377dVVk7aVeTkjFSeOFBTRoTHYmx9M++GiWZzU2alO5AeQTJtURY3UBzEwCHJOeOwatLOEHHdRElTFCZJOOWOgpOgyBlAG0CDflJdm5/HPVuDIze9EXHMkr3qle1OLKcUy3ei+qJC2CnLCsuAbGoECmb3jpgAmeD3RJ8RwnziPkyCtLWR9zZpnESCYxEYtcYCI3JHOcmaUISJGXnF46MuHJmrdomvxt+t8jqO88sf2DG89ipUmYMuxtQEjUT0zT1owLEef33YY6JdiMm6zgQbPZDh/UBcUG3l+Gpt6hg/ikG9HLkRDabrytqJuQS9jmHHhL0fgMjEJH3JmqGyZJnnOi0bcuMrbapHoAG/+AAgniMK2hpRlN02ZEnVAa9FB1XJdFl1YtMby7yRc7BQXR4/isgIgCa9dmQrCmP8R25u5JGa1R3f/ZjmZTfDpiTOgyeDEcoijVVFiWgsvKy/f+/JRY5lFprjy5UGxEmdDS0r0PR1nDtuIiV4NkWo1Qb7Ks4J+vdOBAb/jgk/fTHbP/za29gEnMo8x72kiBJ84zaT+JhyV1eSQ+M4gFEIS2WpY+oIlcIaAuQ4zs8ByO7f8w2jSLxJRuluqiJTjzkTuaXlkL/Dk9sVF5UXAfLmK8/kHNj4riFsGfy9Xh/G3t5DbyHoXKK+vVxk1ySjYER7eNZdhvt+b5M+Q2V99l3MZe1IRq98frHS8hg1jQ96WNLjm7cJ0mZZ11vUauPiwl5JqpGqijXglN2ql1cUDSVyfLCM3wTm8lXopCkmdhibHKCQra/bYrUeLY5LT6Rz+Pnpdz95K9Bov3DcB0Yf3ecwJu4ThH09AAmDL6CUZ4xCT9Z0Lh4FYdYZzUCMpq0PEbI3o2RU+zE2Jyc56xL9iw38fjordzvMGiTXUB4rT4ARh/3aqLJbfr4FILOQWhdLmTvNsFGAhVgZU58097J3sFvc2dPmTGcBRIrK52xszr+7VOVUfekkCJT9en2tbn7NDg6nS8YMFgYr9I8EaDCvbf7pLE9CfI22Mm+uZZwff7tHiM2wKwVsHa9xkvOoRxdafdCwum+TOt1RILxb+wRMj3ESNhtrdu3cPOtNMSUySooq9Kb48icCeQznRXXeXck7MDrOqhZxlYePi04hI5tKbK3jowAkQymHFwzMBISGJD810gBmDK3xbRwxlHeNQ0Bte9Cf6qDR1evjuvMyexASFbcTVmmH43oJ0IiUKyisn2YR6NYw+y3KI7WYmCFG5IpdcE+7e3D+dQFC64QvyhbjlhT3f25P/J3UNfJCAtAbOHoSCojYcB0r0xQvmRD43+Pqz8h/2KYuq+gkVfEQpGNsBdegX6OFtj79OLd0sxHm5yI/Tva7zNDE5rCr4sCdf/mGlLVJzuhoXSpnJVB8UogB7/j9Fu64JQyMBFspjIHJ75wgbObL6t82etZE8zMyAl0sdpTzz/q+1aGpye6ixGADO4psK7A1rKaYv6uS98s6r/cfImRE/8tx/jkBSZNxAyT9pfScHCEEZwuPwe8RIXhZ0pw9WL8pvx/SB54aLnsYAUq0X+9B6WsPBbe+8JZgqN+S0YIojI4kD4Npit9FsYWiil3B7h5JpwjTcZHwAkQboURK9LaKWZHhG2ikg+ND5RiaAIILuwHE4q+vOenJEzfF4wSHXyGL77/nBtE3U2OK98iNGDWOG2Gkr1199bKvBS+/taVcEqOqU4c4QqddhCv/qSLEJ/LafJ+gdHSEJ7QB4g+JSNmiZJ4aERQIfsslkbpVsG1gsKXaXtK0ai6uwJ4vNfs1o4SUkpJYdxTUlOC4H6JvKo5KwKVF5rSI2P/9+r81/myysRvfowAAAABJRU5ErkJggg==\" alt=\"Spline preview\" style=\"width: 100%; height: 100%;\"/></spline-viewer>',id:\"f_vO1QYeB\",layoutId:\"f_vO1QYeB\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qfcwij\",\"data-framer-name\":\"Features\",id:elementId1,name:\"Features\",ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sljojl\",\"data-framer-name\":\"mobile app\",name:\"mobile app\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-h6kouk\",\"data-styles-preset\":\"ITjLgBtQc\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-ffa784da-ef05-4ad3-8459-958f96628499, rgb(254, 248, 243))\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-63f981e3-7957-40fa-b0ce-844c0f89f805, rgb(254, 248, 243)) 0%, rgb(255, 255, 255) 100%)\"},children:[\"Mobile \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178))\"},children:\"App\"}),\" \"]})})}),className:\"framer-jhoj2z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-caebok\",\"data-framer-name\":\"Row\",name:\"Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dr841p\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oh4ebp\",\"data-framer-name\":\"Copy\",name:\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-yg8y48\",\"data-styles-preset\":\"mGyWh_kgC\",children:\"TRAINING PACK\"})}),className:\"framer-1yqfwny\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-t6clv\",\"data-styles-preset\":\"yY9DooUme\",children:\"Define, save and log your trainings\"})}),className:\"framer-r1qog6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bmnmr9\",children:[/*#__PURE__*/_jsxs(\"figure\",{className:\"framer-1wii0d1\",\"data-framer-name\":\"Mockup\",name:\"Mockup\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNtCTq2UU:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:861,loading:getLoadingLazyAtYPosition(1615.9),pixelHeight:2778,pixelWidth:1284,sizes:\"135.8733px\",src:\"https://framerusercontent.com/images/3pE0nzPx8BZ3azse4C1hcX2Ne0c.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/3pE0nzPx8BZ3azse4C1hcX2Ne0c.jpg?scale-down-to=2048 946w,https://framerusercontent.com/images/3pE0nzPx8BZ3azse4C1hcX2Ne0c.jpg 1284w\"}},l1NmqiU8C:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:861,loading:getLoadingLazyAtYPosition(1459.3136363636365),pixelHeight:2778,pixelWidth:1284,sizes:\"139.8519px\",src:\"https://framerusercontent.com/images/3pE0nzPx8BZ3azse4C1hcX2Ne0c.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/3pE0nzPx8BZ3azse4C1hcX2Ne0c.jpg?scale-down-to=2048 946w,https://framerusercontent.com/images/3pE0nzPx8BZ3azse4C1hcX2Ne0c.jpg 1284w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:861,loading:getLoadingLazyAtYPosition(1602.3000000000002),pixelHeight:2778,pixelWidth:1284,sizes:\"calc(max((max((min(100vw, 1400px) - 96px) / 1.5, 1px) - 84px) / 3, 1px) * 0.89)\",src:\"https://framerusercontent.com/images/3pE0nzPx8BZ3azse4C1hcX2Ne0c.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/3pE0nzPx8BZ3azse4C1hcX2Ne0c.jpg?scale-down-to=2048 946w,https://framerusercontent.com/images/3pE0nzPx8BZ3azse4C1hcX2Ne0c.jpg 1284w\"},className:\"framer-1gsly86\",\"data-framer-name\":\"AppImage\",name:\"AppImage\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNtCTq2UU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition(1607.9),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"}},l1NmqiU8C:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition(1451.3136363636365),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition(1594.3000000000002),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"},className:\"framer-3jmx1y\",\"data-framer-name\":\"iPhone\",name:\"iPhone\"})})]}),/*#__PURE__*/_jsxs(\"figure\",{className:\"framer-qxq71w\",\"data-framer-name\":\"Mockup\",name:\"Mockup\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNtCTq2UU:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1398,intrinsicWidth:645,loading:getLoadingLazyAtYPosition(1615.9),pixelHeight:2778,pixelWidth:1284,sizes:\"135.8733px\",src:\"https://framerusercontent.com/images/VJyNwG0lFkfTYQInjPRAB9bLyMs.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/VJyNwG0lFkfTYQInjPRAB9bLyMs.jpeg?scale-down-to=2048 946w,https://framerusercontent.com/images/VJyNwG0lFkfTYQInjPRAB9bLyMs.jpeg 1284w\"}},l1NmqiU8C:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1398,intrinsicWidth:645,loading:getLoadingLazyAtYPosition(1459.3136363636365),pixelHeight:2778,pixelWidth:1284,sizes:\"140.2972px\",src:\"https://framerusercontent.com/images/VJyNwG0lFkfTYQInjPRAB9bLyMs.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/VJyNwG0lFkfTYQInjPRAB9bLyMs.jpeg?scale-down-to=2048 946w,https://framerusercontent.com/images/VJyNwG0lFkfTYQInjPRAB9bLyMs.jpeg 1284w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1398,intrinsicWidth:645,loading:getLoadingLazyAtYPosition(1602.3000000000002),pixelHeight:2778,pixelWidth:1284,sizes:\"calc(max((max((min(100vw, 1400px) - 96px) / 1.5, 1px) - 84px) / 3, 1px) * 0.89)\",src:\"https://framerusercontent.com/images/VJyNwG0lFkfTYQInjPRAB9bLyMs.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/VJyNwG0lFkfTYQInjPRAB9bLyMs.jpeg?scale-down-to=2048 946w,https://framerusercontent.com/images/VJyNwG0lFkfTYQInjPRAB9bLyMs.jpeg 1284w\"},className:\"framer-1rlpgl8\",\"data-framer-name\":\"AppImage\",name:\"AppImage\",style:{transformPerspective:500},transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNtCTq2UU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition(1607.9),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"}},l1NmqiU8C:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition(1451.3136363636365),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition(1594.3000000000002),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"},className:\"framer-zszlxe\",\"data-framer-name\":\"iPhone\",name:\"iPhone\"})})]}),/*#__PURE__*/_jsxs(\"figure\",{className:\"framer-12td8fh\",\"data-framer-name\":\"Mockup\",name:\"Mockup\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNtCTq2UU:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1398,intrinsicWidth:645,loading:getLoadingLazyAtYPosition(1615.9),pixelHeight:2778,pixelWidth:1284,sizes:\"135.8733px\",src:\"https://framerusercontent.com/images/5P7YrPUabPqkqemwZqqkjymwQM.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/5P7YrPUabPqkqemwZqqkjymwQM.jpeg?scale-down-to=2048 946w,https://framerusercontent.com/images/5P7YrPUabPqkqemwZqqkjymwQM.jpeg 1284w\"}},l1NmqiU8C:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1398,intrinsicWidth:645,loading:getLoadingLazyAtYPosition(1459.3136363636365),pixelHeight:2778,pixelWidth:1284,sizes:\"139.8519px\",src:\"https://framerusercontent.com/images/5P7YrPUabPqkqemwZqqkjymwQM.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/5P7YrPUabPqkqemwZqqkjymwQM.jpeg?scale-down-to=2048 946w,https://framerusercontent.com/images/5P7YrPUabPqkqemwZqqkjymwQM.jpeg 1284w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1398,intrinsicWidth:645,loading:getLoadingLazyAtYPosition(1602.3000000000002),pixelHeight:2778,pixelWidth:1284,sizes:\"calc(max((max((min(100vw, 1400px) - 96px) / 1.5, 1px) - 84px) / 3, 1px) * 0.89)\",src:\"https://framerusercontent.com/images/5P7YrPUabPqkqemwZqqkjymwQM.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/5P7YrPUabPqkqemwZqqkjymwQM.jpeg?scale-down-to=2048 946w,https://framerusercontent.com/images/5P7YrPUabPqkqemwZqqkjymwQM.jpeg 1284w\"},className:\"framer-m2axkv\",\"data-framer-name\":\"AppImage\",name:\"AppImage\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNtCTq2UU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition(1607.9),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"}},l1NmqiU8C:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition(1451.3136363636365),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition(1594.3000000000002),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"},className:\"framer-148hsnb\",\"data-framer-name\":\"iPhone\",name:\"iPhone\"})})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wl85we\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xpxsdg\",\"data-framer-name\":\"Copy\",name:\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-yg8y48\",\"data-styles-preset\":\"mGyWh_kgC\",children:\"IOS & ANDROID\"})}),className:\"framer-142r3xf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-t6clv\",\"data-styles-preset\":\"yY9DooUme\",children:\"Top rated app \"})}),className:\"framer-12q80l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16su9zt\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNtCTq2UU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-329b73f7-53a8-405a-b051-552744604b43, rgb(0, 140, 178)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"4.5\"})})})},l1NmqiU8C:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-329b73f7-53a8-405a-b051-552744604b43, rgb(0, 140, 178)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"4.5\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"91px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-329b73f7-53a8-405a-b051-552744604b43, rgb(0, 140, 178)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"4.5\"})})}),className:\"framer-p82b5y\",\"data-framer-name\":\"Social Broker is compliant with social media platform policies, providing a safe and secure platform for businesses and individuals to buy and sell account handles.\",fonts:[\"FS;Satoshi-bold\"],name:\"Social Broker is compliant with social media platform policies, providing a safe and secure platform for businesses and individuals to buy and sell account handles.\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ha6s4z\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNtCTq2UU:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 31.676 32\"><path d=\"M 15.116 4.665 C 15.23 4.384 15.5 4.2 15.8 4.2 C 16.101 4.2 16.371 4.384 16.485 4.665 L 19.283 11.48 C 19.39 11.74 19.631 11.918 19.909 11.94 L 27.174 12.529 C 27.831 12.583 28.097 13.413 27.597 13.847 L 22.061 18.649 C 21.851 18.832 21.758 19.119 21.822 19.392 L 23.514 26.572 C 23.583 26.867 23.471 27.175 23.229 27.353 C 22.987 27.531 22.663 27.543 22.408 27.385 L 16.186 23.539 C 15.949 23.392 15.651 23.392 15.415 23.539 L 9.193 27.387 C 8.938 27.545 8.614 27.532 8.372 27.354 C 8.13 27.176 8.018 26.868 8.087 26.573 L 9.779 19.392 C 9.843 19.119 9.751 18.832 9.54 18.649 L 4.004 13.847 C 3.776 13.65 3.688 13.333 3.78 13.045 C 3.873 12.756 4.128 12.553 4.427 12.529 L 11.692 11.94 C 11.969 11.918 12.211 11.74 12.318 11.48 L 15.116 4.667 Z\" fill=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-width=\"1.97\" stroke=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9718204399},l1NmqiU8C:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 38.011 38\"><path d=\"M 18.139 5.54 C 18.276 5.206 18.6 4.988 18.961 4.988 C 19.321 4.988 19.645 5.206 19.782 5.54 L 23.14 13.633 C 23.268 13.941 23.558 14.152 23.89 14.179 L 32.609 14.879 C 33.397 14.942 33.717 15.928 33.116 16.443 L 26.474 22.146 C 26.221 22.363 26.11 22.703 26.186 23.028 L 28.216 31.554 C 28.3 31.904 28.165 32.27 27.875 32.481 C 27.584 32.692 27.195 32.708 26.889 32.52 L 19.423 27.952 C 19.139 27.778 18.782 27.778 18.498 27.952 L 11.032 32.522 C 10.726 32.709 10.337 32.694 10.046 32.483 C 9.756 32.271 9.621 31.906 9.705 31.556 L 11.735 23.028 C 11.812 22.703 11.701 22.363 11.447 22.146 L 4.805 16.443 C 4.531 16.209 4.425 15.833 4.536 15.491 C 4.648 15.148 4.954 14.907 5.312 14.879 L 14.031 14.179 C 14.363 14.152 14.653 13.941 14.781 13.633 L 18.139 5.542 Z\" fill=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-width=\"2.37\" stroke=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8797767163}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1oy1tu9\",\"data-framer-name\":\"graphic\",layout:\"position\",name:\"graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 46.9 47\"><path d=\"M 22.428 6.852 C 22.597 6.439 22.999 6.169 23.444 6.169 C 23.89 6.169 24.291 6.439 24.46 6.852 L 28.612 16.861 C 28.77 17.243 29.129 17.504 29.54 17.537 L 40.32 18.402 C 41.295 18.481 41.69 19.701 40.948 20.337 L 32.734 27.391 C 32.421 27.659 32.284 28.08 32.379 28.482 L 34.889 39.028 C 34.992 39.46 34.826 39.913 34.466 40.174 C 34.107 40.435 33.627 40.454 33.248 40.222 L 24.017 34.572 C 23.665 34.357 23.223 34.357 22.872 34.572 L 13.641 40.224 C 13.262 40.456 12.781 40.437 12.422 40.176 C 12.063 39.915 11.896 39.462 12 39.03 L 14.51 28.482 C 14.605 28.08 14.468 27.659 14.155 27.391 L 5.941 20.337 C 5.603 20.048 5.472 19.583 5.609 19.16 C 5.747 18.736 6.125 18.437 6.568 18.402 L 17.349 17.537 C 17.76 17.504 18.118 17.243 18.277 16.861 L 22.428 6.854 Z\" fill=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-width=\"2.93\" stroke=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12189676446,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNtCTq2UU:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 31.676 32\"><path d=\"M 15.116 4.665 C 15.23 4.384 15.5 4.2 15.8 4.2 C 16.101 4.2 16.371 4.384 16.485 4.665 L 19.283 11.48 C 19.39 11.74 19.631 11.918 19.909 11.94 L 27.174 12.529 C 27.831 12.583 28.097 13.413 27.597 13.847 L 22.061 18.649 C 21.851 18.832 21.758 19.119 21.822 19.392 L 23.514 26.572 C 23.583 26.867 23.471 27.175 23.229 27.353 C 22.987 27.531 22.663 27.543 22.408 27.385 L 16.186 23.539 C 15.949 23.392 15.651 23.392 15.415 23.539 L 9.193 27.387 C 8.938 27.545 8.614 27.532 8.372 27.354 C 8.13 27.176 8.018 26.868 8.087 26.573 L 9.779 19.392 C 9.843 19.119 9.751 18.832 9.54 18.649 L 4.004 13.847 C 3.776 13.65 3.688 13.333 3.78 13.045 C 3.873 12.756 4.128 12.553 4.427 12.529 L 11.692 11.94 C 11.969 11.918 12.211 11.74 12.318 11.48 L 15.116 4.667 Z\" fill=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-width=\"1.97\" stroke=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9718204399},l1NmqiU8C:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 38.011 38\"><path d=\"M 18.139 5.54 C 18.276 5.206 18.6 4.988 18.961 4.988 C 19.321 4.988 19.645 5.206 19.782 5.54 L 23.14 13.633 C 23.268 13.941 23.558 14.152 23.89 14.179 L 32.609 14.879 C 33.397 14.942 33.717 15.928 33.116 16.443 L 26.474 22.146 C 26.221 22.363 26.11 22.703 26.186 23.028 L 28.216 31.554 C 28.3 31.904 28.165 32.27 27.875 32.481 C 27.584 32.692 27.195 32.708 26.889 32.52 L 19.423 27.952 C 19.139 27.778 18.782 27.778 18.498 27.952 L 11.032 32.522 C 10.726 32.709 10.337 32.694 10.046 32.483 C 9.756 32.271 9.621 31.906 9.705 31.556 L 11.735 23.028 C 11.812 22.703 11.701 22.363 11.447 22.146 L 4.805 16.443 C 4.531 16.209 4.425 15.833 4.536 15.491 C 4.648 15.148 4.954 14.907 5.312 14.879 L 14.031 14.179 C 14.363 14.152 14.653 13.941 14.781 13.633 L 18.139 5.542 Z\" fill=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-width=\"2.37\" stroke=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8797767163}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1403s5r\",\"data-framer-name\":\"graphic\",layout:\"position\",name:\"graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 46.9 47\"><path d=\"M 22.428 6.852 C 22.597 6.439 22.999 6.169 23.444 6.169 C 23.89 6.169 24.291 6.439 24.46 6.852 L 28.612 16.861 C 28.77 17.243 29.129 17.504 29.54 17.537 L 40.32 18.402 C 41.295 18.481 41.69 19.701 40.948 20.337 L 32.734 27.391 C 32.421 27.659 32.284 28.08 32.379 28.482 L 34.889 39.028 C 34.992 39.46 34.826 39.913 34.466 40.174 C 34.107 40.435 33.627 40.454 33.248 40.222 L 24.017 34.572 C 23.665 34.357 23.223 34.357 22.872 34.572 L 13.641 40.224 C 13.262 40.456 12.781 40.437 12.422 40.176 C 12.063 39.915 11.896 39.462 12 39.03 L 14.51 28.482 C 14.605 28.08 14.468 27.659 14.155 27.391 L 5.941 20.337 C 5.603 20.048 5.472 19.583 5.609 19.16 C 5.747 18.736 6.125 18.437 6.568 18.402 L 17.349 17.537 C 17.76 17.504 18.118 17.243 18.277 16.861 L 22.428 6.854 Z\" fill=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-width=\"2.93\" stroke=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12189676446,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNtCTq2UU:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 31.676 32\"><path d=\"M 15.116 4.665 C 15.23 4.384 15.5 4.2 15.8 4.2 C 16.101 4.2 16.371 4.384 16.485 4.665 L 19.283 11.48 C 19.39 11.74 19.631 11.918 19.909 11.94 L 27.174 12.529 C 27.831 12.583 28.097 13.413 27.597 13.847 L 22.061 18.649 C 21.851 18.832 21.758 19.119 21.822 19.392 L 23.514 26.572 C 23.583 26.867 23.471 27.175 23.229 27.353 C 22.987 27.531 22.663 27.543 22.408 27.385 L 16.186 23.539 C 15.949 23.392 15.651 23.392 15.415 23.539 L 9.193 27.387 C 8.938 27.545 8.614 27.532 8.372 27.354 C 8.13 27.176 8.018 26.868 8.087 26.573 L 9.779 19.392 C 9.843 19.119 9.751 18.832 9.54 18.649 L 4.004 13.847 C 3.776 13.65 3.688 13.333 3.78 13.045 C 3.873 12.756 4.128 12.553 4.427 12.529 L 11.692 11.94 C 11.969 11.918 12.211 11.74 12.318 11.48 L 15.116 4.667 Z\" fill=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-width=\"1.97\" stroke=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9718204399},l1NmqiU8C:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 38.011 38\"><path d=\"M 18.139 5.54 C 18.276 5.206 18.6 4.988 18.961 4.988 C 19.321 4.988 19.645 5.206 19.782 5.54 L 23.14 13.633 C 23.268 13.941 23.558 14.152 23.89 14.179 L 32.609 14.879 C 33.397 14.942 33.717 15.928 33.116 16.443 L 26.474 22.146 C 26.221 22.363 26.11 22.703 26.186 23.028 L 28.216 31.554 C 28.3 31.904 28.165 32.27 27.875 32.481 C 27.584 32.692 27.195 32.708 26.889 32.52 L 19.423 27.952 C 19.139 27.778 18.782 27.778 18.498 27.952 L 11.032 32.522 C 10.726 32.709 10.337 32.694 10.046 32.483 C 9.756 32.271 9.621 31.906 9.705 31.556 L 11.735 23.028 C 11.812 22.703 11.701 22.363 11.447 22.146 L 4.805 16.443 C 4.531 16.209 4.425 15.833 4.536 15.491 C 4.648 15.148 4.954 14.907 5.312 14.879 L 14.031 14.179 C 14.363 14.152 14.653 13.941 14.781 13.633 L 18.139 5.542 Z\" fill=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-width=\"2.37\" stroke=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8797767163}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xqe2ee\",\"data-framer-name\":\"graphic\",layout:\"position\",name:\"graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 46.9 47\"><path d=\"M 22.428 6.852 C 22.597 6.439 22.999 6.169 23.444 6.169 C 23.89 6.169 24.291 6.439 24.46 6.852 L 28.612 16.861 C 28.77 17.243 29.129 17.504 29.54 17.537 L 40.32 18.402 C 41.295 18.481 41.69 19.701 40.948 20.337 L 32.734 27.391 C 32.421 27.659 32.284 28.08 32.379 28.482 L 34.889 39.028 C 34.992 39.46 34.826 39.913 34.466 40.174 C 34.107 40.435 33.627 40.454 33.248 40.222 L 24.017 34.572 C 23.665 34.357 23.223 34.357 22.872 34.572 L 13.641 40.224 C 13.262 40.456 12.781 40.437 12.422 40.176 C 12.063 39.915 11.896 39.462 12 39.03 L 14.51 28.482 C 14.605 28.08 14.468 27.659 14.155 27.391 L 5.941 20.337 C 5.603 20.048 5.472 19.583 5.609 19.16 C 5.747 18.736 6.125 18.437 6.568 18.402 L 17.349 17.537 C 17.76 17.504 18.118 17.243 18.277 16.861 L 22.428 6.854 Z\" fill=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-width=\"2.93\" stroke=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12189676446,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNtCTq2UU:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 31.676 32\"><path d=\"M 15.116 4.665 C 15.23 4.384 15.5 4.2 15.8 4.2 C 16.101 4.2 16.371 4.384 16.485 4.665 L 19.283 11.48 C 19.39 11.74 19.631 11.918 19.909 11.94 L 27.174 12.529 C 27.831 12.583 28.097 13.413 27.597 13.847 L 22.061 18.649 C 21.851 18.832 21.758 19.119 21.822 19.392 L 23.514 26.572 C 23.583 26.867 23.471 27.175 23.229 27.353 C 22.987 27.531 22.663 27.543 22.408 27.385 L 16.186 23.539 C 15.949 23.392 15.651 23.392 15.415 23.539 L 9.193 27.387 C 8.938 27.545 8.614 27.532 8.372 27.354 C 8.13 27.176 8.018 26.868 8.087 26.573 L 9.779 19.392 C 9.843 19.119 9.751 18.832 9.54 18.649 L 4.004 13.847 C 3.776 13.65 3.688 13.333 3.78 13.045 C 3.873 12.756 4.128 12.553 4.427 12.529 L 11.692 11.94 C 11.969 11.918 12.211 11.74 12.318 11.48 L 15.116 4.667 Z\" fill=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-width=\"1.97\" stroke=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9718204399},l1NmqiU8C:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 38.011 38\"><path d=\"M 18.139 5.54 C 18.276 5.206 18.6 4.988 18.961 4.988 C 19.321 4.988 19.645 5.206 19.782 5.54 L 23.14 13.633 C 23.268 13.941 23.558 14.152 23.89 14.179 L 32.609 14.879 C 33.397 14.942 33.717 15.928 33.116 16.443 L 26.474 22.146 C 26.221 22.363 26.11 22.703 26.186 23.028 L 28.216 31.554 C 28.3 31.904 28.165 32.27 27.875 32.481 C 27.584 32.692 27.195 32.708 26.889 32.52 L 19.423 27.952 C 19.139 27.778 18.782 27.778 18.498 27.952 L 11.032 32.522 C 10.726 32.709 10.337 32.694 10.046 32.483 C 9.756 32.271 9.621 31.906 9.705 31.556 L 11.735 23.028 C 11.812 22.703 11.701 22.363 11.447 22.146 L 4.805 16.443 C 4.531 16.209 4.425 15.833 4.536 15.491 C 4.648 15.148 4.954 14.907 5.312 14.879 L 14.031 14.179 C 14.363 14.152 14.653 13.941 14.781 13.633 L 18.139 5.542 Z\" fill=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-width=\"2.37\" stroke=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8797767163}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xb471z\",\"data-framer-name\":\"graphic\",layout:\"position\",name:\"graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 46.9 47\"><path d=\"M 22.428 6.852 C 22.597 6.439 22.999 6.169 23.444 6.169 C 23.89 6.169 24.291 6.439 24.46 6.852 L 28.612 16.861 C 28.77 17.243 29.129 17.504 29.54 17.537 L 40.32 18.402 C 41.295 18.481 41.69 19.701 40.948 20.337 L 32.734 27.391 C 32.421 27.659 32.284 28.08 32.379 28.482 L 34.889 39.028 C 34.992 39.46 34.826 39.913 34.466 40.174 C 34.107 40.435 33.627 40.454 33.248 40.222 L 24.017 34.572 C 23.665 34.357 23.223 34.357 22.872 34.572 L 13.641 40.224 C 13.262 40.456 12.781 40.437 12.422 40.176 C 12.063 39.915 11.896 39.462 12 39.03 L 14.51 28.482 C 14.605 28.08 14.468 27.659 14.155 27.391 L 5.941 20.337 C 5.603 20.048 5.472 19.583 5.609 19.16 C 5.747 18.736 6.125 18.437 6.568 18.402 L 17.349 17.537 C 17.76 17.504 18.118 17.243 18.277 16.861 L 22.428 6.854 Z\" fill=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-width=\"2.93\" stroke=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12189676446,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNtCTq2UU:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 31 31\"><path d=\"M 15.086 4.408 C 15.198 4.135 15.463 3.957 15.757 3.957 C 16.05 3.957 16.315 4.135 16.427 4.408 L 19.165 11.01 C 19.269 11.262 19.506 11.434 19.777 11.455 L 26.888 12.026 C 27.531 12.078 27.791 12.883 27.301 13.302 L 21.884 17.955 C 21.678 18.132 21.587 18.41 21.649 18.674 L 23.305 25.63 C 23.373 25.915 23.263 26.214 23.026 26.386 C 22.79 26.559 22.472 26.571 22.223 26.418 L 16.134 22.692 C 15.902 22.55 15.611 22.55 15.379 22.692 L 9.29 26.419 C 9.041 26.572 8.724 26.56 8.487 26.388 C 8.25 26.215 8.14 25.917 8.208 25.631 L 9.864 18.674 C 9.926 18.41 9.836 18.132 9.629 17.955 L 4.212 13.302 C 3.989 13.112 3.902 12.805 3.993 12.526 C 4.084 12.246 4.333 12.049 4.626 12.026 L 11.736 11.455 C 12.007 11.434 12.244 11.262 12.348 11.01 L 15.086 4.409 Z\" fill=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-width=\"1.93\" stroke=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 16.16 4.287 C 16.453 4.287 16.315 4.135 16.427 4.408 L 19.165 11.01 C 19.269 11.262 19.506 11.434 19.777 11.455 L 26.888 12.026 C 27.531 12.078 27.791 12.883 27.301 13.302 L 21.884 17.955 C 21.678 18.132 21.587 18.41 21.649 18.674 L 23.305 25.63 C 23.373 25.915 23.263 26.214 23.026 26.386 C 22.79 26.559 22.472 26.571 22.223 26.418 L 16.134 22.692 C 15.902 22.55 15.866 4.287 16.16 4.287 Z\" fill=\"var(--token-ffa784da-ef05-4ad3-8459-958f96628499, rgb(254, 248, 243)) /* {&quot;name&quot;:&quot;cream_wavex&quot;} */\" stroke-width=\"1.93\" stroke=\"var(--token-ffa784da-ef05-4ad3-8459-958f96628499, rgb(254, 248, 243)) /* {&quot;name&quot;:&quot;cream_wavex&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:11344917597},l1NmqiU8C:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 34 34\"><path d=\"M 16.546 4.835 C 16.669 4.536 16.959 4.34 17.281 4.34 C 17.604 4.34 17.894 4.536 18.016 4.835 L 21.02 12.075 C 21.134 12.351 21.393 12.54 21.691 12.564 L 29.49 13.19 C 30.195 13.247 30.48 14.129 29.943 14.59 L 24.002 19.693 C 23.775 19.887 23.676 20.191 23.744 20.482 L 25.561 28.11 C 25.635 28.423 25.515 28.751 25.255 28.94 C 24.995 29.129 24.647 29.143 24.373 28.975 L 17.695 24.888 C 17.441 24.732 17.121 24.732 16.867 24.888 L 10.189 28.976 C 9.916 29.144 9.568 29.13 9.308 28.941 C 9.048 28.752 8.928 28.425 9.002 28.112 L 10.818 20.482 C 10.887 20.191 10.788 19.886 10.561 19.693 L 4.619 14.59 C 4.375 14.381 4.28 14.044 4.379 13.738 C 4.479 13.431 4.753 13.215 5.073 13.19 L 12.872 12.564 C 13.169 12.54 13.429 12.351 13.543 12.075 L 16.546 4.836 Z\" fill=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-width=\"2.12\" stroke=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 17.723 4.702 C 18.046 4.702 17.894 4.536 18.016 4.835 L 21.02 12.075 C 21.134 12.351 21.393 12.54 21.691 12.564 L 29.49 13.19 C 30.195 13.247 30.48 14.129 29.943 14.59 L 24.002 19.693 C 23.775 19.887 23.676 20.191 23.744 20.482 L 25.561 28.11 C 25.635 28.423 25.515 28.751 25.255 28.94 C 24.995 29.129 24.647 29.143 24.373 28.975 L 17.695 24.888 C 17.441 24.732 17.401 4.702 17.723 4.702 Z\" fill=\"var(--token-ffa784da-ef05-4ad3-8459-958f96628499, rgb(254, 248, 243)) /* {&quot;name&quot;:&quot;cream_wavex&quot;} */\" stroke-width=\"2.12\" stroke=\"var(--token-ffa784da-ef05-4ad3-8459-958f96628499, rgb(254, 248, 243)) /* {&quot;name&quot;:&quot;cream_wavex&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:11742152733}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-3vlr6f\",\"data-framer-name\":\"graphic\",layout:\"position\",name:\"graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 47 47\"><path d=\"M 22.873 6.683 C 23.042 6.27 23.443 6 23.889 6 C 24.334 6 24.736 6.27 24.905 6.683 L 29.056 16.692 C 29.215 17.074 29.573 17.335 29.984 17.368 L 40.765 18.233 C 41.74 18.312 42.135 19.532 41.392 20.168 L 33.179 27.222 C 32.866 27.49 32.729 27.911 32.823 28.313 L 35.334 38.859 C 35.437 39.291 35.27 39.744 34.911 40.005 C 34.552 40.266 34.071 40.285 33.693 40.053 L 24.461 34.403 C 24.11 34.188 23.668 34.188 23.317 34.403 L 14.085 40.055 C 13.707 40.287 13.226 40.268 12.867 40.007 C 12.508 39.746 12.341 39.293 12.444 38.86 L 14.955 28.313 C 15.05 27.911 14.912 27.49 14.599 27.222 L 6.386 20.168 C 6.047 19.879 5.916 19.414 6.054 18.991 C 6.191 18.567 6.57 18.268 7.013 18.233 L 17.793 17.368 C 18.205 17.335 18.563 17.074 18.721 16.692 L 22.873 6.685 Z\" fill=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-width=\"2.93\" stroke=\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;Wavex_light_blue&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 24.5 6.5 C 24.946 6.5 24.736 6.27 24.905 6.683 L 29.056 16.692 C 29.215 17.074 29.573 17.335 29.984 17.368 L 40.765 18.233 C 41.74 18.312 42.135 19.532 41.392 20.168 L 33.179 27.222 C 32.866 27.49 32.729 27.911 32.823 28.313 L 35.334 38.859 C 35.437 39.291 35.27 39.744 34.911 40.005 C 34.552 40.266 34.071 40.285 33.693 40.053 L 24.461 34.403 C 24.11 34.188 24.054 6.5 24.5 6.5 Z\" fill=\"var(--token-ffa784da-ef05-4ad3-8459-958f96628499, rgb(254, 248, 243)) /* {&quot;name&quot;:&quot;cream_wavex&quot;} */\" stroke-width=\"2.93\" stroke=\"var(--token-ffa784da-ef05-4ad3-8459-958f96628499, rgb(254, 248, 243)) /* {&quot;name&quot;:&quot;cream_wavex&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10753310492,withExternalLayout:true})})]})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9ap3kh\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-192o624\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cql4w1\",\"data-framer-name\":\"Copy\",name:\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-yg8y48\",\"data-styles-preset\":\"mGyWh_kgC\",children:\"COMMUNITY\"})}),className:\"framer-1fcekt1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-t6clv\",\"data-styles-preset\":\"yY9DooUme\",children:\"Join the waveX rowing community   \"})}),className:\"framer-1punmk3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18eax8n\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xreh7m\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:3276,loading:getLoadingLazyAtYPosition(2371.1),pixelHeight:4096,pixelWidth:3276,sizes:\"72px\",src:\"https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg\",srcSet:\"https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg 3276w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:3276,loading:getLoadingLazyAtYPosition(2098.3),pixelHeight:4096,pixelWidth:3276,sizes:\"72px\",src:\"https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg\",srcSet:\"https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg 3276w\"},className:\"framer-1bhi46x\",\"data-border\":true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:4e3,loading:getLoadingLazyAtYPosition(2371.1),pixelHeight:6e3,pixelWidth:4e3,sizes:\"72px\",src:\"https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg\",srcSet:\"https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg 4000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:4e3,loading:getLoadingLazyAtYPosition(2098.3),pixelHeight:6e3,pixelWidth:4e3,sizes:\"72px\",src:\"https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg\",srcSet:\"https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg 4000w\"},className:\"framer-1xxl180\",\"data-border\":true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5168,intrinsicWidth:3445,loading:getLoadingLazyAtYPosition(2371.1),pixelHeight:5168,pixelWidth:3445,sizes:\"72px\",src:\"https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg\",srcSet:\"https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg 3445w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5168,intrinsicWidth:3445,loading:getLoadingLazyAtYPosition(2098.3),pixelHeight:5168,pixelWidth:3445,sizes:\"72px\",src:\"https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg\",srcSet:\"https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg 3445w\"},className:\"framer-9xdrqb\",\"data-border\":true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rtor4w\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3286,intrinsicWidth:2191,loading:getLoadingLazyAtYPosition(2453.1),pixelHeight:3286,pixelWidth:2191,sizes:\"72px\",src:\"https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg\",srcSet:\"https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg 2191w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3286,intrinsicWidth:2191,loading:getLoadingLazyAtYPosition(2180.3),pixelHeight:3286,pixelWidth:2191,sizes:\"72px\",src:\"https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg\",srcSet:\"https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg 2191w\"},className:\"framer-1cxa6af\",\"data-border\":true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4500,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition(2453.1),pixelHeight:4500,pixelWidth:3e3,sizes:\"72px\",src:\"https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg\",srcSet:\"https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg 3000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4500,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition(2180.3),pixelHeight:4500,pixelWidth:3e3,sizes:\"72px\",src:\"https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg\",srcSet:\"https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg 3000w\"},className:\"framer-1na0jn7\",\"data-border\":true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rich54\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ibGFjaw==\",\"--framer-font-family\":'\"Satoshi\", sans-serif',\"--framer-font-weight\":\"900\",\"--framer-letter-spacing\":\"0.16em\",\"--framer-text-color\":\"var(--token-ffa784da-ef05-4ad3-8459-958f96628499, rgb(254, 248, 243))\"},children:\"YOU\"})}),className:\"framer-1akkk9\",fonts:[\"FS;Satoshi-black\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3872,intrinsicWidth:2592,loading:getLoadingLazyAtYPosition(2453.1),pixelHeight:3872,pixelWidth:2592,sizes:\"72px\",src:\"https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg\",srcSet:\"https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg?scale-down-to=1024 685w,https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg?scale-down-to=2048 1370w,https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg 2592w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3872,intrinsicWidth:2592,loading:getLoadingLazyAtYPosition(2180.3),pixelHeight:3872,pixelWidth:2592,sizes:\"72px\",src:\"https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg\",srcSet:\"https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg?scale-down-to=1024 685w,https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg?scale-down-to=2048 1370w,https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg 2592w\"},className:\"framer-1st0c9h\",\"data-border\":true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jxx7nn\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4608,intrinsicWidth:3456,loading:getLoadingLazyAtYPosition(2535.1),pixelHeight:4608,pixelWidth:3456,sizes:\"72px\",src:\"https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg\",srcSet:\"https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg?scale-down-to=4096 3072w,https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg 3456w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4608,intrinsicWidth:3456,loading:getLoadingLazyAtYPosition(2262.3),pixelHeight:4608,pixelWidth:3456,sizes:\"72px\",src:\"https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg\",srcSet:\"https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg?scale-down-to=4096 3072w,https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg 3456w\"},className:\"framer-1pt800a\",\"data-border\":true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4869,intrinsicWidth:3895,loading:getLoadingLazyAtYPosition(2535.1),pixelHeight:4869,pixelWidth:3895,sizes:\"72px\",src:\"https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg\",srcSet:\"https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg?scale-down-to=4096 3276w,https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg 3895w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4869,intrinsicWidth:3895,loading:getLoadingLazyAtYPosition(2262.3),pixelHeight:4869,pixelWidth:3895,sizes:\"72px\",src:\"https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg\",srcSet:\"https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg?scale-down-to=4096 3276w,https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg 3895w\"},className:\"framer-1n77t8z\",\"data-border\":true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3303,intrinsicWidth:2070,loading:getLoadingLazyAtYPosition(2535.1),pixelHeight:3303,pixelWidth:2070,sizes:\"72px\",src:\"https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg\",srcSet:\"https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg?scale-down-to=1024 641w,https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg?scale-down-to=2048 1283w,https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg 2070w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3303,intrinsicWidth:2070,loading:getLoadingLazyAtYPosition(2262.3),pixelHeight:3303,pixelWidth:2070,sizes:\"72px\",src:\"https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg\",srcSet:\"https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg?scale-down-to=1024 641w,https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg?scale-down-to=2048 1283w,https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg 2070w\"},className:\"framer-1fa6tg1\",\"data-border\":true})})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1aognft\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 39 38\"><path d=\"M 18.428 2.852 C 18.597 2.439 18.999 2.169 19.444 2.169 C 19.89 2.169 20.291 2.439 20.46 2.852 L 24.612 12.861 C 24.77 13.243 25.129 13.504 25.54 13.537 L 36.32 14.402 C 37.295 14.481 37.69 15.701 36.948 16.337 L 28.734 23.391 C 28.421 23.659 28.284 24.08 28.379 24.482 L 30.889 35.028 C 30.992 35.46 30.826 35.913 30.466 36.174 C 30.107 36.435 29.627 36.454 29.248 36.222 L 20.017 30.572 C 19.665 30.357 19.223 30.357 18.872 30.572 L 9.641 36.224 C 9.262 36.456 8.781 36.437 8.422 36.176 C 8.063 35.915 7.896 35.462 8 35.03 L 10.51 24.482 C 10.605 24.08 10.468 23.659 10.155 23.391 L 1.941 16.337 C 1.603 16.048 1.472 15.583 1.609 15.16 C 1.747 14.736 2.125 14.437 2.568 14.402 L 13.349 13.537 C 13.76 13.504 14.118 13.243 14.277 12.861 L 18.428 2.854 Z\" fill=\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(192, 255, 115)) /* {&quot;name&quot;:&quot;HighlightPrimary&quot;} */\" stroke-width=\"2.93\" stroke=\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(192, 255, 115)) /* {&quot;name&quot;:&quot;HighlightPrimary&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10879926146,withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nnc4bk\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-884z8u\",\"data-framer-name\":\"Copy\",name:\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-yg8y48\",\"data-styles-preset\":\"mGyWh_kgC\",children:\"PRECISE DATA\"})}),className:\"framer-228dgu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-t6clv\",\"data-styles-preset\":\"yY9DooUme\",children:\"GPS and accelerometer powered\"})}),className:\"framer-4i341f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-111pytx hidden-1b6ewtv hidden-1cyav5f\",\"data-framer-name\":\"Mockup\",name:\"Mockup\",style:{rotate:90},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,loading:getLoadingLazyAtYPosition(1947.9),pixelHeight:2778,pixelWidth:1284,sizes:\"calc(max((max((min(100vw, 1400px) - 96px) / 1.5, 1px) - 104px) / 2, 1px) * 0.89)\",src:\"https://framerusercontent.com/images/3jDFA8WIYhY9livbovLfKTwGsRA.png\",srcSet:\"https://framerusercontent.com/images/3jDFA8WIYhY9livbovLfKTwGsRA.png?scale-down-to=2048 946w,https://framerusercontent.com/images/3jDFA8WIYhY9livbovLfKTwGsRA.png 1284w\"},className:\"framer-ffzg1y\",\"data-framer-name\":\"AppImage\",name:\"AppImage\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition(1939.9),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"},className:\"framer-gg0xr3\",\"data-framer-name\":\"iPhone\",name:\"iPhone\"})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-14queyn hidden-c4dzez hidden-1cyav5f\",children:/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-sgd0bo\",\"data-framer-name\":\"Mockup\",name:\"Mockup\",style:{rotate:90},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNtCTq2UU:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,loading:getLoadingLazyAtYPosition(2237.3),pixelHeight:2778,pixelWidth:1284,sizes:\"121px\",src:\"https://framerusercontent.com/images/3jDFA8WIYhY9livbovLfKTwGsRA.png\",srcSet:\"https://framerusercontent.com/images/3jDFA8WIYhY9livbovLfKTwGsRA.png?scale-down-to=2048 946w,https://framerusercontent.com/images/3jDFA8WIYhY9livbovLfKTwGsRA.png 1284w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,pixelHeight:2778,pixelWidth:1284,sizes:\"121px\",src:\"https://framerusercontent.com/images/3jDFA8WIYhY9livbovLfKTwGsRA.png\",srcSet:\"https://framerusercontent.com/images/3jDFA8WIYhY9livbovLfKTwGsRA.png?scale-down-to=2048 946w,https://framerusercontent.com/images/3jDFA8WIYhY9livbovLfKTwGsRA.png 1284w\"},className:\"framer-fybkok\",\"data-framer-name\":\"AppImage\",name:\"AppImage\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNtCTq2UU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition(2229.3),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"},className:\"framer-1izphrj\",\"data-framer-name\":\"iPhone\",name:\"iPhone\"})})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yr3u11 hidden-c4dzez hidden-1b6ewtv\",children:/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-odd742\",\"data-framer-name\":\"Mockup\",name:\"Mockup\",style:{rotate:90},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,loading:getLoadingLazyAtYPosition(2926.1),pixelHeight:2778,pixelWidth:1284,sizes:\"112.3571px\",src:\"https://framerusercontent.com/images/3jDFA8WIYhY9livbovLfKTwGsRA.png\",srcSet:\"https://framerusercontent.com/images/3jDFA8WIYhY9livbovLfKTwGsRA.png?scale-down-to=2048 946w,https://framerusercontent.com/images/3jDFA8WIYhY9livbovLfKTwGsRA.png 1284w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,pixelHeight:2778,pixelWidth:1284,sizes:\"112.3571px\",src:\"https://framerusercontent.com/images/3jDFA8WIYhY9livbovLfKTwGsRA.png\",srcSet:\"https://framerusercontent.com/images/3jDFA8WIYhY9livbovLfKTwGsRA.png?scale-down-to=2048 946w,https://framerusercontent.com/images/3jDFA8WIYhY9livbovLfKTwGsRA.png 1284w\"},className:\"framer-yhdlc6\",\"data-framer-name\":\"AppImage\",name:\"AppImage\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition(2918.1),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"},className:\"framer-f1yslo\",\"data-framer-name\":\"iPhone\",name:\"iPhone\"})})]})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16a2696\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-n8ukw6\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12c0w3f\",\"data-framer-name\":\"Copy\",name:\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-yg8y48\",\"data-styles-preset\":\"mGyWh_kgC\",children:\"REAR VIEW\"})}),className:\"framer-cecbwn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-t6clv\",\"data-styles-preset\":\"yY9DooUme\",children:\"Real-time action camera feed  for safety \"})}),className:\"framer-jgsyv5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-1mxy1x9 hidden-1b6ewtv hidden-1cyav5f\",\"data-framer-name\":\"Mockup\",name:\"Mockup\",style:{rotate:90},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,loading:getLoadingLazyAtYPosition(2411.9),pixelHeight:1716,pixelWidth:786,sizes:\"calc(max((max((min(100vw, 1400px) - 96px) / 1.5, 1px) - 104px) / 2, 1px) * 0.89)\",src:\"https://framerusercontent.com/images/mJIR3doYY4C4l0ioqVYNPrkCGg.png\",srcSet:\"https://framerusercontent.com/images/mJIR3doYY4C4l0ioqVYNPrkCGg.png 786w\"},className:\"framer-l6ayw6\",\"data-framer-name\":\"AppImage\",name:\"AppImage\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition(2403.9),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"},className:\"framer-1ugnhfg\",\"data-framer-name\":\"iPhone\",name:\"iPhone\"})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1na48ip hidden-c4dzez hidden-1cyav5f\",children:/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-1ez0fjy\",\"data-framer-name\":\"Mockup\",name:\"Mockup\",style:{rotate:90},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNtCTq2UU:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,loading:getLoadingLazyAtYPosition(2701.3),pixelHeight:1716,pixelWidth:786,sizes:\"121px\",src:\"https://framerusercontent.com/images/mJIR3doYY4C4l0ioqVYNPrkCGg.png\",srcSet:\"https://framerusercontent.com/images/mJIR3doYY4C4l0ioqVYNPrkCGg.png 786w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,pixelHeight:1716,pixelWidth:786,sizes:\"121px\",src:\"https://framerusercontent.com/images/mJIR3doYY4C4l0ioqVYNPrkCGg.png\",srcSet:\"https://framerusercontent.com/images/mJIR3doYY4C4l0ioqVYNPrkCGg.png 786w\"},className:\"framer-vrjwq2\",\"data-framer-name\":\"AppImage\",name:\"AppImage\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNtCTq2UU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition(2693.3),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"},className:\"framer-elnu2v\",\"data-framer-name\":\"iPhone\",name:\"iPhone\"})})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-5b5vm9 hidden-c4dzez hidden-1b6ewtv\",children:/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-1v3xmev\",\"data-framer-name\":\"Mockup\",name:\"Mockup\",style:{rotate:90},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,loading:getLoadingLazyAtYPosition(3675.1),pixelHeight:1716,pixelWidth:786,sizes:\"121px\",src:\"https://framerusercontent.com/images/mJIR3doYY4C4l0ioqVYNPrkCGg.png\",srcSet:\"https://framerusercontent.com/images/mJIR3doYY4C4l0ioqVYNPrkCGg.png 786w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,pixelHeight:1716,pixelWidth:786,sizes:\"121px\",src:\"https://framerusercontent.com/images/mJIR3doYY4C4l0ioqVYNPrkCGg.png\",srcSet:\"https://framerusercontent.com/images/mJIR3doYY4C4l0ioqVYNPrkCGg.png 786w\"},className:\"framer-vmf6ao\",\"data-framer-name\":\"AppImage\",name:\"AppImage\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,loading:getLoadingLazyAtYPosition(3667.1),pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:735,intrinsicWidth:361,pixelHeight:1470,pixelWidth:722,src:\"https://framerusercontent.com/images/YlYIbfFEujexwgWABDzpsRlY.webp\"},className:\"framer-h0ngd9\",\"data-framer-name\":\"iPhone\",name:\"iPhone\"})})]})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4zc53d\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9lega9\",\"data-framer-name\":\"Copy\",name:\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-yg8y48\",\"data-styles-preset\":\"mGyWh_kgC\",children:\"USER FRIENDLY\"})}),className:\"framer-1eatqel\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-t6clv\",\"data-styles-preset\":\"yY9DooUme\",children:\"Customizable settings\"})}),className:\"framer-1k3pdsn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h5gepu\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1kqldky\",\"data-framer-name\":\"Graphic\",layout:\"position\",name:\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 161 161\"><g><defs><linearGradient id=\"idss9473409690_1g-706540023\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(255, 255, 255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0, 140, 179)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 137.521 26.833 C 120.012 31.529 99.485 33.542 80.5 33.542 C 61.515 33.542 40.988 31.529 23.479 26.833 L 20.125 40.25 C 32.603 43.604 46.958 45.818 60.375 46.958 L 60.375 127.458 L 73.792 127.458 L 73.792 87.208 L 87.208 87.208 L 87.208 127.458 L 100.625 127.458 L 100.625 46.958 C 114.042 45.818 128.397 43.604 140.875 40.25 Z M 80.5 26.833 C 87.879 26.833 93.917 20.796 93.917 13.417 C 93.917 6.037 87.879 0 80.5 0 C 73.121 0 67.083 6.037 67.083 13.417 C 67.083 20.796 73.121 26.833 80.5 26.833 Z M 46.958 161 L 60.375 161 L 60.375 147.583 L 46.958 147.583 Z M 73.792 161 L 87.208 161 L 87.208 147.583 L 73.792 147.583 Z M 100.625 161 L 114.042 161 L 114.042 147.583 L 100.625 147.583 Z\" fill=\"url(#idss9473409690_1g-706540023)\"></path></g></svg>',svgContentId:9473409690,withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"chlGj9hQg\"},nodeId:\"Dux6JLLvS\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{\"aria-label\":\"button\",className:\"framer-vj10ke framer-197xs3b\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, rgb(255, 255, 255))\"},children:\"See Plans\"})}),className:\"framer-9t4gpw\",\"data-framer-name\":\"Title\",fonts:[\"GF;Wix Madefor Display-700\"],name:\"Title\",transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18vl5m2\",\"data-framer-name\":\"camera\",name:\"camera\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-h6kouk\",\"data-styles-preset\":\"ITjLgBtQc\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-63f981e3-7957-40fa-b0ce-844c0f89f805, rgb(254, 248, 243))\"},children:\"Rear Action Camera \"})}),className:\"framer-1m71u6l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5saitw\",\"data-framer-name\":\"Row\",name:\"Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8glbj2\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11x1swi\",\"data-framer-name\":\"Copy\",name:\"Copy\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-yg8y48\",\"data-styles-preset\":\"mGyWh_kgC\",children:\"CAMERA\"})}),className:\"framer-1qbv5f2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1olbvo1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14gf38w-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script type=\"module\" src=\"https://unpkg.com/@splinetool/viewer@1.9.31/build/spline-viewer.js\"></script>\\n<spline-viewer url=\"https://prod.spline.design/C0KbgSbz73vTMl3z/scene.splinecode\"></spline-viewer>',id:\"sk0oajvBy\",layoutId:\"sk0oajvBy\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1noerfc\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k5spvp\",\"data-framer-name\":\"Copy\",name:\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-yg8y48\",\"data-styles-preset\":\"mGyWh_kgC\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"IMAGE QUALITY\"})})}),className:\"framer-1j11xla\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-t6clv\",\"data-styles-preset\":\"yY9DooUme\",children:[\"High-quality imaging \",/*#__PURE__*/_jsx(\"br\",{}),\"for real time feed and video shots\"]})}),className:\"framer-fqpi43\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"91px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-329b73f7-53a8-405a-b051-552744604b43, rgb(0, 140, 178)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"6K \"})})}),className:\"framer-1e1w9bn\",\"data-framer-name\":\"Social Broker is compliant with social media platform policies, providing a safe and secure platform for businesses and individuals to buy and sell account handles.\",fonts:[\"FS;Satoshi-bold\"],name:\"Social Broker is compliant with social media platform policies, providing a safe and secure platform for businesses and individuals to buy and sell account handles.\",verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q8ie2v\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7upfnc\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h87u2t\",\"data-framer-name\":\"Copy\",name:\"Copy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cvgyh0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-yg8y48\",\"data-styles-preset\":\"mGyWh_kgC\",children:\"WATERPROOF\"})}),className:\"framer-t9c07b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-t6clv\",\"data-styles-preset\":\"yY9DooUme\",children:\"Ideal on the water\"})}),className:\"framer-17vmbt8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1snfgze\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1c6n528\",\"data-framer-name\":\"Graphic\",layout:\"position\",name:\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 143 145\"><g><defs><linearGradient id=\"idss11890233613_1g1799114912\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(247, 253, 255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0, 144, 184)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 58.578 0.575 C 20.316 33.301 1.149 61.567 1.149 85.446 C 1.149 121.265 28.428 144.425 58.578 144.425 C 88.729 144.425 116.008 121.265 116.008 85.446 C 116.008 61.567 96.841 33.301 58.578 0.575 Z M 28.643 86.885 C 31.299 86.885 33.453 88.755 33.955 91.344 C 36.899 107.312 50.323 112.778 60.086 111.987 C 63.173 111.843 65.757 114.288 65.757 117.381 C 65.757 120.258 63.46 122.631 60.588 122.775 C 45.298 123.71 27.423 114.936 23.331 93.142 C 23.078 91.582 23.522 89.989 24.544 88.784 C 25.567 87.58 27.065 86.886 28.643 86.885 Z\" fill=\"url(#idss11890233613_1g1799114912)\"></path></g><path d=\"M 110.265 65.739 L 77.961 80.124 L 77.961 101.701 C 77.961 121.66 91.744 140.325 110.265 144.856 C 128.786 140.325 142.569 121.66 142.569 101.701 L 142.569 80.124 Z\" fill=\"var(--token-034bde00-fb64-4f4b-8043-8d184e29d9b5, rgb(0, 41, 81)) /* {&quot;name&quot;:&quot;blue_wavex&quot;} */\"></path></svg>',svgContentId:11890233613,withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wr5yzz\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vz172j\",\"data-framer-name\":\"Copy\",name:\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-yg8y48\",\"data-styles-preset\":\"mGyWh_kgC\",children:\"WIRELESS CONNECETION\"})}),className:\"framer-1jj8kcv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-t6clv\",\"data-styles-preset\":\"yY9DooUme\",style:{\"--framer-text-alignment\":\"left\"},children:\"Simultanious image transfer for mobile app and device\"})}),className:\"framer-3mml5d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNtCTq2UU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"67px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-329b73f7-53a8-405a-b051-552744604b43, rgb(0, 140, 178)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Wi-Fi \"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"91px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-329b73f7-53a8-405a-b051-552744604b43, rgb(0, 140, 178)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Wi-Fi \"})})}),className:\"framer-bwk5f2\",\"data-framer-name\":\"Social Broker is compliant with social media platform policies, providing a safe and secure platform for businesses and individuals to buy and sell account handles.\",fonts:[\"FS;Satoshi-bold\"],name:\"Social Broker is compliant with social media platform policies, providing a safe and secure platform for businesses and individuals to buy and sell account handles.\",verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1braktb\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-55wv\",\"data-framer-name\":\"Copy\",name:\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-yg8y48\",\"data-styles-preset\":\"mGyWh_kgC\",children:\"IMAGE STABILIZATION\"})}),className:\"framer-162db75\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-t6clv\",\"data-styles-preset\":\"yY9DooUme\",children:\"enhanced clarity of dynamic sports movements.\"})}),className:\"framer-jqf16l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNtCTq2UU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"67px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-329b73f7-53a8-405a-b051-552744604b43, rgb(0, 140, 178)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"EIS\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"91px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-329b73f7-53a8-405a-b051-552744604b43, rgb(0, 140, 178)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"EIS\"})})}),className:\"framer-1s5esbw\",\"data-framer-name\":\"Social Broker is compliant with social media platform policies, providing a safe and secure platform for businesses and individuals to buy and sell account handles.\",fonts:[\"FS;Satoshi-bold\"],name:\"Social Broker is compliant with social media platform policies, providing a safe and secure platform for businesses and individuals to buy and sell account handles.\",verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-66u63x\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ba0iasZmF\"},nodeId:\"BxAi5cFvH\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{\"aria-label\":\"button\",className:\"framer-1trhfsp framer-197xs3b\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, rgb(255, 255, 255))\"},children:\"Order Now\"})}),className:\"framer-1qz209l\",\"data-framer-name\":\"Title\",fonts:[\"GF;Wix Madefor Display-700\"],name:\"Title\",transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ba0iasZmF\"},nodeId:\"uWWawKmgZ\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{\"aria-label\":\"button\",className:\"framer-pmqfxr framer-197xs3b\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, rgb(255, 255, 255))\"},children:\"Rent a GoPro \"})}),className:\"framer-1eo7to4\",\"data-framer-name\":\"Title\",fonts:[\"GF;Wix Madefor Display-700\"],name:\"Title\",transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d2b8oz\",\"data-framer-name\":\"Device\",name:\"Device\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-h6kouk\",\"data-styles-preset\":\"ITjLgBtQc\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-63f981e3-7957-40fa-b0ce-844c0f89f805, rgb(254, 248, 243))\"},children:\"waveX Screen \"})}),className:\"framer-t3zmjp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i5ukpb\",\"data-framer-name\":\"Row\",name:\"Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-i5kp2p\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12ioufy\",\"data-framer-name\":\"Copy\",name:\"Copy\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-yg8y48\",\"data-styles-preset\":\"mGyWh_kgC\",children:\"DEVICE\"})}),className:\"framer-1v6senx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uiivyl\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xrmz5n-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script type=\"module\" src=\"https://unpkg.com/@splinetool/viewer@1.9.31/build/spline-viewer.js\"></script>\\n<spline-viewer url=\"https://prod.spline.design/FLN6u2mndsTWkyvG/scene.splinecode\"></spline-viewer>',id:\"ezJH8HOXF\",layoutId:\"ezJH8HOXF\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lz2u7k\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b0w5b3\",\"data-framer-name\":\"Copy\",name:\"Copy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1avycd4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-yg8y48\",\"data-styles-preset\":\"mGyWh_kgC\",children:\"ANTI-GLARE SCREEN\"})}),className:\"framer-m6h63t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-t6clv\",\"data-styles-preset\":\"yY9DooUme\",children:\"Clear visibility in sunny conditions\"})}),className:\"framer-u0bdrr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e47coz\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ggwtqm\",\"data-framer-name\":\"Graphic\",layout:\"position\",name:\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 150 150\"><g><defs><linearGradient id=\"idss11391965003_1g-2128183579\" x1=\"0.4975792315169647\" x2=\"0.5024875621890548\" y1=\"0.013425534909909942\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(255, 255, 255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgba(143, 0, 48, 0.96)\" stop-opacity=\"0.96\"></stop></linearGradient></defs><path d=\"M 42.25 30.25 L 31 19.063 L 22.188 27.875 L 33.375 39.063 Z M 25 65.625 L 6.25 65.625 L 6.25 78.125 L 25 78.125 Z M 81.25 3.438 L 68.75 3.438 L 68.75 21.875 L 81.25 21.875 Z M 127.813 27.875 L 119 19.063 L 107.813 30.25 L 116.625 39.063 Z M 107.75 113.5 L 118.937 124.75 L 127.75 115.938 L 116.5 104.75 Z M 125 65.625 L 125 78.125 L 143.75 78.125 L 143.75 65.625 Z M 75 34.375 C 54.313 34.375 37.5 51.188 37.5 71.875 C 37.5 92.563 54.313 109.375 75 109.375 C 95.688 109.375 112.5 92.563 112.5 71.875 C 112.5 51.187 95.688 34.375 75 34.375 Z M 68.75 140.313 L 81.25 140.313 L 81.25 121.875 L 68.75 121.875 Z M 22.188 115.875 L 31 124.688 L 42.188 113.438 L 33.375 104.625 Z\" fill=\"url(#idss11391965003_1g-2128183579)\"></path></g><path d=\"M 111.226 66.478 L 78.922 80.863 L 78.922 102.44 C 78.922 122.4 92.705 141.064 111.226 145.595 C 129.747 141.064 143.53 122.4 143.53 102.44 L 143.53 80.863 Z\" fill=\"var(--token-034bde00-fb64-4f4b-8043-8d184e29d9b5, rgb(0, 41, 81)) /* {&quot;name&quot;:&quot;blue_wavex&quot;} */\"></path></svg>',svgContentId:11391965003,withExternalLayout:true})})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pa6fe5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16g77dp\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12l1tz4\",\"data-framer-name\":\"Copy\",name:\"Copy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19pzuvg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-yg8y48\",\"data-styles-preset\":\"mGyWh_kgC\",children:\"WATERPROOF\"})}),className:\"framer-1sbcf0d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-t6clv\",\"data-styles-preset\":\"yY9DooUme\",children:\"Ideal on the water\"})}),className:\"framer-181nngt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mj8vfd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNtCTq2UU:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 126 128\"><g><defs><linearGradient id=\"idss9197230440_1g1799114912\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(247, 253, 255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0, 144, 184)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 51.614 0.508 C 17.901 29.397 1.012 54.349 1.012 75.429 C 1.012 107.048 25.048 127.492 51.614 127.492 C 78.181 127.492 102.217 107.048 102.217 75.429 C 102.217 54.349 85.328 29.397 51.614 0.508 Z M 25.238 76.698 C 27.578 76.698 29.476 78.349 29.919 80.635 C 32.512 94.73 44.34 99.556 52.943 98.857 C 55.663 98.73 57.94 100.889 57.94 103.619 C 57.94 106.159 55.916 108.254 53.386 108.381 C 39.913 109.206 24.163 101.46 20.557 82.222 C 20.335 80.845 20.726 79.438 21.626 78.375 C 22.527 77.312 23.848 76.699 25.238 76.698 Z\" fill=\"url(#idss9197230440_1g1799114912)\"></path></g><path d=\"M 97.157 58.032 L 68.693 70.73 L 68.693 89.778 C 68.693 107.397 80.837 123.873 97.157 127.873 C 113.476 123.873 125.62 107.397 125.62 89.778 L 125.62 70.73 Z\" fill=\"var(--token-034bde00-fb64-4f4b-8043-8d184e29d9b5, rgb(0, 41, 81)) /* {&quot;name&quot;:&quot;blue_wavex&quot;} */\"></path></svg>',svgContentId:9197230440}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-b57hye\",\"data-framer-name\":\"Graphic\",layout:\"position\",name:\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 143 145\"><g><defs><linearGradient id=\"idss11890233613_1g1799114912\" x1=\"0.49751243781094523\" x2=\"0.5024875621890548\" y1=\"0\" y2=\"1\"><stop offset=\"0\" stop-color=\"rgb(247, 253, 255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(0, 144, 184)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 58.578 0.575 C 20.316 33.301 1.149 61.567 1.149 85.446 C 1.149 121.265 28.428 144.425 58.578 144.425 C 88.729 144.425 116.008 121.265 116.008 85.446 C 116.008 61.567 96.841 33.301 58.578 0.575 Z M 28.643 86.885 C 31.299 86.885 33.453 88.755 33.955 91.344 C 36.899 107.312 50.323 112.778 60.086 111.987 C 63.173 111.843 65.757 114.288 65.757 117.381 C 65.757 120.258 63.46 122.631 60.588 122.775 C 45.298 123.71 27.423 114.936 23.331 93.142 C 23.078 91.582 23.522 89.989 24.544 88.784 C 25.567 87.58 27.065 86.886 28.643 86.885 Z\" fill=\"url(#idss11890233613_1g1799114912)\"></path></g><path d=\"M 110.265 65.739 L 77.961 80.124 L 77.961 101.701 C 77.961 121.66 91.744 140.325 110.265 144.856 C 128.786 140.325 142.569 121.66 142.569 101.701 L 142.569 80.124 Z\" fill=\"var(--token-034bde00-fb64-4f4b-8043-8d184e29d9b5, rgb(0, 41, 81)) /* {&quot;name&quot;:&quot;blue_wavex&quot;} */\"></path></svg>',svgContentId:11890233613,withExternalLayout:true})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4qjvhp\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tdkvpi\",\"data-framer-name\":\"Copy\",name:\"Copy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xgm0hw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-yg8y48\",\"data-styles-preset\":\"mGyWh_kgC\",children:\"EASY MOUNTING\"})}),className:\"framer-prq8wl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-t6clv\",\"data-styles-preset\":\"yY9DooUme\",children:\"Tools are included\"})}),className:\"framer-ik7i8n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-155kdyj\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-cjvabh\",\"data-framer-name\":\"Graphic\",layout:\"position\",name:\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 150 150\"><g><defs><linearGradient id=\"idss10638906193_1g2106742729\" x1=\"0.49751243781094523\" x2=\"0.5024701415501324\" y1=\"0\" y2=\"0.9964984515765766\"><stop offset=\"0\" stop-color=\"rgb(247, 253, 255)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-329b73f7-53a8-405a-b051-552744604b43, rgb(0, 140, 178)) /* {&quot;name&quot;:&quot;HighlightPrimary&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 141.875 118.75 L 85 61.875 C 90.625 47.5 87.5 30.625 75.625 18.75 C 63.125 6.25 44.375 3.75 29.375 10.625 L 56.25 37.5 L 37.5 56.25 L 10 29.375 C 2.5 44.375 5.625 63.125 18.125 75.625 C 30 87.5 46.875 90.625 61.25 85 L 118.125 141.875 C 120.625 144.375 124.375 144.375 126.875 141.875 L 141.25 127.5 C 144.375 125 144.375 120.625 141.875 118.75 Z\" fill=\"url(#idss10638906193_1g2106742729)\"></path></g></svg>',svgContentId:10638906193,withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hn4gh7\",\"data-border\":true,\"data-framer-name\":\"Card\",name:\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15inrq3\",\"data-framer-name\":\"Copy\",name:\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-yg8y48\",\"data-styles-preset\":\"mGyWh_kgC\",children:\"LONG BATTERY LIFE\"})}),className:\"framer-hn69fz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-t6clv\",\"data-styles-preset\":\"yY9DooUme\",children:\"Nonstop performance during extended training sessions\"})}),className:\"framer-y08sow\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNtCTq2UU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"87px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-329b73f7-53a8-405a-b051-552744604b43, rgb(0, 140, 178)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"10 h\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"91px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-329b73f7-53a8-405a-b051-552744604b43, rgb(0, 140, 178)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"10 h\"})})}),className:\"framer-1w032pt\",\"data-framer-name\":\"Social Broker is compliant with social media platform policies, providing a safe and secure platform for businesses and individuals to buy and sell account handles.\",fonts:[\"FS;Satoshi-bold\"],name:\"Social Broker is compliant with social media platform policies, providing a safe and secure platform for businesses and individuals to buy and sell account handles.\",verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ba0iasZmF\"},nodeId:\"B9wVESkiA\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{\"aria-label\":\"button\",className:\"framer-1e4b760 framer-197xs3b\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, rgb(255, 255, 255))\"},children:\"Order Now\"})}),className:\"framer-i83vu\",\"data-framer-name\":\"Title\",fonts:[\"GF;Wix Madefor Display-700\"],name:\"Title\",transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18cidu4\",\"data-framer-name\":\"Testimonials\",id:elementId2,name:\"Testimonials\",ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hrjzq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-h6kouk\",\"data-styles-preset\":\"ITjLgBtQc\",style:{\"--framer-text-color\":\"var(--token-63f981e3-7957-40fa-b0ce-844c0f89f805, rgb(254, 248, 243))\"},children:\"Hear it from our users\"})}),className:\"framer-1eogp13\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qminvl\",\"data-framer-name\":\"Row\",name:\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uy5p5t\",\"data-framer-name\":\"Highlight\",name:\"Highlight\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1n2trjp\",\"data-framer-name\":\"Bar\",name:\"Bar\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:40,ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15yxqgh\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNtCTq2UU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(255, 255, 255) 0%, var(--token-329b73f7-53a8-405a-b051-552744604b43, rgb(0, 140, 178)) 0%, rgba(228, 255, 215, 1) 99.74078380605746%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"100+\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(255, 255, 255) 0%, var(--token-329b73f7-53a8-405a-b051-552744604b43, rgb(0, 140, 178)) 0%, rgba(228, 255, 215, 1) 99.74078380605746%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"100+\"})})}),className:\"framer-1rhg8z\",\"data-framer-name\":\"Social Broker is compliant with social media platform policies, providing a safe and secure platform for businesses and individuals to buy and sell account handles.\",fonts:[\"FS;Satoshi-bold\"],name:\"Social Broker is compliant with social media platform policies, providing a safe and secure platform for businesses and individuals to buy and sell account handles.\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iuqn0e\",\"data-framer-name\":\"FeatureAndIcon\",name:\"FeatureAndIcon\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkerw9\",\"data-styles-preset\":\"AGOkGHOKm\",style:{\"--framer-text-alignment\":\"center\"},children:\"Community \"})}),className:\"framer-h1k7hi\",\"data-framer-name\":\"Header\",fonts:[\"Inter\"],name:\"Header\",verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-180676h\",\"data-framer-name\":\"Highlight\",name:\"Highlight\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{__framer__animate:{transition:transition4}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:40,ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ogbjae\",\"data-framer-name\":\"Bar\",name:\"Bar\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:40,ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lulfdj\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-329b73f7-53a8-405a-b051-552744604b43, rgb(0, 140, 178)) 0%, rgb(255, 255, 255) 100%)\"},children:\"10+\"})})}),className:\"framer-6qosgh\",\"data-framer-name\":\"Social Broker is compliant with social media platform policies, providing a safe and secure platform for businesses and individuals to buy and sell account handles.\",fonts:[\"FS;Satoshi-bold\"],name:\"Social Broker is compliant with social media platform policies, providing a safe and secure platform for businesses and individuals to buy and sell account handles.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qv3x0\",\"data-framer-name\":\"FeatureAndIcon\",name:\"FeatureAndIcon\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkerw9\",\"data-styles-preset\":\"AGOkGHOKm\",style:{\"--framer-text-alignment\":\"center\"},children:\"Rowing Clubs\"})}),className:\"framer-lq9fau\",\"data-framer-name\":\"Header\",fonts:[\"Inter\"],name:\"Header\",verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4ekfp7\",\"data-framer-name\":\"Highlight\",name:\"Highlight\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{__framer__animate:{transition:transition4}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:40,ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19kdh8w\",\"data-framer-name\":\"Bar\",name:\"Bar\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:40,ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-glm9us\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-329b73f7-53a8-405a-b051-552744604b43, rgb(0, 140, 178)) 2.5848113738738743%, rgb(255, 255, 255) 100%)\"},children:\"4\"})})}),className:\"framer-2new3v\",\"data-framer-name\":\"Social Broker is compliant with social media platform policies, providing a safe and secure platform for businesses and individuals to buy and sell account handles.\",fonts:[\"FS;Satoshi-bold\"],name:\"Social Broker is compliant with social media platform policies, providing a safe and secure platform for businesses and individuals to buy and sell account handles.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11tlvbr\",\"data-framer-name\":\"FeatureAndIcon\",name:\"FeatureAndIcon\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkerw9\",\"data-styles-preset\":\"AGOkGHOKm\",style:{\"--framer-text-alignment\":\"center\"},children:\"Countries\"})}),className:\"framer-1otg9kf\",\"data-framer-name\":\"Header\",fonts:[\"Inter\"],name:\"Header\",verticalAlignment:\"center\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zjgq5z-container\",id:elementId3,ref:ref5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{sizingOptions:{heightType:true,widthType:false}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:32,height:\"100%\",hoverFactor:.8,id:\"GYZmBYwbl\",layoutId:\"GYZmBYwbl\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-138ujx8\",\"data-border\":true,\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkerw9\",\"data-styles-preset\":\"AGOkGHOKm\",children:'\"With waveX, I feel more confident on the water. The camera gives me real-time rear vision, and it\u2019s like having a coach right behind me.\"'})}),className:\"framer-v9ppav\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bo1p8l\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3872,intrinsicWidth:2592,pixelHeight:3872,pixelWidth:2592,sizes:\"42px\",src:\"https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg\",srcSet:\"https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg?scale-down-to=1024 685w,https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg?scale-down-to=2048 1370w,https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg 2592w\"},className:\"framer-1s8g1tj\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkerw9\",\"data-styles-preset\":\"AGOkGHOKm\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Mark Adams\"})})}),className:\"framer-bb0mlt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13zh37w\",\"data-border\":true,\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkerw9\",\"data-styles-preset\":\"AGOkGHOKm\",children:'\"The new training monitor is a huge upgrade. The data looks great, and it\\'s much easier to stay on top of my improvements during practice.\"'})}),className:\"framer-137nhqp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2syzys\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3872,intrinsicWidth:2592,pixelHeight:1242,pixelWidth:1164,sizes:\"42px\",src:\"https://framerusercontent.com/images/oeVxIVXhf0mVuOEMQTWxC3hgw.png\",srcSet:\"https://framerusercontent.com/images/oeVxIVXhf0mVuOEMQTWxC3hgw.png?scale-down-to=1024 959w,https://framerusercontent.com/images/oeVxIVXhf0mVuOEMQTWxC3hgw.png 1164w\"},className:\"framer-3bbthv\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkerw9\",\"data-styles-preset\":\"AGOkGHOKm\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Jason Whitman\"})})}),className:\"framer-ykchn9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nzvd4l\",\"data-border\":true,\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkerw9\",\"data-styles-preset\":\"AGOkGHOKm\",children:'\"The combination of the rear camera and this new device has taken my rowing to a whole new level. Having instant access to my performance stats on such a clear display is precious.\"'})}),className:\"framer-onx61x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d67v72\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3872,intrinsicWidth:2592,pixelHeight:1242,pixelWidth:1310,sizes:\"42px\",src:\"https://framerusercontent.com/images/IHbbgIGvVF92N3oNZ7YxjEfi0.png\",srcSet:\"https://framerusercontent.com/images/IHbbgIGvVF92N3oNZ7YxjEfi0.png?scale-down-to=512 512w,https://framerusercontent.com/images/IHbbgIGvVF92N3oNZ7YxjEfi0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IHbbgIGvVF92N3oNZ7YxjEfi0.png 1310w\"},className:\"framer-bfdul4\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkerw9\",\"data-styles-preset\":\"AGOkGHOKm\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Oliver Bennett\"})})}),className:\"framer-1wyqnig\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-116cs73\",\"data-border\":true,\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkerw9\",\"data-styles-preset\":\"AGOkGHOKm\",children:'\"WaveX made rowing both safer and more enjoyable. I never realized how much difference it would make in my technique!\"'}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkerw9\",\"data-styles-preset\":\"AGOkGHOKm\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1qp5koo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fj14zv\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3872,intrinsicWidth:2592,pixelHeight:1234,pixelWidth:1308,sizes:\"42px\",src:\"https://framerusercontent.com/images/IPl8UkHZ4WWHcrtLXV3mC5VS12s.png\",srcSet:\"https://framerusercontent.com/images/IPl8UkHZ4WWHcrtLXV3mC5VS12s.png?scale-down-to=512 512w,https://framerusercontent.com/images/IPl8UkHZ4WWHcrtLXV3mC5VS12s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IPl8UkHZ4WWHcrtLXV3mC5VS12s.png 1308w\"},className:\"framer-1cfwuer\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fkerw9\",\"data-styles-preset\":\"AGOkGHOKm\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Emily Crawford\"})})}),className:\"framer-1ax6kpz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1loq7q8\",\"data-framer-name\":\"backed by \",name:\"backed by \",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-h6kouk\",\"data-styles-preset\":\"ITjLgBtQc\",style:{\"--framer-text-color\":\"var(--token-63f981e3-7957-40fa-b0ce-844c0f89f805, rgb(254, 248, 243))\"},children:\"Our Partners\"})}),className:\"framer-1xsal4m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8wbghs-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:21,overflow:false},gap:16,sizingOptions:{heightType:true,widthType:false}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",hoverFactor:.6,id:\"C9diQu989\",layoutId:\"C9diQu989\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:\"https://yirmiuc.org/en/23-girisim/\",nodeId:\"zBtRW8_mW\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1bh7td6 framer-197xs3b\",\"data-border\":true,\"data-framer-name\":\"23 logo\",name:\"23 logo\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:286,pixelWidth:1614,sizes:\"212px\",src:\"https://framerusercontent.com/images/MQVNL28ffJ8UymI5TmVSj1CF9g.png\",srcSet:\"https://framerusercontent.com/images/MQVNL28ffJ8UymI5TmVSj1CF9g.png?scale-down-to=512 512w,https://framerusercontent.com/images/MQVNL28ffJ8UymI5TmVSj1CF9g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MQVNL28ffJ8UymI5TmVSj1CF9g.png 1614w\"},className:\"framer-1utqmkm\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://tubitak.gov.tr/en/funds/sanayi/ulusal-destek-programlari/1512-entrepreneurship-support-program\",nodeId:\"cy3MKQpjV\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1cjfoye framer-197xs3b\",\"data-border\":true,\"data-framer-name\":\"Bigg Logo\",name:\"Bigg Logo\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:335,pixelWidth:768,sizes:\"153px\",src:\"https://framerusercontent.com/images/8JuBikKw7cFcGYpLvJA8nvR57pM.png\",srcSet:\"https://framerusercontent.com/images/8JuBikKw7cFcGYpLvJA8nvR57pM.png?scale-down-to=512 512w,https://framerusercontent.com/images/8JuBikKw7cFcGYpLvJA8nvR57pM.png 768w\"},className:\"framer-19cfjsa\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.imecistart.com/en/launch\",nodeId:\"p73FXKE7E\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1sexabp framer-197xs3b\",\"data-border\":true,\"data-framer-name\":\"\u0131mec logo\",name:\"\u0131mec logo\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:345,pixelWidth:871,sizes:\"203px\",src:\"https://framerusercontent.com/images/Nnx1IQSXzk3l2nrFwTqRzrmPPoI.png\",srcSet:\"https://framerusercontent.com/images/Nnx1IQSXzk3l2nrFwTqRzrmPPoI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Nnx1IQSXzk3l2nrFwTqRzrmPPoI.png 871w\"},className:\"framer-1skpn4s\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://ituseed.com/about/\",nodeId:\"gWV8YNDMB\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-xxfjdi framer-197xs3b\",\"data-border\":true,\"data-framer-name\":\"ITU Logo\",name:\"ITU Logo\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:104,pixelWidth:328,src:\"https://framerusercontent.com/images/91fc9hHONYsfqOUxFYlHiyvsL4.png\"},className:\"framer-14euwd1\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://kworksbigg.ku.edu.tr/?_gl=1%2Aauq9nl%2A_ga%2AODA0NzUxNTAxLjE3Mjk0NDgyOTk.%2A_ga_LJ7CCSS5GZ%2AMTcyOTQ0ODI5OS4xLjEuMTcyOTQ0ODMxMS4wLjAuMA..\",nodeId:\"bbZGCEjOz\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-hdfy8r framer-197xs3b\",\"data-border\":true,\"data-framer-name\":\"KWORKS Logo\",name:\"KWORKS Logo\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:221,pixelWidth:813,sizes:\"230px\",src:\"https://framerusercontent.com/images/mPjQeh7bl394Yrj2AdG8nELoO8o.png\",srcSet:\"https://framerusercontent.com/images/mPjQeh7bl394Yrj2AdG8nELoO8o.png?scale-down-to=512 512w,https://framerusercontent.com/images/mPjQeh7bl394Yrj2AdG8nELoO8o.png 813w\"},className:\"framer-qkq37k\"})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1db7du4\",\"data-framer-name\":\"FAQ\",id:elementId4,name:\"FAQ\",ref:ref6,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-h6kouk\",\"data-styles-preset\":\"ITjLgBtQc\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-63f981e3-7957-40fa-b0ce-844c0f89f805, rgb(254, 248, 243)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Frequently asked questions\"})})}),className:\"framer-5m5oi7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNtCTq2UU:{width:\"calc(100vw - 80px)\",y:6716.299999999999},l1NmqiU8C:{width:\"calc((min(389px, 116.96vw) - 80px) * 0.9333)\",y:10174.9}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:526,width:\"calc((100vw - 80px) * 0.9333)\",y:6836.299999999999,children:/*#__PURE__*/_jsx(Container,{className:\"framer-83nrum-container\",id:elementId5,ref:ref7,children:/*#__PURE__*/_jsx(FAQList,{height:\"100%\",id:\"SgDCu9WZf\",layoutId:\"SgDCu9WZf\",style:{width:\"100%\"},variant:\"EB3UYWe2i\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yurYhqWgh\"},nodeId:\"gtWO0qpLV\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(MotionAWithOptimizedAppearEffect,{animate:animation6,\"aria-label\":\"button\",className:\"framer-1hjk7a4 framer-197xs3b\",\"data-framer-appear-id\":\"1hjk7a4\",\"data-framer-name\":\"Button\",initial:animation7,name:\"Button\",optimized:true,style:{transformPerspective:1200},whileHover:animation5,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, rgb(255, 255, 255))\"},children:\"Contact us\"})}),className:\"framer-1tpywth\",\"data-framer-name\":\"Title\",fonts:[\"GF;Wix Madefor Display-700\"],name:\"Title\",transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3iu5rq\",\"data-border\":true,\"data-framer-name\":\"Stack\",name:\"Stack\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ggsa0d\",\"data-framer-name\":\"Blog\",id:elementId6,name:\"Blog\",ref:ref8,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-h6kouk\",\"data-styles-preset\":\"ITjLgBtQc\",children:\"Our latest stories\"})}),className:\"framer-f2g5c7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ruvgkf-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgba(209, 255, 186, 0.2)\",arrowGap:10,arrowPadding:68,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:24,arrowPaddingTop:-80,arrowPosition:\"top-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:15,overflow:false},gap:24,height:\"100%\",id:\"KCNOwdYha\",intervalControl:1.5,itemAmount:2,layoutId:\"KCNOwdYha\",padding:10,paddingBottom:40,paddingLeft:40,paddingPerSide:false,paddingRight:40,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{\"aria-label\":\"blog post\",className:\"framer-5675cs\",\"data-framer-name\":\"1\",name:\"1\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"cf9vCp9eP\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"cf9vCp9eP\",name:\"R9NVJt3a2\",type:\"Identifier\"},{collection:\"cf9vCp9eP\",name:\"u1F11fZ8y\",type:\"Identifier\"},{collection:\"cf9vCp9eP\",name:\"KbwV4kuCz\",type:\"Identifier\"},{collection:\"cf9vCp9eP\",name:\"YahGhj3vg\",type:\"Identifier\"},{collection:\"cf9vCp9eP\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"R9NVJt3a2\":R9NVJt3a2cf9vCp9eP,\"u1F11fZ8y\":u1F11fZ8ycf9vCp9eP,\"KbwV4kuCz\":KbwV4kuCzcf9vCp9eP,\"YahGhj3vg\":YahGhj3vgcf9vCp9eP,\"id\":idcf9vCp9eP},i)=>{R9NVJt3a2cf9vCp9eP!==null&&R9NVJt3a2cf9vCp9eP!==void 0?R9NVJt3a2cf9vCp9eP:R9NVJt3a2cf9vCp9eP=\"\";YahGhj3vgcf9vCp9eP!==null&&YahGhj3vgcf9vCp9eP!==void 0?YahGhj3vgcf9vCp9eP:YahGhj3vgcf9vCp9eP=\"\";const textContent=toDateString(KbwV4kuCzcf9vCp9eP,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`cf9vCp9eP-${idcf9vCp9eP}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R9NVJt3a2:R9NVJt3a2cf9vCp9eP},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{R9NVJt3a2:R9NVJt3a2cf9vCp9eP},webPageId:\"HiguH26uz\"},nodeId:\"trbfFVwiE\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-kwsq43 framer-197xs3b\",whileHover:animation8,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"520px\",...toResponsiveImage(u1F11fZ8ycf9vCp9eP)},className:\"framer-1vynb7h\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mie3m0\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Content\"})}),className:\"framer-1hu2m33\",\"data-framer-name\":\"Date\",fonts:[\"GF;Plus Jakarta Sans-500\"],name:\"Date\",text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Globalization of Rowing\"})})}),className:\"framer-dhojwz\",\"data-framer-name\":\"Title\",fonts:[\"FS;Satoshi-medium\"],name:\"Title\",text:YahGhj3vgcf9vCp9eP,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idcf9vCp9eP);})})})})}),/*#__PURE__*/_jsx(motion.div,{\"aria-label\":\"blog post\",className:\"framer-8mzr24\",\"data-framer-name\":\"2\",name:\"2\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"l9HDkaxlu\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"l9HDkaxlu\",name:\"R9NVJt3a2\",type:\"Identifier\"},{collection:\"l9HDkaxlu\",name:\"u1F11fZ8y\",type:\"Identifier\"},{collection:\"l9HDkaxlu\",name:\"KbwV4kuCz\",type:\"Identifier\"},{collection:\"l9HDkaxlu\",name:\"YahGhj3vg\",type:\"Identifier\"},{collection:\"l9HDkaxlu\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"R9NVJt3a2\":R9NVJt3a2l9HDkaxlu,\"u1F11fZ8y\":u1F11fZ8yl9HDkaxlu,\"KbwV4kuCz\":KbwV4kuCzl9HDkaxlu,\"YahGhj3vg\":YahGhj3vgl9HDkaxlu,\"id\":idl9HDkaxlu},i)=>{R9NVJt3a2l9HDkaxlu!==null&&R9NVJt3a2l9HDkaxlu!==void 0?R9NVJt3a2l9HDkaxlu:R9NVJt3a2l9HDkaxlu=\"\";YahGhj3vgl9HDkaxlu!==null&&YahGhj3vgl9HDkaxlu!==void 0?YahGhj3vgl9HDkaxlu:YahGhj3vgl9HDkaxlu=\"\";const textContent1=toDateString(KbwV4kuCzl9HDkaxlu,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`l9HDkaxlu-${idl9HDkaxlu}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R9NVJt3a2:R9NVJt3a2l9HDkaxlu},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{R9NVJt3a2:R9NVJt3a2l9HDkaxlu},webPageId:\"HiguH26uz\"},nodeId:\"SFVaV4aNp\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1r8ze7e framer-197xs3b\",whileHover:animation8,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"520px\",...toResponsiveImage(u1F11fZ8yl9HDkaxlu)},className:\"framer-1ab5tro\",id:`${R9NVJt3a2l9HDkaxlu}-${elementId7}`,ref:dynamicRef(`${R9NVJt3a2l9HDkaxlu}-${elementId7}`)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1920d90\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Content\"})}),className:\"framer-15bszc2\",\"data-framer-name\":\"Date\",fonts:[\"GF;Plus Jakarta Sans-500\"],name:\"Date\",text:textContent1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"The Future of Rowing: Innovation, Expansion, and Growth\"})})}),className:\"framer-12d3nka\",\"data-framer-name\":\"Title\",fonts:[\"FS;Satoshi-medium\"],name:\"Title\",text:YahGhj3vgl9HDkaxlu,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idl9HDkaxlu);})})})})}),/*#__PURE__*/_jsx(motion.div,{\"aria-label\":\"blog post\",className:\"framer-rw4tms\",\"data-framer-name\":\"3\",name:\"3\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"G88WdLJD2\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"G88WdLJD2\",name:\"R9NVJt3a2\",type:\"Identifier\"},{collection:\"G88WdLJD2\",name:\"u1F11fZ8y\",type:\"Identifier\"},{collection:\"G88WdLJD2\",name:\"KbwV4kuCz\",type:\"Identifier\"},{collection:\"G88WdLJD2\",name:\"YahGhj3vg\",type:\"Identifier\"},{collection:\"G88WdLJD2\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2.map(({\"R9NVJt3a2\":R9NVJt3a2G88WdLJD2,\"u1F11fZ8y\":u1F11fZ8yG88WdLJD2,\"KbwV4kuCz\":KbwV4kuCzG88WdLJD2,\"YahGhj3vg\":YahGhj3vgG88WdLJD2,\"id\":idG88WdLJD2},i)=>{R9NVJt3a2G88WdLJD2!==null&&R9NVJt3a2G88WdLJD2!==void 0?R9NVJt3a2G88WdLJD2:R9NVJt3a2G88WdLJD2=\"\";YahGhj3vgG88WdLJD2!==null&&YahGhj3vgG88WdLJD2!==void 0?YahGhj3vgG88WdLJD2:YahGhj3vgG88WdLJD2=\"\";const textContent2=toDateString(KbwV4kuCzG88WdLJD2,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`G88WdLJD2-${idG88WdLJD2}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R9NVJt3a2:R9NVJt3a2G88WdLJD2},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{R9NVJt3a2:R9NVJt3a2G88WdLJD2},webPageId:\"HiguH26uz\"},nodeId:\"O7_MYlPNq\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-146wcro framer-197xs3b\",whileHover:animation8,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"520px\",...toResponsiveImage(u1F11fZ8yG88WdLJD2)},className:\"framer-xvrvir\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hofgmj\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Content\"})}),className:\"framer-zn4sl0\",\"data-framer-name\":\"Date\",fonts:[\"GF;Plus Jakarta Sans-500\"],name:\"Date\",text:textContent2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Rowing: A Sport Requiring Physical Stamina and Mental Focus, Along with Heightened Safety Awareness\"})})}),className:\"framer-d033zc\",\"data-framer-name\":\"Title\",fonts:[\"FS;Satoshi-medium\"],name:\"Title\",text:YahGhj3vgG88WdLJD2,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idG88WdLJD2);})})})})}),/*#__PURE__*/_jsx(motion.div,{\"aria-label\":\"blog post\",className:\"framer-1u42hkq\",\"data-framer-name\":\"4\",name:\"4\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"h35NIUodz\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"h35NIUodz\",name:\"R9NVJt3a2\",type:\"Identifier\"},{collection:\"h35NIUodz\",name:\"u1F11fZ8y\",type:\"Identifier\"},{collection:\"h35NIUodz\",name:\"KbwV4kuCz\",type:\"Identifier\"},{collection:\"h35NIUodz\",name:\"YahGhj3vg\",type:\"Identifier\"},{collection:\"h35NIUodz\",name:\"id\",type:\"Identifier\"}]},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3.map(({\"R9NVJt3a2\":R9NVJt3a2h35NIUodz,\"u1F11fZ8y\":u1F11fZ8yh35NIUodz,\"KbwV4kuCz\":KbwV4kuCzh35NIUodz,\"YahGhj3vg\":YahGhj3vgh35NIUodz,\"id\":idh35NIUodz},i)=>{R9NVJt3a2h35NIUodz!==null&&R9NVJt3a2h35NIUodz!==void 0?R9NVJt3a2h35NIUodz:R9NVJt3a2h35NIUodz=\"\";YahGhj3vgh35NIUodz!==null&&YahGhj3vgh35NIUodz!==void 0?YahGhj3vgh35NIUodz:YahGhj3vgh35NIUodz=\"\";const textContent3=toDateString(KbwV4kuCzh35NIUodz,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`h35NIUodz-${idh35NIUodz}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R9NVJt3a2:R9NVJt3a2h35NIUodz},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{R9NVJt3a2:R9NVJt3a2h35NIUodz},webPageId:\"HiguH26uz\"},nodeId:\"JrVxWDoyl\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-2h6ai7 framer-197xs3b\",whileHover:animation8,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"520px\",...toResponsiveImage(u1F11fZ8yh35NIUodz)},className:\"framer-1ge6wvq\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5w9y6u\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Content\"})}),className:\"framer-wli8vl\",\"data-framer-name\":\"Date\",fonts:[\"GF;Plus Jakarta Sans-500\"],name:\"Date\",text:textContent3,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, rgb(0, 140, 178)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"The History of Rowing: From Ancient Origins to Modern Sport\"})})}),className:\"framer-altq0z\",\"data-framer-name\":\"Title\",fonts:[\"FS;Satoshi-medium\"],name:\"Title\",text:YahGhj3vgh35NIUodz,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idh35NIUodz);})})})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TBOd6vXia\"},nodeId:\"SalhAYL35\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(MotionAWithOptimizedAppearEffect,{animate:animation6,\"aria-label\":\"button\",className:\"framer-kpjp8f framer-197xs3b\",\"data-framer-appear-id\":\"kpjp8f\",\"data-framer-name\":\"Button\",initial:animation7,name:\"Button\",optimized:true,style:{transformPerspective:1200},whileHover:animation5,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, rgb(255, 255, 255))\"},children:\"See all posts\"})}),className:\"framer-kef298\",\"data-framer-name\":\"Title\",fonts:[\"GF;Wix Madefor Display-700\"],name:\"Title\",transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bva7nn\",\"data-framer-name\":\"Download\",id:elementId8,name:\"Download\",ref:ref9,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNtCTq2UU:{width:\"min(max(min(100vw, 1600px), 1px), min(100vw, 1600px) * 0.95)\",y:8749.3},l1NmqiU8C:{width:\"min(max(min(100vw, 1600px) - 32px, 1px), (min(100vw, 1600px) - 32px) * 0.95)\",y:12525.9}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:808,width:\"min(max(min(100vw, 1600px) - 80px, 1px), (min(100vw, 1600px) - 80px) * 0.95)\",y:8869.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16vjqz3-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{variant:\"zEf3lDdTT\"}},children:/*#__PURE__*/_jsx(DownloadApp3,{height:\"100%\",id:\"i98zIqXhF\",layoutId:\"i98zIqXhF\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"onL_rxzK4\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9077gh-container\",children:/*#__PURE__*/_jsx(CookieBanner,{banner:{animation:{scale:1,transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},x:0,y:10},containerWidth:0,inset:20,insetBottom:20,insetLeft:20,insetPerSide:false,insetRight:20,insetTop:20,padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,position:\"bottom-right\",style:{backdrop:\"rgba(0, 0, 0, 0.1)\",border:{color:\"rgba(0, 0, 0, 0.05)\",radius:14,width:1},colorBody:\"rgb(68, 68, 68)\",colorTitle:\"var(--token-23e2eec5-3bb2-481e-8401-41e6e88c39e3, rgb(1, 15, 28))\",fill:\"rgb(255, 255, 255)\",fontBody:{},fontTitle:{},link:\"rgb(153, 153, 153)\"},width:360,zIndex:10},button:{borderRadius:8,direction:\"row\",fluid:true,font:{},hoverOpacity:.6,labels:{accept:\"Accept\",acceptAll:\"Accept all\",confirm:\"Okay\",customize:\"Customize\",reject:\"Reject\",rejectAll:\"Reject all\",save:\"Save Preferences\"},padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,primary:{color:\"rgb(255, 255, 255)\",fill:\"var(--token-329b73f7-53a8-405a-b051-552744604b43, rgb(0, 140, 178))\"},secondary:{color:\"rgb(68, 68, 68)\",fill:\"rgb(238, 238, 238)\"},tapOpacity:.4},content:{euBlocking:false,euDefaults:{analytics:false,marketing:false,necessary:true,preferences:false},euDescription:\"We use cookies to enhance your experience, analyze site traffic and deliver personalized content.\",euPolicy:{label:\"Cookie Policy\",link:\"https://www.framer.com/legal/policy/\",prefix:\"Read our\"},euShowReject:false,euTitle:\"Cookie Settings\",euType:\"advanced\",isEU:false,worldBlocking:false,worldDefaults:{analytics:true,marketing:true,necessary:true,preferences:true},worldDescription:\"We use cookies to personalize content, run ads, and analyze traffic.\",worldPolicy:{label:\"Cookie Policy\",link:\"wavex.app/privacy-terms/cookie-policy\",prefix:\"Read our\"},worldShowReject:false,worldTitle:\"Cookie Settings\",worldType:\"advanced\"},gtmId:\"G-EB29MPQT67\",height:\"100%\",id:\"JwTdQfhHE\",layoutId:\"JwTdQfhHE\",options:{analytics:{description:\"Enables tracking of performance.\",title:\"Analytics\"},marketing:{description:\"Enables ads personalization and tracking.\",title:\"Marketing\"},necessary:{description:\"Enables security and basic functionality.\",optional:true,title:\"Necessary\"},preferences:{description:\"Enables personalized content and settings.\",title:\"Preferences\"},preview:false,style:{background:\"rgba(0, 0, 0, 0.02)\",border:{color:\"rgba(0, 0, 0, 0.02)\",radius:8,width:0},fontBody:{},fontTitle:{},padding:12,paddingBottom:12,paddingLeft:12,paddingPerSide:false,paddingRight:12,paddingTop:12,toggleColor:\"rgb(0, 0, 0)\",toggleColorInactive:\"rgba(0, 0, 0, 0.1)\"}},preview:false,trigger:{color:\"rgb(51, 51, 51)\",iconSize:24,iconType:\"default\",text:\"Cookie Settings\",textFont:{},type:\"icon\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNtCTq2UU:{y:9961.3},l1NmqiU8C:{y:13737.9}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,width:\"100vw\",y:10081.3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hvw6qm-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{variant:\"IeglKs4az\"}},children:/*#__PURE__*/_jsx(Footer2,{height:\"100%\",id:\"aiwlLIV5L\",layoutId:\"aiwlLIV5L\",style:{width:\"100%\"},variant:\"kOoWwJ6p6\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{width:\"calc(100vw - 32px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:24,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{l1NmqiU8C:{__framer__styleAppearEffectEnabled:undefined,style:{},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13ddggt-container\",layoutScroll:true,style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dNtCTq2UU:{__framer__targets:[{offset:40,ref:ref2,target:\"hG_1cDLeH\"},{offset:40,ref:ref3,target:\"lIwf3j3M_\"},{offset:40,ref:ref4,target:\"BsfU5xVMh\"},{offset:40,ref:ref6,target:\"ZTIWpJRDt\"},{offset:40,ref:ref9,target:\"F27DvTvkQ\"}],variant:\"nSWhplfCM\"},l1NmqiU8C:{__framer__variantAppearEffectEnabled:undefined,style:{width:\"100%\"},variant:\"nSWhplfCM\"}},children:/*#__PURE__*/_jsx(Menu2WithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:40,ref:ref2,target:\"n5b5FFYho\"},{offset:40,ref:ref3,target:\"G45gwSVn9\"},{offset:40,ref:ref4,target:\"xq9QPEUz9\"},{offset:40,ref:ref6,target:\"pC_gW7ZdN\"},{offset:40,ref:ref8,target:\"SDHjK0jvM\"},{offset:40,ref:ref9,target:\"pS8ywZpQi\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"g_te_4SSX\",layoutId:\"g_te_4SSX\",variant:\"n5b5FFYho\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-Aaejx { background: var(--token-23e2eec5-3bb2-481e-8401-41e6e88c39e3, rgb(1, 15, 28)) /* {\"name\":\"BgColor\"} */; }`,\".framer-Aaejx.framer-197xs3b, .framer-Aaejx .framer-197xs3b { display: block; }\",\".framer-Aaejx.framer-c4dzez { align-content: center; align-items: center; background-color: var(--token-23e2eec5-3bb2-481e-8401-41e6e88c39e3, #010f1c); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 82px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1197px; }\",\".framer-Aaejx .framer-1qwripd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 43px; height: min-content; justify-content: center; overflow: visible; padding: 80px 40px 0px 40px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-Aaejx .framer-gjov4t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 120px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Aaejx .framer-155hhsw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 90%; overflow: visible; padding: 0px; position: relative; width: 70%; }\",\".framer-Aaejx .framer-8mnk5m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Aaejx .framer-gk8lco { --framer-paragraph-spacing: 72px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Aaejx .framer-xu6x3w { align-content: flex-end; align-items: flex-end; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 90vh; justify-content: center; max-width: 600px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-Aaejx .framer-kntdi5 { align-content: center; align-items: center; border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; border-top-left-radius: 64px; border-top-right-radius: 64px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 200%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Aaejx .framer-1sywkcz { border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; flex: none; height: 95%; mix-blend-mode: multiply; overflow: hidden; position: relative; width: 92%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Aaejx .framer-4rjwre-container { flex: none; height: 100%; left: calc(50.00000000000002% - 99.90909090909092% / 2); position: absolute; top: calc(50.00000000000002% - 99.85380116959064% / 2); width: 100%; z-index: 1; }\",\".framer-Aaejx .framer-qfcwij { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 80px 40px 80px 40px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-Aaejx .framer-1sljojl, .framer-Aaejx .framer-18vl5m2 { 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 0px 30px 0px; position: relative; width: 100%; }\",\".framer-Aaejx .framer-jhoj2z, .framer-Aaejx .framer-1m71u6l, .framer-Aaejx .framer-t3zmjp, .framer-Aaejx .framer-1eogp13, .framer-Aaejx .framer-1xsal4m, .framer-Aaejx .framer-5m5oi7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 93%; word-break: break-word; word-wrap: break-word; }\",\".framer-Aaejx .framer-caebok, .framer-Aaejx .framer-9ap3kh, .framer-Aaejx .framer-16a2696, .framer-Aaejx .framer-i5ukpb, .framer-Aaejx .framer-pa6fe5 { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Aaejx .framer-dr841p { --border-bottom-width: 1px; --border-color: var(--token-2dd4acdb-e1d2-4cf6-b021-5a73398e74c3, #2b2b2b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-51ea92e7-108a-4b0b-b1d1-0efd6716735f, #171717); border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 440px; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Aaejx .framer-1oh4ebp, .framer-Aaejx .framer-xpxsdg, .framer-Aaejx .framer-1cql4w1, .framer-Aaejx .framer-9lega9, .framer-Aaejx .framer-11x1swi, .framer-Aaejx .framer-k5spvp, .framer-Aaejx .framer-1vz172j, .framer-Aaejx .framer-55wv, .framer-Aaejx .framer-12ioufy, .framer-Aaejx .framer-15inrq3 { align-content: flex-start; align-items: flex-start; 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-Aaejx .framer-1yqfwny, .framer-Aaejx .framer-r1qog6, .framer-Aaejx .framer-142r3xf, .framer-Aaejx .framer-12q80l, .framer-Aaejx .framer-1fcekt1, .framer-Aaejx .framer-1punmk3, .framer-Aaejx .framer-228dgu, .framer-Aaejx .framer-4i341f, .framer-Aaejx .framer-cecbwn, .framer-Aaejx .framer-jgsyv5, .framer-Aaejx .framer-1eatqel, .framer-Aaejx .framer-1k3pdsn, .framer-Aaejx .framer-1qbv5f2, .framer-Aaejx .framer-1j11xla, .framer-Aaejx .framer-fqpi43, .framer-Aaejx .framer-t9c07b, .framer-Aaejx .framer-17vmbt8, .framer-Aaejx .framer-1jj8kcv, .framer-Aaejx .framer-3mml5d, .framer-Aaejx .framer-162db75, .framer-Aaejx .framer-jqf16l, .framer-Aaejx .framer-1v6senx, .framer-Aaejx .framer-m6h63t, .framer-Aaejx .framer-u0bdrr, .framer-Aaejx .framer-1sbcf0d, .framer-Aaejx .framer-181nngt, .framer-Aaejx .framer-prq8wl, .framer-Aaejx .framer-ik7i8n, .framer-Aaejx .framer-hn69fz, .framer-Aaejx .framer-y08sow, .framer-Aaejx .framer-v9ppav, .framer-Aaejx .framer-137nhqp, .framer-Aaejx .framer-onx61x, .framer-Aaejx .framer-1qp5koo { --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-Aaejx .framer-bmnmr9, .framer-Aaejx .framer-xreh7m, .framer-Aaejx .framer-1rtor4w, .framer-Aaejx .framer-jxx7nn, .framer-Aaejx .framer-66u63x { 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-Aaejx .framer-1wii0d1, .framer-Aaejx .framer-qxq71w, .framer-Aaejx .framer-12td8fh { aspect-ratio: 0.4968944099378882 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 422px); overflow: visible; position: relative; width: 1px; }\",\".framer-Aaejx .framer-1gsly86, .framer-Aaejx .framer-1rlpgl8, .framer-Aaejx .framer-m2axkv { aspect-ratio: 0.4617737003058104 / 1; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; flex: none; height: var(--framer-aspect-ratio-supported, 404px); left: 50%; overflow: visible; position: absolute; top: 8px; transform: translateX(-50%); width: 89%; }\",\".framer-Aaejx .framer-3jmx1y, .framer-Aaejx .framer-zszlxe, .framer-Aaejx .framer-148hsnb { aspect-ratio: 0.49115646258503404 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 419px); left: 2px; overflow: visible; position: absolute; right: 2px; top: 0px; }\",\".framer-Aaejx .framer-1wl85we { --border-bottom-width: 1px; --border-color: var(--token-2dd4acdb-e1d2-4cf6-b021-5a73398e74c3, #2b2b2b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-51ea92e7-108a-4b0b-b1d1-0efd6716735f, #171717); border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 440px; justify-content: space-between; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Aaejx .framer-16su9zt { 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: 0px; position: relative; width: 100%; }\",\".framer-Aaejx .framer-p82b5y, .framer-Aaejx .framer-1e1w9bn, .framer-Aaejx .framer-bwk5f2, .framer-Aaejx .framer-1s5esbw, .framer-Aaejx .framer-1w032pt, .framer-Aaejx .framer-1rhg8z, .framer-Aaejx .framer-6qosgh, .framer-Aaejx .framer-2new3v, .framer-Aaejx .framer-1hu2m33, .framer-Aaejx .framer-dhojwz, .framer-Aaejx .framer-15bszc2, .framer-Aaejx .framer-12d3nka, .framer-Aaejx .framer-zn4sl0, .framer-Aaejx .framer-d033zc, .framer-Aaejx .framer-wli8vl, .framer-Aaejx .framer-altq0z { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Aaejx .framer-ha6s4z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Aaejx .framer-1oy1tu9, .framer-Aaejx .framer-1403s5r, .framer-Aaejx .framer-1xqe2ee, .framer-Aaejx .framer-1xb471z, .framer-Aaejx .framer-3vlr6f { flex: none; height: 47px; position: relative; width: 47px; }\",\".framer-Aaejx .framer-192o624 { --border-bottom-width: 1px; --border-color: var(--token-2dd4acdb-e1d2-4cf6-b021-5a73398e74c3, #2b2b2b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-51ea92e7-108a-4b0b-b1d1-0efd6716735f, #171717); border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: 440px; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Aaejx .framer-18eax8n, .framer-Aaejx .framer-cvgyh0, .framer-Aaejx .framer-1avycd4, .framer-Aaejx .framer-19pzuvg, .framer-Aaejx .framer-1xgm0hw, .framer-Aaejx .framer-1loq7q8 { 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-Aaejx .framer-1bhi46x { --border-bottom-width: 4px; --border-color: var(--token-349bf369-0a87-42c3-9444-70e3b217ba4a, #8e002f); --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; aspect-ratio: 1 / 1; border-bottom-left-radius: 479px; border-bottom-right-radius: 479px; border-top-left-radius: 479px; border-top-right-radius: 479px; flex: none; height: var(--framer-aspect-ratio-supported, 72px); overflow: hidden; position: relative; width: 72px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Aaejx .framer-1xxl180, .framer-Aaejx .framer-1pt800a { --border-bottom-width: 4px; --border-color: var(--token-034bde00-fb64-4f4b-8043-8d184e29d9b5, #002951); --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; aspect-ratio: 1 / 1; border-bottom-left-radius: 479px; border-bottom-right-radius: 479px; border-top-left-radius: 479px; border-top-right-radius: 479px; flex: none; height: var(--framer-aspect-ratio-supported, 72px); overflow: hidden; position: relative; width: 72px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Aaejx .framer-9xdrqb { --border-bottom-width: 4px; --border-color: var(--token-ffa784da-ef05-4ad3-8459-958f96628499, #fef8f3); --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; aspect-ratio: 1 / 1; border-bottom-left-radius: 479px; border-bottom-right-radius: 479px; border-top-left-radius: 479px; border-top-right-radius: 479px; flex: none; height: var(--framer-aspect-ratio-supported, 72px); overflow: hidden; position: relative; width: 72px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Aaejx .framer-1cxa6af { --border-bottom-width: 4px; --border-color: var(--token-d9f86cfc-1a15-45be-a0b3-6a65c1d39621, #a8cbd0); --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; aspect-ratio: 1 / 1; border-bottom-left-radius: 479px; border-bottom-right-radius: 479px; border-top-left-radius: 479px; border-top-right-radius: 479px; flex: none; height: var(--framer-aspect-ratio-supported, 72px); overflow: hidden; position: relative; width: 72px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Aaejx .framer-1na0jn7, .framer-Aaejx .framer-1st0c9h, .framer-Aaejx .framer-1fa6tg1 { --border-bottom-width: 4px; --border-color: var(--token-46e212cb-d168-42b0-bd0a-b6b278a7048d, #008cb2); --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; aspect-ratio: 1 / 1; border-bottom-left-radius: 479px; border-bottom-right-radius: 479px; border-top-left-radius: 479px; border-top-right-radius: 479px; flex: none; height: var(--framer-aspect-ratio-supported, 72px); overflow: hidden; position: relative; width: 72px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Aaejx .framer-1rich54 { aspect-ratio: 1 / 1; background-color: var(--token-349bf369-0a87-42c3-9444-70e3b217ba4a, #8e002f); border-bottom-left-radius: 479px; border-bottom-right-radius: 479px; border-top-left-radius: 479px; border-top-right-radius: 479px; flex: none; height: var(--framer-aspect-ratio-supported, 72px); overflow: hidden; position: relative; width: 72px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Aaejx .framer-1akkk9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-Aaejx .framer-1n77t8z { --border-bottom-width: 4px; --border-color: var(--token-63f981e3-7957-40fa-b0ce-844c0f89f805, #fef8f3); --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; aspect-ratio: 1 / 1; border-bottom-left-radius: 479px; border-bottom-right-radius: 479px; border-top-left-radius: 479px; border-top-right-radius: 479px; flex: none; height: var(--framer-aspect-ratio-supported, 72px); overflow: hidden; position: relative; width: 72px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Aaejx .framer-1aognft { flex: none; height: 38px; position: relative; width: 39px; }\",\".framer-Aaejx .framer-nnc4bk { --border-bottom-width: 1px; --border-color: var(--token-2dd4acdb-e1d2-4cf6-b021-5a73398e74c3, #2b2b2b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-c1d80a55-b293-43cb-a4cf-deae76771e2b, #171717); border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: 2 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 440px; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Aaejx .framer-884z8u, .framer-Aaejx .framer-12c0w3f { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Aaejx .framer-111pytx, .framer-Aaejx .framer-1mxy1x9 { flex: 1 0 0px; height: 599px; overflow: visible; position: relative; width: 1px; }\",\".framer-Aaejx .framer-ffzg1y, .framer-Aaejx .framer-l6ayw6 { aspect-ratio: 0.4617737003058104 / 1; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; flex: none; height: var(--framer-aspect-ratio-supported, 587px); left: 50%; overflow: visible; position: absolute; top: 8px; transform: translateX(-50%); width: 89%; }\",\".framer-Aaejx .framer-gg0xr3, .framer-Aaejx .framer-1ugnhfg { aspect-ratio: 0.49115646258503404 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 612px); left: 2px; overflow: visible; position: absolute; right: 2px; top: 0px; }\",\".framer-Aaejx .framer-14queyn, .framer-Aaejx .framer-1yr3u11, .framer-Aaejx .framer-1na48ip, .framer-Aaejx .framer-5b5vm9 { 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: 171px 219px 171px 219px; position: relative; width: min-content; }\",\".framer-Aaejx .framer-sgd0bo, .framer-Aaejx .framer-1ez0fjy, .framer-Aaejx .framer-1v3xmev { flex: none; height: 18300%; overflow: visible; position: relative; width: 140px; }\",\".framer-Aaejx .framer-fybkok, .framer-Aaejx .framer-yhdlc6, .framer-Aaejx .framer-vrjwq2, .framer-Aaejx .framer-vmf6ao { aspect-ratio: 0.4617737003058104 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 433px); left: 50%; overflow: visible; position: absolute; top: 8px; transform: translateX(-50%); width: 86%; }\",\".framer-Aaejx .framer-1izphrj, .framer-Aaejx .framer-f1yslo, .framer-Aaejx .framer-elnu2v, .framer-Aaejx .framer-h0ngd9 { aspect-ratio: 0.49115646258503404 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 436px); left: 2px; overflow: visible; position: absolute; right: 2px; top: 0px; }\",\".framer-Aaejx .framer-odd742 { flex: none; height: 18300%; overflow: visible; position: relative; width: 130px; }\",\".framer-Aaejx .framer-n8ukw6 { --border-bottom-width: 1px; --border-color: var(--token-2dd4acdb-e1d2-4cf6-b021-5a73398e74c3, #2b2b2b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-51ea92e7-108a-4b0b-b1d1-0efd6716735f, #171717); border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: 2 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 440px; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Aaejx .framer-4zc53d { --border-bottom-width: 1px; --border-color: var(--token-2dd4acdb-e1d2-4cf6-b021-5a73398e74c3, #2b2b2b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-c1d80a55-b293-43cb-a4cf-deae76771e2b, #171717); border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: 440px; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Aaejx .framer-h5gepu, .framer-Aaejx .framer-1snfgze, .framer-Aaejx .framer-1mj8vfd, .framer-Aaejx .framer-155kdyj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 10px 0px 10px; position: relative; width: 100%; }\",\".framer-Aaejx .framer-1kqldky { flex: none; height: 161px; position: relative; width: 161px; }\",\".framer-Aaejx .framer-vj10ke, .framer-Aaejx .framer-1trhfsp, .framer-Aaejx .framer-pmqfxr, .framer-Aaejx .framer-1e4b760 { background-color: var(--token-329b73f7-53a8-405a-b051-552744604b43, #008cb2); border-bottom-left-radius: 365px; border-bottom-right-radius: 365px; border-top-left-radius: 365px; border-top-right-radius: 365px; flex: none; height: 60px; overflow: hidden; position: relative; text-decoration: none; width: 200px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-Aaejx .framer-9t4gpw, .framer-Aaejx .framer-1qz209l, .framer-Aaejx .framer-1eo7to4, .framer-Aaejx .framer-i83vu, .framer-Aaejx .framer-1tpywth, .framer-Aaejx .framer-kef298 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-Aaejx .framer-5saitw { align-content: flex-start; align-items: flex-start; 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-Aaejx .framer-8glbj2, .framer-Aaejx .framer-i5kp2p { --border-bottom-width: 1px; --border-color: var(--token-2dd4acdb-e1d2-4cf6-b021-5a73398e74c3, #2b2b2b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-51ea92e7-108a-4b0b-b1d1-0efd6716735f, #171717); border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 440px; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Aaejx .framer-1olbvo1, .framer-Aaejx .framer-uiivyl { align-content: center; align-items: center; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 253px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Aaejx .framer-14gf38w-container, .framer-Aaejx .framer-xrmz5n-container { flex: 1 0 0px; height: 100%; position: sticky; top: 0px; width: 1px; will-change: transform; z-index: 1; }\",\".framer-Aaejx .framer-1noerfc, .framer-Aaejx .framer-1lz2u7k { --border-bottom-width: 1px; --border-color: var(--token-2dd4acdb-e1d2-4cf6-b021-5a73398e74c3, #2b2b2b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-51ea92e7-108a-4b0b-b1d1-0efd6716735f, #171717); border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: 440px; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Aaejx .framer-1q8ie2v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-Aaejx .framer-7upfnc, .framer-Aaejx .framer-1wr5yzz, .framer-Aaejx .framer-1braktb, .framer-Aaejx .framer-16g77dp, .framer-Aaejx .framer-4qjvhp, .framer-Aaejx .framer-1hn4gh7 { --border-bottom-width: 1px; --border-color: var(--token-2dd4acdb-e1d2-4cf6-b021-5a73398e74c3, #2b2b2b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-51ea92e7-108a-4b0b-b1d1-0efd6716735f, #171717); border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: 380px; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Aaejx .framer-h87u2t, .framer-Aaejx .framer-b0w5b3, .framer-Aaejx .framer-12l1tz4, .framer-Aaejx .framer-tdkvpi { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Aaejx .framer-1c6n528, .framer-Aaejx .framer-b57hye { flex: none; height: 145px; position: relative; width: 143px; }\",\".framer-Aaejx .framer-d2b8oz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Aaejx .framer-1e47coz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 10px 20px 10px; position: relative; width: 100%; }\",\".framer-Aaejx .framer-ggwtqm, .framer-Aaejx .framer-cjvabh { flex: none; height: 150px; position: relative; width: 150px; }\",\".framer-Aaejx .framer-18cidu4 { 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: 1400px; overflow: visible; padding: 80px 40px 80px 40px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-Aaejx .framer-1hrjzq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-Aaejx .framer-qminvl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 90%; }\",\".framer-Aaejx .framer-uy5p5t, .framer-Aaejx .framer-180676h, .framer-Aaejx .framer-4ekfp7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Aaejx .framer-1n2trjp { align-self: stretch; flex: none; height: auto; overflow: hidden; position: relative; width: 2px; }\",\".framer-Aaejx .framer-15yxqgh, .framer-Aaejx .framer-1lulfdj, .framer-Aaejx .framer-glm9us { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 16px; position: relative; width: 95%; }\",\".framer-Aaejx .framer-1iuqn0e, .framer-Aaejx .framer-qv3x0, .framer-Aaejx .framer-11tlvbr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Aaejx .framer-h1k7hi, .framer-Aaejx .framer-lq9fau, .framer-Aaejx .framer-1otg9kf { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",'.framer-Aaejx .framer-ogbjae, .framer-Aaejx .framer-19kdh8w { align-self: stretch; background: linear-gradient(180deg, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, #ffffff) /* {\"name\":\"TextPrimary\"} */ 0%, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186)) /* {\"name\":\"HighlightPrimary\"} */ 100%); flex: none; height: auto; overflow: hidden; position: relative; width: 2px; }',\".framer-Aaejx .framer-zjgq5z-container { flex: none; height: 320px; position: relative; width: 100%; }\",\".framer-Aaejx .framer-138ujx8, .framer-Aaejx .framer-13zh37w, .framer-Aaejx .framer-1nzvd4l, .framer-Aaejx .framer-116cs73 { --border-bottom-width: 1px; --border-color: var(--token-2dd4acdb-e1d2-4cf6-b021-5a73398e74c3, #2b2b2b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-51ea92e7-108a-4b0b-b1d1-0efd6716735f, #171717); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 320px; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 500px; }\",\".framer-Aaejx .framer-bo1p8l, .framer-Aaejx .framer-2syzys, .framer-Aaejx .framer-1d67v72, .framer-Aaejx .framer-fj14zv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Aaejx .framer-1s8g1tj, .framer-Aaejx .framer-3bbthv, .framer-Aaejx .framer-bfdul4, .framer-Aaejx .framer-1cfwuer { aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 42px); overflow: hidden; position: relative; width: 42px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Aaejx .framer-bb0mlt, .framer-Aaejx .framer-ykchn9, .framer-Aaejx .framer-1wyqnig, .framer-Aaejx .framer-1ax6kpz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Aaejx .framer-8wbghs-container { flex: none; height: 191px; position: relative; width: 100%; }\",\".framer-Aaejx .framer-1bh7td6, .framer-Aaejx .framer-1cjfoye, .framer-Aaejx .framer-1sexabp, .framer-Aaejx .framer-xxfjdi, .framer-Aaejx .framer-hdfy8r { --border-bottom-width: 1px; --border-color: var(--token-2dd4acdb-e1d2-4cf6-b021-5a73398e74c3, #2b2b2b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-51ea92e7-108a-4b0b-b1d1-0efd6716735f, #171717); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 100px; justify-content: center; overflow: visible; padding: 40px; position: relative; text-decoration: none; width: 300px; }\",\".framer-Aaejx .framer-1utqmkm { aspect-ratio: 6.235294117647059 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 96%; }\",\".framer-Aaejx .framer-19cfjsa { aspect-ratio: 1.9125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 105px); position: relative; width: 70%; }\",\".framer-Aaejx .framer-1skpn4s { aspect-ratio: 2.985294117647059 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 67px); position: relative; width: 92%; }\",\".framer-Aaejx .framer-14euwd1 { aspect-ratio: 3.1029411764705883 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); position: relative; width: 96%; }\",\".framer-Aaejx .framer-qkq37k { aspect-ratio: 3.7704918032786887 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 53px); position: relative; width: 105%; }\",\".framer-Aaejx .framer-1db7du4 { 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: 117%; overflow: visible; padding: 80px 40px 80px 40px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-Aaejx .framer-83nrum-container { flex: none; height: auto; position: relative; width: 93%; }\",\".framer-Aaejx .framer-1hjk7a4, .framer-Aaejx .framer-kpjp8f { background-color: var(--token-329b73f7-53a8-405a-b051-552744604b43, #008cb2); border-bottom-left-radius: 365px; border-bottom-right-radius: 365px; border-top-left-radius: 365px; border-top-right-radius: 365px; flex: none; height: 60px; overflow: hidden; position: relative; text-decoration: none; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Aaejx .framer-3iu5rq { --border-bottom-width: 1px; --border-color: var(--token-2dd4acdb-e1d2-4cf6-b021-5a73398e74c3, #2b2b2b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-c1d80a55-b293-43cb-a4cf-deae76771e2b, #171717); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 80px; justify-content: center; opacity: 0; overflow: visible; padding: 40px; position: relative; width: 97%; z-index: 1; }\",\".framer-Aaejx .framer-1ggsa0d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 100px 40px 100px 40px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-Aaejx .framer-f2g5c7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-Aaejx .framer-1ruvgkf-container { flex: none; height: 495px; position: relative; width: 100%; }\",\".framer-Aaejx .framer-5675cs, .framer-Aaejx .framer-8mzr24, .framer-Aaejx .framer-rw4tms, .framer-Aaejx .framer-1u42hkq { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 520px; }\",\".framer-Aaejx .framer-kwsq43, .framer-Aaejx .framer-1r8ze7e, .framer-Aaejx .framer-146wcro, .framer-Aaejx .framer-2h6ai7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-Aaejx .framer-1vynb7h, .framer-Aaejx .framer-1ab5tro, .framer-Aaejx .framer-xvrvir, .framer-Aaejx .framer-1ge6wvq { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: 353px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Aaejx .framer-1mie3m0, .framer-Aaejx .framer-1920d90, .framer-Aaejx .framer-hofgmj, .framer-Aaejx .framer-5w9y6u { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 16px 24px 24px 24px; position: relative; width: 1px; }\",\".framer-Aaejx .framer-bva7nn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1600px; overflow: visible; padding: 40px; position: relative; scroll-margin-top: 40px; width: 100%; }\",\".framer-Aaejx .framer-16vjqz3-container { flex: 1 0 0px; height: auto; max-width: 95%; position: relative; width: 1px; }\",\".framer-Aaejx .framer-9077gh-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Aaejx .framer-1hvw6qm-container { flex: none; height: auto; position: relative; width: 100%; z-index: 0; }\",\".framer-Aaejx .framer-13ddggt-container { flex: none; height: auto; left: 50%; position: fixed; top: 24px; transform: translateX(-50%); width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Aaejx.framer-c4dzez, .framer-Aaejx .framer-1qwripd, .framer-Aaejx .framer-gjov4t, .framer-Aaejx .framer-155hhsw, .framer-Aaejx .framer-8mnk5m, .framer-Aaejx .framer-xu6x3w, .framer-Aaejx .framer-kntdi5, .framer-Aaejx .framer-qfcwij, .framer-Aaejx .framer-1sljojl, .framer-Aaejx .framer-caebok, .framer-Aaejx .framer-dr841p, .framer-Aaejx .framer-1oh4ebp, .framer-Aaejx .framer-bmnmr9, .framer-Aaejx .framer-xpxsdg, .framer-Aaejx .framer-16su9zt, .framer-Aaejx .framer-ha6s4z, .framer-Aaejx .framer-9ap3kh, .framer-Aaejx .framer-192o624, .framer-Aaejx .framer-1cql4w1, .framer-Aaejx .framer-18eax8n, .framer-Aaejx .framer-xreh7m, .framer-Aaejx .framer-1rtor4w, .framer-Aaejx .framer-jxx7nn, .framer-Aaejx .framer-nnc4bk, .framer-Aaejx .framer-884z8u, .framer-Aaejx .framer-14queyn, .framer-Aaejx .framer-1yr3u11, .framer-Aaejx .framer-16a2696, .framer-Aaejx .framer-n8ukw6, .framer-Aaejx .framer-12c0w3f, .framer-Aaejx .framer-1na48ip, .framer-Aaejx .framer-5b5vm9, .framer-Aaejx .framer-4zc53d, .framer-Aaejx .framer-9lega9, .framer-Aaejx .framer-h5gepu, .framer-Aaejx .framer-18vl5m2, .framer-Aaejx .framer-5saitw, .framer-Aaejx .framer-8glbj2, .framer-Aaejx .framer-11x1swi, .framer-Aaejx .framer-1olbvo1, .framer-Aaejx .framer-1noerfc, .framer-Aaejx .framer-k5spvp, .framer-Aaejx .framer-1q8ie2v, .framer-Aaejx .framer-7upfnc, .framer-Aaejx .framer-cvgyh0, .framer-Aaejx .framer-1snfgze, .framer-Aaejx .framer-1wr5yzz, .framer-Aaejx .framer-1vz172j, .framer-Aaejx .framer-1braktb, .framer-Aaejx .framer-55wv, .framer-Aaejx .framer-66u63x, .framer-Aaejx .framer-d2b8oz, .framer-Aaejx .framer-i5ukpb, .framer-Aaejx .framer-i5kp2p, .framer-Aaejx .framer-12ioufy, .framer-Aaejx .framer-uiivyl, .framer-Aaejx .framer-1lz2u7k, .framer-Aaejx .framer-1avycd4, .framer-Aaejx .framer-1e47coz, .framer-Aaejx .framer-pa6fe5, .framer-Aaejx .framer-16g77dp, .framer-Aaejx .framer-19pzuvg, .framer-Aaejx .framer-1mj8vfd, .framer-Aaejx .framer-4qjvhp, .framer-Aaejx .framer-1xgm0hw, .framer-Aaejx .framer-155kdyj, .framer-Aaejx .framer-1hn4gh7, .framer-Aaejx .framer-15inrq3, .framer-Aaejx .framer-18cidu4, .framer-Aaejx .framer-1hrjzq, .framer-Aaejx .framer-qminvl, .framer-Aaejx .framer-uy5p5t, .framer-Aaejx .framer-15yxqgh, .framer-Aaejx .framer-1iuqn0e, .framer-Aaejx .framer-180676h, .framer-Aaejx .framer-1lulfdj, .framer-Aaejx .framer-qv3x0, .framer-Aaejx .framer-4ekfp7, .framer-Aaejx .framer-glm9us, .framer-Aaejx .framer-11tlvbr, .framer-Aaejx .framer-138ujx8, .framer-Aaejx .framer-bo1p8l, .framer-Aaejx .framer-13zh37w, .framer-Aaejx .framer-2syzys, .framer-Aaejx .framer-1nzvd4l, .framer-Aaejx .framer-1d67v72, .framer-Aaejx .framer-116cs73, .framer-Aaejx .framer-fj14zv, .framer-Aaejx .framer-1loq7q8, .framer-Aaejx .framer-1bh7td6, .framer-Aaejx .framer-1cjfoye, .framer-Aaejx .framer-1sexabp, .framer-Aaejx .framer-xxfjdi, .framer-Aaejx .framer-hdfy8r, .framer-Aaejx .framer-1db7du4, .framer-Aaejx .framer-3iu5rq, .framer-Aaejx .framer-1ggsa0d, .framer-Aaejx .framer-5675cs, .framer-Aaejx .framer-kwsq43, .framer-Aaejx .framer-1mie3m0, .framer-Aaejx .framer-8mzr24, .framer-Aaejx .framer-1r8ze7e, .framer-Aaejx .framer-1920d90, .framer-Aaejx .framer-rw4tms, .framer-Aaejx .framer-146wcro, .framer-Aaejx .framer-hofgmj, .framer-Aaejx .framer-1u42hkq, .framer-Aaejx .framer-2h6ai7, .framer-Aaejx .framer-5w9y6u, .framer-Aaejx .framer-bva7nn { gap: 0px; } .framer-Aaejx.framer-c4dzez > * { margin: 0px; margin-bottom: calc(82px / 2); margin-top: calc(82px / 2); } .framer-Aaejx.framer-c4dzez > :first-child, .framer-Aaejx .framer-1qwripd > :first-child, .framer-Aaejx .framer-gjov4t > :first-child, .framer-Aaejx .framer-155hhsw > :first-child, .framer-Aaejx .framer-8mnk5m > :first-child, .framer-Aaejx .framer-qfcwij > :first-child, .framer-Aaejx .framer-1sljojl > :first-child, .framer-Aaejx .framer-dr841p > :first-child, .framer-Aaejx .framer-1oh4ebp > :first-child, .framer-Aaejx .framer-xpxsdg > :first-child, .framer-Aaejx .framer-16su9zt > :first-child, .framer-Aaejx .framer-192o624 > :first-child, .framer-Aaejx .framer-1cql4w1 > :first-child, .framer-Aaejx .framer-18eax8n > :first-child, .framer-Aaejx .framer-884z8u > :first-child, .framer-Aaejx .framer-12c0w3f > :first-child, .framer-Aaejx .framer-4zc53d > :first-child, .framer-Aaejx .framer-9lega9 > :first-child, .framer-Aaejx .framer-18vl5m2 > :first-child, .framer-Aaejx .framer-8glbj2 > :first-child, .framer-Aaejx .framer-11x1swi > :first-child, .framer-Aaejx .framer-1noerfc > :first-child, .framer-Aaejx .framer-k5spvp > :first-child, .framer-Aaejx .framer-7upfnc > :first-child, .framer-Aaejx .framer-cvgyh0 > :first-child, .framer-Aaejx .framer-1wr5yzz > :first-child, .framer-Aaejx .framer-1vz172j > :first-child, .framer-Aaejx .framer-1braktb > :first-child, .framer-Aaejx .framer-55wv > :first-child, .framer-Aaejx .framer-d2b8oz > :first-child, .framer-Aaejx .framer-i5kp2p > :first-child, .framer-Aaejx .framer-12ioufy > :first-child, .framer-Aaejx .framer-1lz2u7k > :first-child, .framer-Aaejx .framer-1avycd4 > :first-child, .framer-Aaejx .framer-16g77dp > :first-child, .framer-Aaejx .framer-19pzuvg > :first-child, .framer-Aaejx .framer-4qjvhp > :first-child, .framer-Aaejx .framer-1xgm0hw > :first-child, .framer-Aaejx .framer-1hn4gh7 > :first-child, .framer-Aaejx .framer-15inrq3 > :first-child, .framer-Aaejx .framer-18cidu4 > :first-child, .framer-Aaejx .framer-1hrjzq > :first-child, .framer-Aaejx .framer-15yxqgh > :first-child, .framer-Aaejx .framer-1lulfdj > :first-child, .framer-Aaejx .framer-glm9us > :first-child, .framer-Aaejx .framer-138ujx8 > :first-child, .framer-Aaejx .framer-13zh37w > :first-child, .framer-Aaejx .framer-1nzvd4l > :first-child, .framer-Aaejx .framer-116cs73 > :first-child, .framer-Aaejx .framer-1loq7q8 > :first-child, .framer-Aaejx .framer-1bh7td6 > :first-child, .framer-Aaejx .framer-1cjfoye > :first-child, .framer-Aaejx .framer-1sexabp > :first-child, .framer-Aaejx .framer-xxfjdi > :first-child, .framer-Aaejx .framer-hdfy8r > :first-child, .framer-Aaejx .framer-1db7du4 > :first-child, .framer-Aaejx .framer-3iu5rq > :first-child, .framer-Aaejx .framer-1ggsa0d > :first-child, .framer-Aaejx .framer-1mie3m0 > :first-child, .framer-Aaejx .framer-1920d90 > :first-child, .framer-Aaejx .framer-hofgmj > :first-child, .framer-Aaejx .framer-5w9y6u > :first-child { margin-top: 0px; } .framer-Aaejx.framer-c4dzez > :last-child, .framer-Aaejx .framer-1qwripd > :last-child, .framer-Aaejx .framer-gjov4t > :last-child, .framer-Aaejx .framer-155hhsw > :last-child, .framer-Aaejx .framer-8mnk5m > :last-child, .framer-Aaejx .framer-qfcwij > :last-child, .framer-Aaejx .framer-1sljojl > :last-child, .framer-Aaejx .framer-dr841p > :last-child, .framer-Aaejx .framer-1oh4ebp > :last-child, .framer-Aaejx .framer-xpxsdg > :last-child, .framer-Aaejx .framer-16su9zt > :last-child, .framer-Aaejx .framer-192o624 > :last-child, .framer-Aaejx .framer-1cql4w1 > :last-child, .framer-Aaejx .framer-18eax8n > :last-child, .framer-Aaejx .framer-884z8u > :last-child, .framer-Aaejx .framer-12c0w3f > :last-child, .framer-Aaejx .framer-4zc53d > :last-child, .framer-Aaejx .framer-9lega9 > :last-child, .framer-Aaejx .framer-18vl5m2 > :last-child, .framer-Aaejx .framer-8glbj2 > :last-child, .framer-Aaejx .framer-11x1swi > :last-child, .framer-Aaejx .framer-1noerfc > :last-child, .framer-Aaejx .framer-k5spvp > :last-child, .framer-Aaejx .framer-7upfnc > :last-child, .framer-Aaejx .framer-cvgyh0 > :last-child, .framer-Aaejx .framer-1wr5yzz > :last-child, .framer-Aaejx .framer-1vz172j > :last-child, .framer-Aaejx .framer-1braktb > :last-child, .framer-Aaejx .framer-55wv > :last-child, .framer-Aaejx .framer-d2b8oz > :last-child, .framer-Aaejx .framer-i5kp2p > :last-child, .framer-Aaejx .framer-12ioufy > :last-child, .framer-Aaejx .framer-1lz2u7k > :last-child, .framer-Aaejx .framer-1avycd4 > :last-child, .framer-Aaejx .framer-16g77dp > :last-child, .framer-Aaejx .framer-19pzuvg > :last-child, .framer-Aaejx .framer-4qjvhp > :last-child, .framer-Aaejx .framer-1xgm0hw > :last-child, .framer-Aaejx .framer-1hn4gh7 > :last-child, .framer-Aaejx .framer-15inrq3 > :last-child, .framer-Aaejx .framer-18cidu4 > :last-child, .framer-Aaejx .framer-1hrjzq > :last-child, .framer-Aaejx .framer-15yxqgh > :last-child, .framer-Aaejx .framer-1lulfdj > :last-child, .framer-Aaejx .framer-glm9us > :last-child, .framer-Aaejx .framer-138ujx8 > :last-child, .framer-Aaejx .framer-13zh37w > :last-child, .framer-Aaejx .framer-1nzvd4l > :last-child, .framer-Aaejx .framer-116cs73 > :last-child, .framer-Aaejx .framer-1loq7q8 > :last-child, .framer-Aaejx .framer-1bh7td6 > :last-child, .framer-Aaejx .framer-1cjfoye > :last-child, .framer-Aaejx .framer-1sexabp > :last-child, .framer-Aaejx .framer-xxfjdi > :last-child, .framer-Aaejx .framer-hdfy8r > :last-child, .framer-Aaejx .framer-1db7du4 > :last-child, .framer-Aaejx .framer-3iu5rq > :last-child, .framer-Aaejx .framer-1ggsa0d > :last-child, .framer-Aaejx .framer-1mie3m0 > :last-child, .framer-Aaejx .framer-1920d90 > :last-child, .framer-Aaejx .framer-hofgmj > :last-child, .framer-Aaejx .framer-5w9y6u > :last-child { margin-bottom: 0px; } .framer-Aaejx .framer-1qwripd > * { margin: 0px; margin-bottom: calc(43px / 2); margin-top: calc(43px / 2); } .framer-Aaejx .framer-gjov4t > *, .framer-Aaejx .framer-3iu5rq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Aaejx .framer-155hhsw > *, .framer-Aaejx .framer-dr841p > *, .framer-Aaejx .framer-8glbj2 > *, .framer-Aaejx .framer-i5kp2p > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Aaejx .framer-8mnk5m > *, .framer-Aaejx .framer-1mie3m0 > *, .framer-Aaejx .framer-1920d90 > *, .framer-Aaejx .framer-hofgmj > *, .framer-Aaejx .framer-5w9y6u > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Aaejx .framer-xu6x3w > *, .framer-Aaejx .framer-caebok > *, .framer-Aaejx .framer-9ap3kh > *, .framer-Aaejx .framer-16a2696 > *, .framer-Aaejx .framer-5saitw > *, .framer-Aaejx .framer-1q8ie2v > *, .framer-Aaejx .framer-i5ukpb > *, .framer-Aaejx .framer-pa6fe5 > *, .framer-Aaejx .framer-bo1p8l > *, .framer-Aaejx .framer-2syzys > *, .framer-Aaejx .framer-1d67v72 > *, .framer-Aaejx .framer-fj14zv > *, .framer-Aaejx .framer-kwsq43 > *, .framer-Aaejx .framer-1r8ze7e > *, .framer-Aaejx .framer-146wcro > *, .framer-Aaejx .framer-2h6ai7 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-Aaejx .framer-xu6x3w > :first-child, .framer-Aaejx .framer-kntdi5 > :first-child, .framer-Aaejx .framer-caebok > :first-child, .framer-Aaejx .framer-bmnmr9 > :first-child, .framer-Aaejx .framer-ha6s4z > :first-child, .framer-Aaejx .framer-9ap3kh > :first-child, .framer-Aaejx .framer-xreh7m > :first-child, .framer-Aaejx .framer-1rtor4w > :first-child, .framer-Aaejx .framer-jxx7nn > :first-child, .framer-Aaejx .framer-nnc4bk > :first-child, .framer-Aaejx .framer-14queyn > :first-child, .framer-Aaejx .framer-1yr3u11 > :first-child, .framer-Aaejx .framer-16a2696 > :first-child, .framer-Aaejx .framer-n8ukw6 > :first-child, .framer-Aaejx .framer-1na48ip > :first-child, .framer-Aaejx .framer-5b5vm9 > :first-child, .framer-Aaejx .framer-h5gepu > :first-child, .framer-Aaejx .framer-5saitw > :first-child, .framer-Aaejx .framer-1olbvo1 > :first-child, .framer-Aaejx .framer-1q8ie2v > :first-child, .framer-Aaejx .framer-1snfgze > :first-child, .framer-Aaejx .framer-66u63x > :first-child, .framer-Aaejx .framer-i5ukpb > :first-child, .framer-Aaejx .framer-uiivyl > :first-child, .framer-Aaejx .framer-1e47coz > :first-child, .framer-Aaejx .framer-pa6fe5 > :first-child, .framer-Aaejx .framer-1mj8vfd > :first-child, .framer-Aaejx .framer-155kdyj > :first-child, .framer-Aaejx .framer-qminvl > :first-child, .framer-Aaejx .framer-uy5p5t > :first-child, .framer-Aaejx .framer-1iuqn0e > :first-child, .framer-Aaejx .framer-180676h > :first-child, .framer-Aaejx .framer-qv3x0 > :first-child, .framer-Aaejx .framer-4ekfp7 > :first-child, .framer-Aaejx .framer-11tlvbr > :first-child, .framer-Aaejx .framer-bo1p8l > :first-child, .framer-Aaejx .framer-2syzys > :first-child, .framer-Aaejx .framer-1d67v72 > :first-child, .framer-Aaejx .framer-fj14zv > :first-child, .framer-Aaejx .framer-5675cs > :first-child, .framer-Aaejx .framer-kwsq43 > :first-child, .framer-Aaejx .framer-8mzr24 > :first-child, .framer-Aaejx .framer-1r8ze7e > :first-child, .framer-Aaejx .framer-rw4tms > :first-child, .framer-Aaejx .framer-146wcro > :first-child, .framer-Aaejx .framer-1u42hkq > :first-child, .framer-Aaejx .framer-2h6ai7 > :first-child, .framer-Aaejx .framer-bva7nn > :first-child { margin-left: 0px; } .framer-Aaejx .framer-xu6x3w > :last-child, .framer-Aaejx .framer-kntdi5 > :last-child, .framer-Aaejx .framer-caebok > :last-child, .framer-Aaejx .framer-bmnmr9 > :last-child, .framer-Aaejx .framer-ha6s4z > :last-child, .framer-Aaejx .framer-9ap3kh > :last-child, .framer-Aaejx .framer-xreh7m > :last-child, .framer-Aaejx .framer-1rtor4w > :last-child, .framer-Aaejx .framer-jxx7nn > :last-child, .framer-Aaejx .framer-nnc4bk > :last-child, .framer-Aaejx .framer-14queyn > :last-child, .framer-Aaejx .framer-1yr3u11 > :last-child, .framer-Aaejx .framer-16a2696 > :last-child, .framer-Aaejx .framer-n8ukw6 > :last-child, .framer-Aaejx .framer-1na48ip > :last-child, .framer-Aaejx .framer-5b5vm9 > :last-child, .framer-Aaejx .framer-h5gepu > :last-child, .framer-Aaejx .framer-5saitw > :last-child, .framer-Aaejx .framer-1olbvo1 > :last-child, .framer-Aaejx .framer-1q8ie2v > :last-child, .framer-Aaejx .framer-1snfgze > :last-child, .framer-Aaejx .framer-66u63x > :last-child, .framer-Aaejx .framer-i5ukpb > :last-child, .framer-Aaejx .framer-uiivyl > :last-child, .framer-Aaejx .framer-1e47coz > :last-child, .framer-Aaejx .framer-pa6fe5 > :last-child, .framer-Aaejx .framer-1mj8vfd > :last-child, .framer-Aaejx .framer-155kdyj > :last-child, .framer-Aaejx .framer-qminvl > :last-child, .framer-Aaejx .framer-uy5p5t > :last-child, .framer-Aaejx .framer-1iuqn0e > :last-child, .framer-Aaejx .framer-180676h > :last-child, .framer-Aaejx .framer-qv3x0 > :last-child, .framer-Aaejx .framer-4ekfp7 > :last-child, .framer-Aaejx .framer-11tlvbr > :last-child, .framer-Aaejx .framer-bo1p8l > :last-child, .framer-Aaejx .framer-2syzys > :last-child, .framer-Aaejx .framer-1d67v72 > :last-child, .framer-Aaejx .framer-fj14zv > :last-child, .framer-Aaejx .framer-5675cs > :last-child, .framer-Aaejx .framer-kwsq43 > :last-child, .framer-Aaejx .framer-8mzr24 > :last-child, .framer-Aaejx .framer-1r8ze7e > :last-child, .framer-Aaejx .framer-rw4tms > :last-child, .framer-Aaejx .framer-146wcro > :last-child, .framer-Aaejx .framer-1u42hkq > :last-child, .framer-Aaejx .framer-2h6ai7 > :last-child, .framer-Aaejx .framer-bva7nn > :last-child { margin-right: 0px; } .framer-Aaejx .framer-kntdi5 > *, .framer-Aaejx .framer-qminvl > *, .framer-Aaejx .framer-5675cs > *, .framer-Aaejx .framer-8mzr24 > *, .framer-Aaejx .framer-rw4tms > *, .framer-Aaejx .framer-1u42hkq > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-Aaejx .framer-qfcwij > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-Aaejx .framer-1sljojl > *, .framer-Aaejx .framer-18vl5m2 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Aaejx .framer-1oh4ebp > *, .framer-Aaejx .framer-xpxsdg > *, .framer-Aaejx .framer-1cql4w1 > *, .framer-Aaejx .framer-884z8u > *, .framer-Aaejx .framer-12c0w3f > *, .framer-Aaejx .framer-9lega9 > *, .framer-Aaejx .framer-11x1swi > *, .framer-Aaejx .framer-k5spvp > *, .framer-Aaejx .framer-1vz172j > *, .framer-Aaejx .framer-55wv > *, .framer-Aaejx .framer-12ioufy > *, .framer-Aaejx .framer-15inrq3 > *, .framer-Aaejx .framer-15yxqgh > *, .framer-Aaejx .framer-1lulfdj > *, .framer-Aaejx .framer-glm9us > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Aaejx .framer-bmnmr9 > *, .framer-Aaejx .framer-xreh7m > *, .framer-Aaejx .framer-1rtor4w > *, .framer-Aaejx .framer-jxx7nn > *, .framer-Aaejx .framer-14queyn > *, .framer-Aaejx .framer-1yr3u11 > *, .framer-Aaejx .framer-1na48ip > *, .framer-Aaejx .framer-5b5vm9 > *, .framer-Aaejx .framer-h5gepu > *, .framer-Aaejx .framer-1olbvo1 > *, .framer-Aaejx .framer-1snfgze > *, .framer-Aaejx .framer-66u63x > *, .framer-Aaejx .framer-uiivyl > *, .framer-Aaejx .framer-1e47coz > *, .framer-Aaejx .framer-1mj8vfd > *, .framer-Aaejx .framer-155kdyj > *, .framer-Aaejx .framer-uy5p5t > *, .framer-Aaejx .framer-180676h > *, .framer-Aaejx .framer-4ekfp7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Aaejx .framer-16su9zt > *, .framer-Aaejx .framer-18eax8n > *, .framer-Aaejx .framer-cvgyh0 > *, .framer-Aaejx .framer-1avycd4 > *, .framer-Aaejx .framer-19pzuvg > *, .framer-Aaejx .framer-1xgm0hw > *, .framer-Aaejx .framer-1loq7q8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Aaejx .framer-ha6s4z > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Aaejx .framer-192o624 > *, .framer-Aaejx .framer-4zc53d > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Aaejx .framer-nnc4bk > *, .framer-Aaejx .framer-n8ukw6 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Aaejx .framer-1noerfc > *, .framer-Aaejx .framer-7upfnc > *, .framer-Aaejx .framer-1wr5yzz > *, .framer-Aaejx .framer-1braktb > *, .framer-Aaejx .framer-1lz2u7k > *, .framer-Aaejx .framer-16g77dp > *, .framer-Aaejx .framer-4qjvhp > *, .framer-Aaejx .framer-1hn4gh7 > *, .framer-Aaejx .framer-18cidu4 > *, .framer-Aaejx .framer-1db7du4 > *, .framer-Aaejx .framer-1ggsa0d > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-Aaejx .framer-d2b8oz > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-Aaejx .framer-1hrjzq > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-Aaejx .framer-1iuqn0e > *, .framer-Aaejx .framer-qv3x0 > *, .framer-Aaejx .framer-11tlvbr > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Aaejx .framer-138ujx8 > *, .framer-Aaejx .framer-13zh37w > *, .framer-Aaejx .framer-1nzvd4l > *, .framer-Aaejx .framer-116cs73 > *, .framer-Aaejx .framer-1bh7td6 > *, .framer-Aaejx .framer-1cjfoye > *, .framer-Aaejx .framer-1sexabp > *, .framer-Aaejx .framer-xxfjdi > *, .framer-Aaejx .framer-hdfy8r > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Aaejx .framer-bva7nn > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",`@media (min-width: 810px) and (max-width: 1196px) { .${metadata.bodyClassName}-framer-Aaejx { background: var(--token-23e2eec5-3bb2-481e-8401-41e6e88c39e3, rgb(1, 15, 28)) /* {\"name\":\"BgColor\"} */; } .framer-Aaejx.framer-c4dzez { width: 810px; } .framer-Aaejx .framer-1qwripd, .framer-Aaejx .framer-16g77dp, .framer-Aaejx .framer-15inrq3 { order: 0; } .framer-Aaejx .framer-155hhsw { width: 90%; } .framer-Aaejx .framer-1sywkcz { height: 87%; width: 59%; } .framer-Aaejx .framer-4rjwre-container { height: 100%; left: calc(50.33333333333335% - 100% / 2); top: calc(50.00000000000002% - 100% / 2); width: 100%; } .framer-Aaejx .framer-qfcwij { gap: 40px; order: 1; } .framer-Aaejx .framer-bmnmr9 { left: 32px; position: absolute; top: 164px; width: 478px; z-index: 1; } .framer-Aaejx .framer-1wii0d1, .framer-Aaejx .framer-qxq71w, .framer-Aaejx .framer-12td8fh { height: var(--framer-aspect-ratio-supported, 307px); } .framer-Aaejx .framer-1gsly86, .framer-Aaejx .framer-1rlpgl8, .framer-Aaejx .framer-m2axkv { height: var(--framer-aspect-ratio-supported, 294px); } .framer-Aaejx .framer-3jmx1y, .framer-Aaejx .framer-zszlxe, .framer-Aaejx .framer-148hsnb { height: var(--framer-aspect-ratio-supported, 303px); } .framer-Aaejx .framer-1oy1tu9, .framer-Aaejx .framer-1403s5r, .framer-Aaejx .framer-1xqe2ee, .framer-Aaejx .framer-1xb471z { height: 32px; width: 32px; } .framer-Aaejx .framer-3vlr6f { height: 31px; width: 31px; } .framer-Aaejx .framer-nnc4bk, .framer-Aaejx .framer-n8ukw6 { flex: 1 0 0px; flex-direction: column; } .framer-Aaejx .framer-884z8u, .framer-Aaejx .framer-12c0w3f { flex: none; width: 100%; } .framer-Aaejx .framer-fybkok, .framer-Aaejx .framer-vrjwq2 { height: var(--framer-aspect-ratio-supported, 262px); } .framer-Aaejx .framer-1izphrj, .framer-Aaejx .framer-elnu2v { height: var(--framer-aspect-ratio-supported, 277px); } .framer-Aaejx .framer-8glbj2, .framer-Aaejx .framer-i5kp2p { flex: 2 0 0px; } .framer-Aaejx .framer-b57hye { height: 128px; width: 126px; } .framer-Aaejx .framer-4qjvhp, .framer-Aaejx .framer-1w032pt { order: 1; } .framer-Aaejx .framer-1hn4gh7 { gap: 22px; order: 2; } .framer-Aaejx .framer-18cidu4 { order: 2; } .framer-Aaejx .framer-1db7du4 { order: 3; } .framer-Aaejx .framer-83nrum-container { width: 100%; } .framer-Aaejx .framer-3iu5rq { order: 4; width: 761px; } .framer-Aaejx .framer-1ggsa0d { order: 5; } .framer-Aaejx .framer-bva7nn { order: 6; padding: 40px 0px 40px 0px; } .framer-Aaejx .framer-9077gh-container { order: 8; } .framer-Aaejx .framer-1hvw6qm-container { order: 9; } .framer-Aaejx .framer-13ddggt-container { order: 7; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Aaejx .framer-qfcwij, .framer-Aaejx .framer-nnc4bk, .framer-Aaejx .framer-n8ukw6, .framer-Aaejx .framer-1hn4gh7 { gap: 0px; } .framer-Aaejx .framer-qfcwij > *, .framer-Aaejx .framer-nnc4bk > *, .framer-Aaejx .framer-n8ukw6 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Aaejx .framer-qfcwij > :first-child, .framer-Aaejx .framer-nnc4bk > :first-child, .framer-Aaejx .framer-n8ukw6 > :first-child, .framer-Aaejx .framer-1hn4gh7 > :first-child { margin-top: 0px; } .framer-Aaejx .framer-qfcwij > :last-child, .framer-Aaejx .framer-nnc4bk > :last-child, .framer-Aaejx .framer-n8ukw6 > :last-child, .framer-Aaejx .framer-1hn4gh7 > :last-child { margin-bottom: 0px; } .framer-Aaejx .framer-1hn4gh7 > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-Aaejx { background: var(--token-23e2eec5-3bb2-481e-8401-41e6e88c39e3, rgb(1, 15, 28)) /* {\"name\":\"BgColor\"} */; } .framer-Aaejx.framer-c4dzez { width: 390px; } .framer-Aaejx .framer-1qwripd { order: 0; padding: 80px 16px 0px 16px; } .framer-Aaejx .framer-155hhsw { max-width: unset; width: 100%; } .framer-Aaejx .framer-kntdi5 { gap: 24px; } .framer-Aaejx .framer-1sywkcz { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; order: 0; padding: 0px; width: 47%; } .framer-Aaejx .framer-4rjwre-container { height: 702px; left: unset; position: relative; top: unset; width: 100%; } .framer-Aaejx .framer-qfcwij { gap: 40px; order: 1; padding: 80px 16px 80px 16px; } .framer-Aaejx .framer-caebok, .framer-Aaejx .framer-9ap3kh, .framer-Aaejx .framer-16a2696, .framer-Aaejx .framer-5saitw, .framer-Aaejx .framer-1q8ie2v, .framer-Aaejx .framer-66u63x, .framer-Aaejx .framer-i5ukpb, .framer-Aaejx .framer-pa6fe5, .framer-Aaejx .framer-qminvl { flex-direction: column; } .framer-Aaejx .framer-dr841p { flex: none; height: 412px; width: 100%; } .framer-Aaejx .framer-bmnmr9 { height: 392px; left: 24px; position: absolute; top: calc(77.2727272727273% - 392px / 2); width: 492px; z-index: 1; } .framer-Aaejx .framer-1wii0d1, .framer-Aaejx .framer-qxq71w, .framer-Aaejx .framer-12td8fh { height: var(--framer-aspect-ratio-supported, 317px); } .framer-Aaejx .framer-1gsly86, .framer-Aaejx .framer-m2axkv { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; height: var(--framer-aspect-ratio-supported, 303px); left: 10px; transform: unset; width: 89%; } .framer-Aaejx .framer-3jmx1y, .framer-Aaejx .framer-zszlxe, .framer-Aaejx .framer-148hsnb { height: var(--framer-aspect-ratio-supported, 312px); } .framer-Aaejx .framer-1rlpgl8 { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; height: var(--framer-aspect-ratio-supported, 304px); left: 10px; transform: unset; width: 89%; } .framer-Aaejx .framer-1wl85we { flex: none; height: 310px; width: 100%; } .framer-Aaejx .framer-1oy1tu9, .framer-Aaejx .framer-1403s5r, .framer-Aaejx .framer-1xqe2ee, .framer-Aaejx .framer-1xb471z { height: 38px; width: 38px; } .framer-Aaejx .framer-3vlr6f { height: 34px; width: 34px; } .framer-Aaejx .framer-192o624, .framer-Aaejx .framer-12c0w3f, .framer-Aaejx .framer-i5kp2p { flex: none; width: 100%; } .framer-Aaejx .framer-nnc4bk { flex: none; flex-direction: column; gap: 0px; height: 361px; width: 100%; } .framer-Aaejx .framer-884z8u { flex: none; order: 0; width: 100%; } .framer-Aaejx .framer-1yr3u11, .framer-Aaejx .framer-1s5esbw { order: 1; } .framer-Aaejx .framer-yhdlc6 { height: var(--framer-aspect-ratio-supported, 244px); } .framer-Aaejx .framer-f1yslo { height: var(--framer-aspect-ratio-supported, 257px); } .framer-Aaejx .framer-n8ukw6 { flex: none; flex-direction: column; height: 429px; order: 1; width: 100%; } .framer-Aaejx .framer-vmf6ao { height: var(--framer-aspect-ratio-supported, 262px); } .framer-Aaejx .framer-h0ngd9 { height: var(--framer-aspect-ratio-supported, 277px); } .framer-Aaejx .framer-4zc53d { flex: none; height: 308px; order: 0; width: 100%; } .framer-Aaejx .framer-8glbj2 { flex: none; height: 420px; order: 0; width: 100%; } .framer-Aaejx .framer-1noerfc { flex: none; gap: 54px; height: 291px; order: 1; width: 100%; } .framer-Aaejx .framer-7upfnc, .framer-Aaejx .framer-16g77dp { flex: none; height: 322px; order: 0; width: 100%; } .framer-Aaejx .framer-1wr5yzz { flex: none; gap: 54px; height: 317px; order: 1; width: 100%; } .framer-Aaejx .framer-1braktb { flex: none; gap: 46px; height: 309px; order: 2; width: 100%; } .framer-Aaejx .framer-55wv, .framer-Aaejx .framer-f2g5c7 { order: 0; } .framer-Aaejx .framer-uiivyl { height: 236px; } .framer-Aaejx .framer-1lz2u7k { flex: none; height: 322px; width: 100%; } .framer-Aaejx .framer-4qjvhp { flex: none; height: 322px; order: 1; width: 100%; } .framer-Aaejx .framer-1hn4gh7 { flex: none; gap: 44px; height: 320px; order: 2; width: 100%; } .framer-Aaejx .framer-18cidu4 { gap: 40px; order: 2; } .framer-Aaejx .framer-uy5p5t { align-content: center; align-items: center; flex: none; flex-direction: column; width: 100%; } .framer-Aaejx .framer-1n2trjp, .framer-Aaejx .framer-ogbjae, .framer-Aaejx .framer-19kdh8w { align-self: unset; height: 2px; width: 240px; } .framer-Aaejx .framer-15yxqgh, .framer-Aaejx .framer-1lulfdj, .framer-Aaejx .framer-glm9us { padding: 0px; } .framer-Aaejx .framer-180676h, .framer-Aaejx .framer-4ekfp7 { align-content: center; align-items: center; flex: none; flex-direction: column; gap: 32px; width: 100%; } .framer-Aaejx .framer-1loq7q8 { gap: 60px; } .framer-Aaejx .framer-1db7du4 { order: 3; width: 389px; } .framer-Aaejx .framer-3iu5rq { height: 209px; order: 4; width: 340px; } .framer-Aaejx .framer-1ggsa0d { order: 5; } .framer-Aaejx .framer-1ruvgkf-container { height: 684px; order: 1; } .framer-Aaejx .framer-kpjp8f { order: 2; } .framer-Aaejx .framer-bva7nn { order: 6; padding: 40px 16px 40px 16px; } .framer-Aaejx .framer-9077gh-container { order: 8; } .framer-Aaejx .framer-1hvw6qm-container { order: 9; } .framer-Aaejx .framer-13ddggt-container { left: 16px; order: 7; right: 16px; transform: unset; width: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Aaejx .framer-kntdi5, .framer-Aaejx .framer-1sywkcz, .framer-Aaejx .framer-qfcwij, .framer-Aaejx .framer-caebok, .framer-Aaejx .framer-9ap3kh, .framer-Aaejx .framer-nnc4bk, .framer-Aaejx .framer-16a2696, .framer-Aaejx .framer-n8ukw6, .framer-Aaejx .framer-5saitw, .framer-Aaejx .framer-1noerfc, .framer-Aaejx .framer-1q8ie2v, .framer-Aaejx .framer-1wr5yzz, .framer-Aaejx .framer-1braktb, .framer-Aaejx .framer-66u63x, .framer-Aaejx .framer-i5ukpb, .framer-Aaejx .framer-pa6fe5, .framer-Aaejx .framer-1hn4gh7, .framer-Aaejx .framer-18cidu4, .framer-Aaejx .framer-qminvl, .framer-Aaejx .framer-uy5p5t, .framer-Aaejx .framer-180676h, .framer-Aaejx .framer-4ekfp7, .framer-Aaejx .framer-1loq7q8 { gap: 0px; } .framer-Aaejx .framer-kntdi5 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Aaejx .framer-kntdi5 > :first-child, .framer-Aaejx .framer-1sywkcz > :first-child { margin-left: 0px; } .framer-Aaejx .framer-kntdi5 > :last-child, .framer-Aaejx .framer-1sywkcz > :last-child { margin-right: 0px; } .framer-Aaejx .framer-1sywkcz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Aaejx .framer-qfcwij > *, .framer-Aaejx .framer-n8ukw6 > *, .framer-Aaejx .framer-18cidu4 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Aaejx .framer-qfcwij > :first-child, .framer-Aaejx .framer-caebok > :first-child, .framer-Aaejx .framer-9ap3kh > :first-child, .framer-Aaejx .framer-nnc4bk > :first-child, .framer-Aaejx .framer-16a2696 > :first-child, .framer-Aaejx .framer-n8ukw6 > :first-child, .framer-Aaejx .framer-5saitw > :first-child, .framer-Aaejx .framer-1noerfc > :first-child, .framer-Aaejx .framer-1q8ie2v > :first-child, .framer-Aaejx .framer-1wr5yzz > :first-child, .framer-Aaejx .framer-1braktb > :first-child, .framer-Aaejx .framer-66u63x > :first-child, .framer-Aaejx .framer-i5ukpb > :first-child, .framer-Aaejx .framer-pa6fe5 > :first-child, .framer-Aaejx .framer-1hn4gh7 > :first-child, .framer-Aaejx .framer-18cidu4 > :first-child, .framer-Aaejx .framer-qminvl > :first-child, .framer-Aaejx .framer-uy5p5t > :first-child, .framer-Aaejx .framer-180676h > :first-child, .framer-Aaejx .framer-4ekfp7 > :first-child, .framer-Aaejx .framer-1loq7q8 > :first-child { margin-top: 0px; } .framer-Aaejx .framer-qfcwij > :last-child, .framer-Aaejx .framer-caebok > :last-child, .framer-Aaejx .framer-9ap3kh > :last-child, .framer-Aaejx .framer-nnc4bk > :last-child, .framer-Aaejx .framer-16a2696 > :last-child, .framer-Aaejx .framer-n8ukw6 > :last-child, .framer-Aaejx .framer-5saitw > :last-child, .framer-Aaejx .framer-1noerfc > :last-child, .framer-Aaejx .framer-1q8ie2v > :last-child, .framer-Aaejx .framer-1wr5yzz > :last-child, .framer-Aaejx .framer-1braktb > :last-child, .framer-Aaejx .framer-66u63x > :last-child, .framer-Aaejx .framer-i5ukpb > :last-child, .framer-Aaejx .framer-pa6fe5 > :last-child, .framer-Aaejx .framer-1hn4gh7 > :last-child, .framer-Aaejx .framer-18cidu4 > :last-child, .framer-Aaejx .framer-qminvl > :last-child, .framer-Aaejx .framer-uy5p5t > :last-child, .framer-Aaejx .framer-180676h > :last-child, .framer-Aaejx .framer-4ekfp7 > :last-child, .framer-Aaejx .framer-1loq7q8 > :last-child { margin-bottom: 0px; } .framer-Aaejx .framer-caebok > *, .framer-Aaejx .framer-9ap3kh > *, .framer-Aaejx .framer-16a2696 > *, .framer-Aaejx .framer-5saitw > *, .framer-Aaejx .framer-1q8ie2v > *, .framer-Aaejx .framer-i5ukpb > *, .framer-Aaejx .framer-pa6fe5 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Aaejx .framer-nnc4bk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Aaejx .framer-1noerfc > *, .framer-Aaejx .framer-1wr5yzz > * { margin: 0px; margin-bottom: calc(54px / 2); margin-top: calc(54px / 2); } .framer-Aaejx .framer-1braktb > * { margin: 0px; margin-bottom: calc(46px / 2); margin-top: calc(46px / 2); } .framer-Aaejx .framer-66u63x > *, .framer-Aaejx .framer-uy5p5t > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Aaejx .framer-1hn4gh7 > * { margin: 0px; margin-bottom: calc(44px / 2); margin-top: calc(44px / 2); } .framer-Aaejx .framer-qminvl > *, .framer-Aaejx .framer-180676h > *, .framer-Aaejx .framer-4ekfp7 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Aaejx .framer-1loq7q8 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-Aaejx[data-border=\"true\"]::after, .framer-Aaejx [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 9918.5\n * @framerIntrinsicWidth 1197\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dNtCTq2UU\":{\"layout\":[\"fixed\",\"auto\"]},\"l1NmqiU8C\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerMo1ryl8_D=withCSS(Component,css,\"framer-Aaejx\");export default FramerMo1ryl8_D;FramerMo1ryl8_D.displayName=\"Home\";FramerMo1ryl8_D.defaultProps={height:9918.5,width:1197};addFonts(FramerMo1ryl8_D,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NHPGVFYUXYXE33DZ75OIT4JFGHITX5PE/PSUTMASCDJTVPERDYJZPN23BVUFUCQIF/J64QX5IPOHK56I2KYUNBQ5M2XWZEYKYX.woff2\",weight:\"900\"},{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:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Wix Madefor Display\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/wixmadefordisplay/v10/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYGGZVthv_3HQKgh.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NTxXUEKi4Rw.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...EmbedFonts,...TickerFonts,...FAQListFonts,...SlideshowFonts,...DownloadApp3Fonts,...CookieBannerFonts,...Footer2Fonts,...Menu2Fonts,...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\":\"FramerMo1ryl8_D\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dNtCTq2UU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"l1NmqiU8C\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"9918.5\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1197\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "szCAAgY,IAAMA,GAAqB,IAAUC,GAAsB,CAAC,KAAKC,GAAQ,eAAeA,OAAY,MAAMA,GAAQ,cAAcA,OAAY,IAAIA,GAAQ,eAAeA,OAAY,OAAOA,GAAQ,cAAcA,MAAW,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,OAAgBC,OAAkBC,OAAmBC,MAAgB,GAAGL,MAA8BqB,GAASC,GAAa,QAAQ,IAAIA,GAAa,OAC5fC,GAAczB,EAAM,OAAO,OAAO,EAAQ0B,GAAYC,GAAS,MAAMF,EAAa,EAAQG,GAAYF,GAAY,EAAKhB,IAAY,KAAMA,EAAU,QAAQ,IAAMmB,GAAanB,IAAY,QAAQA,IAAY,QAAcd,EAAOkC,GAAe,CAAC,EAAQC,GAAYpC,GAAsBe,CAAS,EAAQsB,GAAUC,GAAarC,EAAOmC,EAAW,EAA4BG,GAAUC,EAAO,IAAI,EAAQC,GAAYC,GAAQ,IAAW,CAAcC,GAAU,EAAeA,GAAU,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,EAAkBC,GAAe,CAAC,EAAMC,GAAc,CAAC,EAA2BC,GAAY,EAAMC,GAAQ,EAAKtB,KAAUqB,GAAYlB,GAAY,KAAK,MAAM,GAAGA,EAAW,EAAE,EAAEmB,GAAQ,GAAM,CAACtB,IAAUK,IAAaW,EAAK,SAAQK,GAAY,KAAK,MAAML,EAAK,OAAOA,EAAK,SAAS,CAAC,EAAE,EAAEK,GAAY,KAAK,IAAIA,GAAYlD,EAAoB,EAAEmD,GAAQ,GAAiC,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAGnB,IAAaM,GAAU,QAAQ,CAAC,IAAMc,EAAanB,GAAaK,GAAU,QAAQ,YAAYA,GAAU,QAAQ,aAAmBe,EAAMb,GAAY,CAAC,EAAE,QAAQP,GAAaO,GAAY,CAAC,EAAE,QAAQ,WAAWA,GAAY,CAAC,EAAE,QAAQ,UAAU,EAAkMc,GAAtLd,GAAY,CAAC,EAAE,QAAQP,GAAaO,GAAY,CAAC,EAAE,QAAQ,WAAWA,GAAY,CAAC,EAAE,QAAQ,YAAYA,GAAY,CAAC,EAAE,QAAQ,UAAUA,GAAY,CAAC,EAAE,QAAQ,aAAa,GAA2Ba,EAAMhD,EAAIuC,GAAQ,CAAC,OAAOQ,EAAa,SAASE,CAAc,CAAC,EAAG,EAAE,CAAC,CAAC,EAAQC,GAAe5B,GAAS,CAAC,kBAAkB,MAAM,EAAE,CAAC,EAAwC,GAAGK,GAAY,CAChkD,GAAG,CAACL,GAAS,CAGE,IAAI6B,EAAcjB,EAAO,EAAI,EAAEkB,EAAU,KAAKC,GAAM,KAAKR,EAAO,EAASS,GAAOrB,GAAU,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,EAAGV,GAAef,GAAS,IAAIF,GAAc,CAACgC,EAAMC,IAAQ,CAAC,IAAIC,EAAaC,EAAcC,EAAcC,EAAc,IAAIC,EAAOL,IAAQ,IAAGK,EAAI3B,GAAY,CAAC,GAAMsB,IAAQjC,GAAc,OAAO,IAAGsC,EAAI3B,GAAY,CAAC,GAAG,IAAMG,EAAK,CAAC,MAAMnB,GAAWuC,EAAaF,EAAM,SAAS,MAAME,IAAe,OAAO,OAAOA,EAAa,MAAM,OAAO,OAAOtC,GAAYuC,EAAcH,EAAM,SAAS,MAAMG,IAAgB,OAAO,OAAOA,EAAc,OAAO,MAAM,EAAE,OAAoBI,EAAKC,GAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,IAAID,EAAI,MAAMxB,EAAK,SAAsB2B,GAAaT,EAAM,CAAC,MAAM,CAAC,IAAII,EAAcJ,EAAM,SAAS,MAAMI,IAAgB,OAAO,OAAOA,EAAc,MAAM,GAAGtB,EAAK,WAAW,EAAE,GAAGY,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAaC,EAAM,MAAS,GAAGI,EAAcL,EAAM,SAAS,MAAMK,IAAgB,OAAO,OAAOA,EAAc,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAG,GAAG,CAACvC,GAAU,QAAQ4C,EAAE,EAAEA,EAAEvB,GAAYuB,IAAKxB,GAAc,CAAC,GAAGA,GAAc,GAAGhB,GAAS,IAAIF,GAAc,CAACgC,EAAMW,IAAa,CAAC,IAAIT,EAAaC,EAAcC,EAAcC,EAAcO,EAAcC,EAAc,IAAM/B,GAAK,CAAC,MAAMnB,GAAWuC,EAAaF,EAAM,SAAS,MAAME,IAAe,OAAO,OAAOA,EAAa,MAAM,OAAO,OAAOtC,GAAYuC,EAAcH,EAAM,SAAS,MAAMG,IAAgB,OAAO,OAAOA,EAAc,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,EAAW,MAAM,CAAC,IAAIP,EAAcJ,EAAM,SAAS,MAAMI,IAAgB,OAAO,OAAOA,EAAc,MAAM,MAAMzC,GAAW0C,EAAcL,EAAM,SAAS,MAAMK,IAAgB,OAAO,OAAOA,EAAc,MAAM,OAAO,OAAOzC,GAAYgD,EAAcZ,EAAM,SAAS,MAAMY,IAAgB,OAAO,OAAOA,EAAc,OAAO,OAAO,WAAW,EAAE,GAAGlB,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,SAASU,EAAE,MAAS,GAAGG,EAAcb,EAAM,SAAS,MAAMa,IAAgB,OAAO,OAAOA,EAAc,QAAQ,CAAC,EAAEH,EAAE,KAAKC,CAAU,CAAC,EAAED,EAAE,KAAKC,CAAU,CAAE,CAAC,CAAC,EAAI,IAAMG,GAAehC,EAAK,SAASA,EAAK,SAAS,KAAK,MAAMA,EAAK,OAAOA,EAAK,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,EAAa5C,EAAO,IAAI,EAE7lF,GAAG,CAACZ,GAAS,CAAC,IAAMyD,EAASC,GAAU/C,EAAS,EAEzCrC,IAA+BwD,EAAU,IAAI,CAAC,GAAG,EAAAuB,IAAiB,CAACL,IAAgB,CAAC/D,GAAe,OAAAuE,EAAa,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,EAAa,QAAQ,OAAO,CAAE,EAAE,CAACtE,EAAY8D,GAAe/D,CAAK,CAAC,EACtX6C,EAAU,IAAI,CAAK0B,EAAa,UAAkBC,GAAUD,EAAa,QAAQ,YAAY,SAAUA,EAAa,QAAQ,KAAK,EAAW,CAACC,GAAUD,EAAa,QAAQ,YAAY,WAAWA,EAAa,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,GAAjDX,GAAS,UAAU,KAAK,EAAEU,EAAEV,GAAS,UAA6BjE,EAAM,KAAQmE,GAAQ,UAASS,GAAO3E,GAAaiE,GAAK,SAASU,EAAMV,GAAK,QAAQW,GAAK,EAAEd,GAAeG,GAAK,OAAO,EAAED,GAAS,QAAQU,EAAMH,GAAgBpF,EAAO,IAAI8E,GAAK,OAAO,CAAE,CAAC,EAAe,IAAMY,GAAczD,GAAa,WAAW,YAAkB0D,GAAetE,EAAU,EAAQuE,GAAa,IAAIvE,EAAU,EAAQwE,GAAeC,GAAMxE,EAAU,EAAEqE,EAAc,EAAQI,GAAa,IAAIzE,EAAgB0E,GAAS,mBAAmBN,qBAAgCnE,MAAcsE,yBAAqCF,yBAAqCC,sBAAgCrE,MAAcwE,OAAkC,OAAI/D,GAAkWoC,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,GAAU,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,GAAa,MAAM,SAAS,GAAGf,EAAM,WAAWS,GAAS,OAAO,YAAY,UAAU1B,GAA8BkC,GAAY,CAAC,EAAEC,EAAS,EAAE,aAAa,IAAI,CAAC2C,GAAQ,QAAQ,GAAQI,EAAa,UACz5DA,EAAa,QAAQ,aAAatE,EAAa,EAAE,aAAa,IAAI,CAACkE,GAAQ,QAAQ,GAASI,EAAa,UACzGA,EAAa,QAAQ,aAAa,EAAG,EAAE,SAAS,CAACrC,GAAeC,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,EC7Bp2G,IAAMC,GAAe,mCAAgDC,GAAoB,SAI5HC,GAAoB,CAACC,EAAUC,EAAc,cAAc,WAAWA,eAA2BA,YAAwBD,EAAU,WAAWC,YAAwB,KAAK,UAAUD,CAAS,MAAM,IAAI,WAAWC,8DAOnNC,GAAa,CAACD,EAAcE,EAAGC,EAAYC,EAAaR,GAAeS,EAAiBR,KAAsB,CAAC,IAAIS,EAAO,GAAG,GAAGH,EAAY,CAAC,GAAK,CAAC,SAAAI,EAAS,YAAAC,CAAW,EAAEL,EAAYG,EAAO,aAAaC,iBAAwBC,sBAAiC,MAAM,GAAGJ,KAAgBC,QAAuBH,IAAKF,IAAgB,YAAY,GAAG,MAAMA,MAAkBM,GAAS,EAGvXG,GAASH,IAA6hB,CAAC,mBAA5f,IAAI,CAAC,IAAMI,EAAgB,SAAS,cAAc,QAAQ,EAAE,OAAGJ,EAAO,OAAOI,EAAgB,aAAa,QAAQJ,EAAO,KAAK,EAAGI,EAAgB,UAAUZ,GAAoBQ,EAAO,UAAUA,EAAO,aAAa,EAASI,CAAgB,EAAkS,UAAhR,IAAI,CAAC,IAAMC,EAAO,SAAS,cAAc,QAAQ,EAAE,OAAGL,EAAO,OAAOK,EAAO,aAAa,QAAQL,EAAO,KAAK,EAAGK,EAAO,IAAIV,GAAaK,EAAO,cAAcA,EAAO,GAAGA,EAAO,YAAYA,EAAO,aAAaA,EAAO,gBAAgB,EAASK,CAAO,CAAqC,GAO5jBC,GAAQ,CAAC,CAAC,UAAAb,EAAU,cAAAC,EAAc,YAAAG,EAAY,MAAAU,EAAM,GAAAX,EAAG,aAAAE,EAAa,iBAAAC,CAAgB,IAAI,CAAC,IAAMS,EAAIL,GAAS,CAAC,UAAAV,EAAU,cAAAC,EAAc,YAAAG,EAAY,MAAAU,EAAM,GAAAX,EAAG,aAAAE,EAAa,iBAAAC,CAAgB,CAAC,EAAQK,EAAgBI,EAAI,mBAAmB,EAAQH,EAAOG,EAAI,UAAU,EAAE,SAAS,KAAK,OAAOJ,EAAgBC,CAAM,CAAE,EAAS,SAASI,IAAW,CAAIC,KAAWC,EAAO,UAAaA,EAAO,WAAc,CAAC,EAAEA,EAAO,UAAa,KAAK,SAAS,EAAG,CCrBjX,IAAMC,GAAoB,oKAA2K,SAASC,GAAiBC,EAAS,CAAC,IAAMC,EAAcD,EAAS,MAAM,GAAG,EAAME,EAAeC,EAAW,OAAOF,EAAc,CAAC,EAAE,CAAC,IAAI,MAAME,EAAW,aAAa,MAAM,IAAI,SAASA,EAAW,WAAW,MAAM,IAAI,SAASA,EAAW,SAAS,MAAM,QAAQA,EAAW,UAAU,KAAM,CAAC,OAAOF,EAAc,CAAC,EAAE,CAAC,IAAI,OAAOC,EAAe,aAAa,MAAM,IAAI,QAAQA,EAAe,WAAW,MAAM,IAAI,SAASA,EAAe,SAAS,MAAM,QAAQA,EAAe,UAAU,KAAM,CAAC,MAAM,CAAC,eAAAA,EAAe,WAAAC,CAAU,CAAE,CAAQ,SAASC,MAAsBC,EAAQ,CAAC,IAAMC,EAAO,CAAC,EAAE,OAAAD,EAAQ,QAAQE,GAAgBA,GAAQD,EAAO,KAAKC,CAAM,CAAG,EAASD,EAAO,KAAK,IAAI,CAAE,CAAQ,SAASE,GAAUD,EAAO,CAAC,OAAGA,EAAc,GAAGA,EAAO,aAAaA,EAAO,aAAaA,EAAO,gBAAgBA,EAAO,cAA2B,IAAK,CAAQ,SAASE,GAAcC,EAAWC,EAAQ,CAAC,GAAG,CAAC,OAAO,KAAK,MAAMD,CAAU,CAAE,MAAC,CAASC,GAAQA,EAAQ,CAAE,CAAC,CAKvrC,SAASC,GAAYC,EAAQ,CAAC,GAAG,cAAcC,EAAO,CAAC,GAAG,UAAU,UAAU,OAAO,UAAU,MAAMD,CAAO,EAAE,GAAG,aAAa,UAAU,OAAO,UAAU,SAAS,IAAI,CAAC,EAAEA,CAAO,EAAG,OAA4CA,GAAQ,WAAY,gBAEtP,QAAQ,QAAQ,EAAU,IAAI,QAAQE,GAAS,CAAC,WAAWA,CAAO,CAAE,CAAC,CAAE,CAG3E,eAAsBC,GAAcC,EAAGJ,EAAQ,CAAC,aAAMD,GAAYC,CAAO,EAASI,EAAG,CAAE,CAIhF,SAASC,GAAoBL,EAAQ,CAAC,OAAO,IAAI,QAAQE,GAAS,CAAC,WAAWA,EAAQ,GAAG,EAClG,sBAAsB,IAAI,CAAMC,GAAcD,EAAQF,CAAO,CAAE,CAAC,CAAE,CAAC,CAAE,CCfwS,SAASM,GAAaC,EAAQ,CAAC,MAAM,CAAC,sBAAsBA,EAAQ,UAAU,UAAU,SAAS,iBAAiBA,EAAQ,UAAU,UAAU,SAAS,WAAWA,EAAQ,UAAU,UAAU,SAAS,aAAaA,EAAQ,UAAU,UAAU,SAAS,mBAAmBA,EAAQ,UAAU,UAAU,SAAS,kBAAkBA,EAAQ,UAAU,UAAU,SAAS,wBAAwBA,EAAQ,YAAY,UAAU,QAAQ,CAAE,CAAC,SAASC,GAAQC,EAAMC,EAAO,CAAC,OAAOA,EAAO,KAAK,CAAC,IAAI,aAAa,MAAM,CAAC,GAAGD,EAAM,KAAK,GAAK,aAAa,GAAK,MAAM,CAAC,UAAU,GAAK,UAAU,GAAK,UAAU,GAAK,YAAY,EAAI,CAAC,EAAE,IAAI,YAAY,MAAM,CAAC,GAAGA,EAAM,KAAK,GAAK,UAAU,GAAK,MAAM,CAAC,UAAU,GAAK,UAAU,GAAK,UAAU,GAAK,YAAY,EAAI,CAAC,EAAE,IAAI,YAAY,MAAM,CAAC,GAAGA,EAAM,KAAK,GAAK,UAAU,GAAK,MAAM,CAAC,UAAU,GAAM,UAAU,GAAM,UAAU,GAAM,YAAY,EAAK,CAAC,EAAE,IAAI,gBAAgB,MAAM,CAAC,GAAGA,EAAM,UAAU,GAAK,KAAK,EAAI,EAAE,IAAI,SAAS,MAAM,CAAC,GAAGA,EAAM,MAAM,CAAC,GAAGA,EAAM,MAAM,GAAGC,EAAO,KAAK,EAAE,KAAKA,EAAO,IAAI,EAAE,IAAI,SAAS,MAAM,CAAC,GAAGD,EAAM,MAAM,CAAC,GAAGA,EAAM,MAAM,CAACC,EAAO,IAAI,EAAE,CAACD,EAAM,MAAMC,EAAO,IAAI,CAAC,CAAC,EAAE,IAAI,uBAAuB,MAAM,CAAC,GAAGD,EAAM,MAAMC,EAAO,MAAM,UAAUA,EAAO,UAAU,aAAaA,EAAO,aAAa,4BAA4B,GAAK,KAAK,EAAI,EAAE,IAAI,UAAU,MAAM,CAAC,GAAGD,EAAM,UAAU,EAAI,EAAE,IAAI,SAAS,MAAM,CAAC,GAAGA,EAAM,KAAK,GAAM,UAAU,EAAI,EAAE,QAAQ,OAAOA,CAAM,CAAC,CAAC,IAAME,GAAa,CAAC,UAAU,GAAM,aAAa,GAAM,MAAM,KAAK,KAAK,GAAM,4BAA4B,GAAM,UAAU,EAAK,EAAeC,GAAe,CAAC,UAAU,GAAM,UAAU,GAAM,UAAU,GAAM,YAAY,EAAK,EAEh8DC,GAAkB,GAAa,SAASC,GAAW,CAAC,MAAAC,EAAM,eAAAH,EAAe,oBAAAI,EAAoB,EAAK,EAAE,CAAC,GAAK,CAACP,EAAMQ,CAAQ,EAAEC,GAAWV,GAAQG,EAAY,EAAQQ,EAAiBC,GAAoB,EAAQC,EAA2B,2BAAiCC,EAAyB,yBAA+BC,EAA4B,4BAA4B,SAASC,GAA0B,CAAC,IAAMC,EAAwB,aAAa,QAAQJ,CAA0B,EAAQK,EAA0B,aAAa,QAAQJ,CAAwB,EAAQK,EAA6B,aAAa,QAAQJ,CAA2B,EAAQK,EAAYF,IAA4B,KAAWG,EAAeF,IAA+B,KAA2OV,EAAS,CAAC,KAAK,uBAAuB,UAAUW,EAAY,aAAaC,EAAe,MAA/RJ,IAA0B,OAA6CG,GAAaC,GAAmPC,GAAcL,EAAwB,IAAI,aAAa,WAAWJ,CAA0B,CAAC,EAAET,CAAc,CAAC,CAAE,CAAC,SAASmB,GAAW,CAAIhB,IAAU,CAACF,IAAmB,CAACG,GAKhxCgB,GAAU,UAAU,UAAU1B,GAAaG,EAAM,KAAK,CAAC,EAAEwB,GAAQ,CAAC,UAAU,OAAU,cAAc,YAAY,YAAY,OAAU,MAAM,OAAU,aAAa,GAAK,GAAGlB,CAAK,CAAC,EAAEF,GAAkB,KAAWA,GAAkB,GAAKmB,GAAU,UAAU,SAAS1B,GAAaG,EAAM,KAAK,CAAC,EAC7RyB,EAAO,UAAU,KAAK,CAAC,MAAM,uBAAuB,CAAC,GAAI,CAACC,EAAU,IAAI,CAAIhB,GAAwBiB,GAAc,IAAIZ,EAAyB,EAAE,CAAC,SAAS,eAAe,CAAC,CAAE,EAAE,CAAC,CAAC,EACjLW,EAAU,IAAI,CAAIhB,GAA2BV,EAAM,WAAW,aAAa,QAAQa,EAAyB,MAAM,CAAG,EAAE,CAACb,EAAM,SAAS,CAAC,EACxI0B,EAAU,IAAI,CAAIhB,GAA2BV,EAAM,cAAc,aAAa,QAAQc,EAA4B,MAAM,CAAG,EAAE,CAACd,EAAM,YAAY,CAAC,EACjJ0B,EAAU,IAAI,CAAIhB,GAAsF,EAA7CV,EAAM,MAAM4B,IAAW5B,EAAM,QAAQ,OAA6B2B,GAAc,IAAI,CAACL,EAAU,EAC1J,aAAa,QAAQV,EAA2B,KAAK,UAAUZ,EAAM,KAAK,CAAC,EAAEQ,EAAS,CAAC,KAAK,QAAQ,CAAC,CAAE,EAAE,CAAC,SAAS,eAAe,CAAC,CAAE,EAAE,CAACR,EAAM,IAAI,CAAC,EAAE,SAAS6B,GAAS,CAACrB,EAAS,CAAC,KAAK,SAAS,CAAC,EAAE,aAAa,QAAQK,EAAyB,MAAM,CAAE,CAAC,SAASiB,GAAY,CAACtB,EAAS,CAAC,KAAK,YAAY,CAAC,CAAE,CAAC,SAASuB,GAAW,CAACvB,EAAS,CAAC,KAAK,WAAW,CAAC,CAAE,CAAC,SAASwB,GAAW,CAACxB,EAAS,CAAC,KAAK,WAAW,CAAC,CAAE,CAAC,SAASyB,GAAe,CAACzB,EAAS,CAAC,KAAK,eAAe,CAAC,CAAE,CAAC,SAAS0B,EAAWC,EAAK,CAAC3B,EAAS,CAAC,KAAK,SAAS,KAAA2B,CAAI,CAAC,CAAE,CAAC,MAAM,CAAC,MAAMnC,EAAM,MAAM,cAAcA,EAAM,UAAU,YAAYA,EAAM,UAAU,eAAeA,EAAM,aAAa,QAAA6B,EAAQ,WAAAC,EAAW,UAAAC,EAAU,UAAAC,EAAU,cAAAC,EAAc,WAAAC,CAAU,CAAE,CCXhsB,IAAME,GAAU,CAAC,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,KAAK,IAAI,EAAQC,GAAe,IAAI,CAAC,IAAIC,EAA8CC,EAAqCC,EAAqBC,EAAM,OAAOA,EAAM,QAAQ,MAAMA,IAAQ,SAAeD,EAAqBC,EAAM,eAAe,KAAK,MAAMD,IAAuB,SAAeD,EAAqCC,EAAqB,gBAAgB,KAAK,MAAMD,IAAuC,SAAeD,EAA8CC,EAAqC,YAAY,MAAMD,IAAgD,OAAnY,OAAiZA,EAA8C,WAAW,QAAQ,CAAE,EAAQI,GAAW,IAAI,CAAC,IAAIC,EAAyBC,EAAoB,IAAMC,GAAQD,EAAoBE,EAAU,YAAY,MAAMF,IAAsB,OAAOA,GAAqBD,EAAqBG,EAAU,aAAa,MAAMH,IAAuB,OAAO,OAAOA,EAAqB,CAAC,EAAE,OAAOP,GAAU,KAAKW,GAAS,CAAC,IAAIC,EAAoB,OAAOH,GAAS,OAA8BG,EAAoBH,EAAO,YAAY,KAAK,MAAMG,IAAsB,OAAhF,OAA8FA,EAAoB,SAASD,CAAO,CAAE,CAAC,CAAE,EAAME,GAAM,KAAkBC,GAAK,KAAQD,KAAQ,OAAKA,GAAMZ,GAAe,GAAGK,GAAW,GAASO,ICDn6C,SAASE,GAAU,CAAC,QAAAC,EAAQ,mBAAAC,CAAkB,EAAE,CAAoD,IAAMC,GAA7BC,GAAUC,GAAK,EAAE,IAAwD,KAAK,QAAcC,EAAgBL,EAAQ,KAAK,KAAK,QAA6f,MAAje,CAAC,GAAG,CAAC,MAAMA,EAAQ,QAAQ,YAAYA,EAAQ,cAAc,KAAKA,EAAQ,OAAO,SAASA,EAAQ,WAAW,OAAOA,EAAQ,SAAS,SAASA,EAAQ,WAAW,WAAWA,EAAQ,SAAS,WAAWA,EAAQ,aAAa,EAAI,EAAE,MAAM,CAAC,MAAMA,EAAQ,WAAW,YAAYA,EAAQ,iBAAiB,KAAKA,EAAQ,UAAU,SAASA,EAAQ,cAAc,OAAOA,EAAQ,YAAY,SAASA,EAAQ,cAAc,WAAWA,EAAQ,YAAY,WAAWA,EAAQ,gBAAgB,EAAI,CAAC,EAAuBC,EAAmBI,EAAgBH,CAAqB,CAAE,CCA/kB,IAAMI,GAAQ,GACtWC,GAAoBC,GAAK,IAAI,OAAO,0BAA8F,CAAC,EAAeC,GAAOC,GAAQ,SAAgB,CAAC,OAAAC,EAAO,OAAAC,EAAO,OAAAC,EAAO,QAAAC,EAAQ,eAAAC,EAAe,aAAAC,EAAa,UAAAC,EAAU,YAAAC,EAAY,YAAAC,EAAY,gBAAAC,EAAgB,gBAAAC,EAAgB,eAAAC,CAAc,EAAE,CAAC,IAAIC,EAAqB,IAAMC,EAAmBb,EAAO,aAAaA,EAAO,SAASA,EAAO,YAAYA,EAAO,MAAM,EAAQc,EAAUd,EAAO,MAAM,MAAMC,EAAO,QAAQ,KAAWc,EAAaf,EAAO,eAAe,GAAGA,EAAO,gBAAgBA,EAAO,kBAAkBA,EAAO,mBAAmBA,EAAO,gBAAgB,GAAGA,EAAO,YAAkBgB,EAAaC,GAAUjB,EAAO,MAAM,MAAM,EAAQkB,EAAe,GAAAN,EAAqBZ,EAAO,MAAM,UAAU,MAAMY,IAAuB,SAAcA,EAAqB,MAAO,eAAeZ,EAAO,MAAM,OAAO,WAAWA,EAAO,MAAM,OAAO,QAAQ,KAAWmB,EAAY,CAAC,WAAWnB,EAAO,MAAM,KAAK,UAAUoB,GAAmBJ,EAAaE,CAAY,EAAE,SAAS,SAAS,aAAalB,EAAO,MAAM,OAAO,MAAM,EAAE,OAAoBqB,EAAKC,EAAO,IAAI,CAAC,QAAQX,GAAgB,CAAC,EAAEX,EAAO,UAAU,EAAE,EAAEA,EAAO,UAAU,EAAE,MAAMA,EAAO,UAAU,MAAM,QAAQ,CAAC,EAAE,QAAQ,CAAC,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,KAAK,CAAC,EAAEA,EAAO,UAAU,EAAE,EAAEA,EAAO,UAAU,EAAE,MAAMA,EAAO,UAAU,MAAM,QAAQ,CAAC,EAAE,WAAWW,EAAeX,EAAO,UAAU,WAAW,CAAC,SAAS,CAAC,EAAE,MAAM,CAAC,WAAWuB,GAAoB,UAAU,gBAAgBV,OAAwB,cAAc,SAAS,IAAI,GAAG,SAAS,WAAW,QAAQ,OAAO,OAAO,IAAI,cAAc,MAAM,EAAE,SAAsBQ,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGF,EAAY,SAAS,SAAS,MAAM,OAAO,SAASnB,EAAO,KAAK,EAAE,UAAU,gEAAgEE,EAAO,OAAO,SAASA,EAAO,OAAO,SAAsBmB,EAAKG,GAAa,CAAC,OAAOxB,EAAO,OAAOC,EAAO,UAAUa,EAAU,YAAYZ,EAAO,YAAY,OAAOA,EAAO,OAAO,UAAUI,CAAS,CAAC,EAAEJ,EAAO,OAAO,SAAsBmB,EAAKI,GAAmB,CAAC,OAAOzB,EAAO,OAAOC,EAAO,UAAUa,EAAU,MAAMZ,EAAO,MAAM,YAAYA,EAAO,YAAY,OAAOA,EAAO,OAAO,SAASK,EAAY,SAASC,CAAW,CAAC,EAAea,EAAKK,GAAc,CAAC,OAAO1B,EAAO,OAAOC,EAAO,QAAQE,EAAQ,eAAeC,EAAe,UAAUU,EAAU,MAAMZ,EAAO,MAAM,YAAYA,EAAO,YAAY,WAAWA,EAAO,WAAW,OAAOA,EAAO,OAAO,eAAeQ,EAAgB,QAAQL,EAAa,YAAYE,EAAY,YAAYC,EAAY,gBAAgBC,CAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,EAAE,CAAC,0EAA0E;AAAA;AAAA;AAAA,UAG3lF,CAAC,EAAE,SAASe,GAAa,CAAC,OAAAxB,EAAO,OAAAC,EAAO,YAAA0B,EAAY,OAAAC,EAAO,UAAAtB,EAAU,UAAAQ,CAAS,EAAE,CAAC,IAAMe,EAAQ7B,EAAO,eAAe,GAAGA,EAAO,gBAAgBA,EAAO,kBAAkBA,EAAO,mBAAmBA,EAAO,gBAAgB,GAAGA,EAAO,YAAY,OAAoB8B,EAAM,MAAM,CAAC,MAAM,CAAC,QAAQ,OAAO,cAAc,MAAM,QAAAD,EAAQ,IAAIlC,EAAO,EAAE,SAAS,CAAc0B,EAAKU,GAAY,CAAC,MAAM,CAAC,GAAG/B,EAAO,MAAM,SAAS,KAAK,EAAE,WAAW,SAAS,MAAMA,EAAO,MAAM,SAAS,EAAE,UAAUc,EAAU,YAAYa,EAAY,OAAOC,CAAM,CAAC,EAAeP,EAAKC,EAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,OAAO,eAAe,SAAS,WAAW,QAAQ,EAAE,SAAsBD,EAAKW,GAAO,CAAC,QAAQ1B,EAAU,SAAS,CAAC,GAAGL,EAAO,MAAM,EAAK,EAAE,GAAG,UAAU,SAASA,EAAO,OAAO,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASwB,GAAmB,CAAC,OAAAzB,EAAO,OAAAC,EAAO,MAAAgC,EAAM,UAAAnB,EAAU,YAAAa,EAAY,OAAAC,EAAO,SAAAM,EAAS,SAAAC,CAAQ,EAAE,CAAC,IAAMN,EAAQ7B,EAAO,eAAe,GAAGA,EAAO,gBAAgBA,EAAO,kBAAkBA,EAAO,mBAAmBA,EAAO,gBAAgB,GAAGA,EAAO,YAAY,OAAoB8B,EAAM,MAAM,CAAC,MAAM,CAAC,QAAAD,CAAO,EAAE,SAAS,CAAcC,EAAM,MAAM,CAAC,SAAS,CAACG,GAAoBZ,EAAKe,GAAS,CAAC,MAAM,CAAC,GAAGpC,EAAO,MAAM,UAAU,MAAMA,EAAO,MAAM,UAAU,EAAE,SAASiC,CAAK,CAAC,EAAeZ,EAAKU,GAAY,CAAC,MAAM,CAAC,GAAG/B,EAAO,MAAM,SAAS,MAAMA,EAAO,MAAM,SAAS,EAAE,UAAUc,EAAU,YAAYa,EAAY,OAAOC,CAAM,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAMO,GAAQ,CAAC,UAAUpC,EAAO,UAAU,SAAS,CAAcoB,EAAKW,GAAO,CAAC,SAAS/B,EAAO,QAAQkC,EAAS,GAAG,SAAS,SAASlC,EAAO,OAAO,MAAM,CAAC,EAAeoB,EAAKW,GAAO,CAAC,SAAS/B,EAAO,QAAQ,GAAK,QAAQiC,EAAS,GAAG,SAAS,SAASjC,EAAO,OAAO,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASyB,GAAc,CAAC,OAAA1B,EAAO,OAAAC,EAAO,QAAAE,EAAQ,eAAAC,EAAe,MAAA6B,EAAM,YAAAN,EAAY,OAAAC,EAAO,WAAAU,EAAW,GAAK,UAAAxB,EAAU,QAAAyB,EAAQ,gBAAA9B,EAAgB,YAAAF,EAAY,YAAAC,EAAY,eAAAgC,CAAc,EAAE,CAAC,GAAK,CAACC,EAAYC,CAAc,EAAEC,GAAS,EAAK,EAAQC,EAAY,CAAC,GAAGzC,EAAQ,MAAM,MAAMH,EAAO,MAAM,SAAS,EAAQ6B,EAAQ7B,EAAO,eAAe,GAAGA,EAAO,gBAAgBA,EAAO,kBAAkBA,EAAO,mBAAmBA,EAAO,gBAAgB,GAAGA,EAAO,YACrkE6C,EAAY,CAAC,YAAY,cAAc,YAAY,WAAW,EAAQC,EAAkBL,GAAarC,EAAe,OAAoB0B,EAAM,MAAM,CAAC,MAAM,CAAC,QAAAD,CAAO,EAAE,SAAS,CAAcC,EAAM,MAAM,CAAC,SAAS,CAACG,GAAoBZ,EAAKe,GAAS,CAAC,MAAM,CAAC,GAAGpC,EAAO,MAAM,UAAU,MAAMA,EAAO,MAAM,UAAU,EAAE,SAASiC,CAAK,CAAC,EAAeZ,EAAKU,GAAY,CAAC,MAAM,CAAC,GAAG/B,EAAO,MAAM,SAAS,MAAMA,EAAO,MAAM,SAAS,EAAE,UAAUc,EAAU,YAAYa,EAAY,OAAOC,CAAM,CAAC,EAAeP,EAAK0B,GAAgB,CAAC,SAASD,GAAgCzB,EAAKC,EAAO,IAAI,CAAC,QAAQlB,EAAe,KAAK,CAAC,QAAQ,EAAE,OAAO,CAAC,EAAE,QAAQ,CAAC,QAAQ,EAAE,OAAO,MAAM,EAAE,KAAK,CAAC,QAAQ,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,QAAQ,OAAO,cAAc,SAAS,IAAI,GAAG,UAAUT,GAAQ,SAAS,QAAQ,EAAE,SAASkD,GAAaA,EAAY,IAAIG,GAAqB3B,EAAK4B,GAAO,CAAC,MAAM9C,EAAQ6C,CAAM,EAAE,MAAM,YAAY7C,EAAQ6C,CAAM,EAAE,YAAY,WAAWhD,EAAO,MAAM,WAAW,iBAAiBA,EAAO,MAAM,UAAU,gBAAgBG,EAAQ,aAAa,QAAQoC,EAAQS,CAAM,EAAE,QAAQ,IAAIR,EAAeQ,CAAM,EAAE,MAAMJ,EAAY,SAASI,IAAS,YAAY7C,EAAQ6C,CAAM,EAAE,SAAS,EAAI,CAAC,CAAC,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3B,EAAKgB,GAAQ,CAAC,UAAUpC,EAAO,UAAU,SAAS6C,EAA+BzB,EAAKW,GAAO,CAAC,SAAS/B,EAAO,QAAQ,GAAK,QAAQQ,EAAgB,GAAG,SAAS,SAASR,EAAO,OAAO,IAAI,CAAC,EAAe6B,EAAMoB,GAAU,CAAC,SAAS,CAACZ,GAAyBjB,EAAKW,GAAO,CAAC,SAAS/B,EAAO,QAAQO,EAAY,GAAG,SAAS,SAASP,EAAO,OAAO,SAAS,CAAC,EAAeoB,EAAKW,GAAO,CAAC,SAAS/B,EAAO,QAAQ,IAAI,CAACyC,EAAe,EAAI,CAAE,EAAE,GAAG,YAAY,SAASzC,EAAO,OAAO,SAAS,CAAC,EAAeoB,EAAKW,GAAO,CAAC,SAAS/B,EAAO,QAAQ,GAAK,QAAQM,EAAY,GAAG,SAAS,SAASN,EAAO,OAAO,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASgD,GAAO,CAAC,MAAAhB,EAAM,WAAAkB,EAAW,YAAAxB,EAAY,iBAAAyB,EAAiB,gBAAAC,EAAgB,QAAAC,EAAQ,SAAAC,EAAS,QAAAC,EAAQ,MAAAC,CAAK,EAAE,CAAC,IAAM1C,EAAa0C,EAAM,eAAe,GAAGA,EAAM,gBAAgBA,EAAM,kBAAkBA,EAAM,mBAAmBA,EAAM,gBAAgB,GAAGA,EAAM,YAAkBvC,EAAauC,EAAM,OAAO,eAAeA,EAAM,OAAO,WAAWA,EAAM,OAAO,QAAQ,KAAK,OAAoB3B,EAAMR,EAAO,IAAI,CAAC,MAAM,CAAC,UAAUJ,EAAa,WAAWuC,EAAM,WAAW,aAAaA,EAAM,OAAO,OAAO,QAAQ1C,EAAa,OAAO,UAAU,WAAW,OAAO,cAAc,KAAK,EAAE,QAAQyC,EAAQ,WAAW,CAAC,QAAQ,EAAE,EAAE,SAAS,CAAc1B,EAAM,MAAM,CAAC,MAAM,CAAC,QAAQ,OAAO,eAAe,eAAe,EAAE,SAAS,CAAcT,EAAK,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,WAAW,IAAI,SAAS,GAAG,MAAM8B,EAAW,GAAGM,EAAM,SAAS,EAAE,SAASxB,CAAK,CAAC,EAAEsB,EAAsBlC,EAAKqC,GAAS,CAAC,SAAsBrC,EAAKzB,GAAO,CAAC,QAAQ0D,EAAQ,KAAK,MAAM,WAAWG,EAAM,YAAY,mBAAmBA,EAAM,mBAAmB,CAAC,CAAC,CAAC,EAAepC,EAAK,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,SAAS,GAAG,MAAMoC,EAAM,YAAY,GAAGA,EAAM,UAAU,WAAW,GAAG,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,CAAC,EAAE9B,GAA0BN,EAAK,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,UAAU,GAAG,SAAS,GAAG,WAAW,IAAI,MAAM+B,EAAiB,GAAGK,EAAM,QAAQ,EAAE,SAAS9B,CAAW,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASS,GAAS,CAAC,SAAAuB,EAAS,MAAAC,CAAK,EAAE,CAAC,OAAoBvC,EAAK,IAAI,CAAC,MAAM,CAAC,SAAS,GAAG,OAAO,mBAAmB,WAAW,OAAO,QAAQ,EAAE,GAAGuC,CAAK,EAAE,SAASD,CAAQ,CAAC,CAAE,CAAC,SAAS5B,GAAY,CAAC,MAAA6B,EAAM,YAAAjC,EAAY,OAAAC,EAAO,UAAAd,CAAS,EAAE,CAAmF,GAAG,EAApEa,GAAoDC,GAAO,MAAqB,OAAO,KAAK,GAAG,CAACD,EAAa,OAAoBN,EAAKwC,GAAqB,CAAC,OAAOjC,EAAO,MAAMgC,EAAM,UAAU9C,CAAS,CAAC,EAI5+G,IAAMgD,EAAsEnC,GAAY,MAAM;AAAA;AAAA,CAAM,EAAE,OAAOA,EAAY,MAAM;AAAA;AAAA,CAAM,EAAE,IAAI,CAACoC,EAAKC,IAAqB3C,EAAKwC,GAAqB,CAAC,KAAKE,EAClM,OAAOC,IAAQF,EAAsB,OAAO,EAAElC,EAAO,KAAK,MAAM,CAChE,UAAUoC,EAAM,EAAE,EAAE,EAAE,GAAGJ,CAAK,EAAE,UAAU9C,CAAS,EAAEkD,CAAK,CAAC,CAAE,CAAC,SAASH,GAAqB,CAAC,KAAAE,EAAK,OAAAnC,EAAO,MAAAgC,EAAM,UAAA9C,CAAS,EAAE,CAAC,OAAoBgB,EAAM,IAAI,CAAC,MAAM,CAAC,WAAW,IAAI,OAAO,EAAE,QAAQ,EAAE,SAAS,GAAG,GAAG8B,CAAK,EAAE,SAAS,CAACG,EAAKA,GAA6CnC,GAAO,KAAM,IAAI,KAA4CA,GAAO,MAAoBE,EAAM,OAAO,CAAC,SAAS,CAAuCF,GAAO,OAAO,IAAiBP,EAAK,IAAI,CAAC,KAA2CO,GAAO,KAAK,OAAO,SAAS,MAAM,CAAC,MAAMd,EAAU,eAAe,MAAM,EAAE,SAA+Cc,GAAO,KAAK,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASS,GAAQ,CAAC,SAAAsB,EAAS,UAAAM,CAAS,EAAE,CAAC,OAAoB5C,EAAK,MAAM,CAAC,MAAM,CAAC,QAAQ,OAAO,cAAc4C,EAAU,IAAI,GAAG,UAAU,EAAE,EAAE,SAASN,CAAQ,CAAC,CAAE,CAAC,IAAM3B,GAAOjC,GAAQ,SAAgB,CAAC,GAAAmE,EAAG,SAAAP,EAAS,QAAAQ,EAAQ,SAAAC,EAAS,QAAAZ,CAAO,EAAE,CAAC,IAAMzC,EAAaqD,EAAS,eAAe,GAAGA,EAAS,gBAAgBA,EAAS,kBAAkBA,EAAS,mBAAmBA,EAAS,gBAAgB,GAAGA,EAAS,YAAkBX,EAAMU,EAAQC,EAAS,QAAQA,EAAS,UAAU,IAAIC,EAAuBC,EAAqB,OAAoBjD,EAAKC,EAAO,MAAM,CAAC,UAAU,mCAAmC,GAAG,oCAAoC4C,IAAK,QAAQV,EAAQ,KAAK,SAAS,MAAM,GAAGG,IAAW,WAAW,CAAC,SAASU,EAAuBD,EAAS,gBAAgB,MAAMC,IAAyB,OAAOA,EAAuB,EAAE,EAAE,SAAS,CAAC,SAASC,EAAqBF,EAAS,cAAc,MAAME,IAAuB,OAAOA,EAAqB,EAAE,EAAE,MAAM,CAAC,iBAAiB,OAAO,WAAW,OAAO,MAAMF,EAAS,MAAM,OAAO,OAAO,OAAO,OAAO,OAAO,OAAO,QAAQrD,EAAa,aAAaqD,EAAS,aAAa,UAAUnD,GAAUwC,EAAM,MAAM,EAAE,WAAWA,EAAM,KAAK,MAAMA,EAAM,MAAM,SAAS,GAAG,WAAW,EAAE,OAAO,UAAU,WAAWW,EAAS,KAAK,QAAQ,IAAI,GAAGA,EAAS,IAAI,CAAC,CAAC,CAAE,EAAE,wFAAwF,ECV5/D,IAAIG,GAAc,GASA,SAARC,GAA8B,CAAC,MAAAC,EAAM,QAAAC,EAAQ,QAAAC,EAAQ,OAAAC,EAAO,OAAAC,EAAO,QAAAC,EAAQ,QAAAC,EAAQ,MAAAC,EAAM,oBAAAC,EAAoB,QAAAC,EAAQ,gBAAAC,EAAgB,SAAAC,EAAS,UAAAC,EAAU,SAAAC,EAAS,kBAAAC,CAAiB,EAAE,CAAC,IAAMC,EAAiBC,GAAoB,EAAQC,EAAUhB,GAASc,EAAuBG,EAAOC,GAAUC,GAAK,EAAE,GAAYC,EAAOC,GAAU,CAAC,QAAAjB,EAAQ,mBAAmBY,CAAS,CAAC,EAAQM,EAAQC,GAAW,CAAC,MAAAxB,EAAM,eAAeqB,EAAO,SAAS,oBAAAb,CAAmB,CAAC,EAAO,CAACiB,EAAOC,CAAS,EAAEC,GAAS7B,EAAa,EACvf,CAAC8B,EAAqBC,CAAuB,EAAEF,GAAS7B,EAAa,EAAEgC,EAAU,IAAI,CAC1FhC,GAAc2B,EACXA,GAAQI,EAAwB,EAAK,EACrCJ,GAAQ,CAACR,GAAWR,GAASsB,GAAc,IAAItB,EAAQ,CAAC,OAAAS,CAAM,CAAC,EAAE,CAAC,SAAS,eAAe,CAAC,CAAG,EAAE,CAACO,CAAM,CAAC,EAC3GK,EAAU,IAAI,CAAC,IAAME,GAAeT,EAAQ,eAAe,CAACA,EAAQ,YAAkBU,EAAiBZ,EAAO,OAAO,UAAU,CAACE,EAAQ,eAAkBS,KAAgB,YAAY,KAAK,oBAAoB,EAAEN,EAAU,EAAI,EAA+DO,IAAkBV,EAAQ,WAAW,EAChUZ,GAAUoB,GAAc,IAAIpB,EAAS,CAAC,OAAAO,CAAM,CAAC,CAAC,IAAQK,EAAQ,aAAaG,EAAU,EAAK,CAAG,EAAE,CAACH,EAAQ,cAAcA,EAAQ,WAAW,CAAC,EAAEO,EAAU,IAAI,CAAIpB,GAAiBqB,GAAc,IAAIrB,EAAgB,CAAC,OAAAQ,EAAO,QAAQK,EAAQ,KAAK,CAAC,CAAC,CAAG,EAAE,CAACA,EAAQ,KAAK,CAAC,EAAE,eAAeW,IAAe,CAAC,MAAMC,GAAoB,EAAEZ,EAAQ,QAAQ,EAAEG,EAAU,EAAK,EAClWd,GAAWmB,GAAc,IAAInB,EAAU,CAAC,OAAAM,CAAM,CAAC,CAAC,CAAG,CAAC,eAAekB,IAAiB,CAAC,MAAMD,GAAoB,EAAEZ,EAAQ,UAAU,EAAEG,EAAU,EAAK,EACpJf,GAAUoB,GAAc,IAAIpB,EAAS,CAAC,OAAAO,CAAM,CAAC,CAAC,CAAG,CAAC,eAAemB,IAAiB,CAAC,MAAMF,GAAoB,EAAEZ,EAAQ,UAAU,EAAEG,EAAU,EAAK,EAClJb,GAAUkB,GAAc,IAAIlB,EAAS,CAAC,OAAAK,CAAM,CAAC,CAAC,CAAG,CAAC,eAAeoB,IAAqB,CAAC,MAAMH,GAAoB,EAAEZ,EAAQ,cAAc,EAAEG,EAAU,EAAK,EAC7JK,GAAc,IAAI,CAAIpB,GAAUA,EAAS,CAAC,OAAAO,CAAM,CAAC,CAAG,CAAC,EAAEa,GAAc,IAAI,CAAIjB,GAAmBA,EAAkB,CAAC,OAAAI,CAAM,CAAC,CAAG,CAAC,CAAE,CAAC,OAAGD,EAA+BsB,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGhC,EAAM,MAAMJ,EAAO,KAAK,EAAE,SAAsBoC,EAAKC,GAAO,CAAC,OAAOrC,EAAO,OAAOC,EAAO,OAAOiB,EAAO,QAAQf,EAAQ,eAAeW,GAAWX,EAAQ,QAAQ,aAAa,CAAC,GAAGmC,GAAe,UAAU,EAAI,EAAE,eAAe,EAAK,CAAC,CAAC,CAAC,EAAuBC,EAAMC,GAAU,CAAC,SAAS,CAAcJ,EAAKK,GAAQ,CAAC,MAAMrC,EAAM,QAAQL,EAAQ,QAAQ,IAAIwB,EAAU,EAAI,CAAC,CAAC,EAAea,EAAKM,GAAQ,CAAC,OAAO1C,EAAO,OAAOC,EAAO,OAAOiB,EAAO,QAAQf,EAAQ,aAAaiB,EAAQ,MAAM,eAAe,CAACK,EAAqB,YAAYQ,GAAgB,gBAAgBE,GAAoB,YAAYD,GAAgB,UAAUH,GAAc,gBAAgBX,EAAQ,WAAW,OAAOE,CAAM,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,IAAMqB,GAAwBC,GAAK,IAAI,OAAO,sBAA0F,CAAC,EAAE,SAASF,GAAQG,EAAM,CAAC,IAAIC,EAAoB,IAAMC,EAAWF,EAAM,OAAO,aAAa,GAAGA,EAAM,OAAO,cAAcA,EAAM,OAAO,gBAAgBA,EAAM,OAAO,iBAAiBA,EAAM,OAAO,cAAc,GAAGA,EAAM,OAAO,UAAe,CAAC,eAAAG,EAAe,WAAAC,CAAU,EAAEC,GAAiBL,EAAM,OAAO,QAAQ,EAAQvB,EAAOuB,EAAM,OAAY,CAACM,EAAmBC,CAAqB,EAAE5B,GAASF,CAAM,EAGj0C,GAA1D,CAAC6B,GAAoB7B,GAAO8B,EAAsB9B,CAAM,EAAK,CAAC6B,EAAmB,OAAO,KAAK,IAAME,EAASR,EAAM,OAAO,SAAS,OAAoBS,GAA0BlB,EAAK,MAAM,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,SAAsBA,EAAKmB,GAAgB,CAAC,SAASjC,EAAoBiB,EAAMiB,EAAO,IAAI,CAAC,MAAM,CAE3T,IAAIH,GAAUJ,IAAa,aAAa,EAAE,OAAU,KAAKI,GAAUL,IAAiB,aAAa,EAAE,OAAU,MAAMK,GAAUL,IAAiB,WAAW,EAAE,OAAU,OAAOK,EAAS,OAAO,OAAU,MAAMA,GAAUL,IAAiB,SAAS,OAAO,OAAU,OAAOK,GAAUJ,IAAa,WAAW,EAAE,OAAU,UAAU,aAAa,SAAS,QAAQ,YAAY,OAAO,QAAQF,EAAW,OAAOF,EAAM,OAAO,OAAO,QAAQ,OAAO,cAAc,MAAM,IAAI,GAAG,eAAe,SAAS,cAAcQ,EAAS,MAAM,MAAM,EAAE,SAAS,CAACA,GAAuBjB,EAAKqB,GAAS,CAAC,OAAOX,EAAoBD,EAAM,OAAO,SAAS,MAAMC,IAAsB,OAAO,OAAOA,EAAoB,QAAQ,CAAC,EAAeV,EAAK,MAAM,CAAC,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,QAAQ,OAAO,eAAAY,EAAe,WAAAC,EAAW,cAAc,OAAO,SAASJ,EAAM,OAAO,eAAe,EAAEA,EAAM,OAAO,eAAe,OAAO,EAAE,SAAsBT,EAAKC,GAAO,CAAC,GAAGQ,CAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,EAAE,SAAS,IAAI,CAAE,CAAC,IAAMJ,GAAQiB,GAAQ,CAAC,CAAC,QAAA3D,EAAQ,MAAAK,EAAM,QAAAuD,CAAO,IAAI,CAAC,IAAM/C,EAAiBC,GAAoB,EAAE,GAAGd,EAAQ,OAAO,OAAQ,OAAoBqC,EAAK,SAAS,CAAC,UAAU,mCAAmC,aAAa,iBAAiB,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,WAAW,OAAO,QAAQ,OAAO,OAAO,OAAO,QAAQ,EAAE,MAAMrC,EAAQ,MAAM,SAAS,GAAG,OAAO,UAAU,GAAGA,EAAQ,QAAQ,EAAE,QAAQ4D,EAAQ,SAAS5D,EAAQ,OAAO,OAAoBqC,EAAKI,GAAU,CAAC,SAASzC,EAAQ,WAAW,UAAUA,EAAQ,UAAuBqC,EAAK,MAAM,CAAC,IAAI,mCAAmC,IAAIrC,EAAQ,UAAU,IAAI,MAAMA,EAAQ,SAAS,OAAOA,EAAQ,QAAQ,CAAC,EAAeqC,EAAKwB,GAAS,CAAC,SAAsBxB,EAAKO,GAAW,CAAC,MAAM5C,EAAQ,SAAS,OAAOA,EAAQ,SAAS,MAAMA,EAAQ,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqC,EAAK,OAAO,CAAC,MAAM,CAAC,WAAW,QAAQ,EAAE,SAASrC,EAAQ,IAAI,CAAC,CAAC,CAAC,EAAG,GAAGa,EAAkB,OAAoB2B,EAAM,MAAM,CAAC,MAAM,CAAC,aAAa,EAAE,MAAM,OAAO,OAAO,kBAAkB,WAAW,yBAAyB,QAAQ,GAAG,QAAQ,OAAO,cAAc,SAAS,IAAI,EAAE,WAAWsB,GAAoB,UAAU,SAAS,eAAe,SAAS,MAAM,IAAI,GAAGzD,CAAK,EAAE,SAAS,CAAcgC,EAAK,IAAI,CAAC,MAAM,CAAC,SAAS,GAAG,WAAW,IAAI,WAAW,EAAE,OAAO,CAAC,EAAE,SAAS,eAAe,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,SAAS,GAAG,WAAW,IAAI,OAAO,CAAC,EAAE,SAAS,uCAAuC,CAAC,CAAC,CAAC,CAAC,CAAG,EAAE,wFAAwF,EAAE,SAASqB,GAAS,CAAC,MAAAK,CAAK,EAAE,CAAC,OAAoB1B,EAAKoB,EAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,KAAK,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAC,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,OAAO,OAAO,OAAO,gBAAgBM,EAAM,cAAc,MAAM,CAAC,CAAC,CAAE,CAACC,GAAoBnE,GAAa,CAAC,MAAM,CAAC,MAAM,SAAS,KAAKoE,EAAY,OAAO,YAAY,cAAc,YAAY;AAAA,0DAAmF,EAAE,QAAQ,CAAC,KAAKA,EAAY,QAAQ,aAAa,GAAK,YAAY,4CAA4C,EAAE,QAAQ,CAAC,KAAKA,EAAY,OAAO,YAAY,aAAa,SAAS,CAAC,KAAK,CAAC,MAAM,OAAO,KAAKA,EAAY,KAAK,QAAQ,CAAC,OAAO,OAAO,MAAM,EAAE,aAAa,CAAC,OAAO,OAAO,MAAM,EAAE,aAAa,OAAO,wBAAwB,EAAI,EAAE,SAAS,CAAC,MAAM,OAAO,KAAKA,EAAY,KAAK,QAAQ,CAAC,UAAU,QAAQ,EAAE,aAAa,CAAC,UAAU,QAAQ,EAAE,wBAAwB,GAAK,OAAOnB,GAAOA,EAAM,OAAO,MAAM,EAAE,KAAK,CAAC,MAAM,QAAQ,KAAKmB,EAAY,OAAO,aAAa,kBAAkB,OAAOnB,GAAOA,EAAM,OAAO,MAAM,EAAE,SAAS,CACr+G,KAAKmB,EAAY,KAAK,MAAM,IAAI,SAAS,WAAW,OAAOnB,GAAOA,EAAM,OAAO,MAAM,EAAE,SAAS,CAAC,MAAM,OAAO,KAAKmB,EAAY,OAAO,eAAe,GAAK,aAAa,GAAG,OAAOnB,GAAOA,EAAM,OAAO,MAAM,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKmB,EAAY,MAAM,aAAa,OAAO,OAAOnB,GAAOA,EAAM,OAAO,QAAQA,EAAM,OAAO,QAAQA,EAAM,WAAW,QAAQ,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKmB,EAAY,gBAAgB,iBAAiB,CAAC,MAAM,MAAM,KAAK,EAAE,OAAOnB,GAAOA,EAAM,WAAW,SAAS,CAAC,CAAC,EAAE,OAAO,CAAC,MAAM,SAAS,KAAKmB,EAAY,OAAO,YAAY,eAAe,SAAS,CAAC,SAAS,CAAC,KAAKA,EAAY,KAAK,MAAM,WAAW,QAAQ,CAAC,WAAW,aAAa,YAAY,eAAe,gBAAgB,aAAa,EAAE,aAAa,CAAC,WAAW,aAAa,YAAY,eAAe,gBAAgB,aAAa,EAAE,aAAa,cAAc,EAAE,OAAO,CAAC,MAAM,UAAU,KAAKA,EAAY,OAAO,aAAa,GAAG,eAAe,GAAK,IAAI,EAAE,IAAI,EAAE,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,OAAO,aAAa,IAAI,IAAI,IAAI,IAAI,IAAI,eAAe,GAAK,KAAK,CAAC,EAAE,eAAe,CAAC,MAAM,WAAW,KAAKA,EAAY,OAAO,aAAa,EAAE,IAAI,CAAC,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,aAAa,GAAG,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,YAAY,UAAU,eAAe,aAAa,CAAC,QAAQ,gBAAgB,EAAE,aAAa,GAAG,UAAU,CAAC,WAAW,aAAa,cAAc,WAAW,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,YAAY,wBAAwB,SAAS,CAAC,UAAU,CACrqD,KAAKA,EAAY,KAAK,MAAM,QAAQ,SAAS,UAAU,EAAE,WAAW,CAAC,MAAM,IAAI,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,SAAS,CACpI,KAAKA,EAAY,KAAK,MAAM,OAAO,SAAS,UAAU,EAAE,UAAU,CAAC,MAAM,IAAI,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,KAAK,CAAC,MAAM,OAAO,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,KAAK,CAAC,MAAM,OAAO,KAAKA,EAAY,MAAM,SAAS,GAAK,aAAa,MAAM,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,YAAY,gBAAgB,SAAS,CAAC,OAAO,CAAC,MAAM,SAAS,KAAKA,EAAY,OAAO,eAAe,GAAK,IAAI,EAAE,aAAa,EAAE,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,OAAO,eAAe,GAAK,IAAI,EAAE,aAAa,CAAC,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,MAAM,aAAa,kBAAkB,CAAC,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,GAAK,SAAS,CAAC,YAAY,CAAC,MAAM,QAAQ,KAAKA,EAAY,MAAM,aAAa,kBAAkB,EAAE,QAAQ,CAAC,MAAM,IAAI,KAAKA,EAAY,OAAO,IAAI,KAAK,IAAI,IAAI,aAAa,CAAC,EAAE,QAAQ,CAAC,MAAM,IAAI,KAAKA,EAAY,OAAO,IAAI,KAAK,IAAI,IAAI,aAAa,CAAC,EAAE,WAAW,CAAC,MAAM,OAAO,KAAKA,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,CAAC,CAAC,CAAC,EAAE,SAAS,CAAC,MAAM,WAAW,KAAKA,EAAY,MAAM,aAAa,kBAAkB,OAAO,CAACC,EAAEpB,IAAQ,CAACA,EAAM,QAAQ,YAAY,CAACA,EAAM,QAAQ,aAAa,CAAC,CAAC,EAAE,UAAU,CAAC,KAAK,SAAS,YAAY,UAAU,KAAKmB,EAAY,OAAO,SAAS,CAAC,EAAE,CAAC,KAAKA,EAAY,OAAO,eAAe,GAAK,aAAa,CAAC,EAAE,EAAE,CAAC,KAAKA,EAAY,OAAO,eAAe,GAAK,aAAa,EAAE,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,IAAI,EAAE,KAAK,GAAG,aAAa,CAAC,EAAE,WAAW,CAAC,KAAKA,EAAY,UAAU,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,CAAC,MAAM,UAAU,KAAKA,EAAY,OAAO,YAAY,kBAAkB,SAAS,CAAC,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,OAAO,YAAY,iBAAiB,SAAS,CAAC,KAAK,CAAC,MAAM,OAAO,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,GAAK,SAAS,CAAC,YAAY,CAAC,MAAM,QAAQ,KAAKA,EAAY,MAAM,aAAa,kBAAkB,EAAE,QAAQ,CAAC,MAAM,IAAI,KAAKA,EAAY,OAAO,IAAI,KAAK,IAAI,GAAG,EAAE,QAAQ,CAAC,MAAM,IAAI,KAAKA,EAAY,OAAO,IAAI,KAAK,IAAI,GAAG,EAAE,WAAW,CAAC,MAAM,OAAO,KAAKA,EAAY,OAAO,IAAI,EAAE,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,MAAM,YAAY,KAAKA,EAAY,OAAO,YAAY,iBAAiB,SAAS,CAAC,KAAK,CAAC,MAAM,OAAO,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,GAAK,SAAS,CAAC,YAAY,CAAC,MAAM,QAAQ,KAAKA,EAAY,MAAM,aAAa,kBAAkB,EAAE,QAAQ,CAAC,MAAM,IAAI,KAAKA,EAAY,OAAO,IAAI,KAAK,IAAI,GAAG,EAAE,QAAQ,CAAC,MAAM,IAAI,KAAKA,EAAY,OAAO,IAAI,KAAK,IAAI,GAAG,EAAE,WAAW,CAAC,MAAM,OAAO,KAAKA,EAAY,OAAO,IAAI,EAAE,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,SAAS,CAAC,OAAO,CAAC,KAAKA,EAAY,OAAO,aAAa,QAAQ,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,aAAa,QAAQ,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,aAAa,YAAY,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,aAAa,YAAY,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,aAAa,WAAW,EAAE,KAAK,CAAC,KAAKA,EAAY,OAAO,aAAa,kBAAkB,EAAE,QAAQ,CAAC,KAAKA,EAAY,OAAO,aAAa,MAAM,CAAC,CAAC,EAAE,KAAK,CAC9jG,KAAKA,EAAY,KAAK,MAAM,OAAO,SAAS,UAAU,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,aAAa,GAAG,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,aAAa,CAAC,MAAM,SAAS,KAAKA,EAAY,OAAO,eAAe,GAAK,IAAI,EAAE,aAAa,CAAC,EAAE,WAAW,CAAC,MAAM,cAAc,KAAKA,EAAY,OAAO,KAAK,GAAG,eAAe,GAAK,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,EAAE,aAAa,CAAC,MAAM,gBAAgB,KAAKA,EAAY,OAAO,KAAK,GAAG,eAAe,GAAK,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,MAAM,QAAQ,EAC/rB,YAAY,CAAC,uBAAuB,oBAAoB,EAAE,aAAa,MAAM,wBAAwB,EAAI,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,QAAQ,aAAa,EAAI,CAAC,CAAC,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,OAAO,YAAY,YAAY,SAAS,CAAC,KAAK,CAAC,MAAM,IAAI,KAAKA,EAAY,QAAQ,aAAa,GAAK,aAAa,KAAK,cAAc,OAAO,EAAE,OAAO,CAAC,MAAM,UAAU,KAAKA,EAAY,KAAK,QAAQ,CAAC,SAAS,SAAS,UAAU,EAAE,aAAa,CAAC,OAAO,gBAAgB,cAAc,EAAE,aAAa,SAAS,OAAOnB,GAAO,CAACA,EAAM,IAAI,EAAE,QAAQ,CAAC,MAAM,QAAQ,KAAKmB,EAAY,OAAO,aAAa,kBAAkB,OAAOnB,GAAOA,EAAM,SAAS,UAAU,CAACA,EAAM,IAAI,EAAE,cAAc,CAAC,MAAM,cAAc,KAAKmB,EAAY,OAAO,aAAa,oGAAoG,gBAAgB,GAAK,OAAOnB,GAAO,CAACA,EAAM,IAAI,EAAE,SAAS,CAAC,MAAM,SAAS,KAAKmB,EAAY,OAAO,YAAY,eAAe,SAAS,CAAC,KAAK,CAAC,MAAM,OAAO,KAAKA,EAAY,KAAK,aAAa,sCAAsC,EAAE,OAAO,CAAC,MAAM,SAAS,KAAKA,EAAY,OAAO,aAAa,UAAU,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,OAAO,aAAa,eAAe,CAAC,EAAE,OAAOnB,GAAO,CAACA,EAAM,IAAI,EAAE,WAAW,CAAC,MAAM,WAAW,YAAY,UAAU,KAAKmB,EAAY,OAAO,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,QAAQ,aAAa,UAAU,cAAc,SAAS,aAAa,EAAI,EAAE,YAAY,CAAC,KAAKA,EAAY,QAAQ,aAAa,UAAU,cAAc,SAAS,aAAa,EAAK,EAAE,UAAU,CAAC,KAAKA,EAAY,QAAQ,aAAa,UAAU,cAAc,SAAS,aAAa,EAAK,EAAE,UAAU,CAAC,KAAKA,EAAY,QAAQ,aAAa,UAAU,cAAc,SAAS,aAAa,GAAM,YAAY,iEAA4D,CAAC,EAAE,OAAOnB,GAAO,CAACA,EAAM,IAAI,EAAE,aAAa,CAAC,MAAM,aAAa,KAAKmB,EAAY,QAAQ,aAAa,GAAK,aAAa,OAAO,cAAc,OAAO,OAAOnB,GAAOA,EAAM,SAAS,UAAU,EAAE,WAAW,CAAC,MAAM,WAAW,KAAKmB,EAAY,QAAQ,aAAa,GAAM,YAAY,uCAAuC,OAAOnB,GAAO,CAACA,EAAM,IAAI,EAAE,UAAU,CAAC,MAAM,UAAU,KAAKmB,EAAY,KAAK,QAAQ,CAAC,SAAS,SAAS,UAAU,EAAE,aAAa,CAAC,OAAO,gBAAgB,cAAc,EAAE,aAAa,SAAS,OAAOnB,GAAOA,EAAM,IAAI,EAAE,WAAW,CAAC,MAAM,QAAQ,KAAKmB,EAAY,OAAO,aAAa,kBAAkB,OAAOnB,GAAOA,EAAM,YAAY,UAAUA,EAAM,IAAI,EAAE,iBAAiB,CAAC,MAAM,cAAc,KAAKmB,EAAY,OAAO,aAAa,uEAAuE,gBAAgB,GAAK,OAAOnB,GAAOA,EAAM,IAAI,EAAE,YAAY,CAAC,MAAM,SAAS,KAAKmB,EAAY,OAAO,YAAY,eAAe,SAAS,CAAC,KAAK,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,EAAE,OAAO,CAAC,MAAM,SAAS,KAAKA,EAAY,OAAO,aAAa,UAAU,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,OAAO,aAAa,eAAe,CAAC,EAAE,OAAOnB,GAAOA,EAAM,IAAI,EAAE,cAAc,CAAC,MAAM,WAAW,YAAY,UAAU,KAAKmB,EAAY,OAAO,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,QAAQ,aAAa,UAAU,cAAc,SAAS,aAAa,EAAI,EAAE,YAAY,CAAC,KAAKA,EAAY,QAAQ,aAAa,UAAU,cAAc,SAAS,aAAa,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,QAAQ,aAAa,UAAU,cAAc,SAAS,aAAa,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,QAAQ,aAAa,UAAU,cAAc,SAAS,aAAa,GAAK,YAAY,iEAA4D,CAAC,EAAE,OAAOnB,GAAOA,EAAM,IAAI,EAAE,gBAAgB,CAAC,MAAM,aAAa,KAAKmB,EAAY,QAAQ,aAAa,GAAK,aAAa,OAAO,cAAc,OAAO,OAAOnB,GAAOA,EAAM,YAAY,UAAU,EAAE,cAAc,CAAC,MAAM,WAAW,KAAKmB,EAAY,QAAQ,aAAa,GAAM,YAAY,uCAAuC,OAAOnB,GAAOA,EAAM,IAAI,CAAC,CAAC,EAAE,QAAQ,CAAC,KAAKmB,EAAY,OAAO,YAAY,kBAAkB,OAAO,CAACC,EAAEpB,IAAQA,EAAM,QAAQ,SAAS,YAAYA,EAAM,QAAQ,YAAY,WAAW,SAAS,CAAC,QAAQ,CAAC,KAAKmB,EAAY,QAAQ,aAAa,GAAM,YAAY,6CAA6C,OAAO,CAACC,EAAEpB,IAAQ,CAACA,EAAM,OAAO,EAAE,UAAU,CAAC,MAAM,YAAY,KAAKmB,EAAY,OAAO,YAAY,UAAU,SAAS,CAAC,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,OAAO,aAAa,WAAW,EAAE,YAAY,CAAC,MAAM,cAAc,KAAKA,EAAY,OAAO,aAAa,4CAA4C,gBAAgB,EAAI,EAAE,SAAS,CAAC,MAAM,WAAW,KAAKA,EAAY,QAAQ,aAAa,EAAI,CAAC,CAAC,EAAE,YAAY,CAAC,MAAM,cAAc,KAAKA,EAAY,OAAO,YAAY,UAAU,SAAS,CAAC,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,OAAO,aAAa,aAAa,EAAE,YAAY,CAAC,MAAM,cAAc,KAAKA,EAAY,OAAO,aAAa,6CAA6C,gBAAgB,GAAK,SAAS,EAAI,CAAC,CAAC,EAAE,UAAU,CAAC,MAAM,YAAY,KAAKA,EAAY,OAAO,YAAY,UAAU,SAAS,CAAC,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,OAAO,aAAa,WAAW,EAAE,YAAY,CAAC,MAAM,cAAc,KAAKA,EAAY,OAAO,aAAa,mCAAmC,gBAAgB,EAAI,CAAC,CAAC,EAAE,UAAU,CAAC,MAAM,YAAY,KAAKA,EAAY,OAAO,YAAY,UAAU,SAAS,CAAC,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,OAAO,aAAa,WAAW,EAAE,YAAY,CAAC,MAAM,cAAc,KAAKA,EAAY,OAAO,aAAa,4CAA4C,gBAAgB,EAAI,CAAC,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,YAAY,gBAAgB,SAAS,CAAC,UAAU,CAC36K,KAAKA,EAAY,KAAK,MAAM,QAAQ,SAAS,OAAO,EAAE,SAAS,CAC/D,KAAKA,EAAY,KAAK,MAAM,OAAO,SAAS,OAAO,EAAE,WAAW,CAAC,MAAM,aAAa,KAAKA,EAAY,MAAM,aAAa,kBAAkB,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,YAAY,gBAAgB,SAAS,CAAC,OAAO,CAAC,MAAM,SAAS,KAAKA,EAAY,OAAO,eAAe,GAAK,IAAI,EAAE,aAAa,CAAC,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,OAAO,eAAe,EAAI,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,MAAM,aAAa,kBAAkB,CAAC,CAAC,EAAE,YAAY,CAAC,MAAM,KAAK,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,oBAAoB,CAAC,MAAM,MAAM,KAAKA,EAAY,MAAM,aAAa,iBAAiB,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,aAAa,GAAG,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEpE,GAAa,YAAY,gBCxB52B,SAARsE,GAAuB,CAAC,KAAAC,EAAK,IAAAC,EAAI,KAAAC,EAAK,MAAAC,EAAM,CAAC,CAAC,EAAE,CAAC,OAAGH,IAAO,OAAOC,EAAyBG,EAAKC,GAAS,CAAC,IAAIJ,EAAI,MAAME,CAAK,CAAC,EAAMH,IAAO,QAAQE,EAA0BE,EAAKE,GAAU,CAAC,KAAKJ,EAAK,MAAMC,CAAK,CAAC,EAAuBC,EAAKG,GAAa,CAAC,MAAMJ,CAAK,CAAC,CAAE,CAACK,GAAoBT,GAAM,CAAC,KAAK,CAAC,KAAKU,EAAY,KAAK,aAAa,MAAM,wBAAwB,GAAK,QAAQ,CAAC,MAAM,MAAM,EAAE,aAAa,CAAC,MAAM,MAAM,CAAC,EAAE,IAAI,CAAC,MAAM,MAAM,KAAKA,EAAY,OAAO,YAAY,8CAAyC,OAAOC,EAAM,CAAC,OAAOA,EAAM,OAAO,KAAM,CAAC,EAAE,KAAK,CAAC,MAAM,OAAO,KAAKD,EAAY,OAAO,gBAAgB,GAAK,OAAOC,EAAM,CAAC,OAAOA,EAAM,OAAO,MAAO,CAAC,CAAC,CAAC,EAAE,SAASH,GAAa,CAAC,MAAAJ,CAAK,EAAE,CAAC,OAAoBC,EAAK,MAAM,CAAC,MAAM,CAAC,UAAUO,GAAaR,CAAK,EAAE,GAAGS,GAAgB,SAAS,SAAS,GAAGT,CAAK,EAAE,SAAsBC,EAAK,MAAM,CAAC,MAAMS,GAAgB,SAAS,kEAAkE,CAAC,CAAC,CAAC,CAAE,CAAC,SAASR,GAAS,CAAC,IAAAJ,EAAI,MAAAE,CAAK,EAAE,CAAC,IAAMW,EAAc,CAACX,EAAM,OAC1/B,cAAc,KAAKF,CAAG,IAAGA,EAAI,WAAWA,GAAK,IAAMc,EAASC,GAAc,EAEzE,CAACC,EAAMC,CAAQ,EAAEC,GAASJ,EAAS,OAAU,EAAK,EAG0c,GAHxcK,EAAU,IAAI,CAEvE,GAAG,CAACL,EAAS,OACb,IAAIM,EAAa,GAAKH,EAAS,MAAS,EAAE,eAAeI,GAAM,CAAC,IAAMC,EAAS,MAAM,MAAM,yDAAyD,mBAAmBtB,CAAG,CAAC,EAAE,GAAGsB,EAAS,QAAQ,IAAI,CAAC,GAAK,CAAC,UAAAC,CAAS,EAAE,MAAMD,EAAS,KAAK,EAAKF,GAAcH,EAASM,CAAS,MAAQ,CAAC,IAAMC,EAAQ,MAAMF,EAAS,KAAK,EAAE,QAAQ,MAAME,CAAO,EAAE,IAAMC,EAAM,IAAI,MAAM,kCAA6B,EAAER,EAASQ,CAAK,EAAG,CAAC,OAAAJ,EAAK,EAAE,MAAMI,GAAO,CAAC,QAAQ,MAAMA,CAAK,EAAER,EAASQ,CAAK,CAAE,CAAC,EAAQ,IAAI,CAACL,EAAa,EAAM,CAAE,EAAE,CAACpB,CAAG,CAAC,EAAKc,GAAUD,EAAe,OAAoBV,EAAKuB,GAAa,CAAC,QAAQ,yCAAyC,MAAMxB,CAAK,CAAC,EAAG,GAAG,CAACF,EAAI,WAAW,UAAU,EAAG,OAAoBG,EAAKuB,GAAa,CAAC,QAAQ,wBAAwB,MAAMxB,CAAK,CAAC,EAAG,GAAGc,IAAQ,OAAW,OAAoBb,EAAKwB,GAAiB,CAAC,CAAC,EAAG,GAAGX,aAAiB,MAAO,OAAoBb,EAAKuB,GAAa,CAAC,QAAQV,EAAM,QAAQ,MAAMd,CAAK,CAAC,EAAG,GAAGc,IAAQ,GAAK,CAAC,IAAMQ,EAAQ,oBAAexB,wCAA0C,OAAoBG,EAAKuB,GAAa,CAAC,QAAQF,EAAQ,MAAMtB,CAAK,CAAC,EAAG,OAAoBC,EAAK,SAAS,CAAC,IAAIH,EAAI,MAAM,CAAC,GAAG4B,GAAY,GAAG1B,CAAK,EAAE,QAAQ,OACvpC,cAAcY,EAAS,MAAM,OAAO,eAAe,cAAc,QAAQe,GAAWf,CAAQ,CAAC,CAAC,CAAE,CAAC,IAAMc,GAAY,CAAC,MAAM,OAAO,OAAO,OAAO,OAAO,MAAM,EAAE,SAASC,GAAWf,EAAS,CAAC,IAAMgB,EAAO,CAAC,oBAAoB,eAAe,EAAE,OAAIhB,GAAUgB,EAAO,KAAK,kBAAkB,cAAc,eAAe,yBAAyB,qBAAqB,eAAe,iCAAiC,qBAAqB,0CAA0C,yCAAyC,EAAUA,EAAO,KAAK,GAAG,CAAE,CAAC,SAASzB,GAAU,CAAC,KAAAJ,EAAK,GAAGQ,CAAK,EAAE,CAA4C,GAA3BR,EAAK,SAAS,YAAW,EAAe,CAAC,IAAM8B,EAAgB9B,EAAK,SAAS,kBAAkB,EAAQ+B,EAAW/B,EAAK,SAAS,8BAA8B,EAAE,OAAG8B,GAAiBC,EAAgC7B,EAAK8B,GAAqB,CAAC,KAAKhC,EAAK,GAAGQ,CAAK,CAAC,EAAuBN,EAAK+B,GAAsB,CAAC,KAAKjC,EAAK,GAAGQ,CAAK,CAAC,EAAG,OAAoBN,EAAKgC,GAAwB,CAAC,KAAKlC,EAAK,GAAGQ,CAAK,CAAC,CAAE,CAAC,SAASyB,GAAsB,CAAC,KAAAjC,EAAK,MAAAC,CAAK,EAAE,CAAC,IAAMkC,EAAIC,EAAO,EAAO,CAACC,EAAaC,CAAe,EAAErB,GAAS,CAAC,EAC/kCC,EAAU,IAAI,CAAC,IAAIqB,EAAa,IAAMC,GAAcD,EAAaJ,EAAI,WAAW,MAAMI,IAAe,OAAO,OAAOA,EAAa,cAAc,SAASE,EAAcC,EAAM,CAAC,GAAGA,EAAM,SAASF,EAAa,OAAO,IAAMG,EAAKD,EAAM,KAAK,GAAG,OAAOC,GAAO,UAAUA,IAAO,KAAK,OAAO,IAAMC,EAAOD,EAAK,YAAe,OAAOC,GAAS,UAAgBN,EAAgBM,CAAM,CAAE,CAAC,OAAAC,EAAO,iBAAiB,UAAUJ,CAAa,EAE7WD,GAAa,YAAY,iBAAiB,GAAG,EAAQ,IAAI,CAACK,EAAO,oBAAoB,UAAUJ,CAAa,CAAE,CAAE,EAAE,CAAC,CAAC,EAGtK,IAAMK,EAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,UAqCH9C;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EA6BF+C,EAAa,CAAC,GAAGpB,GAAY,GAAG1B,CAAK,EAAoC,MAAd,CAACA,EAAM,SAAyB8C,EAAa,OAAOV,EAAa,MAA0BnC,EAAK,SAAS,CAAC,IAAIiC,EAAI,MAAMY,EAAa,OAAOD,CAAM,CAAC,CAAE,CAAC,SAASd,GAAqB,CAAC,KAAAhC,EAAK,MAAAC,CAAK,EAAE,CAAC,IAAMkC,EAAIC,EAAO,EAAE,OAAAlB,EAAU,IAAI,CAAC,IAAM8B,EAAIb,EAAI,QAAQ,GAAIa,EAAW,OAAAA,EAAI,UAAUhD,EAAKiD,GAAeD,CAAG,EAAQ,IAAI,CAACA,EAAI,UAAU,EAAG,CAAE,EAAE,CAAChD,CAAI,CAAC,EAAsBE,EAAK,MAAM,CAAC,IAAIiC,EAAI,MAAM,CAAC,GAAGe,GAAU,GAAGjD,CAAK,CAAC,CAAC,CAAE,CAAC,SAASiC,GAAwB,CAAC,KAAAlC,EAAK,MAAAC,CAAK,EAAE,CAAC,OAAoBC,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGgD,GAAU,GAAGjD,CAAK,EAAE,wBAAwB,CAAC,OAAOD,CAAI,CAAC,CAAC,CAAE,CAAC,IAAMkD,GAAU,CAAC,MAAM,OAAO,OAAO,OAAO,QAAQ,OAAO,cAAc,SAAS,eAAe,SAAS,WAAW,QAAQ,EAEvvB,SAASD,GAAeE,EAAK,CAAC,GAAGA,aAAgB,SAASA,EAAK,UAAU,SAAS,CAAC,IAAMC,EAAO,SAAS,cAAc,QAAQ,EAAEA,EAAO,KAAKD,EAAK,UAAU,OAAS,CAAC,KAAAE,EAAK,MAAAC,CAAK,IAAIH,EAAK,WAAYC,EAAO,aAAaC,EAAKC,CAAK,EAAGH,EAAK,cAAc,aAAaC,EAAOD,CAAI,MAAQ,SAAUI,KAASJ,EAAK,WAAYF,GAAeM,CAAK,CAAI,CACrV,SAAS7B,IAAkB,CAAC,OAAoBxB,EAAK,MAAM,CAAC,UAAU,wCAAwC,MAAM,CAAC,GAAGsD,GAAgB,SAAS,QAAQ,EAAE,SAAsBtD,EAAK,MAAM,CAAC,MAAMS,GAAgB,SAAS,eAAU,CAAC,CAAC,CAAC,CAAE,CAAC,SAASc,GAAa,CAAC,QAAAF,EAAQ,MAAAtB,CAAK,EAAE,CAAC,OAAoBC,EAAK,MAAM,CAAC,UAAU,oCAAoC,MAAM,CAAC,UAAUO,GAAaR,CAAK,EAAE,GAAGuD,GAAgB,SAAS,SAAS,GAAGvD,CAAK,EAAE,SAAsBC,EAAK,MAAM,CAAC,MAAMS,GAAgB,SAASY,CAAO,CAAC,CAAC,CAAC,CAAE,CAAC,IAAMZ,GAAgB,CAAC,UAAU,SAAS,SAAS,GAAG,EACzjB,SAASF,GAAaR,EAAM,CAAmC,GAAd,CAACA,EAAM,OAAwB,MAAO,IAAI,CC1FuP,IAAMwD,GAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,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,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAAStB,EAAO,OAAauB,CAAQ,EAAQC,GAAwB,CAAC,OAAO,YAAY,gBAAgB,YAAY,cAAc,YAAY,KAAK,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,OAAAC,EAAO,OAAAC,EAAO,GAAAC,EAAG,SAAAC,EAAS,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAuCC,EAAMC,EAAM,MAAM,CAAC,GAAGJ,EAAM,WAAWC,EAAKP,GAAsCM,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,oKAAqJ,SAASE,GAAOD,EAAuCV,GAAwBQ,EAAM,OAAO,KAAK,MAAME,IAAyC,OAAOA,EAAuCF,EAAM,WAAW,MAAMG,IAAQ,OAAOA,EAAM,YAAY,WAAWC,EAAMN,GAA4CE,EAAM,aAAa,MAAMI,IAAQ,OAAOA,EAAM,sCAAsC,UAAUT,GAAsCK,EAAM,SAAS,CAAE,EAAQK,GAAuB,CAACL,EAAM1B,IAAe0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAE0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAUgC,GAA6BC,GAAW,SAASP,EAAMQ,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAtC,EAAQ,UAAAuC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEzB,GAASO,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAApD,CAAQ,EAAEqD,GAAgB,CAAC,WAAA1D,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQyD,EAAiBvB,GAAuBL,EAAM1B,CAAQ,EAAO,CAAC,sBAAAuD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAaH,EAAsB,SAASI,IAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQQ,GAAeL,EAAsB,SAASI,IAAO,CAAC,GAAGhB,GAAqB,MAAMA,EAAU,GAAGgB,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQE,GAAYN,EAAsB,SAASI,IAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQU,GAAYP,EAAsB,SAASI,IAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQW,GAAYR,EAAsB,SAASI,IAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAEY,GAAmBnB,EAAY,CAAC,QAAQe,EAAc,CAAC,EAAE,IAAMK,EAAWC,EAAO,IAAI,EAAQC,GAAY,IAAQ,EAAC,YAAY,WAAW,EAAE,SAAStB,CAAW,EAAmCuB,GAAsBC,GAAM,EAAQC,GAAsB,CAAC,EAAQC,GAAkBC,GAAqB,EAAE,OAAoBzD,EAAK0D,GAAY,CAAC,GAAGjC,GAA4C4B,GAAgB,SAAsBrD,EAAKC,GAAS,CAAC,QAAQhB,EAAS,QAAQ,GAAM,SAAsBe,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBqE,EAAMlF,GAAgB,CAAC,GAAGoD,EAAU,GAAGI,EAAgB,kBAAkB,CAAC,WAAW5C,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAU,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAUwE,GAAG/E,GAAkB,GAAG0E,GAAsB,gBAAgB/B,EAAUO,CAAU,EAAE,mBAAmB,OAAO,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,MAAMI,GAAa,IAAIxB,GAA6B+B,EAAK,MAAM,CAAC,GAAG3B,CAAK,EAAE,GAAGxC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,gBAAgB,MAAMgE,EAAW,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,MAAMC,EAAW,EAAE,UAAU,CAAC,mBAAmB,SAAS,MAAMF,EAAW,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAS,CAAcyB,EAAMhF,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB4D,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAK6D,EAAS,CAAC,sBAAsB,GAAK,SAAsB7D,EAAWE,EAAS,CAAC,SAAsBF,EAAKrB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,gGAAgG,EAAE,SAAS,qCAAqC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mBAAmB,EAAE,iBAAiB4D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKb,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe1B,EAAKrB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB4D,EAAiB,SAAS,YAAY,MAAM,CAAC,OAAO,IAAI,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC,EAAE,SAAsBvC,EAAK8D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,OAAO,WAAW,iBAAiBvB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,2VAA2V,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEa,GAAY,GAAgBpD,EAAKrB,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB4D,EAAiB,SAAS,YAAY,SAAsBvC,EAAK6D,EAAS,CAAC,sBAAsB,GAAK,SAAsB7D,EAAWE,EAAS,CAAC,SAAsBF,EAAKrB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,mKAAoJ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,0BAA0B,EAAE,iBAAiB4D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKZ,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe3B,EAAKrB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,iBAAiB4D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sEAAsE,QAAQ,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQwB,GAAI,CAAC,kFAAkF,gFAAgF,iSAAiS,mQAAmQ,wMAAwM,yRAAyR,8FAA8F,2RAA2R,yLAAyL,+GAA+G,2xBAA2xB,yEAAyE,6GAA6G,2KAA2K,EAS/9VC,GAAgBC,GAAQhD,GAAU8C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,MAAMA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,OAAO,SAAS,gBAAgB,iBAAiB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,sCAAsC,gBAAgB,GAAK,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,oKAAqJ,gBAAgB,GAAK,MAAM,SAAS,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,SAAS,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,oBAAoB,OAAO,SAAS,MAAM,SAAS,IAAI,kHAAkH,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT54B,IAAMM,GAASC,GAASC,EAAG,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,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,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,WAAW,YAAY,UAAU,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,EAAMtB,IAAesB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAU0B,GAA6BC,GAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,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,EAAiBpB,GAAuBH,EAAMtB,CAAQ,EAAQ8C,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQZ,IAAc,YAA6Ca,EAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBxC,EAAKyC,GAAY,CAAC,GAAGpB,GAA4Ce,EAAgB,SAAsBpC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBoD,EAAMxC,EAAO,GAAG,CAAC,GAAGoB,EAAU,GAAGI,EAAgB,UAAUiB,GAAG5D,GAAkB,GAAGuD,EAAsB,gBAAgBlB,EAAUI,CAAU,EAAE,mBAAmB,aAAa,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6BkB,EAAK,MAAM,CAAC,GAAGd,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEsC,EAAYI,CAAc,EAAE,SAAS,CAAc3B,EAAK4C,EAA0B,CAAC,OAAO,IAAI,MAAmEL,GAAkB,OAAQ,QAAQ,GAAgEA,GAAkB,GAAI,GAAG,EAAE,EAAE,SAAsBvC,EAAKE,EAAO,GAAG,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKnB,GAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,oaAAoa,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,8CAA8C,MAAM,OAAO,GAAGI,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEsC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3B,EAAK4C,EAA0B,CAAC,OAAO,IAAI,MAAmEL,GAAkB,OAAQ,QAAQ,GAAgEA,GAAkB,GAAI,GAAG,EAAE,IAAI,SAAsBvC,EAAKE,EAAO,GAAG,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKnB,GAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,4TAA4T,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,wCAAwC,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemB,EAAK4C,EAA0B,CAAC,OAAO,IAAI,MAAmEL,GAAkB,OAAQ,QAAQ,GAAgEA,GAAkB,GAAI,GAAG,EAAE,IAAI,SAAsBvC,EAAKE,EAAO,GAAG,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKnB,GAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wOAAwO,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,8DAA8D,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemB,EAAK4C,EAA0B,CAAC,OAAO,IAAI,MAAmEL,GAAkB,OAAQ,QAAQ,GAAgEA,GAAkB,GAAI,GAAG,EAAE,IAAI,SAAsBvC,EAAKE,EAAO,GAAG,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKnB,GAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,gMAA2L,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,uEAAuE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsD,EAAY,GAAgBnC,EAAK4C,EAA0B,CAAC,OAAO,IAAI,MAAmEL,GAAkB,OAAQ,QAAQ,GAAgEA,GAAkB,GAAI,GAAG,EAAE,IAAI,SAAsBvC,EAAKE,EAAO,GAAG,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKnB,GAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,qNAAqN,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,+CAA+C,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsD,EAAY,GAAgBnC,EAAK4C,EAA0B,CAAC,OAAO,IAAI,MAAmEL,GAAkB,OAAQ,QAAQ,GAAgEA,GAAkB,GAAI,GAAG,EAAE,IAAI,SAAsBvC,EAAKE,EAAO,GAAG,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKnB,GAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,yJAAyJ,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,wDAAwD,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQgE,GAAI,CAAC,kFAAkF,kFAAkF,wSAAwS,kTAAkT,2WAA2W,+DAA+D,EAQr9SC,GAAgBC,GAAQlC,GAAUgC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,UAAUA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,aAAa,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGnE,EAAQ,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRsxC,IAAMyE,GAAkCC,GAA0BC,CAAQ,EAAQC,GAAWC,GAASC,EAAK,EAAQC,EAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAYL,GAASM,EAAM,EAAQC,GAAaP,GAASQ,EAAO,EAAQC,GAAiCZ,GAA0BO,EAAO,CAAC,EAAQM,GAAeV,GAASW,EAAS,EAAQC,GAAkBZ,GAASa,EAAY,EAAQC,GAAkBd,GAASe,EAAY,EAAQC,GAAahB,GAASiB,EAAO,EAAQC,GAAWlB,GAASmB,EAAK,EAAQC,GAA6BC,GAAwBF,EAAK,EAAQG,GAAgBnB,GAAOoB,EAAS,EAAQC,GAAY,CAAC,UAAU,sBAAsB,UAAU,6CAA6C,UAAU,oBAAoB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,GAAG,EAAQC,EAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,IAAUC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAmB,CAACH,EAAEC,IAAI,yBAAyBA,IAAUG,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,IAAI,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,GAAG,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,WAAWD,EAAY,EAAQE,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAa,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,WAAWL,EAAY,EAAQM,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAa,CAACD,EAAME,EAAQ,CAAC,EAAEC,IAAe,CAAC,GAAG,OAAOH,GAAQ,SAAS,MAAM,GAAG,IAAMI,EAAK,IAAI,KAAKJ,CAAK,EAAE,GAAG,MAAMI,EAAK,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAMC,EAAQH,EAAQ,QAAQA,EAAQ,QAAQ,OAAaI,EAAY,CAAC,UAAUD,IAAU,OAAOH,EAAQ,UAAU,OAAU,UAAUG,IAAU,OAAO,OAAU,QAAQ,SAAS,KAAK,EAAQE,EAAe,QAAcC,EAAON,EAAQ,QAAQC,GAAcI,EACjsK,GAAG,CAAC,OAAOH,EAAK,eAAeI,EAAOF,CAAW,CAAE,MAAC,CAAM,OAAOF,EAAK,eAAeG,EAAeD,CAAW,CAAE,CAAC,EAAQG,GAAU,CAAC,CAAC,MAAAC,EAAM,SAAAC,EAAS,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAKC,GAAaJ,CAAK,EAAE,OAAOE,EAASC,CAAI,CAAE,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAASA,GAAiB,EAAQC,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAA6BC,GAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAzB,EAAa,UAAA0B,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,EAAY,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,EAAY,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,EAAY,mBAAAC,EAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,GAAGC,EAAS,EAAEpC,GAASI,CAAK,EAAQiC,EAAU,IAAI,CAAC,IAAMC,EAAUxC,GAAiB,OAAUd,CAAY,EAAE,GAAGsD,EAAU,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAU,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAU,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,GAAI,EAAE,CAAC,OAAUvD,CAAY,CAAC,EAAQwD,GAAmB,IAAI,CAAC,IAAMF,EAAUxC,GAAiB,OAAUd,CAAY,EAAqC,GAAnC,SAAS,MAAMsD,EAAU,OAAO,GAAMA,EAAU,SAAS,CAAC,IAAIG,GAAyBA,EAAwB,SAAS,cAAc,uBAAuB,KAAK,MAAMA,IAA0B,QAAcA,EAAwB,aAAa,UAAUH,EAAU,QAAQ,EAAG,IAAMI,EAAQJ,EAAU,cAAc,GAAGI,EAAQ,CAAC,IAAMC,EAAK,SAAS,KAAKA,EAAK,UAAU,QAAQC,GAAGA,EAAE,WAAW,cAAc,GAAGD,EAAK,UAAU,OAAOC,CAAC,CAAC,EAAED,EAAK,UAAU,IAAI,GAAGL,EAAU,4BAA4B,EAAG,MAAM,IAAI,CAAII,GAAQ,SAAS,KAAK,UAAU,OAAO,GAAGJ,EAAU,4BAA4B,CAAE,CAAE,EAAE,CAAC,OAAUtD,CAAY,CAAC,EAAE,GAAK,CAAC6D,EAAYC,EAAmB,EAAEC,GAA8BhC,EAAQ/D,GAAY,EAAK,EAAQgG,GAAe,OAAgBC,GAAWC,EAAO,IAAI,EAAQC,GAAUC,GAAkB,WAAW,EAAQC,EAAWH,EAAO,IAAI,EAAQI,GAAWF,GAAkB,WAAW,EAAQG,GAAWL,EAAO,IAAI,EAAQM,GAAY,IAASvG,GAAU,EAAiB,EAAC,YAAY,WAAW,EAAE,SAAS4F,CAAW,EAAtD,GAAyFY,GAAa,IAAQ,CAACxG,GAAU,GAAiB4F,IAAc,YAA6Ca,GAAa,IAAQ,CAACzG,GAAU,GAAiB4F,IAAc,YAA6Cc,GAAWP,GAAkB,WAAW,EAAQQ,GAAWV,EAAO,IAAI,EAAQW,GAAWT,GAAkB,WAAW,EAAQU,GAAWZ,EAAO,IAAI,EAAQa,GAAWX,GAAkB,WAAW,EAAQY,GAAWd,EAAO,IAAI,EAAQe,GAAWb,GAAkB,WAAW,EAAQc,GAAWhB,EAAO,IAAI,EAAQiB,GAAWf,GAAkB,WAAW,EAAQgB,EAAWlB,EAAO,IAAI,EAAQmB,GAAiBC,GAAc,EAAQC,GAAWnB,GAAkB,WAAW,EAAQoB,GAAWC,GAAe,EAAQC,GAAWtB,GAAkB,WAAW,EAAQuB,GAAWzB,EAAO,IAAI,EAAQ0B,GAAsBC,GAAM,EAAQC,EAAsB,CAAajE,GAAuBA,GAAuBA,GAAuBA,EAAS,EAAE,OAAAkE,GAAiB,CAAC,CAAC,EAAsBC,EAAKC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAA9H,EAAiB,EAAE,SAAsB+H,EAAMC,GAAY,CAAC,GAAGrE,GAA4C8D,GAAgB,SAAS,CAAcM,EAAMtJ,EAAO,IAAI,CAAC,GAAGwG,GAAU,UAAUgD,GAAGlI,GAAkB,GAAG4H,EAAsB,gBAAgBjE,CAAS,EAAE,IAAIJ,GAA6BwC,GAAK,MAAM,CAAC,GAAGrC,CAAK,EAAE,SAAS,CAAcsE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,GAAG/B,GAAU,KAAK,cAAc,IAAIE,EAAK,SAAS,CAAc2B,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,KAAK,MAAM,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBmC,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,wBAAwB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK5J,GAAkC,CAAC,sBAAsB,GAAK,QAAQiC,GAAU,SAAsB2H,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,wBAAwB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,UAAU,MAAM,CAAC,kBAAkB,EAAE,QAAQ1H,GAAW,KAAK,UAAU,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0H,EAAK,MAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,EAAE,UAAU,gBAAgB,mBAAmB,KAAK,KAAK,KAAK,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKO,EAA0B,CAAC,SAAsBP,EAAKjI,GAAU,CAAC,UAAU,0BAA0B,SAAsBiI,EAAKvJ,GAAM,CAAC,OAAO,OAAO,KAAK;AAAA,k4NAAm/N,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyJ,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,GAAG5B,GAAW,KAAK,WAAW,IAAIC,GAAK,SAAS,CAAc2B,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,KAAK,aAAa,SAAS,CAAcF,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAsBE,EAAM,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,0HAA0H,EAAE,SAAS,CAAC,UAAuBF,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,qEAAqE,EAAE,SAAS,KAAK,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,KAAK,MAAM,SAAS,CAAcF,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBqC,EAAMxJ,EAAgB,CAAC,kBAAkB,CAAC,WAAW8B,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,KAAK,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc2H,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcF,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,qCAAqC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,SAAS,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,SAAS,SAAS,CAAcF,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,QAAQ2C,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,0FAA0F,OAAO,yKAAyK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,QAAQA,EAA0B,kBAAkB,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,0FAA0F,OAAO,yKAAyK,EAAE,kBAAkB,MAAS,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,QAAQD,EAA0B,kBAAkB,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,kFAAkF,IAAI,0FAA0F,OAAO,yKAAyK,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,WAAW,kBAAkB/H,EAAkB,CAAC,CAAC,CAAC,EAAeuH,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ2C,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,IAAI,IAAI,oEAAoE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQA,EAA0B,kBAAkB,EAAE,YAAY,KAAK,WAAW,IAAI,IAAI,oEAAoE,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQD,EAA0B,kBAAkB,EAAE,YAAY,KAAK,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeN,EAAM,SAAS,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,SAAS,SAAS,CAAcF,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,QAAQ2C,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,2FAA2F,OAAO,2KAA2K,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,QAAQA,EAA0B,kBAAkB,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,2FAA2F,OAAO,2KAA2K,EAAE,kBAAkB,MAAS,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,QAAQD,EAA0B,kBAAkB,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,kFAAkF,IAAI,2FAA2F,OAAO,2KAA2K,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,WAAW,MAAM,CAAC,qBAAqB,GAAG,EAAE,kBAAkB/H,EAAkB,CAAC,CAAC,CAAC,EAAeuH,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ2C,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,IAAI,IAAI,oEAAoE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQA,EAA0B,kBAAkB,EAAE,YAAY,KAAK,WAAW,IAAI,IAAI,oEAAoE,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQD,EAA0B,kBAAkB,EAAE,YAAY,KAAK,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeN,EAAM,SAAS,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,SAAS,SAAS,CAAcF,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,QAAQ2C,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,0FAA0F,OAAO,yKAAyK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,QAAQA,EAA0B,kBAAkB,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,0FAA0F,OAAO,yKAAyK,EAAE,kBAAkB,MAAS,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,QAAQD,EAA0B,kBAAkB,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,kFAAkF,IAAI,0FAA0F,OAAO,yKAAyK,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,WAAW,kBAAkB/H,EAAkB,CAAC,CAAC,CAAC,EAAeuH,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ2C,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,IAAI,IAAI,oEAAoE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQA,EAA0B,kBAAkB,EAAE,YAAY,KAAK,WAAW,IAAI,IAAI,oEAAoE,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQD,EAA0B,kBAAkB,EAAE,YAAY,KAAK,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeR,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBqC,EAAMxJ,EAAgB,CAAC,kBAAkB,CAAC,WAAWkC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBL,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,KAAK,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc2H,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcF,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBmC,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,2KAA2K,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,2KAA2K,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,2KAA2K,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uKAAuK,MAAM,CAAC,iBAAiB,EAAE,KAAK,uKAAuK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,IAAI,srCAAsrC,aAAa,UAAU,EAAE,UAAU,CAAC,IAAI,ysCAAysC,aAAa,UAAU,CAAC,EAAE,SAAsBmC,EAAKU,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,OAAO,WAAW,KAAK,UAAU,QAAQ,EAAE,IAAI,osCAAosC,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeV,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,IAAI,srCAAsrC,aAAa,UAAU,EAAE,UAAU,CAAC,IAAI,ysCAAysC,aAAa,UAAU,CAAC,EAAE,SAAsBmC,EAAKU,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,OAAO,WAAW,KAAK,UAAU,QAAQ,EAAE,IAAI,osCAAosC,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeV,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,IAAI,srCAAsrC,aAAa,UAAU,EAAE,UAAU,CAAC,IAAI,ysCAAysC,aAAa,UAAU,CAAC,EAAE,SAAsBmC,EAAKU,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,OAAO,WAAW,KAAK,UAAU,QAAQ,EAAE,IAAI,osCAAosC,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeV,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,IAAI,srCAAsrC,aAAa,UAAU,EAAE,UAAU,CAAC,IAAI,ysCAAysC,aAAa,UAAU,CAAC,EAAE,SAAsBmC,EAAKU,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,OAAO,WAAW,KAAK,UAAU,QAAQ,EAAE,IAAI,osCAAosC,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeV,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,IAAI,s5DAAs5D,aAAa,WAAW,EAAE,UAAU,CAAC,IAAI,u5DAAu5D,aAAa,WAAW,CAAC,EAAE,SAAsBmC,EAAKU,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,OAAO,WAAW,KAAK,UAAU,QAAQ,EAAE,IAAI,84DAA84D,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeR,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBqC,EAAMxJ,EAAgB,CAAC,kBAAkB,CAAC,WAAW8B,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,KAAK,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc2H,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcF,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,oCAAoC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ2C,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,oEAAoE,OAAO,8PAA8P,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,oEAAoE,OAAO,8PAA8P,EAAE,UAAU,iBAAiB,cAAc,EAAI,CAAC,CAAC,CAAC,EAAeR,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ2C,EAA0B,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,OAAO,IAAI,qEAAqE,OAAO,6VAA6V,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQD,EAA0B,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,OAAO,IAAI,qEAAqE,OAAO,6VAA6V,EAAE,UAAU,iBAAiB,cAAc,EAAI,CAAC,CAAC,CAAC,EAAeR,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ2C,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,sEAAsE,OAAO,iWAAiW,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,sEAAsE,OAAO,iWAAiW,EAAE,UAAU,gBAAgB,cAAc,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeN,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ2C,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,uEAAuE,OAAO,uQAAuQ,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,uEAAuE,OAAO,uQAAuQ,EAAE,UAAU,iBAAiB,cAAc,EAAI,CAAC,CAAC,CAAC,EAAeR,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,QAAQ2C,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,OAAO,IAAI,sEAAsE,OAAO,iWAAiW,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,QAAQD,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,OAAO,IAAI,sEAAsE,OAAO,iWAAiW,EAAE,UAAU,iBAAiB,cAAc,EAAI,CAAC,CAAC,CAAC,EAAeR,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,wBAAwB,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,kBAAkB,EAAE,kBAAkBnH,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAemH,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ2C,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,qEAAqE,OAAO,iQAAiQ,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,qEAAqE,OAAO,iQAAiQ,EAAE,UAAU,iBAAiB,cAAc,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeN,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ2C,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,uEAAuE,OAAO,qWAAqW,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,uEAAuE,OAAO,qWAAqW,EAAE,UAAU,iBAAiB,cAAc,EAAI,CAAC,CAAC,CAAC,EAAeR,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ2C,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,uEAAuE,OAAO,qWAAqW,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,uEAAuE,OAAO,qWAAqW,EAAE,UAAU,iBAAiB,cAAc,EAAI,CAAC,CAAC,CAAC,EAAeR,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ2C,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,uEAAuE,OAAO,uQAAuQ,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,uEAAuE,OAAO,uQAAuQ,EAAE,UAAU,iBAAiB,cAAc,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeR,EAAKU,EAAI,CAAC,UAAU,iBAAiB,OAAO,WAAW,QAAQ,EAAE,IAAI,+rCAA+rC,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBqC,EAAMxJ,EAAgB,CAAC,kBAAkB,CAAC,WAAWkC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBL,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,KAAK,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc2H,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcF,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,+BAA+B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAExB,GAAY,GAAgB0B,EAAMtJ,EAAO,OAAO,CAAC,UAAU,+CAA+C,mBAAmB,SAAS,KAAK,SAAS,MAAM,CAAC,OAAO,EAAE,EAAE,SAAS,CAAcoJ,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,mFAAmF,IAAI,uEAAuE,OAAO,yKAAyK,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,WAAW,kBAAkB/H,EAAkB,CAAC,EAAeuH,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQD,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE/B,GAAa,GAAgBuB,EAAK,MAAM,CAAC,UAAU,8CAA8C,SAAsBE,EAAMtJ,EAAO,OAAO,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,SAAS,MAAM,CAAC,OAAO,EAAE,EAAE,SAAS,CAAcoJ,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ2C,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,yKAAyK,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,yKAAyK,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,WAAW,kBAAkBhI,EAAkB,CAAC,CAAC,CAAC,EAAeuH,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ2C,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,IAAI,IAAI,oEAAoE,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE/B,GAAa,GAAgBsB,EAAK,MAAM,CAAC,UAAU,8CAA8C,SAAsBE,EAAMtJ,EAAO,OAAO,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,SAAS,MAAM,CAAC,OAAO,EAAE,EAAE,SAAS,CAAcoJ,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ2C,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,uEAAuE,OAAO,yKAAyK,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,uEAAuE,OAAO,yKAAyK,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,WAAW,kBAAkBhI,EAAkB,CAAC,CAAC,CAAC,EAAeuH,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ2C,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,IAAI,IAAI,oEAAoE,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeP,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBqC,EAAMxJ,EAAgB,CAAC,kBAAkB,CAAC,WAAWkC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBL,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,KAAK,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc2H,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcF,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,2CAA2C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAExB,GAAY,GAAgB0B,EAAMtJ,EAAO,OAAO,CAAC,UAAU,+CAA+C,mBAAmB,SAAS,KAAK,SAAS,MAAM,CAAC,OAAO,EAAE,EAAE,SAAS,CAAcoJ,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,mFAAmF,IAAI,sEAAsE,OAAO,0EAA0E,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,WAAW,kBAAkB/H,EAAkB,CAAC,EAAeuH,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQD,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE/B,GAAa,GAAgBuB,EAAK,MAAM,CAAC,UAAU,8CAA8C,SAAsBE,EAAMtJ,EAAO,OAAO,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,SAAS,MAAM,CAAC,OAAO,EAAE,EAAE,SAAS,CAAcoJ,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ2C,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,0EAA0E,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,0EAA0E,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,WAAW,kBAAkBhI,EAAkB,CAAC,CAAC,CAAC,EAAeuH,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ2C,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,IAAI,IAAI,oEAAoE,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE/B,GAAa,GAAgBsB,EAAK,MAAM,CAAC,UAAU,6CAA6C,SAAsBE,EAAMtJ,EAAO,OAAO,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,SAAS,MAAM,CAAC,OAAO,EAAE,EAAE,SAAS,CAAcoJ,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ2C,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,0EAA0E,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,0EAA0E,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,WAAW,kBAAkBhI,EAAkB,CAAC,CAAC,CAAC,EAAeuH,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ2C,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,IAAI,IAAI,oEAAoE,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeT,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBqC,EAAMxJ,EAAgB,CAAC,kBAAkB,CAAC,WAAW8B,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,KAAK,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc2H,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcF,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKU,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,OAAO,WAAW,KAAK,UAAU,QAAQ,EAAE,IAAI,moCAAmoC,aAAa,WAAW,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAKW,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,aAAa,GAAK,SAAsBX,EAAK,IAAI,CAAC,aAAa,SAAS,UAAU,+BAA+B,mBAAmB,SAAS,KAAK,SAAS,SAAsBA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,uEAAuE,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,uEAAuE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,4BAA4B,EAAE,KAAK,QAAQ,kBAAkBnH,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqH,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,SAAS,SAAS,CAAcF,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,KAAK,MAAM,SAAS,CAAcF,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBqC,EAAMxJ,EAAgB,CAAC,kBAAkB,CAAC,WAAW8B,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,KAAK,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcyH,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAsBA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKO,EAA0B,CAAC,SAAsBP,EAAKjI,GAAU,CAAC,UAAU,2BAA2B,SAAsBiI,EAAKvJ,GAAM,CAAC,OAAO,OAAO,KAAK;AAAA,oGAA+M,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuJ,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBqC,EAAMxJ,EAAgB,CAAC,kBAAkB,CAAC,WAAW8B,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,KAAK,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc2H,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcF,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAsBA,EAAK,SAAS,CAAC,SAAS,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,QAAQ,YAAY,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBJ,EAAM,KAAK,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,CAAC,wBAAqCF,EAAK,KAAK,CAAC,CAAC,EAAE,oCAAoC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,2KAA2K,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,uKAAuK,MAAM,CAAC,iBAAiB,EAAE,KAAK,uKAAuK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBmC,EAAKtJ,EAAgB,CAAC,kBAAkB,CAAC,WAAW8B,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,KAAK,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB2H,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKU,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,OAAO,WAAW,KAAK,UAAU,QAAQ,EAAE,IAAI,qxCAAqxC,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBqC,EAAMxJ,EAAgB,CAAC,kBAAkB,CAAC,WAAW8B,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,KAAK,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc2H,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcF,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,uDAAuD,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBmC,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,2KAA2K,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,2KAA2K,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uKAAuK,MAAM,CAAC,iBAAiB,EAAE,KAAK,uKAAuK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBqC,EAAMxJ,EAAgB,CAAC,kBAAkB,CAAC,WAAW8B,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,KAAK,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc2H,EAAM,MAAM,CAAC,UAAU,cAAc,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcF,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,+CAA+C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBmC,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,2KAA2K,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,2KAA2K,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,uKAAuK,MAAM,CAAC,iBAAiB,EAAE,KAAK,uKAAuK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKW,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,aAAa,GAAK,SAAsBX,EAAK,IAAI,CAAC,aAAa,SAAS,UAAU,gCAAgC,mBAAmB,SAAS,KAAK,SAAS,SAAsBA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,uEAAuE,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,uEAAuE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,4BAA4B,EAAE,KAAK,QAAQ,kBAAkBnH,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemH,EAAKW,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,aAAa,GAAK,SAAsBX,EAAK,IAAI,CAAC,aAAa,SAAS,UAAU,+BAA+B,mBAAmB,SAAS,KAAK,SAAS,SAAsBA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,uEAAuE,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,uEAAuE,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,4BAA4B,EAAE,KAAK,QAAQ,kBAAkBnH,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqH,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,SAAS,SAAS,CAAcF,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,KAAK,MAAM,SAAS,CAAcF,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBqC,EAAMxJ,EAAgB,CAAC,kBAAkB,CAAC,WAAW8B,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,KAAK,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcyH,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAsBA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKO,EAA0B,CAAC,SAAsBP,EAAKjI,GAAU,CAAC,UAAU,0BAA0B,SAAsBiI,EAAKvJ,GAAM,CAAC,OAAO,OAAO,KAAK;AAAA,oGAA+M,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuJ,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBmC,EAAKtJ,EAAgB,CAAC,kBAAkB,CAAC,WAAW8B,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,KAAK,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB2H,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,sCAAsC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKU,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,OAAO,WAAW,KAAK,UAAU,QAAQ,EAAE,IAAI,y7CAAy7C,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeR,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBmC,EAAKtJ,EAAgB,CAAC,kBAAkB,CAAC,WAAW8B,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,KAAK,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB2H,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,IAAI,owCAAowC,aAAa,UAAU,CAAC,EAAE,SAAsBmC,EAAKU,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,OAAO,WAAW,KAAK,UAAU,QAAQ,EAAE,IAAI,qxCAAqxC,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBmC,EAAKtJ,EAAgB,CAAC,kBAAkB,CAAC,WAAW8B,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,KAAK,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB2H,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKU,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,OAAO,WAAW,KAAK,UAAU,QAAQ,EAAE,IAAI,06BAA06B,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBqC,EAAMxJ,EAAgB,CAAC,kBAAkB,CAAC,WAAW8B,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,KAAK,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc2H,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcF,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,uDAAuD,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBmC,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,2KAA2K,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,2KAA2K,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,uKAAuK,MAAM,CAAC,iBAAiB,EAAE,KAAK,uKAAuK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKW,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,aAAa,GAAK,SAAsBX,EAAK,IAAI,CAAC,aAAa,SAAS,UAAU,gCAAgC,mBAAmB,SAAS,KAAK,SAAS,SAAsBA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,uEAAuE,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,uEAAuE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,mBAAmB,QAAQ,MAAM,CAAC,4BAA4B,EAAE,KAAK,QAAQ,kBAAkBnH,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqH,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,GAAGvB,GAAW,KAAK,eAAe,IAAIC,GAAK,SAAS,CAAcsB,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,KAAK,MAAM,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAcF,EAAKtJ,EAAgB,CAAC,kBAAkB,CAAC,WAAWqC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,MAAM,KAAK,MAAM,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,EAAeoH,EAAMxJ,EAAgB,CAAC,kBAAkB,CAAC,WAAWuC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,GAAG,IAAI4F,GAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcoB,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBmC,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,6OAA6O,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,6OAA6O,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uKAAuK,MAAM,CAAC,iBAAiB,EAAE,KAAK,uKAAuK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,KAAK,iBAAiB,SAAsBA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,MAAM,CAAC,OAAO,EAAE,KAAK,SAAS,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAcF,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAW9E,EAAW,CAAC,CAAC,EAAE,SAAsBiH,EAAKtJ,EAAgB,CAAC,kBAAkB,CAAC,WAAWwC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBJ,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,GAAG,IAAI8F,GAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,KAAK,MAAM,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAMxJ,EAAgB,CAAC,kBAAkB,CAAC,WAAWyC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBH,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,GAAG,IAAI4F,GAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcoB,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,wHAAwH,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uKAAuK,MAAM,CAAC,iBAAiB,EAAE,KAAK,uKAAuK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,mBAAmB,iBAAiB,KAAK,iBAAiB,SAAsBA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,MAAM,CAAC,OAAO,EAAE,KAAK,SAAS,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAcF,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAW9E,EAAW,CAAC,CAAC,EAAE,SAAsBiH,EAAKtJ,EAAgB,CAAC,kBAAkB,CAAC,WAAW0C,EAAW,EAAE,sBAAsB,GAAK,gBAAgBN,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,GAAG,IAAI8F,GAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,MAAM,KAAK,MAAM,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAMxJ,EAAgB,CAAC,kBAAkB,CAAC,WAAW2C,EAAW,EAAE,sBAAsB,GAAK,gBAAgBL,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,GAAG,IAAI4F,GAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcoB,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,yIAAyI,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uKAAuK,MAAM,CAAC,iBAAiB,EAAE,KAAK,uKAAuK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,KAAK,iBAAiB,SAAsBA,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,MAAM,CAAC,OAAO,EAAE,KAAK,SAAS,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKO,EAA0B,CAAC,SAAsBP,EAAKjI,GAAU,CAAC,UAAU,0BAA0B,GAAG8G,GAAW,IAAIC,GAAK,SAAsBkB,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,CAAC,WAAW,GAAK,UAAU,EAAK,CAAC,CAAC,EAAE,SAAsBmC,EAAKlJ,GAAO,CAAC,UAAU,SAAS,UAAU,QAAQ,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcoJ,EAAMtJ,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,cAAc,KAAK,cAAc,SAAS,CAAcoJ,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,iJAA4I,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeE,EAAMtJ,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAcoJ,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,qEAAqE,OAAO,iQAAiQ,EAAE,UAAU,gBAAgB,CAAC,EAAeT,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,2KAA2K,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAMtJ,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,cAAc,KAAK,cAAc,SAAS,CAAcoJ,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,6IAA8I,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeE,EAAMtJ,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAcoJ,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,qEAAqE,OAAO,qKAAqK,EAAE,UAAU,eAAe,CAAC,EAAeT,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,2KAA2K,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAMtJ,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,cAAc,KAAK,cAAc,SAAS,CAAcoJ,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,uLAAuL,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeE,EAAMtJ,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAcoJ,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,qEAAqE,OAAO,gQAAgQ,EAAE,UAAU,eAAe,CAAC,EAAeT,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,2KAA2K,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAMtJ,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,cAAc,KAAK,cAAc,SAAS,CAAcoJ,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB4J,EAAYI,EAAS,CAAC,SAAS,CAAcN,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,wHAAwH,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeE,EAAMtJ,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAcoJ,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,CAAC,EAAeT,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,2KAA2K,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,KAAK,aAAa,SAAS,CAAcF,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKO,EAA0B,CAAC,SAAsBP,EAAKjI,GAAU,CAAC,UAAU,0BAA0B,SAAsBiI,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU,MAAM,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAK,CAAC,CAAC,EAAE,SAAsBmC,EAAKlJ,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAK,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAckJ,EAAKW,EAAK,CAAC,KAAK,qCAAqC,OAAO,YAAY,aAAa,GAAK,SAAsBX,EAAKpJ,EAAO,EAAE,CAAC,UAAU,gCAAgC,cAAc,GAAK,mBAAmB,UAAU,KAAK,UAAU,SAAsBoJ,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeT,EAAKW,EAAK,CAAC,KAAK,yGAAyG,OAAO,YAAY,aAAa,GAAK,SAAsBX,EAAKpJ,EAAO,EAAE,CAAC,UAAU,gCAAgC,cAAc,GAAK,mBAAmB,YAAY,KAAK,YAAY,SAAsBoJ,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeT,EAAKW,EAAK,CAAC,KAAK,uCAAuC,OAAO,YAAY,SAAsBX,EAAKpJ,EAAO,EAAE,CAAC,UAAU,gCAAgC,cAAc,GAAK,mBAAmB,iBAAY,KAAK,iBAAY,SAAsBoJ,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeT,EAAKW,EAAK,CAAC,KAAK,6BAA6B,OAAO,YAAY,aAAa,GAAK,SAAsBX,EAAKpJ,EAAO,EAAE,CAAC,UAAU,+BAA+B,cAAc,GAAK,mBAAmB,WAAW,KAAK,WAAW,SAAsBoJ,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeT,EAAKW,EAAK,CAAC,KAAK,oJAAoJ,OAAO,YAAY,aAAa,GAAK,SAAsBX,EAAKpJ,EAAO,EAAE,CAAC,UAAU,+BAA+B,cAAc,GAAK,mBAAmB,cAAc,KAAK,cAAc,SAAsBoJ,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeP,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,GAAGnB,GAAW,KAAK,MAAM,IAAIC,GAAK,SAAS,CAAcgB,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,6KAA6K,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,qBAAqB,EAAE,iBAAiB,EAAE,UAAU,CAAC,MAAM,+CAA+C,EAAE,OAAO,CAAC,EAAE,SAAsBmC,EAAKO,EAA0B,CAAC,OAAO,IAAI,MAAM,gCAAgC,EAAE,kBAAkB,SAAsBP,EAAKjI,GAAU,CAAC,UAAU,0BAA0B,GAAGkH,GAAW,IAAIC,GAAK,SAAsBc,EAAKhJ,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegJ,EAAKW,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,aAAa,GAAK,SAAsBX,EAAK/I,GAAiC,CAAC,QAAQwC,GAAW,aAAa,SAAS,UAAU,gCAAgC,wBAAwB,UAAU,mBAAmB,SAAS,QAAQC,GAAW,KAAK,SAAS,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,WAAWH,GAAW,SAAsByG,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,uEAAuE,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,uEAAuE,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,4BAA4B,EAAE,KAAK,QAAQ,kBAAkBnH,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemH,EAAK,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,QAAQ,KAAK,OAAO,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,GAAGf,GAAW,KAAK,OAAO,IAAIC,EAAK,SAAS,CAAcY,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKO,EAA0B,CAAC,SAAsBP,EAAKjI,GAAU,CAAC,UAAU,2BAA2B,SAAsBiI,EAAK7I,GAAU,CAAC,UAAU,aAAa,aAAa,CAAC,UAAU,2BAA2B,SAAS,GAAG,aAAa,GAAG,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,GAAG,gBAAgB,IAAI,cAAc,YAAY,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAM,aAAa,EAAE,UAAU,OAAO,YAAY,GAAK,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,IAAI,WAAW,EAAE,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAK,EAAE,MAAM,CAAc6I,EAAKpJ,EAAO,IAAI,CAAC,aAAa,YAAY,UAAU,gBAAgB,mBAAmB,IAAI,KAAK,IAAI,SAAsBoJ,EAAKY,GAAmB,CAAC,SAAsBZ,EAAK1F,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKuG,GAAK,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACC,EAAWC,EAAeC,IAAwBhB,EAAKiB,GAAU,CAAC,SAASH,EAAW,IAAI,CAAC,CAAC,UAAY9E,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,GAAKC,CAAW,EAAE8E,KAAI,CAAClF,IAA0EA,EAAmB,IAAGG,IAA0EA,EAAmB,IAAG,IAAMgF,GAAYrH,GAAaoC,EAAmB,CAAC,UAAU,SAAS,OAAO,EAAE,EAAEmD,EAAgB,EAAE,OAAoBW,EAAKG,GAAY,CAAC,GAAG,aAAa/D,IAAc,SAAsB4D,EAAKoB,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUpF,CAAkB,EAAE,SAAsBgE,EAAKW,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU3E,CAAkB,EAAE,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,SAAsBkE,EAAMtJ,EAAO,EAAE,CAAC,UAAU,+BAA+B,WAAW+C,GAAW,SAAS,CAAcqG,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAG7G,GAAkBqC,CAAkB,CAAC,EAAE,UAAU,gBAAgB,CAAC,EAAeiE,EAAMtJ,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcoJ,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,0BAA0B,EAAE,KAAK,OAAO,KAAKmB,GAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAenB,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,2KAA2K,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,mBAAmB,EAAE,KAAK,QAAQ,KAAK7D,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEC,CAAW,CAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4D,EAAKpJ,EAAO,IAAI,CAAC,aAAa,YAAY,UAAU,gBAAgB,mBAAmB,IAAI,KAAK,IAAI,SAAsBoJ,EAAKY,GAAmB,CAAC,SAAsBZ,EAAK1F,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKuG,GAAK,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACQ,EAAYC,EAAgBC,IAAyBvB,EAAKiB,GAAU,CAAC,SAASI,EAAY,IAAI,CAAC,CAAC,UAAYhF,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,GAAKC,CAAW,EAAEyE,KAAI,CAAC7E,IAA0EA,EAAmB,IAAGG,IAA0EA,EAAmB,IAAG,IAAMgF,GAAa1H,GAAayC,EAAmB,CAAC,UAAU,SAAS,OAAO,EAAE,EAAE8C,EAAgB,EAAE,OAAoBW,EAAKG,GAAY,CAAC,GAAG,aAAa1D,IAAc,SAAsBuD,EAAKoB,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAU/E,CAAkB,EAAE,SAAsB2D,EAAKW,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUtE,CAAkB,EAAE,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,SAAsB6D,EAAMtJ,EAAO,EAAE,CAAC,UAAU,gCAAgC,WAAW+C,GAAW,SAAS,CAAcqG,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAG7G,GAAkB0C,CAAkB,CAAC,EAAE,UAAU,iBAAiB,GAAG,GAAGD,KAAsBkD,KAAa,IAAIC,GAAW,GAAGnD,KAAsBkD,IAAY,CAAC,CAAC,EAAeW,EAAMtJ,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcoJ,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,0BAA0B,EAAE,KAAK,OAAO,KAAKwB,GAAa,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAexB,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,2KAA2K,EAAE,SAAS,yDAAyD,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,mBAAmB,EAAE,KAAK,QAAQ,KAAKxD,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEC,CAAW,CAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuD,EAAKpJ,EAAO,IAAI,CAAC,aAAa,YAAY,UAAU,gBAAgB,mBAAmB,IAAI,KAAK,IAAI,SAAsBoJ,EAAKY,GAAmB,CAAC,SAAsBZ,EAAK1F,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKuG,GAAK,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACY,EAAYC,EAAgBC,IAAyB3B,EAAKiB,GAAU,CAAC,SAASQ,EAAY,IAAI,CAAC,CAAC,UAAY/E,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,GAAKC,CAAW,EAAEoE,KAAI,CAACxE,IAA0EA,EAAmB,IAAGG,IAA0EA,EAAmB,IAAG,IAAM+E,GAAa9H,GAAa8C,EAAmB,CAAC,UAAU,SAAS,OAAO,EAAE,EAAEyC,EAAgB,EAAE,OAAoBW,EAAKG,GAAY,CAAC,GAAG,aAAarD,IAAc,SAAsBkD,EAAKoB,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAU1E,CAAkB,EAAE,SAAsBsD,EAAKW,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUjE,CAAkB,EAAE,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,SAAsBwD,EAAMtJ,EAAO,EAAE,CAAC,UAAU,gCAAgC,WAAW+C,GAAW,SAAS,CAAcqG,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAG7G,GAAkB+C,CAAkB,CAAC,EAAE,UAAU,eAAe,CAAC,EAAeuD,EAAMtJ,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcoJ,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,0BAA0B,EAAE,KAAK,OAAO,KAAK4B,GAAa,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe5B,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,2KAA2K,EAAE,SAAS,qGAAqG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,mBAAmB,EAAE,KAAK,QAAQ,KAAKnD,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEC,CAAW,CAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekD,EAAKpJ,EAAO,IAAI,CAAC,aAAa,YAAY,UAAU,iBAAiB,mBAAmB,IAAI,KAAK,IAAI,SAAsBoJ,EAAKY,GAAmB,CAAC,SAAsBZ,EAAK1F,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKuG,GAAK,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACgB,EAAYC,EAAgBC,IAAyB/B,EAAKiB,GAAU,CAAC,SAASY,EAAY,IAAI,CAAC,CAAC,UAAY9E,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,GAAKC,CAAW,EAAE+D,KAAI,CAACnE,IAA0EA,EAAmB,IAAGG,IAA0EA,EAAmB,IAAG,IAAM8E,GAAalI,GAAamD,EAAmB,CAAC,UAAU,SAAS,OAAO,EAAE,EAAEoC,EAAgB,EAAE,OAAoBW,EAAKG,GAAY,CAAC,GAAG,aAAahD,IAAc,SAAsB6C,EAAKoB,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUrE,CAAkB,EAAE,SAAsBiD,EAAKW,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU5D,CAAkB,EAAE,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,SAAsBmD,EAAMtJ,EAAO,EAAE,CAAC,UAAU,+BAA+B,WAAW+C,GAAW,SAAS,CAAcqG,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAG7G,GAAkBoD,CAAkB,CAAC,EAAE,UAAU,gBAAgB,CAAC,EAAekD,EAAMtJ,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcoJ,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,0BAA0B,EAAE,KAAK,OAAO,KAAKgC,GAAa,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,2KAA2K,EAAE,SAAS,6DAA6D,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,mBAAmB,EAAE,KAAK,QAAQ,KAAK9C,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEC,CAAW,CAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6C,EAAKW,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,aAAa,GAAK,SAAsBX,EAAK/I,GAAiC,CAAC,QAAQwC,GAAW,aAAa,SAAS,UAAU,+BAA+B,wBAAwB,SAAS,mBAAmB,SAAS,QAAQC,GAAW,KAAK,SAAS,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,WAAWH,GAAW,SAAsByG,EAAK1J,EAAS,CAAC,sBAAsB,GAAK,SAAsB0J,EAAWM,EAAS,CAAC,SAAsBN,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,uEAAuE,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,uEAAuE,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,4BAA4B,EAAE,KAAK,QAAQ,kBAAkBnH,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemH,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,GAAGN,GAAW,KAAK,WAAW,IAAIC,GAAK,SAAsBK,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,+DAA+D,EAAE,MAAM,EAAE,UAAU,CAAC,MAAM,+EAA+E,EAAE,OAAO,CAAC,EAAE,SAAsBmC,EAAKO,EAA0B,CAAC,OAAO,IAAI,MAAM,+EAA+E,EAAE,OAAO,SAAsBP,EAAKjI,GAAU,CAAC,UAAU,2BAA2B,SAAsBiI,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBmC,EAAK3I,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2I,EAAKO,EAA0B,CAAC,SAAsBP,EAAKjI,GAAU,CAAC,UAAU,0BAA0B,SAAsBiI,EAAKzI,GAAa,CAAC,OAAO,CAAC,UAAU,CAAC,MAAM,EAAE,WAAW,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,eAAe,EAAE,MAAM,GAAG,YAAY,GAAG,UAAU,GAAG,aAAa,GAAM,WAAW,GAAG,SAAS,GAAG,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,SAAS,eAAe,MAAM,CAAC,SAAS,qBAAqB,OAAO,CAAC,MAAM,sBAAsB,OAAO,GAAG,MAAM,CAAC,EAAE,UAAU,kBAAkB,WAAW,oEAAoE,KAAK,qBAAqB,SAAS,CAAC,EAAE,UAAU,CAAC,EAAE,KAAK,oBAAoB,EAAE,MAAM,IAAI,OAAO,EAAE,EAAE,OAAO,CAAC,aAAa,EAAE,UAAU,MAAM,MAAM,GAAK,KAAK,CAAC,EAAE,aAAa,GAAG,OAAO,CAAC,OAAO,SAAS,UAAU,aAAa,QAAQ,OAAO,UAAU,YAAY,OAAO,SAAS,UAAU,aAAa,KAAK,kBAAkB,EAAE,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,QAAQ,CAAC,MAAM,qBAAqB,KAAK,qEAAqE,EAAE,UAAU,CAAC,MAAM,kBAAkB,KAAK,oBAAoB,EAAE,WAAW,EAAE,EAAE,QAAQ,CAAC,WAAW,GAAM,WAAW,CAAC,UAAU,GAAM,UAAU,GAAM,UAAU,GAAK,YAAY,EAAK,EAAE,cAAc,oGAAoG,SAAS,CAAC,MAAM,gBAAgB,KAAK,uCAAuC,OAAO,UAAU,EAAE,aAAa,GAAM,QAAQ,kBAAkB,OAAO,WAAW,KAAK,GAAM,cAAc,GAAM,cAAc,CAAC,UAAU,GAAK,UAAU,GAAK,UAAU,GAAK,YAAY,EAAI,EAAE,iBAAiB,uEAAuE,YAAY,CAAC,MAAM,gBAAgB,KAAK,wCAAwC,OAAO,UAAU,EAAE,gBAAgB,GAAM,WAAW,kBAAkB,UAAU,UAAU,EAAE,MAAM,eAAe,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,CAAC,UAAU,CAAC,YAAY,mCAAmC,MAAM,WAAW,EAAE,UAAU,CAAC,YAAY,4CAA4C,MAAM,WAAW,EAAE,UAAU,CAAC,YAAY,4CAA4C,SAAS,GAAK,MAAM,WAAW,EAAE,YAAY,CAAC,YAAY,6CAA6C,MAAM,aAAa,EAAE,QAAQ,GAAM,MAAM,CAAC,WAAW,sBAAsB,OAAO,CAAC,MAAM,sBAAsB,OAAO,EAAE,MAAM,CAAC,EAAE,SAAS,CAAC,EAAE,UAAU,CAAC,EAAE,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,YAAY,eAAe,oBAAoB,oBAAoB,CAAC,EAAE,QAAQ,GAAM,QAAQ,CAAC,MAAM,kBAAkB,SAAS,GAAG,SAAS,UAAU,KAAK,kBAAkB,SAAS,CAAC,EAAE,KAAK,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyI,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,OAAO,CAAC,EAAE,SAAsBmC,EAAKO,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,QAAQ,SAAsBP,EAAKjI,GAAU,CAAC,UAAU,2BAA2B,SAAsBiI,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBmC,EAAKvI,GAAQ,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,EAAeuI,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,oBAAoB,CAAC,EAAE,SAAsBmC,EAAKO,EAA0B,CAAC,OAAO,GAAG,EAAE,GAAG,SAAsBP,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,EAAE,kBAAkB,MAAS,CAAC,EAAE,SAAsBmC,EAAKlI,GAAgB,CAAC,kBAAkB,CAAC,WAAW+C,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,aAAa,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkBnC,GAAmB,SAAsBuH,EAAKK,EAAkB,CAAC,WAAWxC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,CAAC,OAAO,GAAG,IAAIQ,EAAK,OAAO,WAAW,EAAE,CAAC,OAAO,GAAG,IAAIE,GAAK,OAAO,WAAW,EAAE,CAAC,OAAO,GAAG,IAAIK,GAAK,OAAO,WAAW,EAAE,CAAC,OAAO,GAAG,IAAII,GAAK,OAAO,WAAW,EAAE,CAAC,OAAO,GAAG,IAAIW,GAAK,OAAO,WAAW,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,qCAAqC,OAAU,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsBK,EAAKpI,GAA6B,CAAC,sBAAsB,GAAM,kBAAkB,CAAC,CAAC,OAAO,GAAG,IAAIyG,EAAK,OAAO,WAAW,EAAE,CAAC,OAAO,GAAG,IAAIE,GAAK,OAAO,WAAW,EAAE,CAAC,OAAO,GAAG,IAAIK,GAAK,OAAO,WAAW,EAAE,CAAC,OAAO,GAAG,IAAII,GAAK,OAAO,WAAW,EAAE,CAAC,OAAO,GAAG,IAAII,EAAK,OAAO,WAAW,EAAE,CAAC,OAAO,GAAG,IAAIO,GAAK,OAAO,WAAW,CAAC,EAAE,oBAAoB,GAAG,qCAAqC,GAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeK,EAAK,MAAM,CAAC,UAAUI,GAAGlI,GAAkB,GAAG4H,CAAqB,EAAE,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmC,GAAI,CAAC,kFAAkF,IAAInH,GAAS,yIAAyI,kFAAkF,sVAAsV,yTAAyT,gUAAgU,oSAAoS,gRAAgR,sMAAsM,waAAwa,icAAic,qUAAqU,qOAAqO,6UAA6U,4TAA4T,yYAAyY,sYAAsY,+uBAA+uB,yiBAAyiB,+tCAA+tC,qYAAqY,8PAA8P,6aAA6a,gRAAgR,wuBAAwuB,wRAAwR,4mBAA4mB,+QAA+Q,0NAA0N,gvBAAgvB,0aAA0a,yjBAAyjB,wlBAAwlB,wjBAAwjB,yjBAAyjB,unBAAunB,0bAA0b,oPAAoP,yjBAAyjB,+FAA+F,4uBAA4uB,wTAAwT,oJAAoJ,6YAA6Y,kPAAkP,oYAAoY,kLAAkL,yUAAyU,8SAA8S,oHAAoH,4uBAA4uB,+uBAA+uB,2XAA2X,iGAAiG,8fAA8f,6aAA6a,qRAAqR,6wBAA6wB,meAAme,+LAA+L,+wBAA+wB,kSAAkS,y4BAAy4B,yWAAyW,+HAA+H,+QAA+Q,gSAAgS,8HAA8H,6UAA6U,4RAA4R,mRAAmR,uVAAuV,qIAAqI,iWAAiW,yUAAyU,mOAAmO,kZAAkZ,yGAAyG,yvBAAyvB,4WAA4W,mcAAmc,yRAAyR,yGAAyG,6yBAA6yB,yKAAyK,+JAA+J,yKAAyK,0KAA0K,0KAA0K,2UAA2U,uGAAuG,qbAAqb,2rBAA2rB,mVAAmV,gPAAgP,0GAA0G,sVAAsV,iXAAiX,0YAA0Y,yYAAyY,0TAA0T,2HAA2H,wGAAwG,qHAAqH,qKAAqK,61kBAA61kB,wDAAwDA,GAAS,m2GAAm2G,gCAAgCA,GAAS,ivTAAivT,GAAemH,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,+bAA+b,EASt0lOC,GAAgBC,GAAQ5G,GAAU0G,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,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,sBAAsB,OAAO,SAAS,MAAM,SAAS,IAAI,uHAAuH,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,oBAAoB,OAAO,SAAS,MAAM,SAAS,IAAI,kHAAkH,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG3L,GAAW,GAAGM,GAAY,GAAGE,GAAa,GAAGG,GAAe,GAAGE,GAAkB,GAAGE,GAAkB,GAAGE,GAAa,GAAGE,GAAW,GAAG4K,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAChuJ,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,uBAAyB,GAAG,6BAA+B,OAAO,oCAAsC,4JAA0L,yBAA2B,QAAQ,sBAAwB,IAAI,sBAAwB,SAAS,yBAA2B,OAAO,qBAAuB,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", "DEFAULT_DOMAIN", "DEFAULT_SCRIPT_NAME", "getDataLayerSnippet", "dataLayer", "dataLayerName", "getGTMScript", "id", "environment", "customDomain", "customScriptName", "params", "gtm_auth", "gtm_preview", "setupGTM", "dataLayerScript", "script", "initGTM", "nonce", "gtm", "sendToGTM", "isBrowser", "window", "DEFAULT_FONT_FAMILY", "getFlexboxValues", "position", "positionParts", "justifyContent", "alignItems", "getMultipleShadows", "shadows", "output", "shadow", "getShadow", "safeJSONParse", "jsonString", "onError", "yieldToMain", "options", "window", "resolve", "yieldBeforeCb", "fn", "interactionResponse", "toGTMConsent", "consent", "reducer", "state", "action", "initialState", "defaultConsent", "hasInitializedGTM", "useConsent", "gtmId", "gtmLoadedExternally", "dispatch", "le", "isOnFramerCanvas", "useIsOnFramerCanvas", "consentModeLocalStorageKey", "dismissedLocalStorageKey", "autoAcceptedLocalStorageKey", "getStateFromLocalStorage", "consentFromLocalStorage", "dismissedFromLocalStorage", "autoAcceptedFromLocalStorage", "isDismissed", "isAutoAccepted", "safeJSONParse", "syncToGTM", "sendToGTM", "initGTM", "window", "ue", "yieldBeforeCb", "isBrowser", "dismiss", "autoAccept", "acceptAll", "rejectAll", "acceptCurrent", "toggleMode", "mode", "countries", "isInEUTimezone", "_Intl_DateTimeFormat_resolvedOptions_timeZone", "_Intl_DateTimeFormat_resolvedOptions", "_Intl_DateTimeFormat", "_Intl", "isEULocale", "_navigator_languages", "_navigator_language", "locale", "navigator", "country", "_locale_toUpperCase", "_inEU", "inEU", "useRegion", "content", "useRegionFromProps", "regionBasedOnLocation", "isBrowser", "inEU", "regionFromProps", "SPACING", "Toggle", "K", "Banner", "withCSS", "banner", "button", "region", "options", "previewOptions", "consentModes", "onDismiss", "onAcceptAll", "onRejectAll", "onAcceptCurrent", "onToggleConsent", "animateOnMount", "_banner_style_border", "maxHeightReduction", "linkColor", "paddingValue", "bannerShadow", "getShadow", "borderShadow", "bannerStyle", "getMultipleShadows", "p", "motion", "DEFAULT_FONT_FAMILY", "SimpleBanner", "AcceptRejectBanner", "OptionsBanner", "description", "policy", "padding", "u", "Description", "Button", "title", "onAccept", "onReject", "Headline", "Buttons", "showReject", "consent", "onOptionToggle", "showOptions", "setShowOptions", "ye", "optionTheme", "optionNames", "shouldShowOptions", "AnimatePresence", "option", "Option", "l", "titleColor", "descriptionColor", "showDescription", "enabled", "optional", "onClick", "theme", "L", "children", "style", "DescriptionParagraph", "descriptionParagraphs", "line", "index", "direction", "id", "primary", "settings", "_settings_hoverOpacity", "_settings_tapOpacity", "initiallyOpen", "CookieBanner", "gtmId", "preview", "trigger", "banner", "button", "content", "options", "style", "gtmLoadedExternally", "onShown", "onConsentChange", "onAccept", "onDismiss", "onReject", "onSavePreferences", "isOnFramerCanvas", "useIsOnFramerCanvas", "isPreview", "isInEU", "isBrowser", "inEU", "region", "useRegion", "consent", "useConsent", "isOpen", "setIsOpen", "ye", "instantlyShowOnMount", "setInstantlyShowOnMount", "ue", "yieldBeforeCb", "noConsentGiven", "shouldAutoAccept", "handleDismiss", "interactionResponse", "handleAcceptAll", "handleRejectAll", "handleAcceptCurrent", "p", "Banner", "defaultConsent", "u", "l", "Trigger", "Overlay", "IconCookie", "K", "props", "_props_banner_style", "insetValue", "justifyContent", "alignItems", "getFlexboxValues", "shouldRenderPortal", "setShouldRenderPortal", "blocking", "Ga", "AnimatePresence", "motion", "Backdrop", "withCSS", "onClick", "L", "DEFAULT_FONT_FAMILY", "color", "addPropertyControls", "ControlType", "_", "Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "answer", "appear", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vd59XDbg4", "m1wBZJAoM", "ZoLXowkuc", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap126kmcm", "args", "onAppearj4m4m4", "onTapmregd2", "onTapkpky4y", "onTap1rwz4b", "useOnVariantChange", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "SVG", "css", "FramerBysPvqQr7", "withCSS", "BysPvqQr7_default", "addPropertyControls", "ControlType", "addFonts", "FAQFonts", "getFonts", "BysPvqQr7_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", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerHI4S0BWx7", "withCSS", "HI4S0BWx7_default", "addPropertyControls", "ControlType", "addFonts", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "EmbedFonts", "getFonts", "Embed", "MotionDivWithFX", "withFX", "motion", "TickerFonts", "Ticker", "FAQListFonts", "HI4S0BWx7_default", "MotionAWithOptimizedAppearEffect", "SlideshowFonts", "Slideshow", "DownloadApp3Fonts", "tHSi2q0pl_default", "CookieBannerFonts", "CookieBanner", "Footer2Fonts", "U1NewzAVW_default", "Menu2Fonts", "EoC2QtFD4_default", "Menu2WithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithFX", "Container", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "transformTemplate1", "_", "t", "transition3", "transformTemplate2", "animation3", "transition4", "animation4", "transition5", "transition6", "transition7", "transition8", "transition9", "transition10", "animation5", "transition11", "animation6", "animation7", "animation8", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation9", "transition12", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "R9NVJt3a2cf9vCp9eP", "u1F11fZ8ycf9vCp9eP", "KbwV4kuCzcf9vCp9eP", "YahGhj3vgcf9vCp9eP", "idcf9vCp9eP", "R9NVJt3a2l9HDkaxlu", "u1F11fZ8yl9HDkaxlu", "KbwV4kuCzl9HDkaxlu", "YahGhj3vgl9HDkaxlu", "idl9HDkaxlu", "R9NVJt3a2G88WdLJD2", "u1F11fZ8yG88WdLJD2", "KbwV4kuCzG88WdLJD2", "YahGhj3vgG88WdLJD2", "idG88WdLJD2", "R9NVJt3a2h35NIUodz", "u1F11fZ8yh35NIUodz", "KbwV4kuCzh35NIUodz", "YahGhj3vgh35NIUodz", "idh35NIUodz", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "isDisplayed", "isDisplayed1", "isDisplayed2", "elementId2", "ref4", "elementId3", "ref5", "elementId4", "ref6", "elementId5", "ref7", "elementId6", "ref8", "activeLocaleCode", "useLocaleCode", "elementId7", "dynamicRef", "useDynamicRefs", "elementId8", "ref9", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "PropertyOverrides2", "x", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "Image2", "SVG", "Link", "ChildrenCanSuspend", "vZPFgnvvs_default", "collection", "paginationInfo", "loadMore", "l", "i", "textContent", "PathVariablesContext", "collection1", "paginationInfo1", "loadMore1", "textContent1", "collection2", "paginationInfo2", "loadMore2", "textContent2", "collection3", "paginationInfo3", "loadMore3", "textContent3", "css", "FramerMo1ryl8_D", "withCSS", "Mo1ryl8_D_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
