{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/KiNCGvSmarlAwcVDwRbr/yxatN5S9jSXXLu0rZ7MG/crRz6nFcY-0.js", "ssg:https://framerusercontent.com/modules/KiNCGvSmarlAwcVDwRbr/yxatN5S9jSXXLu0rZ7MG/crRz6nFcY.js", "ssg:https://framerusercontent.com/modules/gHZUHwEAF9oz2fA7Fc08/p8c38MpqF7Nm5l3YrO1J/RWMPOGEvO.js", "ssg:https://framerusercontent.com/modules/Zm7mQih7cGtOkUgQaRqq/WBVVDuXRCMWNgJQDFuoa/crRz6nFcY.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-p3g6rg\",\"data-styles-preset\":\"k3BNRnFPn\",style:{\"--framer-text-alignment\":\"center\"},children:\"D\u016Fv\u011B\u0159uj\\xed n\\xe1m profesion\\xe1lov\\xe9 ze skv\u011Bl\\xfdch firem\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6807895)\nimport*as localizedValues from\"./crRz6nFcY-0.js\";const valuesByLocaleId={RGpTm4v4Z: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 (6807895)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-yZkXm\";const variantClassNames={WYyYinBKg:\"framer-v-ihrpbq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"WYyYinBKg\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ihrpbq\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"WYyYinBKg\",ref:ref??ref1,style:{...style},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ilawbe\",\"data-framer-name\":\"ardon\",fill:\"black\",intrinsicHeight:96,intrinsicWidth:100,layoutDependency:layoutDependency,layoutId:\"xas_Epmvd\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"Layer_2\" data-name=\"Layer 2\" viewBox=\"0 0 100.39 96.08\"><defs><style>.cls-1{stroke-width:0}</style></defs><g id=\"Layer_1-2\" data-name=\"Layer 1\"><path d=\"m90.96 55.25-8.94-9.27h-3.56v14.45h3.56v-9.25l8.94 9.25h3.57V45.98h-3.57v9.27zm-77.81-1.57H4.14V50.2c0-.36.3-.66.66-.66h8.35v4.13zM.58 50.2v10.22h3.57v-3.18h9.01v3.18h3.57V45.97H4.8c-2.33 0-4.23 1.9-4.23 4.23m23.32-.66h8.29c.36 0 .66.29.66.66v1.84c0 .36-.3.66-.66.66h-8.29v-3.16zm12.52 2.5V50.2c0-2.33-1.89-4.23-4.23-4.23H20.32v14.46h3.57v-4.17h4.32l4.14 4.17h4.78l-4.18-4.24c1.97-.36 3.47-2.08 3.47-4.15m15.85 4.17c0 .36-.29.66-.66.66h-8.29v-7.32h8.29c.36 0 .66.3.66.66v6zm-.66-10.23H39.75v14.46h11.86c2.33 0 4.23-1.9 4.23-4.23v-6c0-2.33-1.9-4.23-4.23-4.23m19.98 10.18c0 .36-.29.66-.66.66h-7.59c-.36 0-.66-.3-.66-.66V50.2c0-.36.3-.66.66-.66h7.59c.36 0 .66.3.66.66v5.96zm-.66-10.18h-7.59c-2.33 0-4.23 1.9-4.23 4.23v5.96c0 2.33 1.89 4.23 4.23 4.23h7.59c2.33 0 4.23-1.9 4.23-4.23v-5.96c0-2.33-1.9-4.23-4.23-4.23m26.83 1.47h1.2c.07 0 .13.06.13.13v.26c0 .07-.06.13-.13.13h-1.2v-.52zm1.23.93c.29-.02.52-.25.52-.54v-.26c0-.3-.25-.54-.55-.54h-1.6V49h.4v-.62h.7l.61.62h.53l-.61-.62z\" class=\"cls-1\"/><path d=\"M98.39 49.65c-.9 0-1.64-.73-1.64-1.64s.73-1.63 1.64-1.63 1.64.73 1.64 1.63-.73 1.64-1.64 1.64m0-3.63c-1.1 0-1.99.89-1.99 1.99S97.29 50 98.39 50s1.99-.89 1.99-1.99-.89-1.99-1.99-1.99M32.1 90.69v-1.47c0-1.15-.25-1.91-.73-2.19-.39-.24-.84-.28-2.42-.28-1.85 0-2.31.17-2.61 1.03-.17.52-.19.71-.19 2.95q0 1.96.08 2.5c.11.68.36 1.09.82 1.26.39.16.82.21 2.08.21 1.44 0 1.91-.06 2.27-.33.43-.3.68-1.11.68-2.19v-1.47zm-.08-4.99c.92.39 1.42 1.17 1.61 2.45.08.47.1.96.1 2.37 0 2.12-.03 2.54-.19 3.32-.21.92-.71 1.55-1.48 1.88-.68.28-1.33.36-2.84.36-1.74 0-2.34-.08-3.03-.38-.76-.33-1.23-.95-1.44-1.85-.17-.74-.21-1.15-.21-3.13 0-2.54.09-3.22.57-4.01.38-.63 1.03-1.06 1.91-1.23.38-.08 1.25-.13 2.18-.13 1.55 0 2.21.08 2.83.35m11.83-.25v7.18c0 1.28-.14 1.89-.54 2.42-.63.8-1.44 1.03-3.79 1.03-1.48 0-2.13-.08-2.7-.3-1.17-.47-1.53-1.2-1.53-3.08v-7.25h1.61v7.25c0 .73.06 1.12.21 1.36.27.47.87.63 2.38.63 2.45 0 2.75-.22 2.75-2.04v-7.2h1.61zm5.95 10.53H48.2V86.9h-3.22v-1.45h8.1v1.47l-3.27-.02v9.08zm9.14-1.39c1.06 0 1.74-.2 2.07-.65.41-.54.52-1.22.52-3.14 0-2.16-.1-2.76-.49-3.3-.33-.46-.88-.65-1.93-.65h-3.3v7.74h3.13zm-4.74-9.14h5.02c1.48 0 2.37.27 2.97.92.73.77.96 1.69.96 3.66 0 2.75-.09 3.61-.49 4.36-.4.79-.98 1.23-1.88 1.44-.44.1-.98.16-1.37.16h-5.21V85.46zm17.78 5.24v-1.47c0-1.15-.25-1.91-.73-2.19-.39-.24-.84-.28-2.42-.28-1.85 0-2.31.17-2.61 1.03-.17.52-.19.71-.19 2.95q0 1.96.08 2.5c.11.68.36 1.09.82 1.26.39.16.82.21 2.08.21 1.44 0 1.91-.06 2.27-.33.43-.3.68-1.11.68-2.19v-1.47zm-.08-4.99c.92.39 1.42 1.17 1.61 2.45.08.47.1.96.1 2.37 0 2.12-.03 2.54-.19 3.32-.21.92-.71 1.55-1.48 1.88-.68.28-1.33.36-2.84.36-1.74 0-2.34-.08-3.03-.38-.76-.33-1.23-.95-1.44-1.85-.17-.74-.21-1.15-.21-3.13 0-2.54.1-3.22.57-4.01.38-.63 1.03-1.06 1.91-1.23.38-.08 1.25-.13 2.18-.13 1.55 0 2.21.08 2.83.35m10.53 4.99v-1.47c0-1.15-.25-1.91-.73-2.19-.39-.24-.84-.28-2.42-.28-1.85 0-2.31.17-2.61 1.03-.17.52-.19.71-.19 2.95q0 1.96.08 2.5c.11.68.36 1.09.82 1.26.39.16.82.21 2.08.21 1.44 0 1.91-.06 2.27-.33.43-.3.68-1.11.68-2.19v-1.47zm-.08-4.99c.92.39 1.42 1.17 1.61 2.45.08.47.1.96.1 2.37 0 2.12-.03 2.54-.19 3.32-.21.92-.71 1.55-1.48 1.88-.68.28-1.33.36-2.84.36-1.74 0-2.34-.08-3.03-.38-.76-.33-1.23-.95-1.44-1.85-.17-.74-.2-1.15-.2-3.13 0-2.54.09-3.22.57-4.01.38-.63 1.03-1.06 1.91-1.23.38-.08 1.25-.13 2.18-.13 1.55 0 2.21.08 2.83.35m8.01 5.04c.71 0 1.17-.1 1.47-.32.41-.28.52-.63.52-1.55 0-1.23-.11-1.59-.57-1.85-.24-.13-.63-.19-1.15-.19h-3.4v3.9h3.13zm-4.74-5.29h5.1c2.42 0 3.25.8 3.25 3.08 0 2.02-.39 2.62-1.86 2.89v.05c1.15.06 1.75.77 1.74 2.04v2.48h-1.63v-2.13c.03-1.25-.52-1.77-1.78-1.72h-3.21v3.85h-1.61V85.46zm-70.1 9.24H3.88c-1.31-.01-1.72-.1-1.97-.39-.25-.32-.36-.85-.36-1.72 0-1.37.22-1.67 1.44-1.91l.89.75H15.3l2.88 2.4c-.41.77-.76.88-2.62.88m4.26-1.18c.13-.58.16-1.04.16-2.16v-.32h-1.44v1.42l-3.24-2.74H3.88l-.34-.29c-.74-.6-.84-.79-.84-1.5 0-.82.23-1.1 1.18-1.17l11.98-.02c1.5 0 1.67.17 1.69 1.58v.35h1.47c.02-.24.02-.51.02-.6 0-1.99-.74-2.61-3.17-2.61l-11.98.01c-2.08.09-2.71.73-2.71 2.56 0 .92.14 1.2.92 1.86-.81.14-1 .2-1.25.38-.58.41-.84 1.11-.84 2.35 0 1.39.28 2.27.87 2.73.57.45 1.31.61 3.01.63s11.88 0 11.88 0c1.53 0 2.07-.08 2.68-.39.36-.17.6-.43.84-.87l1.42 1.18.79-.99-1.67-1.4zM.59 67.29h93.95v.15H.59zm11.73 14.62H9.63L8.31 77c-.2-.73-.23-.86-.56-2.37h-.07l-.13.59c-.22.91-.27 1.11-.46 1.78l-1.36 4.91H3.07L.58 72.33h1.85l1.38 5.26c.13.52.2.82.46 2.1l.14.7h.06c.32-1.24.55-2.17.72-2.8l1.47-5.26H8.8l1.44 5.26c.23.85.25.93.52 2.1l.17.7h.06l.14-.7c.26-1.22.33-1.54.49-2.1l1.41-5.26h1.87l-2.57 9.58z\" class=\"cls-1\"/><path d=\"M9.93 81.52h2.09l2.36-8.8h-1.06l-1.33 4.97c-.15.54-.22.83-.48 2.08l-.21 1.01h-.68l-.35-1.45c-.18-.76-.22-.92-.41-1.64L8.5 72.72H6.95l-1.38 4.97c-.11.41-.25.95-.42 1.62l-.38 1.47h-.68l-.21-1.02c-.26-1.29-.33-1.59-.45-2.08l-1.3-4.96H1.08l2.28 8.8h2.06l1.31-4.71c.17-.6.23-.82.43-1.68l.2-.89h.7l.07.31c.33 1.5.36 1.62.56 2.35l1.24 4.63zm2.69.78H9.33l-1.4-5.2c-.1-.36-.16-.57-.23-.88-.07.26-.13.47-.22.8l-1.47 5.29H2.75L.07 71.94h2.66l1.46 5.55c.09.38.16.64.29 1.28.13-.51.24-.94.33-1.28l1.55-5.55h2.73l1.52 5.55c.16.58.21.8.32 1.25.12-.55.19-.84.31-1.25l1.48-5.54h2.68l-2.78 10.36zm6-4.79c0 1.68.07 2.11.42 2.51.27.32.7.39 2.17.39s1.8-.16 2.04-.85c.17-.47.19-.72.19-2.51 0-1.51 0-1.55-.07-2-.09-.56-.32-.92-.67-1.08-.32-.13-.68-.16-1.75-.16-1.16 0-1.55.07-1.85.37-.32.3-.44.8-.46 1.75v1.57zm5.04-4.96c.86.39 1.35 1.08 1.54 2.2.07.43.1.99.1 2.27 0 2.3-.09 2.93-.49 3.65-.34.6-.98 1.02-1.84 1.19-.39.09-1.15.13-2.08.13-1.42 0-2.14-.12-2.73-.43-.76-.42-1.15-1.04-1.32-2.1-.07-.44-.09-.91-.09-2.1 0-2.47.1-3.18.55-3.88.36-.56.99-.96 1.78-1.12.37-.09 1.16-.13 2.03-.13 1.37 0 2 .09 2.56.32\" class=\"cls-1\"/><path d=\"M20.94 74.21c-1.14 0-1.39.08-1.58.26-.23.22-.33.66-.35 1.48v1.56c0 1.64.07 1.97.32 2.26.15.17.46.25 1.87.25s1.52-.17 1.67-.59c.15-.41.17-.63.17-2.39 0-1.51 0-1.52-.07-1.93-.07-.42-.21-.68-.45-.78-.24-.1-.57-.13-1.6-.13m.27 6.6c-1.54 0-2.08-.07-2.47-.52-.44-.52-.51-1.09-.51-2.77v-1.57c.01-.9.12-1.59.58-2.04.41-.41.91-.48 2.12-.48 1.08 0 1.51.03 1.9.19.35.15.78.51.91 1.38.08.47.08.53.08 2.06 0 1.81-.01 2.11-.21 2.65-.34.95-.98 1.11-2.41 1.11m-.1-8.18c-.88 0-1.62.05-1.94.12-.69.14-1.24.48-1.54.95-.37.58-.48 1.17-.48 3.67 0 1.13.01 1.61.08 2.04.15.95.47 1.46 1.12 1.82.53.28 1.19.38 2.54.38.93 0 1.65-.04 2-.12.75-.15 1.3-.5 1.59-1.01.34-.6.44-1.13.44-3.46 0-1.21-.02-1.79-.1-2.21-.16-.98-.57-1.57-1.31-1.9-.52-.21-1.13-.28-2.4-.28m-.21 9.76c-1.49 0-2.26-.12-2.92-.48-.88-.48-1.33-1.19-1.52-2.38-.08-.48-.09-.96-.09-2.16 0-2.54.11-3.31.61-4.09.42-.66 1.14-1.12 2.04-1.3.53-.12 1.65-.14 2.1-.14 1.39 0 2.08.09 2.71.35h.01c.99.45 1.55 1.24 1.76 2.5.08.47.11 1.06.11 2.33 0 2.37-.1 3.05-.54 3.84-.41.71-1.13 1.19-2.1 1.38-.51.11-1.46.14-2.16.14m11.63-5.23c.58 0 .95-.09 1.16-.29.3-.24.37-.53.37-1.35 0-1.35-.23-1.61-1.41-1.61h-2.7v3.25h2.57zm-4.41-4.83h4.71c2.31 0 3.1.72 3.1 2.86 0 1.91-.33 2.43-1.72 2.7v.07c1.09.06 1.64.7 1.62 1.87v2.08h-1.85v-1.72c.03-1.05-.42-1.49-1.44-1.47h-2.59v3.19h-1.84v-9.58z\" class=\"cls-1\"/><path d=\"M30.32 76.76h2.18c.46 0 .77-.06.9-.18.17-.14.25-.24.25-1.07 0-1.18-.1-1.22-1.02-1.22h-2.31v2.47zm2.18.78h-2.96v-4.03h3.09c1.4 0 1.8.45 1.8 2 0 .85-.07 1.3-.52 1.65-.27.25-.71.37-1.41.37m1.84 3.98h1.07v-1.69c.01-.96-.39-1.43-1.25-1.48l-.37-.02v-.76l.32-.06c1.12-.22 1.41-.48 1.41-2.32s-.61-2.47-2.71-2.47h-4.32v8.8h1.06v-3.19h2.98c.62-.02 1.07.13 1.38.44.32.32.46.78.44 1.43v1.32zm1.85.78h-2.63v-2.11c.01-.42-.06-.71-.22-.87-.15-.15-.42-.22-.82-.21h-2.21v3.19h-2.62V71.93h5.1c2.55 0 3.49.88 3.49 3.25 0 1.38-.16 2.23-.97 2.71.58.37.88 1.02.87 1.94v2.47zm4.32-6.06h.86l3.18-3.9h2.27l-3.88 4.68 4.28 4.9h-2.33l-3.52-4.1h-.86v4.1h-1.84v-9.58h1.84v3.9z\" class=\"cls-1\"/><path d=\"M45.07 81.52h1.29l-3.93-4.5 3.56-4.3h-1.25l-3.18 3.91h-1.44v-3.91h-1.06v8.8h1.06v-4.1h1.43l3.52 4.1zm3.01.78h-3.37l-3.52-4.1h-.29v4.1h-2.62V71.94h2.62v3.91h.28l3.18-3.91h3.29l-4.2 5.07 4.63 5.3zm12.55-.39h-2.69L56.62 77c-.2-.73-.23-.86-.56-2.37h-.07l-.13.59c-.22.91-.27 1.11-.46 1.78l-1.36 4.91h-2.66l-2.49-9.58h1.85l1.38 5.26c.13.52.2.82.46 2.1l.14.7h.06c.32-1.24.55-2.17.72-2.8l1.47-5.26h2.14l1.44 5.26c.23.85.25.93.52 2.1l.17.7h.06l.14-.7c.26-1.22.33-1.54.49-2.1l1.41-5.26h1.87l-2.57 9.58z\" class=\"cls-1\"/><path d=\"M58.24 81.52h2.09l2.36-8.8h-1.06l-1.33 4.97c-.15.54-.22.83-.48 2.08l-.21 1.01h-.68l-.35-1.45c-.18-.76-.22-.92-.41-1.64l-1.36-4.97h-1.55l-1.38 4.97c-.11.41-.25.95-.42 1.62l-.38 1.47h-.68l-.21-1.02c-.26-1.29-.33-1.59-.45-2.08l-1.3-4.96h-1.05l2.28 8.8h2.06l1.31-4.71c.17-.6.23-.82.43-1.68l.19-.89h.7l.07.31c.33 1.5.36 1.62.56 2.35l1.24 4.63zm2.69.78h-3.29l-1.4-5.2c-.1-.36-.16-.57-.23-.88-.07.26-.13.47-.22.8l-1.47 5.29h-3.26l-2.69-10.36h2.66l1.46 5.55c.09.38.16.64.29 1.28.13-.51.24-.94.33-1.28l1.55-5.55h2.73l1.52 5.55c.16.58.21.8.32 1.25.12-.55.19-.84.31-1.25l1.48-5.54h2.68l-2.78 10.36zm6.45-5.96h4.47v1.35h-4.47v2.7h4.76v1.52h-6.6v-9.58h6.55v1.52h-4.71v2.49z\" class=\"cls-1\"/><path d=\"M65.93 81.52h5.81v-.74h-4.76V77.3h4.47v-.57h-4.47v-3.27h4.71v-.74h-5.77v8.8zm6.6.78h-7.38V71.94h7.33v2.3h-4.71v1.71h4.47v2.13h-4.47V80h4.76v2.3zm6.36-8.57-1.64 4.97h3.29l-1.65-4.97zm-2.07 6.34-.59 1.84H74.3l3.19-9.58h2.72l3.25 9.58h-1.88l-.62-1.84h-4.14z\" class=\"cls-1\"/><path d=\"M77.79 78.32H80l-1.11-3.34-1.1 3.34zm4.07 3.2h1.06l-2.98-8.8h-.97l2.12 6.38h-4.37l2.1-6.38h-1.04l-2.93 8.8h1.1l.59-1.84h4.7l.62 1.84zm2.15.78H81.3l-.62-1.84h-3.57l-.59 1.84h-2.75l3.45-10.36h3.28l3.51 10.36zm6.12-5.15c.57 0 .95-.09 1.16-.29.3-.24.37-.53.37-1.35 0-1.35-.23-1.61-1.41-1.61h-2.7v3.25h2.57zm-4.41-4.83h4.71c2.31 0 3.1.72 3.1 2.86 0 1.91-.33 2.43-1.72 2.7v.07c1.09.06 1.64.7 1.62 1.87v2.08h-1.85v-1.72c.03-1.05-.42-1.49-1.44-1.47h-2.59v3.19h-1.84v-9.58z\" class=\"cls-1\"/><path d=\"M87.95 76.76h2.18c.47 0 .77-.06.9-.18.17-.14.25-.24.25-1.07 0-1.18-.1-1.22-1.02-1.22h-2.31v2.47zm2.18.78h-2.96v-4.03h3.09c1.4 0 1.8.45 1.8 2 0 .85-.07 1.3-.52 1.65-.27.25-.71.37-1.41.37m1.84 3.98h1.07v-1.69c.01-.96-.39-1.43-1.25-1.48l-.37-.02v-.76l.32-.06c1.12-.22 1.41-.48 1.41-2.32s-.61-2.47-2.71-2.47h-4.32v8.8h1.06v-3.19h2.98c.61-.02 1.07.13 1.38.44.32.32.46.78.44 1.43v1.32zm1.85.78h-2.64v-2.11c.01-.42-.06-.71-.21-.87-.15-.15-.42-.22-.82-.21h-2.21v3.19h-2.62V71.93h5.1c2.55 0 3.49.88 3.49 3.25 0 1.38-.16 2.23-.97 2.71.58.36.88 1.02.87 1.94v2.47zM41.14 22.43c-.18-.28-.27-.6-.26-.91-.02-.09-.02-.18-.02-.27V16.3c0-.83-.31-1.87-1.77-2.07-.03 0-.06 0-.08-.01l-2.57-.49c-1.83 3.64-1.86 8.1.32 11.88.72 1.25 1.63 2.34 2.69 3.25.98-.23 3.06-.82 5.37-2.13a21.22 21.22 0 0 1-3.68-4.29m2.91-6.14v2.9c.54.2 1.61.47 3.5.47s2.98-.27 3.52-.48v-2.9c0-2.79 1.76-4.84 4.49-5.24l1.14-.22a12.514 12.514 0 0 0-9.15-3.98c-2.16 0-4.3.57-6.22 1.68-1.1.64-2.07 1.42-2.89 2.3l1.14.22c2.73.4 4.49 2.45 4.49 5.24m1.32 6.47c.69.79 1.42 1.48 2.16 2.09.74-.61 1.48-1.3 2.17-2.09-.63.07-1.35.12-2.18.12s-1.53-.04-2.16-.12m-2.21 8.29c.38.14.77.27 1.16.37 2.55.68 5.2.54 7.62-.37-1.3-.5-2.83-1.22-4.39-2.23a23.93 23.93 0 0 1-4.39 2.23m12.96-16.83s-.05.01-.08.01c-1.46.2-1.77 1.24-1.77 2.07v4.95c0 .09-.01.18-.02.27 0 .31-.08.63-.26.91a21.602 21.602 0 0 1-3.69 4.3c2.32 1.32 4.4 1.9 5.38 2.12 1.91-1.63 3.29-3.79 3.95-6.26.8-3 .47-6.12-.92-8.87l-2.58.49z\" class=\"cls-1\"/><path d=\"M62.72 23.42c-1.09 4.05-3.68 7.43-7.31 9.52-2.42 1.4-5.1 2.11-7.82 2.11-1.36 0-2.73-.18-4.09-.54a15.534 15.534 0 0 1-9.52-7.31c-4.33-7.49-1.75-17.1 5.74-21.43a15.58 15.58 0 0 1 11.9-1.57c4.05 1.08 7.43 3.68 9.52 7.31a15.58 15.58 0 0 1 1.57 11.9M61.85-.01H33.27c-2.79 0-5.07 2.28-5.07 5.07v28.58c0 2.79 2.28 5.07 5.07 5.07h28.58c2.79 0 5.07-2.28 5.07-5.07V5.07c0-2.79-2.28-5.07-5.07-5.07\" class=\"cls-1\"/></g></svg>',withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yZkXm.framer-3grbsa, .framer-yZkXm .framer-3grbsa { display: block; }\",\".framer-yZkXm.framer-ihrpbq { height: 96px; overflow: hidden; position: relative; width: 100px; }\",\".framer-yZkXm .framer-ilawbe { aspect-ratio: 1.0416666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 96px); left: 0px; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 96\n * @framerIntrinsicWidth 100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRWMPOGEvO=withCSS(Component,css,\"framer-yZkXm\");export default FramerRWMPOGEvO;FramerRWMPOGEvO.displayName=\"ardon\";FramerRWMPOGEvO.defaultProps={height:96,width:100};addFonts(FramerRWMPOGEvO,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRWMPOGEvO\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"96\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"100\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RWMPOGEvO.map", "// Generated by Framer (6807895)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Ie9I3Xm85ExIj5EYEQh1/RMoTvFIRhoV6TtxokNVj/k3BNRnFPn.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/KiNCGvSmarlAwcVDwRbr/yxatN5S9jSXXLu0rZ7MG/crRz6nFcY.js\";import Ardon from\"https://framerusercontent.com/modules/gHZUHwEAF9oz2fA7Fc08/p8c38MpqF7Nm5l3YrO1J/RWMPOGEvO.js\";const ArdonFonts=getFonts(Ardon);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"GCOL9eDsF\",\"H_miU7FeC\",\"xJHtKV51l\"];const serializationHash=\"framer-c5vdA\";const variantClassNames={GCOL9eDsF:\"framer-v-7smy3r\",H_miU7FeC:\"framer-v-gr8ycc\",xJHtKV51l:\"framer-v-vl4wg5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"GCOL9eDsF\",Phone:\"xJHtKV51l\",Tablet:\"H_miU7FeC\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"GCOL9eDsF\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"GCOL9eDsF\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);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-7smy3r\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"GCOL9eDsF\",ref:ref??ref1,style:{...style},...addPropertyOverrides({H_miU7FeC:{\"data-framer-name\":\"Tablet\"},xJHtKV51l:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-p3g6rg\",\"data-styles-preset\":\"k3BNRnFPn\",style:{\"--framer-text-alignment\":\"center\"},children:\"ALREADY tRUSTED BY Professionals from\"})}),className:\"framer-6y86ek\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eqou0Al62\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-m6eas6-container\",layoutDependency:layoutDependency,layoutId:\"gSrsivD0G-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:60,height:\"100%\",hoverFactor:0,id:\"gSrsivD0G\",layoutId:\"gSrsivD0G\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:21,intrinsicWidth:101,pixelHeight:42,pixelWidth:202,src:\"https://framerusercontent.com/images/eBg6mEEHzsFmgbXO6Wz17djxNs.webp\"},className:\"framer-2m7gc4\",\"data-framer-name\":\"passerinvest\",layoutDependency:layoutDependency,layoutId:\"unp9Z4NHg\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:98.5,intrinsicWidth:208.5,pixelHeight:197,pixelWidth:417,src:\"https://framerusercontent.com/images/C5hLPsYqJykha0NoBLwzuUYV8fw.webp\"},className:\"framer-4dmr0n\",\"data-framer-name\":\"2N\",layoutDependency:layoutDependency,layoutId:\"Yx738_ABg\",style:{filter:\"invert(1)\",WebkitFilter:\"invert(1)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:256,intrinsicWidth:256,pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/cN1J1eZVIcbS5HZhWOgaaC5vN6Q.webp\"},className:\"framer-1srbez0\",\"data-framer-name\":\"VW\",layoutDependency:layoutDependency,layoutId:\"gvHkorww1\",style:{filter:\"grayscale(1) invert(1)\",WebkitFilter:\"grayscale(1) invert(1)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:175,intrinsicWidth:256,pixelHeight:350,pixelWidth:512,src:\"https://framerusercontent.com/images/VbMCXP7GuEXCRhxDytfJPX3ss.webp\"},className:\"framer-mvswd9\",\"data-framer-name\":\"rohlik\",layoutDependency:layoutDependency,layoutId:\"ExkLrApgQ\",style:{filter:\"grayscale(1) invert(1)\",WebkitFilter:\"grayscale(1) invert(1)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:185.5,intrinsicWidth:256,pixelHeight:371,pixelWidth:512,src:\"https://framerusercontent.com/images/bNI1WpzOTVWr8Zmiu25ecJfRZfI.webp\"},className:\"framer-8hqsba\",\"data-framer-name\":\"eurowag\",layoutDependency:layoutDependency,layoutId:\"rhY3jgPnv\",style:{filter:\"grayscale(1) invert(1)\",WebkitFilter:\"grayscale(1) invert(1)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:52.5,intrinsicWidth:256,pixelHeight:105,pixelWidth:512,src:\"https://framerusercontent.com/images/vx95dwwXGHWtkg5IXovsOwuXvaw.webp\"},className:\"framer-ra3504\",\"data-framer-name\":\"progresus\",layoutDependency:layoutDependency,layoutId:\"S0qnZpAoJ\",style:{filter:\"grayscale(1) invert(1)\",WebkitFilter:\"grayscale(1) invert(1)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:38.5,intrinsicWidth:150,pixelHeight:77,pixelWidth:300,src:\"https://framerusercontent.com/images/OjyqaeSk8VuPYFj8EIcOeORiD2s.webp\"},className:\"framer-1ieva0\",\"data-framer-name\":\"builtech\",layoutDependency:layoutDependency,layoutId:\"ih_Ups_1g\",style:{filter:\"grayscale(1) invert(1)\",WebkitFilter:\"grayscale(1) invert(1)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:39,intrinsicWidth:150,pixelHeight:78,pixelWidth:300,src:\"https://framerusercontent.com/images/wxJX5qEzDPkxwu8D3l6gcLY94.webp\"},className:\"framer-1j34q9m\",\"data-framer-name\":\"se\",layoutDependency:layoutDependency,layoutId:\"powJGucN3\",style:{filter:\"grayscale(1) invert(1)\",WebkitFilter:\"grayscale(1) invert(1)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:44,intrinsicWidth:92.5,pixelHeight:88,pixelWidth:185,src:\"https://framerusercontent.com/images/uUfdyfNlustmBA9nIIFgBy9c0o.webp\"},className:\"framer-19whabn\",\"data-framer-name\":\"aero\",layoutDependency:layoutDependency,layoutId:\"c8eYu8UFI\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:14,intrinsicWidth:65.5,pixelHeight:28,pixelWidth:131,src:\"https://framerusercontent.com/images/W197jp20sriTdrNnsCA7jnGv8Wc.webp\"},className:\"framer-1w0tmch\",\"data-framer-name\":\"diageo\",layoutDependency:layoutDependency,layoutId:\"V4YGsNUwk\",style:{filter:\"invert(1)\",WebkitFilter:\"invert(1)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:76.5,intrinsicWidth:256,pixelHeight:153,pixelWidth:512,src:\"https://framerusercontent.com/images/8u7eUFUCIQyEUTat6uDJpLlzs.webp\"},className:\"framer-3rc356\",\"data-framer-name\":\"zmena\",layoutDependency:layoutDependency,layoutId:\"vm8W9NXaS\",style:{filter:\"grayscale(1) invert(1)\",WebkitFilter:\"grayscale(1) invert(1)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:160.5,intrinsicWidth:256,pixelHeight:321,pixelWidth:512,src:\"https://framerusercontent.com/images/9fTCC9x9quzLP7KDKqMsTlFwD7o.webp\"},className:\"framer-1kjsqbl\",\"data-framer-name\":\"orkla\",layoutDependency:layoutDependency,layoutId:\"oqFhkpaTE\",style:{filter:\"grayscale(1) invert(1)\",WebkitFilter:\"grayscale(1) invert(1)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:110,intrinsicWidth:150,pixelHeight:220,pixelWidth:300,src:\"https://framerusercontent.com/images/Zso3g8gx2r7HKfHT1Rnhl92ZQAU.webp\"},className:\"framer-17br32e\",\"data-framer-name\":\"bo\",layoutDependency:layoutDependency,layoutId:\"V_dBiaCOV\",style:{filter:\"invert(1)\",WebkitFilter:\"invert(1)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:60.5,intrinsicWidth:150,pixelHeight:121,pixelWidth:300,src:\"https://framerusercontent.com/images/VuqDuS0vndnm6f5Pv4CWBPBerZc.webp\"},className:\"framer-1uzpnty\",\"data-framer-name\":\"placek\",layoutDependency:layoutDependency,layoutId:\"SuQYEvbEr\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:28,intrinsicWidth:117.5,pixelHeight:56,pixelWidth:235,src:\"https://framerusercontent.com/images/flLqT3rCN7W4glr2WAVuiwq8lQQ.png\"},className:\"framer-hfgk61\",\"data-framer-name\":\"navzdory\",layoutDependency:layoutDependency,layoutId:\"lcl_tNiwz\",style:{filter:\"invert(1)\",WebkitFilter:\"invert(1)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:116.5,intrinsicWidth:256,pixelHeight:233,pixelWidth:512,src:\"https://framerusercontent.com/images/I6HeMQqjuQw7A3LrBYQ8XwB04tA.webp\"},className:\"framer-19kim3g\",\"data-framer-name\":\"panattoni\",layoutDependency:layoutDependency,layoutId:\"vvgLteMEZ\",style:{filter:\"grayscale(1) invert(1)\",WebkitFilter:\"grayscale(1) invert(1)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"84px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kjlp7x-container\",layoutDependency:layoutDependency,layoutId:\"ePhwbWg47-container\",style:{filter:\"grayscale(0) invert(1)\",WebkitFilter:\"grayscale(0) invert(1)\"},children:/*#__PURE__*/_jsx(Ardon,{height:\"100%\",id:\"ePhwbWg47\",layoutId:\"ePhwbWg47\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],speed:90,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-c5vdA.framer-wqs0w3, .framer-c5vdA .framer-wqs0w3 { display: block; }\",\".framer-c5vdA.framer-7smy3r { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 50px 0px 30px 0px; position: relative; width: 1400px; }\",\".framer-c5vdA .framer-6y86ek { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-c5vdA .framer-m6eas6-container { flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-c5vdA .framer-2m7gc4 { aspect-ratio: 4.809523809523809 / 1; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 94px; }\",\".framer-c5vdA .framer-4dmr0n { aspect-ratio: 2.116751269035533 / 1; height: var(--framer-aspect-ratio-supported, 38px); overflow: visible; position: relative; width: 79px; }\",\".framer-c5vdA .framer-1srbez0 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 80px); overflow: visible; position: relative; width: 80px; }\",\".framer-c5vdA .framer-mvswd9 { aspect-ratio: 1.4628571428571429 / 1; height: var(--framer-aspect-ratio-supported, 84px); overflow: visible; position: relative; width: 123px; }\",\".framer-c5vdA .framer-8hqsba { aspect-ratio: 1.3800539083557952 / 1; height: var(--framer-aspect-ratio-supported, 64px); overflow: visible; position: relative; width: 88px; }\",\".framer-c5vdA .framer-ra3504 { aspect-ratio: 4.876190476190477 / 1; height: var(--framer-aspect-ratio-supported, 44px); overflow: visible; position: relative; width: 212px; }\",\".framer-c5vdA .framer-1ieva0 { aspect-ratio: 3.896103896103896 / 1; height: var(--framer-aspect-ratio-supported, 36px); overflow: visible; position: relative; width: 139px; }\",\".framer-c5vdA .framer-1j34q9m { aspect-ratio: 3.8461538461538463 / 1; height: var(--framer-aspect-ratio-supported, 37px); overflow: visible; position: relative; width: 140px; }\",\".framer-c5vdA .framer-19whabn { aspect-ratio: 2.102272727272727 / 1; height: var(--framer-aspect-ratio-supported, 42px); overflow: visible; position: relative; width: 87px; }\",\".framer-c5vdA .framer-1w0tmch { aspect-ratio: 4.678571428571429 / 1; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 110px; }\",\".framer-c5vdA .framer-3rc356 { aspect-ratio: 3.34640522875817 / 1; height: var(--framer-aspect-ratio-supported, 42px); overflow: visible; position: relative; width: 141px; }\",\".framer-c5vdA .framer-1kjsqbl { aspect-ratio: 1.5950155763239875 / 1; height: var(--framer-aspect-ratio-supported, 71px); overflow: visible; position: relative; width: 113px; }\",\".framer-c5vdA .framer-17br32e { aspect-ratio: 1.3636363636363635 / 1; height: var(--framer-aspect-ratio-supported, 63px); overflow: visible; position: relative; width: 86px; }\",\".framer-c5vdA .framer-1uzpnty { aspect-ratio: 2.479338842975207 / 1; height: var(--framer-aspect-ratio-supported, 56px); overflow: visible; position: relative; width: 139px; }\",\".framer-c5vdA .framer-hfgk61 { aspect-ratio: 4.196428571428571 / 1; height: var(--framer-aspect-ratio-supported, 26px); overflow: visible; position: relative; width: 109px; }\",\".framer-c5vdA .framer-19kim3g { aspect-ratio: 2.1974248927038627 / 1; height: var(--framer-aspect-ratio-supported, 74px); overflow: visible; position: relative; width: 161px; }\",\".framer-c5vdA .framer-kjlp7x-container { height: 72px; position: relative; width: 84px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-c5vdA.framer-7smy3r { gap: 0px; } .framer-c5vdA.framer-7smy3r > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-c5vdA.framer-7smy3r > :first-child { margin-top: 0px; } .framer-c5vdA.framer-7smy3r > :last-child { margin-bottom: 0px; } }\",\".framer-c5vdA.framer-v-gr8ycc.framer-7smy3r { gap: 30px; padding: 30px 0px 30px 0px; width: 810px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-c5vdA.framer-v-gr8ycc.framer-7smy3r { gap: 0px; } .framer-c5vdA.framer-v-gr8ycc.framer-7smy3r > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-c5vdA.framer-v-gr8ycc.framer-7smy3r > :first-child { margin-top: 0px; } .framer-c5vdA.framer-v-gr8ycc.framer-7smy3r > :last-child { margin-bottom: 0px; } }\",\".framer-c5vdA.framer-v-vl4wg5.framer-7smy3r { padding: 30px 0px 30px 0px; width: 390px; }\",\".framer-c5vdA.framer-v-vl4wg5 .framer-m6eas6-container { height: 140px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 298\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"H_miU7FeC\":{\"layout\":[\"fixed\",\"auto\"]},\"xJHtKV51l\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercrRz6nFcY=withCSS(Component,css,\"framer-c5vdA\");export default FramercrRz6nFcY;FramercrRz6nFcY.displayName=\"references\";FramercrRz6nFcY.defaultProps={height:298,width:1400};addPropertyControls(FramercrRz6nFcY,{variant:{options:[\"GCOL9eDsF\",\"H_miU7FeC\",\"xJHtKV51l\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramercrRz6nFcY,[{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\"}]},...ArdonFonts,...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercrRz6nFcY\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1400\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"H_miU7FeC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xJHtKV51l\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"298\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "crRz6nFcY_0_exports", "__export", "__FramerMetadata__", "v0", "v0", "p", "x", "motion", "__FramerMetadata__", "valuesByLocaleId", "crRz6nFcY_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "SVG", "css", "FramerRWMPOGEvO", "withCSS", "RWMPOGEvO_default", "addFonts", "ArdonFonts", "getFonts", "RWMPOGEvO_default", "TickerFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "getLocalizedValue", "ComponentViewportProvider", "Image2", "css", "FramercrRz6nFcY", "withCSS", "crRz6nFcY_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
