{"version":3,"file":"PxC5maWzx.07OYajEz.mjs","names":["size","Image"],"sources":["https:/framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js","https:/framerusercontent.com/modules/hXWoWdb04JAZBlIhPOAJ/HIt6i8j1AlEML0mQm0YG/PxC5maWzx.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:\"✨\"}),/*#__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 (ff6f0b6)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,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/6YdWVZhgezRAHPsDckZo/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-ZEBlZ\";const variantClassNames={YSPMKsAZx:\"framer-v-1izm5jm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"YSPMKsAZx\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1izm5jm\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"YSPMKsAZx\",ref:ref??ref1,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-a3sxtc-container\",layoutDependency:layoutDependency,layoutId:\"ipUtsFO8p-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:40,overflow:false},gap:48,height:\"100%\",hoverFactor:1,id:\"ipUtsFO8p\",layoutId:\"ipUtsFO8p\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/RtWlYYXAMSlixl2yjI9fuHyZ0.png\"},className:\"framer-6dict2\",\"data-framer-name\":\"Peter Pane\",layoutDependency:layoutDependency,layoutId:\"m_l2bon70\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/R6QPLpbQE8LNBTM70HUVcxOD7N8.png\"},className:\"framer-1tstplt\",\"data-framer-name\":\"Manhattan's Burgers\",layoutDependency:layoutDependency,layoutId:\"CKlnfMa6C\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/3ufgP4Gr22pl659OcoKyxnQFee4.png\"},className:\"framer-1jlgs3b\",\"data-framer-name\":\"Concept Family\",layoutDependency:layoutDependency,layoutId:\"CyXraWIFv\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/A15kowlNp9dyyxbx98WDab4QZQ.png\"},className:\"framer-davf4k\",\"data-framer-name\":\"Burgermeister\",layoutDependency:layoutDependency,layoutId:\"LA9I4bJsu\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/g2BRjff2UHyoaygG0wQ1URp9PA.png\"},className:\"framer-1rkhtgj\",\"data-framer-name\":\"World of Pizza\",layoutDependency:layoutDependency,layoutId:\"vLTJlyU5E\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/6scNoLELx58ZVG7u6M3Mv1HqRM.png\"},className:\"framer-1yfw50u\",\"data-framer-name\":\"Sapros\",layoutDependency:layoutDependency,layoutId:\"AsQfCmVAW\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/DRxGTse2fGUfn1nCXxXMAsxOoQ.png\"},className:\"framer-mib9yw\",\"data-framer-name\":\"Maredo\",layoutDependency:layoutDependency,layoutId:\"WSwsbiTnW\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/LM9yswKlc78uCLjWnCAKXVOIvA.png\"},className:\"framer-1dpegt4\",\"data-framer-name\":\"Enchilada\",layoutDependency:layoutDependency,layoutId:\"oaYo_1DsZ\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"65.5px\",src:\"https://framerusercontent.com/images/Q4vfTWvSb5zPOW8Ww4SCUfY.png\",srcSet:\"https://framerusercontent.com/images/Q4vfTWvSb5zPOW8Ww4SCUfY.png?scale-down-to=512 512w,https://framerusercontent.com/images/Q4vfTWvSb5zPOW8Ww4SCUfY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Q4vfTWvSb5zPOW8Ww4SCUfY.png 1204w\"},className:\"framer-3at40v\",\"data-framer-name\":\"Tele Pizza\",layoutDependency:layoutDependency,layoutId:\"fXUnwimTH\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"69px\",src:\"https://framerusercontent.com/images/egSkeISsJjY5RR0ntquwBn8FA.png\",srcSet:\"https://framerusercontent.com/images/egSkeISsJjY5RR0ntquwBn8FA.png?scale-down-to=512 512w,https://framerusercontent.com/images/egSkeISsJjY5RR0ntquwBn8FA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/egSkeISsJjY5RR0ntquwBn8FA.png 1276w\"},className:\"framer-1akhvhm\",\"data-framer-name\":\"Kaimug\",layoutDependency:layoutDependency,layoutId:\"dH91Ew1RW\",style:{opacity:.7}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aj638e\",\"data-framer-name\":\"Honu\",layoutDependency:layoutDependency,layoutId:\"Zrd8Auqlw\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1yl107h\",\"data-framer-name\":\"svgexport-12 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:183,intrinsicWidth:355,layoutDependency:layoutDependency,layoutId:\"NNYANb2tN\",svg:'<svg width=\"355\" height=\"183\" viewBox=\"0 0 355 183\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_1_25)\">\\n<mask id=\"mask0_1_25\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"355\" height=\"183\">\\n<path d=\"M355 0H0V183H355V0Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_1_25)\">\\n<mask id=\"mask1_1_25\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"114\" y=\"144\" width=\"121\" height=\"22\">\\n<path d=\"M234.786 144.873H114.702V165.373H234.786V144.873Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask1_1_25)\">\\n<path d=\"M229.736 152.731L230.113 150.894C230.007 150.715 229.862 150.543 229.677 150.376C229.493 150.208 229.283 150.057 229.046 149.923C228.808 149.788 228.548 149.681 228.262 149.598C227.976 149.513 227.676 149.471 227.356 149.471C226.959 149.471 226.587 149.531 226.238 149.649C225.889 149.768 225.586 149.938 225.323 150.16C225.063 150.383 224.853 150.656 224.699 150.984C224.545 151.309 224.466 151.686 224.466 152.11C224.466 152.584 224.57 152.995 224.777 153.346C224.985 153.697 225.22 154.015 225.48 154.302C225.77 154.62 226.111 154.936 226.503 155.257C226.895 155.576 227.337 155.946 227.83 156.361C228.072 156.567 228.257 156.761 228.388 156.939C228.52 157.117 228.583 157.32 228.583 157.547C228.583 157.844 228.475 158.063 228.257 158.208C228.04 158.352 227.772 158.421 227.451 158.421C227.201 158.421 226.943 158.382 226.682 158.303C226.422 158.222 226.167 158.115 225.922 157.978C225.674 157.838 225.444 157.676 225.232 157.49C225.02 157.302 224.835 157.095 224.681 156.868L224.115 158.706C224.201 158.923 224.345 159.139 224.542 159.359C224.74 159.576 224.982 159.771 225.268 159.944C225.554 160.117 225.872 160.257 226.225 160.368C226.579 160.476 226.953 160.53 227.35 160.53C227.815 160.53 228.24 160.458 228.626 160.316C229.013 160.174 229.346 159.971 229.627 159.71C229.907 159.447 230.124 159.132 230.278 158.76C230.433 158.391 230.511 157.977 230.511 157.523C230.511 157.216 230.473 156.931 230.395 156.671C230.317 156.41 230.213 156.167 230.084 155.946C229.953 155.723 229.801 155.515 229.627 155.324C229.453 155.133 229.266 154.946 229.061 154.769C228.78 154.512 228.482 154.257 228.169 154.004C227.855 153.752 227.494 153.46 227.087 153.122C226.933 152.993 226.776 152.851 226.622 152.693C226.468 152.536 226.389 152.373 226.389 152.205C226.389 152.086 226.42 151.986 226.476 151.901C226.534 151.816 226.612 151.752 226.708 151.707C226.804 151.664 226.908 151.629 227.019 151.611C227.13 151.59 227.243 151.581 227.36 151.581C227.767 151.581 228.184 151.684 228.616 151.892C229.046 152.099 229.417 152.381 229.725 152.737M214.842 149.685V160.326H220.356V158.223H216.745V149.685H214.844H214.842ZM205.949 156.606L204.005 149.685H202.221L200.278 156.606L198.001 149.685H195.956L199.409 160.326H201.15L203.151 153.124L205.153 160.326H206.894L210.346 149.685H208.228L205.951 156.606H205.949ZM187.104 151.583C187.587 151.583 188.037 151.665 188.454 151.828C188.868 151.991 189.23 152.223 189.535 152.526C189.842 152.828 190.078 153.186 190.252 153.608C190.427 154.028 190.513 154.492 190.513 155.006C190.513 155.52 190.427 155.987 190.252 156.405C190.078 156.826 189.839 157.185 189.535 157.487C189.23 157.789 188.871 158.021 188.454 158.183C188.037 158.346 187.587 158.429 187.104 158.429C186.621 158.429 186.172 158.349 185.755 158.183C185.341 158.021 184.977 157.789 184.668 157.487C184.358 157.185 184.117 156.823 183.943 156.405C183.769 155.984 183.683 155.52 183.683 155.006C183.683 154.492 183.769 154.025 183.943 153.608C184.117 153.186 184.358 152.828 184.668 152.526C184.979 152.223 185.341 151.991 185.755 151.828C186.172 151.665 186.621 151.583 187.104 151.583ZM187.104 149.479C186.378 149.479 185.692 149.622 185.045 149.903C184.398 150.185 183.827 150.571 183.334 151.066C182.842 151.56 182.453 152.143 182.167 152.814C181.882 153.485 181.739 154.216 181.739 155.009C181.739 155.802 181.882 156.529 182.167 157.203C182.453 157.877 182.842 158.458 183.334 158.951C183.827 159.445 184.398 159.831 185.045 160.115C185.692 160.397 186.378 160.539 187.104 160.539C187.829 160.539 188.517 160.397 189.165 160.115C189.811 159.834 190.382 159.447 190.875 158.951C191.368 158.458 191.757 157.874 192.042 157.203C192.328 156.531 192.47 155.802 192.47 155.009C192.47 154.216 192.328 153.471 192.042 152.794C191.757 152.118 191.368 151.534 190.875 151.046C190.382 150.559 189.811 150.174 189.165 149.898C188.517 149.622 187.829 149.483 187.104 149.483M172.86 155.912H174.426C174.601 155.912 174.759 155.946 174.903 156.016C175.047 156.086 175.177 156.173 175.288 156.281C175.399 156.389 175.484 156.519 175.54 156.667C175.598 156.814 175.627 156.968 175.627 157.126C175.627 157.472 175.511 157.76 175.278 157.992C175.045 158.225 174.764 158.342 174.436 158.342H172.854V155.91L172.86 155.912ZM172.86 151.673H173.918C174.257 151.673 174.537 151.792 174.76 152.029C174.983 152.267 175.092 152.543 175.092 152.858C175.092 153.204 174.979 153.488 174.751 153.71C174.524 153.932 174.252 154.043 173.934 154.043H172.86V151.671V151.673ZM173.6 149.689H170.958V160.329H174.064C174.529 160.329 174.972 160.257 175.392 160.115C175.814 159.974 176.182 159.766 176.5 159.5C176.818 159.234 177.071 158.908 177.256 158.523C177.44 158.138 177.532 157.702 177.532 157.219C177.532 156.566 177.401 156.034 177.14 155.618C176.88 155.202 176.531 154.882 176.097 154.655C176.377 154.407 176.596 154.123 176.756 153.803C176.915 153.483 176.995 153.086 176.995 152.611C176.995 152.136 176.907 151.705 176.735 151.343C176.561 150.982 176.321 150.68 176.018 150.432C175.715 150.185 175.353 150 174.936 149.876C174.521 149.752 174.074 149.691 173.602 149.691M156.805 160.332H158.705V149.691H156.805V160.332ZM144.084 149.691V160.332H145.983V155.93L149.901 160.332H152.526L147.566 154.746L151.96 149.691H149.524L145.983 153.752V149.691H144.084ZM136.669 160.332H138.569V149.691H136.669V160.332ZM124.177 149.691V151.767H127.237V160.332H129.139V151.767H132.199V149.691H124.176H124.177Z\" fill=\"#757575\"/>\\n</g>\\n<mask id=\"mask2_1_25\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-27\" y=\"18\" width=\"564\" height=\"114\">\\n<path d=\"M443.948 18.4059C375.222 18.4059 345.616 51.2453 273.717 51.2453C201.819 51.2453 158.468 19.4653 100.315 19.4653C42.1612 19.4653 -23.3935 54.4233 -23.3935 54.4233L-26.5655 129.636C-26.5655 129.636 540.166 131.755 535.936 131.755C531.707 131.755 536.994 40.6519 536.994 40.6519C536.994 40.6519 512.675 18.4059 443.948 18.4059Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask2_1_25)\">\\n<path d=\"M270.744 93.513C270.664 93.691 270.539 93.8623 270.516 94.0469C270.496 94.182 270.608 94.33 270.657 94.4751C270.755 94.3038 270.852 94.1324 270.929 94.0008C270.852 93.7964 270.798 93.6547 270.744 93.513ZM135.052 112.618L135.036 112.779L135.217 112.713L135.052 112.615V112.618ZM148.121 95.75C148.09 95.8655 148.096 95.9873 148.093 96.1092C148.214 96.0498 148.372 95.9937 148.386 95.9182C148.416 95.7434 148.336 95.549 148.301 95.3613C148.241 95.4897 148.157 95.615 148.124 95.75M148.039 96.1388C148.029 96.1883 148.019 96.2376 148.009 96.2837C148.039 96.2508 148.07 96.2212 148.096 96.1883V96.1092C148.077 96.1189 148.057 96.129 148.039 96.1388ZM145.196 72.6621C145.811 73.1992 146.42 73.7395 147.049 74.2601C147.126 74.3258 147.391 74.3194 147.421 74.2633C147.485 74.1513 147.516 73.9436 147.448 73.8483C146.907 73.0641 146.254 72.4614 145.196 72.6621ZM145.146 72.6195C145.146 72.6195 145.112 72.5898 145.095 72.5734V72.6754C145.133 72.6687 145.162 72.6687 145.196 72.6621C145.179 72.6491 145.162 72.6325 145.146 72.6195ZM150.729 84.4072C150.829 84.2356 150.93 84.0677 151.011 83.9361C150.927 83.7285 150.873 83.5868 150.816 83.4451C150.732 83.6262 150.601 83.7976 150.573 83.9853C150.554 84.1172 150.675 84.2655 150.732 84.4072M155.868 84.1535C155.877 84.2258 155.673 84.4104 155.595 84.3972C155.458 84.3709 155.259 84.2555 155.225 84.1371C155.074 83.6196 154.973 83.086 154.956 83.0134C154.956 82.3842 154.927 82.2197 154.963 82.0714C155.01 81.8836 155.111 81.7088 155.189 81.5277C155.276 81.653 155.417 81.7682 155.448 81.9032C155.605 82.6479 155.746 83.399 155.864 84.1535M155.253 79.1129C155.256 79.6368 155.169 80.1606 155.105 80.681C155.105 80.6908 154.896 80.7107 154.883 80.681C154.664 80.2329 154.466 79.7816 154.456 79.7652C154.456 79.0173 154.432 78.7769 154.463 78.543C154.483 78.3979 154.581 78.2596 154.644 78.118C154.741 78.2398 154.856 78.3518 154.933 78.4837C155.058 78.6879 155.249 78.9019 155.249 79.1161M154.274 75.7326C154.153 75.6735 154.032 75.6108 153.912 75.5514C153.912 75.5154 153.918 75.4757 153.922 75.4394C153.797 75.2583 153.673 75.0771 153.561 74.8894C153.555 74.8761 153.659 74.7969 153.709 74.7509C153.781 74.9452 153.854 75.1396 153.915 75.3375C153.925 75.3703 153.925 75.4066 153.922 75.4429C153.935 75.4625 153.948 75.4823 153.961 75.5019C154.066 75.5811 154.17 75.6569 154.274 75.736M152.765 81.5441C152.083 83.8206 152.661 86.1366 152.432 88.4134C152.399 88.7296 152.124 89.0227 151.962 89.3257C151.807 89.0919 151.649 88.858 151.498 88.6242C151.417 88.4955 151.343 88.3638 151.27 88.2319C151.189 88.3373 151.044 88.4396 151.037 88.5482C151.001 89.1051 150.973 89.6618 150.994 90.2185C151.095 93.2527 149.75 95.8753 148.527 98.5274C148.442 98.7051 148.057 98.748 147.808 98.8534C147.744 98.6362 147.6 98.4055 147.629 98.2045C147.727 97.562 147.875 96.9296 148.013 96.2903C144.42 100.445 140.007 103.397 134.773 105.288C133.052 105.91 131.21 105.891 129.54 106.622C129.291 106.731 128.851 106.401 128.499 106.286C127.997 106.121 127.504 105.933 126.992 105.825C126.781 105.778 126.532 105.907 126.296 105.956C126.562 106.062 126.835 106.151 127.084 106.286C127.117 106.306 127.03 106.671 126.986 106.675C126.499 106.704 126.004 106.655 125.524 106.708C124.858 106.78 124.768 106.434 124.798 105.923C124.798 105.91 124.462 105.805 124.368 105.864C123.547 106.401 122.868 106.362 122.354 105.465C120.502 105.423 119.299 104.128 117.938 103.186C117.084 102.596 116.368 101.799 115.656 101.035C114.785 100.099 114.032 99.0512 113.138 98.1418C111.693 96.6725 110.937 94.8705 110.436 92.9629C110.016 91.3617 109.717 89.7177 109.508 88.0738C109.391 87.1448 109.458 86.1631 109.619 85.234C109.969 83.2112 110.362 81.1884 110.883 79.2019C111.135 78.2332 111.599 77.2745 112.17 76.441C114.654 72.8202 117.944 70.0464 121.813 67.9216C124.875 66.2412 128.095 65.5098 131.611 66.2214C132.79 66.4587 134.037 66.3797 135.227 66.5871C138.114 67.0879 140.379 68.8011 142.648 70.4582C143.523 71.0972 144.295 71.865 145.108 72.5766C145.123 71.8946 145.108 71.2092 145.187 70.5339C145.213 70.2868 145.462 69.9277 145.674 69.875C145.912 69.8157 146.4 69.9706 146.48 70.1584C146.998 71.3708 147.942 72.2373 148.759 73.2289C149.427 74.0361 149.632 75.2188 150.013 76.2466C150.093 76.4609 149.952 76.7803 150.07 76.9484C151.048 78.3486 151.081 79.9201 151.034 81.5211C151.031 81.6662 151.226 81.8177 151.327 81.9692C151.381 81.8275 151.448 81.6892 151.488 81.5441C151.606 81.1389 151.327 80.4175 152.05 80.4932C152.338 80.5229 152.853 81.2708 152.768 81.5475M152.308 79.6664L152.147 79.6466L152.245 79.4983L152.308 79.663V79.6664ZM147.854 69.5654C147.804 69.6149 147.744 69.7103 147.7 69.7037C147.572 69.6806 147.455 69.6213 147.317 69.5686C147.408 69.4963 147.495 69.3676 147.572 69.3745C147.673 69.3843 147.76 69.4963 147.854 69.5654ZM146.446 69.0151C146.208 68.7582 145.99 68.4815 145.731 68.2444C145.24 67.7929 144.733 67.358 144.231 66.92C144.194 66.9232 144.164 66.92 144.128 66.9266C144.128 66.8903 144.138 66.8506 144.141 66.8146C144.013 66.6266 143.879 66.4388 143.761 66.2447C143.754 66.2314 143.865 66.1491 143.922 66.0995C143.997 66.3005 144.074 66.4981 144.138 66.7023C144.148 66.7354 144.148 66.7749 144.141 66.8146C144.154 66.8374 144.171 66.8572 144.184 66.8803C144.202 66.8935 144.218 66.9099 144.231 66.9232C145.065 66.8013 145.761 67.0847 146.198 67.7765C146.41 68.1125 146.372 68.6001 146.446 69.0217M143.65 68.4452C144.007 68.6859 144.343 68.9624 144.787 69.3149C144.416 69.651 144.192 69.8554 143.966 70.0596C143.731 69.674 143.465 69.2985 143.287 68.8901C143.25 68.8043 143.633 68.4354 143.646 68.4452M137.089 65.1279C136.77 65.1279 136.504 65.1673 136.262 65.108C136.158 65.0815 136.101 64.8543 136.024 64.7192C136.323 64.6731 136.619 64.617 136.918 64.6006C136.948 64.6006 136.991 64.8212 137.089 65.1279ZM109.354 95.5951C109.377 95.615 109.394 95.638 109.421 95.6611C109.518 95.7368 109.616 95.8125 109.714 95.8917C109.599 95.8324 109.485 95.7731 109.367 95.7172C109.364 95.6775 109.357 95.638 109.354 95.5986C107.909 94.3366 107.734 92.594 107.549 90.8644C107.535 90.7423 107.878 90.4558 108.029 90.4722C108.299 90.4987 108.746 90.6732 108.769 90.8347C109.004 92.4161 109.169 94.0106 109.354 95.5986M107.861 86.2224C107.811 86.2817 107.76 86.341 107.71 86.4004C107.656 86.2618 107.586 86.1268 107.559 85.9851C107.549 85.9358 107.653 85.8665 107.704 85.8074C107.757 85.9456 107.811 86.0839 107.861 86.2224ZM109.559 97.8915C109.676 97.9508 109.797 98.0067 109.918 98.066C109.918 98.0957 109.925 98.1155 109.922 98.1418C110.594 98.3462 110.866 98.8107 110.829 99.4728C110.849 99.4794 110.863 99.4927 110.883 99.499C110.99 99.575 111.095 99.6508 111.202 99.7265C111.078 99.6672 110.954 99.6079 110.833 99.552C110.833 99.5223 110.829 99.499 110.833 99.4728C110.218 99.2323 109.888 98.8041 109.925 98.1418C109.905 98.1354 109.892 98.1222 109.871 98.1187C109.767 98.043 109.666 97.9672 109.562 97.8915M112.012 101.242C112.13 101.305 112.251 101.367 112.369 101.426C112.469 101.499 112.57 101.571 112.671 101.644C112.553 101.588 112.432 101.535 112.315 101.479C112.214 101.4 112.113 101.321 112.012 101.242ZM151.114 94.093C151.114 94.0403 151.212 93.9907 151.266 93.9415C151.317 94.0665 151.367 94.1918 151.417 94.3202C151.334 94.3729 151.246 94.4291 151.162 94.4818C151.142 94.3499 151.108 94.2214 151.114 94.093ZM151.599 92.6597C151.602 92.607 151.693 92.5609 151.747 92.5114C151.794 92.6367 151.845 92.7619 151.891 92.8872C151.807 92.9399 151.724 92.9926 151.639 93.0419C151.622 92.9134 151.589 92.785 151.599 92.6597ZM28.4801 58.5025L28.3321 58.5618L28.3524 58.4101L28.4801 58.5025ZM26.154 78.2565C26.0834 78.543 26.0096 78.8327 25.9356 79.1227C25.8584 78.9416 25.7173 78.7604 25.7205 78.5825C25.7239 78.2893 25.8214 77.9927 25.8785 77.6995C25.966 77.874 26.053 78.0488 26.154 78.2565ZM25.8146 82.4731L25.9626 82.4075L25.9454 82.5656L25.8146 82.4731ZM157.208 83.4122C157.387 83.0301 157.222 82.493 157.215 82.0253C156.325 82.1373 156.418 81.8177 156.677 81.1455C156.892 80.5854 156.99 79.8047 156.748 79.2973C156.19 78.118 156.117 76.8264 155.676 75.6635C154.671 73.0149 153.992 70.1549 151.646 68.1785C151.35 67.9279 151.186 67.5294 150.934 67.2198C149.498 65.4473 147.878 63.8429 146.503 61.9914C145.411 60.5219 143.364 59.6884 141.32 59.7314C139.721 59.7642 138.481 59.27 137.439 58.1302C136.927 57.57 136.296 57.3034 135.496 57.3065C131.443 57.323 127.382 57.1746 123.407 58.252C118.714 59.5205 114.54 61.6916 111.064 65.0288C109.152 66.8638 107.451 68.9131 105.626 70.8371C103.694 72.8729 102.628 75.3208 102.047 77.9861C101.815 79.0435 101.324 79.7356 100.212 79.9201C99.4185 80.0518 98.6221 80.243 97.8219 80.2724C95.7852 80.3516 93.7451 80.3484 91.705 80.3878C90.4848 80.4109 89.2647 80.4538 88.0479 80.4999C85.0433 80.6119 82.0383 80.7732 79.0305 80.8325C77.958 80.8524 77.6757 80.457 77.5951 79.3237C77.565 78.9252 77.5951 78.5263 77.5951 78.1246C77.6052 72.6886 77.6387 67.2526 77.6086 61.8167C77.5986 60.1498 77.9816 58.364 75.7836 57.3923C74.8392 56.9771 74.8188 56.5984 74.4223 57.3791C74.0694 58.0708 73.7366 58.8516 73.7097 59.6061C73.4813 65.8162 73.3264 72.0297 73.1517 78.2432C73.1348 78.8031 73.1718 79.3632 73.1482 79.9233C73.1382 80.1474 73.0206 80.3648 72.95 80.5854C72.8625 80.3945 72.7116 80.2067 72.6981 80.0089C72.5199 77.1593 72.2141 74.3094 72.231 71.4598C72.2545 67.3252 71.8041 63.1707 72.641 59.0592C72.7317 58.6079 72.641 58.1039 72.5569 57.636C72.5199 57.435 72.2746 57.2703 72.1269 57.0926C71.9989 57.2242 71.7806 57.3428 71.757 57.4911C71.5789 58.5748 71.3568 59.6622 71.313 60.756C71.2728 61.8037 71.7401 62.9565 71.4343 63.8858C70.9403 65.3848 70.829 66.8869 70.7988 68.3991C70.7248 72.155 70.7721 75.914 70.7285 79.6696C70.7116 81.1853 70.668 81.1884 69.1555 81.564C68.8428 81.6429 68.5237 81.7057 68.201 81.7253C65.5257 81.89 62.8532 82.1273 60.1779 82.18C55.6943 82.269 51.2075 82.2295 46.7204 82.2592C44.5997 82.2724 42.4789 82.2822 40.3614 82.3646C38.1732 82.4469 35.9885 82.6085 33.8038 82.7435C32.8794 82.8026 32.5268 82.4337 32.5067 81.4914C32.3888 75.2715 32.2175 69.0548 32.0763 62.8347C32.0494 61.6355 32.1033 60.4363 32.0898 59.2372C32.083 58.6837 32.0996 58.1005 31.9384 57.5801C31.7602 57.0165 31.3907 56.5126 31.1018 55.9821C30.779 56.3939 30.4327 56.7925 30.1335 57.221C29.5422 58.0642 29.7204 57.1945 29.5758 56.9969C29.4647 56.8486 29.2464 56.5851 29.1959 56.6113C28.1507 57.1286 28.2044 56.2491 27.9892 55.7186C27.6197 56.0777 27.2533 56.4434 26.8735 56.7959C26.8296 56.8354 26.712 56.7959 26.6348 56.8092C25.2669 57.0563 25.2264 57.0563 25.2198 58.3839C25.1894 64.3797 25.2026 70.3758 25.1524 76.3719C25.1421 77.7061 24.8333 79.0435 24.8468 80.378C24.86 81.7057 24.1913 83.2573 25.8785 84.216C26.0837 84.3312 26.1878 85.1352 26.0197 85.2934C24.9306 86.3278 25.6568 87.2404 25.9996 88.2682C26.2079 88.8975 25.9354 89.665 25.9557 90.3668C26.0028 91.9054 24.3964 93.4802 26.0432 95.0056C26.1407 95.0943 25.9454 95.4502 25.9557 95.6775C25.9924 96.3761 26.1775 97.0877 26.0934 97.7662C26.0194 98.3724 25.5122 98.9325 25.4516 99.5387C25.1762 102.421 24.8971 105.311 24.7963 108.2C24.6718 111.626 24.7393 115.066 24.7157 118.505C24.7054 119.787 24.8735 120.989 25.445 122.202C26.5137 124.472 26.4265 124.514 28.8901 124.537C29.216 124.541 29.5422 124.501 29.8681 124.504C30.9873 124.511 31.9418 123.852 32.1771 123.005C32.641 121.348 33.5989 119.846 33.5048 117.985C33.2526 112.967 33.162 107.94 33.0343 102.916C32.9772 100.596 33.0343 98.2768 32.9434 95.9608C32.8797 94.3003 32.5905 92.6467 32.5268 90.9862C32.4728 89.5103 32.7821 89.1149 34.2071 89.4971C36.4828 90.1064 38.6437 90.5482 41.0537 90.1001C42.5831 89.8133 44.2603 90.3964 45.8666 90.3702C49.1103 90.3109 52.3468 90.1131 55.587 89.955C59.7177 89.7508 63.8485 89.5498 67.9758 89.3027C69.9152 89.1875 70.5202 89.5696 70.6278 91.3949C70.7116 92.831 70.6646 94.2709 70.6646 95.7106C70.6646 100.85 70.8427 105.996 70.2815 111.122C70.248 111.439 70.2445 111.765 70.2712 112.081C70.4227 113.893 70.1169 115.672 69.9657 117.471C69.7235 120.327 69.7775 123.213 69.8142 126.086C69.8211 126.646 70.3653 127.69 70.6006 127.677C71.972 127.585 72.2878 128.774 73.0676 129.367C73.7969 129.92 74.2542 129.954 74.56 129.137C74.9399 128.119 75.4038 128.171 76.1971 128.573C76.3818 128.669 76.933 128.514 76.9665 128.385C77.2959 127.107 77.6993 125.819 77.7968 124.514C77.8975 123.177 77.5951 121.816 77.612 120.469C77.6757 115.853 77.3665 111.241 77.985 106.625C78.2908 104.345 78.0826 101.993 78.086 99.677C78.0892 96.8801 78.0556 94.0797 78.0757 91.2828C78.0826 90.1724 78.5092 89.7047 79.5747 89.4904C79.8909 89.4279 80.2303 89.4181 80.5496 89.451C82.8686 89.675 85.1741 88.5153 87.5034 89.4049C87.7117 89.4838 87.9943 89.4311 88.2295 89.3784C91.0024 88.7558 93.8123 88.9404 96.6187 88.9205C97.9834 88.9107 99.3445 88.6438 100.709 88.5021C101.58 88.4134 101.96 88.7129 102.117 89.6618C102.517 92.0734 103.052 94.472 103.657 96.8438C103.862 97.6542 104.238 98.7186 104.876 99.0708C107.112 100.296 108.299 102.454 109.905 104.2C111.962 106.434 114.271 108.111 117.151 109.076C117.602 109.228 118.072 109.383 118.462 109.64C120.476 110.967 122.835 111.363 125.114 111.699C127.641 112.071 130.246 111.946 132.818 112.028C132.831 112.015 132.844 111.995 132.857 111.979C132.938 111.877 133.016 111.775 133.096 111.672C133.033 111.791 132.972 111.91 132.908 112.028H132.818C132.572 112.315 132.216 112.806 132.146 112.77C131.385 112.381 131.151 113.053 130.774 113.372C130.62 113.504 130.589 113.778 130.505 113.988C130.764 113.972 131.036 113.998 131.282 113.929C131.739 113.797 132.165 113.517 132.626 113.461C133.529 113.349 134.78 113.659 133.964 112.021C133.926 111.946 134.229 111.57 134.364 111.574C134.978 111.597 135.701 111.544 136.172 111.84C136.518 112.061 136.649 112.279 137.103 112.078C137.963 111.699 138.861 111.402 139.741 111.073C139.73 111.053 139.721 111.036 139.714 111.017C139.794 110.908 139.873 110.799 139.953 110.691C139.889 110.816 139.825 110.941 139.765 111.066C139.758 111.066 139.748 111.073 139.741 111.076C140.071 111.86 140.561 112.055 141.422 111.643C144.931 109.963 148.285 108.062 150.984 105.245C152.372 103.799 153.727 102.29 154.271 100.293C154.351 100.003 154.376 99.6606 154.297 99.374C153.952 98.0695 153.922 98.0628 154.066 97.8981C154.318 97.6081 154.805 97.3446 154.822 97.0514C154.92 95.1997 155.585 93.4473 155.817 91.6549C156.032 89.9947 156.234 88.2417 155.897 86.5288C155.858 86.3246 156.005 86.0839 156.066 85.8633C156.19 86.0971 156.287 86.3543 156.446 86.5651C156.57 86.7298 156.764 86.8418 156.93 86.9766C156.967 86.7989 157.067 86.6045 157.031 86.443C156.792 85.4152 156.731 84.4334 157.205 83.422M157.628 84.4861L157.649 84.3511L157.515 84.4038L157.628 84.4861ZM174.962 60.1397V59.7446C174.847 59.8103 174.736 59.8762 174.621 59.9422C174.736 60.0081 174.847 60.074 174.962 60.1397ZM230.749 120.663C230.618 120.663 230.483 120.663 230.352 120.666C230.419 120.768 230.49 120.874 230.557 120.979C230.621 120.874 230.685 120.768 230.752 120.663M246.827 128C246.71 127.812 246.593 127.624 246.475 127.44C246.471 127.479 246.468 127.519 246.485 127.545C246.585 127.707 246.71 127.852 246.827 128.003M230.322 120.617C230.322 120.617 230.311 120.607 230.308 120.604C230.298 120.63 230.285 120.64 230.275 120.67H230.355C230.345 120.653 230.332 120.637 230.322 120.617ZM175.008 60.153C175.008 60.153 174.978 60.1365 174.962 60.1267V60.199C174.985 60.1892 174.995 60.1795 175.019 60.1694C175.019 60.1628 175.012 60.1596 175.008 60.153ZM175.008 59.7049C175.008 59.7049 175.002 59.6884 175.002 59.6818C174.985 59.6752 174.978 59.6689 174.962 59.6622V59.7345C174.962 59.7345 174.995 59.7149 175.008 59.7083M245.534 111.053C245.426 111.333 245.342 111.547 245.262 111.761C245.17 111.498 245.029 111.238 245.009 110.967C244.993 110.753 245.127 110.529 245.194 110.312C245.308 110.565 245.423 110.816 245.534 111.053ZM245.423 107.801H245.416C245.416 108.035 245.439 108.276 245.406 108.506C245.386 108.648 245.272 108.776 245.201 108.911C245.144 108.77 245.042 108.628 245.036 108.48C245.006 108.012 244.983 107.538 245.009 107.067C245.019 106.852 245.15 106.648 245.228 106.437C245.291 106.655 245.386 106.869 245.416 107.093C245.45 107.324 245.423 107.564 245.423 107.798M245.15 113.616L245.288 113.633L245.201 113.768L245.15 113.613V113.616ZM242.939 104.187C242.939 104.319 242.811 104.451 242.741 104.583C242.68 104.369 242.586 104.154 242.577 103.934C242.569 103.805 242.703 103.67 242.811 103.463C242.865 103.746 242.942 103.967 242.939 104.184M241.947 111.435C241.83 110.73 241.689 110.025 241.608 109.313C241.574 109.01 241.601 108.674 241.708 108.391C241.844 108.035 242.092 107.722 242.29 107.393C242.367 107.745 242.465 108.094 242.516 108.447C242.549 108.678 242.523 108.918 242.523 109.155C242.523 109.235 242.542 109.32 242.523 109.389C242.297 110.061 243.036 110.997 241.944 111.435M241.648 112.15C241.833 112.295 241.988 112.361 241.995 112.433C242.008 112.641 241.964 112.855 241.923 113.063C241.923 113.073 241.662 113.056 241.662 113.043C241.644 112.776 241.648 112.506 241.648 112.15ZM240.969 116.7C240.962 116.809 240.849 116.907 240.782 117.013C240.738 116.795 240.667 116.578 240.66 116.36C240.66 116.258 240.781 116.153 240.902 115.965C240.933 116.268 240.982 116.486 240.969 116.7ZM239.9 127.143L239.766 127.127L239.85 126.995L239.9 127.143ZM215.469 102.112C215.344 102.052 215.216 101.99 215.093 101.93C214.931 101.614 214.769 101.298 214.608 100.982C214.444 100.817 214.279 100.656 214.115 100.491C214.1 100.468 214.087 100.445 214.075 100.422C212.723 100.221 212.004 99.4005 211.735 98.1285C211.715 98.1187 211.687 98.1089 211.668 98.0991C211.661 98.0562 211.648 98.0199 211.641 97.9805C210.874 97.2291 210.108 96.4749 209.342 95.7236C209.298 95.7172 209.261 95.704 209.217 95.7005V95.6118C207.91 94.5705 206.478 93.6383 205.906 91.9648C205.87 91.9317 205.833 91.8954 205.796 91.8625C205.689 91.7868 205.58 91.7111 205.47 91.6353C205.594 91.6944 205.719 91.754 205.847 91.813C205.863 91.866 205.886 91.9152 205.906 91.968C206.996 92.9825 208.094 93.9907 209.158 95.0318C209.268 95.1372 209.217 95.3975 209.214 95.615C209.228 95.6282 209.245 95.638 209.261 95.6513C209.288 95.6775 209.311 95.7005 209.338 95.727C210.666 95.9312 211.395 96.7185 211.638 97.9836C211.661 98.0067 211.687 98.0332 211.715 98.0597C211.718 98.0859 211.728 98.1089 211.731 98.132C212.172 98.3361 212.693 98.468 212.999 98.7909C213.443 99.2586 213.725 99.8682 214.067 100.425C214.1 100.428 214.128 100.438 214.161 100.441C214.326 100.603 214.495 100.768 214.659 100.929C214.82 101.245 214.982 101.565 215.14 101.881C215.247 101.957 215.359 102.036 215.465 102.112M204.69 82.4435C204.565 82.381 204.445 82.3217 204.324 82.2592C204.159 82.0976 203.998 81.9395 203.833 81.7814C203.672 81.6198 203.511 81.4586 203.346 81.297C203.242 81.2213 203.141 81.1455 203.036 81.0698C203.157 81.1291 203.275 81.1884 203.396 81.2478C203.557 81.409 203.718 81.5706 203.88 81.7319C204.044 81.8934 204.206 82.0515 204.371 82.2131C204.478 82.292 204.583 82.3677 204.69 82.4469M204.035 90.1033L204.18 90.1231L204.088 90.2582L204.031 90.1064L204.035 90.1033ZM196.828 82.4535L196.741 82.582L196.687 82.4369L196.828 82.4567V82.4535ZM252.72 62.5743C252.807 60.98 252.823 59.3789 252.81 57.7843C252.81 57.4217 252.659 56.9342 252.394 56.7234C251.338 55.8801 250.646 54.8356 250.186 53.597C250.115 53.4092 249.54 53.1818 249.486 53.2411C248.424 54.3449 245.964 54.2427 246.391 56.641C246.414 56.7761 246.3 56.9376 246.253 57.0859C246.119 56.9111 246.001 56.7136 245.843 56.5621C245.635 56.3643 245.389 56.1995 245.157 56.0218C245.047 56.2292 244.919 56.4336 244.824 56.6476C244.727 56.8651 244.609 57.0926 244.589 57.323C244.377 59.939 244.193 62.5547 243.975 65.1673C243.89 66.1853 243.678 67.1967 243.634 68.2179C243.585 69.3249 243.634 70.4383 243.688 71.5453C243.742 72.5668 243.893 73.5814 243.947 74.5994C243.988 75.3605 244.001 76.1314 243.926 76.8857C243.854 77.6664 243.483 78.4506 243.544 79.2117C243.867 83.4551 242.636 87.5667 242.526 91.7704C242.518 92.0734 242.455 92.5413 242.26 92.6433C241.39 93.098 241.645 93.8657 241.611 94.5408C241.557 95.7368 241.611 96.9426 241.521 98.1354C241.248 101.697 240.919 105.251 240.626 108.813C240.438 111.109 240.297 113.409 240.095 115.702C240.066 116.038 239.793 116.351 239.631 116.673C239.363 116.525 239.036 116.43 238.832 116.219C236.987 114.311 235.186 112.364 233.33 110.467C228.937 105.976 224.541 101.486 220.107 97.035C216.814 93.7304 213.446 90.4955 210.132 87.2107C209.45 86.5354 208.904 85.725 208.219 85.0529C206.212 83.0926 204.139 81.1951 202.136 79.2316C200.257 77.3899 198.21 75.6502 196.677 73.5549C195.868 72.4481 194.997 71.4531 194.035 70.5175C193.125 69.6279 191.998 68.9393 191.135 68.0138C189.286 66.0336 187.777 63.7968 185.636 62.0177C183.478 60.2255 181.737 57.9588 179.751 55.9625C179.27 55.4781 178.501 55.2869 177.942 54.8621C176.86 54.0417 176.067 55.0335 175.345 55.3891C174.797 55.6593 173.718 56.5126 174.837 57.5404C174.944 57.6394 174.618 58.1071 174.649 58.3871C174.695 58.8254 174.87 59.247 174.992 59.6786C175.388 59.8399 175.388 60.0047 175.008 60.1694C175.398 60.9602 176.098 61.5235 175.613 62.7097C175.09 63.9944 175.09 65.5098 175.008 66.9298C174.811 70.5077 174.639 74.092 174.565 77.6733C174.481 81.7486 174.481 85.8238 174.518 89.8991C174.534 91.7209 174.877 93.5461 174.807 95.3613C174.626 100.046 174.169 104.721 174.071 109.406C173.99 113.221 173.549 117.056 174.303 120.864C174.403 121.362 174.084 122.225 174.313 122.363C175.146 122.874 174.915 123.589 174.968 124.267C175.018 124.893 175.076 125.516 175.129 126.142C176.085 125.997 176.29 125.17 176.669 124.511C176.786 124.307 176.844 124.069 176.934 123.852C177.022 123.648 177.116 123.447 177.206 123.243C177.267 123.467 177.416 123.707 177.375 123.915C177.137 125.147 177.745 126.079 178.478 126.942C179.247 127.852 179.963 127.819 180.601 126.867C180.955 126.336 181.099 125.644 181.526 125.196C182.917 123.727 183.461 122.037 183.31 120.057C183.132 117.761 183.599 115.431 182.89 113.158C182.776 112.796 182.877 112.364 182.91 111.966C183.012 110.862 183.22 109.762 183.227 108.658C183.263 103.541 183.213 98.4286 183.263 93.3122C183.297 89.7441 183.391 86.1533 183.115 82.6183C182.836 79.0271 183.015 75.4527 182.846 71.8748C182.83 71.5223 183.045 71.16 183.153 70.8009C183.495 70.9656 183.875 71.0808 184.167 71.3083C184.548 71.6046 184.897 71.9571 185.186 72.3393C187.808 75.8118 190.9 78.869 193.955 81.9657C196.046 84.0844 198.079 86.2618 200.089 88.456C202.257 90.8281 204.337 93.2725 206.509 95.6415C208.683 98.0133 210.925 100.33 213.136 102.672C216.834 106.596 220.535 110.519 224.222 114.453C225.041 115.329 225.774 116.288 226.625 117.138C227.811 118.321 229.067 119.438 230.295 120.584C230.462 120.175 230.637 120.225 230.813 120.647L230.768 120.604C230.768 120.604 230.752 120.633 230.742 120.647H230.806C232.6 122.785 234.399 124.916 236.184 127.061C236.95 127.98 237.83 128.524 239.117 128.313C239.561 128.24 240.203 128.273 240.492 128.534C241.615 129.552 242.966 129.351 244.277 129.41C244.791 129.433 245.416 129.608 245.782 129.38C246.031 129.229 245.863 128.491 245.978 128.039C246.042 127.796 246.257 127.591 246.424 127.371C246.434 127.387 246.445 127.403 246.457 127.423C246.462 127.387 246.468 127.348 246.471 127.311L246.417 127.357C247.05 124.857 246.596 122.248 247.03 119.78C247.591 116.594 247.255 113.435 247.452 110.269C247.466 110.032 247.402 109.781 247.447 109.551C247.635 108.549 247.846 107.551 248.055 106.556C248.058 106.53 248.145 106.52 248.196 106.503C248.186 107.521 248.206 108.536 248.162 109.551C248.122 110.417 247.863 111.293 247.957 112.137C248.209 114.417 248.152 116.746 247.762 118.924C247.238 121.852 247.735 124.728 247.48 127.611C247.466 127.753 247.571 127.908 247.617 128.056C247.691 127.937 247.822 127.825 247.829 127.703C247.88 126.751 248.914 126.389 249.006 125.259C249.322 121.279 249.379 117.303 249.399 113.32C249.399 112.921 249.392 112.519 249.433 112.12C249.732 108.971 250.101 105.828 250.33 102.675C250.464 100.843 250.347 98.9985 250.414 97.1635C250.448 96.2278 250.723 95.3019 250.743 94.3663C250.787 92.3302 250.999 90.2481 250.648 88.2714C250.35 86.5847 250.168 84.8847 250.498 83.3034C251.059 80.5952 250.922 77.8346 251.671 75.1068C252.434 72.3295 252.131 69.2722 252.333 66.34C252.42 65.0783 252.649 63.8265 252.72 62.5645M275.212 70.0596C275.34 69.6576 275.45 69.3183 275.558 68.9788C275.417 68.9592 275.168 68.8933 275.152 68.9264C275.037 69.1899 274.947 69.4733 274.893 69.7564C274.883 69.8157 275.047 69.9081 275.212 70.0596ZM278.677 86.0378C278.704 85.7282 278.687 85.4152 278.691 85.1021C278.691 84.8683 278.707 84.6344 278.687 84.4006C278.674 84.2523 278.607 84.1074 278.563 83.9623C278.479 84.1172 278.335 84.2655 278.324 84.4236C278.297 84.9671 278.314 85.514 278.328 86.0611C278.328 86.13 278.405 86.1962 278.445 86.2618C278.525 86.1861 278.674 86.117 278.681 86.0378M279.941 100.254C280.005 100.161 280.12 100.069 280.123 99.9736C280.126 99.8912 280.008 99.8057 279.938 99.7133C279.887 99.8518 279.827 99.9736 279.807 100.099C279.8 100.142 279.894 100.201 279.941 100.254ZM280.495 101.255L280.515 101.113L280.374 101.17L280.495 101.258V101.255ZM280.767 102.685C280.831 102.896 281.026 103.067 281.184 103.252C281.191 103.064 281.205 102.876 281.174 102.695C281.138 102.487 281.033 102.293 280.956 102.092C280.885 102.293 280.717 102.52 280.767 102.685ZM281.181 103.357C281.194 103.377 281.208 103.397 281.221 103.416C281.225 103.38 281.235 103.341 281.235 103.308C281.218 103.288 281.201 103.268 281.184 103.248C281.184 103.285 281.181 103.321 281.181 103.357ZM281.591 103.983C281.467 103.795 281.343 103.607 281.221 103.416C281.215 103.459 281.215 103.499 281.231 103.525C281.335 103.687 281.47 103.831 281.591 103.983ZM283.913 106.526L283.934 106.401L283.81 106.451L283.913 106.53V106.526ZM284.408 107.482L284.428 107.35L284.297 107.399L284.411 107.482H284.408ZM311.097 112.961C311.155 112.842 311.215 112.723 311.271 112.605C311.197 112.707 311.126 112.809 311.046 112.911C310.882 113.069 310.719 113.231 310.558 113.389C310.391 113.55 310.225 113.708 310.061 113.87C309.997 113.995 309.939 114.117 309.878 114.242C309.955 114.133 310.034 114.025 310.105 113.916C310.272 113.754 310.436 113.593 310.602 113.432C310.769 113.274 310.933 113.115 311.097 112.957M314.805 108.895C315.101 108.437 315.302 107.92 315.5 107.505C315.405 107.245 315.358 107.1 315.305 106.955C315.202 107.037 315.072 107.103 315.001 107.205C314.673 107.656 314.332 108.098 314.07 108.582C313.978 108.75 314.097 109.03 314.118 109.258C314.356 109.139 314.684 109.083 314.805 108.895ZM285.594 109.122C285.614 109.129 285.624 109.139 285.644 109.145V109.07C285.516 109.01 285.39 108.951 285.262 108.892C285.372 108.968 285.483 109.043 285.59 109.119M282.697 106.665H282.62C282.63 106.681 282.636 106.698 282.643 106.714C282.764 106.773 282.882 106.833 283.003 106.892C282.898 106.816 282.798 106.74 282.693 106.661M282.21 105.848V106.668C282.344 106.668 282.479 106.665 282.616 106.665C282.482 106.391 282.344 106.121 282.21 105.851M281.743 105.706H282.132C282.069 105.597 282.001 105.492 281.938 105.383C281.874 105.492 281.81 105.597 281.746 105.706M279.759 104.737C280.031 104.658 280.304 104.583 280.576 104.504C280.445 104.079 280.314 103.653 280.182 103.229C280.041 103.285 279.787 103.331 279.779 103.397C279.746 103.841 279.756 104.289 279.756 104.737M279.269 97.6245V98.4911C279.8 98.2011 279.793 97.9113 279.269 97.6245ZM277.594 96.0302C277.594 96.0565 277.679 96.0795 277.753 96.1025C277.756 96.0464 277.76 95.9937 277.766 95.9378C277.786 95.7863 277.766 95.6052 277.843 95.4897C278.153 95.0252 278.189 94.6563 277.571 94.4389C277.578 94.9693 277.579 95.4998 277.599 96.0302M277.75 96.1653C277.766 96.1717 277.787 96.1817 277.804 96.1883V96.119C277.789 96.1123 277.769 96.1092 277.753 96.1025C277.753 96.1224 277.75 96.1454 277.746 96.1653M279.215 97.5917C279.235 97.6015 279.249 97.6116 279.269 97.6214V97.5422C279.249 97.5522 279.238 97.562 279.218 97.5686V97.5917M279.218 98.5207C279.218 98.5207 279.215 98.5305 279.212 98.5372C279.232 98.5469 279.249 98.557 279.269 98.5703V98.4911C279.249 98.5009 279.235 98.5109 279.215 98.5207M281.708 105.759C281.718 105.742 281.729 105.726 281.739 105.706H281.661C281.669 105.719 281.675 105.732 281.682 105.745C281.692 105.749 281.698 105.755 281.708 105.759ZM282.159 105.759C282.172 105.788 282.189 105.818 282.203 105.851V105.706H282.125C282.136 105.723 282.146 105.739 282.156 105.759M286.555 110.549C286.555 110.549 286.589 110.582 286.606 110.598V110.506H286.555C286.555 110.506 286.559 110.533 286.555 110.549ZM286.606 110.987H286.999C286.868 110.859 286.737 110.73 286.606 110.598V110.987ZM287.046 111.03C287.063 111.046 287.08 111.063 287.096 111.079V110.984H287.003C287.003 110.984 287.032 111.013 287.046 111.027M287.096 111.465H287.49C287.358 111.336 287.227 111.208 287.096 111.079V111.465ZM287.53 111.946C287.55 111.966 287.567 111.982 287.584 112.002V111.946H287.526M287.53 111.511C287.547 111.528 287.563 111.544 287.584 111.56V111.462H287.483L287.53 111.508V111.511ZM287.581 111.946H287.981C287.85 111.817 287.714 111.689 287.584 111.56V111.946M288.031 111.995C288.031 111.995 288.041 112.002 288.047 112.005C288.058 111.982 288.068 111.972 288.078 111.946H287.981C287.981 111.946 288.014 111.979 288.031 111.995ZM321.649 88.5582C321.511 88.6867 321.419 88.769 321.332 88.8514C321.181 88.6273 320.996 88.4165 320.893 88.1726C320.848 88.0672 320.967 87.8959 321.009 87.7544C321.226 88.0243 321.437 88.2944 321.649 88.5614M320.057 97.2524C320.005 97.3676 319.946 97.4863 319.894 97.6015C319.817 97.7037 319.738 97.8057 319.666 97.9079C319.724 97.7893 319.783 97.6706 319.844 97.5488C319.918 97.45 319.986 97.3512 320.06 97.2524M317.137 110.203C317.078 110.325 317.018 110.447 316.957 110.565C316.883 110.664 316.809 110.76 316.735 110.855C316.788 110.74 316.846 110.628 316.902 110.513C316.984 110.41 317.06 110.305 317.137 110.2M313.309 115.497L313.291 115.632L313.164 115.55L313.309 115.497ZM309.413 117.942L309.331 118.06L309.283 117.922L309.413 117.942ZM307.84 118.858C307.777 118.973 307.716 119.088 307.652 119.204C307.613 119.204 307.573 119.197 307.533 119.194C307.346 119.319 307.161 119.444 306.97 119.556C306.96 119.563 306.875 119.457 306.825 119.401C307.028 119.332 307.227 119.256 307.428 119.197C307.459 119.187 307.494 119.187 307.528 119.19C307.552 119.177 307.573 119.161 307.594 119.148C307.676 119.049 307.755 118.953 307.837 118.854M299.656 119.846C299.474 119.961 299.347 120.106 299.255 120.09C299.022 120.047 298.805 119.928 298.586 119.843C298.718 119.797 298.853 119.708 298.988 119.711C299.194 119.717 299.395 119.787 299.656 119.843M297.711 119.797C297.446 119.928 297.179 120.06 296.823 120.238C295.308 119.764 293.74 119.398 292.287 118.782C291.057 118.261 289.958 117.454 288.797 116.775C288.529 116.621 288.135 116.288 287.994 116.367C287.066 116.884 286.703 116.107 286.206 115.685C285.779 115.323 285.383 114.917 285.009 114.496C284.767 114.219 284.593 113.883 284.388 113.573C284.727 113.689 285.096 113.751 285.396 113.932C288.75 115.962 292.265 117.649 296.045 118.779C296.352 118.871 296.661 118.983 296.931 119.151C297.216 119.326 297.452 119.576 297.711 119.797ZM281.511 109.788C281.397 109.722 281.279 109.656 281.164 109.59C281.164 109.57 281.157 109.557 281.157 109.538C280.069 109.6 280.271 108.819 280.246 108.187C280.226 108.18 280.213 108.167 280.193 108.16C280.092 108.085 279.995 108.005 279.894 107.93C280.012 107.989 280.129 108.048 280.246 108.108V108.187C280.909 108.404 281.138 108.905 281.157 109.538H281.218C281.315 109.62 281.413 109.705 281.511 109.788ZM330.282 73.9537C330.314 73.7066 329.917 73.4068 329.677 73.1266C329.661 73.1367 329.645 73.1433 329.624 73.1531C329.621 73.2718 329.621 73.3904 329.59 73.499C329.558 73.6309 329.481 73.7527 329.423 73.8811C329.389 73.6968 329.312 73.5056 329.341 73.3343C329.354 73.2617 329.508 73.209 329.624 73.1531C329.624 73.1266 329.624 73.1004 329.626 73.0739C329.64 73.0906 329.661 73.1102 329.677 73.1301C329.677 73.1301 329.685 73.1301 329.685 73.1266C329.426 71.3872 328.641 70.0432 326.946 69.2426C326.378 68.9725 326.28 69.0744 326.219 69.5787C326.14 70.2802 326.095 70.9855 325.957 71.6738C325.902 71.9439 325.64 72.178 325.474 72.4283C325.4 72.2077 325.331 71.9836 325.246 71.7662C325.164 71.5453 325.048 71.3313 324.979 71.1073C324.76 70.389 324.559 69.6676 324.35 68.946C323.555 69.6181 324.126 70.6097 323.766 71.3938C323.671 71.598 323.745 71.8716 323.697 72.1023C323.679 72.201 323.552 72.2768 323.47 72.3623C323.409 72.2241 323.359 72.0824 323.288 71.9473C323.195 71.7662 323.082 71.5917 322.979 71.4169C322.812 71.5816 322.534 71.7201 322.495 71.911C322.31 72.7445 322.495 73.9503 321.992 74.3621C320.943 75.2188 321.369 76.0093 321.551 76.9021C321.628 77.2779 321.858 77.9138 321.723 77.9993C320.293 78.9315 320.935 80.3317 320.927 81.4948C320.909 84.9112 320.61 88.2881 319.894 91.6319C319.365 94.0962 318.879 96.5671 318.374 99.0348C318.384 99.0348 318.395 99.0411 318.4 99.0411C318.411 99.0215 318.419 99.0017 318.427 98.9852V99.0512C318.696 99.1269 318.963 99.1995 319.227 99.2784C319.444 99.3409 319.407 98.1418 319.796 99.1698C319.846 99.3049 319.846 99.4958 319.793 99.6344C319.497 100.379 319.177 101.11 318.868 101.848C318.886 101.871 318.9 101.898 318.916 101.921C318.889 101.934 318.86 101.95 318.839 101.964C318.754 102.303 318.691 102.655 318.551 102.975C318.453 103.202 318.22 103.374 318.049 103.568C317.98 103.433 317.919 103.291 317.84 103.163C317.618 102.8 317.472 102.487 318.075 102.326C318.345 102.253 318.585 102.095 318.834 101.964C318.842 101.934 318.847 101.901 318.857 101.871L318.868 101.848C318.244 100.992 318.448 100.003 318.427 99.0512C318.419 99.0512 318.411 99.0477 318.4 99.0446C317.623 100.728 316.835 102.408 316.077 104.098C315.984 104.303 315.95 104.589 316.021 104.79C316.082 104.958 316.402 105.202 316.5 105.162C317.787 104.645 317.53 105.505 317.208 106.029C315.995 107.993 314.779 109.966 313.388 111.807C312.572 112.885 311.461 113.754 310.415 114.644C310.113 114.901 309.336 115.122 309.188 114.974C308.448 114.222 308.369 114.954 308.118 115.313C308.125 115.31 308.136 115.306 308.147 115.303V115.382C308.255 115.445 308.366 115.511 308.472 115.576C308.366 115.639 308.255 115.702 308.147 115.764V115.846C307.98 116.005 307.814 116.163 307.647 116.324C307.573 116.42 307.496 116.515 307.425 116.614C307.48 116.499 307.536 116.387 307.592 116.271C307.755 116.113 307.925 115.955 308.088 115.797C308.11 115.787 308.125 115.774 308.147 115.764V115.385C308.131 115.376 308.112 115.365 308.094 115.352C308.102 115.342 308.11 115.326 308.118 115.313C306.693 115.83 305.247 116.301 303.849 116.878C302.593 117.395 301.314 117.573 300.177 116.848C298.607 115.85 296.638 116.357 295.104 115.365C293.965 115.942 293.085 115.194 292.236 114.713C290.79 113.893 289.435 112.918 288.045 112.008C287.87 112.407 287.698 112.414 287.524 111.949C287.358 111.788 287.198 111.629 287.032 111.468L287.09 111.524V111.468H287.032C286.868 111.307 286.706 111.149 286.542 110.987L286.599 111.04V110.987H286.545C286.38 110.826 286.219 110.668 286.054 110.506L286.116 110.559C286.098 110.542 286.081 110.526 286.062 110.506H286.549C286.593 109.821 286.286 109.366 285.624 109.142C285.624 109.452 285.621 109.762 285.618 110.071C285.601 110.055 285.583 110.038 285.567 110.022L285.618 110.075C285.272 109.9 284.888 109.765 284.59 109.531C284.375 109.363 284.19 109.08 284.126 108.816C283.927 108.005 283.819 108.556 283.523 108.77C283.282 108.945 282.774 108.984 282.505 108.852C282.22 108.711 281.944 108.302 281.91 107.986C281.867 107.561 282.055 107.113 282.146 106.671L282.196 106.724V106.671H282.166C282.001 106.362 281.836 106.055 281.675 105.745C281.403 105.627 281.07 105.367 280.882 105.446C280.089 105.782 279.961 105.189 279.699 104.751L279.746 104.797V104.737C279.746 104.737 279.725 104.741 279.719 104.744C278.099 101.637 278.102 101.611 279.202 98.534C278.569 98.2111 278.569 97.8915 279.208 97.5686C279.336 96.7779 279.174 96.218 278.163 96.3001C278.042 96.3102 277.914 96.2376 277.789 96.1849C277.779 97.2657 277.568 98.3626 278.183 99.3904C278.301 99.5883 278.102 99.9702 278.048 100.267C277.877 100.013 277.686 99.7726 277.545 99.5059C277.433 99.2983 277.356 99.0644 277.316 98.8338C276.781 95.7138 276.048 92.6171 276.311 89.4081C276.381 88.5548 276.189 87.6819 276.117 86.8185C275.857 87.7444 275.504 88.6602 275.363 89.6025C275.249 90.38 275.306 91.2036 275.42 91.9844C275.648 93.536 275.975 95.0747 276.234 96.6229C276.267 96.8372 276.15 97.0777 276.099 97.3051C275.994 97.1436 275.857 96.9987 275.796 96.8239C275.178 95.0154 274.758 93.1804 274.778 91.2497C274.809 88.5813 274.671 85.9258 274.422 83.2573C274.207 80.9215 274.079 78.5099 274.752 76.1378C275.009 75.2254 275.511 73.9865 274.748 73.1926C273.927 72.3393 273.76 71.4796 273.827 70.4417C273.837 70.2969 273.747 70.142 273.703 69.9937C273.508 70.0694 273.273 70.1057 273.121 70.2309C272.126 71.0742 271.47 71.9571 271.286 73.41C270.967 75.9204 270.177 78.4376 270.539 80.9445C270.89 83.3595 271.091 85.725 270.973 88.1628C270.893 89.8035 271.367 91.4672 271.326 93.1144C271.265 95.5358 271.588 97.8817 272.408 100.132C273.46 103.024 274.483 105.956 275.884 108.691C277.692 112.222 280.525 115.056 283.395 117.787C284.989 119.306 286.791 120.617 288.502 122.02C288.441 122.136 288.384 122.248 288.324 122.363C288.401 122.264 288.478 122.162 288.555 122.063L288.505 122.014C289.173 122.281 289.937 122.426 290.497 122.837C292.691 124.452 295.237 125.269 297.846 125.753C299.556 126.073 301.419 126.257 303.066 125.246C303.542 124.952 303.851 124.952 304.274 125.447C304.8 126.059 305.445 125.997 306.14 125.447C306.735 124.972 307.47 124.557 308.208 124.389C310.832 123.796 312.786 122.165 314.766 120.545C315.384 120.037 316.018 119.55 316.648 119.055C318.892 117.303 320.679 115.132 322.286 112.839C323.15 111.603 323.66 110.137 324.406 108.813C325.122 107.528 325.64 106.138 326.185 104.8C327.348 101.937 327.953 98.8798 328.173 95.7895C328.389 92.7026 328.476 89.6059 329.114 86.5585C329.322 85.5603 329.833 84.3839 329.497 83.5735C328.855 82.0285 329.322 80.7337 329.867 79.4588C330.644 77.637 330.047 75.7755 330.28 73.9471M279.33 101.723C279.323 101.855 279.363 101.987 279.386 102.115C279.477 102.062 279.568 102.006 279.658 101.954C279.601 101.828 279.548 101.7 279.49 101.575C279.433 101.624 279.333 101.67 279.33 101.723Z\" fill=\"#757575\"/>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_1_25\">\\n<rect width=\"355\" height=\"183\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})],speed:10,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZEBlZ.framer-14k1smt, .framer-ZEBlZ .framer-14k1smt { display: block; }\",\".framer-ZEBlZ.framer-1izm5jm { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 128px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1016px; }\",\".framer-ZEBlZ .framer-a3sxtc-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-ZEBlZ .framer-6dict2 { aspect-ratio: 3.2142857006009744 / 1; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 64px; }\",\".framer-ZEBlZ .framer-1tstplt { aspect-ratio: 2.688171907477787 / 1; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 65px; }\",\".framer-ZEBlZ .framer-1jlgs3b { aspect-ratio: 1.0606061014736485 / 1; height: var(--framer-aspect-ratio-supported, 46px); position: relative; width: 49px; }\",\".framer-ZEBlZ .framer-davf4k { aspect-ratio: 4.959999842325852 / 1; height: var(--framer-aspect-ratio-supported, 13px); position: relative; width: 64px; }\",\".framer-ZEBlZ .framer-1rkhtgj { aspect-ratio: 1.0075757284576032 / 1; height: var(--framer-aspect-ratio-supported, 47px); position: relative; width: 47px; }\",\".framer-ZEBlZ .framer-1yfw50u { aspect-ratio: 1.8076922634884696 / 1; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 65px; }\",\".framer-ZEBlZ .framer-mib9yw { aspect-ratio: 5.2820513627781525 / 1; height: var(--framer-aspect-ratio-supported, 12px); position: relative; width: 63px; }\",\".framer-ZEBlZ .framer-1dpegt4 { height: 20px; position: relative; width: 64px; }\",\".framer-ZEBlZ .framer-3at40v { aspect-ratio: 1.8242424242424242 / 1; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 66px; }\",\".framer-ZEBlZ .framer-1akhvhm { aspect-ratio: 1.8654970760233918 / 1; height: var(--framer-aspect-ratio-supported, 37px); position: relative; width: 69px; }\",\".framer-ZEBlZ .framer-1aj638e { height: 40px; overflow: hidden; position: relative; width: 77px; }\",\".framer-ZEBlZ .framer-1yl107h { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZEBlZ.framer-1izm5jm { gap: 0px; } .framer-ZEBlZ.framer-1izm5jm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ZEBlZ.framer-1izm5jm > :first-child { margin-left: 0px; } .framer-ZEBlZ.framer-1izm5jm > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 128\n * @framerIntrinsicWidth 1016\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPxC5maWzx=withCSS(Component,css,\"framer-ZEBlZ\");export default FramerPxC5maWzx;FramerPxC5maWzx.displayName=\"Ticker\";FramerPxC5maWzx.defaultProps={height:128,width:1016};addFonts(FramerPxC5maWzx,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPxC5maWzx\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"128\",\"framerIntrinsicWidth\":\"1016\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PxC5maWzx.map"],"mappings":"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"}