{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/fONf9xpEnRB5fhZ36jxV/PFQw4hQn5StRPC8BS3iZ/NumberAnimator.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js", "ssg:https://framerusercontent.com/modules/9L5h7KSSe4fy8fNZNUyE/h8JfXXIIhcKgw8c0t6UG/KySwAZlTm.js"],
  "sourcesContent": ["import{jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useInView}from\"framer-motion\";import{useEffect,useState,useRef}from\"react\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function NumberAnimator(props){const ref=useRef(null);const isInView=useInView(ref,{once:!props.animation.replay,amount:\"some\"});const[numberText,setNumberText]=useState(\"\");const{start,end,decimals,commas,rounding,fontColor,animation}=props;const[currentAnimation,setCurrentAnimation]=useState(null);const isCanvas=RenderTarget.current()===RenderTarget.canvas;function formatNumber(value){let number=value;let numberString=number.toFixed(decimals);if(commas){numberString=numberString.replace(/\\B(?=(\\d{3})+(?!\\d))/g,\",\");}return numberString;}function runAnimation(){if(!isCanvas){if(currentAnimation){currentAnimation.stop();}setCurrentAnimation(animate(start,end,{...animation.transition,onUpdate:latest=>{setNumberText(formatNumber(latest));}}));}}useEffect(()=>{if(animation.trigger==\"appear\"){runAnimation();}setNumberText(formatNumber(start));},[]);useEffect(()=>{if(isInView&&animation.trigger==\"layerInView\"){runAnimation();}},[isInView]);useEffect(()=>{if(animation.trigger==\"layerInView\"){if(isInView){runAnimation();}else{if(currentAnimation){currentAnimation.stop();}setNumberText(formatNumber(start));}}},[isInView]);return /*#__PURE__*/_jsxs(motion.p,{ref:ref,style:{userSelect:props.textSelect?\"auto\":\"none\",fontVariantNumeric:`${props.monospace?\"tabular-nums \":\"\"}${props.slashedZeros?\"slashed-zero\":\"\"}`,margin:0,...fontColor.mode==\"solid\"?{color:fontColor.color}:{WebkitBackgroundClip:\"text\",WebkitTextFillColor:\"transparent\",backgroundImage:`linear-gradient(${fontColor.angle}deg, ${fontColor.startColor}, ${fontColor.endColor})`},...props.font,...props.style},children:[props.prefix,isCanvas?formatNumber(end):numberText,props.suffix]});}NumberAnimator.displayName=\"Animated Number Counter\";addPropertyControls(NumberAnimator,{start:{type:ControlType.Number,defaultValue:0},end:{type:ControlType.Number,defaultValue:100},decimals:{type:ControlType.Number,defaultValue:0,min:0,max:3,step:1},commas:{type:ControlType.Boolean,defaultValue:true},fontColor:{type:ControlType.Object,controls:{mode:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"gradient\"],optionTitles:[\"Solid\",\"Gradient\"],displaySegmentedControl:true},color:{type:ControlType.Color,defaultValue:\"#000\",hidden:props=>props.mode!=\"solid\"},startColor:{type:ControlType.Color,defaultValue:\"#000\",hidden:props=>props.mode!=\"gradient\"},endColor:{type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.mode!=\"gradient\"},angle:{type:ControlType.Number,defaultValue:180,min:-360,max:360,unit:\"\\xb0\",hidden:props=>props.mode!=\"gradient\"}}},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:16,lineHeight:1}},animation:{type:ControlType.Object,icon:\"effect\",controls:{trigger:{type:ControlType.Enum,defaultValue:\"layerInView\",options:[\"appear\",\"layerInView\"],optionTitles:[\"Appear\",\"Layer in View\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},replay:{type:ControlType.Boolean,defaultValue:true,hidden(props){return props.trigger!==\"layerInView\";}},transition:{type:ControlType.Transition}}},prefix:{type:ControlType.String},suffix:{type:ControlType.String},textSelect:{type:ControlType.Boolean,defaultValue:true},display:{type:ControlType.Object,buttonTitle:\"Options\",controls:{monospace:{type:ControlType.Boolean,defaultValue:false,description:\"Monospaced number characters.\"},slashedZeros:{type:ControlType.Boolean,defaultValue:false,description:\"Adds a diagonal slash through zeros if your font supports it.\"}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"NumberAnimator\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NumberAnimator.map", "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 MAX_AREA=5e6;const CSS_VAR_NAME=\"--ticker-offset\";const supportsWaapi=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";let supportsRegisterProperty=true;if(typeof window!==\"undefined\"){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){supportsRegisterProperty=false;}}/**\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 axis=isHorizontal?\"X\":\"Y\";const minus=direction===\"left\"||direction===\"top\"?\"-\":\"\";const transform=useTransform(()=>`translate${axis}(${minus}${offset.get()}px)`);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null,childrenArea: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;}const fullChildrenArea=size.childrenArea===null?null:size.childrenArea*(duplicateBy+1);const isLayerTooBig=fullChildrenArea===null?null:fullChildrenArea>MAX_AREA;/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const[firstChild,lastChild]=childrenRef;const childrenLeft=firstChild.current?firstChild.current.offsetLeft:0;const childrenRight=lastChild.current?lastChild.current.offsetLeft+lastChild.current.offsetWidth:0;const childrenTop=firstChild.current?firstChild.current.offsetTop:0;const childrenBottom=lastChild.current?lastChild.current.offsetTop+lastChild.current.offsetHeight:0;const childrenWidth=childrenRight-childrenLeft;const childrenHeight=childrenBottom-childrenTop;const childrenArea=childrenWidth*childrenHeight;const childrenLength=(isHorizontal?childrenWidth:childrenHeight)+gap;setSize({parent:parentLength,children:childrenLength,childrenArea});}},[]);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)})},index+\"-original\");});}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:isLayerTooBig===true?\"auto\":\"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(supportsWaapi&&(!isLayerTooBig||isLayerTooBig&&supportsRegisterProperty)){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed||isLayerTooBig===null){return;}if(isLayerTooBig){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){}}/**\n                 * If the layer is too big we want to animate a CSS variable instead of the transform\n                 * to avoid promoting the layer to the GPU.\n                 */const keyframes=isLayerTooBig?{[CSS_VAR_NAME]:[\"0px\",`${minus}${animateToValue}px`]}:{transform:[`translate${axis}(0px)`,`translate${axis}(${minus}${animateToValue}px)`]};animationRef.current=listRef.current.animate(keyframes,{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed,isLayerTooBig]);// 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||supportsWaapi){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||isLayerTooBig?\"auto\":\"transform\",transform:supportsWaapi?isLayerTooBig?`translate${axis}(var(${CSS_VAR_NAME}))`:\"none\":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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (0623976)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SVG,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/RLUeKLNmERbgkhrJQwKX/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-ln2uJ\";const variantClassNames={mUmjSABLk:\"framer-v-1rp2wpv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({gap,height,id,width,...props})=>{var _ref;return{...props,NZ91X_10a:(_ref=gap!==null&&gap!==void 0?gap:props.NZ91X_10a)!==null&&_ref!==void 0?_ref:104};};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,NZ91X_10a,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"mUmjSABLk\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1rp2wpv\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"mUmjSABLk\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ph6qsf-container\",layoutDependency:layoutDependency,layoutId:\"YFeypqcnM-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:NZ91X_10a,height:\"100%\",hoverFactor:.6,id:\"YFeypqcnM\",layoutId:\"YFeypqcnM\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kfpu4i\",layoutDependency:layoutDependency,layoutId:\"rmAwmU8lK\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-nwbfk7\",\"data-framer-name\":\"Group 1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"uOOzD19Wl\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 140 24\"><path d=\"M 42.066 12.005 L 42.291 12.155 C 40.572 14.396 38.554 16.339 36.238 17.833 L 36.163 17.833 C 36.163 17.833 35.117 16.488 34.594 15.891 C 32.577 13.425 30.56 10.884 28.468 8.419 C 27.197 6.85 25.927 5.281 24.657 3.786 C 24.209 3.263 23.686 2.89 23.088 2.591 C 22.49 2.292 21.818 2.142 21.145 2.142 C 20.473 2.142 19.8 2.292 19.203 2.591 C 18.605 2.89 18.082 3.263 17.634 3.786 C 16.363 5.281 15.093 6.85 13.823 8.419 C 11.806 10.884 9.788 13.425 7.696 15.891 C 7.248 16.563 6.127 17.908 6.127 17.983 L 6.052 17.983 C 3.736 16.339 1.719 14.396 0 12.155 L 0.224 12.005 C 0.822 11.557 1.42 11.183 2.017 10.735 C 5.978 8.045 10.012 5.355 13.972 2.665 C 16.064 1.246 18.53 0.424 21.07 0.424 L 21.369 0.424 C 23.91 0.424 26.375 1.246 28.468 2.665 C 32.428 5.43 36.462 8.12 40.422 10.81 C 41.02 11.258 41.618 11.632 42.216 12.08 Z M 21.145 23.213 C 19.8 23.288 18.455 23.138 17.185 22.914 C 17.26 22.615 17.335 22.391 17.335 22.092 C 17.932 17.983 18.53 13.798 19.128 9.689 C 19.277 9.016 19.352 8.269 19.501 7.597 C 19.501 7.149 19.726 6.775 20.024 6.476 C 20.323 6.252 20.697 6.028 21.145 6.028 C 21.594 6.028 21.967 6.177 22.266 6.476 C 22.565 6.775 22.789 7.149 22.789 7.597 C 22.938 8.269 23.088 9.016 23.163 9.689 C 23.76 13.798 24.358 17.983 24.956 22.092 C 25.031 22.316 25.105 22.615 25.105 22.914 C 23.835 23.138 22.565 23.213 21.22 23.213 Z M 72.252 4.907 L 72.252 7.373 C 72.252 8.792 71.58 9.614 70.235 9.614 C 67.993 9.764 66.947 11.034 66.947 13.499 L 66.947 23.213 L 62.39 23.213 L 62.39 13.574 C 62.464 7.821 65.603 4.907 71.58 4.907 Z M 104.531 23.213 C 103.036 23.138 102.289 22.391 102.289 20.971 L 102.289 11.631 C 102.214 9.764 101.168 8.867 99.151 8.867 C 97.134 8.867 96.162 9.764 96.088 11.631 L 96.088 23.213 L 91.53 23.213 L 91.53 12.528 C 91.53 7.447 94.07 4.907 99.226 4.907 C 104.381 4.907 106.847 7.447 106.847 12.528 L 106.847 23.213 Z M 117.531 19.701 C 119.399 19.701 120.371 19.178 120.371 17.982 C 120.371 16.787 118.802 16.339 115.813 15.816 C 111.853 15.143 109.91 13.35 109.835 10.585 C 109.835 6.775 112.824 4.982 116.934 4.907 C 119.175 4.907 121.043 5.43 122.313 6.401 C 123.658 7.447 124.331 8.867 124.406 10.735 L 121.566 10.735 C 120.52 10.735 119.848 10.361 119.624 9.614 C 119.325 8.867 118.428 8.419 116.934 8.419 C 115.439 8.419 114.319 8.867 114.319 9.764 C 114.319 10.66 115.439 11.333 117.756 11.781 C 120.744 12.379 122.762 13.126 123.733 14.022 C 124.107 14.471 124.48 14.919 124.63 15.442 C 124.854 15.965 124.929 16.563 124.929 17.161 C 124.929 21.494 121.492 23.138 116.859 23.138 C 112.226 23.138 112.525 22.615 111.33 21.569 C 109.985 20.598 109.312 19.029 109.312 17.011 L 113.87 17.011 C 113.945 18.954 115.365 19.626 117.531 19.626 Z M 129.86 4.907 C 131.354 4.907 132.027 5.654 132.027 7.074 L 132.027 23.213 L 127.543 23.213 L 127.543 4.907 Z M 129.86 0.424 C 131.354 0.424 132.101 1.171 132.027 2.591 L 132.027 3.637 L 127.543 3.637 L 127.543 0.349 L 129.86 0.349 Z M 139.648 2.665 L 139.648 23.213 L 135.165 23.213 L 135.165 0.424 L 137.481 0.424 C 138.079 0.424 138.602 0.648 139.05 1.096 C 139.424 1.545 139.648 2.068 139.648 2.665 Z M 81.144 19.925 C 82.937 20.075 83.908 19.029 84.132 17.46 C 84.132 16.936 84.132 15.069 84.132 14.471 C 83.086 14.919 82.414 14.994 81.069 15.293 C 79.35 15.592 78.379 16.264 78.379 17.46 C 78.379 18.804 79.724 19.776 81.069 19.925 Z M 88.84 9.838 L 88.84 15.965 C 88.84 16.488 88.765 16.936 88.765 17.46 C 88.391 21.718 85.552 23.437 81.069 23.288 C 77.034 23.213 74.195 21.195 73.896 17.684 L 73.896 17.161 C 74.27 13.425 77.258 12.379 81.517 11.93 C 83.46 11.706 84.431 11.034 84.431 10.062 C 84.282 9.091 83.086 8.568 81.517 8.568 C 79.948 8.568 79.052 9.016 78.827 9.838 L 74.344 9.838 C 74.867 6.551 76.436 4.982 81.293 4.982 C 86.15 4.982 88.69 6.551 88.765 9.838 Z M 56.86 9.539 L 55.291 9.539 L 55.291 14.919 C 55.291 17.235 56.263 18.58 58.355 18.805 L 59.027 18.805 L 59.027 23.213 L 58.355 23.213 C 54.395 23.138 51.63 20.747 50.958 16.862 C 50.958 16.787 50.958 16.638 50.958 16.563 C 50.808 16.04 50.808 15.592 50.808 15.069 L 50.808 0.424 L 53.124 0.424 C 54.32 0.424 55.291 1.47 55.291 2.665 L 55.291 4.907 L 59.102 4.907 L 59.102 7.447 C 59.102 8.718 58.131 9.465 56.86 9.465 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:9139084101,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19lsa95\",layoutDependency:layoutDependency,layoutId:\"eNbyVQIni\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1bi5i33\",\"data-framer-name\":\"Group\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"MQIrwevfq\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 143 30\"><path d=\"M 138.782 5.323 L 141.212 5.323 C 142.197 5.323 142.591 5.782 142.624 6.666 L 142.624 9.483 L 141.737 9.483 L 141.737 6.994 C 141.737 6.765 141.639 6.634 141.442 6.568 L 141.015 6.568 L 141.015 9.483 L 140.063 9.483 L 140.063 6.568 L 138.782 6.568 Z M 142.624 13.218 C 142.493 14.102 142.132 14.561 141.343 14.594 C 140.752 14.626 140.293 14.463 139.964 14.037 L 138.782 14.757 L 138.782 13.382 L 139.899 12.694 L 139.899 11.449 L 138.782 11.449 L 138.782 10.171 L 142.624 10.171 Z M 140.982 11.416 L 140.982 13.12 C 140.982 13.349 141.114 13.48 141.311 13.48 C 141.54 13.48 141.672 13.382 141.705 13.12 L 141.705 11.416 Z M 138.782 16.46 C 138.848 15.609 139.34 15.183 140.687 15.183 C 142.033 15.183 142.591 15.642 142.624 16.526 L 142.624 19.376 L 141.737 19.376 L 141.737 16.854 C 141.737 16.624 141.705 16.526 141.573 16.493 L 141.015 16.428 L 141.015 19.376 L 140.358 19.376 L 140.358 16.428 L 139.964 16.46 C 139.767 16.493 139.669 16.559 139.636 16.69 L 139.636 19.343 L 138.782 19.343 Z M 138.782 21.309 C 138.848 20.457 139.34 20.031 140.687 20.031 C 142.033 20.031 142.591 20.49 142.624 21.374 L 142.624 24.224 L 141.737 24.224 L 141.737 21.702 C 141.737 21.472 141.705 21.374 141.573 21.341 L 141.015 21.276 L 141.015 24.224 L 140.358 24.224 L 140.358 21.276 L 139.964 21.309 C 139.767 21.341 139.669 21.407 139.636 21.538 L 139.636 24.191 L 138.782 24.191 Z M 43.13 11.416 L 43.13 24.159 L 36.76 24.159 L 36.76 11.416 Z M 36.727 10.433 L 36.759 5.651 L 43.13 5.651 L 43.13 10.433 Z M 69.76 5.651 L 69.76 24.159 L 50.945 24.159 C 46.807 24.257 44.673 22.521 44.41 18.492 L 44.41 5.651 L 49.861 5.651 L 49.861 17.083 C 49.73 18.459 50.091 18.819 51.273 18.786 L 54.031 18.786 L 54.031 5.651 L 59.482 5.651 L 59.482 18.786 L 63.652 18.786 L 63.652 5.651 Z M 71.041 24.159 L 71.041 11.645 C 71.238 7.878 73.471 5.815 77.937 5.651 L 84.997 5.651 C 89.101 5.88 91.4 7.944 91.564 11.613 L 91.564 24.159 L 86.113 24.159 L 86.113 18.786 L 76.492 18.786 L 76.492 24.159 Z M 76.492 12.038 L 76.492 14.004 L 86.113 14.004 L 86.113 12.464 C 86.244 11.056 85.522 10.237 84.274 10.073 L 78.692 10.073 C 77.181 10.106 76.558 10.826 76.492 12.038 Z M 99.28 5.651 L 99.28 17.214 C 99.313 18.361 99.871 18.655 101.185 18.754 L 114.057 18.754 L 114.057 24.126 L 99.576 24.126 C 95.012 23.929 92.549 21.702 92.549 17.312 L 92.549 5.651 Z M 115.009 5.651 L 121.74 5.651 L 121.74 14.594 C 121.773 13.48 122.298 12.53 123.119 11.776 L 128.603 5.651 L 136.812 5.651 L 130.015 14.069 C 129.457 14.725 129.49 15.38 130.113 16.068 L 137.042 24.159 L 128.767 24.159 L 123.087 17.869 C 122.266 17.018 121.74 16.068 121.74 14.987 L 121.74 24.159 L 115.009 24.159 Z M 29.634 14.823 C 29.634 22.979 23.001 29.564 14.858 29.564 C 6.682 29.564 0.082 22.947 0.082 14.823 C 0.082 6.666 6.714 0.082 14.858 0.082 C 23.034 0.082 29.634 6.699 29.634 14.823 Z M 14.595 3.554 C 14.595 4.996 15.744 6.142 17.189 6.142 C 18.634 6.142 19.783 4.996 19.783 3.554 C 19.783 2.113 18.634 0.967 17.189 0.967 C 15.744 0.967 14.595 2.113 14.595 3.554 Z M 12.034 22.586 L 7.207 21.309 C 6.912 21.243 6.583 21.407 6.485 21.735 C 6.419 22.03 6.583 22.357 6.912 22.455 L 10.195 23.34 L 9.341 26.583 L 8.75 27.009 C 8.685 27.041 8.685 27.107 8.718 27.172 C 9.177 27.762 9.998 27.991 10.721 27.697 C 10.786 27.664 10.819 27.598 10.786 27.533 L 10.491 26.878 L 11.344 23.635 L 11.738 23.733 C 12.034 23.798 12.362 23.635 12.461 23.307 C 12.527 22.979 12.362 22.652 12.034 22.586 Z M 26.778 10.237 C 26.712 9.614 26.154 9.189 25.53 9.254 L 22.18 9.647 C 21.951 9.68 21.721 9.647 21.524 9.549 L 18.536 8.239 C 17.156 6.47 14.628 6.109 12.822 7.387 L 9.341 9.811 C 9.112 9.975 8.915 10.204 8.849 10.499 L 7.831 14.331 C 7.667 14.921 8.028 15.544 8.619 15.707 C 9.21 15.871 9.834 15.511 9.998 14.921 L 10.819 11.875 C 10.885 11.613 11.082 11.351 11.312 11.187 L 12.822 10.139 L 10.556 18.59 L 6.353 17.476 C 5.565 17.247 4.744 17.738 4.514 18.524 C 4.285 19.311 4.777 20.13 5.565 20.359 L 11.738 21.997 C 12.264 22.128 12.822 21.8 12.953 21.276 L 13.971 17.509 L 17.386 20.916 C 17.551 21.079 17.649 21.276 17.715 21.473 L 19.028 26.419 C 19.225 27.205 20.079 27.696 20.867 27.467 C 21.655 27.271 22.148 26.419 21.918 25.633 L 20.374 19.867 C 20.309 19.671 20.21 19.474 20.046 19.311 L 16.5 15.773 L 17.945 10.433 L 21.163 11.842 C 21.392 11.94 21.589 11.973 21.819 11.94 L 25.76 11.482 C 26.351 11.416 26.81 10.859 26.778 10.237 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:12632240014,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nosj5k\",layoutDependency:layoutDependency,layoutId:\"ul8cBxSBk\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1u2ha3z\",\"data-framer-name\":\"Group\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"L9qKtkqe9\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 77 34\"><path d=\"M 51.751 8.401 L 51.751 12.706 C 51.751 12.779 51.751 12.852 51.73 12.925 C 51.605 13.435 51.096 13.759 50.586 13.644 C 50.42 13.602 50.243 13.581 50.066 13.581 C 49.265 13.581 48.631 13.873 48.204 14.467 C 47.778 15.062 47.559 15.916 47.559 17.042 L 47.559 23.088 C 47.559 23.619 47.133 24.047 46.602 24.047 L 42.494 24.047 C 41.974 24.047 41.547 23.619 41.547 23.088 L 41.547 8.693 C 41.547 8.171 41.963 7.734 42.494 7.661 L 46.498 7.661 C 47.06 7.734 47.497 8.224 47.445 8.786 L 47.237 10.923 C 47.965 9.005 49.078 7.755 50.565 7.379 C 51.158 7.233 51.741 7.796 51.751 8.401 Z M 32.769 13.081 C 32.769 16.917 32.758 20.492 32.758 23.088 C 32.769 23.619 32.342 24.047 31.812 24.047 L 27.839 24.047 C 27.318 24.047 26.892 23.619 26.892 23.098 C 26.892 20.607 26.882 15.051 26.882 15.051 C 26.882 13.936 26.164 13.383 25.446 13.383 C 24.926 13.383 24.021 13.727 24.021 15.051 L 24.021 23.098 C 24.032 23.63 23.605 24.057 23.075 24.057 L 18.623 24.057 C 18.103 24.057 17.677 23.63 17.677 23.098 L 17.677 1.938 C 17.666 1.406 18.093 0.979 18.623 0.979 C 18.633 0.979 23.085 0.979 23.085 0.979 C 23.616 0.979 24.032 1.417 24.032 1.938 C 24.032 4.502 23.99 9.912 23.938 10.454 C 25.072 8.411 26.549 7.39 28.359 7.39 C 30.397 7.4 32.79 8.359 32.769 13.081 Z M 40.112 8.755 L 40.112 22.952 C 40.112 23.557 39.623 24.047 39.02 24.047 L 35.255 24.047 C 34.652 24.047 34.163 23.557 34.163 22.952 L 34.163 8.755 C 34.163 8.151 34.652 7.661 35.255 7.661 L 39.02 7.661 C 39.623 7.661 40.112 8.151 40.112 8.755 Z M 37.148 6.556 C 35.452 6.556 34.079 5.19 34.069 3.491 C 34.058 1.792 35.431 0.406 37.127 0.395 C 38.822 0.385 40.206 1.761 40.216 3.46 C 40.216 5.169 38.843 6.556 37.148 6.556 Z M 76.766 21.305 C 76.766 23.015 75.393 24.401 73.698 24.401 C 72.003 24.401 70.63 23.036 70.619 21.337 C 70.609 19.637 71.982 18.251 73.677 18.241 C 75.373 18.23 76.756 19.606 76.766 21.305 C 76.766 21.316 76.766 21.316 76.766 21.305 Z M 62.246 19.356 C 63.941 19.345 65.314 17.959 65.304 16.25 L 65.304 16.239 C 65.294 14.53 63.9 13.154 62.194 13.164 C 60.488 13.175 59.115 14.571 59.126 16.281 C 59.136 17.99 60.53 19.366 62.236 19.356 C 62.246 19.356 62.246 19.356 62.246 19.356 Z M 70.64 15.885 C 70.64 20.586 67.821 24.391 63.151 24.391 C 61.664 24.391 59.001 23.588 58.762 22.546 L 58.762 32.292 C 58.762 32.823 58.335 33.251 57.805 33.251 L 53.759 33.251 C 53.228 33.251 52.802 32.823 52.802 32.292 L 52.802 8.661 C 52.802 8.14 53.228 7.702 53.759 7.629 L 57.774 7.629 C 58.335 7.713 58.772 8.203 58.72 8.766 L 58.554 10.371 L 58.543 10.423 L 58.491 10.902 C 58.533 10.777 58.595 10.652 58.658 10.538 L 58.699 10.402 C 59.417 8.786 60.676 7.369 63.12 7.369 C 67.78 7.379 70.64 11.184 70.64 15.885 Z M 16.075 17.615 C 16.574 17.803 16.824 18.355 16.637 18.845 C 15.409 22.16 12.247 24.37 8.721 24.37 C 4.103 24.37 0.348 20.638 0.275 16 C 0.275 15.958 0.286 15.906 0.286 15.864 C 0.286 15.822 0.275 15.781 0.275 15.729 C 0.359 11.09 4.103 7.358 8.721 7.358 C 12.258 7.358 15.409 9.568 16.637 12.883 C 16.678 12.987 16.699 13.102 16.699 13.216 C 16.699 13.748 16.283 14.175 15.752 14.175 L 11.686 14.175 C 11.457 14.175 11.228 14.082 11.062 13.925 C 10.76 13.55 10.365 13.258 9.928 13.07 C 9.928 13.06 9.917 13.06 9.907 13.05 C 9.876 13.029 9.834 13.008 9.803 13.008 C 9.772 13.008 9.741 12.998 9.72 12.987 C 9.699 12.977 9.678 12.977 9.657 12.966 C 9.626 12.956 9.595 12.945 9.564 12.935 C 9.553 12.925 9.532 12.925 9.522 12.925 C 9.491 12.914 9.46 12.914 9.418 12.904 C 9.408 12.904 9.397 12.893 9.387 12.893 C 9.283 12.872 9.158 12.852 9.044 12.841 C 9.023 12.841 8.992 12.831 8.971 12.831 L 8.565 12.831 C 8.544 12.841 8.524 12.841 8.503 12.841 C 8.482 12.841 8.43 12.852 8.42 12.852 C 8.409 12.852 8.388 12.862 8.368 12.862 C 8.326 12.872 8.295 12.883 8.274 12.883 C 8.253 12.883 8.232 12.883 8.212 12.893 C 8.191 12.904 8.149 12.904 8.128 12.914 C 8.108 12.914 8.087 12.914 8.066 12.925 C 8.045 12.935 8.014 12.935 7.993 12.945 C 7.962 12.945 7.931 12.966 7.91 12.966 C 7.889 12.966 7.868 12.966 7.858 12.977 C 7.743 13.018 7.619 13.06 7.504 13.112 C 6.818 13.414 6.267 13.967 5.965 14.655 C 5.289 16.177 5.975 17.97 7.504 18.647 C 7.608 18.699 7.733 18.741 7.858 18.783 C 7.879 18.783 7.889 18.793 7.91 18.793 C 7.941 18.793 7.972 18.803 7.993 18.814 C 8.014 18.824 8.045 18.835 8.066 18.835 C 8.087 18.835 8.108 18.835 8.128 18.845 C 8.16 18.856 8.191 18.866 8.212 18.866 C 8.232 18.866 8.253 18.876 8.274 18.876 C 8.305 18.887 8.336 18.897 8.368 18.897 C 8.378 18.897 8.399 18.908 8.42 18.908 C 8.44 18.908 8.482 18.918 8.503 18.918 C 8.524 18.929 8.544 18.929 8.565 18.929 L 8.971 18.929 C 8.992 18.929 9.023 18.918 9.044 18.918 C 9.158 18.908 9.272 18.887 9.387 18.866 C 9.397 18.866 9.408 18.856 9.418 18.856 L 9.522 18.835 C 9.532 18.824 9.553 18.814 9.564 18.814 C 9.595 18.803 9.626 18.793 9.657 18.783 C 9.678 18.783 9.699 18.772 9.72 18.762 C 9.751 18.751 9.782 18.751 9.803 18.741 C 9.834 18.731 9.876 18.72 9.907 18.699 C 9.907 18.699 9.917 18.699 9.928 18.689 C 10.365 18.501 10.76 18.199 11.062 17.834 C 11.228 17.678 11.457 17.584 11.686 17.584 L 15.752 17.584 C 15.867 17.584 15.981 17.605 16.075 17.615 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:12250831034,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1129m2k\",layoutDependency:layoutDependency,layoutId:\"mpNEisJZM\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-uwh1wz\",\"data-framer-name\":\"Group 3\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"N2oeWJxLw\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 174 28\"><path d=\"M 38.574 17.498 C 38.202 17.349 37.68 17.349 37.307 17.498 L 19.117 26.892 C 18.744 27.041 18.222 27.115 17.849 26.892 L 1.225 19.735 C 0.852 19.586 0.852 19.288 1.225 19.139 L 37.382 0.725 C 37.754 0.576 38.276 0.576 38.649 0.725 L 74.805 19.139 C 75.178 19.288 75.104 19.586 74.805 19.735 L 58.181 26.892 C 57.808 27.041 57.286 27.041 56.914 26.892 L 38.723 17.498 M 163.147 26.072 L 173.808 26.072 L 173.808 23.686 L 165.682 23.686 L 165.682 9.372 L 163.147 9.372 Z M 145.851 26.072 L 156.512 26.072 L 156.512 23.686 L 148.386 23.686 L 148.386 9.372 L 145.851 9.372 Z M 134.52 26.072 L 137.055 26.072 L 137.055 9.372 L 134.52 9.372 Z M 123.188 26.072 L 125.723 26.072 L 125.723 9.372 L 123.188 9.372 L 123.188 16.529 L 116.553 16.529 L 116.553 9.372 L 114.019 9.372 L 114.019 26.072 L 116.553 26.072 L 116.553 18.766 L 123.188 18.766 Z M 92.772 26.072 L 94.859 26.072 L 98.065 14.069 L 101.271 26.072 L 103.358 26.072 L 107.533 9.372 L 104.849 9.372 L 102.24 21.226 L 98.96 9.372 L 97.096 9.372 L 93.89 21.226 L 91.281 9.372 L 88.597 9.372 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:11145517437,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pagrk7\",layoutDependency:layoutDependency,layoutId:\"VQ9z9fttD\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-wqbe8z\",\"data-framer-name\":\"Group 2\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"dUTbcfI7C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 140 22\"><path d=\"M 5.209 0.057 L 13.523 0.057 L 16.937 8.197 L 20.35 0.057 L 28.665 0.057 L 33.479 21.588 L 24.727 21.588 L 22.626 13.274 L 19.388 21.588 L 14.486 21.588 L 11.335 13.274 L 9.147 21.588 L 0.482 21.588 Z M 43.369 7.409 L 52.384 7.409 L 52.384 14.236 L 43.369 14.236 L 43.369 15.112 L 52.384 15.112 L 52.384 21.588 L 34.267 21.588 L 34.267 0.057 L 52.384 0.057 L 52.384 6.534 L 43.369 6.534 Z M 65.863 5.834 L 68.664 0.057 L 78.466 0.057 L 72.077 10.823 L 78.466 21.588 L 68.664 21.588 L 65.863 15.812 L 62.975 21.588 L 53.172 21.588 L 59.561 10.823 L 53.172 0.057 L 62.975 0.057 Z M 92.733 0.057 C 95.183 0.057 97.196 0.845 98.947 2.421 C 100.61 3.996 101.485 5.922 101.485 8.197 C 101.485 10.473 100.61 12.398 98.947 13.974 C 97.284 15.637 95.183 16.424 92.733 16.424 L 88.444 16.424 L 88.444 21.501 L 79.254 21.501 L 79.254 0.057 Z M 88.531 9.86 L 90.107 9.86 C 90.72 9.86 91.245 9.685 91.682 9.335 C 92.12 8.985 92.382 8.547 92.382 8.11 C 92.382 7.672 92.12 7.322 91.682 6.972 C 91.157 6.622 90.632 6.447 90.019 6.447 L 88.444 6.447 L 88.444 9.773 Z M 120.391 21.501 L 120.391 21.588 L 102.186 21.588 L 102.186 0.057 L 111.376 0.057 L 111.376 15.112 L 118.903 15.112 Z M 130.368 7.409 L 139.383 7.409 L 139.383 14.236 L 130.368 14.236 L 130.368 15.112 L 139.383 15.112 L 139.383 21.588 L 121.178 21.588 L 121.178 0.057 L 139.383 0.057 L 139.383 6.534 L 130.368 6.534 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:9506908090,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19fhpcn\",layoutDependency:layoutDependency,layoutId:\"dJahWKGq5\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1skvkfo\",\"data-framer-name\":\"Group 4\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"BSJsN6bwF\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 151 24\"><path d=\"M 87.214 19.482 L 29.623 19.482 L 29.623 23.495 L 87.214 23.495 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 28.619 19.482 L 20.325 19.482 L 20.325 23.495 L 28.619 23.495 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 19.388 19.482 L 12.164 19.482 L 12.164 23.495 L 19.388 23.495 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 11.228 19.482 L 6.613 19.482 L 6.613 23.495 L 11.228 23.495 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 5.676 19.482 L 2.733 19.482 L 2.733 23.495 L 5.676 23.495 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 1.797 19.482 L 0.058 19.482 L 0.058 23.495 L 1.797 23.495 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 90.157 23.495 L 89.087 23.495 L 89.087 19.415 L 90.826 19.415 L 91.495 22.425 L 92.164 19.415 L 93.903 19.415 L 93.903 23.495 L 92.833 23.495 L 92.833 20.686 L 92.164 23.495 L 91.027 23.495 L 90.358 20.686 L 90.358 23.495 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 96.913 22.425 C 97.047 22.224 97.114 21.957 97.114 21.622 C 97.114 21.288 97.114 20.953 96.913 20.753 C 96.78 20.552 96.512 20.485 96.244 20.485 C 95.977 20.485 95.709 20.552 95.576 20.753 C 95.442 20.953 95.375 21.288 95.375 21.622 C 95.375 21.957 95.375 22.291 95.576 22.425 C 95.709 22.625 95.977 22.692 96.244 22.692 C 96.512 22.692 96.78 22.625 96.913 22.425 Z M 94.773 23.094 C 94.505 22.692 94.305 22.224 94.305 21.422 C 94.305 20.619 94.439 20.218 94.773 19.816 C 95.107 19.415 95.576 19.281 96.178 19.281 C 96.78 19.281 97.382 19.415 97.649 19.816 C 97.984 20.084 98.117 20.619 98.117 21.422 C 98.117 22.224 97.984 22.692 97.649 23.094 C 97.315 23.495 96.847 23.629 96.245 23.629 C 95.642 23.629 95.107 23.495 94.84 23.094 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 99.856 22.692 L 100.525 22.692 C 100.726 22.692 100.927 22.692 100.993 22.625 C 101.06 22.625 101.127 22.492 101.127 22.358 C 101.127 22.224 101.127 22.157 100.993 22.09 C 100.927 22.09 100.659 22.024 100.458 22.024 L 99.856 22.024 L 99.856 22.826 M 99.856 21.02 L 100.458 21.02 C 100.659 21.02 100.86 21.02 100.927 20.953 C 100.993 20.953 101.06 20.82 101.06 20.686 C 101.06 20.552 101.06 20.485 100.927 20.485 C 100.793 20.485 100.726 20.418 100.458 20.418 L 99.856 20.418 L 99.856 21.087 Z M 98.719 19.415 L 100.993 19.415 C 101.395 19.415 101.662 19.482 101.796 19.615 C 101.93 19.749 102.131 20.017 102.131 20.351 C 102.131 20.686 102.064 20.953 101.796 21.087 C 101.662 21.221 101.328 21.288 101.06 21.288 C 101.462 21.288 101.662 21.422 101.863 21.488 C 102.064 21.622 102.197 21.957 102.197 22.224 C 102.197 22.492 102.131 22.826 101.863 23.027 C 101.662 23.161 101.328 23.294 100.86 23.294 L 98.786 23.294 L 98.786 19.147 L 98.719 19.147 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 102.666 19.415 L 103.736 19.415 L 103.736 23.495 L 102.666 23.495 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 104.538 23.495 L 104.538 19.415 L 105.608 19.415 L 105.608 22.559 L 107.08 22.559 L 107.08 23.495 L 104.471 23.495 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 107.75 19.415 L 108.753 19.415 L 108.753 23.495 L 107.75 23.495 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 110.425 20.351 L 109.288 20.351 L 109.288 19.415 L 112.633 19.415 L 112.633 20.351 L 111.495 20.351 L 111.495 23.495 L 110.425 23.495 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 114.438 22.023 L 112.9 19.482 L 114.104 19.482 L 114.973 21.154 L 115.776 19.482 L 116.98 19.482 L 115.442 22.023 L 115.442 23.629 L 114.438 23.629 L 114.438 22.09 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 4.272 12.793 C 4.405 13.194 4.472 13.328 4.673 13.328 L 23.402 13.328 L 24.004 12.726 L 24.004 11.856 L 10.158 11.856 L 10.158 7.843 L 27.951 7.843 L 27.951 13.729 C 27.951 16.405 27.081 17.809 25.141 17.809 L 2.8 17.809 C 1.061 17.809 0.191 16.472 0.191 13.729 L 0.191 5.769 C 0.191 3.428 0.994 2.224 2.8 2.224 L 28.017 2.224 L 28.017 6.505 L 4.606 6.505 C 4.405 6.505 4.205 6.84 4.205 7.308 L 4.205 12.86\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 83.268 17.743 L 83.268 7.107 C 83.201 6.974 83.067 6.84 83.001 6.639 C 82.934 6.572 82.867 6.505 82.8 6.438 L 64.004 6.438 C 63.937 6.438 63.803 6.773 63.603 7.107 L 63.603 17.743 L 59.523 17.743 L 59.523 6.238 C 59.523 3.562 60.392 2.157 62.131 2.157 L 84.539 2.157 C 86.412 2.157 87.348 3.495 87.348 6.238 L 87.348 17.743 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 112.9 17.743 L 112.9 7.107 C 112.833 6.974 112.699 6.84 112.565 6.639 C 112.498 6.572 112.431 6.505 112.364 6.438 L 93.569 6.438 C 93.502 6.438 93.368 6.773 93.167 7.107 L 93.167 17.743 L 89.087 17.743 L 89.087 6.238 C 89.087 3.562 90.023 2.157 91.696 2.157 L 114.104 2.157 C 115.976 2.157 116.913 3.495 116.913 6.238 L 116.913 17.743 L 112.833 17.743\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 121.061 13.395 C 119.255 13.395 118.452 12.057 118.452 9.382 L 118.452 2.157 L 122.466 2.157 L 122.466 8.445 C 122.466 8.98 122.8 9.181 123.134 9.181 L 141.997 9.181 C 142.332 8.98 142.465 8.646 142.532 8.111 L 142.532 2.091 L 146.345 2.091 L 146.345 9.515 C 146.345 12.057 145.542 13.261 143.803 13.261 L 121.061 13.261\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 118.719 23.495 L 118.719 19.415 L 133.903 19.415 C 134.171 19.147 134.371 18.813 134.438 18.345 L 134.438 14.465 L 138.251 14.465 L 138.251 19.749 C 138.251 22.224 137.448 23.495 135.709 23.495 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 57.649 12.191 L 57.649 6.305 C 57.649 3.629 56.78 2.224 54.84 2.224 L 32.432 2.224 C 30.693 2.224 29.823 3.562 29.823 6.305 L 29.823 14.264 C 29.823 16.672 30.693 17.809 32.432 17.809 L 57.649 17.809 L 57.649 13.529 L 34.305 13.529 C 34.104 13.529 33.904 13.395 33.904 12.86 L 33.904 12.124 L 57.582 12.124 M 33.97 7.241 C 34.104 6.84 34.171 6.706 34.372 6.706 L 53.101 6.706 L 53.703 7.308 L 53.703 8.177 L 33.97 8.177 L 33.97 7.174 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 146.879 2.157 L 146.879 0.351 L 146.21 0.351 L 146.21 0.017 L 147.95 0.017 L 147.95 0.351 L 147.281 0.351 L 147.281 2.157 L 146.812 2.157 Z\" fill=\"rgb(0, 0, 0)\"></path><path d=\"M 148.351 2.157 L 148.351 0.017 L 149.02 0.017 L 149.354 1.488 L 149.756 0.017 L 150.425 0.017 L 150.425 2.157 L 149.956 2.157 L 149.956 0.418 L 149.555 2.157 L 149.087 2.157 L 148.619 0.418 L 148.619 2.157 L 148.15 2.157 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>',svgContentId:8897753335,withExternalLayout:true})})],speed:70,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ln2uJ.framer-8tqov7, .framer-ln2uJ .framer-8tqov7 { display: block; }\",\".framer-ln2uJ.framer-1rp2wpv { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-ln2uJ .framer-ph6qsf-container { flex: none; height: 42px; position: relative; width: 100%; }\",\".framer-ln2uJ .framer-1kfpu4i { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 140px; }\",\".framer-ln2uJ .framer-nwbfk7 { flex: none; height: 24px; position: relative; width: 140px; }\",\".framer-ln2uJ .framer-19lsa95 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 143px; }\",\".framer-ln2uJ .framer-1bi5i33 { flex: none; height: 30px; position: relative; width: 143px; }\",\".framer-ln2uJ .framer-1nosj5k { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 34px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 77px; }\",\".framer-ln2uJ .framer-1u2ha3z { flex: none; height: 34px; position: relative; width: 77px; }\",\".framer-ln2uJ .framer-1129m2k { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 28px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 174px; }\",\".framer-ln2uJ .framer-uwh1wz { flex: none; height: 28px; position: relative; width: 174px; }\",\".framer-ln2uJ .framer-pagrk7 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 22px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 140px; }\",\".framer-ln2uJ .framer-wqbe8z { flex: none; height: 22px; position: relative; width: 140px; }\",\".framer-ln2uJ .framer-19fhpcn { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 151px; }\",\".framer-ln2uJ .framer-1skvkfo { flex: none; height: 24px; position: relative; width: 151px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ln2uJ.framer-1rp2wpv, .framer-ln2uJ .framer-1kfpu4i, .framer-ln2uJ .framer-19lsa95, .framer-ln2uJ .framer-1nosj5k, .framer-ln2uJ .framer-1129m2k, .framer-ln2uJ .framer-pagrk7, .framer-ln2uJ .framer-19fhpcn { gap: 0px; } .framer-ln2uJ.framer-1rp2wpv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ln2uJ.framer-1rp2wpv > :first-child { margin-top: 0px; } .framer-ln2uJ.framer-1rp2wpv > :last-child { margin-bottom: 0px; } .framer-ln2uJ .framer-1kfpu4i > *, .framer-ln2uJ .framer-19lsa95 > *, .framer-ln2uJ .framer-1nosj5k > *, .framer-ln2uJ .framer-1129m2k > *, .framer-ln2uJ .framer-pagrk7 > *, .framer-ln2uJ .framer-19fhpcn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ln2uJ .framer-1kfpu4i > :first-child, .framer-ln2uJ .framer-19lsa95 > :first-child, .framer-ln2uJ .framer-1nosj5k > :first-child, .framer-ln2uJ .framer-1129m2k > :first-child, .framer-ln2uJ .framer-pagrk7 > :first-child, .framer-ln2uJ .framer-19fhpcn > :first-child { margin-left: 0px; } .framer-ln2uJ .framer-1kfpu4i > :last-child, .framer-ln2uJ .framer-19lsa95 > :last-child, .framer-ln2uJ .framer-1nosj5k > :last-child, .framer-ln2uJ .framer-1129m2k > :last-child, .framer-ln2uJ .framer-pagrk7 > :last-child, .framer-ln2uJ .framer-19fhpcn > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"NZ91X_10a\":\"gap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKySwAZlTm=withCSS(Component,css,\"framer-ln2uJ\");export default FramerKySwAZlTm;FramerKySwAZlTm.displayName=\"Logo Ticker 2\";FramerKySwAZlTm.defaultProps={height:200,width:1440};addPropertyControls(FramerKySwAZlTm,{NZ91X_10a:{defaultValue:104,title:\"Gap\",type:ControlType.Number}});addFonts(FramerKySwAZlTm,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKySwAZlTm\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"NZ91X_10a\\\":\\\"gap\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KySwAZlTm.map"],
  "mappings": "wbAGkB,SAARA,GAAgCC,EAAM,CAAC,IAAMC,EAAIC,EAAO,IAAI,EAAQC,EAASC,GAAUH,EAAI,CAAC,KAAK,CAACD,EAAM,UAAU,OAAO,OAAO,MAAM,CAAC,EAAO,CAACK,EAAWC,CAAa,EAAEC,EAAS,EAAE,EAAO,CAAC,MAAAC,EAAM,IAAAC,EAAI,SAAAC,EAAS,OAAAC,EAAO,SAAAC,EAAS,UAAAC,EAAU,UAAAC,CAAS,EAAEd,EAAW,CAACe,EAAiBC,CAAmB,EAAET,EAAS,IAAI,EAAQU,EAASC,EAAa,QAAQ,IAAIA,EAAa,OAAO,SAASC,EAAaC,EAAM,CAAkB,IAAIC,EAAVD,EAA8B,QAAQV,CAAQ,EAAE,OAAGC,IAAQU,EAAaA,EAAa,QAAQ,wBAAwB,GAAG,GAAUA,CAAa,CAAC,SAASC,GAAc,CAAKL,IAAaF,GAAkBA,EAAiB,KAAK,EAAGC,EAAoBO,GAAQf,EAAMC,EAAI,CAAC,GAAGK,EAAU,WAAW,SAASU,GAAQ,CAAClB,EAAca,EAAaK,CAAM,CAAC,CAAE,CAAC,CAAC,CAAC,EAAG,CAAC,OAAAC,EAAU,IAAI,CAAIX,EAAU,SAAS,UAAUQ,EAAa,EAAGhB,EAAca,EAAaX,CAAK,CAAC,CAAE,EAAE,CAAC,CAAC,EAAEiB,EAAU,IAAI,CAAItB,GAAUW,EAAU,SAAS,eAAeQ,EAAa,CAAG,EAAE,CAACnB,CAAQ,CAAC,EAAEsB,EAAU,IAAI,CAAIX,EAAU,SAAS,gBAAkBX,EAAUmB,EAAa,GAAWP,GAAkBA,EAAiB,KAAK,EAAGT,EAAca,EAAaX,CAAK,CAAC,GAAI,EAAE,CAACL,CAAQ,CAAC,EAAsBuB,EAAMC,EAAO,EAAE,CAAC,IAAI1B,EAAI,MAAM,CAAC,WAAWD,EAAM,WAAW,OAAO,OAAO,mBAAmB,GAAGA,EAAM,UAAU,gBAAgB,KAAKA,EAAM,aAAa,eAAe,KAAK,OAAO,EAAE,GAAGa,EAAU,MAAM,QAAQ,CAAC,MAAMA,EAAU,KAAK,EAAE,CAAC,qBAAqB,OAAO,oBAAoB,cAAc,gBAAgB,mBAAmBA,EAAU,aAAaA,EAAU,eAAeA,EAAU,WAAW,EAAE,GAAGb,EAAM,KAAK,GAAGA,EAAM,KAAK,EAAE,SAAS,CAACA,EAAM,OAAOiB,EAASE,EAAaV,CAAG,EAAEJ,EAAWL,EAAM,MAAM,CAAC,CAAC,CAAE,CAACD,GAAe,YAAY,0BAA0B6B,EAAoB7B,GAAe,CAAC,MAAM,CAAC,KAAK8B,EAAY,OAAO,aAAa,CAAC,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,aAAa,GAAG,EAAE,SAAS,CAAC,KAAKA,EAAY,OAAO,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,QAAQ,aAAa,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,SAAS,CAAC,KAAK,CAAC,KAAKA,EAAY,KAAK,aAAa,QAAQ,QAAQ,CAAC,QAAQ,UAAU,EAAE,aAAa,CAAC,QAAQ,UAAU,EAAE,wBAAwB,EAAI,EAAE,MAAM,CAAC,KAAKA,EAAY,MAAM,aAAa,OAAO,OAAO7B,GAAOA,EAAM,MAAM,OAAO,EAAE,WAAW,CAAC,KAAK6B,EAAY,MAAM,aAAa,OAAO,OAAO7B,GAAOA,EAAM,MAAM,UAAU,EAAE,SAAS,CAAC,KAAK6B,EAAY,MAAM,aAAa,OAAO,OAAO7B,GAAOA,EAAM,MAAM,UAAU,EAAE,MAAM,CAAC,KAAK6B,EAAY,OAAO,aAAa,IAAI,IAAI,KAAK,IAAI,IAAI,KAAK,OAAO,OAAO7B,GAAOA,EAAM,MAAM,UAAU,CAAC,CAAC,EAAE,KAAK,CAAC,KAAK,OAAO,SAAS,WAAW,gBAAgB,aAAa,aAAa,CAAC,SAAS,GAAG,WAAW,CAAC,CAAC,EAAE,UAAU,CAAC,KAAK6B,EAAY,OAAO,KAAK,SAAS,SAAS,CAAC,QAAQ,CAAC,KAAKA,EAAY,KAAK,aAAa,cAAc,QAAQ,CAAC,SAAS,aAAa,EAAE,aAAa,CAAC,SAAS,eAAe,EAAE,wBAAwB,GAAK,0BAA0B,UAAU,EAAE,OAAO,CAAC,KAAKA,EAAY,QAAQ,aAAa,GAAK,OAAO7B,EAAM,CAAC,OAAOA,EAAM,UAAU,aAAc,CAAC,EAAE,WAAW,CAAC,KAAK6B,EAAY,UAAU,CAAC,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,MAAM,EAAE,OAAO,CAAC,KAAKA,EAAY,MAAM,EAAE,WAAW,CAAC,KAAKA,EAAY,QAAQ,aAAa,EAAI,EAAE,QAAQ,CAAC,KAAKA,EAAY,OAAO,YAAY,UAAU,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,QAAQ,aAAa,GAAM,YAAY,+BAA+B,EAAE,aAAa,CAAC,KAAKA,EAAY,QAAQ,aAAa,GAAM,YAAY,+DAA+D,CAAC,CAAC,CAAC,CAAC,ECHpiG,IAAMC,GAAqB,IAAUC,GAAS,IAAUC,GAAa,kBAAwBC,GAAc,OAAO,UAAY,KAAa,OAAO,UAAU,UAAU,oBAAqB,WAAeC,GAAyB,GAAK,GAAG,OAAOC,EAAS,IAAa,GAAG,CAACA,EAAO,IAAI,iBAAiB,CAAC,KAAKH,GAAa,OAAO,WAAW,aAAa,MAAM,SAAS,EAAK,CAAC,CAAE,MAAC,CAASE,GAAyB,EAAM,CASxwB,SAARE,EAAwBC,EAAM,CAAY,GAAG,CAAC,MAAAC,EAAM,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,MAAAC,EAAM,YAAAC,EAAY,UAAAC,EAAU,UAAAC,EAAU,cAAAC,EAAc,YAAAC,EAAY,MAAAC,CAAK,EAAEf,EAAW,CAAC,YAAAgB,EAAY,SAAAC,EAAS,UAAAC,EAAU,UAAAC,EAAU,UAAAC,CAAS,EAAEN,EAAiB,CAAC,UAAAO,EAAU,WAAAC,CAAU,EAAET,EAAoBU,GAAanB,EAAe,GAAGC,OAAgBC,OAAkBC,OAAmBC,MAAgB,GAAGL,MAA8BqB,EAASC,EAAa,QAAQ,IAAIA,EAAa,OAC5fC,GAAczB,EAAM,OAAO,OAAO,EAAQ0B,GAAYC,GAAS,MAAMF,EAAa,EAAQG,GAAYF,GAAY,EAAKhB,IAAY,KAAMA,EAAU,QAAQ,IAAMmB,EAAanB,IAAY,QAAQA,IAAY,QAAcoB,GAAOC,GAAe,CAAC,EAAQC,GAAKH,EAAa,IAAI,IAAUI,GAAMvB,IAAY,QAAQA,IAAY,MAAM,IAAI,GAASwB,GAAUC,GAAa,IAAI,YAAYH,MAAQC,KAAQH,GAAO,IAAI,MAAM,EAA4BM,EAAUC,EAAO,IAAI,EAAQC,GAAYC,GAAQ,IAAW,CAAcC,GAAU,EAAeA,GAAU,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,EAAKC,EAAO,EAAEC,EAAS,CAAC,OAAO,KAAK,SAAS,KAAK,aAAa,IAAI,CAAC,EAAkBC,GAAe,CAAC,EAAMC,GAAc,CAAC,EAA2BC,EAAY,EAAMC,GAAQ,EAAKxB,IAAUuB,EAAYpB,GAAY,KAAK,MAAM,GAAGA,EAAW,EAAE,EAAEqB,GAAQ,GAAM,CAACxB,GAAUK,IAAaa,EAAK,SAAQK,EAAY,KAAK,MAAML,EAAK,OAAOA,EAAK,SAAS,CAAC,EAAE,EAAEK,EAAY,KAAK,IAAIA,EAAYtD,EAAoB,EAAEuD,GAAQ,GAAG,IAAMC,GAAiBP,EAAK,eAAe,KAAK,KAAKA,EAAK,cAAcK,EAAY,GAASG,EAAcD,KAAmB,KAAK,KAAKA,GAAiBvD,GAA6CyD,GAAQC,GAAY,IAAI,CAAC,GAAGvB,IAAaQ,EAAU,QAAQ,CAAC,IAAMgB,EAAavB,EAAaO,EAAU,QAAQ,YAAYA,EAAU,QAAQ,aAAkB,CAACiB,EAAWC,CAAS,EAAEhB,GAAkBiB,EAAaF,EAAW,QAAQA,EAAW,QAAQ,WAAW,EAAQG,EAAcF,EAAU,QAAQA,EAAU,QAAQ,WAAWA,EAAU,QAAQ,YAAY,EAAQG,EAAYJ,EAAW,QAAQA,EAAW,QAAQ,UAAU,EAAQK,EAAeJ,EAAU,QAAQA,EAAU,QAAQ,UAAUA,EAAU,QAAQ,aAAa,EAAQK,EAAcH,EAAcD,EAAmBK,EAAeF,EAAeD,EAAkBI,GAAaF,EAAcC,EAAqBE,IAAgBjC,EAAa8B,EAAcC,GAAgB3D,EAAIyC,GAAQ,CAAC,OAAOU,EAAa,SAASU,GAAe,aAAAD,EAAY,CAAC,EAAG,EAAE,CAAC,CAAC,EAAQE,GAAexC,EAAS,CAAC,kBAAkB,MAAM,EAAE,CAAC,EAAwC,GAAGK,GAAY,CACjkE,GAAG,CAACL,EAAS,CAGE,IAAIyC,EAAc3B,EAAO,EAAI,EAAE4B,EAAU,KAAKC,GAAM,KAAKhB,EAAO,EAASiB,GAAO/B,EAAU,QAAQ,CAAC,CAAC,YAAAgC,CAAW,IAAI,CAAI,CAACJ,EAAc,UAAUI,EAAY,OAAOA,EAAY,SAASF,GAAM,KAAKhB,EAAO,EAAGc,EAAc,QAAQ,EAAM,CAAC,GAAI,CAAC,CAAC,EAAGpB,GAAejB,GAAS,IAAIF,GAAc,CAAC4C,EAAMC,IAAQ,CAAC,IAAIC,EAAaC,EAAcC,EAAcC,EAAc,IAAIC,EAAOL,IAAQ,IAAGK,EAAIrC,GAAY,CAAC,GAAMgC,IAAQ7C,GAAc,OAAO,IAAGkD,EAAIrC,GAAY,CAAC,GAAG,IAAMG,EAAK,CAAC,MAAMrB,GAAWmD,EAAaF,EAAM,SAAS,MAAME,IAAe,OAAO,OAAOA,EAAa,MAAM,OAAO,OAAOlD,GAAYmD,EAAcH,EAAM,SAAS,MAAMG,IAAgB,OAAO,OAAOA,EAAc,OAAO,MAAM,EAAE,OAAoBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,IAAID,EAAI,MAAMlC,EAAK,SAAsBqC,GAAaT,EAAM,CAAC,MAAM,CAAC,IAAII,EAAcJ,EAAM,SAAS,MAAMI,IAAgB,OAAO,OAAOA,EAAc,MAAM,GAAGhC,EAAK,WAAW,EAAE,GAAGsB,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAaC,EAAM,MAAS,GAAGI,EAAcL,EAAM,SAAS,MAAMK,IAAgB,OAAO,OAAOA,EAAc,QAAQ,CAAC,CAAC,CAAC,EAAEJ,EAAM,WAAW,CAAE,CAAC,EAAG,GAAG,CAAC/C,EAAU,QAAQwD,EAAE,EAAEA,EAAEjC,EAAYiC,IAAKlC,GAAc,CAAC,GAAGA,GAAc,GAAGlB,GAAS,IAAIF,GAAc,CAAC4C,EAAMW,IAAa,CAAC,IAAIT,EAAaC,EAAcC,EAAcC,EAAcO,EAAcC,EAAc,IAAMzC,GAAK,CAAC,MAAMrB,GAAWmD,EAAaF,EAAM,SAAS,MAAME,IAAe,OAAO,OAAOA,EAAa,MAAM,OAAO,OAAOlD,GAAYmD,EAAcH,EAAM,SAAS,MAAMG,IAAgB,OAAO,OAAOA,EAAc,OAAO,OAAO,WAAWvB,IAAgB,GAAK,OAAO,WAAW,EAAE,OAAoB2B,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,MAAMnC,GAAK,cAAc,GAAK,SAAsBqC,GAAaT,EAAM,CAAC,IAAIU,EAAE,IAAIC,EAAW,MAAM,CAAC,IAAIP,EAAcJ,EAAM,SAAS,MAAMI,IAAgB,OAAO,OAAOA,EAAc,MAAM,MAAMrD,GAAWsD,EAAcL,EAAM,SAAS,MAAMK,IAAgB,OAAO,OAAOA,EAAc,MAAM,OAAO,OAAOrD,GAAY4D,EAAcZ,EAAM,SAAS,MAAMY,IAAgB,OAAO,OAAOA,EAAc,OAAO,OAAO,WAAW,EAAE,GAAGlB,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,SAASU,EAAE,MAAS,GAAGG,EAAcb,EAAM,SAAS,MAAMa,IAAgB,OAAO,OAAOA,EAAc,QAAQ,CAAC,EAAEH,EAAE,KAAKC,CAAU,CAAC,EAAED,EAAE,KAAKC,CAAU,CAAE,CAAC,CAAC,EAAI,IAAMG,EAAe1C,EAAK,SAASA,EAAK,SAAS,KAAK,MAAMA,EAAK,OAAOA,EAAK,QAAQ,EAAQ2C,GAAY/C,EAAO,IAAI,EAAQgD,GAAShD,EAAO,IAAI,EAAQiD,GAAKjD,EAAO,CAAC,EAAQkD,GAAQlD,EAAO,EAAK,EAAQmD,GAAgBC,GAAiB,EAAQC,GAAQrD,EAAO,IAAI,EAAQsD,EAAatD,EAAO,IAAI,EAE3oF,GAAG,CAACd,EAAS,CAAC,IAAMqE,EAASC,GAAUzD,CAAS,EAEzCzC,KAAgB,CAACsD,GAAeA,GAAerD,KAA2BqE,EAAU,IAAI,CAAC,GAAGuB,IAAiB,CAACL,GAAgB,CAAC3E,GAAOyC,IAAgB,KAAM,OAAQ,GAAGA,EAAe,GAAG,CAACpD,EAAO,IAAI,iBAAiB,CAAC,KAAKH,GAAa,OAAO,WAAW,aAAa,MAAM,SAAS,EAAK,CAAC,CAAE,MAAC,CAAS,CAGpS,IAAMoG,EAAU7C,EAAc,CAAC,CAACvD,EAAY,EAAE,CAAC,MAAM,GAAGuC,KAAQkD,KAAkB,CAAC,EAAE,CAAC,UAAU,CAAC,YAAYnD,UAAY,YAAYA,MAAQC,KAAQkD,MAAmB,CAAC,EAAE,OAAAQ,EAAa,QAAQD,GAAQ,QAAQ,QAAQI,EAAU,CAAC,SAAS,KAAK,IAAIX,CAAc,EAAE3E,EAAM,IAAI,WAAW,IAAS,OAAO,QAAQ,CAAC,EAAQ,IAAImF,EAAa,QAAQ,OAAO,CAAE,EAAE,CAAClF,EAAY0E,EAAe3E,EAAMyC,CAAa,CAAC,EAClagB,EAAU,IAAI,CAAK0B,EAAa,UAAkBC,GAAUD,EAAa,QAAQ,YAAY,SAAUA,EAAa,QAAQ,KAAK,EAAW,CAACC,GAAUD,EAAa,QAAQ,YAAY,WAAWA,EAAa,QAAQ,MAAM,EAAG,EAAE,CAACC,CAAQ,CAAC,GAG9NG,GAAkBC,GAAG,CAAC,GAAG,CAACb,GAAgBK,IAAiB7F,GAAe,OAKnEyF,GAAY,UAAU,OAAMA,GAAY,QAAQY,GAAGA,EAAEA,EAAEZ,GAAY,QAAqE,IAAIa,GAAjDZ,GAAS,UAAU,KAAK,EAAEW,EAAEX,GAAS,UAA6B7E,EAAM,KAAQ+E,GAAQ,UAASU,GAAOxF,GAAa6E,GAAK,SAASW,EAAMX,GAAK,QAAQY,GAAK,EAAEf,EAAeG,GAAK,OAAO,EAAED,GAAS,QAAQW,EAAMJ,GAAgB9D,GAAO,IAAIwD,GAAK,OAAO,CAAE,CAAC,EAAe,IAAMa,GAActE,EAAa,WAAW,YAAkBuE,GAAenF,EAAU,EAAQoF,GAAa,IAAIpF,EAAU,EAAQqF,GAAeC,GAAMrF,EAAU,EAAEkF,EAAc,EAAQI,GAAa,IAAItF,EAAgBuF,GAAS,mBAAmBN,qBAAgChF,MAAcmF,yBAAqCF,yBAAqCC,sBAAgClF,MAAcqF,OAAkC,OAAI5E,GAAkWgD,EAAK,UAAU,CAAC,MAAM,CAAC,GAAG8B,GAAe,QAAQ3D,GAAQ,gBAAgBhC,EAAY0F,GAAS,OAAU,aAAa1F,EAAY0F,GAAS,OAAU,UAAU1F,EAAY0F,GAAS,OAAU,SAASzF,EAAS,UAAU,SAAS,QAAQM,EAAY,EAAE,IAAIc,EAAU,SAAsBuE,EAAMC,EAAO,GAAG,CAAC,IAAIlB,GAAQ,MAAM,CAAC,GAAGgB,GAAe,IAAIzG,EAAI,IAAIS,IAAY,UAAUmG,GAAc1B,CAAc,EAAE,CAACA,EAAe,OAAU,KAAKzE,IAAY,SAASmG,GAAc1B,CAAc,EAAE,CAACA,EAAe,OAAU,WAAWxE,EAAU,SAAS,WAAW,cAAckB,EAAa,MAAM,SAAS,GAAGf,EAAM,WAAWS,GAAU0B,EAAc,OAAO,YAAY,UAAUtD,GAAcsD,EAAc,YAAYjB,UAAYtC,OAAiB,OAAOwC,EAAS,EAAE,aAAa,IAAI,CAACqD,GAAQ,QAAQ,GAAQI,EAAa,UACv8DA,EAAa,QAAQ,aAAalF,EAAa,EAAE,aAAa,IAAI,CAAC8E,GAAQ,QAAQ,GAASI,EAAa,UACzGA,EAAa,QAAQ,aAAa,EAAG,EAAE,SAAS,CAAC/C,GAAeC,EAAa,CAAC,CAAC,CAAC,CAAC,EAF6wB8D,EAAM,UAAU,CAAC,MAAMG,GAAkB,SAAS,CAAclC,EAAK,MAAM,CAAC,MAAMmC,GAAY,SAAS,QAAG,CAAC,EAAenC,EAAK,IAAI,CAAC,MAAMoC,GAAY,SAAS,oBAAoB,CAAC,EAAepC,EAAK,IAAI,CAAC,MAAMqC,GAAe,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAErjC,CAAyBnH,EAAO,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,cAAc,CAAC,UAAU,GAAK,WAAW,EAAI,EAAE,YAAY,CAAC,YAAY,GAAK,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,UAAU,EAAI,EAAyBoH,EAAoBpH,EAAO,CAAC,MAAM,CAAC,KAAKqH,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,IAAI,KAAK,IAAI,eAAe,GAAK,KAAK,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAgB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,aAAa,OAAO,wBAAwB,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAOpH,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKoH,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOpH,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKoH,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOpH,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKoH,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOpH,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKoH,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,YAAY,8CAA8C,CAAC,CAAC,EAA0B,IAAMT,GAAe,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAAoBI,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQC,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAAgDV,GAAM,CAACa,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAAQT,GAAcU,GAAO,OAAOA,GAAQ,UAAU,CAAC,MAAMA,CAAK,EC/Bv/F,IAAMC,GAAYC,GAASC,CAAM,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAkO,IAAMC,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,EAAQ,EAAQC,GAAS,CAAC,CAAC,IAAAC,EAAI,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAK,MAAM,CAAC,GAAGD,EAAM,WAAWC,EAAKL,GAA6BI,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,GAAG,CAAE,EAAQC,GAAuB,CAACF,EAAMG,IAAeH,EAAM,iBAAwBG,EAAS,KAAK,GAAG,EAAEH,EAAM,iBAAwBG,EAAS,KAAK,GAAG,EAAUC,GAA6BC,GAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAU,GAAGC,CAAS,EAAEpB,GAASK,CAAK,EAAO,CAAC,YAAAgB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAApB,CAAQ,EAAEqB,GAAgB,CAAC,eAAe,YAAY,QAAAX,EAAQ,kBAAAY,EAAiB,CAAC,EAAQC,EAAiBxB,GAAuBF,EAAMG,CAAQ,EAAQwB,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,GAAkBC,GAAqB,EAAE,OAAoB1C,EAAK2C,EAAY,CAAC,GAAGtB,GAA4CiB,EAAgB,SAAsBtC,EAAKC,GAAS,CAAC,QAAQW,EAAS,QAAQ,GAAM,SAAsBZ,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGsB,EAAU,GAAGI,EAAgB,UAAUgB,GAAGC,GAAkB,GAAGL,EAAsB,iBAAiBpB,EAAUM,CAAU,EAAE,mBAAmB,YAAY,iBAAiBS,EAAiB,SAAS,YAAY,IAAIpB,GAA6BqB,EAAK,MAAM,CAAC,GAAGjB,CAAK,EAAE,SAAsBnB,EAAK8C,GAA0B,CAAC,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAK+C,EAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAIxB,EAAU,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcvB,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBiC,EAAiB,SAAS,YAAY,SAAsBnC,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,OAAO,WAAW,iBAAiBb,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,qvIAAqvI,aAAa,WAAW,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAenC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBiC,EAAiB,SAAS,YAAY,SAAsBnC,EAAKgD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiBb,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,k7IAAk7I,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAenC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBiC,EAAiB,SAAS,YAAY,SAAsBnC,EAAKgD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiBb,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,6oKAA6oK,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAenC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBiC,EAAiB,SAAS,YAAY,SAAsBnC,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,OAAO,WAAW,iBAAiBb,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,2qCAA2qC,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAenC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBiC,EAAiB,SAAS,YAAY,SAAsBnC,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,OAAO,WAAW,iBAAiBb,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,++CAA++C,aAAa,WAAW,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAenC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBiC,EAAiB,SAAS,YAAY,SAAsBnC,EAAKgD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,OAAO,WAAW,iBAAiBb,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,6jMAA6jM,aAAa,WAAW,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQc,GAAI,CAAC,kFAAkF,gFAAgF,qQAAqQ,wGAAwG,2PAA2P,+FAA+F,2PAA2P,gGAAgG,0PAA0P,+FAA+F,2PAA2P,+FAA+F,0PAA0P,+FAA+F,2PAA2P,gGAAgG,84CAA84C,EAS1q/BC,EAAgBC,GAAQtC,GAAUoC,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,gBAAgBA,EAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,EAAgB,CAAC,UAAU,CAAC,aAAa,IAAI,MAAM,MAAM,KAAKI,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGM,EAAW,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["NumberAnimator", "props", "ref", "pe", "isInView", "useInView", "numberText", "setNumberText", "ye", "start", "end", "decimals", "commas", "rounding", "fontColor", "animation", "currentAnimation", "setCurrentAnimation", "isCanvas", "RenderTarget", "formatNumber", "value", "numberString", "runAnimation", "animate", "latest", "ue", "u", "motion", "addPropertyControls", "ControlType", "MAX_DUPLICATED_ITEMS", "MAX_AREA", "CSS_VAR_NAME", "supportsWaapi", "supportsRegisterProperty", "window", "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", "offset", "useMotionValue", "axis", "minus", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "fullChildrenArea", "isLayerTooBig", "measure", "te", "parentLength", "firstChild", "lastChild", "childrenLeft", "childrenRight", "childrenTop", "childrenBottom", "childrenWidth", "childrenHeight", "childrenArea", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "keyframes", "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", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "gap", "height", "id", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "NZ91X_10a", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "Ticker", "SVG", "css", "FramerKySwAZlTm", "withCSS", "KySwAZlTm_default", "addPropertyControls", "ControlType", "addFonts", "TickerFonts"]
}
