{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js", "ssg:https://framerusercontent.com/modules/6NOR0Ih6rkNPdS3fSqYU/fb7KjQkhw5G9d84fAXNP/dFy56Jc6K.js", "ssg:https://framerusercontent.com/modules/6NOR0Ih6rkNPdS3fSqYU/fb7KjQkhw5G9d84fAXNP/dFy56Jc6K-0.js", "ssg:https://framerusercontent.com/modules/vaNdnbFjKAd7hXa1IJVM/oCyek0qLG3AFASmoMlp2/FgAiqjJES.js", "ssg:https://framerusercontent.com/modules/vaNdnbFjKAd7hXa1IJVM/oCyek0qLG3AFASmoMlp2/FgAiqjJES-0.js", "ssg:https://framerusercontent.com/modules/cYfcmXaXE3e2JoE1dFKV/p7INtwY9CHc1H1nv3svS/wLMPckxzy.js", "ssg:https://framerusercontent.com/modules/cYfcmXaXE3e2JoE1dFKV/p7INtwY9CHc1H1nv3svS/wLMPckxzy-0.js", "ssg:https://framerusercontent.com/modules/cBPAPlXDgMDW8XRAk9Er/YCNRbStqX9eF31rVMHZD/XIg4Y6WLs.js", "ssg:https://framerusercontent.com/modules/cBPAPlXDgMDW8XRAk9Er/YCNRbStqX9eF31rVMHZD/XIg4Y6WLs-0.js", "ssg:https://framerusercontent.com/modules/luWdhAqvZaK9WzJMfywt/ZltHWasrsabvcvyLjIVA/yeV8H9zVk.js", "ssg:https://framerusercontent.com/modules/luWdhAqvZaK9WzJMfywt/ZltHWasrsabvcvyLjIVA/yeV8H9zVk-0.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}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);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 = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;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(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3,ref4,ref5;const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,width:widthType?(ref3=child.props)===null||ref3===void 0?void 0:ref3.width:\"100%\",height:heightType?(ref4=child.props)===null||ref4===void 0?void 0:ref4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref5=child.props)===null||ref5===void 0?void 0:ref5.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]);}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,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(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\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (9bd94da)\nimport{jsx as e,jsxs as r}from\"react/jsx-runtime\";import{addFonts as t,addPropertyControls as a,ControlType as n,cx as o,Link as i,RichText as l,SVG as s,useLocaleInfo as f,useVariantState as d,withCSS as m}from\"framer\";import{LayoutGroup as c,motion as p,MotionConfigContext as u}from\"framer-motion\";import*as h from\"react\";import*as g from\"./dFy56Jc6K-0.js\";let x={A4TxjEhRB:{hover:!0}},v=[\"A4TxjEhRB\"],C=\"framer-52MHS\",y={A4TxjEhRB:\"framer-v-1k7hvn9\"};function b(e,...r){let t={};return null==r||r.forEach(r=>r&&Object.assign(t,e[r])),t;}let k={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},w={sqKeqj321:g},L=(e,r)=>{for(;r;){let t=w[r.id];if(t){let r=t[e];if(r)return r;}r=r.fallback;}},H=(e,r)=>`translate(-50%, -50%) ${r}`,M=({value:r,children:t})=>{let a=h.useContext(u),n=null!=r?r:a.transition,o=h.useMemo(()=>({...a,transition:n}),[JSON.stringify(n)]);return /*#__PURE__*/e(u.Provider,{value:o,children:t});},R=({height:e,id:r,link:t,width:a,...n})=>({...n,WPdLi81Zp:null!=t?t:n.WPdLi81Zp}),S=(e,r)=>r.join(\"-\")+e.layoutDependency,Z=/*#__PURE__*/h.forwardRef(function(t,a){let{activeLocale:n}=f(),{style:m,className:u,layoutId:g,variant:C,WPdLi81Zp:w,...L}=R(t),{baseVariant:Z,classNames:j,gestureVariant:q,setGestureState:A,setVariant:z,transition:F,variants:N}=d({cycleOrder:v,defaultVariant:\"A4TxjEhRB\",enabledGestures:x,transitions:k,variant:C,variantClassNames:y}),T=S(t,N),B=h.useRef(null),E=h.useId();return /*#__PURE__*/e(c,{id:null!=g?g:E,children:/*#__PURE__*/e(p.div,{initial:C,animate:N,onHoverStart:()=>A({isHovered:!0}),onHoverEnd:()=>A({isHovered:!1}),onTapStart:()=>A({isPressed:!0}),onTap:()=>A({isPressed:!1}),onTapCancel:()=>A({isPressed:!1}),className:o(\"framer-52MHS\",...[],j),style:{display:\"contents\"},children:/*#__PURE__*/e(M,{value:F,children:/*#__PURE__*/e(i,{href:w,children:/*#__PURE__*/r(p.a,{...L,className:`${o(\"framer-1k7hvn9\",u)} framer-1ri9u5b`,\"data-framer-name\":\"Default\",layoutDependency:T,layoutId:\"A4TxjEhRB\",ref:null!=a?a:B,style:{...m},...b({\"A4TxjEhRB-hover\":{\"data-framer-name\":void 0}},Z,q),children:[/*#__PURE__*/e(s,{className:\"framer-1okduue\",\"data-framer-name\":\"ansys\",layout:\"position\",layoutDependency:T,layoutId:\"jmcFRjk79\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 55 55\"><path d=\"M 43.638 23.121 L 41.362 28.673 L 39.087 23.121 L 36.277 23.121 L 39.96 32.106 L 38.346 36.043 L 41.158 36.043 L 46.452 23.118 Z M 54.333 27.995 C 53.891 27.553 53.187 27.223 52.225 27.003 L 50.623 26.636 C 50.336 26.575 50.062 26.464 49.814 26.308 C 49.662 26.196 49.575 26.016 49.583 25.827 C 49.583 25.545 49.711 25.325 49.968 25.172 C 50.224 25.018 50.579 24.943 51.029 24.943 C 52.005 24.943 52.995 25.286 53.999 25.981 L 54.769 24.056 C 54.241 23.675 53.655 23.381 53.034 23.185 C 52.391 22.98 51.721 22.876 51.047 22.878 C 50.252 22.878 49.541 23.006 48.918 23.263 C 48.35 23.48 47.851 23.846 47.474 24.324 C 47.134 24.772 46.953 25.321 46.961 25.884 C 46.961 26.631 47.176 27.218 47.607 27.649 C 48.038 28.08 48.707 28.398 49.624 28.602 L 51.164 28.951 C 51.64 29.054 51.966 29.171 52.138 29.297 C 52.31 29.421 52.408 29.625 52.399 29.838 C 52.399 30.094 52.273 30.296 52.023 30.445 C 51.771 30.591 51.423 30.665 50.971 30.665 C 49.701 30.657 48.46 30.275 47.405 29.567 L 46.633 31.572 C 47.16 31.946 47.788 32.23 48.512 32.429 C 49.239 32.629 50.039 32.727 50.914 32.727 C 52.186 32.727 53.183 32.468 53.911 31.948 C 54.638 31.426 55 30.711 55 29.799 C 55 29.04 54.778 28.44 54.335 27.995 Z M 32.835 27.003 L 31.235 26.636 C 30.948 26.575 30.673 26.464 30.424 26.308 C 30.273 26.196 30.187 26.016 30.195 25.827 C 30.195 25.545 30.323 25.325 30.58 25.172 C 30.837 25.018 31.19 24.942 31.641 24.942 C 32.615 24.942 33.605 25.286 34.609 25.981 L 35.381 24.056 C 34.853 23.675 34.267 23.381 33.646 23.185 C 33.004 22.98 32.334 22.876 31.659 22.878 C 30.931 22.865 30.206 22.996 29.528 23.263 C 28.96 23.48 28.461 23.846 28.084 24.324 C 27.744 24.772 27.564 25.322 27.573 25.884 C 27.573 26.631 27.789 27.218 28.22 27.649 C 28.65 28.08 29.322 28.398 30.236 28.602 L 31.776 28.951 C 32.253 29.054 32.578 29.171 32.75 29.297 C 32.922 29.422 33.021 29.625 33.011 29.837 C 33.011 30.094 32.885 30.296 32.636 30.445 C 32.384 30.591 32.033 30.665 31.584 30.665 C 30.313 30.655 29.074 30.274 28.018 29.567 L 27.248 31.572 C 27.775 31.946 28.401 32.23 29.127 32.429 C 29.854 32.629 30.653 32.727 31.526 32.727 C 32.798 32.727 33.798 32.468 34.524 31.948 C 35.25 31.426 35.613 30.711 35.613 29.799 C 35.613 29.042 35.393 28.44 34.948 27.997 C 34.503 27.553 33.8 27.22 32.835 27.003 Z M 22.511 22.878 C 21.842 22.878 21.241 23.013 20.71 23.281 C 20.178 23.549 19.728 23.955 19.408 24.457 L 19.408 23.109 L 16.576 23.109 L 16.576 32.574 L 19.486 32.574 L 19.486 27.271 C 19.486 26.629 19.669 26.114 20.036 25.729 C 20.4 25.341 20.884 25.149 21.489 25.149 C 21.993 25.149 22.36 25.298 22.598 25.593 C 22.836 25.889 22.956 26.356 22.956 27 L 22.956 32.569 L 25.866 32.569 L 25.866 26.863 C 25.866 25.527 25.591 24.53 25.036 23.868 C 24.484 23.205 23.641 22.875 22.511 22.875 Z M 10.159 19.385 L 8.287 23.959 L 11.811 32.562 L 15.767 32.562 Z M 9.306 18.957 L 5.576 18.957 L 0 32.565 L 3.731 32.565 Z\" fill=\"var(--token-919dc6f3-b150-4294-ba84-50f6d0db4294, rgba(0, 0, 0, 0.15)) /* {&quot;name&quot;:&quot;Border&quot;} */\"></path></svg>',svgContentId:3439613366,withExternalLayout:!0}),\"A4TxjEhRB-hover\"===q&&/*#__PURE__*/r(p.div,{className:\"framer-526qg4\",layoutDependency:T,layoutId:\"TuenLaqez\",style:{backgroundColor:\"var(--token-5ed1cc28-c060-4755-a750-863980cab513, rgba(0, 0, 0, 0.75))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},transformTemplate:H,children:[/*#__PURE__*/e(l,{__fromCanvasComponent:!0,children:/*#__PURE__*/e(h.Fragment,{children:/*#__PURE__*/e(p.p,{style:{\"--font-selector\":\"R0Y7SGFua2VuIEdyb3Rlc2stNTAw\",\"--framer-font-family\":'\"Hanken Grotesk\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eaf80125-bf32-4d8e-9fcf-bcc499a289a4, rgb(249, 248, 245)))\"},children:\"Ansys\"})}),className:\"framer-1jwvius\",fonts:[\"GF;Hanken Grotesk-500\"],layoutDependency:T,layoutId:\"Thqo3dq82\",style:{\"--extracted-r6o4lv\":\"var(--token-eaf80125-bf32-4d8e-9fcf-bcc499a289a4, rgb(249, 248, 245))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0}),/*#__PURE__*/e(l,{__fromCanvasComponent:!0,children:/*#__PURE__*/e(h.Fragment,{children:/*#__PURE__*/e(p.p,{style:{\"--font-selector\":\"R0Y7SGFua2VuIEdyb3Rlc2stMzAw\",\"--framer-font-family\":'\"Hanken Grotesk\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eaf80125-bf32-4d8e-9fcf-bcc499a289a4, rgb(249, 248, 245)))\"},children:\"Design and manufacturing \"})}),className:\"framer-1iiohkw\",fonts:[\"GF;Hanken Grotesk-300\"],layoutDependency:T,layoutId:\"P0rYqrs6N\",style:{\"--extracted-r6o4lv\":\"var(--token-eaf80125-bf32-4d8e-9fcf-bcc499a289a4, rgb(249, 248, 245))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0})]})]})})})})});}),j=['.framer-52MHS [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-52MHS .framer-1ri9u5b { display: block; }\",\".framer-52MHS .framer-1k7hvn9 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 60px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 124px; }\",\".framer-52MHS .framer-1okduue { flex: none; height: 55px; position: relative; width: 55px; }\",\".framer-52MHS .framer-526qg4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 4px 6px 4px 6px; position: absolute; top: -27%; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-52MHS .framer-1jwvius, .framer-52MHS .framer-1iiohkw { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-52MHS .framer-1k7hvn9, .framer-52MHS .framer-526qg4 { gap: 0px; } .framer-52MHS .framer-1k7hvn9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-52MHS .framer-1k7hvn9 > :first-child, .framer-52MHS .framer-526qg4 > :first-child { margin-top: 0px; } .framer-52MHS .framer-1k7hvn9 > :last-child, .framer-52MHS .framer-526qg4 > :last-child { margin-bottom: 0px; } .framer-52MHS .framer-526qg4 > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } }\"],q=m(Z,j,\"framer-52MHS\");export default q;q.displayName=\"Stack / Ansys\",q.defaultProps={height:60,width:124},a(q,{WPdLi81Zp:{title:\"Link\",type:n.Link}}),t(q,[{family:\"Hanken Grotesk\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/dFy56Jc6K:default\",url:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcgWZa4fpNzXhRKA.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcgWZa4fpNzXhRKA.ttf\",weight:\"500\"},{family:\"Hanken Grotesk\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/dFy56Jc6K:default\",url:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Nc7WZa4fpNzXhRKA.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Nc7WZa4fpNzXhRKA.ttf\",weight:\"300\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdFy56Jc6K\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"60\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"WPdLi81Zp\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pTy71I6Uq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"124\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dFy56Jc6K.map", "\nexport const __FramerMetadata__ = {\"exports\":{\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9bd94da)\nimport{jsx as e,jsxs as r}from\"react/jsx-runtime\";import{addFonts as a,addPropertyControls as t,ControlType as o,cx as n,Link as i,RichText as l,SVG as f,useLocaleInfo as s,useVariantState as m,withCSS as C}from\"framer\";import{LayoutGroup as c,motion as d,MotionConfigContext as p}from\"framer-motion\";import*as g from\"react\";import*as h from\"./FgAiqjJES-0.js\";let u={PESsyPlXT:{hover:!0}},v=[\"PESsyPlXT\"],x=\"framer-U6cma\",y={PESsyPlXT:\"framer-v-vefs09\"};function b(e,...r){let a={};return null==r||r.forEach(r=>r&&Object.assign(a,e[r])),a;}let w={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},k={sqKeqj321:h},N=(e,r)=>{for(;r;){let a=k[r.id];if(a){let r=a[e];if(r)return r;}r=r.fallback;}},R=(e,r)=>`translate(-50%, -50%) ${r}`,L=({value:r,children:a})=>{let t=g.useContext(p),o=null!=r?r:t.transition,n=g.useMemo(()=>({...t,transition:o}),[JSON.stringify(o)]);return /*#__PURE__*/e(p.Provider,{value:n,children:a});},P=({height:e,id:r,link:a,width:t,...o})=>({...o,fN7lsRi1O:null!=a?a:o.fN7lsRi1O}),S=(e,r)=>r.join(\"-\")+e.layoutDependency,F=/*#__PURE__*/g.forwardRef(function(a,t){let{activeLocale:o}=s(),{style:C,className:p,layoutId:h,variant:x,fN7lsRi1O:k,...N}=P(a),{baseVariant:F,classNames:Z,gestureVariant:E,setGestureState:U,setVariant:z,transition:X,variants:q}=m({cycleOrder:v,defaultVariant:\"PESsyPlXT\",enabledGestures:u,transitions:w,variant:x,variantClassNames:y}),T=S(a,q),G=g.useRef(null),A=g.useId();return /*#__PURE__*/e(c,{id:null!=h?h:A,children:/*#__PURE__*/e(d.div,{initial:x,animate:q,onHoverStart:()=>U({isHovered:!0}),onHoverEnd:()=>U({isHovered:!1}),onTapStart:()=>U({isPressed:!0}),onTap:()=>U({isPressed:!1}),onTapCancel:()=>U({isPressed:!1}),className:n(\"framer-U6cma\",...[],Z),style:{display:\"contents\"},children:/*#__PURE__*/e(L,{value:X,children:/*#__PURE__*/e(i,{href:k,openInNewTab:!1,children:/*#__PURE__*/r(d.a,{...N,className:`${n(\"framer-vefs09\",p)} framer-p7nhgq`,\"data-framer-name\":\"Default\",layoutDependency:T,layoutId:\"PESsyPlXT\",ref:null!=t?t:G,style:{...C},...b({\"PESsyPlXT-hover\":{\"data-framer-name\":void 0}},F,E),children:[\"PESsyPlXT-hover\"===E&&/*#__PURE__*/r(d.div,{className:\"framer-mb51hf\",layoutDependency:T,layoutId:\"LX5CPwgqQ\",style:{backgroundColor:\"var(--token-5ed1cc28-c060-4755-a750-863980cab513, rgba(0, 0, 0, 0.75))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},transformTemplate:R,children:[/*#__PURE__*/e(l,{__fromCanvasComponent:!0,children:/*#__PURE__*/e(g.Fragment,{children:/*#__PURE__*/e(d.p,{style:{\"--font-selector\":\"R0Y7SGFua2VuIEdyb3Rlc2stNTAw\",\"--framer-font-family\":'\"Hanken Grotesk\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eaf80125-bf32-4d8e-9fcf-bcc499a289a4, rgb(249, 248, 245)))\"},children:\"Ford\"})}),className:\"framer-1unr8v2\",fonts:[\"GF;Hanken Grotesk-500\"],layoutDependency:T,layoutId:\"KGxIErHvT\",style:{\"--extracted-r6o4lv\":\"var(--token-eaf80125-bf32-4d8e-9fcf-bcc499a289a4, rgb(249, 248, 245))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0}),/*#__PURE__*/e(l,{__fromCanvasComponent:!0,children:/*#__PURE__*/e(g.Fragment,{children:/*#__PURE__*/e(d.p,{style:{\"--font-selector\":\"R0Y7SGFua2VuIEdyb3Rlc2stMzAw\",\"--framer-font-family\":'\"Hanken Grotesk\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eaf80125-bf32-4d8e-9fcf-bcc499a289a4, rgb(249, 248, 245)))\"},children:\"Automotive\"})}),className:\"framer-xkb3k1\",fonts:[\"GF;Hanken Grotesk-300\"],layoutDependency:T,layoutId:\"YNiewWy5L\",style:{\"--extracted-r6o4lv\":\"var(--token-eaf80125-bf32-4d8e-9fcf-bcc499a289a4, rgb(249, 248, 245))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0})]}),/*#__PURE__*/e(f,{className:\"framer-1ly68to\",\"data-framer-name\":\"ford_logi_fill\",layout:\"position\",layoutDependency:T,layoutId:\"f0BNcJXno\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 53 53\"><path d=\"M 26.582 16.593 C 12.068 16.593 0.408 20.955 0.408 26.418 C 0.408 31.841 12.149 36.244 26.582 36.244 C 41.014 36.244 52.755 31.841 52.755 26.418 C 52.796 21.037 41.014 16.593 26.582 16.593 Z M 26.582 35.388 C 12.72 35.388 1.508 31.392 1.508 26.418 C 1.508 21.485 12.761 17.449 26.582 17.449 C 40.443 17.449 51.655 21.445 51.655 26.418 C 51.695 31.392 40.443 35.388 26.582 35.388 Z M 36.896 28.416 L 36.896 28.498 C 36.896 28.538 36.978 28.579 37.018 28.62 C 37.018 28.62 37.059 28.661 37.018 28.702 C 36.855 29.068 36.692 29.272 36.488 29.558 C 36.285 29.843 36.081 30.047 35.836 30.251 C 35.469 30.577 34.898 30.903 34.45 30.699 C 34.246 30.577 34.165 30.332 34.165 30.088 C 34.165 29.476 34.45 28.824 34.98 28.172 C 35.592 27.397 36.325 26.989 36.774 27.234 C 37.263 27.438 37.141 28.008 36.896 28.416 Z M 23.932 24.339 C 23.891 24.095 23.972 23.809 24.217 23.605 C 24.339 23.483 24.502 23.483 24.625 23.565 C 24.747 23.646 24.665 23.891 24.584 24.095 C 24.462 24.298 24.258 24.462 24.054 24.462 C 23.972 24.421 23.932 24.421 23.932 24.339 Z M 26.582 18.224 C 13.209 18.224 2.365 21.934 2.365 26.459 C 2.365 30.944 13.209 34.654 26.582 34.654 C 39.954 34.654 50.798 30.944 50.798 26.418 C 50.798 21.893 39.954 18.224 26.582 18.224 Z M 14.147 31.841 C 12.72 31.841 11.456 30.985 11.293 29.435 C 11.212 28.579 11.456 27.845 11.945 27.193 C 12.353 26.622 13.087 26.174 13.698 26.052 C 13.902 26.011 14.147 26.052 14.269 26.174 C 14.432 26.378 14.392 26.582 14.228 26.704 C 13.78 26.948 13.209 27.356 12.924 27.886 C 12.679 28.335 12.638 28.905 13.005 29.395 C 13.576 30.251 15.166 30.292 16.675 28.905 C 17.042 28.579 17.368 28.253 17.694 27.845 C 18.346 27.112 18.55 26.826 19.447 25.603 L 19.447 25.562 L 19.406 25.522 C 18.835 25.522 18.305 25.725 17.816 26.092 C 17.694 26.215 17.49 26.174 17.368 26.052 C 17.286 25.888 17.327 25.685 17.49 25.603 C 18.265 25.032 19.162 24.951 20.018 24.788 C 20.018 24.788 20.099 24.788 20.14 24.706 C 20.507 24.258 20.792 23.809 21.159 23.361 C 21.567 22.872 22.056 22.464 22.423 22.097 C 22.953 21.648 23.32 21.485 23.646 21.282 C 23.728 21.241 23.646 21.159 23.605 21.159 C 21.648 20.792 19.61 20.303 17.694 21.037 C 16.348 21.526 15.778 22.586 16.063 23.32 C 16.267 23.809 16.919 23.891 17.572 23.605 C 18.102 23.361 18.55 22.953 18.917 22.423 C 19.121 22.138 19.488 22.342 19.284 22.831 C 18.713 24.176 17.612 25.236 16.308 25.277 C 15.166 25.318 14.473 24.502 14.473 23.483 C 14.473 21.485 16.715 20.14 19.08 19.936 C 21.934 19.692 24.625 20.466 27.438 20.792 C 29.598 21.037 31.678 21.078 33.838 20.548 C 34.083 20.507 34.287 20.67 34.246 20.915 C 34.205 21.282 33.92 21.648 33.227 22.056 C 32.412 22.505 31.555 22.627 30.658 22.627 C 28.498 22.627 26.5 21.812 24.421 21.363 C 24.421 21.445 24.462 21.567 24.38 21.608 C 23.238 22.464 22.178 23.32 21.485 24.502 C 21.445 24.543 21.485 24.543 21.526 24.543 C 22.138 24.502 22.668 24.502 23.238 24.462 C 23.32 24.462 23.32 24.421 23.32 24.339 C 23.279 23.932 23.402 23.442 23.768 23.116 C 24.135 22.79 24.625 22.749 24.91 22.994 C 25.277 23.279 25.236 23.768 25.032 24.135 C 24.828 24.502 24.502 24.706 24.217 24.828 C 24.217 24.828 24.135 24.828 24.176 24.91 C 24.176 24.992 24.625 25.236 24.665 25.318 C 24.706 25.358 24.665 25.481 24.625 25.522 C 24.584 25.562 24.502 25.603 24.421 25.603 C 24.339 25.603 24.298 25.562 24.217 25.522 C 24.013 25.399 23.768 25.236 23.646 25.032 C 23.605 24.951 23.565 24.951 23.442 24.951 C 22.831 24.992 21.893 25.073 21.241 25.155 C 21.078 25.155 21.078 25.195 21.037 25.277 C 20.018 26.948 18.917 28.783 17.694 30.006 C 16.389 31.474 15.288 31.841 14.147 31.841 Z M 41.992 23.605 C 41.788 23.932 37.956 29.802 37.712 30.373 C 37.63 30.577 37.63 30.699 37.712 30.822 C 37.915 31.107 38.364 30.944 38.649 30.74 C 39.465 30.169 40.035 29.476 40.688 28.865 C 40.728 28.824 40.769 28.824 40.81 28.865 C 40.892 28.946 41.055 29.068 41.136 29.15 C 41.177 29.191 41.177 29.232 41.136 29.272 C 40.525 30.047 39.832 30.74 39.179 31.27 C 38.16 32.045 37.141 32.248 36.611 31.759 C 36.407 31.555 36.325 31.311 36.325 31.066 C 36.325 30.944 36.244 30.944 36.203 30.985 C 35.592 31.596 34.532 32.248 33.594 31.759 C 32.778 31.352 32.615 30.414 32.778 29.598 C 32.778 29.598 32.778 29.476 32.656 29.517 C 32.493 29.639 32.289 29.762 32.004 29.884 C 31.678 30.006 31.515 30.047 31.188 30.047 C 30.781 30.047 30.455 29.884 30.21 29.476 C 30.088 29.272 30.006 28.946 30.006 28.702 C 30.006 28.661 29.965 28.62 29.925 28.702 C 29.272 29.68 28.661 30.658 28.008 31.678 C 27.968 31.718 27.927 31.759 27.886 31.759 L 26.622 31.759 C 26.541 31.759 26.5 31.718 26.541 31.637 C 26.785 31.188 28.008 29.395 28.865 27.845 C 29.109 27.438 29.068 27.193 28.905 27.112 C 28.742 26.989 28.375 27.152 28.049 27.397 C 27.234 28.008 26.541 28.987 26.174 29.435 C 25.97 29.68 25.766 30.088 25.236 30.658 C 24.38 31.596 23.238 32.126 22.178 31.759 C 21.567 31.555 21.159 31.066 20.996 30.495 C 20.955 30.373 20.915 30.332 20.833 30.414 C 20.67 30.618 20.303 30.944 19.977 31.148 C 19.936 31.188 19.855 31.229 19.773 31.188 C 19.692 31.148 19.488 30.862 19.447 30.74 C 19.406 30.658 19.447 30.618 19.488 30.577 C 19.936 30.21 20.14 29.965 20.344 29.762 C 20.466 29.598 20.588 29.395 20.711 29.068 C 20.955 28.416 21.567 27.193 22.749 26.541 C 23.198 26.296 23.646 26.133 24.176 26.052 C 24.38 26.011 24.584 26.052 24.625 26.215 C 24.665 26.296 24.706 26.459 24.747 26.541 C 24.788 26.622 24.747 26.663 24.665 26.704 C 23.972 26.989 23.279 27.397 22.79 28.049 C 22.219 28.783 22.097 29.68 22.464 30.169 C 22.749 30.536 23.157 30.618 23.605 30.455 C 24.258 30.251 24.788 29.68 25.073 28.987 C 25.358 28.253 25.44 27.438 25.195 26.663 C 25.155 26.541 25.195 26.418 25.277 26.378 C 25.44 26.255 25.685 26.133 25.725 26.092 C 25.888 26.011 26.052 26.052 26.133 26.174 C 26.378 26.5 26.5 26.989 26.5 27.519 C 26.5 27.642 26.541 27.642 26.622 27.56 C 27.03 27.112 27.438 26.663 27.845 26.296 C 28.253 25.97 28.783 25.725 29.232 25.725 C 29.843 25.725 30.169 26.174 30.128 26.908 C 30.128 26.989 30.21 26.989 30.251 26.948 C 30.455 26.663 30.577 26.541 30.781 26.378 C 31.229 26.011 31.637 25.848 32.126 25.888 C 32.697 25.929 33.145 26.459 33.064 27.03 C 33.023 27.397 32.778 27.764 32.452 27.927 C 32.167 28.09 31.8 28.049 31.555 27.845 C 31.352 27.682 31.311 27.397 31.352 27.152 C 31.352 27.112 31.311 27.03 31.229 27.112 C 30.658 27.682 30.618 28.416 30.985 28.783 C 31.392 29.15 31.963 28.905 32.412 28.62 C 33.227 28.09 33.838 27.397 34.532 26.826 C 35.021 26.459 35.551 26.133 36.162 26.052 C 36.488 26.011 36.815 26.011 37.141 26.174 C 37.589 26.337 37.834 26.704 37.875 27.03 C 37.875 27.112 37.956 27.152 37.997 27.071 C 38.323 26.541 40.198 23.768 40.362 23.483 C 40.402 23.402 40.443 23.361 40.565 23.361 L 41.87 23.361 C 41.992 23.524 41.992 23.565 41.992 23.605 Z\" fill=\"var(--token-919dc6f3-b150-4294-ba84-50f6d0db4294, rgba(0, 0, 0, 0.15)) /* {&quot;name&quot;:&quot;Border&quot;} */\"></path></svg>',svgContentId:3905079851,withExternalLayout:!0})]})})})})});}),Z=['.framer-U6cma [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-U6cma .framer-p7nhgq { display: block; }\",\".framer-U6cma .framer-vefs09 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 60px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 60px; }\",\".framer-U6cma .framer-mb51hf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 4px 6px 4px 6px; position: absolute; top: -27%; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-U6cma .framer-1unr8v2, .framer-U6cma .framer-xkb3k1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-U6cma .framer-1ly68to { flex: none; height: 53px; position: relative; width: 53px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-U6cma .framer-vefs09, .framer-U6cma .framer-mb51hf { gap: 0px; } .framer-U6cma .framer-vefs09 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-U6cma .framer-vefs09 > :first-child { margin-left: 0px; } .framer-U6cma .framer-vefs09 > :last-child { margin-right: 0px; } .framer-U6cma .framer-mb51hf > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-U6cma .framer-mb51hf > :first-child { margin-top: 0px; } .framer-U6cma .framer-mb51hf > :last-child { margin-bottom: 0px; } }\"],E=C(F,Z,\"framer-U6cma\");export default E;E.displayName=\"Stack / Ford\",E.defaultProps={height:60,width:60},t(E,{fN7lsRi1O:{title:\"Link\",type:o.Link}}),a(E,[{family:\"Hanken Grotesk\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/FgAiqjJES:default\",url:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcgWZa4fpNzXhRKA.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcgWZa4fpNzXhRKA.ttf\",weight:\"500\"},{family:\"Hanken Grotesk\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/FgAiqjJES:default\",url:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Nc7WZa4fpNzXhRKA.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Nc7WZa4fpNzXhRKA.ttf\",weight:\"300\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFgAiqjJES\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"I__1LuhXD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"60\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"60\",\"framerVariables\":\"{\\\"fN7lsRi1O\\\":\\\"link\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FgAiqjJES.map", "\nexport const __FramerMetadata__ = {\"exports\":{\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9bd94da)\nimport{jsx as e,jsxs as r}from\"react/jsx-runtime\";import{addFonts as t,cx as a,Link as o,RichText as n,SVG as l,useLocaleInfo as i,useVariantState as f,withCSS as s}from\"framer\";import{LayoutGroup as d,motion as c,MotionConfigContext as m}from\"framer-motion\";import*as p from\"react\";import*as u from\"./wLMPckxzy-0.js\";let g={MZsxM7qlT:{hover:!0}},h=[\"MZsxM7qlT\"],x=\"framer-6MqTM\",L={MZsxM7qlT:\"framer-v-lfliwu\"};function M(e,...r){let t={};return null==r||r.forEach(r=>r&&Object.assign(t,e[r])),t;}let v={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},b={sqKeqj321:u},y=(e,r)=>{for(;r;){let t=b[r.id];if(t){let r=t[e];if(r)return r;}r=r.fallback;}},w=(e,r)=>`translate(-50%, -50%) ${r}`,k=({value:r,children:t})=>{let a=p.useContext(m),o=null!=r?r:a.transition,n=p.useMemo(()=>({...a,transition:o}),[JSON.stringify(o)]);return /*#__PURE__*/e(m.Provider,{value:n,children:t});},C=({height:e,id:r,width:t,...a})=>({...a}),q=(e,r)=>r.join(\"-\")+e.layoutDependency,T=/*#__PURE__*/p.forwardRef(function(t,s){let{activeLocale:m}=i(),{style:u,className:x,layoutId:b,variant:y,...T}=C(t),{baseVariant:Z,classNames:z,gestureVariant:R,setGestureState:N,setVariant:F,transition:G,variants:_}=f({cycleOrder:h,defaultVariant:\"MZsxM7qlT\",enabledGestures:g,transitions:v,variant:y,variantClassNames:L}),A=q(t,_),I=p.useRef(null),S=p.useId();return /*#__PURE__*/e(d,{id:null!=b?b:S,children:/*#__PURE__*/e(c.div,{initial:y,animate:_,onHoverStart:()=>N({isHovered:!0}),onHoverEnd:()=>N({isHovered:!1}),onTapStart:()=>N({isPressed:!0}),onTap:()=>N({isPressed:!1}),onTapCancel:()=>N({isPressed:!1}),className:a(\"framer-6MqTM\",...[],z),style:{display:\"contents\"},children:/*#__PURE__*/e(k,{value:G,children:/*#__PURE__*/e(o,{href:\"https://construction.autodesk.com/\",openInNewTab:!0,children:/*#__PURE__*/r(c.a,{...T,className:`${a(\"framer-lfliwu\",x)} framer-7t3l64`,\"data-framer-name\":\"Default\",layoutDependency:A,layoutId:\"MZsxM7qlT\",ref:null!=s?s:I,style:{...u},...M({\"MZsxM7qlT-hover\":{\"data-framer-name\":void 0}},Z,R),children:[/*#__PURE__*/e(l,{className:\"framer-1ctpxot\",\"data-framer-name\":\"autodesk_logi_full\",layout:\"position\",layoutDependency:A,layoutId:\"tN_xm4GzM\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 153 87\"><path d=\"M 25.169 48.478 L 34.115 42.842 L 38.758 42.842 C 38.901 42.842 39.032 42.957 39.032 43.12 C 39.032 43.253 38.972 43.307 38.901 43.349 L 34.509 46.016 C 34.222 46.191 34.121 46.535 34.121 46.795 L 34.115 48.478 L 39.7 48.478 L 39.7 38.709 C 39.7 38.522 39.557 38.359 39.342 38.359 L 34.014 38.359 L 25.092 43.971 L 25.092 48.478 Z M 98.524 48.478 L 106.57 48.478 L 106.57 46.288 L 101.075 46.288 L 101.075 44.454 L 105.497 44.454 L 105.497 42.257 L 101.075 42.257 L 101.075 40.55 L 106.57 40.55 L 106.57 38.359 L 98.524 38.359 Z M 47.966 38.359 L 44.134 48.478 L 46.768 48.478 L 47.436 46.583 L 51.715 46.583 L 52.37 48.478 L 55.094 48.478 L 51.214 38.359 Z M 48.193 44.429 L 49.593 40.465 L 50.97 44.429 Z M 66.024 40.55 L 69.249 40.55 L 69.249 48.478 L 71.794 48.478 L 71.794 40.55 L 75.006 40.55 L 75.006 38.359 L 66.024 38.359 Z M 62.318 44.58 C 62.318 45.896 61.519 46.427 60.154 46.427 C 58.831 46.427 57.967 45.872 57.967 44.58 L 57.967 38.323 L 55.416 38.323 L 55.416 44.876 C 55.416 47.796 57.991 48.707 60.148 48.707 C 62.294 48.707 64.856 47.796 64.856 44.876 L 64.856 38.323 L 62.306 38.323 L 62.306 44.58 Z M 127.602 38.359 L 124.568 38.359 L 120.933 42.468 L 120.933 38.359 L 118.382 38.359 L 118.394 48.478 L 120.933 48.478 L 120.933 44.635 L 124.378 48.478 L 127.602 48.478 L 122.953 43.482 Z M 92.528 38.359 L 87.855 38.359 L 87.855 48.478 L 92.528 48.478 C 96.11 48.478 97.099 47.126 97.099 43.343 C 97.099 39.789 96.152 38.359 92.528 38.359 Z M 92.427 46.288 L 90.4 46.288 L 90.4 40.55 L 92.427 40.55 C 94.024 40.55 94.501 40.99 94.501 43.343 C 94.501 45.491 93.964 46.288 92.427 46.288 Z M 114.276 42.523 L 111.951 42.257 C 110.592 42.106 110.253 41.762 110.253 41.298 C 110.253 40.779 110.95 40.314 112.315 40.314 C 113.626 40.314 114.312 40.809 114.437 41.551 L 116.934 41.551 C 116.808 39.409 115.039 38.082 112.452 38.082 C 109.377 38.082 107.833 39.319 107.833 41.509 C 107.833 43.289 108.858 44.128 110.98 44.357 L 113.34 44.611 C 114.24 44.713 114.651 45.063 114.651 45.521 C 114.651 46.04 114.049 46.505 112.601 46.505 C 110.926 46.505 110.253 46.077 110.139 45.214 L 107.69 45.214 C 107.803 47.543 109.299 48.731 112.512 48.731 C 115.444 48.731 117.083 47.428 117.083 45.467 C 117.083 43.76 116.111 42.734 114.276 42.523 Z M 80.936 38.082 C 77.3 38.082 75.417 40.344 75.417 43.392 C 75.417 46.451 77.3 48.726 80.936 48.726 C 84.584 48.726 86.467 46.451 86.467 43.392 C 86.473 40.344 84.584 38.082 80.936 38.082 Z M 80.936 46.451 C 79.053 46.451 78.016 45.286 78.016 43.392 C 78.016 41.533 79.053 40.357 80.936 40.357 C 82.837 40.357 83.857 41.533 83.857 43.392 C 83.862 45.292 82.837 46.451 80.936 46.451 Z\" fill=\"var(--token-919dc6f3-b150-4294-ba84-50f6d0db4294, rgba(0, 0, 0, 0.15)) /* {&quot;name&quot;:&quot;Border&quot;} */\"></path></svg>',svgContentId:80820341,withExternalLayout:!0}),\"MZsxM7qlT-hover\"===R&&/*#__PURE__*/r(c.div,{className:\"framer-1cda2rf\",layoutDependency:A,layoutId:\"FktabqYra\",style:{backgroundColor:\"var(--token-5ed1cc28-c060-4755-a750-863980cab513, rgba(0, 0, 0, 0.75))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},transformTemplate:w,children:[/*#__PURE__*/e(n,{__fromCanvasComponent:!0,children:/*#__PURE__*/e(p.Fragment,{children:/*#__PURE__*/e(c.p,{style:{\"--font-selector\":\"R0Y7SGFua2VuIEdyb3Rlc2stNTAw\",\"--framer-font-family\":'\"Hanken Grotesk\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eaf80125-bf32-4d8e-9fcf-bcc499a289a4, rgb(249, 248, 245)))\"},children:\"Autodesk\"})}),className:\"framer-q7dmsp\",fonts:[\"GF;Hanken Grotesk-500\"],layoutDependency:A,layoutId:\"MS6qS9dpz\",style:{\"--extracted-r6o4lv\":\"var(--token-eaf80125-bf32-4d8e-9fcf-bcc499a289a4, rgb(249, 248, 245))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0}),/*#__PURE__*/e(n,{__fromCanvasComponent:!0,children:/*#__PURE__*/e(p.Fragment,{children:/*#__PURE__*/e(c.p,{style:{\"--font-selector\":\"R0Y7SGFua2VuIEdyb3Rlc2stMzAw\",\"--framer-font-family\":'\"Hanken Grotesk\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eaf80125-bf32-4d8e-9fcf-bcc499a289a4, rgb(249, 248, 245)))\"},children:\"Construction tech\"})}),className:\"framer-z1qbbp\",fonts:[\"GF;Hanken Grotesk-300\"],layoutDependency:A,layoutId:\"CJuuLt4Vt\",style:{\"--extracted-r6o4lv\":\"var(--token-eaf80125-bf32-4d8e-9fcf-bcc499a289a4, rgb(249, 248, 245))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0})]})]})})})})});}),Z=['.framer-6MqTM [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6MqTM .framer-7t3l64 { display: block; }\",\".framer-6MqTM .framer-lfliwu { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 60px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 108px; }\",\".framer-6MqTM .framer-1ctpxot { flex: none; height: 87px; position: relative; width: 153px; }\",\".framer-6MqTM .framer-1cda2rf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 4px 6px 4px 6px; position: absolute; top: -27%; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-6MqTM .framer-q7dmsp, .framer-6MqTM .framer-z1qbbp { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-6MqTM .framer-lfliwu, .framer-6MqTM .framer-1cda2rf { gap: 0px; } .framer-6MqTM .framer-lfliwu > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-6MqTM .framer-lfliwu > :first-child { margin-left: 0px; } .framer-6MqTM .framer-lfliwu > :last-child { margin-right: 0px; } .framer-6MqTM .framer-1cda2rf > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-6MqTM .framer-1cda2rf > :first-child { margin-top: 0px; } .framer-6MqTM .framer-1cda2rf > :last-child { margin-bottom: 0px; } }\"],z=s(T,Z,\"framer-6MqTM\");export default z;z.displayName=\"Stack / Autodesk\",z.defaultProps={height:60,width:108},t(z,[{family:\"Hanken Grotesk\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/wLMPckxzy:default\",url:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcgWZa4fpNzXhRKA.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcgWZa4fpNzXhRKA.ttf\",weight:\"500\"},{family:\"Hanken Grotesk\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/wLMPckxzy:default\",url:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Nc7WZa4fpNzXhRKA.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Nc7WZa4fpNzXhRKA.ttf\",weight:\"300\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwLMPckxzy\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"60\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TS7HBhO5n\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"108\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wLMPckxzy.map", "\nexport const __FramerMetadata__ = {\"exports\":{\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9bd94da)\nimport{jsx as C,jsxs as e}from\"react/jsx-runtime\";import{addFonts as r,cx as t,Link as a,RichText as L,SVG as o,useLocaleInfo as n,useVariantState as i,withCSS as l}from\"framer\";import{LayoutGroup as s,motion as f,MotionConfigContext as m}from\"framer-motion\";import*as d from\"react\";import*as p from\"./XIg4Y6WLs-0.js\";let c={h36RP8U_l:{hover:!0}},u=[\"h36RP8U_l\"],h=\"framer-uMiAL\",M={h36RP8U_l:\"framer-v-7xz1v7\"};function g(C,...e){let r={};return null==e||e.forEach(e=>e&&Object.assign(r,C[e])),r;}let x={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},Z={sqKeqj321:p},v=(C,e)=>{for(;e;){let r=Z[e.id];if(r){let e=r[C];if(e)return e;}e=e.fallback;}},b=(C,e)=>`translate(-50%, -50%) ${e}`,y=({value:e,children:r})=>{let t=d.useContext(m),a=null!=e?e:t.transition,L=d.useMemo(()=>({...t,transition:a}),[JSON.stringify(a)]);return /*#__PURE__*/C(m.Provider,{value:L,children:r});},w=({height:C,id:e,width:r,...t})=>({...t}),k=(C,e)=>e.join(\"-\")+C.layoutDependency,A=/*#__PURE__*/d.forwardRef(function(r,l){let{activeLocale:m}=n(),{style:p,className:h,layoutId:Z,variant:v,...A}=w(r),{baseVariant:R,classNames:z,gestureVariant:_,setGestureState:N,setVariant:G,transition:Y,variants:F}=i({cycleOrder:u,defaultVariant:\"h36RP8U_l\",enabledGestures:c,transitions:x,variant:v,variantClassNames:M}),I=k(r,F),q=d.useRef(null),H=d.useId();return /*#__PURE__*/C(s,{id:null!=Z?Z:H,children:/*#__PURE__*/C(f.div,{initial:v,animate:F,onHoverStart:()=>N({isHovered:!0}),onHoverEnd:()=>N({isHovered:!1}),onTapStart:()=>N({isPressed:!0}),onTap:()=>N({isPressed:!1}),onTapCancel:()=>N({isPressed:!1}),className:t(\"framer-uMiAL\",...[],z),style:{display:\"contents\"},children:/*#__PURE__*/C(y,{value:Y,children:/*#__PURE__*/C(a,{href:\"https://medicine.musc.edu/departments/anesthesia\",children:/*#__PURE__*/e(f.a,{...A,className:`${t(\"framer-7xz1v7\",h)} framer-jcp8bs`,\"data-framer-name\":\"Variant 1\",layoutDependency:I,layoutId:\"h36RP8U_l\",ref:null!=l?l:q,style:{...p},...g({\"h36RP8U_l-hover\":{\"data-framer-name\":void 0}},R,_),children:[/*#__PURE__*/C(o,{className:\"framer-sqo1m6\",\"data-framer-name\":\"musc_health_logo_vector\",layout:\"position\",layoutDependency:I,layoutId:\"Lidm28Gt6\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 77 77\"><path d=\"M 2.586 44.948 L 3.319 44.948 L 4.169 47.416 L 5.031 44.948 L 5.716 44.948 L 5.716 47.948 L 5.314 47.948 L 5.314 45.255 L 4.322 47.948 L 3.933 47.948 L 2.988 45.267 L 2.988 47.948 L 2.586 47.948 Z M 6.708 46.979 C 6.696 47.416 6.873 47.735 7.31 47.735 C 7.558 47.735 7.771 47.605 7.794 47.298 L 8.184 47.298 C 8.172 47.405 8.161 47.57 8.007 47.735 C 7.913 47.842 7.712 48.019 7.287 48.019 C 6.625 48.019 6.318 47.617 6.318 46.956 C 6.318 46.542 6.401 46.2 6.732 45.976 C 6.932 45.834 7.18 45.822 7.298 45.822 C 8.231 45.822 8.208 46.649 8.208 46.991 Z M 7.806 46.696 C 7.806 46.495 7.771 46.082 7.287 46.082 C 7.039 46.082 6.732 46.235 6.72 46.696 Z M 10.204 44.948 L 10.593 44.948 L 10.593 47.605 C 10.593 47.653 10.605 47.83 10.605 47.936 L 10.215 47.936 L 10.204 47.605 C 10.168 47.664 10.121 47.747 10.015 47.83 C 9.849 47.948 9.637 47.983 9.495 47.983 C 9.212 47.983 8.598 47.842 8.598 46.92 C 8.598 46.129 9.046 45.787 9.542 45.787 C 9.991 45.787 10.145 46.046 10.192 46.141 Z M 10.05 46.294 C 9.967 46.188 9.814 46.082 9.59 46.082 C 9.023 46.082 9.023 46.779 9.023 46.92 C 9.023 47.287 9.117 47.712 9.59 47.712 C 10.204 47.712 10.204 47.038 10.204 46.873 C 10.215 46.566 10.145 46.401 10.05 46.294 Z M 11.231 44.96 L 11.704 44.96 L 11.704 45.385 L 11.231 45.385 Z M 11.278 45.858 L 11.668 45.858 L 11.668 47.948 L 11.278 47.948 Z M 13.593 46.531 C 13.581 46.436 13.558 46.094 13.18 46.094 C 12.637 46.094 12.637 46.72 12.637 46.873 C 12.637 47.298 12.743 47.7 13.156 47.7 C 13.487 47.7 13.605 47.452 13.605 47.251 L 13.995 47.251 C 13.971 47.653 13.664 47.995 13.156 47.995 C 13.014 47.995 12.696 47.971 12.471 47.723 C 12.341 47.582 12.223 47.357 12.223 46.932 C 12.223 46.07 12.755 45.81 13.168 45.81 C 13.31 45.81 13.617 45.834 13.806 46.07 C 13.959 46.247 13.971 46.424 13.983 46.531 Z M 15.731 47.948 C 15.707 47.842 15.695 47.747 15.695 47.641 C 15.506 47.983 15.223 48.019 15.058 48.019 C 14.585 48.019 14.325 47.747 14.325 47.405 C 14.325 47.239 14.384 46.968 14.691 46.79 C 14.916 46.661 15.246 46.649 15.412 46.649 C 15.506 46.649 15.577 46.649 15.695 46.661 C 15.695 46.401 15.695 46.294 15.624 46.2 C 15.542 46.094 15.376 46.058 15.258 46.058 C 14.869 46.058 14.845 46.33 14.845 46.413 L 14.455 46.413 C 14.467 46.306 14.479 46.165 14.597 46.023 C 14.75 45.846 15.046 45.798 15.27 45.798 C 15.577 45.798 15.896 45.893 16.014 46.106 C 16.085 46.235 16.085 46.33 16.085 46.424 L 16.073 47.416 C 16.073 47.452 16.073 47.723 16.109 47.936 Z M 15.459 46.92 C 15.306 46.92 14.703 46.92 14.703 47.346 C 14.703 47.475 14.786 47.712 15.14 47.712 C 15.341 47.712 15.494 47.629 15.589 47.487 C 15.672 47.346 15.683 47.227 15.683 46.944 C 15.613 46.92 15.554 46.92 15.459 46.92 Z M 16.746 44.948 L 17.136 44.948 L 17.136 47.948 L 16.746 47.948 Z M 19.439 44.948 L 19.439 46.802 C 19.439 47.121 19.51 47.251 19.569 47.346 C 19.758 47.594 20.041 47.641 20.254 47.641 C 21.069 47.641 21.069 47.003 21.069 46.79 L 21.069 44.948 L 21.47 44.948 L 21.47 46.79 C 21.47 46.956 21.47 47.287 21.222 47.582 C 20.927 47.948 20.466 47.995 20.254 47.995 C 19.97 47.995 19.474 47.912 19.191 47.523 C 19.096 47.393 19.014 47.216 19.014 46.767 L 19.014 44.936 C 19.026 44.948 19.439 44.948 19.439 44.948 Z M 22.226 46.106 L 22.226 45.869 L 22.616 45.869 L 22.616 46.2 C 22.663 46.117 22.817 45.822 23.289 45.822 C 23.478 45.822 24.045 45.893 24.045 46.531 L 24.045 47.948 L 23.643 47.948 L 23.643 46.625 C 23.643 46.483 23.631 46.365 23.537 46.271 C 23.442 46.176 23.301 46.129 23.171 46.129 C 22.887 46.129 22.628 46.33 22.628 46.755 L 22.628 47.948 L 22.238 47.948 Z M 24.694 44.96 L 25.167 44.96 L 25.167 45.385 L 24.694 45.385 Z M 24.73 45.858 L 25.119 45.858 L 25.119 47.948 L 24.73 47.948 Z M 25.627 45.858 L 26.064 45.858 L 26.726 47.511 L 27.375 45.858 L 27.812 45.858 L 26.903 47.936 L 26.513 47.936 Z M 28.473 46.979 C 28.462 47.416 28.639 47.735 29.076 47.735 C 29.324 47.735 29.536 47.605 29.56 47.298 L 29.95 47.298 C 29.938 47.405 29.926 47.57 29.773 47.735 C 29.678 47.842 29.477 48.019 29.052 48.019 C 28.391 48.019 28.084 47.617 28.084 46.956 C 28.084 46.542 28.166 46.2 28.497 45.976 C 28.698 45.834 28.946 45.822 29.064 45.822 C 29.997 45.822 29.973 46.649 29.973 46.991 Z M 29.572 46.696 C 29.572 46.495 29.536 46.082 29.052 46.082 C 28.804 46.082 28.497 46.235 28.485 46.696 Z M 30.54 46.283 C 30.54 46.141 30.528 45.999 30.517 45.858 L 30.906 45.858 L 30.918 46.259 C 30.989 45.964 31.237 45.869 31.414 45.846 C 31.532 45.834 31.615 45.834 31.686 45.834 L 31.686 46.212 C 31.662 46.2 31.638 46.2 31.615 46.2 L 31.509 46.2 C 31.048 46.2 30.942 46.472 30.942 46.826 L 30.942 47.936 L 30.552 47.936 Z M 32.418 47.322 C 32.418 47.475 32.501 47.7 32.879 47.7 C 33.044 47.7 33.162 47.676 33.245 47.57 C 33.28 47.511 33.315 47.44 33.315 47.369 C 33.315 47.168 33.174 47.133 32.855 47.062 C 32.418 46.968 32.052 46.873 32.052 46.436 C 32.052 46.058 32.383 45.81 32.867 45.81 C 33.127 45.81 33.493 45.881 33.623 46.129 C 33.682 46.247 33.682 46.342 33.682 46.436 L 33.28 46.436 C 33.292 46.117 33.02 46.094 32.879 46.094 C 32.819 46.094 32.453 46.094 32.453 46.389 C 32.453 46.578 32.642 46.625 32.749 46.649 C 33.327 46.79 33.445 46.814 33.575 46.932 C 33.693 47.038 33.729 47.18 33.729 47.322 C 33.729 47.558 33.599 47.759 33.445 47.853 C 33.268 47.96 33.044 47.995 32.831 47.995 C 32.406 47.995 32.016 47.818 32.016 47.322 Z M 34.213 44.96 L 34.685 44.96 L 34.685 45.385 L 34.213 45.385 Z M 34.248 45.858 L 34.638 45.858 L 34.638 47.948 L 34.248 47.948 Z M 35.063 45.858 L 35.429 45.858 L 35.429 45.421 L 35.819 45.291 L 35.819 45.846 L 36.28 45.846 L 36.28 46.129 L 35.819 46.129 L 35.819 47.381 C 35.819 47.487 35.819 47.664 36.103 47.664 C 36.185 47.664 36.256 47.653 36.292 47.641 L 36.292 47.948 C 36.221 47.96 36.114 47.971 35.973 47.971 C 35.618 47.971 35.441 47.865 35.441 47.523 L 35.441 46.129 L 35.075 46.129 Z M 37.685 47.96 L 37.39 48.739 L 36.988 48.739 L 37.307 47.948 L 36.445 45.869 L 36.882 45.869 L 37.532 47.511 L 38.193 45.869 L 38.618 45.869 Z M 41.063 45.81 C 41.901 45.81 42.078 46.472 42.078 46.897 C 42.078 47.511 41.736 48.019 41.027 48.019 C 40.342 48.019 40 47.546 40 46.932 C 40.012 46.413 40.248 45.81 41.063 45.81 Z M 41.039 47.723 C 41.334 47.723 41.665 47.511 41.665 46.885 C 41.665 46.365 41.429 46.094 41.063 46.094 C 40.815 46.094 40.413 46.247 40.413 46.909 C 40.413 47.334 40.602 47.723 41.039 47.723 Z M 43.72 45.243 C 43.649 45.243 43.566 45.232 43.496 45.232 C 43.177 45.232 43.177 45.385 43.177 45.539 L 43.177 45.869 L 43.661 45.869 L 43.661 46.153 L 43.177 46.153 L 43.177 47.948 L 42.787 47.948 L 42.787 46.153 L 42.374 46.153 L 42.374 45.869 L 42.787 45.869 L 42.787 45.633 C 42.787 45.35 42.799 45.243 42.87 45.137 C 42.952 45.007 43.118 44.913 43.389 44.913 C 43.496 44.913 43.625 44.925 43.708 44.936 Z M 45.468 47.074 C 45.48 47.287 45.503 47.664 46.188 47.664 C 46.814 47.664 46.885 47.275 46.885 47.133 C 46.885 46.802 46.613 46.731 46.2 46.625 C 45.739 46.507 45.539 46.46 45.385 46.365 C 45.137 46.2 45.078 45.976 45.078 45.775 C 45.078 45.161 45.657 44.901 46.224 44.901 C 46.424 44.901 46.826 44.936 47.062 45.196 C 47.227 45.373 47.239 45.586 47.239 45.704 L 46.802 45.704 C 46.779 45.326 46.472 45.243 46.176 45.243 C 45.763 45.243 45.515 45.432 45.515 45.728 C 45.515 45.987 45.692 46.082 46.058 46.176 C 46.767 46.354 46.85 46.377 47.027 46.495 C 47.31 46.672 47.322 46.968 47.322 47.098 C 47.322 47.629 46.909 48.031 46.141 48.031 C 45.917 48.031 45.444 47.995 45.208 47.688 C 45.043 47.464 45.031 47.227 45.031 47.086 Z M 48.739 45.81 C 49.578 45.81 49.755 46.472 49.755 46.897 C 49.755 47.511 49.412 48.019 48.704 48.019 C 48.019 48.019 47.676 47.546 47.676 46.932 C 47.676 46.413 47.924 45.81 48.739 45.81 Z M 48.715 47.723 C 49.011 47.723 49.341 47.511 49.341 46.885 C 49.341 46.365 49.105 46.094 48.739 46.094 C 48.491 46.094 48.09 46.247 48.09 46.909 C 48.09 47.334 48.267 47.723 48.715 47.723 Z M 50.7 45.858 L 50.7 47.192 C 50.7 47.393 50.747 47.653 51.148 47.653 C 51.349 47.653 51.526 47.582 51.633 47.416 C 51.715 47.287 51.715 47.133 51.715 47.027 L 51.715 45.846 L 52.117 45.846 L 52.117 47.535 C 52.117 47.57 52.129 47.806 52.129 47.924 L 51.727 47.924 L 51.715 47.57 C 51.644 47.712 51.503 47.948 51.054 47.948 C 50.534 47.948 50.298 47.653 50.298 47.239 L 50.298 45.846 L 50.7 45.846 Z M 52.542 45.858 L 52.908 45.858 L 52.908 45.421 L 53.298 45.291 L 53.298 45.846 L 53.758 45.846 L 53.758 46.129 L 53.298 46.129 L 53.298 47.381 C 53.298 47.487 53.298 47.664 53.581 47.664 C 53.664 47.664 53.735 47.653 53.77 47.641 L 53.77 47.948 C 53.699 47.96 53.593 47.971 53.451 47.971 C 53.097 47.971 52.92 47.865 52.92 47.523 L 52.92 46.129 L 52.554 46.129 Z M 54.219 44.948 L 54.609 44.948 L 54.609 46.165 C 54.738 45.94 54.998 45.822 55.282 45.822 C 55.506 45.822 55.813 45.905 55.943 46.153 C 55.979 46.235 56.014 46.33 56.014 46.637 L 56.014 47.936 L 55.624 47.936 L 55.624 46.708 C 55.624 46.519 55.624 46.117 55.175 46.117 C 54.88 46.117 54.738 46.294 54.691 46.401 C 54.62 46.519 54.62 46.708 54.62 46.838 L 54.62 47.936 L 54.231 47.936 Z M 59.675 45.763 C 59.663 45.657 59.604 45.243 59.025 45.243 C 58.305 45.243 58.175 45.987 58.175 46.483 C 58.175 47.05 58.34 47.653 59.025 47.653 C 59.203 47.653 59.38 47.605 59.51 47.475 C 59.616 47.357 59.64 47.227 59.651 47.157 L 60.112 47.157 C 60.053 47.747 59.51 47.995 58.99 47.995 C 57.939 47.995 57.738 47.062 57.738 46.483 C 57.738 45.858 57.986 44.913 59.049 44.913 C 59.474 44.913 60.065 45.078 60.124 45.763 Z M 61.883 47.948 C 61.86 47.842 61.848 47.747 61.848 47.641 C 61.659 47.983 61.376 48.019 61.21 48.019 C 60.738 48.019 60.478 47.747 60.478 47.405 C 60.478 47.239 60.537 46.968 60.844 46.79 C 61.069 46.661 61.399 46.649 61.565 46.649 C 61.659 46.649 61.73 46.649 61.848 46.661 C 61.848 46.401 61.848 46.294 61.777 46.2 C 61.694 46.094 61.529 46.058 61.411 46.058 C 61.021 46.058 60.998 46.33 60.998 46.413 L 60.608 46.413 C 60.62 46.306 60.632 46.165 60.75 46.023 C 60.903 45.846 61.198 45.798 61.423 45.798 C 61.73 45.798 62.049 45.893 62.167 46.106 C 62.238 46.235 62.238 46.33 62.238 46.424 L 62.226 47.416 C 62.226 47.452 62.226 47.723 62.261 47.936 Z M 61.612 46.92 C 61.458 46.92 60.856 46.92 60.856 47.346 C 60.856 47.475 60.939 47.712 61.293 47.712 C 61.494 47.712 61.635 47.629 61.742 47.487 C 61.824 47.346 61.836 47.227 61.836 46.944 C 61.765 46.92 61.706 46.92 61.612 46.92 Z M 62.923 46.283 C 62.923 46.141 62.911 45.999 62.899 45.858 L 63.289 45.858 L 63.301 46.259 C 63.371 45.964 63.619 45.869 63.797 45.846 C 63.915 45.834 63.997 45.834 64.068 45.834 L 64.068 46.212 C 64.045 46.2 64.021 46.2 63.997 46.2 L 63.879 46.2 C 63.419 46.2 63.312 46.472 63.312 46.826 L 63.312 47.936 L 62.923 47.936 Z M 65.403 45.81 C 66.241 45.81 66.418 46.472 66.418 46.897 C 66.418 47.511 66.076 48.019 65.367 48.019 C 64.682 48.019 64.34 47.546 64.34 46.932 C 64.34 46.413 64.588 45.81 65.403 45.81 Z M 65.379 47.723 C 65.674 47.723 66.005 47.511 66.005 46.885 C 66.005 46.365 65.769 46.094 65.403 46.094 C 65.155 46.094 64.753 46.247 64.753 46.909 C 64.753 47.334 64.93 47.723 65.379 47.723 Z M 67.021 44.948 L 67.41 44.948 L 67.41 47.948 L 67.021 47.948 Z M 68.107 44.96 L 68.58 44.96 L 68.58 45.385 L 68.107 45.385 Z M 68.143 45.858 L 68.532 45.858 L 68.532 47.948 L 68.143 47.948 Z M 69.288 46.106 L 69.288 45.869 L 69.678 45.869 L 69.678 46.2 C 69.725 46.117 69.879 45.822 70.351 45.822 C 70.54 45.822 71.107 45.893 71.107 46.531 L 71.107 47.948 L 70.705 47.948 L 70.705 46.625 C 70.705 46.483 70.694 46.365 70.599 46.271 C 70.505 46.176 70.363 46.129 70.233 46.129 C 69.95 46.129 69.69 46.33 69.69 46.755 L 69.69 47.948 L 69.3 47.948 Z M 73.056 47.948 C 73.032 47.842 73.02 47.747 73.02 47.641 C 72.831 47.983 72.548 48.019 72.382 48.019 C 71.91 48.019 71.65 47.747 71.65 47.405 C 71.65 47.239 71.709 46.968 72.016 46.79 C 72.241 46.661 72.571 46.649 72.737 46.649 C 72.831 46.649 72.902 46.649 73.02 46.661 C 73.02 46.401 73.02 46.294 72.949 46.2 C 72.867 46.094 72.701 46.058 72.583 46.058 C 72.193 46.058 72.17 46.33 72.17 46.413 L 71.78 46.413 C 71.792 46.306 71.804 46.165 71.922 46.023 C 72.075 45.846 72.371 45.798 72.595 45.798 C 72.902 45.798 73.221 45.893 73.339 46.106 C 73.41 46.235 73.41 46.33 73.41 46.424 L 73.398 47.416 C 73.398 47.452 73.398 47.723 73.433 47.936 Z M 72.784 46.92 C 72.63 46.92 72.028 46.92 72.028 47.346 C 72.028 47.475 72.111 47.712 72.465 47.712 C 72.666 47.712 72.808 47.629 72.914 47.487 C 72.996 47.346 73.008 47.227 73.008 46.944 C 72.949 46.92 72.89 46.92 72.784 46.92 Z M 24.931 42.586 C 25.025 42.622 25.013 42.834 24.907 42.87 C 24.482 42.846 24.104 42.846 23.714 42.846 C 23.254 42.846 22.828 42.858 22.403 42.87 C 22.321 42.834 22.285 42.645 22.38 42.586 L 22.639 42.539 C 23.029 42.468 23.065 42.397 23.065 41.736 L 23.065 37.721 L 23.041 37.721 C 22.781 38.264 22.639 38.559 22.45 38.949 L 21.612 40.673 C 21.281 41.358 20.785 42.444 20.608 42.905 C 20.573 42.94 20.419 42.94 20.348 42.905 C 20.183 42.374 19.758 41.417 19.533 40.921 L 18.66 39.031 C 18.471 38.618 18.211 38.004 18.093 37.709 L 18.069 37.709 C 18.045 38.193 18.034 38.961 18.01 39.362 C 17.986 39.964 17.975 40.838 17.975 41.641 C 17.975 42.291 17.986 42.433 18.412 42.515 L 18.73 42.574 C 18.801 42.633 18.801 42.822 18.719 42.858 C 18.352 42.834 18.057 42.834 17.691 42.834 C 17.372 42.834 17.018 42.846 16.64 42.858 C 16.557 42.811 16.557 42.622 16.605 42.574 L 16.77 42.551 C 17.242 42.492 17.313 42.35 17.384 41.748 C 17.455 41.134 17.479 40.496 17.526 39.468 C 17.561 38.795 17.62 37.992 17.62 37.39 C 17.62 36.929 17.479 36.729 17.089 36.669 L 16.758 36.61 C 16.699 36.54 16.711 36.351 16.794 36.327 C 17.089 36.351 17.349 36.351 17.715 36.351 C 18.057 36.351 18.4 36.351 18.766 36.327 C 18.801 36.917 19.049 37.425 19.309 37.957 L 20.384 40.224 C 20.466 40.39 20.714 40.886 20.844 41.11 C 20.998 40.827 21.128 40.555 21.352 40.094 L 22.273 38.205 C 22.592 37.555 22.899 36.977 23.065 36.327 C 23.324 36.351 23.655 36.351 23.868 36.351 C 24.281 36.351 24.623 36.339 24.895 36.327 C 25.001 36.362 25.025 36.551 24.931 36.61 L 24.612 36.658 C 24.175 36.729 24.08 36.882 24.08 37.402 C 24.08 38.854 24.104 40.307 24.163 41.76 C 24.187 42.421 24.305 42.48 24.612 42.527 Z M 26.277 37.78 C 26.277 36.74 26.194 36.717 25.722 36.646 L 25.556 36.622 C 25.486 36.551 25.497 36.386 25.58 36.351 C 25.97 36.374 26.419 36.374 26.844 36.374 C 27.281 36.374 27.729 36.362 28.155 36.351 C 28.237 36.386 28.237 36.551 28.178 36.622 L 27.966 36.646 C 27.505 36.705 27.411 36.74 27.411 37.78 L 27.411 40.023 C 27.411 41.382 27.824 42.515 29.182 42.515 C 30.469 42.515 31.001 41.547 31.001 40.047 L 31.001 38.819 C 31.001 38.087 30.989 37.165 30.812 36.882 C 30.729 36.74 30.564 36.669 30.316 36.622 L 30.115 36.599 C 30.032 36.528 30.032 36.351 30.139 36.327 C 30.469 36.351 30.847 36.351 31.225 36.351 C 31.638 36.351 31.898 36.339 32.264 36.327 C 32.347 36.374 32.359 36.528 32.288 36.599 L 32.075 36.646 C 31.887 36.681 31.709 36.729 31.638 36.882 C 31.497 37.177 31.497 38.039 31.497 38.819 L 31.497 39.988 C 31.497 40.886 31.355 41.7 30.847 42.256 C 30.339 42.811 29.595 42.988 28.922 42.988 C 28.001 42.988 27.352 42.787 26.903 42.362 C 26.466 41.937 26.253 41.252 26.253 40.26 Z M 32.938 42.586 C 32.76 42.385 32.631 41.7 32.642 41.098 C 32.701 41.004 32.867 40.992 32.949 41.063 C 33.127 41.559 33.658 42.61 34.615 42.61 C 35.359 42.61 35.784 42.161 35.784 41.559 C 35.784 41.004 35.524 40.543 34.78 40.142 L 34.355 39.905 C 33.623 39.492 32.973 38.89 32.973 38.016 C 32.973 37.047 33.693 36.221 35.134 36.221 C 35.642 36.221 36.02 36.339 36.481 36.421 C 36.587 36.634 36.681 37.284 36.681 37.744 C 36.634 37.827 36.457 37.839 36.362 37.768 C 36.221 37.26 35.866 36.599 35.04 36.599 C 34.26 36.599 33.93 37.106 33.93 37.626 C 33.93 38.039 34.213 38.476 34.863 38.819 L 35.477 39.138 C 36.114 39.468 36.823 40.083 36.823 41.075 C 36.823 42.196 35.973 42.988 34.544 42.988 C 33.634 43 33.127 42.704 32.938 42.586 Z M 43.685 38.016 C 43.614 38.098 43.437 38.098 43.366 38.039 C 43.2 37.425 42.752 36.61 41.464 36.61 C 40.212 36.61 38.961 37.496 38.961 39.504 C 38.961 41.594 40.271 42.61 41.535 42.61 C 42.775 42.61 43.307 41.783 43.59 41.145 C 43.673 41.063 43.838 41.098 43.885 41.181 C 43.814 41.842 43.555 42.492 43.413 42.669 C 43.295 42.692 43.177 42.728 43.07 42.752 C 42.858 42.822 42.173 42.988 41.535 42.988 C 40.567 42.988 39.728 42.787 39.02 42.326 C 38.228 41.807 37.626 40.909 37.626 39.622 C 37.626 38.476 38.134 37.579 38.866 37.024 C 39.587 36.469 40.579 36.185 41.571 36.185 C 42.126 36.185 42.811 36.28 43.271 36.398 C 43.389 36.433 43.46 36.433 43.543 36.457 C 43.566 36.705 43.59 37.284 43.685 38.016 Z M 48.881 39.705 C 48.385 39.705 48.349 39.728 48.349 39.988 L 48.349 41.429 C 48.349 42.468 48.432 42.492 48.904 42.551 L 49.2 42.586 C 49.271 42.657 49.259 42.834 49.176 42.87 C 48.668 42.846 48.219 42.846 47.794 42.846 C 47.357 42.846 46.92 42.858 46.542 42.87 C 46.46 42.834 46.46 42.657 46.519 42.586 L 46.661 42.563 C 47.121 42.492 47.216 42.468 47.216 41.429 L 47.216 37.78 C 47.216 36.74 47.133 36.705 46.661 36.646 L 46.448 36.61 C 46.377 36.563 46.389 36.362 46.472 36.327 C 46.909 36.351 47.369 36.351 47.794 36.351 C 48.231 36.351 48.668 36.339 49.046 36.327 C 49.129 36.362 49.129 36.563 49.07 36.61 L 48.904 36.646 C 48.444 36.729 48.349 36.729 48.349 37.78 L 48.349 38.972 C 48.349 39.244 48.385 39.268 48.881 39.268 L 51.172 39.268 C 51.668 39.268 51.703 39.244 51.703 38.972 L 51.703 37.78 C 51.703 36.74 51.621 36.705 51.148 36.646 L 50.936 36.61 C 50.865 36.563 50.877 36.362 50.959 36.327 C 51.408 36.351 51.857 36.351 52.282 36.351 C 52.719 36.351 53.156 36.339 53.546 36.327 C 53.628 36.362 53.628 36.563 53.569 36.61 L 53.392 36.646 C 52.932 36.729 52.837 36.729 52.837 37.78 L 52.837 41.429 C 52.837 42.468 52.92 42.504 53.392 42.563 L 53.605 42.586 C 53.676 42.657 53.664 42.834 53.581 42.87 C 53.144 42.846 52.707 42.846 52.27 42.846 C 51.821 42.846 51.373 42.858 50.948 42.87 C 50.865 42.834 50.865 42.657 50.924 42.586 L 51.137 42.563 C 51.597 42.504 51.692 42.48 51.692 41.429 L 51.692 39.988 C 51.692 39.728 51.668 39.705 51.16 39.705 Z M 55.046 40.519 C 54.857 40.519 54.845 40.531 54.845 40.649 C 54.845 41.535 55.459 42.244 56.321 42.244 C 56.711 42.244 57.041 42.114 57.266 41.748 C 57.36 41.724 57.467 41.819 57.478 41.901 C 57.148 42.681 56.415 42.976 55.825 42.976 C 54.691 42.976 53.935 42.137 53.935 41.015 C 53.935 39.905 54.691 38.842 56.002 38.842 C 56.723 38.842 57.478 39.315 57.478 40.165 C 57.478 40.248 57.467 40.307 57.431 40.39 C 57.372 40.472 57.148 40.519 56.758 40.519 Z M 55.943 40.13 C 56.227 40.13 56.356 40.106 56.427 40.059 C 56.486 40.023 56.522 39.941 56.522 39.858 C 56.522 39.504 56.297 39.22 55.872 39.22 C 55.211 39.22 54.916 39.858 54.916 40.059 C 54.916 40.094 54.939 40.13 55.057 40.13 Z M 61.293 41.594 C 61.258 42.161 61.411 42.456 61.765 42.456 C 61.931 42.456 62.072 42.35 62.096 42.35 C 62.143 42.35 62.214 42.456 62.179 42.551 C 61.978 42.822 61.506 42.988 61.198 42.988 C 60.95 42.988 60.679 42.917 60.49 42.716 C 60.419 42.645 60.384 42.598 60.336 42.598 C 60.289 42.598 60.218 42.645 60.077 42.74 C 59.888 42.858 59.592 43 59.238 43 C 58.577 43 58.234 42.539 58.234 42.043 C 58.234 41.689 58.376 41.37 59.049 41.134 C 59.392 41.015 59.769 40.874 60.124 40.744 C 60.325 40.673 60.348 40.59 60.348 40.484 L 60.36 40.224 C 60.384 39.728 60.242 39.291 59.758 39.291 C 59.486 39.291 59.273 39.433 59.238 39.728 C 59.214 39.917 59.155 40.012 59.049 40.083 C 58.907 40.165 58.636 40.26 58.423 40.26 C 58.293 40.26 58.234 40.189 58.234 40.106 C 58.234 39.988 58.293 39.787 58.612 39.48 C 58.919 39.197 59.628 38.866 60.124 38.866 C 60.903 38.866 61.376 39.232 61.34 40.094 Z M 60.325 41.263 C 60.325 41.157 60.301 41.098 60.242 41.098 C 60.159 41.098 59.982 41.145 59.805 41.216 C 59.533 41.311 59.273 41.452 59.273 41.878 C 59.273 42.137 59.451 42.444 59.829 42.444 C 60.183 42.444 60.289 42.208 60.301 41.972 Z M 63.005 37.461 C 63.005 36.799 62.994 36.74 62.746 36.587 L 62.639 36.516 C 62.58 36.481 62.568 36.315 62.639 36.292 C 63.017 36.185 63.537 35.973 63.927 35.819 C 63.986 35.807 64.045 35.843 64.068 35.902 C 64.045 36.292 64.033 36.906 64.033 37.319 L 64.033 41.665 C 64.033 42.385 64.068 42.504 64.411 42.551 L 64.623 42.574 C 64.694 42.645 64.682 42.822 64.6 42.858 C 64.198 42.834 63.867 42.834 63.501 42.834 C 63.183 42.834 62.84 42.846 62.438 42.858 C 62.356 42.822 62.356 42.645 62.415 42.574 L 62.616 42.551 C 62.946 42.504 62.994 42.397 62.994 41.665 Z M 66.891 39.409 C 66.714 39.409 66.702 39.433 66.702 39.74 L 66.702 41.252 C 66.702 41.866 66.785 42.421 67.422 42.421 C 67.623 42.421 67.741 42.35 67.895 42.244 C 67.977 42.256 68.036 42.326 68.025 42.444 C 67.824 42.716 67.375 42.988 66.773 42.988 C 65.84 42.988 65.674 42.444 65.674 41.76 L 65.674 39.764 C 65.674 39.421 65.651 39.409 65.497 39.409 L 65.155 39.409 C 65.06 39.362 65.037 39.209 65.119 39.15 C 65.45 39.02 65.674 38.89 65.899 38.736 C 66.088 38.594 66.3 38.394 66.442 38.122 C 66.525 38.063 66.666 38.087 66.714 38.169 L 66.714 38.76 C 66.714 38.913 66.714 38.949 66.903 38.949 L 67.871 38.949 C 67.93 38.972 67.954 39.055 67.954 39.15 C 67.942 39.268 67.906 39.35 67.824 39.409 Z M 70.186 39.138 C 70.186 39.256 70.209 39.303 70.268 39.303 C 70.611 39.043 71.036 38.831 71.52 38.831 C 72.359 38.831 72.772 39.374 72.772 40.201 L 72.772 41.665 C 72.772 42.385 72.808 42.504 73.15 42.551 L 73.374 42.574 C 73.457 42.645 73.457 42.822 73.351 42.858 C 72.937 42.834 72.607 42.834 72.241 42.834 C 71.922 42.834 71.579 42.846 71.237 42.858 C 71.154 42.822 71.154 42.645 71.213 42.574 L 71.355 42.551 C 71.686 42.504 71.733 42.385 71.733 41.653 L 71.733 40.271 C 71.733 39.799 71.532 39.409 70.953 39.409 C 70.635 39.409 70.398 39.563 70.28 39.693 C 70.174 39.811 70.162 39.953 70.162 40.342 L 70.162 41.653 C 70.162 42.374 70.198 42.492 70.54 42.551 L 70.682 42.574 C 70.753 42.645 70.741 42.822 70.658 42.858 C 70.316 42.834 69.985 42.834 69.619 42.834 C 69.3 42.834 68.969 42.846 68.556 42.858 C 68.473 42.822 68.473 42.645 68.532 42.574 L 68.745 42.551 C 69.076 42.504 69.123 42.397 69.123 41.665 L 69.123 37.461 C 69.123 36.799 69.099 36.74 68.898 36.61 L 68.757 36.528 C 68.698 36.492 68.686 36.327 68.757 36.303 C 69.135 36.197 69.642 35.985 70.044 35.831 C 70.103 35.819 70.162 35.855 70.186 35.914 C 70.162 36.303 70.162 36.917 70.162 37.331 Z M 15.176 34.272 C 15.046 33.776 14.81 33.304 14.479 32.89 C 14.207 32.548 13.888 32.217 13.463 31.839 C 13.192 31.591 12.896 31.355 12.613 31.131 C 12.518 31.06 12.436 30.989 12.341 30.906 C 11.219 29.997 9.944 29.135 8.527 28.344 C 7.759 27.918 6.873 27.517 5.751 27.08 L 5.728 27.08 C 5.716 27.08 5.704 27.08 5.692 27.092 C 5.681 27.104 5.669 27.115 5.669 27.139 L 5.669 28.403 L 4.169 30.044 C 4.157 30.056 4.157 30.068 4.157 30.08 L 4.157 31.745 L 2.669 32.064 C 2.645 32.064 2.622 32.087 2.622 32.111 L 2.622 42.787 C 2.622 42.811 2.645 42.834 2.669 42.834 L 15.187 42.834 C 15.211 42.834 15.235 42.811 15.235 42.787 L 15.235 34.922 C 15.258 34.733 15.235 34.508 15.176 34.272 Z M 5.787 28.509 C 8.704 29.595 11.125 30.871 13.168 32.418 C 13.581 32.725 13.924 33.008 14.207 33.28 C 14.408 33.469 14.55 33.623 14.715 33.812 C 14.739 33.847 14.75 33.871 14.762 33.894 C 14.833 34.048 14.869 34.154 14.916 34.355 C 14.963 34.556 14.987 34.756 14.987 34.945 L 14.987 35.099 C 14.939 35.052 14.857 34.981 14.774 34.898 C 14.739 34.863 14.715 34.839 14.691 34.827 C 14.455 34.603 14.207 34.378 13.924 34.178 C 13.569 33.93 13.192 33.717 12.873 33.528 C 12.211 33.162 11.479 32.784 10.629 32.394 C 8.822 31.556 7.275 30.977 5.775 30.576 C 5.787 30.576 5.787 28.509 5.787 28.509 Z M 14.987 42.374 L 14.75 42.362 C 14.125 42.326 13.487 42.291 12.849 42.279 C 12.53 42.267 12.2 42.267 11.892 42.256 C 11.621 42.244 11.361 42.244 11.089 42.232 L 10.759 42.22 C 10.475 42.208 10.204 42.208 9.908 42.196 C 9.814 42.196 9.719 42.196 9.625 42.185 C 9.519 42.185 9.424 42.173 9.318 42.173 L 9.046 42.173 C 8.739 42.173 8.444 42.161 8.137 42.149 C 7.582 42.126 6.991 42.114 6.425 42.114 L 5.799 42.102 L 5.799 40.921 C 6.921 40.933 8.066 40.992 9.176 41.051 C 9.637 41.075 10.097 41.098 10.546 41.122 C 11.066 41.145 11.574 41.169 12.093 41.204 C 12.365 41.216 12.648 41.24 12.92 41.252 C 13.664 41.287 14.384 41.37 14.998 41.441 C 14.987 41.441 14.987 42.374 14.987 42.374 Z M 14.987 41.145 C 13.451 40.874 11.751 40.744 10.097 40.626 L 9.412 40.579 L 9.153 40.555 L 8.231 40.484 C 7.476 40.437 6.649 40.413 5.799 40.39 L 5.799 39.102 C 6.755 39.138 7.865 39.197 8.846 39.315 C 8.964 39.327 9.07 39.338 9.188 39.35 C 9.271 39.362 9.353 39.362 9.448 39.374 L 10.097 39.445 C 11.763 39.622 13.487 39.811 15.01 40.189 C 14.987 40.177 14.987 41.145 14.987 41.145 Z M 14.987 39.338 L 14.987 39.87 C 13.369 39.338 11.456 39.079 9.613 38.831 L 9.495 38.819 L 9.247 38.783 C 9.129 38.772 9.011 38.76 8.881 38.736 C 7.877 38.571 6.708 38.5 5.787 38.453 L 5.787 37.165 C 6.732 37.236 7.57 37.319 8.279 37.425 C 8.538 37.461 8.798 37.508 9.058 37.555 L 9.483 37.626 C 10.712 37.827 11.916 38.028 13.038 38.299 C 13.44 38.394 13.841 38.512 14.136 38.606 C 14.42 38.689 14.703 38.795 14.987 38.902 Z M 14.987 38.606 C 14.597 38.406 14.172 38.252 13.676 38.075 C 12.755 37.744 11.751 37.532 10.771 37.319 C 10.499 37.26 10.227 37.213 9.967 37.154 C 9.838 37.13 9.696 37.095 9.566 37.071 L 9.318 37.024 C 8.999 36.965 8.668 36.894 8.338 36.835 C 7.511 36.681 6.59 36.587 5.799 36.504 L 5.799 35.217 C 6.755 35.323 7.606 35.441 8.338 35.595 C 8.645 35.654 8.94 35.725 9.235 35.796 L 9.566 35.866 L 9.601 35.878 C 9.991 35.961 10.393 36.055 10.782 36.15 C 11.94 36.445 13.144 36.764 14.195 37.213 C 14.502 37.343 14.762 37.473 15.01 37.602 Z M 14.987 37.331 C 13.806 36.54 12.353 36.091 10.841 35.654 C 10.251 35.488 9.625 35.323 8.999 35.17 C 8.905 35.146 8.822 35.122 8.727 35.099 C 8.609 35.075 8.491 35.04 8.373 35.016 C 7.606 34.839 6.708 34.685 5.787 34.567 L 5.787 33.28 C 7.346 33.504 8.94 33.882 10.818 34.473 C 11.952 34.827 13.144 35.24 14.207 35.819 C 14.491 35.973 14.774 36.162 14.987 36.315 Z M 13.227 35.028 C 12.554 34.685 11.798 34.367 10.924 34.036 C 9.271 33.41 7.546 32.938 5.787 32.642 L 5.787 31.343 C 6.743 31.556 7.523 31.768 8.22 32.005 C 9.105 32.3 9.873 32.583 10.57 32.867 C 11.337 33.186 12.081 33.493 12.79 33.847 C 13.416 34.166 14.136 34.556 14.774 35.063 C 14.833 35.111 14.88 35.146 14.916 35.17 C 14.951 35.193 14.975 35.217 14.998 35.24 L 14.998 36.103 C 14.479 35.725 13.9 35.359 13.227 35.028 Z\" fill=\"var(--token-919dc6f3-b150-4294-ba84-50f6d0db4294, rgba(0, 0, 0, 0.15)) /* {&quot;name&quot;:&quot;Border&quot;} */\"></path></svg>',svgContentId:698180367,withExternalLayout:!0}),\"h36RP8U_l-hover\"===_&&/*#__PURE__*/e(f.div,{className:\"framer-s450op\",layoutDependency:I,layoutId:\"GJHaAYQYV\",style:{backgroundColor:\"var(--token-5ed1cc28-c060-4755-a750-863980cab513, rgba(0, 0, 0, 0.75))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},transformTemplate:b,children:[/*#__PURE__*/C(L,{__fromCanvasComponent:!0,children:/*#__PURE__*/C(d.Fragment,{children:/*#__PURE__*/C(f.p,{style:{\"--font-selector\":\"R0Y7SGFua2VuIEdyb3Rlc2stNTAw\",\"--framer-font-family\":'\"Hanken Grotesk\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eaf80125-bf32-4d8e-9fcf-bcc499a289a4, rgb(249, 248, 245)))\"},children:\"MUSC\"})}),className:\"framer-yn1kut\",fonts:[\"GF;Hanken Grotesk-500\"],layoutDependency:I,layoutId:\"J4jv22qRR\",style:{\"--extracted-r6o4lv\":\"var(--token-eaf80125-bf32-4d8e-9fcf-bcc499a289a4, rgb(249, 248, 245))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0}),/*#__PURE__*/C(L,{__fromCanvasComponent:!0,children:/*#__PURE__*/C(d.Fragment,{children:/*#__PURE__*/C(f.p,{style:{\"--font-selector\":\"R0Y7SGFua2VuIEdyb3Rlc2stMzAw\",\"--framer-font-family\":'\"Hanken Grotesk\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eaf80125-bf32-4d8e-9fcf-bcc499a289a4, rgb(249, 248, 245)))\"},children:\"Healthcare\"})}),className:\"framer-1nb40a4\",fonts:[\"GF;Hanken Grotesk-300\"],layoutDependency:I,layoutId:\"JODokE14H\",style:{\"--extracted-r6o4lv\":\"var(--token-eaf80125-bf32-4d8e-9fcf-bcc499a289a4, rgb(249, 248, 245))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:!0})]})]})})})})});}),R=['.framer-uMiAL [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uMiAL .framer-jcp8bs { display: block; }\",\".framer-uMiAL .framer-7xz1v7 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 117px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 91px; }\",\".framer-uMiAL .framer-sqo1m6 { flex: none; height: 77px; position: relative; width: 77px; }\",\".framer-uMiAL .framer-s450op { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 4px 6px 4px 6px; position: absolute; top: -27%; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-uMiAL .framer-yn1kut, .framer-uMiAL .framer-1nb40a4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uMiAL .framer-7xz1v7, .framer-uMiAL .framer-s450op { gap: 0px; } .framer-uMiAL .framer-7xz1v7 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-uMiAL .framer-7xz1v7 > :first-child { margin-left: 0px; } .framer-uMiAL .framer-7xz1v7 > :last-child { margin-right: 0px; } .framer-uMiAL .framer-s450op > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-uMiAL .framer-s450op > :first-child { margin-top: 0px; } .framer-uMiAL .framer-s450op > :last-child { margin-bottom: 0px; } }\",\".framer-uMiAL.framer-v-7xz1v7.hover .framer-7xz1v7 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 91px); }\"],z=l(A,R,\"framer-uMiAL\");export default z;z.displayName=\"Stack / MUSC\",z.defaultProps={height:91,width:91},r(z,[{family:\"Hanken Grotesk\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/XIg4Y6WLs:default\",url:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcgWZa4fpNzXhRKA.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcgWZa4fpNzXhRKA.ttf\",weight:\"500\"},{family:\"Hanken Grotesk\",moduleAsset:{localModuleIdentifier:\"local-module:canvasComponent/XIg4Y6WLs:default\",url:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Nc7WZa4fpNzXhRKA.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Nc7WZa4fpNzXhRKA.ttf\",weight:\"300\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXIg4Y6WLs\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"91\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"91\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tK_6PHR7G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XIg4Y6WLs.map", "\nexport const __FramerMetadata__ = {\"exports\":{\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f4b44ab)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./yeV8H9zVk-0.js\";const enabledGestures={G_Sr9cnWo:{hover:true}};const cycleOrder=[\"G_Sr9cnWo\"];const serializationHash=\"framer-AqO6O\";const variantClassNames={G_Sr9cnWo:\"framer-v-1w38ac7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const valuesByLocaleId={sqKeqj321:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transformTemplate=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({height,id,link,width,...props})=>{return{...props,AcBiVfzhf:link!==null&&link!==void 0?link:props.AcBiVfzhf};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,AcBiVfzhf,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"G_Sr9cnWo\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"G_Sr9cnWo-hover\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-AqO6O\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:AcBiVfzhf,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(\"framer-1w38ac7\",className)} framer-5g32ie`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"G_Sr9cnWo\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"G_Sr9cnWo-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-156r48e\",\"data-framer-name\":\"nio_4_svg_fuk_\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"VdZuUBP9V\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 92 14\"><path d=\"M 37.948 0.977 C 32.768 0.977 28.554 3.898 28.554 7.488 C 28.554 11.079 32.769 14 37.95 14 C 43.13 14 47.343 11.079 47.343 7.488 C 47.343 3.898 43.129 0.977 37.948 0.977 Z M 37.969 10.9 C 35.284 10.9 33.107 9.373 33.107 7.489 C 33.107 5.605 35.284 4.078 37.969 4.078 C 40.654 4.078 42.831 5.605 42.831 7.489 C 42.828 9.372 40.653 10.898 37.969 10.9 Z M 21.481 2.339 L 21.481 13.638 L 25.877 13.638 L 25.877 1.296 L 22.97 1.296 C 22.713 1.296 22.53 1.296 22.333 1.341 C 21.955 1.422 21.66 1.629 21.544 1.894 C 21.485 2.032 21.481 2.16 21.481 2.339 Z M -0 1.296 L -0 13.64 L 2.919 13.64 C 3.176 13.64 3.359 13.637 3.556 13.596 C 3.934 13.515 4.229 13.307 4.345 13.043 C 4.405 12.904 4.408 12.777 4.408 12.595 L 4.408 6.058 L 13.116 13.022 C 13.388 13.239 13.613 13.407 13.967 13.52 C 14.32 13.632 14.649 13.64 15.061 13.64 L 18.268 13.64 L 18.268 1.296 L 15.349 1.296 C 15.092 1.296 14.909 1.296 14.712 1.341 C 14.334 1.422 14.039 1.629 13.923 1.894 C 13.864 2.032 13.86 2.16 13.86 2.341 L 13.86 8.878 L 5.152 1.914 C 4.88 1.697 4.651 1.529 4.301 1.417 C 3.951 1.304 3.619 1.296 3.207 1.296 Z M 55.177 8.355 L 55.177 7.272 L 61.599 7.272 L 61.599 8.355 Z M 63.534 7.5 C 63.395 7.5 63.111 7.601 62.739 7.861 C 62.367 8.121 62.223 8.322 62.225 8.419 L 65.342 10.606 C 65.481 10.606 65.766 10.506 66.138 10.246 C 66.51 9.986 66.654 9.785 66.652 9.687 Z M 66.146 2.25 L 71.243 2.25 L 71.243 1.228 C 71.242 1.052 71.039 0.909 70.788 0.909 L 66.146 0.909 L 66.146 0 L 64.101 0 L 64.101 0.909 L 58.811 0.909 L 58.811 0 L 56.765 0 L 56.765 0.909 L 52.209 0.909 C 51.958 0.909 51.754 1.052 51.754 1.228 L 51.754 2.251 L 56.767 2.251 L 56.767 3.037 C 56.874 3.114 57.208 3.191 57.79 3.191 C 58.372 3.191 58.705 3.114 58.813 3.037 L 58.813 2.251 L 64.103 2.251 L 64.103 3.037 C 64.21 3.114 64.544 3.191 65.126 3.191 C 65.708 3.191 66.041 3.114 66.149 3.037 Z M 61.952 3.608 L 61.952 6.549 L 54.349 6.549 L 54.349 7.351 C 54.349 9.077 54.01 11.558 52.358 13.625 C 52.215 13.653 51.881 13.605 51.394 13.407 C 50.907 13.209 50.677 13.031 50.643 12.93 C 51.85 11.414 52.435 9.593 52.435 7.266 L 52.435 3.61 Z M 60.241 4.691 L 54.349 4.691 L 54.349 5.466 L 60.241 5.466 Z M 56.223 13.915 L 57.69 13.915 C 58.264 13.915 58.701 13.801 58.998 13.576 C 59.444 13.239 59.401 12.779 59.398 12.763 L 59.398 10.202 L 62.373 10.202 L 62.373 9.118 L 54.632 9.118 L 54.632 10.202 L 57.606 10.202 L 57.606 12.426 C 57.607 12.503 57.569 12.577 57.5 12.636 C 57.431 12.682 57.337 12.706 57.242 12.702 L 56.217 12.702 C 56.123 12.766 56.031 12.964 56.031 13.309 C 56.031 13.653 56.123 13.851 56.217 13.915 Z M 67.232 13.915 C 67.883 13.915 68.385 13.785 68.726 13.53 C 69.235 13.149 69.192 12.629 69.191 12.611 L 69.191 6.552 L 71.246 6.552 L 71.246 5.538 C 71.245 5.362 71.042 5.219 70.791 5.218 L 69.191 5.218 L 69.191 3.247 L 67.144 3.247 L 67.144 5.218 L 63.099 5.218 L 63.099 6.552 L 67.144 6.552 L 67.144 12.226 C 67.144 12.316 67.1 12.403 67.018 12.472 C 66.936 12.526 66.826 12.555 66.713 12.55 L 64.276 12.55 C 64.172 12.622 64.067 12.844 64.067 13.232 C 64.067 13.62 64.172 13.843 64.276 13.915 Z M 53.653 12.183 C 53.653 12.269 53.779 12.446 54.11 12.678 C 54.44 12.91 54.692 12.999 54.816 12.998 L 57.211 11.317 C 57.211 11.231 57.085 11.054 56.755 10.822 C 56.424 10.59 56.172 10.501 56.049 10.502 Z M 60.954 10.502 C 60.83 10.502 60.578 10.59 60.248 10.822 C 59.917 11.054 59.79 11.231 59.792 11.317 L 62.185 13 C 62.309 13 62.561 12.912 62.891 12.68 C 63.22 12.448 63.349 12.271 63.347 12.185 Z M 80.282 4.945 C 80.282 5.042 80.138 5.242 79.768 5.503 C 79.397 5.764 79.11 5.865 78.971 5.864 L 75.854 3.677 C 75.854 3.579 75.997 3.379 76.368 3.118 C 76.739 2.857 77.025 2.756 77.164 2.758 Z M 84.7 4.945 C 84.7 5.042 84.843 5.241 85.214 5.503 C 85.585 5.764 85.871 5.865 86.01 5.864 L 89.124 3.677 C 89.124 3.579 88.981 3.379 88.61 3.118 C 88.24 2.857 87.954 2.756 87.814 2.758 Z M 83.549 8.817 L 89.972 13.508 C 90.121 13.513 90.428 13.414 90.838 13.146 C 91.248 12.878 91.412 12.669 91.412 12.565 L 84.808 7.884 L 92 7.884 L 92 6.871 C 92 6.695 91.797 6.552 91.546 6.552 L 83.546 6.552 L 83.546 2.251 L 90.981 2.251 L 90.981 1.229 C 90.981 1.144 90.933 1.063 90.848 1.003 C 90.763 0.943 90.647 0.909 90.526 0.909 L 83.545 0.909 L 83.545 0 L 81.433 0 L 81.433 0.909 L 74.452 0.909 C 74.331 0.909 74.216 0.943 74.13 1.002 C 74.045 1.062 73.997 1.143 73.997 1.228 L 73.997 2.251 L 81.433 2.251 L 81.433 6.552 L 72.975 6.552 L 72.975 7.565 C 72.975 7.742 73.179 7.886 73.432 7.886 L 80.17 7.886 L 73.57 12.567 C 73.57 12.671 73.736 12.88 74.143 13.148 C 74.55 13.416 74.86 13.515 75.009 13.51 L 81.432 8.819 L 81.432 13.841 L 81.472 13.864 C 81.495 13.878 81.724 14 82.505 14 C 83.255 14 83.483 13.878 83.508 13.864 L 83.548 13.841 Z\" fill=\"var(--token-919dc6f3-b150-4294-ba84-50f6d0db4294, rgba(0, 0, 0, 0.15)) /* {&quot;name&quot;:&quot;Border&quot;} */\"></path></svg>',svgContentId:2813888224,withExternalLayout:true,...addPropertyOverrides({\"G_Sr9cnWo-hover\":{svgContentId:2076825363}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-eds6xt\",layoutDependency:layoutDependency,layoutId:\"O8GTaGGEn\",style:{backgroundColor:\"var(--token-5ed1cc28-c060-4755-a750-863980cab513, rgba(0, 0, 0, 0.75))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},transformTemplate:transformTemplate,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGFua2VuIEdyb3Rlc2stNTAw\",\"--framer-font-family\":'\"Hanken Grotesk\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eaf80125-bf32-4d8e-9fcf-bcc499a289a4, rgb(249, 248, 245)))\"},children:\"NIO\"})}),className:\"framer-1mohvxb\",fonts:[\"GF;Hanken Grotesk-500\"],layoutDependency:layoutDependency,layoutId:\"edWBQdkF9\",style:{\"--extracted-r6o4lv\":\"var(--token-eaf80125-bf32-4d8e-9fcf-bcc499a289a4, rgb(249, 248, 245))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SGFua2VuIEdyb3Rlc2stMzAw\",\"--framer-font-family\":'\"Hanken Grotesk\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eaf80125-bf32-4d8e-9fcf-bcc499a289a4, rgb(249, 248, 245)))\"},children:\"Automotive\"})}),className:\"framer-6l35gb\",fonts:[\"GF;Hanken Grotesk-300\"],layoutDependency:layoutDependency,layoutId:\"eHqoU_qMy\",style:{\"--extracted-r6o4lv\":\"var(--token-eaf80125-bf32-4d8e-9fcf-bcc499a289a4, rgb(249, 248, 245))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=['.framer-AqO6O [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AqO6O .framer-5g32ie { display: block; }\",\".framer-AqO6O .framer-1w38ac7 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 60px; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 60px; }\",\".framer-AqO6O .framer-156r48e { flex: none; height: 14px; position: relative; width: 92px; }\",\".framer-AqO6O .framer-eds6xt { align-content: start; align-items: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 4px 6px 4px 6px; position: absolute; top: -27%; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-AqO6O .framer-1mohvxb, .framer-AqO6O .framer-6l35gb { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AqO6O .framer-1w38ac7, .framer-AqO6O .framer-eds6xt { gap: 0px; } .framer-AqO6O .framer-1w38ac7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-AqO6O .framer-1w38ac7 > :first-child, .framer-AqO6O .framer-eds6xt > :first-child { margin-top: 0px; } .framer-AqO6O .framer-1w38ac7 > :last-child, .framer-AqO6O .framer-eds6xt > :last-child { margin-bottom: 0px; } .framer-AqO6O .framer-eds6xt > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } }\",\".framer-AqO6O.framer-v-1w38ac7.hover .framer-1w38ac7 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 60px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 60\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"oaotSWED1\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"AcBiVfzhf\":\"link\"}\n * @framerImmutableVariables true\n */const FrameryeV8H9zVk=withCSS(Component,css,\"framer-AqO6O\");export default FrameryeV8H9zVk;FrameryeV8H9zVk.displayName=\"Stack / NIO\";FrameryeV8H9zVk.defaultProps={height:60,width:60};addPropertyControls(FrameryeV8H9zVk,{AcBiVfzhf:{title:\"Link\",type:ControlType.Link}});addFonts(FrameryeV8H9zVk,[{family:\"Hanken Grotesk\",style:\"normal\",url:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_NcgWZa5PpNzXhRKA.woff2\",weight:\"500\"},{family:\"Hanken Grotesk\",style:\"normal\",url:\"https://fonts.gstatic.com/s/hankengrotesk/v8/ieVq2YZDLWuGJpnzaiwFXS9tYvBRzyFLlZg_f_Nc7WZa5PpNzXhRKA.woff2\",weight:\"300\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryeV8H9zVk\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"AcBiVfzhf\\\":\\\"link\\\"}\",\"framerIntrinsicWidth\":\"60\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"60\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oaotSWED1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yeV8H9zVk.map", "\nexport const __FramerMetadata__ = {\"exports\":{\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["init_shims", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "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", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "ref5", "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", "init_shims", "init_shims", "x", "v", "y", "b", "t", "r", "k", "H", "M", "r", "t", "re", "MotionConfigContext", "o", "se", "p", "R", "a", "n", "S", "Z", "Y", "useLocaleInfo", "m", "u", "C", "w", "L", "j", "q", "A", "z", "F", "N", "useVariantState", "v", "x", "k", "y", "T", "B", "pe", "E", "ae", "LayoutGroup", "motion", "cx", "Link", "b", "SVG", "RichText", "withCSS", "dFy56Jc6K_default", "addPropertyControls", "ControlType", "addFonts", "init_shims", "init_shims", "u", "v", "y", "b", "r", "w", "R", "L", "r", "a", "t", "re", "MotionConfigContext", "o", "n", "se", "p", "P", "S", "F", "Y", "useLocaleInfo", "C", "h", "x", "k", "N", "Z", "E", "U", "z", "X", "q", "useVariantState", "v", "u", "w", "y", "T", "G", "pe", "A", "ae", "LayoutGroup", "motion", "cx", "Link", "b", "RichText", "SVG", "withCSS", "FgAiqjJES_default", "addPropertyControls", "ControlType", "addFonts", "init_shims", "init_shims", "g", "h", "L", "M", "t", "r", "v", "w", "k", "r", "t", "re", "MotionConfigContext", "o", "n", "se", "p", "C", "a", "q", "T", "Y", "s", "m", "useLocaleInfo", "u", "x", "b", "y", "Z", "z", "R", "N", "F", "G", "_", "useVariantState", "h", "g", "v", "L", "A", "I", "pe", "S", "ae", "LayoutGroup", "motion", "cx", "Link", "M", "SVG", "RichText", "withCSS", "wLMPckxzy_default", "addFonts", "init_shims", "init_shims", "c", "u", "M", "g", "C", "e", "r", "x", "b", "C", "e", "y", "t", "re", "MotionConfigContext", "a", "L", "se", "p", "w", "r", "k", "A", "Y", "l", "m", "useLocaleInfo", "h", "Z", "v", "R", "z", "_", "N", "G", "F", "useVariantState", "u", "c", "x", "M", "I", "q", "pe", "H", "ae", "LayoutGroup", "motion", "cx", "Link", "g", "SVG", "RichText", "withCSS", "XIg4Y6WLs_default", "addFonts", "init_shims", "init_shims", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "transformTemplate", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "link", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "AcBiVfzhf", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "enabledGestures", "transitions", "variantClassNames", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "Link", "u", "addPropertyOverrides", "SVG", "RichText", "x", "css", "FrameryeV8H9zVk", "withCSS", "yeV8H9zVk_default", "addPropertyControls", "ControlType", "addFonts"]
}
