{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js", "ssg:https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/534oB9Tn5cZB6VZbkWLJ/Video.js", "ssg:https://framerusercontent.com/modules/e02fXWE6IMZgxQIJwsuN/Cz87z8cd65sCLS3yVSEO/xko2nLBUP.js", "ssg:https://framerusercontent.com/modules/jTENJsu7IXSPLIPdx4et/ca5YNoAzXFhVutlOS7oA/sbxuIw12y-0.js", "ssg:https://framerusercontent.com/modules/jTENJsu7IXSPLIPdx4et/ca5YNoAzXFhVutlOS7oA/sbxuIw12y.js", "ssg:https://framerusercontent.com/modules/zgyUa4bhKT1m2tdMGFDg/B34vxYrwEGUlySRJPjxA/Y0tEvL_zz.js"],
  "sourcesContent": ["import{MotionValue}from\"framer\";// Basic MotionValue check\nexport const isMotionValue=v=>v instanceof MotionValue;\nexport const __FramerMetadata__ = {\"exports\":{\"isMotionValue\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./isMotionValue.map", "import{useCallback,useEffect,useRef}from\"react\";import{motionValue,animate,RenderTarget}from\"framer\";import{isMotionValue}from\"https://framerusercontent.com/modules/3mKFSGQqKHV82uOV1eBc/TbXI1XaZFNevVKcgIt7G/isMotionValue.js\";import{useConstant}from\"https://framerusercontent.com/modules/ExNgrA7EJTKUPpH6vIlN/eiOrSJ2Ab5M9jPCvVwUz/useConstant.js\";export function useAutoMotionValue(inputValue,options){// Put options on a local ref\n// Might wanna just memo instead but it works for now\nconst optionsRef=useRef(options);const animation=useRef();const didInitialMount=useRef(false);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;// in-progress - trying to figure out effect hooks\nconst onChangeDeps=(options===null||options===void 0?void 0:options.onChangeDeps)?options.onChangeDeps:[];// Memoize the onChange handler\nconst onChange=useCallback(options===null||options===void 0?void 0:options.onChange,[...onChangeDeps,]);// Optionally scale the value from props\nconst transformer=useCallback(value=>{var ref;return((ref=optionsRef.current)===null||ref===void 0?void 0:ref.transform)?optionsRef.current.transform(value):value;},[]);// Create new MotionValue from inputValue\nconst value1=useConstant(()=>isMotionValue(inputValue)?inputValue:motionValue(transformer(inputValue)));// Setting value from prop change\nuseEffect(()=>{if(!isMotionValue(inputValue)&&didInitialMount.current){var ref,ref1;const newValue=transformer(inputValue);(ref=animation.current)===null||ref===void 0?void 0:ref.stop();// Call change callback\nif(onChange)onChange(newValue,value1);// Trigger animation to new value\nif(((ref1=optionsRef.current)===null||ref1===void 0?void 0:ref1.animate)&&!isOnCanvas){var ref2;// @ts-ignore\nanimation.current=animate(value1,newValue,(ref2=optionsRef.current)===null||ref2===void 0?void 0:ref2.transition);}else{value1.set(newValue);}}didInitialMount.current=true;},[inputValue,...onChangeDeps]);return value1;}\nexport const __FramerMetadata__ = {\"exports\":{\"useAutoMotionValue\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useAutoMotionValue.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useRef,useEffect,useMemo,useCallback,memo}from\"react\";import{ControlType,addPropertyControls,useIsInCurrentNavigationTarget}from\"framer\";import{useOnEnter,useOnExit,defaultEvents,useIsOnCanvas,useIsBrowserSafari,useOnChange,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useAutoMotionValue}from\"https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export function Video(props){const newProps=getProps(props);return /*#__PURE__*/ _jsx(VideoMemo,{...newProps});}const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing,canvasPlay,muted,playsinline,controls,progress,objectFit,backgroundColor,radius,topLeft,topRight,bottomRight,bottomLeft,isMixed,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,restartOnEnter,posterEnabled,startTime:startTimeProp,volume,loop}=props;const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const videoRef=useRef();const isSafari=useIsBrowserSafari();const requestingPlay=useRef(false);const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const shouldPlay=!isOnCanvas||canvasPlay;const autoPlay=useMemo(()=>playing,[]);const isMuted=useMemo(()=>isOnCanvas?true:muted,[isOnCanvas,muted]);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{}) // It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);// Pause/play via props\nuseEffect(()=>{if(playing&&shouldPlay)play();else pause();},[playing,canvasPlay]);// Change progress via prop\nuseEffect(()=>{setProgress(startTime*.01);},[startTimeProp,srcFile,srcUrl]);const videoProgress=useAutoMotionValue(progress,{transform:value=>value*.01,onChange:newValue=>{setProgress(newValue);}});// Allow scrubbing with MotionValue\nuseOnChange(videoProgress,val=>{if(isOnCanvas)return;setProgress(val);});// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{if(srcType===SrcType.Url)return srcUrl;if(srcType===SrcType.Video)return srcFile;},[srcType,srcFile,srcUrl]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoPlay){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=volume/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(videoRef.current&&videoRef.current.currentTime<.3)setProgress(startTime*.01);if(shouldPlay&&videoRef.current&&autoPlay)play();};return /*#__PURE__*/ _jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay:autoPlay&&shouldPlay,poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isMuted,playsInline:playsinline,style:{width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,autoPlay:true,canvasPlay:false,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For Youtube, use the Youtube component.\"},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,]},canvasPlay:{type:ControlType.Boolean,title:\"On Canvas\",enabledTitle:\"Play\",disabledTitle:\"Pause\",hidden(props){return props.autoPlay===false;}},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;DM Sans-regular\"]);export const fonts=[{family:\"DM Sans\",moduleAsset:{localModuleIdentifier:\"local-module:css/xko2nLBUP:default\",url:\"https://fonts.gstatic.com/s/dmsans/v11/rP2Hp2ywxg089UriOZSCHBeHFl0.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v11/rP2Hp2ywxg089UriOZSCHBeHFl0.ttf\",weight:\"400\"}];export const css=['.framer-FEIGu .framer-styles-preset-kqfjqf:not(.rich-text-wrapper), .framer-FEIGu .framer-styles-preset-kqfjqf.rich-text-wrapper p, .framer-FEIGu .framer-styles-preset-kqfjqf.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"DM Sans\", \"DM Sans Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 1.5em; --framer-paragraph-spacing: 18px; --framer-text-alignment: start; --framer-text-color: var(--token-bfeed5aa-e3cf-4b52-8224-ef4261885649, #141719); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-FEIGu\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35726263-c10d-4d50-a294-e8d65d9403da, rgb(141, 141, 141)))\"},children:\"4.6/5 (1613 reviews)\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35726263-c10d-4d50-a294-e8d65d9403da, rgb(141, 141, 141)))\"},children:\"4.6/5 (1613 reviews)\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35726263-c10d-4d50-a294-e8d65d9403da, rgb(141, 141, 141)))\"},children:\"4.6/5 (1613 reviews)\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35726263-c10d-4d50-a294-e8d65d9403da, rgb(141, 141, 141)))\"},children:\"4.6/5 (1613 reviews)\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35726263-c10d-4d50-a294-e8d65d9403da, rgb(141, 141, 141)))\"},children:\"4.6/5 (1613 reviews)\"})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35726263-c10d-4d50-a294-e8d65d9403da, rgb(141, 141, 141)))\"},children:\"4.6/5 (1613 reviews)\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b74823f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/e02fXWE6IMZgxQIJwsuN/Cz87z8cd65sCLS3yVSEO/xko2nLBUP.js\";import*as localizedValues from\"./sbxuIw12y-0.js\";const cycleOrder=[\"WGa9U_fa5\",\"ua0LIGRxX\"];const serializationHash=\"framer-es8Vi\";const variantClassNames={ua0LIGRxX:\"framer-v-jxj1aa\",WGa9U_fa5:\"framer-v-1x51dsf\"};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={UJeaHYtAQ: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 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 humanReadableVariantMap={Desktop:\"WGa9U_fa5\",Mobile:\"ua0LIGRxX\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WGa9U_fa5\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"WGa9U_fa5\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1x51dsf\",className,classNames),\"data-framer-name\":\"Desktop\",initial:variant,layoutDependency:layoutDependency,layoutId:\"WGa9U_fa5\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({ua0LIGRxX:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dcz7u2\",\"data-framer-name\":\"Quote\",layoutDependency:layoutDependency,layoutId:\"bvGNyzjEi\",style:{backgroundColor:\"var(--token-b441c38c-8b27-4b74-b61d-46f9cfba9c91, rgb(244, 243, 255))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-kqfjqf\",\"data-styles-preset\":\"xko2nLBUP\",style:{\"--framer-text-alignment\":\"center\"},children:'\"Unique location within the heart of hip F\\'hain.\"'})}),className:\"framer-xd15gw\",\"data-framer-name\":\"\u201EDas Ambiente war au\\xdfergew\\xf6hnlich gut, wie auch der Rest.\u201C\",layoutDependency:layoutDependency,layoutId:\"vHl2Ps9P_\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-4vho2t\",\"data-framer-name\":\"Google_2015_logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:74,layoutDependency:layoutDependency,layoutId:\"JAEbt2c7c\",svg:'<svg width=\"74\" height=\"24\" viewBox=\"0 0 74 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.7301 18.6274C29.0451 18.6274 31.7463 16.083 31.7463 12.6301C31.7463 9.15287 29.0451 6.63281 25.7301 6.63281C22.4151 6.63281 19.7139 9.15287 19.7139 12.6301C19.7139 16.083 22.4151 18.6274 25.7301 18.6274ZM25.7301 8.99609C27.5471 8.99609 29.1127 10.4724 29.1127 12.6302C29.1127 14.7636 27.5471 16.2642 25.7301 16.2642C23.9131 16.2642 22.3475 14.7663 22.3475 12.6302C22.3475 10.4724 23.9131 8.99609 25.7301 8.99609Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M38.7089 18.6274C42.0239 18.6274 44.7251 16.083 44.7251 12.6301C44.7251 9.15287 42.0239 6.63281 38.7089 6.63281C35.3938 6.63281 32.6926 9.15557 32.6926 12.6301C32.6926 16.083 35.3938 18.6274 38.7089 18.6274ZM38.7088 8.99609C40.5259 8.99609 42.0914 10.4724 42.0914 12.6302C42.0914 14.7636 40.5259 16.2642 38.7088 16.2642C36.8918 16.2642 35.3262 14.7663 35.3262 12.6302C35.3262 10.4724 36.8918 8.99609 38.7088 8.99609Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M57.1631 17.7621V6.99784H54.662V7.97396H54.57C53.9779 7.26823 52.8422 6.63281 51.4118 6.63281C48.4132 6.63281 45.666 9.26643 45.666 12.6517C45.666 16.0127 48.4132 18.6247 51.4118 18.6247C52.8449 18.6247 53.9806 17.9893 54.57 17.2619H54.662V18.1245C54.662 20.4201 53.4371 21.6396 51.4605 21.6396C49.849 21.6396 48.8485 20.4877 48.4402 19.5116L46.1473 20.4661C46.8071 22.056 48.5565 24.0001 51.4632 24.0001C54.5511 24.0001 57.1631 22.1912 57.1631 17.7621ZM51.6471 8.99609C53.4398 8.99609 54.8485 10.54 54.8485 12.6518C54.8485 14.7419 53.4398 16.2642 51.6471 16.2642C49.8301 16.2642 48.3078 14.7419 48.3078 12.6518C48.3078 10.54 49.8301 8.99609 51.6471 8.99609Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M61.2867 0.684082V18.2596H58.718V0.684082H61.2867Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M73.3408 15.9665L71.2966 14.6037C70.6152 15.6042 69.6851 16.264 68.3439 16.264C67.0055 16.264 66.051 15.6502 65.4372 14.4469L73.4543 11.1265L73.1812 10.4451C72.6837 9.10667 71.1614 6.62988 68.0492 6.62988C64.9586 6.62988 62.3926 9.06071 62.3926 12.6272C62.3926 15.9909 64.937 18.6245 68.3439 18.6245C71.0911 18.6245 72.681 16.9426 73.3408 15.9665ZM70.3637 10.2206L65.0046 12.446C64.937 10.1314 66.8 8.9498 68.1384 8.9498C69.1821 8.9498 70.069 9.47166 70.3637 10.2206Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.99057 11.0699V8.52546H18.5647C18.6485 8.96891 18.6918 9.49347 18.6918 10.0613C18.6918 11.9703 18.1699 14.3308 16.4881 16.0126C14.8522 17.7161 12.7621 18.6246 9.99328 18.6246C4.86123 18.6246 0.545776 14.4443 0.545776 9.3123C0.545776 4.18026 4.86123 0 9.99328 0C12.8324 0 14.8549 1.11402 16.3745 2.56602L14.5791 4.36142C13.4894 3.33934 12.0131 2.54439 9.99057 2.54439C6.24294 2.54439 3.31189 5.56467 3.31189 9.3123C3.31189 13.0599 6.24294 16.0802 9.99057 16.0802C12.4214 16.0802 13.8058 15.1041 14.6927 14.2172C15.4119 13.498 15.8851 12.4705 16.0717 11.0671L9.99057 11.0699Z\" fill=\"#141719\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35726263-c10d-4d50-a294-e8d65d9403da, rgb(141, 141, 141)))\"},children:\"4,6/5 (1613 Rezensionen)\"})}),className:\"framer-6f1ymi\",\"data-framer-name\":\"4,2/5 (806 Rezensionen)\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"f_56MlTjD\",style:{\"--extracted-r6o4lv\":\"var(--token-35726263-c10d-4d50-a294-e8d65d9403da, rgb(141, 141, 141))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ua0LIGRxX:{children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35726263-c10d-4d50-a294-e8d65d9403da, rgb(141, 141, 141)))\"},children:\"4,6/5 (1613 Rezensionen)\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-acwxjw\",\"data-framer-name\":\"Quote\",layoutDependency:layoutDependency,layoutId:\"PiS7_gSoq\",style:{backgroundColor:\"var(--token-223a0a99-8ea5-4b4a-8f18-972931b0948c, rgb(249, 239, 239))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-kqfjqf\",\"data-styles-preset\":\"xko2nLBUP\",style:{\"--framer-text-alignment\":\"center\"},children:'\"I love sitting out in the garden. The vegan platter is super filling and tasty!\"'})}),className:\"framer-1ok3mlm\",\"data-framer-name\":\"\u201EDas Ambiente war au\\xdfergew\\xf6hnlich gut, wie auch der Rest.\u201C\",layoutDependency:layoutDependency,layoutId:\"MaIuOJLHN\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-kzkpk8\",\"data-framer-name\":\"Google_2015_logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:74,layoutDependency:layoutDependency,layoutId:\"unaZs6dr5\",svg:'<svg width=\"74\" height=\"24\" viewBox=\"0 0 74 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.7301 18.6274C29.0451 18.6274 31.7463 16.083 31.7463 12.6301C31.7463 9.15287 29.0451 6.63281 25.7301 6.63281C22.4151 6.63281 19.7139 9.15287 19.7139 12.6301C19.7139 16.083 22.4151 18.6274 25.7301 18.6274ZM25.7301 8.99609C27.5471 8.99609 29.1127 10.4724 29.1127 12.6302C29.1127 14.7636 27.5471 16.2642 25.7301 16.2642C23.9131 16.2642 22.3475 14.7663 22.3475 12.6302C22.3475 10.4724 23.9131 8.99609 25.7301 8.99609Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M38.7089 18.6274C42.0239 18.6274 44.7251 16.083 44.7251 12.6301C44.7251 9.15287 42.0239 6.63281 38.7089 6.63281C35.3938 6.63281 32.6926 9.15557 32.6926 12.6301C32.6926 16.083 35.3938 18.6274 38.7089 18.6274ZM38.7088 8.99609C40.5259 8.99609 42.0914 10.4724 42.0914 12.6302C42.0914 14.7636 40.5259 16.2642 38.7088 16.2642C36.8918 16.2642 35.3262 14.7663 35.3262 12.6302C35.3262 10.4724 36.8918 8.99609 38.7088 8.99609Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M57.1631 17.7621V6.99784H54.662V7.97396H54.57C53.9779 7.26823 52.8422 6.63281 51.4118 6.63281C48.4132 6.63281 45.666 9.26643 45.666 12.6517C45.666 16.0127 48.4132 18.6247 51.4118 18.6247C52.8449 18.6247 53.9806 17.9893 54.57 17.2619H54.662V18.1245C54.662 20.4201 53.4371 21.6396 51.4605 21.6396C49.849 21.6396 48.8485 20.4877 48.4402 19.5116L46.1473 20.4661C46.8071 22.056 48.5565 24.0001 51.4632 24.0001C54.5511 24.0001 57.1631 22.1912 57.1631 17.7621ZM51.6471 8.99609C53.4398 8.99609 54.8485 10.54 54.8485 12.6518C54.8485 14.7419 53.4398 16.2642 51.6471 16.2642C49.8301 16.2642 48.3078 14.7419 48.3078 12.6518C48.3078 10.54 49.8301 8.99609 51.6471 8.99609Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M61.2867 0.684082V18.2596H58.718V0.684082H61.2867Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M73.3408 15.9665L71.2966 14.6037C70.6152 15.6042 69.6851 16.264 68.3439 16.264C67.0055 16.264 66.051 15.6502 65.4372 14.4469L73.4543 11.1265L73.1812 10.4451C72.6837 9.10667 71.1614 6.62988 68.0492 6.62988C64.9586 6.62988 62.3926 9.06071 62.3926 12.6272C62.3926 15.9909 64.937 18.6245 68.3439 18.6245C71.0911 18.6245 72.681 16.9426 73.3408 15.9665ZM70.3637 10.2206L65.0046 12.446C64.937 10.1314 66.8 8.9498 68.1384 8.9498C69.1821 8.9498 70.069 9.47166 70.3637 10.2206Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.99057 11.0699V8.52546H18.5647C18.6485 8.96891 18.6918 9.49347 18.6918 10.0613C18.6918 11.9703 18.1699 14.3308 16.4881 16.0126C14.8522 17.7161 12.7621 18.6246 9.99328 18.6246C4.86123 18.6246 0.545776 14.4443 0.545776 9.3123C0.545776 4.18026 4.86123 0 9.99328 0C12.8324 0 14.8549 1.11402 16.3745 2.56602L14.5791 4.36142C13.4894 3.33934 12.0131 2.54439 9.99057 2.54439C6.24294 2.54439 3.31189 5.56467 3.31189 9.3123C3.31189 13.0599 6.24294 16.0802 9.99057 16.0802C12.4214 16.0802 13.8058 15.1041 14.6927 14.2172C15.4119 13.498 15.8851 12.4705 16.0717 11.0671L9.99057 11.0699Z\" fill=\"#141719\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue2=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35726263-c10d-4d50-a294-e8d65d9403da, rgb(141, 141, 141)))\"},children:\"4,6/5 (1613 Rezensionen)\"})}),className:\"framer-kzua22\",\"data-framer-name\":\"4,2/5 (806 Rezensionen)\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"NWEWCv8D4\",style:{\"--extracted-r6o4lv\":\"var(--token-35726263-c10d-4d50-a294-e8d65d9403da, rgb(141, 141, 141))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ua0LIGRxX:{children:(_getLocalizedValue3=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35726263-c10d-4d50-a294-e8d65d9403da, rgb(141, 141, 141)))\"},children:\"4,6/5 (1613 Rezensionen)\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l3yhdy\",\"data-framer-name\":\"Quote\",layoutDependency:layoutDependency,layoutId:\"pOROsSXIt\",style:{backgroundColor:\"var(--token-35e75ec2-9625-4e3c-bb21-081bfcf9a363, rgb(255, 250, 232))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-kqfjqf\",\"data-styles-preset\":\"xko2nLBUP\",style:{\"--framer-text-alignment\":\"center\"},children:'\"Great brunch with a lot of variety. Vegan friendly. Absolutely recommended.'})}),className:\"framer-1kydfwu\",\"data-framer-name\":\"\u201EDas Ambiente war au\\xdfergew\\xf6hnlich gut, wie auch der Rest.\u201C\",layoutDependency:layoutDependency,layoutId:\"ErHEeP5vQ\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-iir39l\",\"data-framer-name\":\"Google_2015_logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:74,layoutDependency:layoutDependency,layoutId:\"H1CnHbtSK\",svg:'<svg width=\"74\" height=\"24\" viewBox=\"0 0 74 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M25.7301 18.6274C29.0451 18.6274 31.7463 16.083 31.7463 12.6301C31.7463 9.15287 29.0451 6.63281 25.7301 6.63281C22.4151 6.63281 19.7139 9.15287 19.7139 12.6301C19.7139 16.083 22.4151 18.6274 25.7301 18.6274ZM25.7301 8.99609C27.5471 8.99609 29.1127 10.4724 29.1127 12.6302C29.1127 14.7636 27.5471 16.2642 25.7301 16.2642C23.9131 16.2642 22.3475 14.7663 22.3475 12.6302C22.3475 10.4724 23.9131 8.99609 25.7301 8.99609Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M38.7089 18.6274C42.0239 18.6274 44.7251 16.083 44.7251 12.6301C44.7251 9.15287 42.0239 6.63281 38.7089 6.63281C35.3938 6.63281 32.6926 9.15557 32.6926 12.6301C32.6926 16.083 35.3938 18.6274 38.7089 18.6274ZM38.7088 8.99609C40.5259 8.99609 42.0914 10.4724 42.0914 12.6302C42.0914 14.7636 40.5259 16.2642 38.7088 16.2642C36.8918 16.2642 35.3262 14.7663 35.3262 12.6302C35.3262 10.4724 36.8918 8.99609 38.7088 8.99609Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M57.1631 17.7621V6.99784H54.662V7.97396H54.57C53.9779 7.26823 52.8422 6.63281 51.4118 6.63281C48.4132 6.63281 45.666 9.26643 45.666 12.6517C45.666 16.0127 48.4132 18.6247 51.4118 18.6247C52.8449 18.6247 53.9806 17.9893 54.57 17.2619H54.662V18.1245C54.662 20.4201 53.4371 21.6396 51.4605 21.6396C49.849 21.6396 48.8485 20.4877 48.4402 19.5116L46.1473 20.4661C46.8071 22.056 48.5565 24.0001 51.4632 24.0001C54.5511 24.0001 57.1631 22.1912 57.1631 17.7621ZM51.6471 8.99609C53.4398 8.99609 54.8485 10.54 54.8485 12.6518C54.8485 14.7419 53.4398 16.2642 51.6471 16.2642C49.8301 16.2642 48.3078 14.7419 48.3078 12.6518C48.3078 10.54 49.8301 8.99609 51.6471 8.99609Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M61.2867 0.684082V18.2596H58.718V0.684082H61.2867Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M73.3408 15.9665L71.2966 14.6037C70.6152 15.6042 69.6851 16.264 68.3439 16.264C67.0055 16.264 66.051 15.6502 65.4372 14.4469L73.4543 11.1265L73.1812 10.4451C72.6837 9.10667 71.1614 6.62988 68.0492 6.62988C64.9586 6.62988 62.3926 9.06071 62.3926 12.6272C62.3926 15.9909 64.937 18.6245 68.3439 18.6245C71.0911 18.6245 72.681 16.9426 73.3408 15.9665ZM70.3637 10.2206L65.0046 12.446C64.937 10.1314 66.8 8.9498 68.1384 8.9498C69.1821 8.9498 70.069 9.47166 70.3637 10.2206Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.99057 11.0699V8.52546H18.5647C18.6485 8.96891 18.6918 9.49347 18.6918 10.0613C18.6918 11.9703 18.1699 14.3308 16.4881 16.0126C14.8522 17.7161 12.7621 18.6246 9.99328 18.6246C4.86123 18.6246 0.545776 14.4443 0.545776 9.3123C0.545776 4.18026 4.86123 0 9.99328 0C12.8324 0 14.8549 1.11402 16.3745 2.56602L14.5791 4.36142C13.4894 3.33934 12.0131 2.54439 9.99057 2.54439C6.24294 2.54439 3.31189 5.56467 3.31189 9.3123C3.31189 13.0599 6.24294 16.0802 9.99057 16.0802C12.4214 16.0802 13.8058 15.1041 14.6927 14.2172C15.4119 13.498 15.8851 12.4705 16.0717 11.0671L9.99057 11.0699Z\" fill=\"#141719\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue4=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35726263-c10d-4d50-a294-e8d65d9403da, rgb(141, 141, 141)))\"},children:\"4,6/5 (1613 Rezensionen)\"})}),className:\"framer-18zl1cv\",\"data-framer-name\":\"4,2/5 (806 Rezensionen)\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"Qyq7ihxyv\",style:{\"--extracted-r6o4lv\":\"var(--token-35726263-c10d-4d50-a294-e8d65d9403da, rgb(141, 141, 141))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ua0LIGRxX:{children:(_getLocalizedValue5=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35726263-c10d-4d50-a294-e8d65d9403da, rgb(141, 141, 141)))\"},children:\"4,6/5 (1613 Rezensionen)\"})})}},baseVariant,gestureVariant)})]})]})})});});const css=['.framer-es8Vi[data-border=\"true\"]::after, .framer-es8Vi [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-es8Vi.framer-1ai533y, .framer-es8Vi .framer-1ai533y { display: block; }\",\".framer-es8Vi.framer-1x51dsf { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1024px; }\",\".framer-es8Vi .framer-1dcz7u2 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: flex-start; overflow: visible; padding: 48px 24px 48px 24px; position: relative; width: 1px; }\",\".framer-es8Vi .framer-xd15gw, .framer-es8Vi .framer-6f1ymi, .framer-es8Vi .framer-1ok3mlm, .framer-es8Vi .framer-kzua22, .framer-es8Vi .framer-1kydfwu, .framer-es8Vi .framer-18zl1cv { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-es8Vi .framer-4vho2t, .framer-es8Vi .framer-kzkpk8, .framer-es8Vi .framer-iir39l { flex: none; height: 24px; position: relative; width: 74px; }\",\".framer-es8Vi .framer-acwxjw, .framer-es8Vi .framer-1l3yhdy { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 48px 24px 48px 24px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-es8Vi.framer-1x51dsf, .framer-es8Vi .framer-1dcz7u2, .framer-es8Vi .framer-acwxjw, .framer-es8Vi .framer-1l3yhdy { gap: 0px; } .framer-es8Vi.framer-1x51dsf > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-es8Vi.framer-1x51dsf > :first-child { margin-left: 0px; } .framer-es8Vi.framer-1x51dsf > :last-child { margin-right: 0px; } .framer-es8Vi .framer-1dcz7u2 > *, .framer-es8Vi .framer-acwxjw > *, .framer-es8Vi .framer-1l3yhdy > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-es8Vi .framer-1dcz7u2 > :first-child, .framer-es8Vi .framer-acwxjw > :first-child, .framer-es8Vi .framer-1l3yhdy > :first-child { margin-top: 0px; } .framer-es8Vi .framer-1dcz7u2 > :last-child, .framer-es8Vi .framer-acwxjw > :last-child, .framer-es8Vi .framer-1l3yhdy > :last-child { margin-bottom: 0px; } }\",\".framer-es8Vi.framer-v-jxj1aa.framer-1x51dsf { flex-direction: column; width: 360px; }\",\".framer-es8Vi.framer-v-jxj1aa .framer-1dcz7u2 { align-self: unset; flex: none; height: min-content; width: 100%; }\",\".framer-es8Vi.framer-v-jxj1aa .framer-acwxjw, .framer-es8Vi.framer-v-jxj1aa .framer-1l3yhdy { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-es8Vi.framer-v-jxj1aa.framer-1x51dsf { gap: 0px; } .framer-es8Vi.framer-v-jxj1aa.framer-1x51dsf > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-es8Vi.framer-v-jxj1aa.framer-1x51dsf > :first-child { margin-top: 0px; } .framer-es8Vi.framer-v-jxj1aa.framer-1x51dsf > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 251\n * @framerIntrinsicWidth 1024\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ua0LIGRxX\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramersbxuIw12y=withCSS(Component,css,\"framer-es8Vi\");export default FramersbxuIw12y;FramersbxuIw12y.displayName=\"Quotes\";FramersbxuIw12y.defaultProps={height:251,width:1024};addPropertyControls(FramersbxuIw12y,{variant:{options:[\"WGa9U_fa5\",\"ua0LIGRxX\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramersbxuIw12y,[{family:\"DM Sans\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v14/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"},...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersbxuIw12y\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"251\",\"framerIntrinsicWidth\":\"1024\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ua0LIGRxX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./sbxuIw12y.map", "// Generated by Framer (1249b65)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/m7jMVEHppPROxBzTbEJQ/ywFN2ZFh05Y9EPH9ujnr/UQOgz0iw4.js\";const cycleOrder=[\"fBk85zhXi\"];const variantClassNames={fBk85zhXi:\"framer-v-vniaqe\"};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 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,text,width,...props})=>{var ref;return{...props,O1AzScgET:(ref=text!==null&&text!==void 0?text:props.O1AzScgET)!==null&&ref!==void 0?ref:\"Diese Firmen haben bei uns bereits erfolgreich Events ausgerichtet\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,O1AzScgET,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"fBk85zhXi\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const defaultLayoutId=React.useId();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-UYSpt\",sharedStyle.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-vniaqe\",className),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"fBk85zhXi\",ref:ref,style:{backgroundColor:\"var(--token-d5f903d6-7033-4b11-9049-fa3065f9ca64, rgb(248, 248, 248))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},children:[/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-6a9c8n\",\"data-styles-preset\":\"UQOgz0iw4\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-35726263-c10d-4d50-a294-e8d65d9403da, rgb(141, 141, 141)))\"},children:\"Diese Firmen haben bei uns bereits erfolgreich Events ausgerichtet\"})}),className:\"framer-75lpmw\",\"data-framer-name\":\"Diese Firmen haben bei uns bereits erfolgreich Events ausgerichtet\",layoutDependency:layoutDependency,layoutId:\"I410:2056;410:1983\",style:{\"--extracted-r6o4lv\":\"var(--token-35726263-c10d-4d50-a294-e8d65d9403da, rgb(141, 141, 141))\",\"--framer-paragraph-spacing\":\"14px\"},text:O1AzScgET,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-18rh2dh\",\"data-framer-name\":\"logos\",layoutDependency:layoutDependency,layoutId:\"I410:2056;410:1984\",children:[/*#__PURE__*/ _jsx(SVG,{className:\"framer-vuqscp\",\"data-framer-name\":\"Deutsche_Bahn_AG-Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:47,layoutDependency:layoutDependency,layoutId:\"I410:2056;410:1985\",svg:'<svg width=\"47\" height=\"32\" viewBox=\"0 0 47 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_503_225)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M41.7429 0H5.26288C2.75488 0 0.702881 2.05714 0.702881 4.57143V27.4286C0.702881 29.9429 2.75488 32 5.26288 32H41.7429C44.2509 32 46.3029 29.9429 46.3029 27.3829V4.57143C46.3029 2.05714 44.2509 0 41.7429 0ZM42.9741 27.3829C43.0197 28.0686 42.4725 28.6629 41.7429 28.7086H5.26289C4.57889 28.7086 4.03169 28.1143 4.03169 27.4286V4.57147C3.98609 3.88576 4.53329 3.29147 5.21729 3.24576H41.7429C42.4269 3.24576 42.9741 3.84004 42.9741 4.52576V27.3829ZM6.9957 26.4686H14.6565C20.9949 26.4229 23.0469 21.9429 23.0469 15.9086C23.0469 8.91429 20.0829 5.53143 14.6565 5.53143H6.9957V26.4686ZM13.0149 8.82286C17.5293 8.82286 17.9853 12.1143 17.9853 16.32C17.9853 20.9371 16.4349 23.0857 13.7901 23.0857H12.0117V8.82286H13.0149ZM39.9189 10.6057C39.8733 12.8914 38.4141 14.8571 36.2709 15.4971C40.0557 16.32 40.6941 19.1086 40.6941 20.5257C40.6941 26.4229 34.5837 26.4229 32.6229 26.4229H25.2357V5.48571H33.9453C39.8277 5.48571 39.9189 10.1486 39.9189 10.6057ZM31.8021 8.77714H30.2517V13.8057H32.2125C33.9453 13.8057 34.9485 12.6629 34.9485 11.2914C34.9485 9.55429 34.0365 8.77714 31.8021 8.77714ZM30.2061 23.0857H32.2581C33.0789 23.0857 35.6325 23.0857 35.6325 20.3886C35.6325 19.2 34.9941 17.6914 32.3949 17.6914H30.2061V23.0857Z\" fill=\"#141719\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_503_225\">\\n<rect width=\"45.6\" height=\"32\" fill=\"white\" transform=\"translate(0.702881)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-1ow85km\",\"data-framer-name\":\"Sony_logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:92,layoutDependency:layoutDependency,layoutId:\"I410:2056;410:1991\",svg:'<svg width=\"92\" height=\"16\" viewBox=\"0 0 92 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_503_231)\">\\n<path d=\"M69.3672 0.894648V2.6727H71.1013C71.8585 2.6727 72.3562 3.1509 72.6395 3.45998C72.8665 3.71453 77.8606 9.3837 77.9804 9.53279C78.1003 9.68188 78.1003 9.68362 78.1003 9.77817V12.5875C78.1 12.7163 78.0871 12.8447 78.062 12.971C78.0265 13.0526 77.9737 13.1254 77.9072 13.1845C77.8408 13.2435 77.7623 13.2874 77.6772 13.313C77.5133 13.3336 77.3483 13.3439 77.1831 13.3439L75.4473 13.3418V15.1198H85.1845V13.3418H83.3522C83.1881 13.3426 83.0242 13.3321 82.8616 13.3105C82.7767 13.2851 82.6983 13.2414 82.6321 13.1824C82.5659 13.1233 82.5135 13.0504 82.4786 12.9689C82.453 12.8426 82.4397 12.7142 82.4388 12.5853V9.77781C82.4281 9.68553 82.4513 9.59247 82.5041 9.51609L87.9067 3.34528C88.4025 2.79255 88.6604 2.67234 89.3106 2.67234H91.1028V0.894287H83.078V2.66879H84.2892C84.3541 2.66488 84.4188 2.67972 84.4755 2.71152C84.5323 2.74333 84.5787 2.79076 84.6093 2.8482C84.6399 2.90565 84.6533 2.97068 84.6481 3.03556C84.6429 3.10045 84.6191 3.16247 84.5797 3.21424C84.5543 3.2506 81.22 7.17604 81.1783 7.21425C81.1366 7.25245 81.1095 7.24324 81.0786 7.20147C81.0477 7.15962 77.7534 3.21425 77.7534 3.21425C77.521 2.9288 77.7027 2.66879 77.9751 2.66879H79.1555V0.894295L69.3672 0.894648Z\" fill=\"#141719\"/>\\n<path d=\"M45.4849 0.894531V2.67258H47.0391C48.1614 2.67258 48.2379 3.2983 48.2379 3.84376V12.1655C48.2379 12.6637 48.2668 13.3473 47.5513 13.3473H45.6335V15.1236H53.8221V13.3473H51.8245C51.0273 13.3473 50.9909 12.982 50.9818 12.2056V5.07635L62.2282 15.1236H65.0884L64.9377 3.77628C64.9523 2.94719 65.0031 2.67081 65.8602 2.67081H67.6525V0.894531H59.2989V2.67081H61.1333C61.9759 2.67081 62.1173 2.99628 62.1282 3.77628L62.2282 9.71449L52.4655 0.894531H45.4849Z\" fill=\"#141719\"/>\\n<path d=\"M8.61094 0C6.85123 0 4.85181 0.330906 3.16294 1.09091C1.58664 1.79636 0.302746 2.92899 0.302746 4.80718C0.300351 5.79076 0.673962 6.73799 1.34694 7.45455C1.80276 7.87638 2.53836 8.59274 4.45968 9.01456C5.31865 9.19638 7.15465 9.48909 8.98335 9.68182C10.8121 9.87455 12.5845 10.0455 13.3109 10.2401C13.8884 10.3873 14.8598 10.5874 14.8598 11.6783C14.8598 12.7692 13.8375 13.0964 13.6596 13.1673C13.4816 13.2382 12.2538 13.8018 10.0492 13.8018C8.5885 13.7612 7.14107 13.512 5.75073 13.0618C4.92809 12.7673 4.06568 12.38 3.26119 11.3963C2.93643 10.9331 2.75621 10.3839 2.74334 9.81818H0.74574V15.4183H2.96501V14.6602C2.96465 14.6039 2.97929 14.5486 3.0074 14.4999C3.0355 14.4511 3.07607 14.4108 3.12492 14.383C3.17378 14.3553 3.22916 14.341 3.28534 14.3418C3.34152 14.3426 3.39649 14.3583 3.44456 14.3874C4.49002 14.8429 5.57747 15.1948 6.69137 15.4382C7.85725 15.6818 8.61103 15.8583 10.0602 15.8583C11.5893 15.8874 13.1133 15.672 14.5746 15.2202C15.545 14.9538 16.4555 14.5038 17.2568 13.8945C17.7075 13.5479 18.0718 13.1014 18.321 12.59C18.5703 12.0787 18.6977 11.5164 18.6933 10.9474C18.701 9.86639 18.2844 8.82554 17.5331 8.04901C17.1153 7.64317 16.6313 7.31181 16.1019 7.06925C15.5329 6.81182 14.9422 6.60551 14.3367 6.45277C13.1853 6.17094 10.5996 5.81824 9.36287 5.6946C8.06625 5.56005 5.81614 5.37264 4.91722 5.09447C4.64483 5.00901 4.08903 4.74559 4.08903 4.10014C4.08903 3.64014 4.3433 3.25098 4.84452 2.93644C5.64174 2.43643 7.25075 2.12535 8.92873 2.12535C10.5529 2.1057 12.1639 2.4207 13.6613 3.05078C14.0636 3.22634 14.4419 3.45247 14.7871 3.72372C15.3498 4.20496 15.7395 4.85759 15.8966 5.58168H17.6892V0.707388H15.6916V1.27273C15.6916 1.45454 15.51 1.69463 15.1468 1.49645C14.246 1.02736 11.7145 0.0127264 8.61094 0Z\" fill=\"#141719\"/>\\n<path d=\"M32.6512 0C29.5041 0 26.1625 1.09078 24.2738 2.80896C23.5538 3.46528 22.9791 4.26526 22.5865 5.15741C22.194 6.04956 21.9923 7.01411 21.9946 7.98899C21.9834 8.9679 22.1809 9.93794 22.5739 10.8343C22.9669 11.7307 23.5465 12.5329 24.2738 13.1871C26.3077 15.0181 29.3588 16 32.6512 16C35.949 16 39.0653 15.029 41.0502 13.1871C41.756 12.5175 42.319 11.7117 42.7054 10.8183C43.0917 9.92495 43.2934 8.9625 43.2982 7.98899C43.3079 7.01648 43.1128 6.05284 42.7254 5.16095C42.3381 4.26906 41.7672 3.46896 41.0502 2.81286C38.92 0.878308 36.1325 0 32.6512 0ZM32.6512 2.0799C34.3728 2.0799 36.0307 2.70008 37.1476 3.80008C38.2281 4.86553 38.7926 6.37099 38.7926 7.98189C38.7926 9.66917 38.2789 11.0364 37.1476 12.1637C36.0162 13.291 34.3964 13.8945 32.6512 13.8945C30.9187 13.8945 29.2642 13.2783 28.1474 12.1637C27.6132 11.6088 27.1938 10.9537 26.9134 10.2361C26.6329 9.51844 26.4968 8.75236 26.513 7.98189C26.513 6.37826 27.0705 4.86734 28.1474 3.80008C29.2642 2.69462 30.9296 2.0799 32.6512 2.0799Z\" fill=\"#141719\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_503_231\">\\n<rect width=\"90.8\" height=\"16\" fill=\"white\" transform=\"translate(0.302734)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-qxe4tx\",\"data-framer-name\":\"Telekom_Logo_2013\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:50,layoutDependency:layoutDependency,layoutId:\"I410:2056;410:1997\",svg:'<svg width=\"50\" height=\"24\" viewBox=\"0 0 50 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_503_237)\">\\n<path d=\"M44.3265 11.0451H49.2278V15.9216H44.3265V11.0451ZM29.6236 11.0451H34.524V15.9216H29.6236V11.0451ZM14.9199 11.0451H19.8211V15.9216H14.9199V11.0451ZM11.8001 18.8693C11.8001 20.4163 12.027 21.4204 12.4825 21.8833C12.8675 22.2778 13.5237 22.5207 14.4436 22.6112C14.7164 22.634 15.1842 22.6446 15.8444 22.6446V24H4.03492V22.6446C4.98355 22.6446 5.68232 22.5998 6.13452 22.5093C7.04956 22.3177 7.62627 21.7871 7.86301 20.9175C7.98671 20.4668 8.04979 19.7837 8.04979 18.8693V1.15248C6.04604 1.20875 4.47893 1.86891 3.34761 3.13387C2.27283 4.34422 1.61747 6.19683 1.37909 8.69251L0.102783 8.47327L0.34035 0H19.539L19.7774 8.47327L18.4994 8.69251C18.2619 6.19683 17.6008 4.34422 16.5219 3.13387C15.3849 1.86891 13.8104 1.20872 11.8001 1.15248V18.8693ZM0.126056 11.0451H5.0273V15.9216H0.126056V11.0451Z\" fill=\"#141719\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_503_237\">\\n<rect width=\"49.125\" height=\"24\" fill=\"white\" transform=\"translate(0.102783)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-n6zkh5\",\"data-framer-name\":\"Oxfam_Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:78,layoutDependency:layoutDependency,layoutId:\"I410:2056;410:2000\",svg:'<svg width=\"78\" height=\"24\" viewBox=\"0 0 78 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_503_240)\">\\n<path d=\"M14.5685 13.8644C15.988 13.0846 16.9833 11.6266 17.1099 9.92325C17.1099 9.85573 17.0548 9.8011 16.9869 9.8011H14.7992C14.7312 9.8011 14.6839 9.85522 14.6761 9.92325C14.499 11.1262 13.4636 12.0497 12.2119 12.0497C10.9613 12.0497 9.92591 11.1262 9.74777 9.92325C9.74159 9.85212 9.6932 9.8011 9.62472 9.8011H7.43805C7.3706 9.8011 7.31501 9.85573 7.31501 9.92325C7.44115 11.6266 8.43691 13.0846 9.8559 13.8644C8.36792 14.6808 7.34692 16.245 7.30264 18.053C7.30264 18.121 7.35774 18.1756 7.4257 18.1756H9.60052C9.66848 18.1756 9.72357 18.121 9.72357 18.053C9.78793 16.7325 10.8774 15.6817 12.2119 15.6817C13.548 15.6817 14.6375 16.7325 14.7014 18.053C14.7014 18.121 14.7564 18.1756 14.8239 18.1756H16.9992C17.0672 18.1756 17.1218 18.121 17.1218 18.053C17.0775 16.245 16.057 14.6808 14.5685 13.8644ZM7.44167 9.3089H9.62935C9.6968 9.3089 9.74469 9.25531 9.75138 9.18624C9.92952 7.98385 10.9649 7.06079 12.2161 7.06079C13.4667 7.06079 14.5026 7.98385 14.6808 9.18624C14.6885 9.25376 14.7431 9.3089 14.8105 9.3089H16.99C17.0584 9.3089 17.113 9.25427 17.113 9.18624C16.9251 6.64333 14.8043 4.63951 12.2161 4.63951C9.62729 4.63951 7.50757 6.64333 7.31912 9.18624C7.31912 9.25427 7.3737 9.3089 7.44167 9.3089ZM24.2043 11.9997C24.2043 18.6271 18.8368 24 12.2161 24C5.59532 24 0.227783 18.6271 0.227783 11.9997C0.227783 5.37238 5.59532 -9.21378e-07 12.2161 -9.21378e-07C18.8368 -9.21378e-07 24.2043 5.37238 24.2043 11.9997Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.2814 5.48056C31.4302 5.48827 30.1062 7.4903 30.1062 9.18869V14.9367C30.1062 16.6372 31.4302 18.6385 34.2814 18.6462C37.1326 18.6385 38.4566 16.6372 38.4566 14.9367V9.18869C38.4566 7.4903 37.1326 5.48827 34.2814 5.48056ZM35.8772 14.739C35.8772 15.7214 34.8713 16.0538 34.2814 16.0538C33.6916 16.0538 32.6849 15.7214 32.6849 14.739V9.38784C32.6849 8.40541 33.6916 8.07303 34.2814 8.07303C34.8713 8.07303 35.8772 8.40541 35.8772 9.38784V14.739ZM52.5793 18.4117V13.407H56.4316V10.8418H52.5976V8.29426H57.0613V5.71302H50.0063V18.4117H52.5793ZM66.2546 18.4117H63.6829L63.1043 16.1621H59.7473L59.1575 18.4117H56.5739L59.8832 5.71302H62.8913L66.2546 18.4117ZM62.4605 13.672L61.43 9.6764L60.3806 13.672H62.4605ZM45.4057 12.0538L48.6898 5.71323H45.7104L43.9135 9.41084L42.1166 5.71323H39.1366L42.4207 12.0538L39.1184 18.4119H42.1327L43.9135 14.7227L45.6936 18.4119H48.708L45.4057 12.0538ZM72.2792 10.5989L74.5497 5.71335H77.2278V18.412H74.7066V11.1991L73.0862 14.5657H71.4771L69.8575 11.1886V18.412H67.3362V5.71335H69.978L72.2792 10.5989Z\" fill=\"#141719\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_503_240\">\\n<rect width=\"77\" height=\"24\" fill=\"white\" transform=\"translate(0.227783)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-1r7dj6d\",\"data-framer-name\":\"Zalando_logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:99,layoutDependency:layoutDependency,layoutId:\"I410:2056;410:2008\",svg:'<svg width=\"99\" height=\"18\" viewBox=\"0 0 99 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_503_248)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M37.6508 4.15144C39.176 4.152 40.2775 4.35028 41.0184 4.75789C42.2869 5.42889 42.284 6.65343 42.2816 7.63738V7.63752V14.0892C42.3033 15.6934 41.8912 16.206 40.2773 16.5809C39.57 16.7272 38.4872 16.9006 37.3135 16.9008H37.3133H37.3131C35.5842 16.8972 31.9868 16.8897 31.986 13.01C31.9744 9.95361 33.8094 9.42264 36.027 9.08196C37.4802 8.8489 38.9579 8.81399 39.7094 8.81399C39.9121 8.81399 40.0437 8.81537 40.1216 8.81675V7.72721C40.1147 6.99878 40.1104 6.55875 39.43 6.30099C39.0105 6.12381 38.3847 6.04268 37.454 6.04268C35.9197 6.04268 34.5456 6.38654 33.6365 6.61422L33.2892 6.69535C33.2518 6.70487 33.2117 6.71481 33.1601 6.71702H33.1593C32.999 6.71702 32.823 6.62222 32.7587 6.41083L32.7536 6.39151L32.5482 5.3533L32.5478 5.29935C32.5507 5.0547 32.7278 4.91175 32.8933 4.85862C33.6265 4.58527 35.5638 4.15222 37.6508 4.15144ZM37.3381 15.1444C38.3335 15.1444 39.2733 15.0032 40.1323 14.7243L40.1326 10.6026C39.6306 10.6084 37.1971 10.6473 36.2276 10.8545L36.1521 10.8714L36.1516 10.8715C35.0621 11.1148 34.2014 11.3071 34.1912 12.9209C34.1931 14.9502 35.7464 15.1322 37.3369 15.1444L37.3381 15.235V15.1444ZM60.2658 14.0892V7.63752C60.2681 6.65354 60.2709 5.42892 59.0025 4.75789C58.2616 4.35028 57.1601 4.152 55.6349 4.15144C53.5479 4.15227 51.6105 4.58527 50.8774 4.85862C50.7119 4.91175 50.5348 5.0547 50.5319 5.29935L50.5323 5.3533L50.7377 6.39151L50.7428 6.41083C50.8071 6.62222 50.9831 6.71702 51.1434 6.71702H51.1441C51.1958 6.71481 51.2359 6.70488 51.2733 6.69535L51.6207 6.61422C52.5297 6.38654 53.9037 6.04268 55.4382 6.04268C56.3689 6.04268 56.9946 6.12381 57.4141 6.30099C58.0946 6.55875 58.0988 6.99878 58.1057 7.72721V8.81675C58.0277 8.81537 57.8962 8.81399 57.6934 8.81399C56.942 8.81399 55.4644 8.8489 54.0111 9.08196C51.7935 9.42264 49.9586 9.95361 49.97 13.01C49.971 16.8897 53.5684 16.8972 55.2974 16.9008H55.2976C56.4713 16.9005 57.5542 16.7272 58.2615 16.5809C59.8753 16.206 60.2875 15.6934 60.2658 14.0892ZM54.2117 10.8545C55.1812 10.6473 57.6147 10.6084 58.1168 10.6026L58.1165 14.7243C57.2575 15.0032 56.3177 15.1444 55.3223 15.1444V15.235L55.321 15.1444C53.7305 15.1322 52.1773 14.9502 52.1753 12.9209C52.1856 11.3071 53.0462 11.1148 54.1358 10.8715L54.1362 10.8714L54.2117 10.8545ZM87.4032 10.5376C87.4079 7.4511 87.8327 4.1582 92.8429 4.15144C97.8533 4.15821 98.2781 7.30967 98.2834 10.5372C98.2763 13.6216 97.8495 16.894 92.8432 16.9008H92.8429C87.8327 16.894 87.4079 13.6127 87.4032 10.5376ZM89.6309 10.5381C89.6516 13.5257 89.8043 15.086 92.8431 15.0994C95.8819 15.086 96.0346 13.5257 96.0553 10.5367C96.0346 7.53417 95.8823 5.96596 92.8428 5.95271C89.804 5.96596 89.6516 7.53417 89.6309 10.5381ZM83.7206 16.4798L83.8515 16.4467C85.3247 16.1388 85.4288 15.3792 85.4098 14.4939V0.473016C85.4093 0.259275 85.3091 0.0070428 85.0262 0H84.959L83.7274 0.314194C83.3402 0.388016 83.2661 0.602308 83.2719 0.76596L83.2761 4.49751C82.5884 4.33138 81.63 4.15144 80.2389 4.15144C76.2958 4.15765 74.8276 5.8822 74.822 10.5151C74.8271 14.5543 75.7371 16.894 80.374 16.9008H80.3777C82.0601 16.9008 83.02 16.6575 83.7206 16.4798ZM80.4214 5.93022C81.714 5.93022 82.8618 6.18867 83.273 6.29326L83.2719 14.7391C82.872 14.8494 81.7508 15.1219 80.4439 15.1219V15.2125L80.4427 15.1219C78.3429 15.0991 77.0548 14.8652 77.0269 10.538C77.0517 6.59711 78.0474 5.95202 80.4214 5.93022ZM71.1037 16.6085H72.2052C72.4998 16.6081 72.7226 16.3851 72.723 16.0898V7.56977C72.7191 5.17723 71.5092 4.15503 68.6767 4.15144C67.1906 4.15227 64.9406 4.49655 63.765 4.90264C62.537 5.30018 62.4559 5.8971 62.4723 6.76062V16.0901C62.4727 16.3851 62.6955 16.6081 62.9907 16.6085H64.1145C64.4012 16.6081 64.6096 16.3901 64.6102 16.0898V6.53874C65.1822 6.38281 66.9168 5.95271 68.6305 5.95271C70.1451 5.97382 70.5654 6.36515 70.5854 7.77219V16.0901C70.5861 16.3851 70.8086 16.6081 71.1037 16.6085ZM47.2576 16.8333H47.2566L47.2556 16.8333C45.6919 16.8304 44.8296 15.9437 44.8272 14.3366V0.765656C44.8178 0.487891 45.0366 0.338452 45.2468 0.316926L46.4805 0.000662332L46.5591 0C46.8258 0.00634735 46.9647 0.242717 46.9651 0.473159V14.2915C46.9728 14.952 47.3468 15.0177 47.798 15.0321H47.7995C47.9565 15.0321 48.1156 15.0398 48.1156 15.0398C48.1094 15.0389 48.1208 15.0383 48.1325 15.0383C48.2577 15.0383 48.4094 15.135 48.4471 15.3478L48.4512 15.3672C48.6115 16.1184 48.6239 16.1761 48.6282 16.2344C48.6285 16.2393 48.6288 16.2441 48.6292 16.2494C48.6373 16.3326 48.6072 16.4169 48.5421 16.4899C48.3588 16.6957 47.8906 16.8209 47.2576 16.8333ZM20.9941 16.6085H29.8327C30.1277 16.6081 30.3504 16.3851 30.351 16.0898V15.3255C30.3504 15.0305 30.1277 14.8079 29.8326 14.807H23.0294L30.0824 6.60897C30.2413 6.4318 30.3103 6.2629 30.306 6.06379V4.96211C30.3055 4.66723 30.0827 4.44439 29.7878 4.44384H20.8591C20.5641 4.44439 20.3413 4.66724 20.3409 4.96225V5.72669C20.3413 6.02157 20.5641 6.24444 20.8593 6.2451H27.7524L20.7172 14.4266C20.5543 14.6284 20.4696 14.7463 20.4757 15.0108V16.0901C20.4762 16.3851 20.699 16.6081 20.9941 16.6085ZM0.533997 11.17C0.452195 7.25282 1.23765 3.08054 2.76526 3.08054C7.6023 3.08054 11.8756 5.86303 13.9354 8.16187C13.9479 8.17587 13.9605 8.1898 13.973 8.2037C14.0083 8.24284 14.0433 8.28166 14.0768 8.32056C14.0772 8.3203 14.0778 8.32043 14.0785 8.32056C14.0791 8.32068 14.0798 8.32081 14.0802 8.32056C14.7477 9.06347 15.2458 10.0047 15.2458 10.4938C15.2458 12.4491 8.65785 17.9037 2.87561 17.9037C1.36884 17.9037 0.608763 14.6082 0.5271 11.17C0.528194 11.1702 0.529371 11.1701 0.530547 11.17C0.531724 11.1698 0.532901 11.1697 0.533997 11.17Z\" fill=\"#141719\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_503_248\">\\n<rect width=\"98.1509\" height=\"18\" fill=\"white\" transform=\"translate(0.227783)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-162wthh\",\"data-framer-name\":\"Greenpeace_logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:117,layoutDependency:layoutDependency,layoutId:\"I410:2056;410:2012\",svg:'<svg width=\"117\" height=\"18\" viewBox=\"0 0 117 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_503_252)\">\\n<mask id=\"mask0_503_252\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"117\" height=\"18\">\\n<path d=\"M0.378906 18H116.886V0.000968775H0.378906V18Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_503_252)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3.76697 7.12889C3.75494 7.1751 3.66737 7.28118 3.6366 7.29613C3.6366 7.36857 3.5925 7.43732 3.52526 7.48205C3.52526 7.59576 3.33254 7.64602 3.30834 7.76722C3.28622 7.87772 3.23882 7.98237 3.15334 8.03969C3.15334 8.14204 2.98618 8.18113 2.98618 8.2814C2.93618 8.30679 2.89029 8.46731 2.85617 8.46731C2.85617 8.53664 2.78028 8.58496 2.76305 8.67171C2.72346 8.69187 2.67008 8.78366 2.67008 8.83921C2.58219 8.88265 2.61007 8.99905 2.52133 9.04335C2.52133 9.10605 2.44695 9.18338 2.44695 9.2481C2.41383 9.2481 2.33542 9.58888 2.33542 9.63848C2.26305 9.63848 2.29012 10.261 2.31668 10.3617C2.37265 10.5748 2.38601 10.8044 2.52133 10.9397C2.55671 10.975 2.57848 11.037 2.5957 11.0885C2.62276 11.1017 2.72111 11.1988 2.74439 11.2278C2.79827 11.295 3.15334 11.3812 3.15334 11.4044C3.33246 11.4301 3.42943 11.5345 3.58088 11.5345C3.58088 11.5337 4.08718 11.6934 4.13852 11.7018C4.13852 11.7753 4.38033 11.7507 4.38033 11.8133C4.53968 11.8295 4.69894 11.8453 4.85831 11.8612C5.01849 11.8775 5.18154 11.976 5.34695 12.0178C5.34695 12.0796 5.69161 12.1061 5.7775 12.0957C5.98308 12.0712 6.14572 12.1293 6.31825 12.1293C6.59645 12.1293 6.85227 12.2037 7.13174 12.2037C7.13174 12.2981 7.78467 12.1851 7.83797 12.1851C7.83797 12.1237 8.52436 12.0518 8.61354 12.0378C8.75079 12.0161 8.8881 11.9944 9.02526 11.972C9.15898 11.9502 9.20731 11.856 9.34978 11.8133C9.5325 11.7585 9.60931 11.6867 9.77117 11.6461C9.77117 11.6484 10.1143 11.4787 10.1431 11.4787C10.1934 11.4028 10.2863 11.3807 10.3383 11.3114C10.3888 11.2444 10.5029 11.15 10.5798 11.0885C10.667 11.0187 10.7565 10.7801 10.7565 10.6794C10.8325 10.6794 10.8108 10.2985 10.7565 10.2333C10.6541 10.1992 10.6192 10.1566 10.5087 10.165C10.3453 10.1776 10.2085 10.2044 10.0315 10.2146C10.0315 10.268 9.64115 10.2919 9.64115 10.3449C9.52796 10.3449 9.41425 10.3634 9.32524 10.3634C9.32524 10.4085 9.12176 10.4193 9.06485 10.4193C9.06485 10.4779 8.52589 10.463 8.52589 10.5121C8.48688 10.5121 8.30257 10.5411 8.30257 10.568C8.23542 10.5718 7.91235 10.5735 7.91235 10.6237C7.78175 10.6151 7.43715 10.6794 7.41043 10.6794C7.41043 10.7189 6.20211 10.9182 6.10596 10.9437C5.98418 10.9761 5.93635 10.9256 5.81405 10.9329C5.70841 10.9397 5.67766 10.884 5.60714 10.884C5.57738 10.8235 5.56269 10.8702 5.53293 10.8095C5.47419 10.8095 5.45805 10.7534 5.41208 10.7165C5.33593 10.6558 5.33509 10.5745 5.27257 10.5121C5.23466 10.4741 5.1802 10.2333 5.10513 10.2333C5.07723 10.1491 4.91302 9.71285 4.86368 9.71285C4.86368 9.62124 4.83526 9.5962 4.86259 9.49914C4.88696 9.41239 4.90091 9.30819 4.90091 9.23876C4.90091 9.20741 4.9363 9.04335 4.95663 9.04335C4.96319 8.91568 4.9937 8.75347 4.9937 8.65304C5.06017 8.65304 5.06085 8.26266 5.1612 8.26266C5.1612 8.20803 5.18313 8.14036 5.2355 8.11407C5.26474 7.99834 5.32442 7.9458 5.39351 7.85369C5.46376 7.76005 5.6537 7.72156 5.76211 7.67728C5.81214 7.65669 6.10905 7.65079 6.10905 7.63063C6.18328 7.63063 6.6483 7.57725 6.6483 7.51927C6.76429 7.51927 6.90591 7.49364 7.04475 7.48818C7.16141 7.48364 7.21384 7.44489 7.29889 7.44489C7.29889 7.33352 7.82947 7.31001 7.94942 7.29613C7.94942 7.27427 8.1022 7.2404 8.1354 7.2404C8.1354 7.19544 8.38786 7.19477 8.44402 7.19191C8.65464 7.18199 8.78205 7.09165 8.97191 7.09165C9.15629 7.09165 9.2833 7.01937 9.48617 7.00911C9.6473 7.00072 9.80858 6.99248 9.96952 6.98433C10.0724 6.97903 10.1296 6.94289 10.236 6.94289C10.236 6.93675 10.7909 6.86877 10.8495 6.86877C10.8495 6.86917 11.1031 6.80908 11.1478 6.79346C11.2821 6.74731 11.4536 6.72001 11.5745 6.72001C11.5745 6.71833 11.7148 6.65864 11.7431 6.64646C11.8593 6.59687 11.9171 6.62587 12.009 6.6347C12.1126 6.64461 12.2226 6.62461 12.3225 6.59898C12.4075 6.57712 12.5135 6.53224 12.5947 6.56116C12.6459 6.5794 12.9314 6.55199 12.9314 6.58964C13.0334 6.58964 13.0586 6.62689 13.1545 6.62689C13.1545 6.63696 13.5283 6.72001 13.5634 6.72001C13.5634 6.76076 13.6986 6.75335 13.7309 6.75697C13.7914 6.79901 13.8519 6.84069 13.9121 6.88262C13.9877 6.93482 14.0444 7.02508 14.0654 7.11643C14.0956 7.24613 14.1487 7.31319 14.1771 7.42641C14.2555 7.46548 14.2616 7.59003 14.3442 7.63063C14.4001 7.79663 14.4746 7.89076 14.4746 8.05843C14.5253 8.05843 14.5368 8.44881 14.5861 8.44881C14.5861 8.50546 14.69 8.82047 14.7161 8.82047C14.7271 8.95518 14.7505 9.06394 14.7852 9.19246C14.829 9.35466 14.7537 9.53301 14.7161 9.69059C14.7 9.7584 14.6515 9.88365 14.5861 9.91725C14.5861 9.96558 14.5446 10.0517 14.5117 10.0845C14.4755 10.1209 14.4001 10.2202 14.4001 10.2705C14.3811 10.2705 14.3071 10.4256 14.3071 10.4562C14.2581 10.4562 14.2498 10.698 14.1958 10.698C14.1835 10.7462 14.1243 10.9025 14.0841 10.9025C14.0841 11.0325 13.9726 11.182 13.9726 11.3486C13.9703 11.3486 13.807 11.6841 13.8115 11.7326C13.8318 11.9549 13.7403 12.0356 13.7121 12.2596C13.6979 12.3742 13.6564 12.4453 13.6564 12.5385C13.6342 12.5385 13.6008 12.6561 13.6008 12.6872C13.5354 12.6872 13.6103 13.0217 13.5451 13.0217C13.5204 13.1423 13.4863 13.1772 13.4707 13.319C13.4628 13.39 13.3926 13.7838 13.3591 13.7838C13.3591 13.8197 13.3275 13.9883 13.3033 13.9883C13.3033 14.1572 13.3184 14.266 13.3079 14.4345C13.3007 14.549 13.2662 14.6083 13.2662 14.744C13.2662 14.7865 13.2454 14.9552 13.2102 14.9552C13.2102 15.0456 13.1768 15.1233 13.2053 15.2401C13.239 15.3796 13.2476 15.486 13.2476 15.6242C13.3166 15.6242 13.2846 16.2209 13.2846 16.3029C13.2846 16.5281 13.2117 16.7 13.1965 16.9439C13.1818 17.1784 13.0234 17.2998 12.9874 17.4833C12.8872 17.533 11.9281 18.0573 11.7118 17.9951C11.6614 17.9807 11.6898 17.9481 11.6303 17.9481C11.6303 17.9077 11.5264 17.8915 11.4939 17.8797C11.43 17.8566 11.3221 17.7974 11.2958 17.7434C11.263 17.7434 10.8865 17.5989 10.8865 17.6133C10.8477 17.6133 10.7379 17.5763 10.7379 17.5389C10.7016 17.5389 10.6379 17.5131 10.6076 17.4833C10.5146 17.3908 10.3086 17.3465 10.3239 17.1715C10.3326 17.0721 10.3633 17.0103 10.3104 16.9069C10.2724 16.8735 10.2602 16.7025 10.236 16.7025C10.2473 16.4068 10.2918 16.1814 10.2918 15.9143C10.2918 15.634 10.2732 15.3384 10.2732 15.0852C10.2632 15.0852 10.3715 14.5009 10.3476 14.4158C10.3164 14.3061 10.3133 14.0874 10.2372 14.0166C10.1507 13.9359 10.0964 13.9576 9.97574 13.9698C9.97574 13.9909 9.68504 14.1057 9.6225 14.1185C9.6225 14.1572 9.41156 14.1872 9.37154 14.1927C9.2628 14.2076 9.19093 14.267 9.10218 14.267C9.10218 14.3439 8.63732 14.2939 8.63732 14.3976C8.46284 14.3976 8.32956 14.4803 8.16634 14.4965C7.96715 14.5162 7.89563 14.6015 7.69551 14.6015C7.53137 14.6015 7.3768 14.6604 7.18677 14.6518C7.01902 14.6442 6.9001 14.5761 6.73512 14.6242C6.55443 14.6768 6.4323 14.6015 6.27649 14.6015C6.16252 14.5772 5.96307 14.6392 5.79323 14.6392C5.79323 14.6989 4.54885 14.5089 4.43606 14.5089C4.43606 14.4694 3.97145 14.4335 3.97145 14.3603C3.73377 14.3302 3.60594 14.2317 3.33943 14.2116C3.22664 14.1614 3.0815 14.0626 2.95819 14.0626C2.92097 14.0626 2.8001 14.0425 2.8001 14.0068C2.74009 14.0068 2.44695 13.9237 2.44695 13.8584C2.30508 13.8584 2.16607 13.6723 2.01941 13.6723C2.01941 13.6531 1.77425 13.505 1.72214 13.505C1.64952 13.4262 1.50093 13.3205 1.46168 13.2449C1.38974 13.2449 1.2856 13.115 1.23879 13.059C1.19181 13.059 1.09129 12.9673 1.07137 12.9289C0.988755 12.8622 0.94127 12.8129 0.94127 12.7242C0.934546 12.7242 0.841089 12.5725 0.829574 12.5385C0.806126 12.5385 0.729728 12.3872 0.718213 12.3526C0.66871 12.204 0.626939 12.0376 0.602986 11.8985C0.588615 11.8144 0.563233 11.7321 0.540037 11.6501C0.531296 11.6188 0.476246 11.5345 0.474985 11.5238C0.470615 11.4875 0.450192 11.1257 0.43935 11.1257C0.43935 10.9076 0.360095 8.82047 0.38346 8.82047C0.38346 8.76214 0.418675 8.39293 0.476498 8.39293C0.476498 8.36384 0.569537 7.96193 0.581891 7.81679C0.58727 7.75207 0.662324 7.31461 0.736787 7.31461C0.736787 7.16501 0.900593 7.03306 0.94127 6.86877C1.07902 6.79916 1.10138 6.57477 1.22022 6.51526C1.22022 6.41532 1.3873 6.37625 1.3873 6.27371C1.48101 6.21127 1.48916 6.09276 1.57338 6.05057C1.57338 5.98796 1.68482 5.95644 1.68482 5.88324C1.78357 5.7986 1.84964 5.72531 1.92654 5.6232C1.99814 5.58723 2.0126 5.48326 2.09387 5.45562C2.11656 5.38687 2.14985 5.36981 2.20548 5.3256C2.20548 5.29292 2.23658 5.2387 2.26121 5.21406C2.3213 5.15422 2.56058 4.74939 2.61437 4.74939C2.64488 4.62599 2.72001 4.51297 2.82508 4.42093C2.87809 4.37428 2.92097 4.2473 3.00467 4.2473C3.02595 4.20452 3.06048 4.22208 3.06048 4.19157C3.1246 4.19157 3.09671 4.14568 3.15334 4.11736C3.15334 4.04727 3.32514 3.8944 3.39507 3.8944C3.45465 3.81505 3.5082 3.79009 3.59435 3.73974C3.73149 3.65964 4.28838 2.97845 4.41747 2.94635C4.44127 2.89913 4.54018 2.87197 4.58482 2.87197C4.58482 2.8576 4.76895 2.7417 4.80796 2.7417C4.83401 2.68959 5.5394 2.13364 5.71885 1.92369C5.77371 1.92369 5.87322 1.84006 5.90465 1.79367C5.97903 1.7693 6.00393 1.72265 6.05335 1.66348C6.09444 1.66348 6.14806 1.62398 6.17429 1.58902C6.21388 1.53615 6.26429 1.49674 6.31362 1.45278C6.37768 1.39613 6.34465 1.39109 6.388 1.3474C6.47962 1.25578 6.63081 1.23452 6.72268 1.14315C6.77109 1.09482 6.82337 0.956993 6.90851 0.956993C6.98674 0.862862 7.05114 0.804447 7.15022 0.771249C7.24478 0.629224 7.4501 0.619714 7.54053 0.529628C7.57474 0.49516 7.69829 0.399351 7.74493 0.399351C7.77475 0.339861 7.91084 0.303111 7.98672 0.287986C7.98672 0.247644 8.17256 0.239661 8.17256 0.194866C8.21331 0.185033 8.33997 0.149318 8.33997 0.120487C8.46756 0.0782947 8.52722 0.0648474 8.67464 0.0648474C8.67464 0.0160284 8.93628 0.0118973 8.99258 0.0130807C9.16193 0.0173623 9.33145 0.0213212 9.50072 0.0255168C9.59552 0.0278835 9.66897 -0.00994132 9.78337 0.0045172C10.0023 0.0324876 10.1469 0.120487 10.3413 0.120487C10.3777 0.120487 10.552 0.152266 10.552 0.176385C10.647 0.199751 10.7827 0.23168 10.8755 0.291773C11.1327 0.457938 11.3181 0.64392 11.5434 0.858001C11.6831 0.990623 11.8475 1.15997 11.8905 1.32889C11.9727 1.37025 12.0463 1.66348 12.0762 1.66348C12.0762 1.86805 12.1678 2.07101 12.1879 2.29542C12.2572 2.29542 12.3552 2.67026 12.3552 2.72313C12.3867 2.72313 12.3924 3.09485 12.4668 3.09485C12.4668 3.21614 12.5061 3.28505 12.4908 3.4086C12.4758 3.52878 12.4111 3.64469 12.4111 3.76412C12.3915 3.76412 12.3367 3.88263 12.3367 3.91279C12.2464 3.98113 12.1836 4.06852 12.1002 4.144C12.0138 4.22234 11.5559 4.29528 11.5559 4.35916C11.3938 4.35916 11.2646 4.43834 11.079 4.42304C10.9914 4.41564 10.897 4.40286 10.8151 4.36942C10.7421 4.33984 10.7233 4.25872 10.6637 4.22888C10.6637 4.14021 10.5336 4.11207 10.5336 4.02424C10.4722 3.99432 10.422 3.86103 10.422 3.80151C10.349 3.80151 10.3393 3.48005 10.236 3.42953C10.236 3.4044 10.0956 3.09485 10.0687 3.09485C10.0687 2.97536 9.86816 2.80977 9.78068 2.70456C9.71075 2.62067 9.58829 2.63666 9.54837 2.55597C9.42819 2.532 9.33987 2.48738 9.26934 2.59294C9.20632 2.59294 9.139 2.6637 9.07428 2.67648C8.97072 2.69716 8.91155 2.7881 8.81381 2.81608C8.78205 2.82533 8.63732 2.90306 8.63732 2.90896C8.57176 2.90896 8.51528 2.95578 8.43274 2.98325C8.43274 3.03377 8.23474 3.0699 8.19121 3.11359C8.1153 3.18924 8.00428 3.22918 7.91235 3.28077C7.84973 3.28077 7.74433 3.37456 7.70786 3.42953C7.59776 3.45668 7.53683 3.54098 7.42908 3.54098C7.42908 3.55652 7.2905 3.61536 7.26184 3.61536C7.19527 3.68847 7.05398 3.78807 7.02003 3.85698C6.79932 3.93052 6.60292 4.12821 6.46221 4.30326C6.34035 4.33353 6.25807 4.43724 6.16865 4.53371C6.07452 4.63525 5.98241 4.69702 5.88617 4.80503C5.82197 4.8773 5.73305 5.00966 5.64447 5.00966C5.57932 5.08759 5.34695 5.25122 5.34695 5.34416C5.27147 5.40301 5.14246 5.4778 5.14246 5.5673C5.08338 5.61985 4.95504 5.79047 4.88225 5.79047C4.86106 5.83332 4.82661 5.81583 4.82661 5.84634C4.75862 5.89131 4.78005 5.94333 4.71493 5.97636C4.71493 6.07746 4.60507 6.09805 4.55691 6.16236C4.49069 6.25019 4.30604 6.35624 4.30604 6.45962C4.28184 6.45962 4.24317 6.57645 4.21292 6.59898C4.14106 6.65277 4.07029 6.76833 4.04583 6.86877C3.96371 6.93011 3.86859 7.12889 3.76697 7.12889Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M30.5173 5.66001C30.4957 5.73884 30.4013 5.82875 30.3311 5.86449C30.2881 5.9935 30.2515 6.0529 30.2382 6.19897C30.1685 6.4381 30.088 6.66997 30.3126 6.84967C30.3126 6.88941 30.4596 6.94522 30.5048 6.94867C30.6377 6.95917 30.7146 6.97976 30.8518 6.97976C30.8518 7.00665 31.5395 6.98791 31.5395 6.94253C31.5726 6.94253 31.7254 6.90875 31.7254 6.88689C31.8557 6.86798 31.9356 6.84967 32.0786 6.84967C32.1191 6.84967 32.5247 6.81546 32.5247 6.77529C32.6755 6.75746 33.1938 6.6635 33.2682 6.64527C33.3408 6.50146 33.6415 6.47775 33.8012 6.47775C33.9854 6.47775 34.1676 6.42506 34.3552 6.42943C34.4802 6.43263 34.7369 6.49877 34.7369 6.64527C34.8008 6.6877 34.8608 6.77529 34.8856 6.84967C34.9185 6.94826 34.9805 7.00372 35.0157 7.11003C35.0349 7.11003 35.1857 7.46093 35.1924 7.50043C35.2212 7.67273 35.3101 7.71886 35.3256 7.9215C35.3342 8.0337 35.3727 8.09252 35.3875 8.22532C35.3933 8.22532 35.4676 8.61613 35.4805 8.67136C35.5323 8.67136 35.6382 9.1452 35.6403 9.23757C35.644 9.3965 35.4902 9.52652 35.369 9.52652C35.2993 9.63098 35.1767 9.63434 35.053 9.65663C35.053 9.67621 34.9312 9.73309 34.8948 9.74024C34.7894 9.76126 34.6629 9.7789 34.5325 9.78688C34.3948 9.82766 34.2438 9.87977 34.1003 9.87977C33.8561 9.87977 33.6471 9.93564 33.4264 9.93564C33.3304 9.93564 33.205 9.93648 33.0823 9.92405C32.9662 9.91279 32.859 9.95415 32.7106 9.95415C32.6286 9.95415 31.967 9.98549 31.967 10.01C31.7066 10.0285 31.5872 10.1029 31.3538 10.1029C31.3538 10.1348 30.9755 10.2025 30.9073 10.2081C30.806 10.2164 30.7003 10.2517 30.6007 10.2517C30.4697 10.2517 30.3253 10.2472 30.1947 10.2609C30.1168 10.2689 30.0628 10.3071 29.9779 10.3071C29.8677 10.3071 29.7984 10.3445 29.7177 10.3445C29.7177 10.4004 29.5503 10.3723 29.5503 10.4374C29.4817 10.4374 29.3984 10.4951 29.3459 10.5489C29.3459 10.6097 29.2313 10.737 29.1785 10.7721C29.1097 10.8507 29.1413 10.9379 29.117 11.0283C29.0518 11.2728 29.1308 11.359 29.2715 11.5342C29.3386 11.5342 29.4049 11.6271 29.4759 11.6271C29.4759 11.6426 29.6147 11.7015 29.6433 11.7015C29.6433 11.7624 29.9589 11.8502 30.0523 11.869C30.0523 11.9111 30.5728 11.9134 30.5728 11.999C30.6687 11.999 30.7315 12.0361 30.8518 12.0361C30.8518 12.1414 31.1573 12.0322 31.2049 12.0175C31.3949 12.007 31.5722 11.9617 31.7254 11.9617C31.7254 11.9176 31.9958 11.8758 32.0599 11.869C32.0599 11.8017 32.3276 11.6989 32.376 11.6271C32.4384 11.6271 32.4803 11.5712 32.5526 11.5712C32.643 11.5712 32.7065 11.5523 32.7788 11.559C32.8885 11.5691 32.9038 11.5813 32.9864 11.6422C33.0206 11.6674 33.1196 11.7625 33.1196 11.7758C33.1981 11.8462 33.4253 12.2105 33.4821 12.2591C33.5581 12.324 33.793 12.7419 33.8074 12.9285C33.8012 12.9285 33.8885 13.3269 33.8916 13.3849C33.8935 13.425 33.8668 13.5603 33.8446 13.5603C33.8446 13.646 33.8259 13.7492 33.8259 13.8581C33.7952 13.8581 33.7704 14.2115 33.7704 14.2667C33.7338 14.2667 33.6775 14.6367 33.6775 14.6943C33.585 14.7401 33.6387 14.8527 33.5473 14.8987C33.5473 15.113 33.0598 15.4213 33.0598 15.3368C33.3029 15.3368 31.7254 15.8077 31.7254 15.7169C31.6247 15.7482 31.5212 15.6907 31.428 15.6613C31.3017 15.6487 31.2255 15.6222 31.1057 15.6114C30.945 15.597 30.7522 15.4751 30.5915 15.4751C30.5915 15.4679 30.2573 15.3763 30.2197 15.3637C30.0699 15.3137 29.9325 15.2336 29.7735 15.2336C29.7735 15.1811 29.6248 15.2129 29.6248 15.1591C29.503 15.1391 29.4066 15.1055 29.2715 15.0849C29.2715 14.9767 28.7883 15.0414 28.7883 14.9174C28.7454 14.9174 28.4167 14.792 28.4167 14.7502C28.3319 14.7288 28.2405 14.6723 28.1933 14.6012C28.0957 14.6012 28.0496 14.4527 27.9517 14.4527C27.9311 14.4119 27.7906 14.3227 27.7473 14.3227C27.7148 14.2745 27.5978 14.1741 27.5427 14.1741C27.4838 14.1032 27.4498 14.0829 27.4498 13.9879C27.4388 13.9879 27.4115 13.919 27.3753 13.895C27.3753 13.8879 27.2122 13.8297 27.1896 13.7834C27.1427 13.7446 27.0782 13.7181 27.0782 13.6534C27.0182 13.6231 27.0638 13.6086 27.0037 13.579C27.0037 13.4765 26.8364 13.4378 26.8364 13.3371C26.7894 13.3143 26.7626 13.2472 26.7527 13.1979C26.7322 13.0955 26.7249 13.2159 26.7249 13.077C26.7208 13.077 26.669 12.9726 26.669 12.947C26.5812 12.9014 26.5472 12.594 26.5018 12.594C26.5018 12.4482 26.3901 12.2906 26.3901 12.1477C26.3198 12.1477 26.3871 11.4413 26.2972 11.4413C26.2972 11.3396 26.2602 11.3066 26.2602 11.1809C26.2255 11.1809 26.2414 10.7807 26.2414 10.721C26.2414 10.6481 26.3258 10.2143 26.2972 10.2143C26.2972 10.0844 26.3159 9.93624 26.3159 9.83329C26.3159 9.75553 26.3718 9.70747 26.3718 9.61964C26.3718 9.25 26.542 8.99039 26.607 8.66529C26.6438 8.48209 26.7621 8.36147 26.7621 8.16942C26.8054 8.14776 26.8551 8.0484 26.8551 8.00218C26.8725 8.00218 26.9293 7.89333 26.9293 7.85333C26.9661 7.83509 26.9956 7.72332 27.0222 7.72332C27.0222 7.69113 27.1036 7.51892 27.1339 7.51892C27.1825 7.32687 27.2871 7.21258 27.3196 7.017C27.3717 7.017 27.3671 6.58929 27.431 6.58929C27.4986 6.3654 27.3476 6.13191 27.1896 6.01317C27.1896 5.98552 27.1574 5.90163 27.1339 5.90163C27.1339 5.79263 27.0375 5.8197 27.0035 5.73546C26.9685 5.64798 26.8364 5.56865 26.8364 5.49257C26.7953 5.49257 26.8176 5.37492 26.8176 5.34381C26.741 5.28247 26.7012 5.23028 26.6505 5.14548C26.5523 4.98209 26.5762 4.65733 26.5762 4.49496C26.5762 4.30166 26.5429 4.11464 26.5823 3.89613C26.6038 3.77638 26.6132 3.64231 26.6132 3.54063C26.6206 3.54063 26.7249 3.33109 26.7249 3.29899C26.8036 3.24664 26.8725 3.03886 26.985 3.03886C27.0085 2.99222 27.0704 2.9571 27.1152 2.92709C27.1152 2.86616 27.1896 2.8344 27.2318 2.79152C27.345 2.67705 27.4629 2.57283 27.6172 2.5182C27.7708 2.46401 27.9457 2.50183 28.1047 2.49383C28.3461 2.48208 28.4776 2.31221 28.6953 2.2396C28.9236 2.16311 29.0286 2.09142 29.3274 2.05345C29.3274 2.02317 29.52 1.97898 29.5628 1.97898C29.7098 1.97898 29.7494 1.98158 29.9131 1.99301C30.0187 2.00067 30.074 1.94544 30.17 1.93569C30.3047 1.92224 31.4721 1.64456 31.5022 1.64456C31.5022 1.57035 31.9958 1.5048 32.0786 1.4773C32.1787 1.44386 32.1856 1.42142 32.3203 1.42142C32.4104 1.42142 32.4834 1.38435 32.5714 1.38435C32.7118 1.38435 33.0094 1.26946 33.0453 1.26332C33.1372 1.24829 33.1648 1.2155 33.287 1.20954C33.4425 1.20181 33.5258 1.17617 33.671 1.14256C33.7033 1.13524 33.9004 1.07642 33.9004 1.06818C34.1061 1.06818 34.2631 1.01254 34.4583 1.01254C34.4583 1.04322 35.0545 0.9748 35.1466 0.965054C35.2137 0.957911 35.6849 0.918407 35.6849 1.01254C35.7996 1.04111 35.8277 1.13229 35.9452 1.1613C36.0199 1.25416 36.0801 1.36301 36.1681 1.42142C36.1911 1.51319 36.2787 1.63169 36.3542 1.6817C36.3542 1.71221 36.4369 1.8492 36.4657 1.8492C36.4754 1.88829 36.5358 2.01637 36.5586 2.01637C36.5836 2.13538 36.6516 2.31054 36.6516 2.40684C36.7351 2.40684 36.7876 2.74134 36.8562 2.74134C36.8816 2.84892 36.9491 3.00861 36.9491 3.0945C36.9745 3.0945 37.0533 3.26957 37.0608 3.29899C37.1451 3.34228 37.1312 3.46793 37.1258 3.55003C37.1198 3.63939 37.1378 3.67426 37.0608 3.72678C37.0303 3.81646 36.9864 3.76377 36.9864 3.86293C36.9864 4.01389 36.9483 4.04296 36.8188 4.12618C36.7213 4.18902 36.6073 4.24694 36.5214 4.24694C36.5214 4.3014 36.2112 4.3304 36.1404 4.33544C36.0175 4.34409 35.9431 4.41453 35.8058 4.41453C35.74 4.41453 35.2574 4.49874 35.2574 4.50731C35.1334 4.50731 35.0185 4.60045 34.8733 4.60045C34.7354 4.60045 34.6493 4.65607 34.5418 4.65607C34.3797 4.65607 34.1898 4.71179 34.0305 4.71179C33.8728 4.71179 33.7887 4.76769 33.6463 4.76769C33.4782 4.76769 33.4087 4.84207 33.2685 4.84207C33.1602 4.84207 33.0856 4.91645 32.9894 4.91645C32.9894 5.01286 32.6436 5.01966 32.5584 5.02428C32.4995 5.02738 32.1903 5.08319 32.1903 5.12067C32.047 5.12067 31.9915 5.19523 31.8555 5.19523C31.8555 5.25347 31.6511 5.23742 31.6511 5.28811C31.6079 5.29121 31.3908 5.28835 31.3908 5.32524C31.3336 5.32524 31.3071 5.36249 31.2421 5.36249C31.2421 5.42088 30.9467 5.4314 30.8703 5.4367C30.8703 5.45703 30.5792 5.64219 30.5173 5.66001Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M39.2913 10.642C39.2545 10.776 39.1218 10.7981 39.0736 10.9087C39.0198 11.0318 39.0103 11.1965 39.0297 11.3278C39.0512 11.4751 39.1719 11.5167 39.2356 11.6459C39.2982 11.6668 39.5702 11.7626 39.5702 11.7948C39.6177 11.7948 39.9232 11.8443 39.9232 11.8875C40.0399 11.8875 40.1989 11.9619 40.2952 11.9619C40.2952 12.0727 41.4106 12.0674 41.4106 11.9992C41.4332 11.9979 41.5507 12.0244 41.5963 12.0269C41.6266 12.0283 41.7637 12.0593 41.7637 12.0177C41.8721 12.0177 41.7729 11.9992 41.8566 11.9992C41.8566 11.914 42.2278 11.9063 42.3027 11.9063C42.3027 11.8294 42.5925 11.8659 42.6374 11.776C42.6998 11.776 42.8029 11.6611 42.8418 11.6088C42.9296 11.6088 42.9578 11.4785 43.0464 11.4785C43.0682 11.4356 43.1915 11.3671 43.2321 11.3671C43.2321 11.3653 43.4043 11.3093 43.4402 11.3028C43.6377 11.2671 43.6751 11.4403 43.8458 11.4972C43.8458 11.5411 43.8856 11.6172 43.9176 11.6652C43.9686 11.7424 44.0439 11.7912 44.1089 11.8554C44.1612 11.9073 44.1618 11.9229 44.1618 11.9992C44.1618 12.1025 44.2061 12.0766 44.2361 12.1664C44.2623 12.245 44.3344 12.3118 44.3393 12.3791C44.3445 12.4465 44.4964 12.6161 44.4964 12.7241C44.6162 12.7841 44.6451 13.3521 44.6451 13.4679C44.6715 13.6242 44.6147 13.7297 44.5986 13.8583C44.5837 13.9772 44.5603 14.107 44.5521 14.2485C44.5409 14.2485 44.4908 14.4066 44.4839 14.4407C44.4546 14.5882 44.3781 14.8075 44.2175 14.8622C44.153 15.0521 43.9727 15.1082 43.7825 15.1481C43.727 15.1599 43.381 15.253 43.381 15.308C43.281 15.3328 43.2065 15.3778 43.0845 15.3838C42.9541 15.3908 42.0124 15.5282 41.9033 15.5404C41.7697 15.5551 41.2019 15.6936 41.1318 15.6053C41.0692 15.6053 41.1012 15.5683 41.0388 15.5683C41.0388 15.5324 40.8538 15.5614 40.8157 15.5637C40.7139 15.57 40.6795 15.5925 40.5631 15.5408C40.4613 15.496 40.4289 15.4938 40.3243 15.527C40.2148 15.5619 39.9495 15.4725 39.9047 15.3824C39.8432 15.3824 39.7969 15.3421 39.7064 15.3328C39.6177 15.3243 39.5276 15.2948 39.44 15.2803C39.4097 15.2753 39.2543 15.1964 39.2543 15.1778C39.1872 15.174 38.8638 15.1723 38.8638 15.122C38.7881 15.1114 38.4548 15.0387 38.4548 14.992C38.3563 14.9692 38.1983 14.9626 38.1572 14.8807C38.0774 14.8807 38.0109 14.7214 37.9156 14.6945C37.8937 14.6037 37.8229 14.602 37.8229 14.5088C37.8005 14.5088 37.7669 14.3911 37.7669 14.3602C37.7594 14.3602 37.6372 14.2059 37.5998 14.1743C37.5998 14.0929 37.5253 14.0373 37.5253 13.9511C37.4365 13.9511 37.3728 13.5792 37.3022 13.5792C37.2826 13.5012 37.2245 13.4086 37.172 13.3561C37.1157 13.2995 36.9304 13.2592 36.9304 13.1516C36.8885 13.1199 36.8562 13.1138 36.8562 13.0588C36.783 13.01 36.8289 12.98 36.763 12.9472C36.763 12.9154 36.6905 12.7984 36.6701 12.7984C36.6701 12.7347 36.5543 12.3152 36.5214 12.3152C36.5214 12.2616 36.4536 11.7388 36.447 11.7388C36.4031 11.5949 36.4035 11.3877 36.4244 11.2396C36.4532 11.0349 36.485 10.8482 36.4936 10.6235C36.5061 10.2943 36.643 10.0031 36.6701 9.67548C36.6776 9.58597 36.7191 9.22944 36.7817 9.22944C36.7817 9.15422 36.8366 8.74594 36.8932 8.74594C36.8932 8.66971 36.9119 8.55137 36.9119 8.44866C36.9306 8.44866 36.9676 8.29486 36.9676 8.2625C36.9883 8.2625 37.0608 7.85026 37.0608 7.79185C37.0608 7.71596 37.0952 7.24025 37.1533 7.24025C37.171 7.17142 37.2807 6.79423 37.3022 6.79423C37.3022 6.63411 37.4509 6.47679 37.5068 6.31071C37.5378 6.31071 37.5754 6.09917 37.637 6.06909C37.637 5.99159 37.6966 5.93268 37.7114 5.84619C37.7551 5.84619 37.7906 5.66675 37.8414 5.64153C37.8414 5.57472 37.9259 5.48034 37.9528 5.39991C37.9784 5.39991 38.1015 5.02758 38.1015 4.99077C38.1148 4.99077 38.213 4.74519 38.213 4.71199C38.251 4.71199 38.3806 4.2405 38.3806 4.19142C38.4038 4.19142 38.4307 3.58242 38.4281 3.50636C38.4238 3.37273 38.4238 3.24877 38.4455 3.1412C38.458 3.07856 38.4918 3.09808 38.4918 3.03906C38.5492 2.99328 38.5628 2.94956 38.6037 2.90881C38.6635 2.84863 38.7465 2.82266 38.8081 2.75079C38.8735 2.67448 38.96 2.62254 39.0495 2.59278C39.1822 2.54866 39.7001 2.31586 39.7001 2.29527C39.8206 2.29527 39.6855 2.27678 39.8305 2.27678C39.8305 2.21962 39.8961 2.28057 39.9232 2.27678C39.9232 2.23904 40.1091 2.24812 40.1091 2.1839C40.1556 2.1839 40.3882 2.1444 40.3882 2.10952C40.5866 2.10952 40.8045 2.04902 41.0109 2.02591C41.1344 2.01203 41.1767 1.9801 41.3175 1.99187C41.4304 2.0011 41.5337 1.94858 41.6707 1.92354C41.6707 1.86865 42.1727 1.91287 42.1727 1.83051C42.2545 1.83051 42.7117 1.80654 42.7117 1.73762C42.9051 1.70997 43.1198 1.68846 43.3066 1.62626C43.3401 1.61492 43.4367 1.57264 43.4367 1.55188C43.494 1.54473 43.7156 1.51491 43.7156 1.4775C43.7943 1.4775 44.2733 1.50482 44.2733 1.40312C44.3591 1.40312 44.3985 1.3659 44.5149 1.3659C44.5149 1.35899 44.7279 1.31026 44.7565 1.31026C44.8508 1.31026 44.9095 1.27286 45.0261 1.27286C45.164 1.27286 45.288 1.24638 45.4222 1.21419C45.5154 1.19218 46.2811 1.2226 46.2811 1.25436C46.4354 1.25436 46.5531 1.3659 46.7273 1.3659C46.7273 1.41127 46.7644 1.35766 46.7644 1.40312C46.8483 1.40312 46.8846 1.45691 46.9475 1.50945C47.007 1.55878 47.2513 1.812 47.285 1.812C47.3384 2.03086 47.4182 2.27274 47.6194 2.40704C47.6194 2.44824 47.6814 2.54321 47.7123 2.5743C47.7461 2.60808 47.7534 2.65978 47.7681 2.70458C47.8046 2.72222 47.8427 2.77534 47.8427 2.81592C47.8569 2.81592 48.0114 3.1248 48.0179 3.16093C48.0607 3.40046 47.9314 4.03543 47.7866 4.15435C47.7218 4.19217 47.6609 4.22496 47.5837 4.23251C47.3436 4.25597 47.1639 4.30874 46.8943 4.27514C46.7753 4.26025 45.9422 4.43338 45.8814 4.43338C45.8 4.43338 45.695 4.47037 45.6118 4.47037C45.6118 4.4907 45.4898 4.52627 45.4631 4.52627C45.4631 4.57291 45.238 4.5634 45.1842 4.5634C45.1842 4.53205 45.0027 4.60065 44.9519 4.60065C44.4929 4.60065 44.0719 4.69342 43.6226 4.69342C43.3817 4.69342 42.4515 4.82755 42.4515 4.86075C42.4087 4.86075 42.2469 4.91916 42.2469 4.9538C42.1695 4.9538 42.1271 4.99623 42.03 5.01581C41.9448 5.03279 41.8975 5.13979 41.8194 5.13979C41.7934 5.19215 41.6654 5.2698 41.615 5.2698C41.5879 5.32293 41.549 5.3146 41.5128 5.36269C41.4683 5.42168 41.4078 5.45581 41.3547 5.52984C41.2929 5.57976 41.2307 5.62909 41.1688 5.67869C41.1427 5.76047 41.1167 5.8424 41.0907 5.92392C41.0556 6.03529 41.0065 6.1891 40.9087 6.25507C40.9087 6.29961 40.8174 6.42098 40.7785 6.45007C40.6574 6.54099 40.6855 6.67 40.6855 6.77549C40.7991 6.8318 40.8174 6.9329 40.9605 6.94811C41.0842 6.96147 41.1496 6.92425 41.2617 6.92425C41.2617 6.88709 41.8194 6.90089 41.8194 6.8312C41.93 6.8312 42.7861 6.69623 42.7861 6.64547C42.9516 6.64547 43.1091 6.57361 43.2694 6.53385C43.2694 6.47821 43.5854 6.43619 43.5854 6.38509C43.7046 6.37399 43.8197 6.3866 43.883 6.29223C43.9234 6.29223 44.0519 6.21447 44.0689 6.18069C44.1214 6.16305 44.4037 6.09706 44.4037 6.05041C44.4615 6.05041 44.5627 5.98126 44.6494 5.97395C44.7318 5.96696 44.7724 6.01337 44.8495 6.01337C44.8495 6.01976 44.9889 6.10631 45.0169 6.10631C45.047 6.16724 45.1092 6.16346 45.172 6.18069C45.2675 6.20675 45.2157 6.19833 45.2864 6.25507C45.3471 6.30348 45.354 6.35004 45.4164 6.40383C45.4584 6.43955 45.5373 6.51864 45.5373 6.57109C45.6458 6.64311 45.7792 6.9161 45.7792 7.03585C45.873 7.03585 45.9343 7.40751 45.9836 7.40751C45.9836 7.46029 46.0214 7.54745 46.0767 7.57484C46.0767 7.60064 46.1419 7.74226 46.1509 7.74226C46.1509 7.83176 46.188 7.91666 46.188 8.00238C46.188 8.10281 46.188 8.18257 46.188 8.2999C46.1055 8.2999 46.2237 8.87604 46.1509 8.87604C46.1509 8.96764 46.0683 9.15818 45.965 9.2107C45.965 9.33661 45.6869 9.41518 45.5933 9.41518C45.5933 9.46704 45.4444 9.43577 45.4444 9.48956C45.3213 9.52042 45.2376 9.56394 45.1006 9.57319C44.9 9.58664 44.8251 9.69816 44.6263 9.73121C44.6263 9.73876 44.4101 9.77953 44.3662 9.78708C44.3662 9.84466 44.199 9.84171 44.199 9.87996C44.0441 9.8924 43.6007 9.97283 43.5671 9.97283C43.5671 10.0461 42.0367 10.196 41.9681 10.196C41.9681 10.2271 41.8201 10.2519 41.7824 10.2519C41.7824 10.251 41.1505 10.3494 41.1505 10.2703C41.1171 10.2703 41.0984 10.3098 41.0421 10.3199C40.9706 10.3323 40.8994 10.3447 40.8282 10.3571C40.672 10.3842 40.5274 10.3726 40.3695 10.3632C40.3695 10.4328 39.886 10.4208 39.886 10.4935C39.7948 10.4935 39.7358 10.5305 39.6446 10.5305C39.5702 10.5305 39.4957 10.5305 39.4213 10.5305C39.4213 10.5746 39.3309 10.6309 39.2913 10.642Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M67.51 5.17668C67.51 5.20199 67.3508 5.30705 67.3243 5.30705C67.2937 5.36966 67.1504 5.43857 67.0825 5.45546C67.064 5.49277 66.9757 5.54867 66.9338 5.54867C66.9075 5.60069 66.8402 5.62305 66.7851 5.62305C66.7851 5.6491 66.5988 5.72525 66.562 5.73441C66.4852 5.85124 66.3266 5.89159 66.1902 5.93444C66.0389 5.9815 65.9043 6.05041 65.7442 6.05041C65.7442 6.11305 65.4806 6.10808 65.4318 6.10883C65.3012 6.1101 65.2022 6.10926 65.0935 6.03193C65.0572 5.97789 65.038 5.98965 65.038 5.93907C64.9649 5.88989 65.0105 5.86065 64.9451 5.82745C64.9326 5.7592 64.9003 5.45546 64.8517 5.45546C64.8517 5.38857 64.7831 4.97211 64.7405 4.97211C64.7405 4.92775 64.7271 4.71199 64.703 4.71199C64.7078 4.62838 64.7127 4.54466 64.7172 4.46112C64.722 4.37372 64.6841 4.33405 64.6858 4.23537C64.6884 4.09384 64.6966 3.93323 64.8592 3.9039C65.0021 3.87785 65.134 3.87548 65.2794 3.87548C65.3887 3.85683 65.4277 3.87548 65.5396 3.87548C65.5396 3.91978 65.7442 3.90558 65.7442 3.94986C65.8825 3.94986 65.9664 3.96862 66.0973 3.96862C66.184 3.96862 66.2571 4.00559 66.3391 4.00559C66.4467 4.00559 66.5966 4.03543 66.7294 4.04283C66.7294 4.04399 66.9146 4.10385 66.9432 4.10787C67.082 4.1278 67.1838 4.21024 67.306 4.21024C67.306 4.3031 67.6853 4.29405 67.7662 4.41994C67.8006 4.47332 67.8714 4.74923 67.7703 4.74923C67.7144 4.91875 67.667 5.04817 67.51 5.17668ZM82.1957 2.33266C82.3054 2.33266 82.4184 3.22481 82.3631 3.22481C82.3631 3.25843 82.3685 3.60595 82.3605 3.72698C82.3521 3.85457 82.3241 3.99089 82.2516 4.09847C82.2142 4.12864 82.0285 4.27202 82.0285 4.2658C81.984 4.2658 81.7127 4.42121 81.7127 4.43338C81.5438 4.43338 81.3787 4.54466 81.1922 4.54466C81.1922 4.55146 80.6872 4.60149 80.6231 4.62291C80.3305 4.72057 80.0301 4.75704 79.7418 4.78637C79.7418 4.85883 79.2771 4.81387 79.2771 4.87942C79.086 4.87942 78.906 4.9864 78.6732 5.00019C78.5918 5.0049 78.1804 5.06751 78.1804 5.12087C78.0645 5.12886 77.9386 5.15829 77.8459 5.15829C77.8459 5.19777 77.6421 5.21922 77.5858 5.22342C77.3695 5.23854 77.2682 5.30662 77.0281 5.34401C77.0281 5.37975 76.638 5.45546 76.5818 5.45546C76.5818 5.53901 76.0399 5.57993 75.9368 5.59355C75.8458 5.60581 75.7756 5.67869 75.6894 5.67869C75.6894 5.72137 75.448 5.73441 75.3924 5.73441C75.3924 5.76525 74.9643 5.81527 74.9643 5.88309C74.9275 5.88309 74.7786 5.90964 74.7786 5.93907C74.7033 5.93907 74.671 6.03193 74.5929 6.03193C74.5497 6.1195 74.4253 6.16305 74.4253 6.25507C74.3614 6.29752 74.3016 6.38535 74.2766 6.45947C74.2648 6.49478 74.2001 6.60806 74.1839 6.60806C74.1572 6.68833 74.1314 6.6669 74.1097 6.75682C74.0729 6.77523 74.0165 6.84339 74.0165 6.88709C73.9638 6.92206 73.8491 7.0493 73.8491 7.11023C73.7968 7.13629 73.7577 7.31446 73.7377 7.31446C73.7439 7.38271 73.7502 7.45104 73.7564 7.51912C73.8123 7.5376 73.8678 7.55627 73.9234 7.57484C73.9879 7.65527 74.0615 7.72352 74.1465 7.72352C74.1465 7.80824 74.6818 7.7225 74.7663 7.72418C75.0536 7.72965 75.3191 7.70561 75.5986 7.64367C75.7369 7.61299 75.8634 7.612 76.0059 7.612C76.0059 7.56535 76.2307 7.57484 76.2845 7.57484C76.2845 7.55191 76.8607 7.54139 76.8607 7.46322C76.9192 7.4544 77.158 7.43305 77.158 7.38884C77.2639 7.36229 77.3656 7.29598 77.4743 7.29598C77.4743 7.28363 77.7927 7.12831 77.8553 7.11948C77.921 7.10997 78.0212 7.07536 78.0507 7.0172C78.0847 7.0172 78.1733 6.96862 78.1989 6.94299C78.245 6.89736 78.3347 6.84886 78.4036 6.8312C78.4419 6.77379 78.6267 6.70473 78.6267 6.66395C78.8018 6.66395 78.9277 6.72951 79.0878 6.79776C79.1734 6.83457 79.3515 6.94635 79.3515 7.05436C79.4105 7.05436 79.4232 7.27741 79.4817 7.27741C79.5398 7.45104 79.611 7.59266 79.6493 7.74226C79.6734 7.74226 79.7795 8.07953 79.7883 8.13266C79.7952 8.17216 79.926 8.5043 79.9282 8.5043C79.9282 8.56893 80.0052 9.22944 79.9282 9.22944C79.9282 9.2845 79.858 9.48956 79.8163 9.48956C79.8163 9.51839 79.7578 9.65683 79.7418 9.65683C79.7418 9.74003 79.6941 9.82028 79.6306 9.90475C79.5884 9.96022 79.333 10.0707 79.333 10.1031C79.3096 10.1031 79.1661 10.1819 79.1661 10.196C79.0781 10.196 79.0215 10.2519 78.9335 10.2519C78.904 10.2519 78.7009 10.2989 78.7009 10.326C78.5628 10.326 78.4397 10.345 78.3029 10.3607C77.9926 10.3964 77.1098 10.5596 76.959 10.5544C76.7948 10.549 73.8769 10.9953 73.6492 10.9953C73.3932 10.9953 73.2547 11.0528 72.9795 11.0658C72.808 11.074 72.7004 11.1738 72.5483 11.2247C72.4837 11.2461 72.4125 11.2482 72.3805 11.3113C72.3151 11.3113 72.3349 11.3671 72.2692 11.3671C72.2092 11.4369 72.1472 11.534 72.0833 11.5903C72.0706 11.7021 72.0833 11.7798 72.0833 11.8875C72.1203 11.8875 72.223 12.1042 72.2692 12.1387C72.3204 12.1769 72.3981 12.258 72.4362 12.3152C72.5167 12.3152 72.6326 12.396 72.678 12.4639C72.7327 12.4639 72.8506 12.5645 72.8824 12.6127C72.9631 12.6127 72.982 12.6871 73.0683 12.6871C73.0683 12.7304 73.5391 12.7791 73.6273 12.7841C73.9098 12.8005 74.1994 12.7497 74.4686 12.6658C74.517 12.6505 74.7786 12.6299 74.7786 12.5942C74.8163 12.5847 74.9832 12.5354 74.9832 12.5009C75.0985 12.4732 75.1138 12.4268 75.2433 12.4081C75.2433 12.361 75.4105 12.3807 75.4105 12.3338C75.4447 12.3338 75.5781 12.3036 75.5781 12.2779C75.7113 12.2632 75.7614 12.2685 75.8382 12.1664C75.9557 12.1664 76.0659 12.0363 76.1913 12.0363C76.1913 12.0286 76.499 11.9063 76.5446 11.9063C76.5446 11.8777 76.9956 11.8067 77.0651 11.8008C77.2066 11.789 77.3226 11.9521 77.4276 12.0363C77.4902 12.0863 77.5175 12.1887 77.5858 12.2223C77.5997 12.2782 77.6591 12.5009 77.697 12.5009C77.7359 12.6749 77.8276 12.7684 77.8276 12.9102C77.9083 12.9102 77.8831 13.5973 77.8831 13.7092C77.947 13.7092 77.8831 14.2354 77.8831 14.2669C77.8571 14.2669 77.8399 14.6201 77.8214 14.676C77.7871 14.7779 77.7275 14.9496 77.6413 14.992C77.6413 15.0922 77.4119 15.2381 77.3441 15.3173C77.3041 15.3633 77.1937 15.4383 77.1395 15.4383C77.1395 15.453 77.0334 15.4939 77.0094 15.4939C76.9758 15.5627 76.8226 15.6245 76.749 15.6425C76.7008 15.7388 76.4441 15.8098 76.3589 15.8098C76.3589 15.8699 76.0033 15.9048 75.9497 16.0144C75.8634 16.0144 75.6939 16.109 75.5902 16.1447C75.431 16.1998 75.2995 16.2006 75.1319 16.2006C75.1319 16.2493 74.9832 16.1998 74.9832 16.2562C74.8694 16.2911 74.3233 16.2204 74.2209 16.2159C74.0712 16.2096 73.921 16.2056 73.7708 16.1987C73.6338 16.1924 73.5017 16.1447 73.3659 16.1447C73.3155 16.1447 73.05 16.1514 73.05 16.1075C72.8981 16.1075 72.7544 16.0254 72.6133 16.0052C72.5328 15.9939 72.1386 15.947 72.1386 15.8846C72.0741 15.8846 72.0212 15.843 71.9342 15.8287C71.9342 15.8142 71.7907 15.7358 71.7673 15.7358C71.7296 15.6598 71.4884 15.6442 71.4884 15.5869C71.4564 15.5869 71.284 15.4871 71.284 15.4753C71.1926 15.453 71.0953 15.406 71.0422 15.327C70.9488 15.327 70.9148 15.1778 70.8191 15.1778C70.7464 15.0905 70.6011 15.0227 70.559 14.9361C70.381 14.9361 70.3012 14.634 70.193 14.5399C70.1065 14.464 70.0675 14.3285 69.9826 14.2856C69.9826 14.2297 69.944 14.2253 69.9268 14.1555C69.8588 14.1202 69.9027 14.0595 69.8341 14.0255C69.8141 13.9465 69.7411 13.9007 69.7411 13.8209C69.7207 13.8209 69.648 13.6868 69.648 13.6536C69.5729 13.6536 69.4993 13.0886 69.4993 13.0123C69.4993 12.8606 69.4412 12.6467 69.4107 12.4547C69.3911 12.3303 69.379 12.1977 69.4061 12.0733C69.384 11.8979 69.3769 11.7189 69.4098 11.5436C69.4356 11.4071 69.4249 11.2646 69.4249 11.1255C69.449 11.1255 69.4619 10.9095 69.4619 10.8651C69.4935 10.8651 69.5602 10.4565 69.5645 10.3911C69.5753 10.2044 69.685 10.0444 69.685 9.87997C69.6723 9.87997 69.8341 9.42568 69.8341 9.3967C69.9072 9.3967 69.9161 9.0248 69.9643 9.0248C69.9643 8.99034 69.9974 8.82032 70.02 8.82032C70.02 8.73854 70.0243 8.61424 70.0942 8.57868C70.1121 8.49085 70.1499 8.46884 70.1499 8.39278C70.1654 8.39278 70.2244 8.25409 70.2244 8.22552C70.2954 8.22552 70.3305 7.89101 70.3913 7.89101C70.4197 7.71973 70.471 7.63427 70.5219 7.48189C70.5426 7.41827 70.5962 7.35749 70.5962 7.29598C70.639 7.29598 70.679 6.9102 70.6889 6.84987C70.6198 6.84987 70.5899 6.84499 70.559 6.96147C70.4718 6.98215 70.4109 7.05436 70.3358 7.05436C70.3358 7.07174 70.1869 7.13166 70.1499 7.13797C70.0594 7.15309 68.4907 8.39631 68.4487 8.42992C68.376 8.48816 68.3471 8.52304 68.254 8.52304C68.254 8.56717 67.9853 8.65288 67.9377 8.65288C67.9377 8.70543 67.7518 8.67264 67.7518 8.72726C67.6901 8.73357 67.6281 8.73987 67.5659 8.74594C67.5496 8.77854 67.5117 8.8067 67.4779 8.82408C67.4276 8.85014 67.3594 8.9168 67.3243 8.96908C67.306 8.96908 67.1199 9.05355 67.1199 9.0622C67.0573 9.0622 66.7109 9.14583 66.7109 9.19205C66.6691 9.19809 66.4505 9.2349 66.4505 9.26642C66.3752 9.28534 66.2963 9.3408 66.2274 9.3408C66.2274 9.39627 65.9486 9.42947 65.9486 9.48956C65.7108 9.54908 65.4361 9.63413 65.1684 9.6669C65.071 9.6791 65.0617 9.71354 65.0006 9.78708C64.9584 9.78708 64.9756 9.85475 64.9262 9.87997C64.896 10.0006 64.8366 10.0591 64.827 10.1836C64.8089 10.4174 64.7693 10.6012 64.7405 10.828C64.6705 10.828 64.6473 11.1748 64.6473 11.2554C64.6249 11.2554 64.6305 11.9804 64.5542 11.9804C64.5542 12.054 64.5148 12.4639 64.4429 12.4639C64.4429 12.5425 64.4199 13.2447 64.4057 13.2447C64.4057 13.3163 64.322 13.9137 64.3685 13.9137C64.3928 14.001 64.3747 14.1116 64.3575 14.1986C64.3399 14.2865 64.3498 14.344 64.3498 14.4655C64.3498 14.5037 64.2381 15.2543 64.243 15.3488C64.2484 15.4345 64.2198 15.4851 64.2198 15.5497C64.2071 15.5497 64.1559 15.6467 64.1266 15.6707C64.0617 15.7251 63.9857 15.7619 63.941 15.8287C63.8803 15.8287 63.8172 15.9028 63.7553 15.9028C63.7553 15.9518 63.5898 15.9586 63.5507 15.9586C63.5507 16.0112 62.9902 16.0332 62.8955 16.0332C62.7952 16.0332 62.7451 15.9936 62.6395 15.9586C62.6395 15.9384 62.5226 15.8654 62.4912 15.8654C62.46 15.8052 62.3703 15.7823 62.3236 15.7358C62.2692 15.6814 62.1627 15.6921 62.1192 15.6053C62.0297 15.6053 61.7289 15.3072 61.7289 15.2152C61.6622 15.182 61.6702 14.7617 61.5803 14.7319C61.5676 14.6388 61.5555 14.5457 61.5428 14.4529C61.4759 14.4529 61.5753 13.6587 61.5618 13.6165C61.5168 13.4779 61.6173 13.0234 61.6173 12.8961C61.6173 12.8073 61.5779 12.7463 61.5865 12.6623C61.5957 12.5658 61.636 12.5253 61.636 12.4547C61.636 12.3631 61.6011 11.6088 61.6917 11.6088C61.6917 11.5173 61.7289 11.4667 61.7289 11.3484C61.7418 11.3484 61.7892 10.6786 61.7659 10.5864C61.7283 10.5637 61.4686 10.441 61.4686 10.4376C61.392 10.4376 61.3296 10.326 61.2455 10.326C61.1872 10.2394 61.0804 10.2023 61.0129 10.1216C60.9591 10.0569 60.7995 9.98795 60.7995 9.89845C60.7797 9.89845 60.6983 9.73456 60.6695 9.69422C60.5935 9.69422 60.5064 9.57797 60.4834 9.50805C60.3872 9.45989 60.3158 9.25147 60.3158 9.15482C60.3113 9.15482 60.2045 8.84762 60.2045 8.82032C60.1785 8.82032 60.4464 7.40876 60.4464 7.35188C60.495 7.35188 60.5139 7.05436 60.5763 7.05436C60.5763 6.92113 60.8494 6.75893 60.9666 6.71985C61.0779 6.68244 61.1405 6.67697 61.2775 6.69212C61.3333 6.69842 61.5428 6.66118 61.5428 6.62673C61.639 6.62673 61.7431 6.57671 61.8404 6.55235C61.8907 6.49351 61.9314 6.43443 61.9983 6.39434C62.0629 6.35551 62.0211 6.34029 62.0818 6.31071C62.1151 6.21178 62.1795 6.0996 62.2231 5.98739C62.2771 5.84804 62.2309 5.65683 62.2361 5.50622C62.2477 5.17888 62.2664 4.85277 62.2866 4.52627C62.2948 4.52627 62.1317 4.32766 62.1192 4.30311C62.0672 4.29555 61.8776 4.26227 61.8776 4.22873C61.7752 4.22873 61.7246 4.20521 61.6041 4.25353C61.4845 4.30143 61.3548 4.2905 61.2268 4.29512C61.1719 4.29697 60.9298 4.29512 60.9298 4.34018C60.8427 4.34018 60.7988 4.39599 60.7158 4.39599C60.5884 4.39599 60.4584 4.5634 60.3158 4.5634C60.3158 4.58971 60.1667 4.67503 60.1301 4.67503C60.0712 4.76384 59.9941 4.78721 59.8883 4.80504C59.8883 4.86916 59.4803 4.90924 59.3867 4.91665C59.3867 4.9717 58.8394 4.86075 58.8011 4.86075C58.6739 4.86075 58.5278 4.74923 58.4198 4.74923C58.3187 4.65527 58.1999 4.56644 58.1225 4.45187C57.9766 4.43943 57.9045 4.42052 57.8107 4.49515C57.7298 4.55944 57.7266 4.68509 57.7266 4.77798C57.7266 4.88698 57.6801 4.96917 57.6502 5.0713C57.585 5.29276 57.8309 5.37345 57.8215 5.56715C57.8107 5.78442 57.8432 5.94006 57.8305 6.15943C57.8264 6.23272 57.8264 6.3139 57.8064 6.38509C57.769 6.51829 57.8253 6.66101 57.7879 6.79423C57.7948 7.07628 57.8342 7.37539 57.7778 7.65148C57.7558 7.75966 57.7879 7.8158 57.7879 7.928C57.7879 8.08179 57.7937 8.23156 57.7954 8.38454C57.7969 8.50623 57.7425 8.63666 57.73 8.75939C57.7152 8.90294 57.7135 9.04791 57.7137 9.19205C57.716 9.24416 57.7466 9.56394 57.7137 9.56394C57.7137 9.71145 57.6765 9.83332 57.6765 9.96358C57.6765 10.1439 57.5992 10.2533 57.6145 10.4502C57.6323 10.6826 57.6055 10.9696 57.5773 11.2555C57.5519 11.5165 57.5149 11.7487 57.5323 11.9899C57.5388 12.0794 57.5786 12.4452 57.639 12.4452C57.639 12.6763 57.6765 13.0043 57.6765 13.2355C57.6765 13.3104 57.7137 13.3695 57.7137 13.4399C57.7137 13.5591 57.7141 13.728 57.7098 13.8757C57.7077 13.9604 57.6571 14.6014 57.6205 14.6014C57.6205 14.6632 57.5514 15.0477 57.5091 15.0477C57.5091 15.0794 57.3815 15.3824 57.3789 15.3824C57.3789 15.416 57.349 15.5497 57.3232 15.5497C57.3232 15.6325 57.1932 15.7026 57.1932 15.7915C57.1672 15.8133 56.9514 15.9604 56.9514 15.9401C56.8662 15.9401 56.8027 16.001 56.6992 16.0014C56.6693 16.0016 55.8143 15.996 55.7336 15.996C55.5311 15.996 55.4104 15.9497 55.2226 15.9028C55.143 15.8035 55.0879 15.7348 54.9902 15.6519C54.893 15.5696 54.8347 15.4446 54.7394 15.3732C54.6927 15.3383 54.6462 15.2639 54.6462 15.2152C54.5804 15.2152 54.6051 14.9361 54.5347 14.9361C54.5347 14.8945 54.4338 14.639 54.4046 14.639C54.3955 14.5848 54.3639 14.3413 54.3301 14.3413C54.3301 14.1617 54.3301 13.9822 54.3301 13.8024C54.2796 13.8024 54.2671 13.3935 54.2187 13.3935C54.2187 13.3462 54.1313 13.0216 54.0887 13.0216C54.0732 12.9749 53.9951 12.7427 53.9771 12.7427C53.9499 12.6367 53.885 12.5766 53.8469 12.4639C53.7918 12.4274 53.6982 12.3219 53.6982 12.2593C53.6167 12.2185 53.6089 11.9619 53.531 11.9619C53.531 11.8712 53.4073 11.8231 53.3821 11.7201C53.3032 11.6611 53.2918 11.5547 53.215 11.5159C53.215 11.4781 53.1014 11.3104 53.0661 11.2928C53.0661 11.1896 52.9817 11.178 52.9176 11.0975C52.8946 11.0688 52.7713 10.9024 52.7689 10.9024C52.7689 10.8746 52.7367 10.7908 52.7128 10.7908C52.7128 10.7339 52.6599 10.6444 52.6013 10.5956C52.4841 10.4979 52.5052 10.3998 52.4339 10.2842C52.3853 10.2052 52.304 10.1027 52.304 10.0287C52.2642 10.0287 52.2698 9.87265 52.211 9.84272C52.211 9.7343 52.0252 9.68959 52.0252 9.58245C51.9451 9.54193 51.8367 9.38392 51.765 9.30382C51.7104 9.30382 51.7091 9.26348 51.6613 9.23071C51.5991 9.18742 51.569 9.18548 51.4914 9.19792C51.4597 9.20298 51.393 9.20801 51.393 9.24794C51.3108 9.24794 51.3351 9.30382 51.2631 9.30382C51.2631 9.35384 51.2071 9.33678 51.2071 9.3967C51.1458 9.42805 51.1699 9.48158 51.1699 9.54529C51.1699 9.58722 51.1551 9.86146 51.1142 9.86146C51.1142 9.94021 50.9625 10.5864 50.947 10.5864C50.947 10.7633 50.8168 11.0053 50.8168 11.1999C50.7985 11.1999 50.7054 11.4375 50.7054 11.4785C50.6258 11.4785 50.689 11.9619 50.6122 11.9619C50.6122 12.0063 50.6641 12.4268 50.6309 12.4268C50.6309 12.7228 50.5752 12.872 50.5752 13.147C50.5752 13.2973 50.5752 13.4474 50.5752 13.5975C50.5752 13.7368 50.5074 13.8752 50.4635 14.0066C50.4582 14.058 50.4463 14.3602 50.4078 14.3602C50.4078 14.4459 50.3521 14.4747 50.3521 14.5647C50.3334 14.5647 50.2406 14.8269 50.2406 14.8622C50.0797 14.9391 50.0853 15.209 49.8213 15.1433C49.7619 15.1283 49.1819 15.0664 49.0833 15.0664C48.9553 15.0664 48.8374 15.0477 48.7163 15.0477C48.7163 15.0071 48.2401 15.0254 48.1771 14.8989C48.0856 14.879 48.0258 14.8863 47.9727 14.8063C47.9187 14.8063 47.9083 14.7433 47.861 14.7039C47.7416 14.6039 47.7465 14.4505 47.7235 14.2894C47.7031 14.1459 47.6136 14.0778 47.6088 13.928C47.6058 13.8335 47.619 13.7381 47.6334 13.6448C47.6547 13.5084 47.6067 13.3928 47.5931 13.2596C47.5835 13.1621 47.6286 13.0691 47.648 12.9754C47.6715 12.8606 47.636 12.8028 47.6286 12.6871C47.6241 12.6144 47.7011 12.1849 47.6751 12.1849C47.6779 12.1341 47.6758 11.8319 47.7123 11.8319C47.7123 11.7907 47.7291 11.6647 47.7681 11.6647C47.8285 11.3953 47.8619 11.1499 47.886 10.8403C47.9144 10.4716 48.0654 10.2999 48.0654 9.9171C48.1336 9.9171 48.1039 9.47108 48.1771 9.47108C48.1771 9.30483 48.2885 9.12507 48.2885 8.95042C48.3217 8.95042 48.4101 8.40606 48.4372 8.3184C48.4372 8.10996 48.4949 7.8721 48.5512 7.63173C48.5867 7.48129 48.619 7.33002 48.6575 7.18033C48.6984 7.02215 48.6907 6.88669 48.6829 6.72362C48.6756 6.57008 48.6846 6.41603 48.718 6.26557C48.7492 6.12563 48.7317 5.99723 48.7451 5.85619C48.7586 5.71255 48.7535 5.56648 48.7535 5.42143C48.7535 5.32695 48.806 5.20829 48.7939 5.12012C48.7548 4.8305 48.7356 4.56366 48.7163 4.28436C48.6855 4.28436 48.6048 4.03416 48.6048 3.98702C48.5446 3.98702 48.5235 3.355 48.5861 3.355C48.5861 3.28533 48.6268 3.22321 48.6358 3.12581C48.6448 3.02596 48.6405 3.0147 48.6326 2.88107C48.6179 2.63188 48.6975 2.43225 48.6975 2.19315C48.6975 2.04523 48.7718 1.88722 48.7718 1.71905C48.7606 1.71905 48.9951 1.33672 48.9951 1.29152C49.0575 1.29152 49.0906 1.17998 49.1623 1.17998C49.2032 1.12888 49.3669 1.0392 49.3669 1.01274C49.4437 1.01274 49.4816 0.968179 49.5713 0.938358C49.5713 0.918348 49.7499 0.871293 49.7944 0.863978C49.7944 0.741683 50.3734 0.844398 50.4683 0.8501C50.6157 0.858921 50.6892 0.87708 50.8168 0.919854C50.9423 0.961379 51.0202 1.07283 51.1514 1.1056C51.1514 1.17847 51.449 1.20285 51.449 1.25436C51.5101 1.25436 51.6067 1.29126 51.6349 1.34724C51.702 1.34724 51.802 1.53735 51.802 1.58886C51.9352 1.58886 51.906 2.18323 51.909 2.29064C51.9103 2.3352 51.906 2.55582 51.9507 2.55582C51.9507 2.74912 51.9544 2.93906 51.9694 3.13194C51.9742 3.19565 52.0086 3.74546 52.0066 3.74546C51.9393 3.94592 52.0066 4.18242 52.0066 4.359C52.0363 4.359 52.1181 4.62393 52.1181 4.67503C52.173 4.67503 52.1235 4.85479 52.1187 4.89395C52.1095 4.96917 52.2483 5.04834 52.2483 5.12087C52.318 5.15659 52.3597 5.29276 52.3597 5.36269C52.3675 5.36269 52.4714 5.5306 52.4714 5.54867C52.5551 5.58985 52.5547 5.69029 52.6386 5.75307C52.6386 5.83274 52.7554 5.91678 52.7875 6.01336C52.8533 6.21213 53.1777 6.33535 53.1777 6.53385C53.1932 6.53385 53.2522 6.63538 53.2522 6.66395C53.3419 6.70892 53.4123 6.86566 53.4936 6.93348C53.5379 6.97029 53.6238 7.07495 53.6238 7.12874C53.6971 7.19731 53.9211 7.34557 53.9211 7.44474C53.985 7.47617 54.0511 7.59309 54.07 7.66788C54.1341 7.72293 54.3488 7.90018 54.3488 7.9839C54.4863 8.07549 54.5311 8.35091 54.7387 8.35704C54.8211 8.35941 54.8403 8.37133 54.8878 8.2999C54.9334 8.2999 54.8796 8.2625 54.925 8.2625C54.9545 8.13558 55.0085 8.03069 55.0272 7.93725C55.0354 7.89732 55.095 7.79789 55.0552 7.79789C55.0477 7.66073 55.0552 7.51828 55.0552 7.40751C55.0931 7.40751 55.1421 6.81775 55.1484 6.71985C55.2228 6.71985 55.1514 6.48451 55.1393 6.44206C55.1045 6.31895 55.1484 6.24515 55.1484 6.14347C55.1587 6.14347 55.2039 5.40454 55.2039 5.32544C55.2039 5.23643 55.2129 4.65626 55.2596 4.65626C55.2596 4.57584 55.2921 4.02409 55.334 4.02409C55.334 3.93641 55.3564 3.57822 55.4272 3.57822C55.4431 3.4493 55.4894 3.38903 55.4263 3.26515C55.4001 3.21338 55.4087 2.83443 55.4457 2.83443C55.4296 2.54489 55.4642 2.3557 55.4642 2.0723C55.5262 2.0723 55.4393 1.77502 55.5014 1.77502C55.5208 1.61804 55.5597 1.55986 55.6594 1.44028C55.7792 1.29681 55.9599 1.21292 56.1519 1.14276C56.1929 1.14276 56.4309 1.10687 56.4309 1.14276C56.5079 1.14276 56.6693 1.1741 56.7098 1.25436C56.9137 1.25436 57.1136 1.36615 57.2487 1.52391C57.2877 1.56911 57.3602 1.60584 57.3602 1.66333C57.3961 1.66333 57.3927 1.71662 57.4346 1.73762C57.4346 1.80697 57.5153 1.84395 57.5648 1.88638C57.5648 1.93673 57.6136 1.98725 57.6577 2.01657C57.6577 2.04104 57.6986 2.14668 57.7137 2.14668C57.7137 2.24023 57.7507 2.34694 57.7507 2.43477C57.7507 2.54489 57.9041 2.80501 58.0601 2.78651C58.1664 2.77364 58.1793 2.68483 58.2526 2.6302C58.2526 2.59885 58.3297 2.48142 58.3458 2.48142C58.3458 2.40007 58.4295 2.31837 58.4835 2.25828C58.5661 2.1671 58.666 1.99917 58.7843 1.95824C58.9896 1.88722 59.4745 1.83007 59.5724 1.75627C59.5894 1.6893 59.6927 1.51465 59.7768 1.51465C59.8117 1.44262 60.2601 1.35101 60.2601 1.34724C60.4169 1.36043 60.8018 1.23495 60.9109 1.19863C61.108 1.13292 63.402 0.886656 63.402 0.994234C63.4988 0.994234 64.5509 0.996772 64.6546 1.00155C64.7854 1.00785 66.2274 1.06694 66.2274 1.08712C66.2827 1.08712 66.3212 1.12619 66.3795 1.12032C66.4654 1.11164 67.1717 1.23588 67.3011 1.23588C67.5052 1.23588 67.6008 1.2947 67.8127 1.30109C67.8925 1.30369 68.6998 1.44976 68.6998 1.4775C68.7673 1.4775 68.8607 1.56197 68.9416 1.58886C68.9416 1.59727 69.2682 1.6519 69.3136 1.66333C69.3136 1.69896 69.5877 1.812 69.629 1.812C69.629 1.86218 69.8152 1.92649 69.8152 2.01657C69.8864 2.05171 70.0383 2.17843 70.0383 2.25828C70.1848 2.33014 70.1798 2.55666 70.3171 2.64859C70.3171 2.72054 70.3731 2.69657 70.3731 2.77879C70.4094 2.77879 70.3787 2.82812 70.4288 2.85317C70.446 2.94033 70.5043 3.07772 70.5772 3.1132C70.5772 3.17607 70.6334 3.18758 70.6515 3.26222C70.6919 3.26222 70.6943 3.37232 70.7014 3.40459C70.7229 3.50468 70.7821 3.64858 70.7821 3.72698C70.8548 3.72698 70.912 3.99618 70.912 4.0614C70.912 4.24639 70.9865 4.4328 70.9865 4.60065C70.9865 4.69015 71.0235 4.77529 71.0235 4.86075C71.0235 4.95867 71.0235 5.08475 71.0235 5.21391C70.9637 5.21391 70.9641 5.71255 70.932 5.80686C70.8752 5.97326 70.7659 6.44039 71.087 6.30759C71.1453 6.28364 71.2466 6.20423 71.2466 6.14347C71.3182 6.08 71.4697 5.97242 71.4697 5.88309C71.5478 5.84341 71.5353 5.71987 71.6184 5.67869C71.6184 5.59237 71.6928 5.57345 71.6928 5.49277C71.7752 5.43831 71.7748 5.31165 71.8602 5.2698C71.8602 5.23342 71.9452 5.08391 71.9717 5.08391C71.9717 5.02926 72.0932 4.74923 72.1203 4.74923C72.1203 4.70192 72.2099 4.37748 72.2318 4.37748C72.2596 4.18083 72.3665 4.10854 72.3992 3.91264C72.4334 3.91264 72.4549 3.80136 72.4549 3.76397C72.5167 3.73288 72.5072 3.67403 72.5668 3.62444C72.6389 3.56434 72.629 3.52906 72.641 3.43871C72.6539 3.34155 72.7153 3.25968 72.7153 3.18782C72.7906 3.14959 72.7757 3.07142 72.8269 3.02032C72.8897 2.95754 72.9065 2.88862 72.9939 2.81592C72.9939 2.78147 73.0191 2.68567 73.05 2.68567C73.05 2.51354 73.2947 2.4125 73.4216 2.36964C73.4216 2.3352 73.833 2.27678 73.8864 2.27678C73.8864 2.26559 74.3244 2.16516 74.3698 2.16516C74.4602 2.16516 75.0017 2.12927 75.0017 2.09095C75.1676 2.09095 75.8811 1.88638 75.9125 1.88638C75.9125 1.83007 78.5223 1.19863 78.6267 1.19863C78.6267 1.14779 79.7418 0.90617 79.7418 0.88246C79.7928 0.878006 80.0579 0.861202 80.0579 0.80808C80.1485 0.80808 80.1907 0.752527 80.2812 0.752527C80.2812 0.7564 80.9134 0.604435 80.9134 0.659494C80.97 0.659494 81.1365 0.663108 81.1365 0.715133C81.2243 0.715133 81.2755 0.826734 81.3596 0.826734C81.4422 0.921532 81.5255 1.01274 81.6384 1.01274C81.6384 1.02844 81.7047 1.0451 81.731 1.07786C81.7749 1.13208 82.0158 1.70569 82.0354 1.8347C82.0475 1.91614 82.1845 2.2898 82.1957 2.33266Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M107.589 11.4415C107.662 11.4415 108.009 11.4971 108.1 11.4971C108.135 11.4971 108.24 11.4316 108.24 11.4971C108.36 11.537 108.432 11.5902 108.537 11.5902C108.65 11.5902 108.717 11.6405 108.804 11.632C108.889 11.624 108.964 11.5971 109.049 11.6507C109.112 11.69 109.152 11.7848 109.151 11.8493C109.149 11.9096 109.148 11.9836 109.113 12.0362C109.08 12.0638 107.593 12.2592 107.533 12.2592C107.533 12.3525 105.929 12.4353 105.745 12.4523C105.696 12.4572 105.544 12.4487 105.544 12.408C105.431 12.4004 105.201 12.4366 105.172 12.3524C105.123 12.3524 105.139 12.2966 105.08 12.2966C105.08 12.2569 104.987 12.2596 104.956 12.2531C104.921 12.2462 104.745 12.1483 104.745 12.1291C104.622 12.0991 104.282 11.9067 104.326 11.7429C104.355 11.632 104.444 11.5401 104.536 11.4753C104.66 11.3868 104.766 11.4114 104.912 11.423C104.912 11.3664 105.188 11.4469 105.228 11.4536C105.261 11.4591 105.377 11.4568 105.377 11.4971C105.45 11.4898 106.499 11.423 106.753 11.423C106.753 11.4887 107.41 11.3504 107.589 11.4415ZM86.9177 5.10233C87.0541 5.13981 87.058 5.37715 87.0747 5.48852C87.0868 5.57004 87.1285 6.19912 87.1593 6.19912C87.1552 6.27436 87.1634 6.86855 87.1221 6.86855C87.1221 7.06622 87.0664 7.20641 87.0664 7.3703C86.9923 7.40728 87.0476 7.46267 86.9734 7.50058C86.9734 7.55353 86.8495 7.6817 86.8058 7.71421C86.6801 7.80859 86.5758 7.82516 86.4078 7.79717C86.2642 7.77346 86.1227 7.87323 85.9777 7.8902C85.9075 7.8987 85.6349 7.89347 85.6349 7.81658C85.4363 7.65732 85.5697 7.45989 85.6162 7.27735C85.6403 7.27735 85.6721 7.15219 85.6721 7.12868C85.7274 7.12868 85.7354 6.94267 85.7836 6.94267C85.7836 6.88493 85.88 6.6807 85.9508 6.64541C85.9508 6.54666 86.0437 6.45715 86.0437 6.3479C86.1065 6.3479 86.1025 6.10475 86.1739 6.06903C86.1739 5.98792 86.2767 5.92808 86.3041 5.84613C86.3385 5.74318 86.3742 5.71712 86.397 5.62299C86.4052 5.62299 86.5523 5.35531 86.5644 5.30699C86.6214 5.30699 86.5629 5.19537 86.6201 5.19537C86.6201 5.08082 86.8357 5.0176 86.9177 5.10233ZM88.0143 1.4587C88.103 1.4587 88.1514 1.60998 88.2187 1.6447C88.2271 1.67756 88.6445 2.27126 88.7332 2.3511C88.7854 2.39833 88.8694 2.49373 88.8694 2.55576C88.9173 2.57928 89.0185 2.74779 89.0185 2.7973C89.0748 2.82555 89.0966 2.90756 89.111 2.97387C89.134 3.07659 89.2597 3.13348 89.2597 3.22475C89.31 3.24956 89.3526 3.37351 89.3526 3.42932C89.3866 3.42932 89.427 3.55546 89.427 3.59665C89.4888 3.59665 89.5211 4.34743 89.5295 4.41467C89.5527 4.60242 89.6502 4.74657 89.6502 4.91659C89.7192 4.91659 89.7268 5.34395 89.7803 5.34395C89.7803 5.38808 89.8942 5.86463 89.9105 5.86463C89.9105 5.94573 89.9518 6.3479 90.0037 6.3479C90.0078 6.38529 90.0321 6.608 90.059 6.608C90.059 6.69903 90.0962 6.72903 90.0962 6.8034C90.0962 6.92116 90.1175 7.2312 90.3141 7.25558C90.4232 7.26902 90.5237 7.06706 90.5237 6.99857C90.5508 6.99857 90.5889 6.88747 90.5981 6.84981C90.6986 6.7988 90.6866 6.61893 90.7845 6.57104C90.8213 6.45715 90.8983 6.39663 90.9331 6.29217C90.9671 6.18905 90.9977 6.13222 91.0814 6.06903C91.0814 6.02557 91.1554 5.92025 91.1933 5.90177C91.2109 5.83268 91.249 5.82722 91.249 5.77175C91.2774 5.7526 91.3602 5.6714 91.3602 5.64147C91.4768 5.64147 91.5042 5.43684 91.6208 5.43684C91.6522 5.37354 91.8777 5.18597 91.9059 5.10864C91.9338 5.03105 91.9293 4.98047 92.0111 4.95375C92.0111 4.94727 92.1462 4.84221 92.1785 4.84221C92.1785 4.81381 92.3478 4.70496 92.3829 4.69336C92.4726 4.66361 92.569 4.64588 92.569 4.60059C92.6374 4.60059 92.9709 4.35492 92.9963 4.30305C93.0918 4.30305 93.1258 4.15429 93.2194 4.15429C93.2474 4.11186 93.4425 4.02655 93.4425 4.00553C93.5365 3.98268 93.5467 3.95107 93.6469 3.93132C93.6732 3.87736 93.87 3.81518 93.87 3.78239C93.8974 3.78239 93.9815 3.75046 93.9815 3.72692C94.0533 3.70885 94.2083 3.64364 94.242 3.57816C94.3821 3.57816 94.5497 3.40378 94.6973 3.38276C94.8413 3.36208 94.9523 3.27981 95.0971 3.2434C95.0971 3.2235 95.3215 3.15919 95.3572 3.15037C95.3572 3.14114 95.6694 3.08061 95.723 3.07011C95.8039 3.05398 95.8559 3.02766 95.9336 3.00161C95.9725 2.98859 96.1008 2.92731 96.1008 2.90875C96.3828 2.86167 96.9773 2.68561 97.0115 2.68561C97.0115 2.66418 97.2095 2.64854 97.2534 2.64854C97.2534 2.62676 97.4061 2.59273 97.4391 2.59273C97.4391 2.57213 97.7422 2.55576 97.7923 2.55576C97.7923 2.4723 98.6878 2.41993 98.7642 2.41976C98.8554 2.41959 98.9189 2.42548 98.9916 2.42548C99.0942 2.42548 99.1549 2.38824 99.2795 2.38824C99.3793 2.38824 99.5433 2.40732 99.647 2.46262C99.7163 2.49986 99.786 2.537 99.8559 2.57424C99.88 2.62298 99.9674 2.61164 99.9674 2.64854C100.086 2.67838 100.169 2.80117 100.24 2.90262C100.306 2.99657 100.399 3.02532 100.482 3.11945C100.55 3.19744 100.597 3.28501 100.674 3.33654C100.674 3.40511 100.711 3.36595 100.711 3.44789C100.711 3.54118 100.81 3.58589 100.878 3.64306C100.995 3.74037 100.989 3.94124 101.12 4.00553C101.175 4.09471 101.183 4.22152 101.194 4.32155C101.251 4.32155 101.31 4.58561 101.324 4.63755C101.388 4.63755 101.413 5.05904 101.426 5.14939C101.451 5.33513 101.417 5.52382 101.417 5.67863C101.417 5.77594 101.439 6.29217 101.362 6.29217C101.362 6.33107 101.352 6.51505 101.324 6.51505C101.324 6.59834 101.269 6.64458 101.269 6.7198C101.229 6.7198 101.151 7.15809 101.083 7.20306C101.083 7.25809 101.05 7.2644 101.008 7.29592C100.964 7.43181 100.864 7.48545 100.823 7.62453C100.797 7.70825 100.771 7.68925 100.748 7.7791C100.697 7.82406 100.599 7.87626 100.599 7.94642C100.558 7.96736 100.488 8.06762 100.488 8.11386C100.383 8.16597 100.345 8.29984 100.228 8.29984C100.228 8.32463 99.6681 8.33674 99.6141 8.33674C99.6141 8.39692 99.3701 8.30817 99.3354 8.29984C99.2937 8.21832 99.2563 8.24394 99.196 8.24394C99.1209 8.24394 98.7405 8.26539 98.7405 8.16956C98.6575 8.16956 98.6114 8.06325 98.5174 8.03948C98.4937 7.98971 98.3789 7.94642 98.3317 7.94642C98.3317 7.9376 98.2261 7.86322 98.1951 7.84683C98.1516 7.82372 98.1045 7.80414 98.0673 7.77077C98.0415 7.74792 98.0245 7.71967 98.0155 7.68632C97.9778 7.67849 97.9479 7.65874 97.926 7.62698C97.8442 7.50182 97.8154 7.28424 97.8405 7.14043C97.8453 7.11144 97.8668 6.80173 97.8668 6.68238C97.8935 6.68238 97.8679 6.49666 97.8483 6.49666C97.8483 6.41597 97.9016 5.99061 97.963 5.87386C98.0234 5.75888 98.0155 5.6524 98.0155 5.52062C98.0155 5.43892 97.9608 5.2515 97.8853 5.21385C97.8853 5.14409 97.742 5.08385 97.6811 5.08385C97.5823 5.08385 97.4029 5.07165 97.3091 5.10233C97.3091 5.1231 97.1538 5.18016 97.1142 5.18597C97.0206 5.19941 96.9173 5.23261 96.8259 5.23261C96.8259 5.2484 96.6918 5.29849 96.6585 5.30699C96.6585 5.33799 96.4519 5.36347 96.3981 5.38137C96.2837 5.41952 96.255 5.51877 96.138 5.54861C96.138 5.6129 95.9521 5.60367 95.9521 5.64147C95.8469 5.66249 95.8254 5.71041 95.7292 5.73436C95.6416 5.84387 95.5618 5.86463 95.4686 5.97615C95.3269 6.02305 95.2855 6.06464 95.1711 6.16181C95.1711 6.24451 95.0327 6.30209 94.9854 6.35713C94.9064 6.44958 94.8232 6.4711 94.7436 6.57104C94.6861 6.57104 94.4834 6.77358 94.4834 6.83114C94.3985 6.88796 94.384 6.97084 94.2978 7.0358C94.2978 7.11691 94.1676 7.15725 94.1676 7.24019C94.071 7.32449 94 7.39173 93.9628 7.50058C93.9152 7.52452 93.7958 7.66892 93.7958 7.72346C93.727 7.75816 93.665 7.89122 93.6469 7.96534C93.574 8.02375 93.5514 8.09645 93.4795 8.1326C93.4795 8.19732 93.4238 8.22589 93.4238 8.28119C93.4074 8.28119 93.2743 8.45264 93.2659 8.49484C93.2568 8.5414 93.1738 8.80159 93.145 8.80159C93.145 8.94271 93.0219 9.05751 93.0086 9.25419C92.9999 9.37915 93.029 9.50018 93.0193 9.62903C93.0174 9.65946 92.9746 9.76828 93.0337 9.76828C93.0337 9.87528 93.1658 9.91117 93.2194 9.99142C93.3377 10.0211 93.3655 10.098 93.4696 10.1463C93.5195 10.1694 93.549 10.1892 93.5822 10.2331C93.6228 10.2873 93.6719 10.2657 93.7026 10.3259C93.7902 10.3259 93.8311 10.4747 93.907 10.4747C93.949 10.5569 94.0721 10.5608 94.1394 10.6422C94.1992 10.7136 94.5951 10.9074 94.5951 10.9952C94.6579 10.9952 94.7629 11.0889 94.7997 11.144C94.8634 11.144 94.823 11.2183 94.911 11.2183C94.9396 11.2183 95.0411 11.2305 95.0411 11.2553C95.093 11.2553 95.1827 11.3154 95.2085 11.3671C95.2838 11.3671 95.3471 11.4759 95.4316 11.4971C95.4316 11.5753 95.7662 11.6085 95.7662 11.6646C95.8764 11.6646 95.9784 11.776 96.0825 11.776C96.0825 11.8371 96.4171 11.862 96.4171 11.9247C96.5748 11.9346 96.7123 11.9426 96.8631 11.9926C97.0118 12.0426 97.1396 12.092 97.2966 12.092C97.3926 12.092 97.8111 12.11 97.8111 12.0732C97.8846 12.0732 98.4057 12.0802 98.4057 12.0362C98.5079 12.0362 98.551 11.9991 98.6474 11.9991C98.6474 11.9478 98.9002 11.9476 98.9637 11.9432C98.9637 11.9148 99.2171 11.7947 99.261 11.7947C99.2821 11.7522 99.3354 11.7562 99.3354 11.7201C99.4237 11.7201 99.448 11.6537 99.5026 11.5902C99.5618 11.5902 99.7526 11.4734 99.7907 11.423C99.8505 11.3436 99.9751 11.2183 100.079 11.2183C100.098 11.1788 100.218 11.1254 100.265 11.1254C100.265 11.071 100.449 11.0923 100.488 11.1067C100.488 11.1523 100.525 11.0986 100.525 11.144C100.612 11.144 100.63 11.223 100.674 11.2927C100.747 11.3171 100.779 11.3088 100.804 11.3856C100.846 11.4067 100.83 11.4415 100.86 11.4415C100.86 11.4992 100.971 11.5427 100.971 11.5713C101.127 11.6919 101.362 11.499 101.362 11.3671C101.507 11.3671 101.367 10.1959 101.436 10.1959C101.436 10.0537 101.548 9.88578 101.548 9.73115C101.607 9.73115 101.603 9.30376 101.677 9.30376C101.677 9.15997 101.757 9.05054 101.808 8.89464C101.859 8.89464 101.861 8.50424 101.938 8.50424C101.938 8.44567 102.071 8.0208 102.105 8.0208C102.105 7.97207 102.246 7.53754 102.272 7.53754C102.272 7.51108 102.308 7.38878 102.328 7.38878C102.328 7.36359 102.399 7.20306 102.421 7.20306C102.434 7.12573 102.562 6.79417 102.607 6.79417C102.607 6.6807 102.724 6.56404 102.747 6.45016C102.76 6.38529 102.83 6.31797 102.83 6.25501C102.862 6.25501 102.919 6.07222 102.979 6.03187C102.979 5.9743 102.995 6.00162 103.016 5.92025C103.041 5.92025 103.047 5.80932 103.055 5.77747C103.089 5.63652 103.093 5.48424 103.053 5.34395C103.053 5.23386 103.025 5.14855 103.015 5.04215C103.008 4.96743 103.053 4.87078 103.053 4.76783C103.076 4.76783 103.13 4.43333 103.184 4.43333C103.184 4.36314 103.306 4.06134 103.369 4.06134C103.393 3.9677 103.427 3.77357 103.509 3.7081C103.571 3.65844 103.632 3.50378 103.722 3.50378C103.78 3.41764 103.861 3.39999 103.937 3.30829C104.02 3.20584 104.071 3.16902 104.187 3.16902C104.187 3.11129 104.57 3.07851 104.652 3.05196C104.801 3.0043 104.95 2.95664 105.098 2.90875C105.265 2.90875 105.372 2.88781 105.535 2.87639C105.722 2.86294 107.143 2.60071 107.143 2.63014C107.311 2.63014 108.545 2.37253 108.83 2.35564C109.091 2.3406 109.364 2.20478 109.653 2.19015C109.746 2.18502 110.359 2.16704 110.359 2.10946C110.611 2.10946 110.784 2.09089 110.991 2.09089C110.991 2.04055 111.426 2.01651 111.502 2.01651C111.707 2.01651 112.669 1.83296 112.739 1.82119C112.827 1.80648 113.057 1.79994 113.153 1.75691C113.244 1.71486 114.041 1.55746 114.133 1.55182C114.133 1.49005 114.467 1.44568 114.467 1.38449C114.536 1.38449 115.007 1.3434 115.007 1.3102C115.155 1.28868 115.257 1.26943 115.4 1.31751C115.467 1.34004 115.534 1.36231 115.601 1.38449C115.652 1.44088 115.727 1.57032 115.806 1.57032C115.842 1.61865 115.936 1.69176 115.936 1.73756C116.034 1.81952 116.123 1.93734 116.215 1.99786C116.215 2.06174 116.289 2.09266 116.289 2.1651C116.337 2.1651 116.393 2.35741 116.456 2.38824C116.495 2.50617 116.591 2.57381 116.624 2.70452C116.644 2.70452 116.735 2.92034 116.735 2.96462C116.759 2.96462 116.804 3.22475 116.847 3.22475C116.841 3.29889 116.954 4.74918 116.847 4.74918C116.847 4.85708 116.838 4.93339 116.736 4.99979C116.642 5.06031 116.511 5.1246 116.41 5.09282C116.308 5.06072 116.31 5.08385 116.215 5.08385C116.051 5.08385 115.914 5.06543 115.754 5.02795C115.569 4.98426 114.839 4.93507 114.598 4.93507C114.467 4.97206 114.329 4.97206 114.194 4.97206C114.067 4.97206 113.986 5.00945 113.873 5.00945C113.757 5.00945 113.666 5.03047 113.554 5.04811C113.439 5.06619 113.379 5.03215 113.287 5.0187C113.256 5.01425 113.11 5.03804 113.11 5.06509C112.966 5.06509 112.767 5.02955 112.631 5.07602C112.532 5.10988 111.904 5.10485 111.804 5.13048C111.734 5.14831 111.624 5.18343 111.567 5.17663C111.44 5.16092 111.364 5.15361 111.24 5.19242C111.114 5.23175 111.024 5.19537 110.926 5.19537C110.818 5.19537 110.68 5.20991 110.545 5.23261C110.545 5.27125 110.155 5.26957 110.097 5.27076C110.016 5.27295 109.374 5.34606 109.374 5.34395C109.28 5.3528 108.519 5.39875 108.519 5.39985C108.291 5.42212 108.21 5.4902 107.986 5.49902C107.897 5.50231 106.585 5.66585 106.585 5.71585C106.458 5.74755 106.478 5.79234 106.381 5.87386C106.247 5.98523 106.163 6.04154 106.027 6.14341C106.027 6.20895 105.925 6.30258 105.898 6.38503C105.853 6.38503 105.868 6.49666 105.823 6.49666C105.823 6.59793 105.545 6.97151 105.538 7.06058C105.523 7.25222 105.543 7.35769 105.693 7.48184C105.902 7.48184 106.083 7.53754 106.307 7.53754C106.307 7.57681 106.563 7.56781 106.604 7.56545C106.76 7.5568 106.883 7.58201 107.05 7.59344C107.265 7.59344 107.462 7.61547 107.687 7.64974C107.8 7.66657 107.87 7.63042 107.961 7.63042C107.961 7.60009 108.27 7.5974 108.312 7.59865C108.366 7.60058 108.88 7.51906 108.965 7.51906C108.965 7.53754 109.397 7.41585 109.448 7.40746C109.573 7.22061 109.768 7.22657 109.968 7.27735C109.968 7.27591 110.132 7.35182 110.155 7.35182C110.18 7.38493 110.322 7.46923 110.322 7.48184C110.356 7.48184 110.471 7.52158 110.471 7.55622C110.562 7.55622 110.594 7.69176 110.656 7.72346C110.656 7.767 111.27 8.70578 111.27 8.7831C111.359 8.82917 111.363 8.99615 111.363 9.08062C111.363 9.19737 111.4 9.25116 111.4 9.35C111.4 9.48783 111.402 9.62566 111.402 9.76351C111.402 9.86771 111.386 10.3632 111.288 10.3632C111.288 10.4338 111.258 10.4877 111.196 10.5398C111.114 10.6079 110.917 10.8172 110.917 10.9395C110.878 11.0322 110.526 11.2406 110.526 11.2742C110.372 11.2742 110.245 11.3246 110.099 11.3734C110.001 11.4058 109.915 11.4785 109.839 11.4785C109.839 11.516 109.694 11.5654 109.662 11.6087C109.533 11.7797 109.761 11.9983 109.894 12.1199C109.965 12.1849 110.038 12.2454 110.061 12.3338C110.191 12.3592 110.284 12.4731 110.322 12.5942C110.322 12.8475 110.278 14.0624 110.229 14.0624C110.229 14.1294 110.008 14.8324 109.852 14.8932C109.771 14.9247 109.037 15.2895 108.891 15.2895C108.891 15.442 106.027 15.7206 105.675 15.719C105.623 15.7187 105.098 15.7488 105.098 15.6796C104.919 15.6796 104.703 15.6223 104.54 15.5683C104.466 15.5437 103.634 15.3588 103.555 15.1964C103.506 15.1964 103.385 15.1004 103.351 15.0571C103.316 15.0138 103.157 14.9176 103.109 14.9176C103.081 14.8619 103.036 14.8625 102.979 14.8432C102.943 14.7987 102.927 14.7503 102.867 14.7503C102.81 14.6631 102.689 14.5797 102.607 14.4902C102.575 14.4902 102.458 14.4171 102.458 14.3974C102.392 14.3524 102.425 14.3336 102.365 14.3042C102.365 14.2067 102.277 14.1996 102.235 14.1183C102.157 14.1183 102.044 13.9727 101.993 13.9137C101.952 13.8925 101.864 13.7687 101.864 13.7279C101.781 13.6621 101.774 13.6016 101.715 13.5422C101.686 13.5128 101.529 13.4461 101.529 13.4678C101.383 13.4678 101.309 13.8023 101.25 13.8023C101.25 13.8676 101.178 13.9369 101.166 14.007C101.161 14.0402 101.105 14.2297 101.064 14.2297C101.064 14.2877 100.958 14.5164 100.897 14.5457C100.897 14.5814 100.72 14.8621 100.711 14.8621C100.711 14.9147 100.635 15.0115 100.59 15.0476C100.5 15.1201 100.506 15.2277 100.413 15.2895C100.317 15.4017 100.226 15.4374 100.135 15.5349C100.031 15.6452 99.9133 15.8093 99.7724 15.8379C99.6328 15.866 99.5456 15.9585 99.4004 15.9585C99.3197 15.9585 99.2586 15.9984 99.1493 16.0051C98.9847 16.015 98.8393 16.04 98.6586 16.048C98.4385 16.0572 98.1637 16.0039 97.9189 15.9921C97.7923 15.9862 97.6527 15.9585 97.5509 15.9585C97.4606 15.9585 97.418 15.9028 97.3278 15.9028C97.2973 15.9028 97.086 15.9455 97.086 15.8845C96.9864 15.8677 96.9631 15.8328 96.8814 15.8194C96.7361 15.795 96.6359 15.7074 96.4853 15.6922C96.3661 15.6803 96.3185 15.6295 96.2124 15.6116C96.1681 15.6042 95.9521 15.5689 95.9521 15.5126C95.9129 15.5076 95.7105 15.4842 95.7105 15.4383C95.6272 15.4383 95.5788 15.3681 95.4874 15.3451C95.4874 15.2966 95.1154 15.2159 95.1154 15.1964C95.0812 15.1964 94.9297 15.164 94.9297 15.122C94.8318 15.122 94.7612 14.9732 94.6508 14.9732C94.6508 14.9411 94.4327 14.8432 94.3907 14.8432C94.3907 14.8235 94.2562 14.7503 94.2233 14.7503C94.1738 14.6527 94.0482 14.6814 94.0002 14.5831C93.9544 14.5831 93.8533 14.5133 93.833 14.4713C93.7967 14.4713 93.733 14.4458 93.7026 14.4156C93.6622 14.3752 93.5768 14.3242 93.517 14.3042C93.4361 14.2067 93.3672 14.1719 93.2751 14.1183C93.205 14.1183 93.083 14.0185 93.0337 13.9603C92.9728 13.8897 92.9083 13.8473 92.8291 13.8208C92.7947 13.7531 92.6933 13.7258 92.643 13.6625C92.5638 13.5636 92.4511 13.551 92.3829 13.4489C92.2258 13.3379 92.1021 13.1556 91.9366 13.1144C91.8009 12.9438 91.6371 12.8782 91.4969 12.7177C91.4379 12.6509 91.4015 12.6475 91.379 12.5568C91.3348 12.521 91.286 12.5052 91.286 12.4451C91.2488 12.3996 91.2047 12.4311 91.1746 12.3708C91.1197 12.3708 90.8587 12.0306 90.8587 11.9432C90.7117 11.8337 90.6939 11.6364 90.5429 11.5343C90.5429 11.472 90.5056 11.5037 90.5056 11.4415C90.4321 11.3927 90.4396 11.3394 90.3802 11.2742C90.329 11.2183 90.2778 11.1624 90.2268 11.1067C90.1706 11.1067 90.1149 11.1067 90.059 11.1067C90.0646 11.1498 90.0519 11.1685 90.022 11.1627C90.022 11.2202 89.9025 11.6087 89.8733 11.6087C89.8593 11.91 89.796 12.2081 89.8055 12.5097C89.8137 12.7715 89.9105 13.0316 89.9105 13.2879C89.9105 13.6087 89.9475 13.9105 89.9475 14.2114C89.8888 14.2114 89.9157 14.6861 89.9043 14.7732C89.8935 14.8554 89.8752 14.9789 89.7988 15.0292C89.7988 15.0848 89.7265 15.242 89.7119 15.3149C89.6835 15.4563 89.6037 15.5594 89.508 15.6851C89.452 15.7589 89.3619 15.8173 89.2784 15.8654C89.2784 15.9145 89.1295 15.928 89.1295 15.9585C89.0845 15.9585 88.8321 15.9755 88.8321 15.94C88.7235 15.94 88.8229 15.9215 88.7396 15.9215C88.7396 15.8791 88.6191 15.9228 88.5907 15.9276C88.4976 15.9431 88.4464 15.9072 88.3551 15.8904C88.2966 15.8799 88.0513 15.8045 88.0513 15.7543C87.9364 15.7543 87.7247 15.6845 87.652 15.587C87.6036 15.5223 87.4943 15.392 87.4379 15.3639C87.4128 15.2866 87.3078 15.2186 87.3078 15.1407C87.1331 15.0504 87.1498 14.71 87.1406 14.5272C87.0504 14.2083 87.0825 13.8489 87.0715 13.5207C87.0646 13.3001 87.0612 13.0578 87.0971 12.8603C87.1419 12.6164 87.1221 12.3779 87.1221 12.1168C87.1221 11.9609 86.9532 11.7432 86.7873 11.7016C86.7873 11.5986 86.1371 11.623 86.1371 11.6646C85.8585 11.6579 85.539 11.6646 85.2909 11.6646C85.2567 11.6646 84.9286 11.7634 84.9286 11.776C84.7771 11.776 84.6542 11.8504 84.5195 11.8504C84.5195 11.8562 84.0331 11.9718 83.9621 11.9804C83.9621 12.0159 83.5714 12.021 83.5714 12.092C83.5399 12.092 83.4414 12.1386 83.4414 12.1664C83.3517 12.1884 83.297 12.2407 83.2183 12.2407C83.1206 12.3546 83.0091 12.4487 82.908 12.5584C82.8721 12.5975 82.7779 12.8354 82.7535 12.8354C82.7396 12.8778 82.6627 13.0215 82.6419 13.0215C82.6419 13.0904 82.5674 13.1326 82.5674 13.2075C82.499 13.2526 82.5035 13.3422 82.4375 13.3747C82.4375 13.3976 82.362 13.5604 82.363 13.5604C82.3486 13.6651 82.3073 13.7178 82.3073 13.8023C82.2595 13.8023 82.0622 14.4343 82.0097 14.4343C81.9867 14.5286 81.9594 14.5072 81.9355 14.6013C81.8677 14.6464 81.8893 14.6991 81.8241 14.7318C81.7681 14.8862 81.6889 14.9873 81.6384 15.1407C81.5962 15.1615 81.6123 15.1964 81.5827 15.1964C81.5827 15.2619 81.5168 15.2937 81.4708 15.3359C81.3638 15.434 81.2735 15.4929 81.1734 15.6052C81.0628 15.6421 80.9206 15.8442 80.7896 15.7299C80.7072 15.6576 79.7762 15.1863 79.6675 15.1592C79.617 15.0916 79.5004 15.0484 79.5004 14.9732C79.3956 14.9218 79.3345 14.5272 79.296 14.5272C79.2691 14.336 79.2024 14.1387 79.1933 13.9269C79.1912 13.8796 79.2039 13.7466 79.2402 13.7466C79.2402 13.6802 79.2189 13.3934 79.277 13.3934C79.3235 13.2112 79.3887 13.0745 79.4446 12.8393C79.4823 12.6799 79.6675 12.5416 79.6675 12.3708C79.6955 12.3708 79.7418 12.2725 79.7418 12.2407C79.8242 12.1861 79.8248 12.1183 79.9094 12.0548C79.9094 12.0146 79.9653 11.8873 80.0023 11.8691C80.0023 11.8165 80.1568 11.6272 80.1884 11.6272C80.1884 11.5478 80.3154 11.3314 80.3926 11.2927C80.4438 11.1361 80.597 10.9843 80.597 10.8279C80.6769 10.8279 80.6863 10.5119 80.7457 10.5119C80.7457 10.4443 80.8057 10.3758 80.8201 10.2888C80.8608 10.2888 80.8946 10.127 80.8946 10.0843C80.9992 10.0843 81.008 9.63827 81.0803 9.63827C81.0803 9.56515 81.1177 9.51261 81.1177 9.40882C81.1177 9.30882 81.0878 9.21535 81.1097 9.08944C81.1293 8.98019 81.1448 8.8753 81.1547 8.76462C81.2063 8.66662 81.323 8.5982 81.3965 8.51668C81.4611 8.44481 81.4871 8.39784 81.5827 8.37422C81.627 8.30614 81.6806 8.328 81.7126 8.26245C81.798 8.26245 81.8905 8.12647 81.9665 8.05822C82.0642 7.97039 82.1298 7.86692 82.1737 7.73456C82.1935 7.67539 82.2428 7.46316 82.2886 7.46316C82.2886 7.40014 82.4302 7.15095 82.4747 7.12868C82.4747 7.02908 82.5844 6.94797 82.6236 6.83114C82.6703 6.69079 82.7495 6.64036 82.7905 6.47789C82.8409 6.45294 82.8837 6.32982 82.8837 6.27349C82.905 6.27349 82.9762 6.11282 83.0137 6.08743C83.0137 6.0064 83.1215 5.96438 83.1348 5.87386C83.1393 5.84066 83.2215 5.62299 83.2555 5.62299C83.2555 5.55029 83.3183 5.48936 83.3482 5.39985C83.4089 5.36893 83.3923 5.23261 83.4414 5.23261C83.4414 5.14814 83.5128 5.07669 83.5346 4.99071C83.5847 4.96575 83.6241 4.82373 83.6645 4.82373C83.6645 4.72639 83.8132 4.62789 83.8132 4.52621C83.8635 4.52621 83.8672 4.36837 83.9246 4.34012C83.9795 4.11747 84.2407 4.01435 84.2407 3.78239C84.282 3.7618 84.3522 3.67733 84.3522 3.63372C84.4148 3.59161 84.4445 3.54219 84.464 3.46639C84.5791 3.40873 84.5981 3.20416 84.7054 3.15037C84.7054 3.11086 84.8298 2.90875 84.8541 2.90875C84.9025 2.76629 85.2074 2.62424 85.2074 2.48136C85.2319 2.48136 85.2816 2.39732 85.2816 2.36959C85.3511 2.3053 85.4206 2.24084 85.4897 2.1762C85.5626 2.10862 85.628 2.03401 85.6952 1.9607C85.7675 1.8823 85.8789 1.85943 85.9138 1.75622C85.9964 1.69008 86.1485 1.60184 86.1926 1.5146C86.2589 1.5146 86.3064 1.40112 86.36 1.35659C86.4402 1.28961 86.4618 1.24313 86.5644 1.21699C86.6806 0.990411 87.096 1.13009 87.2708 1.15219C87.2989 1.15572 87.4011 1.17379 87.4011 1.19857C87.4592 1.19857 87.5724 1.20656 87.6475 1.22992C87.7641 1.2665 87.9778 1.3207 88.0143 1.4587Z\" fill=\"#141719\"/>\\n<path d=\"M21.557 4.84217C21.543 4.96531 21.5012 5.0222 21.5012 5.12078C21.4819 5.12078 21.3895 5.29912 21.3895 5.32535C21.3486 5.3456 21.2595 5.48638 21.2595 5.52975C21.2193 5.56026 21.1474 5.6786 21.1294 5.6786C21.0941 5.78643 20.997 5.86038 20.9062 5.94358C20.8383 6.00553 20.7332 6.21776 20.6461 6.21776C20.6248 6.25935 20.5717 6.25666 20.5717 6.29214C20.5025 6.29214 20.4651 6.37282 20.4229 6.42224C20.3755 6.42224 20.2372 6.53359 20.2093 6.571C20.1739 6.61765 20.113 6.64411 20.0606 6.65461C19.9675 6.67311 19.8683 6.69556 19.7497 6.67656C19.6589 6.66219 19.6609 6.55293 19.6609 6.47786C19.6045 6.47786 19.7001 5.8893 19.7103 5.82735C19.7276 5.72298 19.7724 5.66541 19.7724 5.58573C19.8375 5.58573 19.7629 5.25097 19.8281 5.25097C19.8281 5.13339 19.8653 5.10271 19.8653 4.99068C19.9 4.99068 19.8838 4.68821 19.8838 4.63752C19.935 4.46062 19.8859 4.3195 19.8742 4.13788C19.8683 4.04879 19.9203 3.67099 19.9583 3.67099C19.9583 3.57856 20.0906 3.41173 20.1813 3.33651C20.3856 3.33944 20.4815 3.44785 20.6646 3.44785C20.6646 3.47055 20.9671 3.59201 21.0362 3.61512C21.1098 3.71286 21.2318 3.75882 21.2966 3.85674C21.377 3.85674 21.4071 3.96767 21.4639 4.0055C21.4639 4.03661 21.5256 4.17276 21.5383 4.17276C21.5793 4.29714 21.5991 4.36464 21.608 4.50741C21.6106 4.5481 21.6349 4.84217 21.557 4.84217ZM25.7582 12.408C25.7509 12.408 25.679 12.1894 25.6652 12.1478C25.6097 12.1033 25.5234 12.0495 25.4978 11.9991C25.4025 11.9671 25.4165 11.8131 25.3119 11.8131C25.256 11.7637 25.2164 11.6936 25.1633 11.6272C24.9692 11.5788 24.9382 11.3353 24.7545 11.2742C24.6604 11.2427 24.6245 11.1855 24.5311 11.1627C24.5146 11.1288 24.3857 11.051 24.3452 11.051C24.2904 10.9687 24.223 10.9683 24.1593 10.8838C24.1269 10.8838 23.9549 10.7754 23.9549 10.7535C23.8506 10.7275 23.8308 10.6978 23.7133 10.6978C23.6527 10.6279 23.5264 10.419 23.4345 10.419C23.4162 10.3829 23.2697 10.2888 23.2299 10.2888C23.1546 10.1984 23.0855 10.1614 23.0067 10.0748C22.9228 9.98283 22.8906 9.88826 22.8024 9.81472C22.729 9.75379 22.5792 9.65379 22.5792 9.56385C22.5201 9.56385 22.533 9.36804 22.5517 9.3281C22.5842 9.25919 22.6434 9.21422 22.6982 9.16463C22.7613 9.10774 22.8024 9.03478 22.8024 8.96899C22.8544 8.96899 23.149 8.65944 23.1916 8.58766C23.246 8.49631 23.2968 8.44428 23.3785 8.37419C23.3977 8.31637 23.3973 8.27216 23.453 8.24391C23.4614 8.20206 23.5051 8.03944 23.5461 8.03944C23.5461 7.95564 23.686 7.87874 23.7041 7.78855C23.7292 7.66191 23.862 7.57533 23.862 7.44464C23.9014 7.44464 23.9922 7.0851 23.9922 7.03576C24.0576 7.03576 23.9825 6.70102 24.0481 6.70102C24.0481 6.6689 24.0847 6.51502 24.1036 6.51502C24.1288 6.41424 24.1781 6.37953 24.1781 6.28271C24.1781 6.18901 24.2288 6.10648 24.2523 6.01327C24.2652 6.01327 24.3082 5.87105 24.3082 5.8461C24.3597 5.8461 24.3452 5.63675 24.3452 5.58085C24.3452 5.45268 24.3358 5.29392 24.3422 5.13944C24.3465 5.04094 24.3082 5.00858 24.3082 4.89807C24.3005 4.89807 24.3523 4.52618 24.2523 4.52618C24.2523 4.3568 24.1781 4.2341 24.1781 4.07987C24.1525 4.07987 24.0664 3.81009 24.0664 3.76388C24.029 3.76388 23.9988 3.55711 23.9922 3.50375C23.9659 3.50375 23.9177 3.37431 23.9177 3.33651C23.8215 3.33651 23.8411 2.90871 23.7318 2.90871C23.7318 2.81331 23.5832 2.75961 23.5832 2.66707C23.5472 2.66707 23.2553 2.17247 23.2299 2.03505C23.2034 2.03505 23.1432 1.89008 23.1092 1.84907C23.053 1.78157 22.8581 1.62677 22.8581 1.55178C22.7912 1.50632 22.7296 1.34715 22.6352 1.34715C22.5252 1.21948 22.4833 1.19753 22.3251 1.14897C22.1636 1.0992 22.2249 1.01895 22.1237 0.938267C22.0151 0.850849 21.9817 0.826643 21.8358 0.807989C21.8358 0.736965 21.4269 0.758826 21.4269 0.696624C21.2137 0.696624 21.0142 0.585022 20.8131 0.585022C20.8131 0.555847 20.647 0.48988 20.6136 0.487363C20.5438 0.482737 20.4741 0.478111 20.4042 0.473485C20.378 0.420298 20.3485 0.42869 20.293 0.41776C20.293 0.353299 19.9511 0.28774 19.8838 0.28774C19.8838 0.286492 19.4023 0.213361 19.3542 0.213361C19.2422 0.213361 18.6942 0.240427 18.6942 0.34338C18.6137 0.34338 18.6039 0.380624 18.5081 0.380624C18.5081 0.395921 18.2639 0.41776 18.2293 0.41776C18.2293 0.480629 17.8948 0.488611 17.8948 0.547865C17.7876 0.547865 17.6465 0.631066 17.5416 0.73404C17.504 0.789508 17.3821 0.901023 17.3184 0.901023C17.2743 0.990378 17.1326 1.04709 17.1326 1.14267C16.9152 1.28998 16.906 1.61332 16.77 1.83982C16.6514 2.03757 16.6085 2.18592 16.6195 2.40695C16.6302 2.6221 16.596 2.78448 16.6594 3.00956C16.6856 3.10285 16.7051 3.2027 16.7051 3.28053C16.7275 3.28053 16.7795 3.42929 16.7795 3.46636C16.8003 3.46636 16.872 3.62729 16.9095 3.65251C16.9095 3.69638 16.9759 3.79707 17.021 3.81977C17.021 3.85674 17.1766 4.06475 17.207 4.07987C17.2422 4.13242 17.3551 4.21192 17.3667 4.27319C17.3738 4.31169 17.4339 4.52618 17.3741 4.52618C17.3741 4.60324 17.3344 4.63558 17.3184 4.73057C17.2415 4.73057 17.1697 5.09617 17.1697 5.1582C17.1186 5.1582 17.1032 5.54858 17.0396 5.54858C17.0396 5.82886 16.8286 6.0052 16.7887 6.28271C16.7723 6.39827 16.7234 6.48694 16.7234 6.571C16.6998 6.571 16.6678 6.65504 16.6678 6.68234C16.6408 6.68234 16.6119 6.79414 16.5749 6.81262C16.5749 6.89079 16.474 6.94499 16.4263 7.01711C16.3795 7.01711 16.3236 7.04501 16.2588 7.05426C16.2588 7.09527 16.1227 7.07266 16.0917 7.07266C16.0917 7.10595 15.9064 7.11014 15.8685 7.11014C15.8685 7.10904 15.7038 7.22738 15.6816 7.28371C15.639 7.39212 15.6631 7.48458 15.548 7.55248C15.4445 7.61359 15.394 7.63418 15.3758 7.74216C15.3575 7.85226 15.3373 7.97976 15.3293 8.11382C15.2971 8.22913 15.3202 8.35628 15.3196 8.47421C15.3192 8.60565 15.2863 8.73264 15.2983 8.86502C15.3103 8.99848 15.355 9.12379 15.4037 9.24785C15.4179 9.33062 15.4597 9.37501 15.4597 9.43357C15.5278 9.46778 15.5835 9.61975 15.6082 9.69413C15.6894 9.75842 15.7322 9.81533 15.7942 9.89835C15.8205 9.89835 15.8821 10.0471 15.9244 10.0471C15.9244 10.1761 15.936 10.2595 15.9244 10.4005C15.8958 10.4005 15.8816 11.0699 15.8758 11.1515C15.8565 11.4147 15.7756 11.6595 15.7756 11.8875C15.7756 11.9366 15.703 12.4267 15.6827 12.4267C15.6827 12.6282 15.679 12.8952 15.6546 13.1208C15.6512 13.1515 15.5816 13.3746 15.6455 13.3746C15.6517 13.5359 15.6579 13.6968 15.6641 13.8582C15.6842 13.8582 15.7794 14.226 15.7942 14.2855C15.8088 14.2855 15.85 14.4234 15.85 14.4528C15.8574 14.4528 15.9614 14.6038 15.9614 14.6389C16.0506 14.6971 16.0373 14.7975 16.1288 14.8432C16.1288 14.9051 16.2371 14.9705 16.2867 15.0104C16.4614 15.1504 16.5644 15.371 16.7978 15.4149C16.9728 15.4475 17.3557 15.4445 17.3557 15.4938C17.426 15.5008 17.5111 15.5004 17.5602 15.4938C17.7369 15.5056 17.8218 15.5244 17.9692 15.4195C17.9692 15.3623 18.0668 15.2037 18.1179 15.1777C18.1179 15.1022 18.2106 15.0827 18.2106 15.0106C18.274 14.9793 18.2579 14.8062 18.3037 14.8062C18.3037 14.7335 18.3781 14.6667 18.3781 14.583C18.4086 14.583 18.3596 14.02 18.3596 13.951C18.2852 13.951 18.3121 13.4699 18.3084 13.4026C18.3019 13.2841 18.2666 13.1358 18.2666 13.0215C18.2666 12.9246 18.2106 12.8185 18.2106 12.7168C18.2106 12.5819 18.2221 12.447 18.1914 12.3159C18.1683 12.2172 18.1434 12.0991 18.1736 11.9991C18.1994 11.9991 18.2852 11.541 18.2852 11.4971C18.339 11.4971 18.4895 11.1358 18.4895 11.0883C18.5592 11.0536 18.594 10.9262 18.6832 10.9098C18.8111 10.8863 18.8235 10.8828 18.9358 10.983C19.0042 11.0439 19.0948 11.2368 19.196 11.2368C19.2315 11.3078 19.3766 11.4082 19.4451 11.4822C19.5177 11.5604 19.5913 11.5394 19.6608 11.6087C19.698 11.6461 19.7865 11.6866 19.8467 11.7016C19.9192 11.8493 20.1452 11.8803 20.2371 12.0176C20.2986 12.0176 20.4445 12.1515 20.4881 12.2035C20.5521 12.2802 20.6482 12.3403 20.7389 12.3707C20.7736 12.441 20.8782 12.4676 20.9248 12.5382C21.0242 12.6126 21.0881 12.6702 21.1743 12.7456C21.2385 12.8015 21.3318 12.9471 21.4082 12.9471C21.4726 13.0204 21.5604 13.1543 21.6314 13.1887C21.6828 13.2582 21.7705 13.2992 21.7985 13.356C21.8883 13.4232 21.9034 13.501 21.9845 13.573C22.0489 13.6301 22.1577 13.8208 22.2445 13.8208C22.2445 13.8972 22.4015 13.976 22.4306 14.0624C22.5293 14.1521 22.6261 14.2368 22.7094 14.3412C22.7933 14.3412 22.8912 14.4776 22.951 14.5457C23.0586 14.5457 23.1046 14.7318 23.2114 14.7318C23.2114 14.758 23.3633 14.815 23.4065 14.8244C23.5791 14.8627 23.6692 14.9556 23.8792 14.9482C23.9476 14.9455 24.3452 14.9776 24.3452 14.8988C24.4474 14.8988 24.7188 14.757 24.7545 14.62C24.8136 14.6024 24.8728 14.5646 24.9216 14.5646C24.961 14.4834 25.0703 14.4307 25.0703 14.3412C25.0884 14.3103 25.1293 14.2297 25.1445 14.2297C25.1674 14.1393 25.2934 14.0838 25.2934 14.0065C25.3524 13.9558 25.4978 13.8428 25.4978 13.7651C25.5458 13.7234 25.6093 13.7296 25.6093 13.6535C25.7455 13.5626 25.7767 13.3762 25.7767 13.2259C25.7767 12.9721 25.7582 12.6572 25.7582 12.408Z\" fill=\"#141719\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_503_252\">\\n<rect width=\"116.514\" height=\"18\" fill=\"white\" transform=\"translate(0.378906)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-jp3t9j\",\"data-framer-name\":\"Siemens-logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:102,layoutDependency:layoutDependency,layoutId:\"I410:2056;410:2026\",svg:'<svg width=\"102\" height=\"24\" viewBox=\"0 0 102 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M96.8032 4.96639V7.76426C95.3559 7.21706 94.0674 6.94039 92.9396 6.94039C92.2716 6.94039 91.7397 7.06428 91.3397 7.3038C90.9397 7.54538 90.7356 7.84274 90.7356 8.19377C90.7356 8.66042 91.1871 9.07543 92.0964 9.44714L94.723 10.7274C96.8465 11.7412 97.9 13.0875 97.9 14.7786C97.9 16.1848 97.3413 17.306 96.2136 18.1361C95.094 18.9744 93.587 19.3894 91.7108 19.3894C90.8449 19.3894 90.0677 19.3523 89.377 19.2738C88.6864 19.1995 87.8926 19.0467 87.0122 18.8278V15.8998C88.6265 16.447 90.0965 16.7237 91.4201 16.7237C92.9994 16.7237 93.7849 16.2653 93.7849 15.3402C93.7849 14.8798 93.4633 14.5081 92.8097 14.217L89.8924 12.9718C88.8162 12.4845 88.0163 11.894 87.4926 11.194C86.9772 10.4878 86.7153 9.67841 86.7153 8.75335C86.7153 7.45865 87.2596 6.4159 88.3358 5.62298C89.4203 4.83626 90.8594 4.44189 92.6489 4.44189C93.2303 4.44189 93.9003 4.49349 94.6426 4.58849C95.3909 4.68967 96.1105 4.81356 96.8032 4.96639Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.1788 4.96639V7.76426C12.7315 7.21706 11.445 6.94039 10.3173 6.94039C9.64722 6.94039 9.1174 7.06428 8.7174 7.3038C8.31746 7.54538 8.11334 7.84274 8.11334 8.19377C8.11334 8.66042 8.57104 9.07543 9.48025 9.44714L12.1068 10.7274C14.2221 11.7412 15.2777 13.0875 15.2777 14.7786C15.2777 16.1848 14.717 17.306 13.5974 18.1361C12.4697 18.9744 10.9709 19.3894 9.08855 19.3894C8.22261 19.3894 7.44328 19.3523 6.75262 19.2738C6.06195 19.1995 5.27644 19.0467 4.38995 18.8278V15.8998C6.01043 16.447 7.48043 16.7237 8.79576 16.7237C10.375 16.7237 11.1605 16.2653 11.1605 15.3402C11.1605 14.8798 10.841 14.5081 10.1936 14.217L7.27631 12.9718C6.19183 12.4845 5.3919 11.894 4.8765 11.194C4.35281 10.4878 4.09717 9.67841 4.09717 8.75335C4.09717 7.45865 4.63735 6.4159 5.71971 5.62298C6.79594 4.83626 8.23704 4.44189 10.0266 4.44189C10.6142 4.44189 11.276 4.49349 12.0264 4.58849C12.7687 4.68967 13.4882 4.81356 14.1788 4.96639Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.189 4.7041H21.467V19.1272H17.189V4.7041Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M35.2493 4.7041V7.36988H28.893V10.5683H34.406V12.9718H28.893V16.3293H35.3791V19.1272H24.7759V4.7041H35.2493Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M55.2208 4.7041V19.1272H51.2271V9.61436L47.0833 19.2593H44.6176L40.6323 9.61436V19.1272H37.7439V4.7041H42.9661L46.5308 13.5335L50.2604 4.7041H55.2208Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M68.9973 4.7041V7.36988H62.6758V10.5683H68.1887V12.9718H62.6758V16.3293H69.1271V19.1272H58.5239V4.7041H68.9973Z\" fill=\"#141719\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M84.0084 4.7041V19.1272H79.4707L74.3785 9.87658V19.1272H71.4919V4.7041H76.1619L81.1222 13.7957V4.7041H84.0084Z\" fill=\"#141719\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-1jtxh1x\",\"data-framer-name\":\"Lautsprecher_Teufel_Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:65,layoutDependency:layoutDependency,layoutId:\"BbqrTxdyB\",svg:'<svg width=\"65\" height=\"24\" viewBox=\"0 0 65 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_503_275)\">\\n<mask id=\"mask0_503_275\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"65\" height=\"24\">\\n<path d=\"M0.854492 23.6804H64.3579V0.320331H0.854492V23.6804Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_503_275)\">\\n<path d=\"M37.0703 15.683C37.0703 16.2369 37.3968 16.6464 37.834 16.6464C38.2765 16.6464 38.7131 16.4692 39.4434 15.9986L39.0062 19.6372C38.072 20.1575 37.3083 20.3904 36.4896 20.3904C34.6756 20.3904 33.7128 19.4545 33.2702 17.3224C31.6602 19.515 30.2883 20.3904 28.5079 20.3904C26.6043 20.3904 25.3765 19.0779 25.3765 17.0284C25.3765 16.6189 25.404 16.4416 25.52 15.3561L26.4607 7.13234H30.2004L29.3816 14.2155C29.326 14.7412 29.326 14.8909 29.326 15.0627C29.326 15.5058 29.5312 15.7663 29.9067 15.7663C30.4384 15.7663 31.3726 14.7747 32.3355 13.1354C33.2702 11.5517 33.7403 10.1171 34.266 7.13234H38.0104L37.1648 14.5089C37.0481 15.4447 37.0703 15.4777 37.0703 15.683Z\" fill=\"#141719\"/>\\n<path d=\"M19.4521 10.3442C18.6938 10.3442 17.8201 11.2525 17.2896 12.6589C18.8989 12.5152 20.0992 11.7842 20.0992 10.9309C20.0992 10.5825 19.8337 10.3442 19.4521 10.3442ZM17.4056 15.8215C17.9032 16.4418 18.5449 16.6963 19.485 16.6963C21.1225 16.6963 23.1972 15.943 25.1277 14.6474L24.6576 18.723C22.8485 19.7421 20.857 20.3013 19.076 20.3013C15.4476 20.3013 13.0523 17.8704 13.0523 14.2097C13.0523 10.1723 16.1222 6.74989 19.7452 6.74989C22.2624 6.74989 24.1929 8.59403 24.1929 10.9309C24.1929 13.7391 22.0854 15.2677 17.4056 15.8215ZM15.569 4.28545H13.4668L12.4106 13.5948C12.117 16.2586 11.7133 17.4327 10.6565 18.6015C9.57225 19.7756 7.93537 20.4175 5.92172 20.4175C4.92595 20.4175 4.13532 20.3013 3.22807 20.0355L3.66465 16.176C4.78242 16.3807 4.92595 16.4083 5.47915 16.4083C7.5592 16.4083 8.14529 15.5275 8.58247 11.7842L9.42872 4.28545H7.02274C5.41277 4.28545 4.80455 4.66745 4.80455 5.60389C4.80455 6.39544 5.44626 7.56419 6.49705 8.7048H2.0493C1.23116 7.59712 0.85498 6.51159 0.85498 5.24944C0.85498 3.73161 1.58521 2.32516 2.81302 1.50009C4.10183 0.624719 5.33024 0.392405 8.48858 0.392405H19.7285L19.2919 4.28545H15.569Z\" fill=\"#141719\"/>\\n<path d=\"M45.1963 5.13292C45.1413 5.39337 45.0247 6.40645 44.9804 6.90521L44.9529 7.12075H46.6401L46.2035 10.7372H44.5606L43.1444 23.6797H39.449L40.876 10.7372H38.7744L39.156 7.12674L41.2803 7.12075L41.4681 5.24368C41.5123 4.74553 41.5841 4.27431 41.6726 3.87016C42.1319 1.69911 43.7084 0.320192 45.7555 0.320192C46.5186 0.320192 47.7076 0.851878 48.4103 1.41111L48.0563 5.00538C47.387 4.5677 46.6018 4.20785 46.2806 4.19109C45.5336 4.15277 45.3291 4.51262 45.1963 5.13292Z\" fill=\"#141719\"/>\\n<path d=\"M62.1344 15.5942C62.1344 16.2145 62.4275 16.53 62.9257 16.53C63.2408 16.53 63.5943 16.3863 64.358 15.9486L63.9429 19.5483C63.1302 20.1075 62.3336 20.3955 61.5758 20.3955C59.5341 20.3955 58.2405 19.0166 58.2405 16.8569C58.2405 16.4474 58.2734 15.9762 58.3344 15.478L59.8217 0.397975H63.5674L62.2504 13.9829C62.19 14.4811 62.1344 15.3283 62.1344 15.5942Z\" fill=\"#141719\"/>\\n<path d=\"M52.2549 10.3553C51.4918 10.3553 50.6174 11.2636 50.0923 12.6647C51.0827 12.5761 52.8966 11.7343 52.8966 10.9367C52.8966 10.5877 52.6311 10.3553 52.2549 10.3553ZM50.2084 15.8267C50.7065 16.447 51.3477 16.7074 52.2824 16.7074C53.9253 16.7074 55.9999 15.9488 57.9305 14.6585L57.4658 18.7288C55.6459 19.7533 53.6603 20.3125 51.8733 20.3125C48.2503 20.3125 45.8491 17.8762 45.8491 14.2155C45.8491 10.1781 48.9249 6.75568 52.548 6.75568C54.4456 6.75568 56.9957 8.59982 56.9957 10.9367C56.9957 13.7502 54.8881 15.2729 50.2084 15.8267Z\" fill=\"#141719\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_503_275\">\\n<rect width=\"64.1379\" height=\"24\" fill=\"white\" transform=\"translate(0.537598)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]})})})});});const css=['.framer-UYSpt [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-UYSpt .framer-zpn6bi { display: block; }\",\".framer-UYSpt .framer-vniaqe { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 48px 48px 48px 48px; position: relative; width: 960px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UYSpt .framer-75lpmw { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-UYSpt .framer-18rh2dh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-UYSpt .framer-vuqscp { flex: none; height: 32px; position: relative; width: 47px; }\",\".framer-UYSpt .framer-1ow85km { flex: none; height: 16px; position: relative; width: 92px; }\",\".framer-UYSpt .framer-qxe4tx { flex: none; height: 24px; position: relative; width: 50px; }\",\".framer-UYSpt .framer-n6zkh5 { flex: none; height: 24px; position: relative; width: 78px; }\",\".framer-UYSpt .framer-1r7dj6d { flex: none; height: 18px; position: relative; width: 99px; }\",\".framer-UYSpt .framer-162wthh { flex: none; height: 18px; position: relative; width: 117px; }\",\".framer-UYSpt .framer-jp3t9j { flex: none; height: 24px; position: relative; width: 102px; }\",\".framer-UYSpt .framer-1jtxh1x { flex: none; height: 24px; position: relative; width: 65px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UYSpt .framer-vniaqe, .framer-UYSpt .framer-18rh2dh { gap: 0px; } .framer-UYSpt .framer-vniaqe > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-UYSpt .framer-vniaqe > :first-child { margin-top: 0px; } .framer-UYSpt .framer-vniaqe > :last-child { margin-bottom: 0px; } .framer-UYSpt .framer-18rh2dh > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-UYSpt .framer-18rh2dh > :first-child { margin-left: 0px; } .framer-UYSpt .framer-18rh2dh > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 173\n * @framerIntrinsicWidth 960\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"O1AzScgET\":\"text\"}\n * @framerImmutableVariables false\n */ const FramerY0tEvL_zz=withCSS(Component,css,\"framer-UYSpt\");export default FramerY0tEvL_zz;FramerY0tEvL_zz.displayName=\"Logos\";FramerY0tEvL_zz.defaultProps={height:173,width:960};addPropertyControls(FramerY0tEvL_zz,{O1AzScgET:{defaultValue:\"Diese Firmen haben bei uns bereits erfolgreich Events ausgerichtet\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramerY0tEvL_zz,[...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerY0tEvL_zz\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"O1AzScgET\\\":\\\"text\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"173\",\"framerImmutableVariables\":\"false\",\"framerIntrinsicWidth\":\"960\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Y0tEvL_zz.map"],
  "mappings": "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",
  "names": ["isMotionValue", "v", "MotionValue", "useAutoMotionValue", "inputValue", "options", "optionsRef", "pe", "animation", "didInitialMount", "isOnCanvas", "RenderTarget", "onChangeDeps", "onChange", "te", "transformer", "value", "ref", "value1", "useConstant", "isMotionValue", "motionValue", "ue", "ref1", "newValue", "ref2", "animate2", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "X", "srcType", "srcFile", "srcUrl", "playing", "canvasPlay", "muted", "playsinline", "controls", "progress", "objectFit", "backgroundColor", "radius", "isMixed", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "restartOnEnter", "posterEnabled", "startTimeProp", "volume", "loop", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "videoRef", "pe", "isSafari", "useIsBrowserSafari", "requestingPlay", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "startTime", "shouldPlay", "autoPlay", "se", "isMuted", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "ue", "videoProgress", "useAutoMotionValue", "value", "newValue", "useOnChange", "val", "useOnEnter", "useOnExit", "src", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "fontStore", "fonts", "css", "className", "sbxuIw12y_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "__FramerMetadata__", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "valuesByLocaleId", "sbxuIw12y_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "LayoutGroup", "u", "motion", "cx", "RichText2", "x", "SVG", "css", "FramersbxuIw12y", "withCSS", "sbxuIw12y_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "cycleOrder", "variantClassNames", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "text", "width", "props", "ref", "createLayoutDependency", "variants", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "O1AzScgET", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "RichText2", "x", "SVG", "css", "FramerY0tEvL_zz", "withCSS", "Y0tEvL_zz_default", "addPropertyControls", "ControlType", "addFonts", "fonts"]
}
