{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/P3S2M04Yg53AO5F51mO2/pzJl44uxe09OYFf1Kkst/MagneticHover_Prod.js", "ssg:https://framerusercontent.com/modules/nzTgwARwDgrTvygRD7jx/BYvaey9VWB2TA6PHFvgs/KUqCMCA44-0.js", "ssg:https://framerusercontent.com/modules/nzTgwARwDgrTvygRD7jx/BYvaey9VWB2TA6PHFvgs/KUqCMCA44.js", "ssg:https://framerusercontent.com/modules/Dv5OqjKVF9YJADYRIBOl/15q7K8tdIYfROrah2AJU/KUqCMCA44.js", "ssg:https://framerusercontent.com/modules/Eh5CulgL0Bo3QRra8SMe/vJWjuCsyx59cobIgInuY/UBAE0EXmZ.js", "ssg:https://framerusercontent.com/modules/ZtJxdzmwZJS0mXPOolSI/9r06p6HKWTvomx7EjBO7/KLlg7M9fp.js", "ssg:https://framerusercontent.com/modules/KM9DtjQrRTzgyfIqbgN4/AWa7zJNLAY3GIuWJ5Wvf/nJLesFJUY.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useEffect,useRef,useMemo}from\"react\";import{useMotionValue,useSpring,motion}from\"framer-motion\";/**\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n *\n * @framerDisableUnlink\n */export default function MagneticHover(props){const{distance,smoothing,hoverArea,enabled}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const id=generateInstanceId();const transition={damping:100,stiffness:mapRange(smoothing,0,100,2e3,50)};const mouseX=useMotionValue(0);const mouseY=useMotionValue(0);const x=useMotionValue(0);const y=useMotionValue(0);const springX=useSpring(x,transition);const springY=useSpring(y,transition);const scale=useMotionValue(1);const springScale=useSpring(scale,transition);const ref=useRef(null);const containerRef=useRef(null);const parentRef=useRef(null);const isHoveringRef=useRef(false);const transformRef=useRef(null);const motionTransformRef=useRef(null);const styleRef=useRef(null);const hasSpringRef=useRef(smoothing!==0);const previousXRef=useRef(null);const previousYRef=useRef(null);const previousChildrenXRef=useRef(null);const previousChildrenYRef=useRef(null);const previousChildrenScaleRef=useRef(null);const previousStyleTransformRef=useRef(null);const previousChildrenStyleTransformsRef=useRef({});useEffect(()=>{const unsubscribeX=mouseX.onChange(v=>x.set(enabled?v:0));const unsubscribeY=mouseY.onChange(v=>y.set(enabled?v:0));return()=>{unsubscribeX();unsubscribeY();};},[enabled,mouseX,mouseY,x,y]);useEffect(()=>{x.set(enabled?mouseX.get():0);y.set(enabled?mouseY.get():0);if(!enabled){scale.set(1);}else if(isHoveringRef.current&&props.children){scale.set(props.children.scale);}},[enabled]);useEffect(()=>{hasSpringRef.current=smoothing!==0;},[smoothing]);useEffect(()=>{let animationFrameId;const updateTransform=()=>{if(isCanvas){return;}animationFrameId=requestAnimationFrame(updateTransform);if(!parentRef.current||!styleRef.current){return;}const xValue=hasSpringRef.current?springX.get():x.get();const yValue=hasSpringRef.current?springY.get():y.get();const computedStyle=window.getComputedStyle(parentRef.current);const parentTransform=calculateTransform(parentRef.current,computedStyle,xValue*distance,yValue*distance,1,previousXRef.current*distance,previousYRef.current*distance,1,previousStyleTransformRef.current);// Store parent's style transform\npreviousStyleTransformRef.current=parentRef.current.style.transform;// Handle children transforms\nlet childrenStyles=\"\";if(props.children){const children=parentRef.current.children;const scaleValue=hasSpringRef.current?springScale.get():scale.get();const childrenXValue=xValue*props.children.distance;const childrenYValue=yValue*props.children.distance;for(let i=0;i<children.length;i++){const child=children[i];if(child===containerRef.current){continue;}const childComputedStyle=window.getComputedStyle(child);const childTransform=calculateTransform(child,childComputedStyle,childrenXValue,childrenYValue,scaleValue,previousChildrenXRef.current,previousChildrenYRef.current,previousChildrenScaleRef.current,previousChildrenStyleTransformsRef.current[i]);// Store child's style transform\npreviousChildrenStyleTransformsRef.current[i]=child.style.transform;childrenStyles+=`\n\t\t\t\t\t\t[data-magnetichover=\"${id}\"] > :nth-child(${i+1}) { \n\t\t\t\t\t\t\ttransform: ${childTransform} !important \n\t\t\t\t\t\t}\n\t\t\t\t\t`;}previousChildrenXRef.current=childrenXValue;previousChildrenYRef.current=childrenYValue;previousChildrenScaleRef.current=scaleValue;}transformRef.current=parentTransform;styleRef.current.textContent=`\n\t\t\t\t[data-magnetichover=\"${id}\"] { transform: ${parentTransform} !important }\n\t\t\t\t${childrenStyles}\n\t\t\t`;previousXRef.current=xValue;previousYRef.current=yValue;};if(ref.current){const container=ref.current.parentElement;if(container){containerRef.current=container;const parent=container.parentElement;if(parent){parentRef.current=parent;parent.setAttribute(\"data-magnetichover\",id);motionTransformRef.current=motion(parent,\"transform\");}}}// Start the animation loop\nupdateTransform();// Cleanup function\nreturn()=>{if(animationFrameId){cancelAnimationFrame(animationFrameId);}};},[props.children]);useEffect(()=>{const handleMouseMove=event=>{if(!parentRef.current){return;}const element=parentRef.current;const rect=element.getBoundingClientRect();const mouseXPos=event.clientX;const mouseYPos=event.clientY;const isHovering=mouseXPos>=rect.left-hoverArea&&mouseXPos<=rect.right+hoverArea&&mouseYPos>=rect.top-hoverArea&&mouseYPos<=rect.bottom+hoverArea;isHoveringRef.current=isHovering;if(isHovering){const displacementX=mouseXPos-(rect.left+rect.width/2);const displacementY=mouseYPos-(rect.top+rect.height/2);const normalizedX=displacementX/(rect.width/2);const normalizedY=displacementY/(rect.height/2);mouseX.set(normalizedX);mouseY.set(normalizedY);scale.set(enabled&&props.children?props.children.scale:1);}else{mouseX.set(0);mouseY.set(0);scale.set(1);}};window.addEventListener(\"mousemove\",handleMouseMove);return()=>window.removeEventListener(\"mousemove\",handleMouseMove);},[distance,x,y,transition,enabled,props.children]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...props.style},children:/*#__PURE__*/_jsx(\"style\",{ref:styleRef})});}MagneticHover.displayName=\"Magnetic Hover\";addPropertyControls(MagneticHover,{enabled:{type:ControlType.Boolean,defaultValue:true},distance:{type:ControlType.Number,defaultValue:10,min:0,step:1,hidden:props=>!props.enabled},hoverArea:{type:ControlType.Number,defaultValue:10,min:0,step:1,hidden:props=>!props.enabled},children:{type:ControlType.Object,optional:true,controls:{distance:{type:ControlType.Number,defaultValue:10,min:0,step:1},scale:{type:ControlType.Number,defaultValue:1,min:0,step:.01}},hidden:props=>!props.enabled},smoothing:{type:ControlType.Number,defaultValue:50,min:0,max:100,step:1,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});const CHARACTERS=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\";function generateInstanceId(){const id=useMemo(()=>{let result=\"\";for(let i=0;i<13;i++){result+=CHARACTERS.charAt(Math.floor(Math.random()*CHARACTERS.length));}return result;},[]);return id;}function mapRange(value,fromLow,fromHigh,toLow,toHigh){if(fromLow===fromHigh){return toLow;}const percentage=(value-fromLow)/(fromHigh-fromLow);return toLow+percentage*(toHigh-toLow);}function calculateTransform(element,computedStyle,xValue,yValue,scale=1,previousX,previousY,previousScale,previousStyleTransform){xValue=xValue||0;yValue=yValue||0;previousX=previousX||0;previousY=previousY||0;scale=scale||1;previousScale=previousScale||1;// Get transform\nconst computedTransform=computedStyle.transform;const styleTransform=element.style.transform;// Subtract previous values from current values for a single transform\nconst finalX=xValue-previousX;const finalY=yValue-previousY;const finalScale=scale/(previousScale||1)// Prevent division by zero\n;const translateTransform=`translate(${finalX.toFixed(3)}px, ${finalY.toFixed(3)}px)`;const transformWithScale=scale!==1?`${translateTransform} scale(${finalScale})`:translateTransform;let transform=transformWithScale;if(styleTransform&&styleTransform!==\"none\"){if(previousStyleTransform&&previousStyleTransform!==\"none\"){transform=`${transformWithScale} ${invertTransform(previousStyleTransform)} ${styleTransform}`;}else{transform=`${transformWithScale} ${styleTransform}`;}}return computedTransform&&computedTransform!==\"none\"?`${transform} ${computedTransform}`:transform;}function invertTransform(transformString){const transforms=transformString.match(/\\w+\\([^)]+\\)/g)||[];const invertedTransforms=transforms.reverse().map(transform=>{const[func,valuesString]=transform.match(/(\\w+)\\(([^)]+)\\)/).slice(1);const values=valuesString.split(\",\").map(v=>v.trim());const invertNumber=v=>{const[_,sign,num,unit]=v.match(/^(-?)(\\d*\\.?\\d+)(\\D*)$/);return`${sign?\"\":\"-\"}${num}${unit}`;};switch(func.toLowerCase()){case\"translate\":case\"translate3d\":case\"translatex\":case\"translatey\":case\"translatez\":return`${func}(${values.map(invertNumber).join(\", \")})`;case\"scale\":case\"scale3d\":return`${func}(${values.map(v=>1/parseFloat(v)).join(\", \")})`;case\"scalex\":case\"scaley\":case\"scalez\":return`${func}(${1/parseFloat(values[0])})`;case\"rotate\":case\"rotatex\":case\"rotatey\":case\"rotatez\":return`${func}(${invertNumber(values[0])})`;case\"rotate3d\":const rotateValues=values.map(parseFloat);return`${func}(${rotateValues[0]}, ${rotateValues[1]}, ${rotateValues[2]}, ${invertNumber(values[3])})`;case\"skew\":case\"skewx\":case\"skewy\":return`${func}(${values.map(invertNumber).join(\", \")})`;case\"matrix\":case\"matrix3d\":console.warn(`Inverting ${func} is not supported. Returning original.`);return transform;default:console.warn(`Unknown transform function: ${func}. Returning original.`);return transform;}});return invertedTransforms.join(\" \");}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"MagneticHover\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"auto\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutHeight\":\"auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MagneticHover_Prod.map", "export const v0=\"Vues\";export const v1=\"Commentaires\";\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6d82f59)\nimport*as localizedValues from\"./KUqCMCA44-0.js\";const valuesByLocaleId={aUusXosw8:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import MagneticHover from\"https://framerusercontent.com/modules/P3S2M04Yg53AO5F51mO2/pzJl44uxe09OYFf1Kkst/MagneticHover_Prod.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import CounterDisplay from\"https://framerusercontent.com/modules/pi5FnxlkRv14CjUZ5LrB/euEC9WxQMKUZ52bVZK5V/DataCounter.js\";import{TruncatedText}from\"https://framerusercontent.com/modules/HbPcGpZTYBLeBtwOGVKX/MsnkJa2rXEzuNAGRpWub/TruncateText.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/3yAveJaZ7h3myj4ea2VO/hkwIWdh6WEAqDROTYP5Y/w_y7KEI3d.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/nzTgwARwDgrTvygRD7jx/BYvaey9VWB2TA6PHFvgs/KUqCMCA44.js\";const RichTextTruncatedText=TruncatedText(RichText);const CounterDisplayFonts=getFonts(CounterDisplay);const PhosphorFonts=getFonts(Phosphor);const MagneticHoverFonts=getFonts(MagneticHover);const enabledGestures={vnKjoWjTy:{hover:true}};const serializationHash=\"framer-f6SJo\";const variantClassNames={vnKjoWjTy:\"framer-v-1idhc1a\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:.3,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const negate=value=>{return!value;};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({genre,header,height,icon,id,pageID,slug,title,useHeader,width,...props})=>{return{...props,cuAuqx_2J:header??props.cuAuqx_2J,hMa4vHIwB:title??props.hMa4vHIwB??\"Game Title\",KfWMVikT6:useHeader??props.KfWMVikT6??true,pJzzPvWrv:pageID??props.pJzzPvWrv,QEMH46BvV:icon??props.QEMH46BvV,uDaihH6Qa:slug??props.uDaihH6Qa,y5KcLseWd:genre??props.y5KcLseWd??\"Genre\"};};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,cuAuqx_2J,hMa4vHIwB,y5KcLseWd,uDaihH6Qa,pJzzPvWrv,QEMH46BvV,KfWMVikT6,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"vnKjoWjTy\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const visible=negate(KfWMVikT6);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:uDaihH6Qa,nodeId:\"vnKjoWjTy\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1idhc1a\",className,classNames)} framer-jghoiv`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"vnKjoWjTy\",ref:ref??ref1,style:{backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"none\",WebkitBackdropFilter:\"none\",...style},variants:{\"vnKjoWjTy-hover\":{backdropFilter:\"blur(7px)\",backgroundColor:\"rgba(0, 0, 0, 0.3)\",boxShadow:\"0px 0.7961918735236395px 1.4331453723425511px -0.375px rgba(0, 0, 0, 0.07898), 0px 2.414506143104518px 4.346111057588132px -0.75px rgba(0, 0, 0, 0.08707), 0px 6.382653521484461px 11.48877633867203px -1.125px rgba(0, 0, 0, 0.10691), 0px 20px 36px -1.5px rgba(0, 0, 0, 0.175)\",WebkitBackdropFilter:\"blur(7px)\"}},...addPropertyOverrides({\"vnKjoWjTy-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[KfWMVikT6&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(16+((componentViewport?.height||99)-32-((componentViewport?.height||99)-32)*1)/2)),pixelHeight:215,pixelWidth:460,sizes:`calc(${((componentViewport?.height||99)-32)*1} * 2.1343)`,...toResponsiveImage(cuAuqx_2J)},className:\"framer-8bkzc0\",layoutDependency:layoutDependency,layoutId:\"ZaPkjvqUq\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4}}),visible&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(16+((componentViewport?.height||99)-32-((componentViewport?.height||99)-32)*1)/2)),pixelHeight:215,pixelWidth:460,sizes:((componentViewport?.height||99)-32)*1,...toResponsiveImage(QEMH46BvV),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-zetjlw\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"N4YbvyE6P\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-74b8f89e-e19c-42d8-882a-e6e9c1047854, rgba(89, 89, 89, 0.6))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ocfq7q\",layoutDependency:layoutDependency,layoutId:\"hR9SGmZiI\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sq9mw5\",layoutDependency:layoutDependency,layoutId:\"cwSbH627Q\",children:/*#__PURE__*/_jsx(RichTextTruncatedText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-ayhh6k\",\"data-styles-preset\":\"w_y7KEI3d\",children:\"Red Dead Redemption 2\"})}),className:\"framer-9s72kw\",\"data-framer-name\":\"Lines: 1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QfOMWnpVI\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:hMa4vHIwB,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hga8s\",layoutDependency:layoutDependency,layoutId:\"OrYPdINcY\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1be9hly\",layoutDependency:layoutDependency,layoutId:\"appfMeCVu\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xsihz4-container\",layoutDependency:layoutDependency,layoutId:\"EKwhr27vy-container\",children:/*#__PURE__*/_jsx(CounterDisplay,{height:\"100%\",id:\"EKwhr27vy\",layoutId:\"EKwhr27vy\",pageId:pJzzPvWrv,styling:{bottomLeft:0,bottomRight:0,font:{fontFamily:'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},isMixed:false,numberLabel:\"\",padding:0,textColor:\"rgba(255, 255, 255, 0.6)\",topLeft:0,topRight:0},supabaseAnonKey:\"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InRpaHRya2V6b3dmd2ljZXFnb3hyIiwicm9sZSI6InNlcnZpY2Vfcm9sZSIsImlhdCI6MTcxNzQwMDA3OSwiZXhwIjoyMDMyOTc2MDc5fQ.3QNjmyCak0M67NBMuhQB9m3IhbBV4ZiPzLJXOvN6I-8\",supabaseUrl:\"https://tihtrkezowfwiceqgoxr.supabase.co\",tableName:getLocalizedValue(\"v0\",activeLocale)??\"Views\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3h0nvl-container\",layoutDependency:layoutDependency,layoutId:\"U1nVID6qb-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgba(255, 255, 255, 0.6)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Eye\",id:\"U1nVID6qb\",layoutId:\"U1nVID6qb\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t6c2ht\",layoutDependency:layoutDependency,layoutId:\"Aq3Siu3rX\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ttw4w8-container\",layoutDependency:layoutDependency,layoutId:\"bm0vzmMZr-container\",children:/*#__PURE__*/_jsx(CounterDisplay,{height:\"100%\",id:\"bm0vzmMZr\",layoutId:\"bm0vzmMZr\",pageId:pJzzPvWrv,styling:{bottomLeft:0,bottomRight:0,font:{fontFamily:'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},isMixed:false,numberLabel:\"\",padding:0,textColor:\"rgba(255, 255, 255, 0.6)\",topLeft:0,topRight:0},supabaseAnonKey:\"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InRpaHRya2V6b3dmd2ljZXFnb3hyIiwicm9sZSI6InNlcnZpY2Vfcm9sZSIsImlhdCI6MTcxNzQwMDA3OSwiZXhwIjoyMDMyOTc2MDc5fQ.3QNjmyCak0M67NBMuhQB9m3IhbBV4ZiPzLJXOvN6I-8\",supabaseUrl:\"https://tihtrkezowfwiceqgoxr.supabase.co\",tableName:getLocalizedValue(\"v1\",activeLocale)??\"Comments\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bnw4wd-container\",layoutDependency:layoutDependency,layoutId:\"S6DI0HtzM-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgba(255, 255, 255, 0.6)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ChatTeardrop\",id:\"S6DI0HtzM\",layoutId:\"S6DI0HtzM\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18a14c4\",layoutDependency:layoutDependency,layoutId:\"bKhOSFSmj\",style:{backgroundColor:\"rgba(255, 255, 255, 0.1)\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1saWdodA==\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.6))\"},children:\"Adventure\"})}),className:\"framer-1xl4igq\",fonts:[\"FS;Satoshi-light\"],layoutDependency:layoutDependency,layoutId:\"gb0pqSBuM\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.6)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:y5KcLseWd,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18iv9v4-container\",layoutDependency:layoutDependency,layoutId:\"rgzkAOaws-container\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(MagneticHover,{children:{distance:4,scale:1},distance:10,enabled:true,height:\"100%\",hoverArea:0,id:\"rgzkAOaws\",layoutId:\"rgzkAOaws\",smoothing:50,width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-f6SJo.framer-jghoiv, .framer-f6SJo .framer-jghoiv { display: block; }\",\".framer-f6SJo.framer-1idhc1a { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 19px; height: 99px; justify-content: flex-start; overflow: hidden; padding: 16px; position: relative; text-decoration: none; width: 348px; will-change: var(--framer-will-change-override, transform); }\",\".framer-f6SJo .framer-8bkzc0 { aspect-ratio: 2.1343283582089554 / 1; flex: none; height: 100%; overflow: hidden; position: relative; width: var(--framer-aspect-ratio-supported, 143px); will-change: var(--framer-will-change-override, transform); }\",\".framer-f6SJo .framer-zetjlw { aspect-ratio: 1 / 1; flex: none; height: 100%; overflow: hidden; position: relative; width: var(--framer-aspect-ratio-supported, 200px); will-change: var(--framer-will-change-override, transform); }\",\".framer-f6SJo .framer-ocfq7q { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-f6SJo .framer-1sq9mw5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-f6SJo .framer-9s72kw { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-f6SJo .framer-1hga8s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 18px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-f6SJo .framer-1be9hly, .framer-f6SJo .framer-1t6c2ht { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-f6SJo .framer-1xsihz4-container, .framer-f6SJo .framer-1ttw4w8-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-f6SJo .framer-3h0nvl-container, .framer-f6SJo .framer-bnw4wd-container { align-self: stretch; flex: none; height: auto; position: relative; width: 14px; }\",\".framer-f6SJo .framer-18a14c4 { flex: none; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\".framer-f6SJo .framer-1xl4igq { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-f6SJo .framer-18iv9v4-container { flex: none; height: auto; position: absolute; right: 16px; top: 51%; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-f6SJo.framer-1idhc1a, .framer-f6SJo .framer-ocfq7q, .framer-f6SJo .framer-1sq9mw5, .framer-f6SJo .framer-1hga8s, .framer-f6SJo .framer-1be9hly, .framer-f6SJo .framer-1t6c2ht { gap: 0px; } .framer-f6SJo.framer-1idhc1a > * { margin: 0px; margin-left: calc(19px / 2); margin-right: calc(19px / 2); } .framer-f6SJo.framer-1idhc1a > :first-child, .framer-f6SJo .framer-1sq9mw5 > :first-child, .framer-f6SJo .framer-1hga8s > :first-child, .framer-f6SJo .framer-1be9hly > :first-child, .framer-f6SJo .framer-1t6c2ht > :first-child { margin-left: 0px; } .framer-f6SJo.framer-1idhc1a > :last-child, .framer-f6SJo .framer-1sq9mw5 > :last-child, .framer-f6SJo .framer-1hga8s > :last-child, .framer-f6SJo .framer-1be9hly > :last-child, .framer-f6SJo .framer-1t6c2ht > :last-child { margin-right: 0px; } .framer-f6SJo .framer-ocfq7q > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-f6SJo .framer-ocfq7q > :first-child { margin-top: 0px; } .framer-f6SJo .framer-ocfq7q > :last-child { margin-bottom: 0px; } .framer-f6SJo .framer-1sq9mw5 > *, .framer-f6SJo .framer-1hga8s > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-f6SJo .framer-1be9hly > *, .framer-f6SJo .framer-1t6c2ht > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",...sharedStyle.css,'.framer-f6SJo[data-border=\"true\"]::after, .framer-f6SJo [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 99\n * @framerIntrinsicWidth 348\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"efdAaizzG\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"cuAuqx_2J\":\"header\",\"hMa4vHIwB\":\"title\",\"y5KcLseWd\":\"genre\",\"uDaihH6Qa\":\"slug\",\"pJzzPvWrv\":\"pageID\",\"QEMH46BvV\":\"icon\",\"KfWMVikT6\":\"useHeader\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKUqCMCA44=withCSS(Component,css,\"framer-f6SJo\");export default FramerKUqCMCA44;FramerKUqCMCA44.displayName=\"Side Users Visit\";FramerKUqCMCA44.defaultProps={height:99,width:348};addPropertyControls(FramerKUqCMCA44,{cuAuqx_2J:{title:\"Header\",type:ControlType.ResponsiveImage},hMa4vHIwB:{defaultValue:\"Game Title\",displayTextArea:false,placeholder:\"Red Dead Redemption 2\",title:\"Title\",type:ControlType.String},y5KcLseWd:{defaultValue:\"Genre\",displayTextArea:false,placeholder:\"Adventure\",title:\"Genre\",type:ControlType.String},uDaihH6Qa:{title:\"Slug\",type:ControlType.Link},pJzzPvWrv:{defaultValue:\"\",placeholder:\"default-page-id\",title:\"Page ID\",type:ControlType.String},QEMH46BvV:{title:\"Icon\",type:ControlType.ResponsiveImage},KfWMVikT6:{defaultValue:true,title:\"Use Header\",type:ControlType.Boolean}});addFonts(FramerKUqCMCA44,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/D7WD5OXZFWQ5T76HSPWAC7MNKAJXE2YG/LUGNSPO5YC34ABNB2O6K7AFDSOJZT56V/WNDVG7O66ENLOD43GS7FBUCC4KMT5OM2.woff2\",weight:\"300\"}]},...CounterDisplayFonts,...PhosphorFonts,...MagneticHoverFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKUqCMCA44\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"cuAuqx_2J\\\":\\\"header\\\",\\\"hMa4vHIwB\\\":\\\"title\\\",\\\"y5KcLseWd\\\":\\\"genre\\\",\\\"uDaihH6Qa\\\":\\\"slug\\\",\\\"pJzzPvWrv\\\":\\\"pageID\\\",\\\"QEMH46BvV\\\":\\\"icon\\\",\\\"KfWMVikT6\\\":\\\"useHeader\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"99\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"efdAaizzG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"348\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6d82f59)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-LJKe7 .framer-styles-preset-g4ob2n:not(.rich-text-wrapper), .framer-LJKe7 .framer-styles-preset-g4ob2n.rich-text-wrapper p { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-LJKe7\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1e08357)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-ohzQl .framer-styles-preset-vrl2pj { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; }\"];export const className=\"framer-ohzQl\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{TruncatedText}from\"https://framerusercontent.com/modules/HbPcGpZTYBLeBtwOGVKX/MsnkJa2rXEzuNAGRpWub/TruncateText.js\";import*as sharedStyle9 from\"https://framerusercontent.com/modules/syCY3rD154CIhp2j5W1d/TiATl5e8IxQ1vsgTAgJq/dJMowo8YO.js\";import*as sharedStyle10 from\"https://framerusercontent.com/modules/ZtJxdzmwZJS0mXPOolSI/9r06p6HKWTvomx7EjBO7/KLlg7M9fp.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/tIuJKwyylGbk8e7ujcNU/gxvg70ub40AsPp8zxZSW/kxIkWEoaf.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/0O4DF9JYQo4qCL1Ayr3c/qTtGWTGyyfM98pTIX0fn/NJCDaYQHu.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/yvAPeeofZWm5Wap4hoXu/KkK5rCelQK99T1yCTRS3/NXrQq2jUt.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/5xXJJ8LxdHeojmZEbK10/hwMlGSG1cce7rrJOjsBV/qiySXHoRf.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/RvCfpJsOyMcQcwa2GMMa/gO0uKlKCsEjH6FRYlhSr/RZPhPE9sq.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/ZfiBvVyM0Ti2IN6nLbTX/PuLUUCiRk3QTYkmDN4gi/snikYUT_F.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/zElTizofJnl05kXfW9EK/1krWjrXWlKF8VKV7ytiJ/U_JkOl4TP.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/Eh5CulgL0Bo3QRra8SMe/vJWjuCsyx59cobIgInuY/UBAE0EXmZ.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/3yAveJaZ7h3myj4ea2VO/hkwIWdh6WEAqDROTYP5Y/w_y7KEI3d.js\";import ButtonBasic from\"https://framerusercontent.com/modules/G4qEC451l9e5Yl2pf4zx/S8Z2Q9lUjG6KhD1ZoCzY/mt2xHvQRr.js\";const RichTextTruncatedText=TruncatedText(RichText);const ButtonBasicFonts=getFonts(ButtonBasic);const cycleOrder=[\"Chz_NI1th\",\"NvrM6smX6\"];const serializationHash=\"framer-DjlGE\";const variantClassNames={Chz_NI1th:\"framer-v-1yujtao\",NvrM6smX6:\"framer-v-123vnwa\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"Chz_NI1th\",\"Variant 2\":\"NvrM6smX6\"};const getProps=({description,height,id,shortDesc,width,...props})=>{return{...props,t4nhgsaqH:description??props.t4nhgsaqH??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{children:\" \"}),/*#__PURE__*/_jsx(motion.p,{children:\"You must stay alive in this horror/puzzle adventure. Try to survive the vengeful toys waiting for you in the abandoned toy factory. Use your GrabPack to hack electrical circuits or nab anything from afar. Explore the mysterious facility... and don't get caught.\"}),/*#__PURE__*/_jsx(motion.h2,{children:\"Welcome to Playtime Co.!\"}),/*#__PURE__*/_jsxs(motion.p,{children:[\"Playtime Co. was once the king of the toy manufacturing industry... until everybody inside of the factory one day disappeared into thin air. Now, years later, you must explore the abandoned factory and uncover the truth.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]}),/*#__PURE__*/_jsx(motion.img,{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,aUt9zqrJFY5NpUY8uwt6G1PM3Y.gif\",\"data-framer-height\":\"266\",\"data-framer-width\":\"620\",height:\"133\",src:\"https://framerusercontent.com/images/aUt9zqrJFY5NpUY8uwt6G1PM3Y.gif\",srcSet:\"https://framerusercontent.com/images/aUt9zqrJFY5NpUY8uwt6G1PM3Y.gif?scale-down-to=512 512w,https://framerusercontent.com/images/aUt9zqrJFY5NpUY8uwt6G1PM3Y.gif 620w\",style:{aspectRatio:\"620 / 266\"},width:\"310\"}),/*#__PURE__*/_jsx(motion.h2,{children:\"The Toys\"}),/*#__PURE__*/_jsxs(motion.p,{children:[\"The toys of Playtime Co. are a lively bunch! From Bot to Huggy, Catbee to Poppy, Playtime does it all!\",/*#__PURE__*/_jsx(motion.br,{}),\"As long as you're at Playtime Co., why not pay the toys a little visit? You might just make a few friends...\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]}),/*#__PURE__*/_jsx(motion.img,{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,9j4rFduy1R8yTBOm4Nvpc0D474.gif\",\"data-framer-height\":\"360\",\"data-framer-width\":\"620\",height:\"180\",src:\"https://framerusercontent.com/images/9j4rFduy1R8yTBOm4Nvpc0D474.gif\",srcSet:\"https://framerusercontent.com/images/9j4rFduy1R8yTBOm4Nvpc0D474.gif?scale-down-to=512 512w,https://framerusercontent.com/images/9j4rFduy1R8yTBOm4Nvpc0D474.gif 620w\",style:{aspectRatio:\"620 / 360\"},width:\"310\"}),/*#__PURE__*/_jsx(motion.h2,{children:\"The GrabPack\"}),/*#__PURE__*/_jsxs(motion.p,{children:[\"This amazing GrabPack is a wearable backpack, accompanied by 2 artificial hands attached via steel wire.\",/*#__PURE__*/_jsx(motion.br,{}),\"With this \",/*#__PURE__*/_jsx(motion.em,{children:\"handy,\"}),\" state-of-the-art tool, there's no limit to what Playtime Co. employees can accomplish! The following list of \",/*#__PURE__*/_jsx(motion.strong,{children:\"features\"}),\" should help to show you what the GrabPack has to offer.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]}),/*#__PURE__*/_jsx(motion.ul,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(172, 178, 184)\",\"--framer-text-stroke-width\":\"0px\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"The hands' powerful grip allows for movement of heavy objects with ease!\"})})}),/*#__PURE__*/_jsx(motion.img,{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Bl1F6OnuQDaposRn5qj1Bsvnkw.gif\",\"data-framer-height\":\"255\",\"data-framer-width\":\"620\",height:\"127\",src:\"https://framerusercontent.com/images/Bl1F6OnuQDaposRn5qj1Bsvnkw.gif\",srcSet:\"https://framerusercontent.com/images/Bl1F6OnuQDaposRn5qj1Bsvnkw.gif?scale-down-to=512 512w,https://framerusercontent.com/images/Bl1F6OnuQDaposRn5qj1Bsvnkw.gif 620w\",style:{aspectRatio:\"620 / 255\"},width:\"310\"}),/*#__PURE__*/_jsxs(motion.p,{children:[/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]}),/*#__PURE__*/_jsx(motion.ul,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(172, 178, 184)\",\"--framer-text-stroke-width\":\"0px\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"A lengthy and flexible wire gives any employee the ability to reach whatever they may need, no matter the distance!\"})})}),/*#__PURE__*/_jsx(motion.img,{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,97DtiEKG74z3js9hwXqZeZgII.gif\",\"data-framer-height\":\"278\",\"data-framer-width\":\"620\",height:\"139\",src:\"https://framerusercontent.com/images/97DtiEKG74z3js9hwXqZeZgII.gif\",srcSet:\"https://framerusercontent.com/images/97DtiEKG74z3js9hwXqZeZgII.gif?scale-down-to=512 512w,https://framerusercontent.com/images/97DtiEKG74z3js9hwXqZeZgII.gif 620w\",style:{aspectRatio:\"620 / 278\"},width:\"310\"}),/*#__PURE__*/_jsxs(motion.p,{children:[/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]}),/*#__PURE__*/_jsx(motion.ul,{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"start\",\"--framer-text-color\":\"rgb(172, 178, 184)\",\"--framer-text-stroke-width\":\"0px\",\"--framer-text-transform\":\"none\"},children:/*#__PURE__*/_jsx(motion.li,{\"data-preset-tag\":\"p\",children:/*#__PURE__*/_jsx(motion.p,{children:\"The steel wire makes conducting electricity a breeze!\"})})}),/*#__PURE__*/_jsx(motion.img,{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,oVIBtGNMJQR4gKWOmkxIKcN3ik.gif\",\"data-framer-height\":\"278\",\"data-framer-width\":\"620\",height:\"139\",src:\"https://framerusercontent.com/images/oVIBtGNMJQR4gKWOmkxIKcN3ik.gif\",srcSet:\"https://framerusercontent.com/images/oVIBtGNMJQR4gKWOmkxIKcN3ik.gif?scale-down-to=512 512w,https://framerusercontent.com/images/oVIBtGNMJQR4gKWOmkxIKcN3ik.gif 620w\",style:{aspectRatio:\"620 / 278\"},width:\"310\"}),/*#__PURE__*/_jsxs(motion.p,{children:[/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),\"The only limit is the length of your GrabPack's wire.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{}),\"Won't you stick around? There's lots of fun in store for you. It's almost Playtime...\"]})]}),USTHLoqYD:shortDesc??props.USTHLoqYD??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})})}),variant:humanReadableVariantMap[props.variant]??props.variant??\"Chz_NI1th\"};};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,t4nhgsaqH,USTHLoqYD,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Chz_NI1th\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const v8nZYmfZNbsy5qq=activeVariantCallback(async(...args)=>{setVariant(\"NvrM6smX6\");});const v8nZYmfZN5wue6x=activeVariantCallback(async(...args)=>{setVariant(\"Chz_NI1th\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const visible=isSet(USTHLoqYD);const isDisplayed=value=>{if(baseVariant===\"NvrM6smX6\")return false;return value;};const isDisplayed1=()=>{if(baseVariant===\"NvrM6smX6\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1yujtao\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Chz_NI1th\",ref:ref??ref1,style:{...style},...addPropertyOverrides({NvrM6smX6:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed(visible)&&/*#__PURE__*/_jsx(RichTextTruncatedText,{__fromCanvasComponent:true,children:t4nhgsaqH,className:\"framer-alptkq\",\"data-framer-name\":\"Lines: 8\",fonts:[\"Inter\",\"Inter-Italic\"],layoutDependency:layoutDependency,layoutId:\"NSVg6mdiu\",stylesPresetsClassNames:{a:\"framer-styles-preset-1k8gfns\",blockquote:\"framer-styles-preset-1vnex9o\",code:\"framer-styles-preset-q2094a\",h1:\"framer-styles-preset-1ih6hm0\",h2:\"framer-styles-preset-1ousxjm\",h3:\"framer-styles-preset-y9t57f\",h4:\"framer-styles-preset-ayhh6k\",h5:\"framer-styles-preset-h0yy4w\",h6:\"framer-styles-preset-das4u8\",img:\"framer-styles-preset-vrl2pj\",p:\"framer-styles-preset-g4ob2n\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:t4nhgsaqH,className:\"framer-gsyp7\",\"data-framer-name\":\"Text\",fonts:[\"Inter\",\"Inter-Italic\"],layoutDependency:layoutDependency,layoutId:\"dCzYFuQtC\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},stylesPresetsClassNames:{a:\"framer-styles-preset-1k8gfns\",blockquote:\"framer-styles-preset-1vnex9o\",code:\"framer-styles-preset-q2094a\",h1:\"framer-styles-preset-1ih6hm0\",h2:\"framer-styles-preset-1ousxjm\",h3:\"framer-styles-preset-y9t57f\",h4:\"framer-styles-preset-ayhh6k\",h5:\"framer-styles-preset-h0yy4w\",h6:\"framer-styles-preset-das4u8\",img:\"framer-styles-preset-vrl2pj\",p:\"framer-styles-preset-g4ob2n\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||1668)-0-1135.6)/2+1077.6+20),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rscssq-container\",layoutDependency:layoutDependency,layoutId:\"ken9F6UgO-container\",children:/*#__PURE__*/_jsx(ButtonBasic,{AowJaKbfj:true,G9b145LsG:\"CaretDown\",height:\"100%\",id:\"ken9F6UgO\",kblevFF0o:\"rgb(255, 255, 255)\",layoutId:\"ken9F6UgO\",mM6gUTpuT:\"regular\",nLrly0p5P:\"var(--token-f336b627-de1d-4c26-9d88-ead02df4dfcd, rgb(31, 31, 31))\",QRwo7h1aV:\"https://crakus.framer.ai/games/...\",style:{height:\"100%\",width:\"100%\"},uHjBrlz0l:\"Show more\",v8nZYmfZN:v8nZYmfZNbsy5qq,variant:\"PuJ56ZJYH\",width:\"100%\",...addPropertyOverrides({NvrM6smX6:{G9b145LsG:\"CaretUp\",uHjBrlz0l:\"Show less\",v8nZYmfZN:v8nZYmfZN5wue6x}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DjlGE.framer-1vpwnq8, .framer-DjlGE .framer-1vpwnq8 { display: block; }\",\".framer-DjlGE.framer-1yujtao { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 896px; }\",\".framer-DjlGE .framer-alptkq { -webkit-user-select: none; flex: none; height: auto; pointer-events: none; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-DjlGE .framer-gsyp7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-DjlGE .framer-rscssq-container { flex: none; height: 38px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DjlGE.framer-1yujtao { gap: 0px; } .framer-DjlGE.framer-1yujtao > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-DjlGE.framer-1yujtao > :first-child { margin-top: 0px; } .framer-DjlGE.framer-1yujtao > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1668\n * @framerIntrinsicWidth 896\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NvrM6smX6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"t4nhgsaqH\":\"description\",\"USTHLoqYD\":\"shortDesc\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernJLesFJUY=withCSS(Component,css,\"framer-DjlGE\");export default FramernJLesFJUY;FramernJLesFJUY.displayName=\"Text Show More/Less\";FramernJLesFJUY.defaultProps={height:1668,width:896};addPropertyControls(FramernJLesFJUY,{variant:{options:[\"Chz_NI1th\",\"NvrM6smX6\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},t4nhgsaqH:{defaultValue:'<p> </p><p>You must stay alive in this horror/puzzle adventure. Try to survive the vengeful toys waiting for you in the abandoned toy factory. Use your GrabPack to hack electrical circuits or nab anything from afar. Explore the mysterious facility... and don\\'t get caught.</p><h2>Welcome to Playtime Co.!</h2><p>Playtime Co. was once the king of the toy manufacturing industry... until everybody inside of the factory one day disappeared into thin air. Now, years later, you must explore the abandoned factory and uncover the truth.<br><br><br class=\"trailing-break\"></p><img alt=\"\" data-framer-width=\"620\" width=\"310\" data-framer-height=\"266\" height=\"133\" data-framer-asset=\"data:framer/asset-reference,aUt9zqrJFY5NpUY8uwt6G1PM3Y.gif\" class=\"framer-image\" style=\"aspect-ratio: 620 / 266;\"><h2>The Toys</h2><p>The toys of Playtime Co. are a lively bunch! From Bot to Huggy, Catbee to Poppy, Playtime does it all!<br>As long as you\\'re at Playtime Co., why not pay the toys a little visit? You might just make a few friends...<br><br class=\"trailing-break\"></p><img alt=\"\" data-framer-width=\"620\" width=\"310\" data-framer-height=\"360\" height=\"180\" data-framer-asset=\"data:framer/asset-reference,9j4rFduy1R8yTBOm4Nvpc0D474.gif\" class=\"framer-image\" style=\"aspect-ratio: 620 / 360;\"><h2>The GrabPack</h2><p>This amazing GrabPack is a wearable backpack, accompanied by 2 artificial hands attached via steel wire.<br>With this <em>handy,</em> state-of-the-art tool, there\\'s no limit to what Playtime Co. employees can accomplish! The following list of <strong>features</strong> should help to show you what the GrabPack has to offer.<br><br class=\"trailing-break\"></p><ul style=\"--framer-text-color: rgb(172, 178, 184); --framer-font-size: 14px; --framer-text-transform: none; --framer-text-stroke-width: 0px; --framer-text-alignment: start;\"><li data-preset-tag=\"p\"><p>The hands\\' powerful grip allows for movement of heavy objects with ease!</p></li></ul><img alt=\"\" data-framer-width=\"620\" width=\"310\" data-framer-height=\"255\" height=\"127\" data-framer-asset=\"data:framer/asset-reference,Bl1F6OnuQDaposRn5qj1Bsvnkw.gif\" class=\"framer-image\" style=\"aspect-ratio: 620 / 255;\"><p><br><br class=\"trailing-break\"></p><ul style=\"--framer-text-color: rgb(172, 178, 184); --framer-font-size: 14px; --framer-text-transform: none; --framer-text-stroke-width: 0px; --framer-text-alignment: start;\"><li data-preset-tag=\"p\"><p>A lengthy and flexible wire gives any employee the ability to reach whatever they may need, no matter the distance!</p></li></ul><img alt=\"\" data-framer-width=\"620\" width=\"310\" data-framer-height=\"278\" height=\"139\" data-framer-asset=\"data:framer/asset-reference,97DtiEKG74z3js9hwXqZeZgII.gif\" class=\"framer-image\" style=\"aspect-ratio: 620 / 278;\"><p><br><br class=\"trailing-break\"></p><ul style=\"--framer-text-color: rgb(172, 178, 184); --framer-font-size: 14px; --framer-text-transform: none; --framer-text-stroke-width: 0px; --framer-text-alignment: start;\"><li data-preset-tag=\"p\"><p>The steel wire makes conducting electricity a breeze!</p></li></ul><img alt=\"\" data-framer-width=\"620\" width=\"310\" data-framer-height=\"278\" height=\"139\" data-framer-asset=\"data:framer/asset-reference,oVIBtGNMJQR4gKWOmkxIKcN3ik.gif\" class=\"framer-image\" style=\"aspect-ratio: 620 / 278;\"><p><br><br>The only limit is the length of your GrabPack\\'s wire.<br><br>Won\\'t you stick around? There\\'s lots of fun in store for you. It\\'s almost Playtime...</p>',title:\"Description\",type:ControlType.RichText},USTHLoqYD:{defaultValue:'<p><br class=\"trailing-break\"></p>',title:\"Short Desc\",type:ControlType.RichText}});addFonts(FramernJLesFJUY,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]},...ButtonBasicFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernJLesFJUY\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"896\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NvrM6smX6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"1668\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"t4nhgsaqH\\\":\\\"description\\\",\\\"USTHLoqYD\\\":\\\"shortDesc\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "s5BAKkB,SAARA,EAA+BC,EAAM,CAAC,GAAK,CAAC,SAAAC,EAAS,UAAAC,EAAU,UAAAC,EAAU,QAAAC,CAAO,EAAEJ,EAAYK,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAAaC,EAAGC,GAAmB,EAAQC,EAAW,CAAC,QAAQ,IAAI,UAAUC,GAASR,EAAU,EAAE,IAAI,IAAI,EAAE,CAAC,EAAQS,EAAOC,EAAe,CAAC,EAAQC,EAAOD,EAAe,CAAC,EAAQE,EAAEF,EAAe,CAAC,EAAQG,EAAEH,EAAe,CAAC,EAAQI,EAAQC,GAAUH,EAAEL,CAAU,EAAQS,EAAQD,GAAUF,EAAEN,CAAU,EAAQU,EAAMP,EAAe,CAAC,EAAQQ,EAAYH,GAAUE,EAAMV,CAAU,EAAQY,EAAIC,EAAO,IAAI,EAAQC,EAAaD,EAAO,IAAI,EAAQE,EAAUF,EAAO,IAAI,EAAQG,EAAcH,EAAO,EAAK,EAAQI,EAAaJ,EAAO,IAAI,EAAQK,GAAmBL,EAAO,IAAI,EAAQM,GAASN,EAAO,IAAI,EAAQO,EAAaP,EAAOpB,IAAY,CAAC,EAAQ4B,EAAaR,EAAO,IAAI,EAAQS,EAAaT,EAAO,IAAI,EAAQU,GAAqBV,EAAO,IAAI,EAAQW,EAAqBX,EAAO,IAAI,EAAQY,EAAyBZ,EAAO,IAAI,EAAQa,EAA0Bb,EAAO,IAAI,EAAQc,EAAmCd,EAAO,CAAC,CAAC,EAAE,OAAAe,EAAU,IAAI,CAAC,IAAMC,EAAa3B,EAAO,SAAS4B,GAAGzB,EAAE,IAAIV,EAAQmC,EAAE,CAAC,CAAC,EAAQC,EAAa3B,EAAO,SAAS0B,GAAGxB,EAAE,IAAIX,EAAQmC,EAAE,CAAC,CAAC,EAAE,MAAM,IAAI,CAACD,EAAa,EAAEE,EAAa,CAAE,CAAE,EAAE,CAACpC,EAAQO,EAAOE,EAAOC,EAAEC,CAAC,CAAC,EAAEsB,EAAU,IAAI,CAACvB,EAAE,IAAIV,EAAQO,EAAO,IAAI,EAAE,CAAC,EAAEI,EAAE,IAAIX,EAAQS,EAAO,IAAI,EAAE,CAAC,EAAMT,EAA+BqB,EAAc,SAASzB,EAAM,UAAUmB,EAAM,IAAInB,EAAM,SAAS,KAAK,EAA3FmB,EAAM,IAAI,CAAC,CAAmF,EAAE,CAACf,CAAO,CAAC,EAAEiC,EAAU,IAAI,CAACR,EAAa,QAAQ3B,IAAY,CAAE,EAAE,CAACA,CAAS,CAAC,EAAEmC,EAAU,IAAI,CAAC,IAAII,EAAuBC,EAAgB,IAAI,CAA8E,GAA1ErC,IAAkBoC,EAAiB,sBAAsBC,CAAe,EAAK,CAAClB,EAAU,SAAS,CAACI,GAAS,SAAS,OAAQ,IAAMe,EAAOd,EAAa,QAAQb,EAAQ,IAAI,EAAEF,EAAE,IAAI,EAAQ8B,EAAOf,EAAa,QAAQX,EAAQ,IAAI,EAAEH,EAAE,IAAI,EAAQ8B,GAAcC,EAAO,iBAAiBtB,EAAU,OAAO,EAAQuB,EAAgBC,GAAmBxB,EAAU,QAAQqB,GAAcF,EAAO1C,EAAS2C,EAAO3C,EAAS,EAAE6B,EAAa,QAAQ7B,EAAS8B,EAAa,QAAQ9B,EAAS,EAAEkC,EAA0B,OAAO,EACtjEA,EAA0B,QAAQX,EAAU,QAAQ,MAAM,UAC1D,IAAIyB,GAAe,GAAG,GAAGjD,EAAM,SAAS,CAAC,IAAMkD,GAAS1B,EAAU,QAAQ,SAAe2B,GAAWtB,EAAa,QAAQT,EAAY,IAAI,EAAED,EAAM,IAAI,EAAQiC,GAAeT,EAAO3C,EAAM,SAAS,SAAeqD,GAAeT,EAAO5C,EAAM,SAAS,SAAS,QAAQsD,EAAE,EAAEA,EAAEJ,GAAS,OAAOI,IAAI,CAAC,IAAMC,GAAML,GAASI,CAAC,EAAE,GAAGC,KAAQhC,EAAa,QAAS,SAAU,IAAMiC,GAAmBV,EAAO,iBAAiBS,EAAK,EAAQE,GAAeT,GAAmBO,GAAMC,GAAmBJ,GAAeC,GAAeF,GAAWnB,GAAqB,QAAQC,EAAqB,QAAQC,EAAyB,QAAQE,EAAmC,QAAQkB,CAAC,CAAC,EAC/oBlB,EAAmC,QAAQkB,CAAC,EAAEC,GAAM,MAAM,UAAUN,IAAgB;AAAA,6BACvD1C,oBAAqB+C,EAAE;AAAA,oBAChCG;AAAA;AAAA,OAEZzB,GAAqB,QAAQoB,GAAenB,EAAqB,QAAQoB,GAAenB,EAAyB,QAAQiB,GAAYzB,EAAa,QAAQqB,EAAgBnB,GAAS,QAAQ,YAAY;AAAA,2BACpLrB,oBAAqBwC;AAAA,MAC1CE;AAAA,KACDnB,EAAa,QAAQa,EAAOZ,EAAa,QAAQa,CAAO,EAAE,GAAGvB,EAAI,QAAQ,CAAC,IAAMqC,EAAUrC,EAAI,QAAQ,cAAc,GAAGqC,EAAU,CAACnC,EAAa,QAAQmC,EAAU,IAAMC,EAAOD,EAAU,cAAiBC,IAAQnC,EAAU,QAAQmC,EAAOA,EAAO,aAAa,qBAAqBpD,CAAE,EAAEoB,GAAmB,QAAQiC,EAAOD,EAAO,WAAW,IAChV,OAAAjB,EAAgB,EACV,IAAI,CAAID,GAAkB,qBAAqBA,CAAgB,CAAG,CAAE,EAAE,CAACzC,EAAM,QAAQ,CAAC,EAAEqC,EAAU,IAAI,CAAC,IAAMwB,EAAgBC,GAAO,CAAC,GAAG,CAACtC,EAAU,QAAS,OAAwC,IAAMuC,EAAxBvC,EAAU,QAA2B,sBAAsB,EAAQwC,GAAUF,EAAM,QAAcG,EAAUH,EAAM,QAAcI,GAAWF,IAAWD,EAAK,KAAK5D,GAAW6D,IAAWD,EAAK,MAAM5D,GAAW8D,GAAWF,EAAK,IAAI5D,GAAW8D,GAAWF,EAAK,OAAO5D,EAA2C,GAAjCsB,EAAc,QAAQyC,GAAcA,GAAW,CAAC,IAAMC,GAAcH,IAAWD,EAAK,KAAKA,EAAK,MAAM,GAASK,GAAcH,GAAWF,EAAK,IAAIA,EAAK,OAAO,GAASM,GAAYF,IAAeJ,EAAK,MAAM,GAASO,GAAYF,IAAeL,EAAK,OAAO,GAAGpD,EAAO,IAAI0D,EAAW,EAAExD,EAAO,IAAIyD,EAAW,EAAEnD,EAAM,IAAIf,GAASJ,EAAM,SAASA,EAAM,SAAS,MAAM,CAAC,OAAQW,EAAO,IAAI,CAAC,EAAEE,EAAO,IAAI,CAAC,EAAEM,EAAM,IAAI,CAAC,CAAG,EAAE,OAAA2B,EAAO,iBAAiB,YAAYe,CAAe,EAAQ,IAAIf,EAAO,oBAAoB,YAAYe,CAAe,CAAE,EAAE,CAAC5D,EAASa,EAAEC,EAAEN,EAAWL,EAAQJ,EAAM,QAAQ,CAAC,EAAsBuE,EAAK,MAAM,CAAC,IAAIlD,EAAI,MAAM,CAAC,GAAGrB,EAAM,KAAK,EAAE,SAAsBuE,EAAK,QAAQ,CAAC,IAAI3C,EAAQ,CAAC,CAAC,CAAC,CAAE,CAAC7B,EAAc,YAAY,iBAAiByE,EAAoBzE,EAAc,CAAC,QAAQ,CAAC,KAAK0E,EAAY,QAAQ,aAAa,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,OAAO,aAAa,GAAG,IAAI,EAAE,KAAK,EAAE,OAAOzE,GAAO,CAACA,EAAM,OAAO,EAAE,UAAU,CAAC,KAAKyE,EAAY,OAAO,aAAa,GAAG,IAAI,EAAE,KAAK,EAAE,OAAOzE,GAAO,CAACA,EAAM,OAAO,EAAE,SAAS,CAAC,KAAKyE,EAAY,OAAO,SAAS,GAAK,SAAS,CAAC,SAAS,CAAC,KAAKA,EAAY,OAAO,aAAa,GAAG,IAAI,EAAE,KAAK,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,aAAa,EAAE,IAAI,EAAE,KAAK,GAAG,CAAC,EAAE,OAAOzE,GAAO,CAACA,EAAM,OAAO,EAAE,UAAU,CAAC,KAAKyE,EAAY,OAAO,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,EAAE,YAAY,oEAAoE,CAAC,CAAC,EAAE,IAAMC,GAAW,uDAAuD,SAASlE,IAAoB,CAAuJ,OAA7ImE,EAAQ,IAAI,CAAC,IAAIC,EAAO,GAAG,QAAQtB,EAAE,EAAEA,EAAE,GAAGA,IAAKsB,GAAQF,GAAW,OAAO,KAAK,MAAM,KAAK,OAAO,EAAEA,GAAW,MAAM,CAAC,EAAG,OAAOE,CAAO,EAAE,CAAC,CAAC,CAAY,CAAC,SAASlE,GAASmE,EAAMC,EAAQC,EAASC,EAAMC,EAAO,CAAC,GAAGH,IAAUC,EAAU,OAAOC,EAAO,IAAME,GAAYL,EAAMC,IAAUC,EAASD,GAAS,OAAOE,EAAME,GAAYD,EAAOD,EAAO,CAAC,SAAShC,GAAmBmC,EAAQtC,EAAcF,EAAOC,EAAOzB,EAAM,EAAEiE,EAAUC,EAAUC,EAAcC,EAAuB,CAAC5C,EAAOA,GAAQ,EAAEC,EAAOA,GAAQ,EAAEwC,EAAUA,GAAW,EAAEC,EAAUA,GAAW,EAAElE,EAAMA,GAAO,EAAEmE,EAAcA,GAAe,EAC1+E,IAAME,EAAkB3C,EAAc,UAAgB4C,EAAeN,EAAQ,MAAM,UAC7EO,EAAO/C,EAAOyC,EAAgBO,EAAO/C,EAAOyC,EAAgBO,EAAWzE,GAAOmE,GAAe,GAC5FO,EAAmB,aAAaH,EAAO,QAAQ,CAAC,QAAQC,EAAO,QAAQ,CAAC,OAAaG,EAAmB3E,IAAQ,EAAE,GAAG0E,WAA4BD,KAAcC,EAAuBE,EAAUD,EAAmB,OAAGL,GAAgBA,IAAiB,SAAWF,GAAwBA,IAAyB,OAAQQ,EAAU,GAAGD,KAAsBE,GAAgBT,CAAsB,KAAKE,IAAuBM,EAAU,GAAGD,KAAsBL,KAA0BD,GAAmBA,IAAoB,OAAO,GAAGO,KAAaP,IAAoBO,CAAU,CAAC,SAASC,GAAgBC,EAAgB,CAA0vC,OAAxuCA,EAAgB,MAAM,eAAe,GAAG,CAAC,GAAsC,QAAQ,EAAE,IAAIF,GAAW,CAAC,GAAK,CAACG,EAAKC,CAAY,EAAEJ,EAAU,MAAM,kBAAkB,EAAE,MAAM,CAAC,EAAQK,EAAOD,EAAa,MAAM,GAAG,EAAE,IAAI5D,GAAGA,EAAE,KAAK,CAAC,EAAQ8D,EAAa9D,GAAG,CAAC,GAAK,CAAC+D,EAAEC,EAAKC,EAAIC,CAAI,EAAElE,EAAE,MAAM,wBAAwB,EAAE,MAAM,GAAGgE,EAAK,GAAG,MAAMC,IAAMC,GAAO,EAAE,OAAOP,EAAK,YAAY,EAAE,CAAC,IAAI,YAAY,IAAI,cAAc,IAAI,aAAa,IAAI,aAAa,IAAI,aAAa,MAAM,GAAGA,KAAQE,EAAO,IAAIC,CAAY,EAAE,KAAK,IAAI,KAAK,IAAI,QAAQ,IAAI,UAAU,MAAM,GAAGH,KAAQE,EAAO,IAAI7D,GAAG,EAAE,WAAWA,CAAC,CAAC,EAAE,KAAK,IAAI,KAAK,IAAI,SAAS,IAAI,SAAS,IAAI,SAAS,MAAM,GAAG2D,KAAQ,EAAE,WAAWE,EAAO,CAAC,CAAC,KAAK,IAAI,SAAS,IAAI,UAAU,IAAI,UAAU,IAAI,UAAU,MAAM,GAAGF,KAAQG,EAAaD,EAAO,CAAC,CAAC,KAAK,IAAI,WAAW,IAAMM,EAAaN,EAAO,IAAI,UAAU,EAAE,MAAM,GAAGF,KAAQQ,EAAa,CAAC,MAAMA,EAAa,CAAC,MAAMA,EAAa,CAAC,MAAML,EAAaD,EAAO,CAAC,CAAC,KAAK,IAAI,OAAO,IAAI,QAAQ,IAAI,QAAQ,MAAM,GAAGF,KAAQE,EAAO,IAAIC,CAAY,EAAE,KAAK,IAAI,KAAK,IAAI,SAAS,IAAI,WAAW,eAAQ,KAAK,aAAaH,yCAA4C,EAASH,EAAU,QAAQ,eAAQ,KAAK,+BAA+BG,wBAA2B,EAASH,CAAU,CAAC,CAAC,EAA4B,KAAK,GAAG,CAAE,CCpBx4D,IAAAY,GAAA,GAAAC,GAAAD,GAAA,wBAAAE,GAAA,OAAAC,GAAA,OAAAC,KAAO,IAAMC,GAAG,OAAoBC,GAAG,eAC1BC,GAAqB,CAAC,QAAU,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECAhL,IAAMC,GAAiB,CAAC,UAAUC,EAAe,EAAiB,SAARC,GAAmCC,EAAIC,EAAO,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAOF,CAAG,EAAE,GAAGG,EAAM,OAAOA,EAAOF,EAAOA,EAAO,SAAU,CCA8zB,IAAMG,GAAsBC,GAAcC,CAAQ,EAAQC,GAAoBC,EAASC,EAAc,EAAQC,GAAcF,EAASG,EAAQ,EAAQC,GAAmBJ,EAASK,CAAa,EAAQC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,EAAE,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAOD,GAAc,CAACA,EAAcE,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,IAAUC,GAAW,CAAC,CAAC,MAAAL,EAAM,SAAAM,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWV,GAAOO,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,MAAAC,EAAM,OAAAC,EAAO,OAAAC,EAAO,KAAAC,EAAK,GAAAC,EAAG,OAAAC,EAAO,KAAAC,EAAK,MAAAC,EAAM,UAAAC,EAAU,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUT,GAAQS,EAAM,UAAU,UAAUH,GAAOG,EAAM,WAAW,aAAa,UAAUF,GAAWE,EAAM,WAAW,GAAK,UAAUL,GAAQK,EAAM,UAAU,UAAUP,GAAMO,EAAM,UAAU,UAAUJ,GAAMI,EAAM,UAAU,UAAUV,GAAOU,EAAM,WAAW,OAAO,GAAUC,GAAuB,CAACD,EAAMjC,IAAeiC,EAAM,iBAAwBjC,EAAS,KAAK,GAAG,EAAEiC,EAAM,iBAAwBjC,EAAS,KAAK,GAAG,EAAUmC,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAzC,EAAQ,UAAA0C,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE7B,GAASW,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAA3D,CAAQ,EAAE4D,GAAgB,CAAC,eAAe,YAAY,gBAAAjE,GAAgB,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQgE,EAAiB3B,GAAuBD,EAAMjC,CAAQ,EAA4D8D,EAAkBC,EAAGnE,GAAkB,GAArE,CAAa8C,EAAS,CAAuE,EAAQsB,EAAWC,EAAO,IAAI,EAAQC,EAAQ5D,GAAO4C,CAAS,EAAQiB,EAAsBC,GAAM,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBpD,EAAKqD,GAAY,CAAC,GAAG5B,GAAUwB,EAAgB,SAAsBjD,EAAKC,GAAS,CAAC,QAAQnB,EAAS,QAAQ,GAAM,SAAsBkB,EAAKR,GAAW,CAAC,MAAMP,GAAY,SAAsBe,EAAKsD,GAAK,CAAC,KAAKzB,EAAU,OAAO,YAAY,aAAa,GAAM,aAAa,GAAK,SAAsB0B,EAAMrD,EAAO,EAAE,CAAC,GAAG+B,EAAU,GAAGI,EAAgB,UAAU,GAAGQ,EAAGD,EAAkB,iBAAiBpB,EAAUW,CAAU,kBAAkB,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIxB,GAAK2B,EAAK,MAAM,CAAC,eAAe,OAAO,gBAAgB,mBAAmB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,OAAO,qBAAqB,OAAO,GAAGvB,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,eAAe,YAAY,gBAAgB,qBAAqB,UAAU,oRAAoR,qBAAqB,WAAW,CAAC,EAAE,GAAG3C,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,CAAC,EAAEsD,EAAYI,CAAc,EAAE,SAAS,CAACN,GAAwBhC,EAAKwD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,IAA2BN,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,KAAKA,GAAmB,QAAQ,IAAI,IAAI,GAAG,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,UAAUA,GAAmB,QAAQ,IAAI,IAAI,cAAc,GAAGjE,GAAkBwC,CAAS,CAAC,EAAE,UAAU,gBAAgB,iBAAiBiB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,CAAC,CAAC,EAAEK,GAAsBhD,EAAKwD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,IAA2BN,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,KAAKA,GAAmB,QAAQ,IAAI,IAAI,GAAG,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,QAAQA,GAAmB,QAAQ,IAAI,IAAI,EAAE,GAAGjE,GAAkB6C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,EAAE,UAAU,gBAAgB,cAAc,GAAK,iBAAiBY,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2EAA2E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,CAAC,EAAeY,EAAMrD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiByC,EAAiB,SAAS,YAAY,SAAS,CAAc3C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiByC,EAAiB,SAAS,YAAY,SAAsB3C,EAAKjC,GAAsB,CAAC,sBAAsB,GAAK,SAAsBiC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKhB,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe4B,EAAMrD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiByC,EAAiB,SAAS,YAAY,SAAS,CAAcY,EAAMrD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiByC,EAAiB,SAAS,YAAY,SAAS,CAAc3C,EAAK0D,EAA0B,CAAC,SAAsB1D,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByC,EAAiB,SAAS,sBAAsB,SAAsB3C,EAAK5B,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,OAAO0D,EAAU,QAAQ,CAAC,WAAW,EAAE,YAAY,EAAE,KAAK,CAAC,WAAW,+CAA+C,SAAS,OAAO,UAAU,SAAS,WAAW,IAAI,cAAc,MAAM,WAAW,KAAK,EAAE,QAAQ,GAAM,YAAY,GAAG,QAAQ,EAAE,UAAU,2BAA2B,QAAQ,EAAE,SAAS,CAAC,EAAE,gBAAgB,8NAA8N,YAAY,2CAA2C,UAAU6B,GAAkB,KAAKvC,CAAY,GAAG,QAAQ,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepB,EAAK0D,EAA0B,CAAC,SAAsB1D,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByC,EAAiB,SAAS,sBAAsB,SAAsB3C,EAAK1B,GAAS,CAAC,MAAM,2BAA2B,OAAO,OAAO,WAAW,QAAQ,cAAc,MAAM,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiF,EAAMrD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiByC,EAAiB,SAAS,YAAY,SAAS,CAAc3C,EAAK0D,EAA0B,CAAC,SAAsB1D,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByC,EAAiB,SAAS,sBAAsB,SAAsB3C,EAAK5B,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,OAAO0D,EAAU,QAAQ,CAAC,WAAW,EAAE,YAAY,EAAE,KAAK,CAAC,WAAW,+CAA+C,SAAS,OAAO,UAAU,SAAS,WAAW,IAAI,cAAc,MAAM,WAAW,KAAK,EAAE,QAAQ,GAAM,YAAY,GAAG,QAAQ,EAAE,UAAU,2BAA2B,QAAQ,EAAE,SAAS,CAAC,EAAE,gBAAgB,8NAA8N,YAAY,2CAA2C,UAAU6B,GAAkB,KAAKvC,CAAY,GAAG,WAAW,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepB,EAAK0D,EAA0B,CAAC,SAAsB1D,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByC,EAAiB,SAAS,sBAAsB,SAAsB3C,EAAK1B,GAAS,CAAC,MAAM,2BAA2B,OAAO,OAAO,WAAW,QAAQ,cAAc,eAAe,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,0BAA0B,CAAC,CAAC,EAAe3C,EAAK/B,EAAS,CAAC,sBAAsB,GAAK,SAAsB+B,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,mDAAmD,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kBAAkB,EAAE,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,2BAA2B,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKf,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5B,EAAK0D,EAA0B,CAAC,SAAsB1D,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByC,EAAiB,SAAS,sBAAsB,kBAAkBtD,GAAmB,SAAsBW,EAAKxB,EAAc,CAAC,SAAS,CAAC,SAAS,EAAE,MAAM,CAAC,EAAE,SAAS,GAAG,QAAQ,GAAK,OAAO,OAAO,UAAU,EAAE,GAAG,YAAY,SAAS,YAAY,UAAU,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQoF,GAAI,CAAC,kFAAkF,gFAAgF,mWAAmW,yPAAyP,wOAAwO,yRAAyR,8QAA8Q,sKAAsK,0QAA0Q,kTAAkT,kJAAkJ,qKAAqK,gHAAgH,iHAAiH,4IAA4I,k4CAAk4C,GAAeA,GAAI,+bAA+b,EASrmgBC,GAAgBC,GAAQ7C,GAAU2C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,mBAAmBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,UAAU,CAAC,MAAM,SAAS,KAAKI,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,aAAa,gBAAgB,GAAM,YAAY,wBAAwB,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,QAAQ,gBAAgB,GAAM,YAAY,YAAY,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,GAAG,YAAY,kBAAkB,MAAM,UAAU,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,aAAa,KAAKA,EAAY,OAAO,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,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,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG3F,GAAoB,GAAGG,GAAc,GAAGE,GAAmB,GAAG4F,EAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT19FC,GAAU,UAAU,CAAC,QAAQ,aAAa,mBAAmB,cAAc,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,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,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,4lCAAsmC,EAAeC,GAAU,eCAt5OC,GAAU,UAAU,CAAC,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,4KAA4K,EAAeC,GAAU,eCA8lD,IAAMC,GAAsBC,GAAcC,CAAQ,EAAQC,GAAiBC,EAASC,EAAW,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAMC,GAAW,MAAM,QAAQA,CAAK,EAASA,EAAM,OAAO,EAA4BA,GAAQ,MAAMA,IAAQ,GAAWC,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAE,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWN,GAAOG,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAS,CAAC,CAAC,YAAAC,EAAY,OAAAC,EAAO,GAAAC,EAAG,UAAAC,EAAU,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUL,GAAaK,EAAM,WAAwBC,EAAYT,EAAS,CAAC,SAAS,CAAcH,EAAKE,EAAO,EAAE,CAAC,SAAS,GAAG,CAAC,EAAeF,EAAKE,EAAO,EAAE,CAAC,SAAS,uQAAuQ,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,SAAS,0BAA0B,CAAC,EAAeU,EAAMV,EAAO,EAAE,CAAC,SAAS,CAAC,+NAA4OF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAeF,EAAKE,EAAO,IAAI,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,MAAM,oBAAoB,MAAM,OAAO,MAAM,IAAI,sEAAsE,OAAO,sKAAsK,MAAM,CAAC,YAAY,WAAW,EAAE,MAAM,KAAK,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,SAAS,UAAU,CAAC,EAAeU,EAAMV,EAAO,EAAE,CAAC,SAAS,CAAC,yGAAsHF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAE,+GAA4HF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAeF,EAAKE,EAAO,IAAI,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,MAAM,oBAAoB,MAAM,OAAO,MAAM,IAAI,sEAAsE,OAAO,sKAAsK,MAAM,CAAC,YAAY,WAAW,EAAE,MAAM,KAAK,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,SAAS,cAAc,CAAC,EAAeU,EAAMV,EAAO,EAAE,CAAC,SAAS,CAAC,2GAAwHF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAE,aAA0BF,EAAKE,EAAO,GAAG,CAAC,SAAS,QAAQ,CAAC,EAAE,iHAA8HF,EAAKE,EAAO,OAAO,CAAC,SAAS,UAAU,CAAC,EAAE,2DAAwEF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,QAAQ,sBAAsB,qBAAqB,6BAA6B,MAAM,0BAA0B,MAAM,EAAE,SAAsBF,EAAKE,EAAO,GAAG,CAAC,kBAAkB,IAAI,SAAsBF,EAAKE,EAAO,EAAE,CAAC,SAAS,0EAA0E,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeF,EAAKE,EAAO,IAAI,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,MAAM,oBAAoB,MAAM,OAAO,MAAM,IAAI,sEAAsE,OAAO,sKAAsK,MAAM,CAAC,YAAY,WAAW,EAAE,MAAM,KAAK,CAAC,EAAeU,EAAMV,EAAO,EAAE,CAAC,SAAS,CAAcF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,QAAQ,sBAAsB,qBAAqB,6BAA6B,MAAM,0BAA0B,MAAM,EAAE,SAAsBF,EAAKE,EAAO,GAAG,CAAC,kBAAkB,IAAI,SAAsBF,EAAKE,EAAO,EAAE,CAAC,SAAS,qHAAqH,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeF,EAAKE,EAAO,IAAI,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,4DAA4D,qBAAqB,MAAM,oBAAoB,MAAM,OAAO,MAAM,IAAI,qEAAqE,OAAO,oKAAoK,MAAM,CAAC,YAAY,WAAW,EAAE,MAAM,KAAK,CAAC,EAAeU,EAAMV,EAAO,EAAE,CAAC,SAAS,CAAcF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,QAAQ,sBAAsB,qBAAqB,6BAA6B,MAAM,0BAA0B,MAAM,EAAE,SAAsBF,EAAKE,EAAO,GAAG,CAAC,kBAAkB,IAAI,SAAsBF,EAAKE,EAAO,EAAE,CAAC,SAAS,uDAAuD,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeF,EAAKE,EAAO,IAAI,CAAC,IAAI,GAAG,UAAU,eAAe,oBAAoB,6DAA6D,qBAAqB,MAAM,oBAAoB,MAAM,OAAO,MAAM,IAAI,sEAAsE,OAAO,sKAAsK,MAAM,CAAC,YAAY,WAAW,EAAE,MAAM,KAAK,CAAC,EAAeU,EAAMV,EAAO,EAAE,CAAC,SAAS,CAAcF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAE,wDAAqEF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAE,uFAAuF,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAUO,GAAWE,EAAM,WAAwBX,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,SAAsBF,EAAKE,EAAO,GAAG,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,QAAQE,GAAwBO,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUE,GAAuB,CAACF,EAAMzB,IAAeyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAEyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAU4B,GAA6BC,GAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAlC,EAAQ,UAAAmC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEpB,GAASM,CAAK,EAAO,CAAC,YAAAe,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA/C,CAAQ,EAAEgD,GAAgB,CAAC,WAAArD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQoD,EAAiBtB,GAAuBF,EAAMzB,CAAQ,EAAO,CAAC,sBAAAkD,GAAsB,MAAAC,EAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAgBH,GAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAgBL,GAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAmSS,GAAkBC,EAAG7D,GAAkB,GAA5S,CAAauC,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAwBA,EAAS,CAAuE,EAAQuB,EAAWC,EAAO,IAAI,EAAQC,EAAQxD,GAAMkC,CAAS,EAAQuB,EAAYxD,GAAWmC,IAAc,YAAmB,GAAanC,EAAcyD,EAAa,IAAQtB,IAAc,YAA6CuB,EAAsBC,GAAM,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBpD,EAAKqD,GAAY,CAAC,GAAG/B,GAAU2B,EAAgB,SAAsBjD,EAAKC,GAAS,CAAC,QAAQf,EAAS,QAAQ,GAAM,SAAsBc,EAAKR,GAAW,CAAC,MAAMH,GAAY,SAAsBuB,EAAMV,EAAO,IAAI,CAAC,GAAGuB,EAAU,GAAGI,EAAgB,UAAUc,EAAGD,GAAkB,iBAAiBrB,EAAUM,CAAU,EAAE,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAInB,GAAK4B,EAAK,MAAM,CAAC,GAAGxB,CAAK,EAAE,GAAGpC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAE0C,EAAYI,CAAc,EAAE,SAAS,CAACiB,EAAYD,CAAO,GAAgB9C,EAAKzB,GAAsB,CAAC,sBAAsB,GAAK,SAASgD,EAAU,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,QAAQ,cAAc,EAAE,iBAAiBY,EAAiB,SAAS,YAAY,wBAAwB,CAAC,EAAE,+BAA+B,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,+BAA+B,GAAG,+BAA+B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,IAAI,8BAA8B,EAAE,6BAA6B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEa,EAAa,GAAgBhD,EAAKvB,EAAS,CAAC,sBAAsB,GAAK,SAAS8C,EAAU,UAAU,eAAe,mBAAmB,OAAO,MAAM,CAAC,QAAQ,cAAc,EAAE,iBAAiBY,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,wBAAwB,CAAC,EAAE,+BAA+B,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,+BAA+B,GAAG,+BAA+B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,IAAI,8BAA8B,EAAE,6BAA6B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAenC,EAAKsD,EAA0B,CAAC,OAAO,GAAG,MAAMH,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,MAAM,EAAE,QAAQ,EAAE,OAAO,IAAI,SAAsBnD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKpB,GAAY,CAAC,UAAU,GAAK,UAAU,YAAY,OAAO,OAAO,GAAG,YAAY,UAAU,qBAAqB,SAAS,YAAY,UAAU,UAAU,UAAU,qEAAqE,UAAU,qCAAqC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,YAAY,UAAU2D,EAAgB,QAAQ,YAAY,MAAM,OAAO,GAAGvD,GAAqB,CAAC,UAAU,CAAC,UAAU,UAAU,UAAU,YAAY,UAAUyD,CAAe,CAAC,EAAEf,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQyB,GAAI,CAAC,kFAAkF,kFAAkF,wQAAwQ,wOAAwO,mKAAmK,wGAAwG,+WAA+W,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAiBA,EAAG,EASvueC,GAAgBC,GAAQ3C,GAAUyC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,sBAAsBA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,q3GAA63G,MAAM,cAAc,KAAKA,EAAY,QAAQ,EAAE,UAAU,CAAC,aAAa,qCAAqC,MAAM,aAAa,KAAKA,EAAY,QAAQ,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,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,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG9E,GAAiB,GAAGoF,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAsCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["MagneticHover", "props", "distance", "smoothing", "hoverArea", "enabled", "isCanvas", "RenderTarget", "id", "generateInstanceId", "transition", "mapRange", "mouseX", "useMotionValue", "mouseY", "x", "y", "springX", "useSpring", "springY", "scale", "springScale", "ref", "pe", "containerRef", "parentRef", "isHoveringRef", "transformRef", "motionTransformRef", "styleRef", "hasSpringRef", "previousXRef", "previousYRef", "previousChildrenXRef", "previousChildrenYRef", "previousChildrenScaleRef", "previousStyleTransformRef", "previousChildrenStyleTransformsRef", "ue", "unsubscribeX", "v", "unsubscribeY", "animationFrameId", "updateTransform", "xValue", "yValue", "computedStyle", "window", "parentTransform", "calculateTransform", "childrenStyles", "children", "scaleValue", "childrenXValue", "childrenYValue", "i", "child", "childComputedStyle", "childTransform", "container", "parent", "motion", "handleMouseMove", "event", "rect", "mouseXPos", "mouseYPos", "isHovering", "displacementX", "displacementY", "normalizedX", "normalizedY", "p", "addPropertyControls", "ControlType", "CHARACTERS", "se", "result", "value", "fromLow", "fromHigh", "toLow", "toHigh", "percentage", "element", "previousX", "previousY", "previousScale", "previousStyleTransform", "computedTransform", "styleTransform", "finalX", "finalY", "finalScale", "translateTransform", "transformWithScale", "transform", "invertTransform", "transformString", "func", "valuesString", "values", "invertNumber", "_", "sign", "num", "unit", "rotateValues", "KUqCMCA44_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v0", "v1", "__FramerMetadata__", "valuesByLocaleId", "KUqCMCA44_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "RichTextTruncatedText", "TruncatedText", "RichText2", "CounterDisplayFonts", "getFonts", "CounterDisplay", "PhosphorFonts", "Icon", "MagneticHoverFonts", "MagneticHover", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "negate", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "genre", "header", "height", "icon", "id", "pageID", "slug", "title", "useHeader", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "cuAuqx_2J", "hMa4vHIwB", "y5KcLseWd", "uDaihH6Qa", "pJzzPvWrv", "QEMH46BvV", "KfWMVikT6", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "visible", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "getLocalizedValue", "css", "FramerKUqCMCA44", "withCSS", "KUqCMCA44_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "RichTextTruncatedText", "TruncatedText", "RichText2", "ButtonBasicFonts", "getFonts", "mt2xHvQRr_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "isSet", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "description", "height", "id", "shortDesc", "width", "props", "u", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "t4nhgsaqH", "USTHLoqYD", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "v8nZYmfZNbsy5qq", "args", "v8nZYmfZN5wue6x", "scopingClassNames", "cx", "ref1", "pe", "visible", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "ComponentViewportProvider", "css", "FramernJLesFJUY", "withCSS", "nJLesFJUY_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
