{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js", "ssg:https://framerusercontent.com/modules/XB0M6r7toJDzR8DI6dW5/aHR2ouT0T6Y1h7XuOWGH/pcnAJJ3UQ.js", "ssg:https://framerusercontent.com/modules/Bii5rjdGlTDnqV3Ect6g/n2oSlPlCeVXaOTvkcUjZ/dZJSenUKx.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 currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// 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\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (48da836)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"VxG6WxtGl\",\"CjoI4MB7X\",\"RFT4aXEzX\",\"fplouueRA\",\"xgz7fCIRT\",\"H53k8CyF2\",\"Cqn0PbEXm\",\"CJYh9F5A7\",\"EOcZ9vOQv\",\"SnD3xwJBA\",\"gNPiGjR0L\",\"LDY3qfeUv\",\"hxd1TPZej\",\"tIyOzfRVI\",\"aglAEbixO\",\"gckqsA18D\",\"SfJwGOMCe\",\"tBGJ5OsWK\",\"gbAVRIVhY\",\"WMJrMo8Nd\",\"Aa1iHnIbF\",\"m9WEdEhoa\",\"wUL09hHsT\",\"nP1kbJwZD\",\"YQI1Ssaz6\",\"o96qo5j9p\",\"eeKxUzwPv\"];const serializationHash=\"framer-kR1vc\";const variantClassNames={Aa1iHnIbF:\"framer-v-db21nl\",aglAEbixO:\"framer-v-es21l2\",CjoI4MB7X:\"framer-v-15f9rm7\",CJYh9F5A7:\"framer-v-1tzie0f\",Cqn0PbEXm:\"framer-v-vdtmfd\",eeKxUzwPv:\"framer-v-qu9aad\",EOcZ9vOQv:\"framer-v-re6f55\",fplouueRA:\"framer-v-td674y\",gbAVRIVhY:\"framer-v-1lwq7ov\",gckqsA18D:\"framer-v-sud5dw\",gNPiGjR0L:\"framer-v-7gi8o3\",H53k8CyF2:\"framer-v-x269vd\",hxd1TPZej:\"framer-v-15vjpnr\",LDY3qfeUv:\"framer-v-6ekhmk\",m9WEdEhoa:\"framer-v-1tuam8i\",nP1kbJwZD:\"framer-v-12v63c4\",o96qo5j9p:\"framer-v-1dvh7j0\",RFT4aXEzX:\"framer-v-168f2fi\",SfJwGOMCe:\"framer-v-wieu4g\",SnD3xwJBA:\"framer-v-u9o0c7\",tBGJ5OsWK:\"framer-v-1odcmf\",tIyOzfRVI:\"framer-v-twuomw\",VxG6WxtGl:\"framer-v-qb2jjq\",WMJrMo8Nd:\"framer-v-183g298\",wUL09hHsT:\"framer-v-krcn9f\",xgz7fCIRT:\"framer-v-kmagk7\",YQI1Ssaz6:\"framer-v-wk8qaz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"0_L\":\"eeKxUzwPv\",\"0_XL\":\"gNPiGjR0L\",\"1_L\":\"tBGJ5OsWK\",\"1_XL\":\"CjoI4MB7X\",\"2_L\":\"gbAVRIVhY\",\"2_XL\":\"RFT4aXEzX\",\"3_L\":\"WMJrMo8Nd\",\"3_XL\":\"fplouueRA\",\"4_L\":\"Aa1iHnIbF\",\"4_XL\":\"xgz7fCIRT\",\"5_L\":\"m9WEdEhoa\",\"5_XL\":\"H53k8CyF2\",\"6_L\":\"wUL09hHsT\",\"6_XL\":\"Cqn0PbEXm\",\"7_L\":\"nP1kbJwZD\",\"7_XL\":\"CJYh9F5A7\",\"8_L\":\"YQI1Ssaz6\",\"8_XL\":\"EOcZ9vOQv\",\"9_L\":\"o96qo5j9p\",\"9_XL\":\"SnD3xwJBA\",Bookmark_XL:\"LDY3qfeUv\",Clock_XL:\"gckqsA18D\",File_XL:\"hxd1TPZej\",Main_L:\"SfJwGOMCe\",Main_XL:\"VxG6WxtGl\",Paper_XL:\"aglAEbixO\",Search_XL:\"tIyOzfRVI\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"VxG6WxtGl\"};};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:\"VxG6WxtGl\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"RFT4aXEzX\",\"fplouueRA\",\"xgz7fCIRT\",\"H53k8CyF2\",\"Cqn0PbEXm\",\"CJYh9F5A7\",\"EOcZ9vOQv\",\"SnD3xwJBA\",\"gNPiGjR0L\",\"LDY3qfeUv\",\"hxd1TPZej\",\"tIyOzfRVI\",\"aglAEbixO\",\"gckqsA18D\",\"gbAVRIVhY\",\"WMJrMo8Nd\",\"Aa1iHnIbF\",\"m9WEdEhoa\",\"wUL09hHsT\",\"nP1kbJwZD\",\"YQI1Ssaz6\",\"o96qo5j9p\",\"eeKxUzwPv\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"CjoI4MB7X\",\"fplouueRA\",\"xgz7fCIRT\",\"H53k8CyF2\",\"Cqn0PbEXm\",\"CJYh9F5A7\",\"EOcZ9vOQv\",\"SnD3xwJBA\",\"gNPiGjR0L\",\"LDY3qfeUv\",\"hxd1TPZej\",\"tIyOzfRVI\",\"aglAEbixO\",\"gckqsA18D\",\"tBGJ5OsWK\",\"WMJrMo8Nd\",\"Aa1iHnIbF\",\"m9WEdEhoa\",\"wUL09hHsT\",\"nP1kbJwZD\",\"YQI1Ssaz6\",\"o96qo5j9p\",\"eeKxUzwPv\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"CjoI4MB7X\",\"RFT4aXEzX\",\"xgz7fCIRT\",\"H53k8CyF2\",\"Cqn0PbEXm\",\"CJYh9F5A7\",\"EOcZ9vOQv\",\"SnD3xwJBA\",\"gNPiGjR0L\",\"LDY3qfeUv\",\"hxd1TPZej\",\"tIyOzfRVI\",\"aglAEbixO\",\"gckqsA18D\",\"tBGJ5OsWK\",\"gbAVRIVhY\",\"Aa1iHnIbF\",\"m9WEdEhoa\",\"wUL09hHsT\",\"nP1kbJwZD\",\"YQI1Ssaz6\",\"o96qo5j9p\",\"eeKxUzwPv\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"CjoI4MB7X\",\"RFT4aXEzX\",\"fplouueRA\",\"H53k8CyF2\",\"Cqn0PbEXm\",\"CJYh9F5A7\",\"EOcZ9vOQv\",\"SnD3xwJBA\",\"gNPiGjR0L\",\"LDY3qfeUv\",\"hxd1TPZej\",\"tIyOzfRVI\",\"aglAEbixO\",\"gckqsA18D\",\"tBGJ5OsWK\",\"gbAVRIVhY\",\"WMJrMo8Nd\",\"m9WEdEhoa\",\"wUL09hHsT\",\"nP1kbJwZD\",\"YQI1Ssaz6\",\"o96qo5j9p\",\"eeKxUzwPv\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if([\"CjoI4MB7X\",\"RFT4aXEzX\",\"fplouueRA\",\"xgz7fCIRT\",\"Cqn0PbEXm\",\"CJYh9F5A7\",\"EOcZ9vOQv\",\"SnD3xwJBA\",\"gNPiGjR0L\",\"LDY3qfeUv\",\"hxd1TPZej\",\"tIyOzfRVI\",\"aglAEbixO\",\"gckqsA18D\",\"tBGJ5OsWK\",\"gbAVRIVhY\",\"WMJrMo8Nd\",\"Aa1iHnIbF\",\"wUL09hHsT\",\"nP1kbJwZD\",\"YQI1Ssaz6\",\"o96qo5j9p\",\"eeKxUzwPv\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if([\"CjoI4MB7X\",\"RFT4aXEzX\",\"fplouueRA\",\"xgz7fCIRT\",\"H53k8CyF2\",\"CJYh9F5A7\",\"EOcZ9vOQv\",\"SnD3xwJBA\",\"gNPiGjR0L\",\"LDY3qfeUv\",\"hxd1TPZej\",\"tIyOzfRVI\",\"aglAEbixO\",\"gckqsA18D\",\"tBGJ5OsWK\",\"gbAVRIVhY\",\"WMJrMo8Nd\",\"Aa1iHnIbF\",\"m9WEdEhoa\",\"nP1kbJwZD\",\"YQI1Ssaz6\",\"o96qo5j9p\",\"eeKxUzwPv\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if([\"CjoI4MB7X\",\"RFT4aXEzX\",\"fplouueRA\",\"xgz7fCIRT\",\"H53k8CyF2\",\"Cqn0PbEXm\",\"EOcZ9vOQv\",\"SnD3xwJBA\",\"gNPiGjR0L\",\"LDY3qfeUv\",\"hxd1TPZej\",\"tIyOzfRVI\",\"aglAEbixO\",\"gckqsA18D\",\"tBGJ5OsWK\",\"gbAVRIVhY\",\"WMJrMo8Nd\",\"Aa1iHnIbF\",\"m9WEdEhoa\",\"wUL09hHsT\",\"YQI1Ssaz6\",\"o96qo5j9p\",\"eeKxUzwPv\"].includes(baseVariant))return false;return true;};const isDisplayed7=()=>{if([\"CjoI4MB7X\",\"RFT4aXEzX\",\"fplouueRA\",\"xgz7fCIRT\",\"H53k8CyF2\",\"Cqn0PbEXm\",\"CJYh9F5A7\",\"SnD3xwJBA\",\"gNPiGjR0L\",\"LDY3qfeUv\",\"hxd1TPZej\",\"tIyOzfRVI\",\"aglAEbixO\",\"gckqsA18D\",\"tBGJ5OsWK\",\"gbAVRIVhY\",\"WMJrMo8Nd\",\"Aa1iHnIbF\",\"m9WEdEhoa\",\"wUL09hHsT\",\"nP1kbJwZD\",\"o96qo5j9p\",\"eeKxUzwPv\"].includes(baseVariant))return false;return true;};const isDisplayed8=()=>{if([\"CjoI4MB7X\",\"RFT4aXEzX\",\"fplouueRA\",\"xgz7fCIRT\",\"H53k8CyF2\",\"Cqn0PbEXm\",\"CJYh9F5A7\",\"EOcZ9vOQv\",\"gNPiGjR0L\",\"LDY3qfeUv\",\"hxd1TPZej\",\"tIyOzfRVI\",\"aglAEbixO\",\"gckqsA18D\",\"tBGJ5OsWK\",\"gbAVRIVhY\",\"WMJrMo8Nd\",\"Aa1iHnIbF\",\"m9WEdEhoa\",\"wUL09hHsT\",\"nP1kbJwZD\",\"YQI1Ssaz6\",\"eeKxUzwPv\"].includes(baseVariant))return false;return true;};const isDisplayed9=()=>{if([\"CjoI4MB7X\",\"RFT4aXEzX\",\"fplouueRA\",\"xgz7fCIRT\",\"H53k8CyF2\",\"Cqn0PbEXm\",\"CJYh9F5A7\",\"EOcZ9vOQv\",\"SnD3xwJBA\",\"LDY3qfeUv\",\"hxd1TPZej\",\"tIyOzfRVI\",\"aglAEbixO\",\"gckqsA18D\",\"tBGJ5OsWK\",\"gbAVRIVhY\",\"WMJrMo8Nd\",\"Aa1iHnIbF\",\"m9WEdEhoa\",\"wUL09hHsT\",\"nP1kbJwZD\",\"YQI1Ssaz6\",\"o96qo5j9p\"].includes(baseVariant))return false;return true;};const isDisplayed10=()=>{if([\"CjoI4MB7X\",\"RFT4aXEzX\",\"fplouueRA\",\"xgz7fCIRT\",\"H53k8CyF2\",\"Cqn0PbEXm\",\"CJYh9F5A7\",\"EOcZ9vOQv\",\"SnD3xwJBA\",\"gNPiGjR0L\",\"hxd1TPZej\",\"tIyOzfRVI\",\"aglAEbixO\",\"gckqsA18D\",\"tBGJ5OsWK\",\"gbAVRIVhY\",\"WMJrMo8Nd\",\"Aa1iHnIbF\",\"m9WEdEhoa\",\"wUL09hHsT\",\"nP1kbJwZD\",\"YQI1Ssaz6\",\"o96qo5j9p\",\"eeKxUzwPv\"].includes(baseVariant))return false;return true;};const isDisplayed11=()=>{if([\"CjoI4MB7X\",\"RFT4aXEzX\",\"fplouueRA\",\"xgz7fCIRT\",\"H53k8CyF2\",\"Cqn0PbEXm\",\"CJYh9F5A7\",\"EOcZ9vOQv\",\"SnD3xwJBA\",\"gNPiGjR0L\",\"LDY3qfeUv\",\"tIyOzfRVI\",\"aglAEbixO\",\"gckqsA18D\",\"tBGJ5OsWK\",\"gbAVRIVhY\",\"WMJrMo8Nd\",\"Aa1iHnIbF\",\"m9WEdEhoa\",\"wUL09hHsT\",\"nP1kbJwZD\",\"YQI1Ssaz6\",\"o96qo5j9p\",\"eeKxUzwPv\"].includes(baseVariant))return false;return true;};const isDisplayed12=()=>{if([\"CjoI4MB7X\",\"RFT4aXEzX\",\"fplouueRA\",\"xgz7fCIRT\",\"H53k8CyF2\",\"Cqn0PbEXm\",\"CJYh9F5A7\",\"EOcZ9vOQv\",\"SnD3xwJBA\",\"gNPiGjR0L\",\"LDY3qfeUv\",\"hxd1TPZej\",\"aglAEbixO\",\"gckqsA18D\",\"tBGJ5OsWK\",\"gbAVRIVhY\",\"WMJrMo8Nd\",\"Aa1iHnIbF\",\"m9WEdEhoa\",\"wUL09hHsT\",\"nP1kbJwZD\",\"YQI1Ssaz6\",\"o96qo5j9p\",\"eeKxUzwPv\"].includes(baseVariant))return false;return true;};const isDisplayed13=()=>{if([\"CjoI4MB7X\",\"RFT4aXEzX\",\"fplouueRA\",\"xgz7fCIRT\",\"H53k8CyF2\",\"Cqn0PbEXm\",\"CJYh9F5A7\",\"EOcZ9vOQv\",\"SnD3xwJBA\",\"gNPiGjR0L\",\"LDY3qfeUv\",\"hxd1TPZej\",\"tIyOzfRVI\",\"gckqsA18D\",\"tBGJ5OsWK\",\"gbAVRIVhY\",\"WMJrMo8Nd\",\"Aa1iHnIbF\",\"m9WEdEhoa\",\"wUL09hHsT\",\"nP1kbJwZD\",\"YQI1Ssaz6\",\"o96qo5j9p\",\"eeKxUzwPv\"].includes(baseVariant))return false;return true;};const isDisplayed14=()=>{if([\"CjoI4MB7X\",\"RFT4aXEzX\",\"fplouueRA\",\"xgz7fCIRT\",\"H53k8CyF2\",\"Cqn0PbEXm\",\"CJYh9F5A7\",\"EOcZ9vOQv\",\"SnD3xwJBA\",\"gNPiGjR0L\",\"LDY3qfeUv\",\"hxd1TPZej\",\"tIyOzfRVI\",\"aglAEbixO\",\"tBGJ5OsWK\",\"gbAVRIVhY\",\"WMJrMo8Nd\",\"Aa1iHnIbF\",\"m9WEdEhoa\",\"wUL09hHsT\",\"nP1kbJwZD\",\"YQI1Ssaz6\",\"o96qo5j9p\",\"eeKxUzwPv\"].includes(baseVariant))return false;return true;};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-qb2jjq\",className,classNames),\"data-framer-name\":\"Main_XL\",layoutDependency:layoutDependency,layoutId:\"VxG6WxtGl\",ref:ref??ref1,style:{...style},...addPropertyOverrides({Aa1iHnIbF:{\"data-framer-name\":\"4_L\"},aglAEbixO:{\"data-framer-name\":\"Paper_XL\"},CjoI4MB7X:{\"data-framer-name\":\"1_XL\"},CJYh9F5A7:{\"data-framer-name\":\"7_XL\"},Cqn0PbEXm:{\"data-framer-name\":\"6_XL\"},eeKxUzwPv:{\"data-framer-name\":\"0_L\"},EOcZ9vOQv:{\"data-framer-name\":\"8_XL\"},fplouueRA:{\"data-framer-name\":\"3_XL\"},gbAVRIVhY:{\"data-framer-name\":\"2_L\"},gckqsA18D:{\"data-framer-name\":\"Clock_XL\"},gNPiGjR0L:{\"data-framer-name\":\"0_XL\"},H53k8CyF2:{\"data-framer-name\":\"5_XL\"},hxd1TPZej:{\"data-framer-name\":\"File_XL\"},LDY3qfeUv:{\"data-framer-name\":\"Bookmark_XL\"},m9WEdEhoa:{\"data-framer-name\":\"5_L\"},nP1kbJwZD:{\"data-framer-name\":\"7_L\"},o96qo5j9p:{\"data-framer-name\":\"9_L\"},RFT4aXEzX:{\"data-framer-name\":\"2_XL\"},SfJwGOMCe:{\"data-framer-name\":\"Main_L\"},SnD3xwJBA:{\"data-framer-name\":\"9_XL\"},tBGJ5OsWK:{\"data-framer-name\":\"1_L\"},tIyOzfRVI:{\"data-framer-name\":\"Search_XL\"},WMJrMo8Nd:{\"data-framer-name\":\"3_L\"},wUL09hHsT:{\"data-framer-name\":\"6_L\"},xgz7fCIRT:{\"data-framer-name\":\"4_XL\"},YQI1Ssaz6:{\"data-framer-name\":\"8_L\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-pblxjr\",\"data-framer-name\":\"1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"oTjp4_kco-shape\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 51 200\"><path d=\"M 4.424 129.226 C 1.679 133.94 0 136.825 0 136.825 L 0 196.581 L 3.4 200 L 47.596 200 L 50.996 196.581 L 50.996 50.543 C 50.868 50.321 21.904 0 21.904 0 L 3.4 0 L 0 3.419 L 0 50.543 L 47.311 50.543 L 48.777 53.115 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:12384768096,withExternalLayout:true,...addPropertyOverrides({SfJwGOMCe:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 26 100\"><path d=\"M 2.256 64.613 C 0.856 66.97 0 68.412 0 68.412 L 0 98.291 L 1.733 100 L 24.264 100 L 25.998 98.291 L 25.998 25.271 C 25.933 25.16 11.167 0 11.167 0 L 1.733 0 L 0 1.709 L 0 25.271 L 24.119 25.271 L 24.867 26.558 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:8672281989},tBGJ5OsWK:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 26 100\"><path d=\"M 2.256 64.613 C 0.856 66.97 0 68.412 0 68.412 L 0 98.291 L 1.733 100 L 24.264 100 L 25.998 98.291 L 25.998 25.271 C 25.933 25.16 11.167 0 11.167 0 L 1.733 0 L 0 1.709 L 0 25.271 L 24.119 25.271 L 24.867 26.558 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:8672281989}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1mq9gz2\",\"data-framer-name\":\"2\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"N5U97qJEG\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 116 200\"><path d=\"M 30.198 200 L 0.29 149.821 L 29.478 99.641 L 83.089 99.641 L 84.565 97.073 L 57.586 50.543 L 3.702 50.543 L 0.29 47.124 L 0.29 3.419 C 1.625 2.085 2.371 1.333 3.702 0 L 86.416 0 L 115.842 50.44 L 58.67 149.457 L 112.43 149.457 L 115.842 152.876 L 115.842 196.581 L 112.43 200 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:11383747993,withExternalLayout:true,...addPropertyOverrides({gbAVRIVhY:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 58 100\"><path d=\"M 15.099 100 L 0.145 74.91 L 14.739 49.821 L 41.545 49.821 L 42.282 48.536 L 28.793 25.271 L 1.851 25.271 L 0.145 23.562 L 0.145 1.709 C 0.812 1.043 1.186 0.667 1.851 0 L 43.208 0 L 57.921 25.22 L 29.335 74.729 L 56.215 74.729 L 57.921 76.438 L 57.921 98.291 L 56.215 100 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:12101584031},SfJwGOMCe:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 58 100\"><path d=\"M 15.099 100 L 0.145 74.91 L 14.739 49.821 L 41.545 49.821 L 42.282 48.536 L 28.793 25.271 L 1.851 25.271 L 0.145 23.562 L 0.145 1.709 C 0.812 1.043 1.186 0.667 1.851 0 L 43.208 0 L 57.921 25.22 L 29.335 74.729 L 56.215 74.729 L 57.921 76.438 L 57.921 98.291 L 56.215 100 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:12101584031}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-vep6d2\",\"data-framer-name\":\"3\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"SKqgn1Q4X\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 115 200\"><path d=\"M 86.697 0 L 114.702 50.325 L 86.689 100.312 L 114.702 149.962 L 85.475 199.996 L 29.623 199.996 L 3.314 154.744 L 6.257 149.603 L 57.909 149.603 L 83.844 103.047 C 83.183 101.923 83.013 101.628 82.357 100.504 L 29.116 100.504 L 57.189 50.538 L 3.731 50.538 L 0.324 47.12 L 0.324 3.419 L 3.731 0 L 86.701 0 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:9339018765,withExternalLayout:true,...addPropertyOverrides({SfJwGOMCe:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 57 100\"><path d=\"M 42.972 0 L 56.852 25.162 L 42.967 50.156 L 56.852 74.981 L 42.366 99.998 L 14.683 99.998 L 1.642 77.372 L 3.101 74.801 L 28.703 74.801 L 41.557 51.524 C 41.23 50.962 41.146 50.814 40.82 50.252 L 14.432 50.252 L 28.346 25.269 L 1.849 25.269 L 0.16 23.56 L 0.16 1.709 L 1.849 0 L 42.974 0 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:8702600106},WMJrMo8Nd:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 57 100\"><path d=\"M 42.972 0 L 56.852 25.162 L 42.967 50.156 L 56.852 74.981 L 42.366 99.998 L 14.683 99.998 L 1.642 77.372 L 3.101 74.801 L 28.703 74.801 L 41.557 51.524 C 41.23 50.962 41.146 50.814 40.82 50.252 L 14.432 50.252 L 28.346 25.269 L 1.849 25.269 L 0.16 23.56 L 0.16 1.709 L 1.849 0 L 42.974 0 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:8702600106}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1tzh29r\",\"data-framer-name\":\"4\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"TCg67FGwl\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 135 200\"><path d=\"M 112.276 5.117 L 32.166 144.017 L 26.267 144.017 L 0.417 99.373 L 58.007 0 L 109.32 0 C 110.632 2.273 110.96 2.844 112.271 5.117 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path><path d=\"M 134.659 117.97 L 134.659 161.582 L 131.252 164.994 L 100.833 164.994 L 100.833 196.166 L 97.426 199.578 L 53.859 199.578 L 50.453 196.166 L 50.453 117.974 L 53.859 114.563 L 131.252 114.563 L 134.659 117.974 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:10416865716,withExternalLayout:true,...addPropertyOverrides({Aa1iHnIbF:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 68 100\"><path d=\"M 56.554 2.559 L 16.202 72.009 L 13.231 72.009 L 0.21 49.687 L 29.219 0 L 55.065 0 C 55.726 1.136 55.891 1.422 56.552 2.559 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path><path d=\"M 67.828 58.985 L 67.828 80.791 L 66.112 82.497 L 50.79 82.497 L 50.79 98.083 L 49.074 99.789 L 27.129 99.789 L 25.413 98.083 L 25.413 58.987 L 27.129 57.281 L 66.112 57.281 L 67.828 58.987 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:10566085347},SfJwGOMCe:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 68 100\"><path d=\"M 56.554 2.559 L 16.202 72.009 L 13.231 72.009 L 0.21 49.687 L 29.219 0 L 55.065 0 C 55.726 1.136 55.891 1.422 56.552 2.559 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path><path d=\"M 67.828 58.985 L 67.828 80.791 L 66.112 82.497 L 50.79 82.497 L 50.79 98.083 L 49.074 99.789 L 27.129 99.789 L 25.413 98.083 L 25.413 58.987 L 27.129 57.281 L 66.112 57.281 L 67.828 58.987 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:10566085347}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1cu1c2z\",\"data-framer-name\":\"5\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"tZ0dUpgRN\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 116 200\"><path d=\"M 115.693 3.795 L 115.693 47.12 L 112.281 50.538 L 58.537 50.538 L 115.693 149.603 L 86.215 199.996 L 29.943 199.996 L 0.375 149.833 L 57.672 149.833 L 84.65 103.303 C 83.993 102.162 83.831 101.876 83.175 100.735 L 29.563 100.735 L 0.375 50.556 L 0.375 3.795 L 3.787 0.376 L 112.281 0.376 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:8670864514,withExternalLayout:true,...addPropertyOverrides({m9WEdEhoa:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 58 100\"><path d=\"M 57.846 1.897 L 57.846 23.56 L 56.141 25.269 L 29.269 25.269 L 57.846 74.801 L 43.108 99.998 L 14.971 99.998 L 0.188 74.917 L 28.836 74.917 L 42.325 51.652 C 41.997 51.081 41.916 50.938 41.587 50.368 L 14.781 50.368 L 0.188 25.278 L 0.188 1.897 L 1.894 0.188 L 56.141 0.188 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:12689203666},SfJwGOMCe:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 58 100\"><path d=\"M 57.846 1.897 L 57.846 23.56 L 56.141 25.269 L 29.269 25.269 L 57.846 74.801 L 43.108 99.998 L 14.971 99.998 L 0.188 74.917 L 28.836 74.917 L 42.325 51.652 C 41.997 51.081 41.916 50.938 41.587 50.368 L 14.781 50.368 L 0.188 25.278 L 0.188 1.897 L 1.894 0.188 L 56.141 0.188 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:12689203666}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1xvn26b\",\"data-framer-name\":\"6\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"SZ3xAX8aD\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 130 200\"><path d=\"M 84.718 2.551 L 44.846 73 C 45.504 74.132 45.675 74.419 46.334 75.551 L 100.848 75.551 L 129.41 125.671 L 86.831 200 L 29.087 200 L 0 150.846 L 0 52.051 L 29.566 0 L 83.23 0 C 83.888 1.132 84.06 1.419 84.718 2.551 Z M 57.85 149.919 L 71.402 125.128 L 43.037 76.291 L 2.228 147.359 C 2.887 148.496 3.053 148.782 3.712 149.919 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:11781501669,withExternalLayout:true,...addPropertyOverrides({SfJwGOMCe:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 72 100\"><path d=\"M 47.135 1.276 L 24.951 36.5 C 25.317 37.066 25.412 37.209 25.779 37.776 L 56.109 37.776 L 72 62.835 L 48.31 100 L 16.183 100 L 0 75.423 L 0 26.026 L 16.45 0 L 46.307 0 C 46.673 0.566 46.768 0.709 47.135 1.276 Z M 32.186 74.959 L 39.726 62.564 L 23.944 38.145 L 1.24 73.679 C 1.606 74.248 1.699 74.391 2.065 74.959 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:10339192748},wUL09hHsT:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 72 100\"><path d=\"M 47.135 1.276 L 24.951 36.5 C 25.317 37.066 25.412 37.209 25.779 37.776 L 56.109 37.776 L 72 62.835 L 48.31 100 L 16.183 100 L 0 75.423 L 0 26.026 L 16.45 0 L 46.307 0 C 46.673 0.566 46.768 0.709 47.135 1.276 Z M 32.186 74.959 L 39.726 62.564 L 23.944 38.145 L 1.24 73.679 C 1.606 74.248 1.699 74.391 2.065 74.959 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:10339192748}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1i71889\",\"data-framer-name\":\"7\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"TRC1XfRUK\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 116 200\"><path d=\"M 86.559 0 L 3.54 0 L 0.116 3.412 L 0.116 47.011 L 3.54 50.422 C 20.615 50.422 96.383 50.422 112.297 50.422 C 112.957 51.552 113.124 51.838 113.783 52.972 L 30.096 199.578 L 86.773 199.578 L 115.803 150.132 L 115.996 50.439 L 86.743 0 L 0.424 0\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:10113808752,withExternalLayout:true,...addPropertyOverrides({nP1kbJwZD:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 58 100\"><path d=\"M 43.28 0 L 1.77 0 L 0.058 1.706 L 0.058 23.505 L 1.77 25.211 C 10.307 25.211 48.191 25.211 56.149 25.211 C 56.478 25.776 56.562 25.919 56.891 26.486 L 15.048 99.789 L 43.387 99.789 L 57.902 75.066 L 57.998 25.22 L 43.372 0 L 0.212 0\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:9293000429},SfJwGOMCe:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 58 100\"><path d=\"M 43.28 0 L 1.77 0 L 0.058 1.706 L 0.058 23.505 L 1.77 25.211 C 10.307 25.211 48.191 25.211 56.149 25.211 C 56.478 25.776 56.562 25.919 56.891 26.486 L 15.048 99.789 L 43.387 99.789 L 57.902 75.066 L 57.998 25.22 L 43.372 0 L 0.212 0\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:9293000429}},baseVariant,gestureVariant)}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1poxtvx\",\"data-framer-name\":\"8\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"MpNCXmMos\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 130 200\"><path d=\"M 0.098 50.543 L 29.261 0 L 86.392 0 L 115.973 50.543 L 101.856 76.017 L 129.659 124.688 L 85.519 200 L 28.429 200 L 0.098 149.479 L 58.53 149.479 L 85.902 100.38 L 28.996 100.38 L 0.098 149.479 Z M 97.368 25.291 L 72.216 25.291 L 45.564 72.56 C 46.22 73.692 46.391 73.979 47.047 75.111 L 71.858 75.111 L 98.851 27.85 L 97.372 25.291 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:11799160254,withExternalLayout:true,...addPropertyOverrides({SfJwGOMCe:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 65 100\"><path d=\"M 0.098 25.271 L 14.679 0 L 43.245 0 L 58.035 25.271 L 50.977 38.009 L 64.879 62.344 L 42.808 100 L 14.264 100 L 0.098 74.739 L 29.314 74.739 L 43 50.19 L 14.547 50.19 L 0.098 74.739 Z M 48.733 12.645 L 36.157 12.645 L 22.831 36.28 C 23.159 36.846 23.244 36.989 23.573 37.556 L 35.978 37.556 L 49.475 13.925 L 48.735 12.645 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:10312755456},YQI1Ssaz6:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 65 100\"><path d=\"M 0.098 25.271 L 14.679 0 L 43.245 0 L 58.035 25.271 L 50.977 38.009 L 64.879 62.344 L 42.808 100 L 14.264 100 L 0.098 74.739 L 29.314 74.739 L 43 50.19 L 14.547 50.19 L 0.098 74.739 Z M 48.733 12.645 L 36.157 12.645 L 22.831 36.28 C 23.159 36.846 23.244 36.989 23.573 37.556 L 35.978 37.556 L 49.475 13.925 L 48.735 12.645 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:10312755456}},baseVariant,gestureVariant)}),isDisplayed8()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-bx2b2c\",\"data-framer-name\":\"9\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"eE_RVUBGm\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 130 200\"><path d=\"M 96.69 0 L 44.537 0 L 0.375 74.85 L 28.293 124.91 L 85.919 124.91 L 43.42 200 L 101.046 200 L 129.689 148.927 L 129.689 50.543 Z M 86.277 124.171 L 57.98 75.342 L 71.513 50.543 L 128.419 50.543 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:10967321839,withExternalLayout:true,...addPropertyOverrides({o96qo5j9p:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 65 100\"><path d=\"M 48.158 0 L 22.081 0 L 0 37.425 L 13.959 62.455 L 42.772 62.455 L 21.522 100 L 50.336 100 L 64.657 74.464 L 64.657 25.271 Z M 42.951 62.085 L 28.802 37.671 L 35.569 25.271 L 64.022 25.271 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:10275563555},SfJwGOMCe:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 65 100\"><path d=\"M 48.158 0 L 22.081 0 L 0 37.425 L 13.959 62.455 L 42.772 62.455 L 21.522 100 L 50.336 100 L 64.657 74.464 L 64.657 25.271 Z M 42.951 62.085 L 28.802 37.671 L 35.569 25.271 L 64.022 25.271 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:10275563555}},baseVariant,gestureVariant)}),isDisplayed9()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-12f1ov3\",\"data-framer-name\":\"0\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"BbLz4bYfn\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 115 200\"><path d=\"M 86.399 0 L 114.617 50.543 L 114.502 150.372 L 86.399 200 L 29.61 200 L 0.396 150.372 L 0.396 50.543 L 29.223 0 Z M 111.022 50.543 L 57.087 50.543 L 2.394 146.906 C 3.05 148.038 3.216 148.329 3.876 149.462 L 57.811 149.462 L 112.504 53.098 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:10669122960,withExternalLayout:true,...addPropertyOverrides({eeKxUzwPv:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 57 100\"><path d=\"M 42.918 0 L 57 25.271 L 56.943 75.186 L 42.918 100 L 14.579 100 L 0 75.186 L 0 25.271 L 14.386 0 Z M 55.206 25.271 L 28.291 25.271 L 0.997 73.453 C 1.324 74.019 1.407 74.165 1.737 74.731 L 28.652 74.731 L 55.946 26.549 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:10814310980},SfJwGOMCe:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 57 100\"><path d=\"M 42.918 0 L 57 25.271 L 56.943 75.186 L 42.918 100 L 14.579 100 L 0 75.186 L 0 25.271 L 14.386 0 Z M 55.206 25.271 L 28.291 25.271 L 0.997 73.453 C 1.324 74.019 1.407 74.165 1.737 74.731 L 28.652 74.731 L 55.946 26.549 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:10814310980}},baseVariant,gestureVariant)}),isDisplayed10()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-lv6jwu\",\"data-framer-name\":\"Bookmark\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"DUECqTGCO-shape\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 203 200\"><path d=\"M 202.04 15.63 L 195.82 0 L 6.37 0 L 0.15 15.63 L 92.46 102.94 L 92.04 102.94 L 92.04 196 C 93.61 197.56 94.48 198.44 96.04 200 L 106.15 200 L 110.15 196 L 110.15 102.94 L 109.74 102.94 Z M 29.11 18.1 L 173.08 18.1 L 101.1 86.2 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:9468524945,withExternalLayout:true,...addPropertyOverrides({SfJwGOMCe:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 101 100\"><path d=\"M 100.084 7.815 L 97.003 0 L 3.155 0 L 0.074 7.815 L 45.801 51.47 L 45.593 51.47 L 45.593 98 C 46.371 98.78 46.802 99.22 47.575 100 L 52.583 100 L 54.564 98 L 54.564 51.47 L 54.361 51.47 Z M 14.42 9.05 L 85.738 9.05 L 50.081 43.1 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:12180902030}},baseVariant,gestureVariant)}),isDisplayed11()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1rfmfp3\",\"data-framer-name\":\"File\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"K6Bx9xBAA-shape\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 204 200\"><path d=\"M 194.5 44.04 L 148.35 44.04 L 105.65 2.61 L 99.22 0 L 9.88 0 L 0.65 9.23 L 0.65 190.77 L 9.88 200 L 194.5 200 L 203.73 190.77 L 203.73 53.27 Z M 19.11 18.47 L 95.48 18.47 L 121.83 44.04 L 19.11 44.04 Z M 185.27 181.53 L 19.11 181.53 L 19.11 62.5 L 185.27 62.5 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:11822979743,withExternalLayout:true,...addPropertyOverrides({SfJwGOMCe:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 103 100\"><path d=\"M 97.689 22.02 L 74.51 22.02 L 53.063 1.305 L 49.833 0 L 4.961 0 L 0.325 4.615 L 0.325 95.385 L 4.961 100 L 97.689 100 L 102.325 95.385 L 102.325 26.635 Z M 9.597 9.235 L 47.955 9.235 L 61.19 22.02 L 9.597 22.02 Z M 93.053 90.765 L 9.597 90.765 L 9.597 31.25 L 93.053 31.25 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:11761464187}},baseVariant,gestureVariant)}),isDisplayed12()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-12fsp4m\",\"data-framer-name\":\"Search\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"spHC2Dtj9-shape\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 199 200\"><path d=\"M 154.74 0 L 93.073 0 L 49.469 43.605 L 49.469 105.274 L 65.247 121.051 L 0.348 185.653 C 0.348 187.85 0.348 189.083 0.338 191.27 L 8.023 198.995 C 10.21 198.995 11.443 198.995 13.64 199.005 L 78.578 134.383 L 93.073 148.878 L 154.74 148.878 L 198.344 105.274 L 198.344 43.605 Z M 180.569 97.907 L 147.374 131.102 L 100.43 131.102 L 67.235 97.907 L 67.235 50.972 L 100.43 17.776 L 147.374 17.776 L 180.569 50.972 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:8788478337,withExternalLayout:true,...addPropertyOverrides({SfJwGOMCe:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 100 100\"><path d=\"M 77.759 0 L 46.77 0 L 24.859 21.802 L 24.859 52.637 L 32.787 60.526 L 0.175 92.827 C 0.175 93.925 0.175 94.542 0.17 95.635 L 4.032 99.498 C 5.131 99.498 5.75 99.498 6.854 99.502 L 39.487 67.192 L 46.77 74.439 L 77.759 74.439 L 99.67 52.637 L 99.67 21.802 Z M 90.738 48.953 L 74.057 65.551 L 50.467 65.551 L 33.786 48.953 L 33.786 25.486 L 50.467 8.888 L 74.057 8.888 L 90.738 25.486 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:11873812728}},baseVariant,gestureVariant)}),isDisplayed13()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-190x5os\",\"data-framer-name\":\"Paper\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"U1EXkDwTW-shape\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 204 200\"><path d=\"M 200.78 92 L 108.35 2.54 L 102.07 0 L 9.64 0 L 0.61 9.03 L 0.61 196 L 4.61 200 L 14.66 200 L 18.66 196 L 18.66 18.05 L 93.04 18.05 L 93.04 98.48 L 102.07 107.51 L 185.48 107.51 L 185.48 196 C 187.04 197.56 187.91 198.44 189.48 200 L 199.53 200 L 203.53 196 L 203.53 98.48 Z M 111.09 89.46 L 111.09 30.31 L 172.2 89.46 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:11881867237,withExternalLayout:true,...addPropertyOverrides({SfJwGOMCe:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 102 100\"><path d=\"M 100.241 46 L 54.236 1.27 L 51.11 0 L 5.105 0 L 0.61 4.515 L 0.61 98 L 2.601 100 L 7.603 100 L 9.594 98 L 9.594 9.025 L 46.615 9.025 L 46.615 49.24 L 51.11 53.755 L 92.626 53.755 L 92.626 98 C 93.402 98.78 93.835 99.22 94.617 100 L 99.619 100 L 101.61 98 L 101.61 49.24 Z M 55.6 44.73 L 55.6 15.155 L 86.016 44.73 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:11747745318}},baseVariant,gestureVariant)}),isDisplayed14()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1yrc09s\",\"data-framer-name\":\"Clock\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"McrGEnM8j-shape\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 200 200\"><path d=\"M 133.97 18 L 182 66.03 L 182 133.96 L 133.97 181.99 L 66.04 181.99 L 18.01 133.96 L 18.01 66.03 L 66.04 18 Z M 141.42 0 L 58.58 0 L 0 58.58 L 0 141.42 L 58.58 200 L 141.42 200 L 200 141.42 L 200 58.58 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path><path d=\"M 141.62 155.19 L 93.58 106.31 L 91 100 L 91 50.37 C 92.56 48.81 93.44 47.93 95 46.37 L 105 46.37 C 106.56 47.93 107.44 48.81 109 50.37 L 109 96.32 L 154.46 142.58 L 154.41 148.24 L 147.28 155.25 C 145.07 155.23 143.83 155.22 141.62 155.2 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:12228916708,withExternalLayout:true,...addPropertyOverrides({SfJwGOMCe:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 100 100\"><path d=\"M 66.985 9 L 91 33.015 L 91 66.98 L 66.985 90.995 L 33.02 90.995 L 9.005 66.98 L 9.005 33.015 L 33.02 9 Z M 70.71 0 L 29.29 0 L 0 29.29 L 0 70.71 L 29.29 100 L 70.71 100 L 100 70.71 L 100 29.29 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path><path d=\"M 70.81 77.595 L 46.79 53.155 L 45.5 50 L 45.5 25.185 C 46.28 24.405 46.72 23.965 47.5 23.185 L 52.5 23.185 C 53.28 23.965 53.72 24.405 54.5 25.185 L 54.5 48.16 L 77.23 71.29 L 77.205 74.12 L 73.64 77.625 C 72.535 77.615 71.915 77.61 70.81 77.6 Z\" fill=\"var(--token-9d50981a-18ae-4c14-8e30-7f7034b3f364, rgb(255, 102, 34)) /* {&quot;name&quot;:&quot;Secondary 5&quot;} */\"></path></svg>',svgContentId:12554102072}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kR1vc.framer-3y9pry, .framer-kR1vc .framer-3y9pry { display: block; }\",\".framer-kR1vc.framer-qb2jjq { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-kR1vc .framer-pblxjr { flex: none; height: 200px; position: relative; width: 51px; }\",\".framer-kR1vc .framer-1mq9gz2, .framer-kR1vc .framer-1cu1c2z, .framer-kR1vc .framer-1i71889 { flex: none; height: 200px; position: relative; width: 116px; }\",\".framer-kR1vc .framer-vep6d2, .framer-kR1vc .framer-12f1ov3 { flex: none; height: 200px; position: relative; width: 115px; }\",\".framer-kR1vc .framer-1tzh29r { flex: none; height: 200px; position: relative; width: 135px; }\",\".framer-kR1vc .framer-1xvn26b, .framer-kR1vc .framer-1poxtvx, .framer-kR1vc .framer-bx2b2c { flex: none; height: 200px; position: relative; width: 130px; }\",\".framer-kR1vc .framer-lv6jwu { flex: none; height: 200px; position: relative; width: 203px; }\",\".framer-kR1vc .framer-1rfmfp3, .framer-kR1vc .framer-190x5os { flex: none; height: 200px; position: relative; width: 204px; }\",\".framer-kR1vc .framer-12fsp4m { flex: none; height: 200px; position: relative; width: 199px; }\",\".framer-kR1vc .framer-1yrc09s { flex: none; height: 200px; position: relative; width: 200px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kR1vc.framer-qb2jjq { gap: 0px; } .framer-kR1vc.framer-qb2jjq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-kR1vc.framer-qb2jjq > :first-child { margin-left: 0px; } .framer-kR1vc.framer-qb2jjq > :last-child { margin-right: 0px; } }\",\".framer-kR1vc.framer-v-wieu4g .framer-pblxjr, .framer-kR1vc.framer-v-1odcmf .framer-pblxjr { height: 100px; width: 26px; }\",\".framer-kR1vc.framer-v-wieu4g .framer-1mq9gz2, .framer-kR1vc.framer-v-wieu4g .framer-1cu1c2z, .framer-kR1vc.framer-v-wieu4g .framer-1i71889, .framer-kR1vc.framer-v-1lwq7ov .framer-1mq9gz2, .framer-kR1vc.framer-v-1tuam8i .framer-1cu1c2z, .framer-kR1vc.framer-v-12v63c4 .framer-1i71889 { height: 100px; width: 58px; }\",\".framer-kR1vc.framer-v-wieu4g .framer-vep6d2, .framer-kR1vc.framer-v-wieu4g .framer-12f1ov3, .framer-kR1vc.framer-v-183g298 .framer-vep6d2, .framer-kR1vc.framer-v-qu9aad .framer-12f1ov3 { height: 100px; width: 57px; }\",\".framer-kR1vc.framer-v-wieu4g .framer-1tzh29r, .framer-kR1vc.framer-v-db21nl .framer-1tzh29r { height: 100px; width: 68px; }\",\".framer-kR1vc.framer-v-wieu4g .framer-1xvn26b, .framer-kR1vc.framer-v-krcn9f .framer-1xvn26b { height: 100px; width: 72px; }\",\".framer-kR1vc.framer-v-wieu4g .framer-1poxtvx, .framer-kR1vc.framer-v-wieu4g .framer-bx2b2c, .framer-kR1vc.framer-v-wk8qaz .framer-1poxtvx, .framer-kR1vc.framer-v-1dvh7j0 .framer-bx2b2c { height: 100px; width: 65px; }\",\".framer-kR1vc.framer-v-wieu4g .framer-lv6jwu { height: 100px; width: 101px; }\",\".framer-kR1vc.framer-v-wieu4g .framer-1rfmfp3 { height: 100px; width: 103px; }\",\".framer-kR1vc.framer-v-wieu4g .framer-12fsp4m, .framer-kR1vc.framer-v-wieu4g .framer-1yrc09s { height: 100px; width: 100px; }\",\".framer-kR1vc.framer-v-wieu4g .framer-190x5os { height: 100px; width: 102px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 2304\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"CjoI4MB7X\":{\"layout\":[\"auto\",\"auto\"]},\"RFT4aXEzX\":{\"layout\":[\"auto\",\"auto\"]},\"fplouueRA\":{\"layout\":[\"auto\",\"auto\"]},\"xgz7fCIRT\":{\"layout\":[\"auto\",\"auto\"]},\"H53k8CyF2\":{\"layout\":[\"auto\",\"auto\"]},\"Cqn0PbEXm\":{\"layout\":[\"auto\",\"auto\"]},\"CJYh9F5A7\":{\"layout\":[\"auto\",\"auto\"]},\"EOcZ9vOQv\":{\"layout\":[\"auto\",\"auto\"]},\"SnD3xwJBA\":{\"layout\":[\"auto\",\"auto\"]},\"gNPiGjR0L\":{\"layout\":[\"auto\",\"auto\"]},\"LDY3qfeUv\":{\"layout\":[\"auto\",\"auto\"]},\"hxd1TPZej\":{\"layout\":[\"auto\",\"auto\"]},\"tIyOzfRVI\":{\"layout\":[\"auto\",\"auto\"]},\"aglAEbixO\":{\"layout\":[\"auto\",\"auto\"]},\"gckqsA18D\":{\"layout\":[\"auto\",\"auto\"]},\"SfJwGOMCe\":{\"layout\":[\"auto\",\"auto\"]},\"tBGJ5OsWK\":{\"layout\":[\"auto\",\"auto\"]},\"gbAVRIVhY\":{\"layout\":[\"auto\",\"auto\"]},\"WMJrMo8Nd\":{\"layout\":[\"auto\",\"auto\"]},\"Aa1iHnIbF\":{\"layout\":[\"auto\",\"auto\"]},\"m9WEdEhoa\":{\"layout\":[\"auto\",\"auto\"]},\"wUL09hHsT\":{\"layout\":[\"auto\",\"auto\"]},\"nP1kbJwZD\":{\"layout\":[\"auto\",\"auto\"]},\"YQI1Ssaz6\":{\"layout\":[\"auto\",\"auto\"]},\"o96qo5j9p\":{\"layout\":[\"auto\",\"auto\"]},\"eeKxUzwPv\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerpcnAJJ3UQ=withCSS(Component,css,\"framer-kR1vc\");export default FramerpcnAJJ3UQ;FramerpcnAJJ3UQ.displayName=\"Icon Set\";FramerpcnAJJ3UQ.defaultProps={height:200,width:2304};addPropertyControls(FramerpcnAJJ3UQ,{variant:{options:[\"VxG6WxtGl\",\"CjoI4MB7X\",\"RFT4aXEzX\",\"fplouueRA\",\"xgz7fCIRT\",\"H53k8CyF2\",\"Cqn0PbEXm\",\"CJYh9F5A7\",\"EOcZ9vOQv\",\"SnD3xwJBA\",\"gNPiGjR0L\",\"LDY3qfeUv\",\"hxd1TPZej\",\"tIyOzfRVI\",\"aglAEbixO\",\"gckqsA18D\",\"SfJwGOMCe\",\"tBGJ5OsWK\",\"gbAVRIVhY\",\"WMJrMo8Nd\",\"Aa1iHnIbF\",\"m9WEdEhoa\",\"wUL09hHsT\",\"nP1kbJwZD\",\"YQI1Ssaz6\",\"o96qo5j9p\",\"eeKxUzwPv\"],optionTitles:[\"Main_XL\",\"1_XL\",\"2_XL\",\"3_XL\",\"4_XL\",\"5_XL\",\"6_XL\",\"7_XL\",\"8_XL\",\"9_XL\",\"0_XL\",\"Bookmark_XL\",\"File_XL\",\"Search_XL\",\"Paper_XL\",\"Clock_XL\",\"Main_L\",\"1_L\",\"2_L\",\"3_L\",\"4_L\",\"5_L\",\"6_L\",\"7_L\",\"8_L\",\"9_L\",\"0_L\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerpcnAJJ3UQ,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpcnAJJ3UQ\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"CjoI4MB7X\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"RFT4aXEzX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fplouueRA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xgz7fCIRT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"H53k8CyF2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Cqn0PbEXm\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"CJYh9F5A7\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"EOcZ9vOQv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SnD3xwJBA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gNPiGjR0L\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"LDY3qfeUv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hxd1TPZej\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tIyOzfRVI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"aglAEbixO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gckqsA18D\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SfJwGOMCe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tBGJ5OsWK\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gbAVRIVhY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"WMJrMo8Nd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Aa1iHnIbF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"m9WEdEhoa\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"wUL09hHsT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"nP1kbJwZD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"YQI1Ssaz6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"o96qo5j9p\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"eeKxUzwPv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"2304\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pcnAJJ3UQ.map", "// Generated by Framer (48da836)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js\";import IconSet from\"https://framerusercontent.com/modules/XB0M6r7toJDzR8DI6dW5/aHR2ouT0T6Y1h7XuOWGH/pcnAJJ3UQ.js\";const IconSetFonts=getFonts(IconSet);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"lvM9DpdMp\",\"l8keY9bxg\"];const serializationHash=\"framer-xRY82\";const variantClassNames={l8keY9bxg:\"framer-v-1m49a8o\",lvM9DpdMp:\"framer-v-1im2bwj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Slide_L:\"l8keY9bxg\",Slide_XL:\"lvM9DpdMp\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"lvM9DpdMp\"};};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:\"lvM9DpdMp\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"l8keY9bxg\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"l8keY9bxg\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1im2bwj\",className,classNames),\"data-framer-name\":\"Slide_XL\",layoutDependency:layoutDependency,layoutId:\"lvM9DpdMp\",ref:ref??ref1,style:{...style},...addPropertyOverrides({l8keY9bxg:{\"data-framer-name\":\"Slide_L\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ayjcy2-container\",\"data-framer-name\":\"Ticker_XL\",layoutDependency:layoutDependency,layoutId:\"s8ORd_g1n-container\",name:\"Ticker_XL\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"right\",fadeOptions:{fadeAlpha:.35,fadeContent:true,fadeInset:0,fadeWidth:10,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"s8ORd_g1n\",layoutId:\"s8ORd_g1n\",name:\"Ticker_XL\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"2304px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ajz8gk-container\",\"data-framer-name\":\"Icon Set_XL\",layoutDependency:layoutDependency,layoutId:\"Izp8W00dW-container\",name:\"Icon Set_XL\",children:/*#__PURE__*/_jsx(IconSet,{height:\"100%\",id:\"Izp8W00dW\",layoutId:\"Izp8W00dW\",name:\"Icon Set_XL\",variant:\"VxG6WxtGl\",width:\"100%\"})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d8mz3u-container\",\"data-framer-name\":\"Ticker_L\",layoutDependency:layoutDependency,layoutId:\"ktHpum_rd-container\",name:\"Ticker_L\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"right\",fadeOptions:{fadeAlpha:.35,fadeContent:true,fadeInset:0,fadeWidth:10,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"ktHpum_rd\",layoutId:\"ktHpum_rd\",name:\"Ticker_L\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"1230px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18qrbyx-container\",\"data-framer-name\":\"Icon Set_L\",layoutDependency:layoutDependency,layoutId:\"T4Cq_ehnv-container\",name:\"Icon Set_L\",children:/*#__PURE__*/_jsx(IconSet,{height:\"100%\",id:\"T4Cq_ehnv\",layoutId:\"T4Cq_ehnv\",name:\"Icon Set_L\",variant:\"SfJwGOMCe\",width:\"100%\"})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xRY82.framer-1xt58bh, .framer-xRY82 .framer-1xt58bh { display: block; }\",\".framer-xRY82.framer-1im2bwj { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 210px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1896px; }\",\".framer-xRY82 .framer-1ayjcy2-container { flex: none; height: 210px; position: relative; width: 1896px; }\",\".framer-xRY82 .framer-ajz8gk-container, .framer-xRY82 .framer-18qrbyx-container { height: auto; position: relative; width: auto; }\",\".framer-xRY82 .framer-1d8mz3u-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xRY82.framer-1im2bwj { gap: 0px; } .framer-xRY82.framer-1im2bwj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-xRY82.framer-1im2bwj > :first-child { margin-left: 0px; } .framer-xRY82.framer-1im2bwj > :last-child { margin-right: 0px; } }\",\".framer-xRY82.framer-v-1m49a8o.framer-1im2bwj { height: 110px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 210\n * @framerIntrinsicWidth 1896\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"l8keY9bxg\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerdZJSenUKx=withCSS(Component,css,\"framer-xRY82\");export default FramerdZJSenUKx;FramerdZJSenUKx.displayName=\"Slide Icon Bar\";FramerdZJSenUKx.defaultProps={height:210,width:1896};addPropertyControls(FramerdZJSenUKx,{variant:{options:[\"lvM9DpdMp\",\"l8keY9bxg\"],optionTitles:[\"Slide_XL\",\"Slide_L\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerdZJSenUKx,[{explicitInter:true,fonts:[]},...IconSetFonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdZJSenUKx\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"l8keY9bxg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"210\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1896\"}},\"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", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "isDisplayed14", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "SVG", "css", "FramerpcnAJJ3UQ", "withCSS", "pcnAJJ3UQ_default", "addPropertyControls", "ControlType", "addFonts", "IconSetFonts", "getFonts", "pcnAJJ3UQ_default", "TickerFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "css", "FramerdZJSenUKx", "withCSS", "dZJSenUKx_default", "addPropertyControls", "ControlType", "addFonts"]
}
