{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js", "ssg:https://framerusercontent.com/modules/91vCBomQ0K0eNs3vORlK/Qtkda6JEbFpB0ycUmZTN/i5EEdbwbt.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function SVG(props){const[customSvgElement,setCustomSvgElement]=useState(null);useEffect(()=>{const svgContent=props.customSvgCode;processCustomSVGContent(svgContent);});const processCustomSVGContent=svgContent=>{const replacements=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']];const hasCustomStroke=svgContent.includes('stroke=\"');const hasCustomStrokeWidth=svgContent.includes('stroke-width=\"');const hasLineCap=svgContent.includes('stroke-linecap=\"');const hasLineJoin=svgContent.includes('stroke-linejoin=\"');if(svgContent.includes(\"<circle\")){const circleFillRegex=/<circle[^>]*fill=\"([^\"]*)\"/;const match=svgContent.match(circleFillRegex);if(match){const updatedCircle=match[0].replace(match[1],props.customColor);svgContent=svgContent.replace(circleFillRegex,updatedCircle);}else{replacements.push([/<circle/g,`<circle fill=\"${props.customColor}\"`]);}}if(hasCustomStroke){if(!hasLineCap){replacements.push([/<path/g,`<path stroke=\"${props.customColor}\"`]);}else{replacements.push([/<path/g,`<path stroke=\"${props.customColor}\" stroke-linecap=\"${props.lineCap}\"`]);}if(hasCustomStrokeWidth){replacements.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${props.customStrokeWidth}\"`]);}}else{replacements.push([/<path/g,`<path fill=\"${props.customColor}\"`]);}if(svgContent.includes('overflow=\"')){replacements.push([/overflow=\"[^\"]*\"/,`overflow=\"visible\"`]);}else{replacements.push([/<svg/,`<svg overflow=\"visible\"`]);}if(!hasLineJoin){replacements.push([/<path/g,`<path stroke-linejoin=\"${props.lineJoin}\"`]);}else{replacements.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${props.lineJoin}\"`]);}replacements.forEach(([regex,replacement])=>{svgContent=svgContent.replace(regex,replacement);});setCustomSvgElement(svgContent);};const customContainerStyle={padding:`${props.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};const accessibilityProps={role:\"img\",...props.title&&{\"aria-label\":props.title},...props.description&&{\"aria-description\":props.description}};return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:customSvgElement},style:customContainerStyle,...accessibilityProps});}SVG.displayName=\"SVG\";SVG.defaultProps={customSvgCode:`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_967_124)\"> <path d=\"M18 6.09674C18 6.0348 18.0246 5.97539 18.0684 5.93159L23.6013 0.398708C23.7484 0.251575 24 0.35578 24 0.563858V11.9033C24 11.9652 23.9754 12.0246 23.9316 12.0684L18 18V6.09674Z\" fill=\"white\"/> <path d=\"M6 18V6.56386C6 6.35578 5.74843 6.25158 5.60129 6.39871L0.0684074 11.9316C0.0246069 11.9754 0 12.0348 0 12.0967V23.7664C0 23.8954 0.104567 24 0.233557 24H11.9033C11.9652 24 12.0246 23.9754 12.0684 23.9316L18 18H6Z\" fill=\"white\"/> </g> <defs> <clipPath id=\"clip0_967_124\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>`,customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\",title:\"\",description:\"\"};addPropertyControls(SVG,{customSvgCode:{type:ControlType.String,title:\"SVG Code\",displayTextArea:false},customColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"},customPadding:{type:ControlType.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:true},customStrokeWidth:{type:ControlType.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:true,hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineCap:{type:ControlType.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineJoin:{type:ControlType.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},title:{type:ControlType.String,title:\"Title\",defaultValue:\"\",placeholder:\"Icon name...\"},description:{type:ControlType.String,title:\"Description\",defaultValue:\"\",placeholder:\"Icon purpose...\",description:\"More components at [Framer University](https://frameruni.link/cc).\"}});export default SVG;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG_Prod.map", "// Generated by Framer (fd53b96)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";const SVGFonts=getFonts(SVG);const cycleOrder=[\"uAxXbfyG5\",\"dvhS_DCQp\",\"H1NqBnCSc\",\"a8xmxXqx_\",\"GAlaa9Hfh\",\"o_XmxVvji\",\"OYwa_8Blt\",\"thOwEx4HD\",\"yui_YcgZY\",\"D72T7qorX\",\"Dic7zo3bM\",\"x2Ztm8gjz\",\"oOtUpQmOm\",\"alTZbOY2I\",\"MiQjcm71P\",\"ckdS2giQ_\",\"U3RAKB2Sq\"];const serializationHash=\"framer-t29Lq\";const variantClassNames={a8xmxXqx_:\"framer-v-1wdarup\",alTZbOY2I:\"framer-v-qcr6ov\",ckdS2giQ_:\"framer-v-1emy2gm\",D72T7qorX:\"framer-v-19qpqzk\",Dic7zo3bM:\"framer-v-3gunyt\",dvhS_DCQp:\"framer-v-1250na2\",GAlaa9Hfh:\"framer-v-1p5z0z6\",H1NqBnCSc:\"framer-v-1tl07ki\",MiQjcm71P:\"framer-v-1avrr9v\",o_XmxVvji:\"framer-v-wl7qc0\",oOtUpQmOm:\"framer-v-1495hld\",OYwa_8Blt:\"framer-v-144n1e0\",thOwEx4HD:\"framer-v-1vsnr65\",U3RAKB2Sq:\"framer-v-1wsmv71\",uAxXbfyG5:\"framer-v-1n2grl5\",x2Ztm8gjz:\"framer-v-c0dk58\",yui_YcgZY:\"framer-v-hine7a\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"arrow-right\":\"uAxXbfyG5\",\"chevron-down\":\"dvhS_DCQp\",\"chevron-left\":\"GAlaa9Hfh\",\"chevron-right\":\"a8xmxXqx_\",\"chevron-up\":\"H1NqBnCSc\",\"play-filled\":\"oOtUpQmOm\",checkmark:\"yui_YcgZY\",close:\"OYwa_8Blt\",globe:\"x2Ztm8gjz\",hamburger:\"Dic7zo3bM\",link:\"U3RAKB2Sq\",mail:\"D72T7qorX\",mute:\"ckdS2giQ_\",pause:\"alTZbOY2I\",play:\"o_XmxVvji\",search:\"thOwEx4HD\",volume:\"MiQjcm71P\"};const getProps=({height,iconColor,id,width,...props})=>{return{...props,jwziibmFx:iconColor??props.jwziibmFx??\"var(--token-a2576e88-9d85-431d-8f14-5d226696339a, rgb(26, 23, 21))\",variant:humanReadableVariantMap[props.variant]??props.variant??\"uAxXbfyG5\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,jwziibmFx,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"uAxXbfyG5\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1n2grl5\",className,classNames),\"data-framer-name\":\"arrow-right\",layoutDependency:layoutDependency,layoutId:\"uAxXbfyG5\",ref:refBinding,style:{...style},...addPropertyOverrides({a8xmxXqx_:{\"data-framer-name\":\"chevron-right\"},alTZbOY2I:{\"data-framer-name\":\"pause\"},ckdS2giQ_:{\"data-framer-name\":\"mute\"},D72T7qorX:{\"data-framer-name\":\"mail\"},Dic7zo3bM:{\"data-framer-name\":\"hamburger\"},dvhS_DCQp:{\"data-framer-name\":\"chevron-down\"},GAlaa9Hfh:{\"data-framer-name\":\"chevron-left\"},H1NqBnCSc:{\"data-framer-name\":\"chevron-up\"},MiQjcm71P:{\"data-framer-name\":\"volume\"},o_XmxVvji:{\"data-framer-name\":\"play\"},oOtUpQmOm:{\"data-framer-name\":\"play-filled\"},OYwa_8Blt:{\"data-framer-name\":\"close\"},thOwEx4HD:{\"data-framer-name\":\"search\"},U3RAKB2Sq:{\"data-framer-name\":\"link\"},x2Ztm8gjz:{\"data-framer-name\":\"globe\"},yui_YcgZY:{\"data-framer-name\":\"checkmark\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-p596r6-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"SdeTe86Zs-container\",nodeId:\"SdeTe86Zs\",rendersWithMotion:true,scopeId:\"i5EEdbwbt\",children:/*#__PURE__*/_jsx(SVG,{customColor:jwziibmFx,customPadding:0,customStrokeWidth:2,customSvgCode:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.1605 7.07546C13.2954 7.34055 13.4166 7.66242 13.4166 8.00025C13.4166 8.33808 13.2954 8.65995 13.1605 8.92503C13.0198 9.20164 12.8283 9.48485 12.6134 9.76195C12.1831 10.3168 11.6093 10.9102 11.0103 11.4665C9.82832 12.564 8.43237 13.6226 7.66867 14.0044L6.99785 12.6628C7.56748 12.3779 8.8382 11.4365 9.98959 10.3673C10.5572 9.84025 11.0667 9.30866 11.4281 8.84271C11.4525 8.8113 11.4759 8.78048 11.4985 8.75025H2.00059L2 7.25025H11.4985C11.4759 7.22002 11.4525 7.18919 11.4281 7.15778C11.0667 6.69184 10.5572 6.16024 9.98959 5.63318C8.8382 4.56403 7.56748 3.62255 6.99785 3.33773L7.66867 1.99609C8.43237 2.37794 9.82832 3.43646 11.0103 4.53399C11.6093 5.09025 12.1831 5.68366 12.6134 6.23855C12.8283 6.51565 13.0198 6.79885 13.1605 7.07546Z\" fill=\"#1A1715\"/> </svg>',description:\"\",height:\"100%\",id:\"SdeTe86Zs\",layoutId:\"SdeTe86Zs\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\",...addPropertyOverrides({a8xmxXqx_:{customSvgCode:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.48003 2.75781C6.47994 2.75774 6.47987 2.75768 5.99973 3.33385L5.51953 3.90996L5.5216 3.91169L5.52925 3.9181L5.56077 3.94463C5.58875 3.96826 5.63031 4.00352 5.68352 4.04913C5.78996 4.14036 5.94278 4.2728 6.12646 4.43607C6.49462 4.76332 6.98308 5.21119 7.4694 5.69751C7.95901 6.18712 8.43065 6.70007 8.77473 7.15885C8.94699 7.38853 9.07498 7.58847 9.15704 7.75259C9.23857 7.91566 9.24858 7.99196 9.24962 7.99992C9.24971 8.00057 9.24962 8.00017 9.24962 7.99992C9.24962 7.99967 9.24971 8.00047 9.24962 8.00111C9.24858 8.00907 9.23857 8.08538 9.15704 8.24844C9.07498 8.41257 8.94699 8.6125 8.77473 8.84218C8.43065 9.30097 7.95901 9.81391 7.4694 10.3035C6.98308 10.7898 6.49462 11.2377 6.12646 11.565C5.94278 11.7282 5.78996 11.8607 5.68352 11.9519C5.63031 11.9975 5.58875 12.0328 5.56077 12.0564L5.52925 12.0829L5.5216 12.0893L5.51988 12.0908L5.99973 12.6672C6.47987 13.2433 6.47994 13.2433 6.48003 13.2432L6.48367 13.2402L6.49317 13.2322L6.52854 13.2024C6.55916 13.1766 6.60353 13.1389 6.6597 13.0908C6.77201 12.9945 6.93169 12.8561 7.12301 12.6861C7.50485 12.3467 8.01639 11.8779 8.53006 11.3642C9.04046 10.8538 9.56882 10.2834 9.97473 9.74218C10.1775 9.47186 10.362 9.19263 10.4987 8.91926C10.6293 8.65806 10.7497 8.33712 10.7497 8.00052C10.7497 7.66392 10.6293 7.34297 10.4987 7.08177C10.362 6.8084 10.1775 6.52917 9.97473 6.25885C9.56882 5.71763 9.04046 5.14725 8.53006 4.63685C8.01639 4.12318 7.50485 3.65438 7.12301 3.31496C6.93169 3.1449 6.77201 3.0065 6.6597 2.91024C6.60353 2.86209 6.55916 2.82444 6.52854 2.79859L6.49317 2.76881L6.48367 2.76085L6.48003 2.75781Z\" fill=\"#1A1715\"/> </svg>'},alTZbOY2I:{customStrokeWidth:4,customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M8 6V18\" stroke=\"#1A1715\" stroke-width=\"4\"/> <path d=\"M16 6V18\" stroke=\"#1A1715\" stroke-width=\"4\"/> </svg>'},ckdS2giQ_:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M2.99923 9H4.99923C6.99923 9 9.99923 5 10.9992 5C11.9992 5 12.4992 7 12.4992 12C12.4992 17 11.9992 19 10.9992 19C9.99923 19 6.99923 15 4.99923 15H2.99923C2.74962 15 2.49997 13.5 2.5 12C2.50003 10.5 2.74973 9 2.99923 9Z\" stroke=\"#1A1715\" stroke-width=\"2\"/> <path d=\"M15.5 9L18.5 12M21.5 15L18.5 12M18.5 12L15.5 15M18.5 12L21.5 9\" stroke=\"#1A1715\" stroke-width=\"2\"/> </svg>'},D72T7qorX:{customSvgCode:'<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.91406 3.25H15.4141V12.75H1.91406V3.25ZM4.76839 4.75C5.03501 4.95955 5.3206 5.17991 5.61406 5.4C6.27242 5.89377 6.95717 6.37622 7.54993 6.73188C7.8469 6.91006 8.10657 7.04778 8.31888 7.13877C8.42447 7.18402 8.50928 7.21378 8.57429 7.23151C8.63182 7.2472 8.65982 7.24958 8.66406 7.24994C8.6683 7.24958 8.6963 7.2472 8.75383 7.23151C8.81884 7.21378 8.90365 7.18402 9.00925 7.13877C9.22156 7.04778 9.48123 6.91006 9.77819 6.73188C10.371 6.37622 11.0557 5.89377 11.7141 5.4C12.0075 5.17991 12.2931 4.95955 12.5597 4.75H4.76839ZM13.9141 5.59007C13.5295 5.89827 13.0823 6.24882 12.6141 6.6C11.9391 7.10623 11.2072 7.62378 10.5499 8.01812C10.2219 8.21494 9.89823 8.38972 9.60013 8.51748C9.32069 8.63724 8.98727 8.75 8.66406 8.75C8.34085 8.75 8.00743 8.63724 7.728 8.51748C7.42989 8.38972 7.10623 8.21494 6.77819 8.01812C6.12096 7.62378 5.38904 7.10623 4.71406 6.6C4.24582 6.24882 3.79862 5.89827 3.41406 5.59007V11.25H13.9141V5.59007Z\" fill=\"#1A1715\"/> </svg>'},Dic7zo3bM:{customSvgCode:'<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.332 6.08398H2.33203V4.58398H14.332V6.08398Z\" fill=\"#1A1715\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.332 11.416H2.33203V9.91602H14.332V11.416Z\" fill=\"#1A1715\"/> </svg>'},dvhS_DCQp:{customSvgCode:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.75781 6.48003C2.75774 6.47994 2.75768 6.47987 3.33385 5.99973L3.90996 5.51953L3.91169 5.5216L3.9181 5.52925L3.94463 5.56077C3.96826 5.58875 4.00352 5.63031 4.04913 5.68352C4.14036 5.78996 4.2728 5.94278 4.43607 6.12646C4.76332 6.49462 5.21119 6.98308 5.69751 7.4694C6.18712 7.95901 6.70007 8.43065 7.15885 8.77473C7.38853 8.94699 7.58847 9.07498 7.75259 9.15704C7.91566 9.23857 7.99196 9.24858 7.99992 9.24962C8.00057 9.24971 8.00016 9.24962 7.99992 9.24962C7.99967 9.24962 8.00047 9.24971 8.00111 9.24962C8.00907 9.24858 8.08538 9.23857 8.24844 9.15704C8.41257 9.07498 8.6125 8.94699 8.84218 8.77473C9.30097 8.43065 9.81391 7.95901 10.3035 7.4694C10.7898 6.98308 11.2377 6.49462 11.565 6.12646C11.7282 5.94278 11.8607 5.78996 11.9519 5.68352C11.9975 5.63031 12.0328 5.58875 12.0564 5.56077L12.0829 5.52925L12.0893 5.5216L12.0908 5.51988L12.6672 5.99973C13.2433 6.47987 13.2433 6.47994 13.2432 6.48003L13.2402 6.48367L13.2322 6.49317L13.2024 6.52854C13.1766 6.55916 13.1389 6.60353 13.0908 6.6597C12.9945 6.77201 12.8561 6.93169 12.6861 7.12301C12.3467 7.50485 11.8779 8.01639 11.3642 8.53006C10.8538 9.04046 10.2834 9.56882 9.74218 9.97473C9.47186 10.1775 9.19263 10.362 8.91926 10.4987C8.65806 10.6293 8.33712 10.7497 8.00052 10.7497C7.66392 10.7497 7.34297 10.6293 7.08177 10.4987C6.8084 10.362 6.52917 10.1775 6.25885 9.97473C5.71763 9.56882 5.14725 9.04046 4.63685 8.53006C4.12318 8.01639 3.65438 7.50485 3.31496 7.12301C3.1449 6.93169 3.0065 6.77201 2.91024 6.6597C2.86209 6.60353 2.82444 6.55916 2.79859 6.52854L2.76881 6.49317L2.76085 6.48367L2.75781 6.48003Z\" fill=\"#1A1715\"/> </svg>'},GAlaa9Hfh:{customSvgCode:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.51997 2.75781C9.52006 2.75774 9.52013 2.75768 10.0003 3.33385L10.4805 3.90996L10.4784 3.91169L10.4707 3.9181L10.4392 3.94463C10.4112 3.96826 10.3697 4.00352 10.3165 4.04913C10.21 4.14036 10.0572 4.2728 9.87354 4.43607C9.50538 4.76332 9.01692 5.21119 8.5306 5.69751C8.04099 6.18712 7.56935 6.70007 7.22527 7.15885C7.05301 7.38853 6.92502 7.58847 6.84296 7.75259C6.76143 7.91566 6.75142 7.99196 6.75038 7.99992C6.75029 8.00057 6.75038 8.00017 6.75038 7.99992C6.75038 7.99967 6.75029 8.00047 6.75038 8.00111C6.75142 8.00907 6.76143 8.08538 6.84296 8.24844C6.92502 8.41257 7.05301 8.6125 7.22527 8.84218C7.56935 9.30097 8.04099 9.81391 8.5306 10.3035C9.01692 10.7898 9.50538 11.2377 9.87354 11.565C10.0572 11.7282 10.21 11.8607 10.3165 11.9519C10.3697 11.9975 10.4112 12.0328 10.4392 12.0564L10.4708 12.0829L10.4784 12.0893L10.4801 12.0908L10.0003 12.6672C9.52013 13.2433 9.52006 13.2433 9.51997 13.2432L9.51633 13.2402L9.50683 13.2322L9.47146 13.2024C9.44084 13.1766 9.39647 13.1389 9.3403 13.0908C9.22799 12.9945 9.06831 12.8561 8.87699 12.6861C8.49515 12.3467 7.98361 11.8779 7.46994 11.3642C6.95954 10.8538 6.43118 10.2834 6.02527 9.74218C5.82252 9.47186 5.63801 9.19263 5.50132 8.91926C5.37072 8.65806 5.25027 8.33712 5.25027 8.00052C5.25027 7.66392 5.37072 7.34297 5.50132 7.08177C5.63801 6.8084 5.82252 6.52917 6.02527 6.25885C6.43118 5.71763 6.95954 5.14725 7.46994 4.63685C7.98361 4.12318 8.49515 3.65438 8.87699 3.31496C9.06831 3.1449 9.22799 3.0065 9.3403 2.91024C9.39647 2.86209 9.44084 2.82444 9.47146 2.79859L9.50683 2.76881L9.51633 2.76085L9.51997 2.75781Z\" fill=\"#1A1715\"/> </svg>'},H1NqBnCSc:{customSvgCode:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.75781 9.51997C2.75774 9.52006 2.75768 9.52013 3.33385 10.0003L3.90996 10.4805L3.91169 10.4784L3.9181 10.4707L3.94463 10.4392C3.96826 10.4112 4.00352 10.3697 4.04913 10.3165C4.14036 10.21 4.2728 10.0572 4.43607 9.87354C4.76332 9.50538 5.21119 9.01692 5.69751 8.5306C6.18712 8.04099 6.70007 7.56935 7.15885 7.22527C7.38853 7.05301 7.58847 6.92502 7.75259 6.84296C7.91566 6.76143 7.99196 6.75142 7.99992 6.75038C8.00057 6.75029 8.00016 6.75038 7.99992 6.75038C7.99967 6.75038 8.00047 6.75029 8.00111 6.75038C8.00907 6.75142 8.08538 6.76143 8.24844 6.84296C8.41257 6.92502 8.6125 7.05301 8.84218 7.22527C9.30097 7.56935 9.81391 8.04099 10.3035 8.5306C10.7898 9.01692 11.2377 9.50538 11.565 9.87354C11.7282 10.0572 11.8607 10.21 11.9519 10.3165C11.9975 10.3697 12.0328 10.4112 12.0564 10.4392L12.0829 10.4707L12.0893 10.4784L12.0908 10.4801L12.6672 10.0003C13.2433 9.52013 13.2433 9.52006 13.2432 9.51997L13.2402 9.51633L13.2322 9.50683L13.2024 9.47146C13.1766 9.44084 13.1389 9.39647 13.0908 9.3403C12.9945 9.22799 12.8561 9.06831 12.6861 8.87699C12.3467 8.49515 11.8779 7.98361 11.3642 7.46994C10.8538 6.95954 10.2834 6.43118 9.74218 6.02527C9.47186 5.82252 9.19263 5.63801 8.91926 5.50132C8.65806 5.37072 8.33712 5.25027 8.00052 5.25027C7.66392 5.25027 7.34297 5.37072 7.08177 5.50132C6.8084 5.63801 6.52917 5.82252 6.25885 6.02527C5.71763 6.43118 5.14725 6.95954 4.63685 7.46994C4.12318 7.98361 3.65438 8.49515 3.31496 8.87699C3.1449 9.06831 3.0065 9.22799 2.91024 9.3403C2.86209 9.39647 2.82444 9.44084 2.79859 9.47146L2.76881 9.50683L2.76085 9.51633L2.75781 9.51997Z\" fill=\"#1A1715\"/> </svg>'},MiQjcm71P:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M2.99923 9H4.99923C6.99923 9 9.99923 5 10.9992 5C11.9992 5 12.4992 7 12.4992 12C12.4992 17 11.9992 19 10.9992 19C9.99923 19 6.99923 15 4.99923 15H2.99923C2.74962 15 2.49997 13.5 2.5 12C2.50003 10.5 2.74973 9 2.99923 9Z\" stroke=\"#1A1715\" stroke-width=\"2\"/> <path d=\"M16 9C16 9 16.25 10.2 16.25 12C16.25 13.8 16 15 16 15\" stroke=\"#1A1715\" stroke-width=\"2\"/> <path d=\"M19 7C19 7 19.5 9 19.5 12C19.5 15 19 17 19 17\" stroke=\"#1A1715\" stroke-width=\"2\"/> </svg>'},o_XmxVvji:{customSvgCode:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.3161 7.5953C13.3549 7.6745 13.4137 7.81762 13.4137 7.99921C13.4137 8.18083 13.3549 8.32397 13.3161 8.40317C13.2734 8.49029 13.2222 8.56502 13.1774 8.62367C13.088 8.74089 12.9757 8.85678 12.8614 8.96446C12.6293 9.18308 12.3142 9.43705 11.9558 9.70448C11.2344 10.2427 10.2763 10.8809 9.3032 11.4732C8.33221 12.0642 7.32417 12.623 6.50414 12.9948C6.09868 13.1786 5.70864 13.3309 5.37792 13.4123C5.21492 13.4525 5.02904 13.4851 4.84426 13.4804C4.67657 13.4762 4.37453 13.4378 4.1329 13.1958C3.97824 13.0409 3.89372 12.8511 3.84595 12.726C3.79152 12.5834 3.74834 12.4239 3.71271 12.2618C3.64117 11.9365 3.58562 11.5336 3.54264 11.0927C3.45629 10.207 3.41413 9.09802 3.41406 7.99906C3.414 6.90011 3.45603 5.7911 3.54235 4.90541C3.58532 4.46461 3.64088 4.06164 3.71249 3.73628C3.74816 3.57424 3.79139 3.41467 3.84592 3.27202C3.89379 3.14681 3.97849 2.95694 4.13351 2.80203C4.37512 2.56059 4.67682 2.52224 4.84456 2.51802C5.02934 2.51337 5.21522 2.54595 5.37829 2.58611C5.70911 2.6676 6.09921 2.81984 6.50472 3.00367C7.32484 3.37545 8.33285 3.93428 9.30375 4.52527C10.2768 5.11757 11.2348 5.75572 11.956 6.29399C12.3144 6.56142 12.6294 6.81539 12.8615 7.03401C12.9758 7.14169 13.0881 7.25758 13.1775 7.3748C13.2222 7.43345 13.2734 7.50818 13.3161 7.5953ZM5.17155 4.08588C5.35681 4.14459 5.59639 4.23883 5.88539 4.36984C6.62781 4.7064 7.57811 5.23091 8.52383 5.80657C9.4674 6.38092 10.3844 6.99275 11.0589 7.49613C11.3161 7.68809 11.5294 7.85788 11.6923 7.99918C11.5294 8.14048 11.316 8.3103 11.0587 8.50228C10.3841 9.00567 9.46698 9.61752 8.52332 10.1919C7.57751 10.7676 6.62715 11.2921 5.88478 11.6286C5.59619 11.7595 5.35689 11.8536 5.1718 11.9123C5.12081 11.6722 5.07438 11.3453 5.03556 10.9472C4.95535 10.1245 4.91413 9.06675 4.91406 7.99898C4.914 6.9312 4.95511 5.87351 5.03528 5.05092C5.07408 4.65279 5.12053 4.3259 5.17155 4.08588ZM5.26062 12.2218C5.26058 12.2219 5.25956 12.2201 5.25767 12.216C5.25972 12.2197 5.26066 12.2217 5.26062 12.2218ZM5.25733 3.78279C5.25923 3.77868 5.26026 3.77685 5.2603 3.77696C5.26034 3.77707 5.25939 3.77912 5.25733 3.78279Z\" fill=\"#1A1715\"/> </svg>'},oOtUpQmOm:{customSvgCode:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path d=\"M6.99939 18.9998C6.00097 17.9998 5.99944 5.99903 6.99939 4.9998C7.99994 3.99996 18.9995 10.9998 18.9995 11.9998C18.9995 12.9998 7.99781 19.9998 6.99939 18.9998Z\" fill=\"#1A1715\"/> <path d=\"M7.27441 3.90296C7.5357 3.89644 7.80268 3.94265 8.04199 4.00159C8.5269 4.12109 9.1036 4.34533 9.70898 4.61975C10.9326 5.17448 12.4403 6.00996 13.8945 6.89514C15.3516 7.78208 16.7853 8.73715 17.8633 9.54163C18.3992 9.9416 18.8678 10.319 19.2109 10.6422C19.3801 10.8016 19.5427 10.9703 19.6709 11.1383C19.735 11.2224 19.807 11.328 19.8662 11.4489C19.9203 11.5592 19.999 11.7543 19.999 11.9996C19.999 12.2451 19.9203 12.4401 19.8662 12.5504C19.807 12.6712 19.735 12.776 19.6709 12.86C19.5427 13.0281 19.3792 13.1967 19.21 13.3561C18.8668 13.6792 18.3993 14.0577 17.8633 14.4576C16.7851 15.2621 15.3508 16.2172 13.8936 17.1041C12.4395 17.9891 10.9324 18.8239 9.70898 19.3785C9.1033 19.6531 8.526 19.8782 8.04102 19.9977C7.80166 20.0567 7.53486 20.1029 7.27344 20.0963C7.06465 20.091 6.72186 20.0483 6.41895 19.817L6.29199 19.7057C6.07887 19.4922 5.95941 19.2273 5.88965 19.0446C5.81112 18.8387 5.74797 18.6062 5.69531 18.3668C5.58952 17.8857 5.50663 17.2865 5.44238 16.6276C5.31338 15.3044 5.25011 13.6453 5.25 11.9996C5.2499 10.3538 5.31341 8.69401 5.44238 7.37073C5.5066 6.71191 5.58845 6.11253 5.69434 5.63147C5.74705 5.39203 5.81097 5.15964 5.88965 4.95374C5.95954 4.77089 6.07933 4.50512 6.29297 4.29163L6.41992 4.18128C6.72274 3.95061 7.0656 3.90821 7.27441 3.90296ZM7.64844 6.06214C7.56694 6.43247 7.49326 6.94285 7.43262 7.56507C7.31186 8.80407 7.24992 10.3946 7.25 11.9987C7.25009 13.6028 7.31182 15.194 7.43262 16.4332C7.4933 17.0556 7.56695 17.5666 7.64844 17.9371C7.65525 17.9681 7.66328 17.9972 7.66992 18.025C7.97063 17.9398 8.37981 17.7853 8.88281 17.5573C10.0028 17.0495 11.4328 16.2598 12.8535 15.3951C14.2715 14.5321 15.6512 13.6121 16.667 12.8541C17.1116 12.5224 17.4697 12.2311 17.7285 11.9987C17.4698 11.7664 17.111 11.4765 16.667 11.1451C15.6513 10.3872 14.2723 9.46715 12.8545 8.60413C11.4339 7.73943 10.0038 6.9498 8.88379 6.44202C8.38028 6.21377 7.97082 6.05845 7.66992 5.97327C7.66322 6.00132 7.65532 6.03087 7.64844 6.06214Z\" fill=\"#1A1715\"/> </svg>'},OYwa_8Blt:{customSvgCode:'<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.52811 8.00063L2.83984 3.8984L3.8276 2.76953L8.66706 7.00405L13.5065 2.76953L14.4943 3.8984L9.806 8.00063L14.4943 12.1029L13.5065 13.2317L8.66706 8.99721L3.8276 13.2317L2.83984 12.1029L7.52811 8.00063Z\" fill=\"#1A1715\"/> </svg>'},thOwEx4HD:{customSvgCode:'<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.33333 3.41602C7.29666 3.41602 5.75 4.92648 5.75 6.66602C5.75 8.40555 7.29666 9.91602 9.33333 9.91602C11.37 9.91602 12.9167 8.40555 12.9167 6.66602C12.9167 4.92648 11.37 3.41602 9.33333 3.41602ZM4.25 6.66602C4.25 3.98727 6.58354 1.91602 9.33333 1.91602C12.0831 1.91602 14.4167 3.98727 14.4167 6.66602C14.4167 9.34476 12.0831 11.416 9.33333 11.416C6.58354 11.416 4.25 9.34476 4.25 6.66602Z\" fill=\"#1A1715\"/> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.44531 13.4941L6.11198 9.49414L7.21771 10.5077L3.55104 14.5077L2.44531 13.4941Z\" fill=\"#1A1715\"/> </svg>'},U3RAKB2Sq:{customSvgCode:'<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.40634 2.28076C10.0663 1.62078 10.9615 1.25 11.8948 1.25C12.8282 1.25 13.7233 1.62078 14.3833 2.28076C15.0433 2.94075 15.4141 3.83588 15.4141 4.76924C15.4141 5.7026 15.0433 6.59773 14.3833 7.25772L13.3021 8.33895L12.2414 7.27829L13.3226 6.19706C13.7013 5.81838 13.9141 5.30478 13.9141 4.76924C13.9141 4.2337 13.7013 3.7201 13.3226 3.34142C12.944 2.96274 12.4304 2.75 11.8948 2.75C11.3593 2.75 10.8457 2.96274 10.467 3.34142L7.69778 6.11064C7.46922 6.33904 7.29862 6.61914 7.20068 6.92706C7.10273 7.23497 7.08011 7.56189 7.13471 7.88037C7.18931 8.19884 7.31955 8.49955 7.51447 8.75726C7.70939 9.01496 7.96331 9.22212 8.2549 9.36133L7.60862 10.715C7.10042 10.4723 6.65787 10.1113 6.31815 9.66214C5.97843 9.213 5.75145 8.68889 5.65628 8.13385C5.56112 7.5788 5.60055 7.00902 5.77125 6.47236C5.94193 5.9358 6.23887 5.44802 6.63712 5.04998C6.63706 5.05005 6.63718 5.04992 6.63712 5.04998L9.40634 2.28076ZM9.81366 7.24275C9.61873 6.98505 9.36481 6.77788 9.07323 6.63867L9.71951 5.28504C10.2277 5.52767 10.6703 5.88872 11.01 6.33786C11.3497 6.787 11.5767 7.31111 11.6718 7.86616C11.767 8.42121 11.7276 8.99099 11.5569 9.52764C11.3862 10.0642 11.0893 10.552 10.691 10.95C10.6909 10.9501 10.6911 10.95 10.691 10.95L7.92178 13.7192C7.2618 14.3792 6.36666 14.75 5.4333 14.75C4.49994 14.75 3.60481 14.3792 2.94482 13.7192C2.28484 13.0593 1.91406 12.1641 1.91406 11.2308C1.91406 10.2974 2.28484 9.40227 2.94482 8.74228L4.02605 7.66105L5.08671 8.72171L4.00548 9.80294C3.6268 10.1816 3.41406 10.6952 3.41406 11.2308C3.41406 11.7663 3.6268 12.2799 4.00548 12.6586C4.38417 13.0373 4.89777 13.25 5.4333 13.25C5.96884 13.25 6.48244 13.0373 6.86112 12.6586L9.63034 9.88936C9.8589 9.66096 10.0295 9.38086 10.1274 9.07294C10.2254 8.76503 10.248 8.43811 10.1934 8.11964C10.1388 7.80116 10.0086 7.50045 9.81366 7.24275Z\" fill=\"#1A1715\"/> </svg>'},x2Ztm8gjz:{customStrokeWidth:1.5,customSvgCode:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.45603 4.70567C4.57234 4.81232 4.71552 4.92971 4.88759 5.04805C4.98225 5.11315 5.08624 5.17896 5.20002 5.24368C5.43251 4.68713 5.70821 4.20183 5.98606 3.79073C5.41805 4.01198 4.9014 4.32371 4.45603 4.70567ZM8 3.68017C7.79264 3.89349 7.53772 4.18555 7.28235 4.55265C7.04313 4.89652 6.80506 5.30377 6.60486 5.77254C7.01144 5.86143 7.47476 5.91602 8 5.91602C8.52524 5.91602 8.98856 5.86143 9.39514 5.77254C9.19494 5.30377 8.95687 4.89652 8.71765 4.55265C8.46228 4.18555 8.20736 3.89349 8 3.68017ZM9.82172 7.21388C9.28572 7.33967 8.68004 7.41602 8 7.41602C7.31996 7.41602 6.71428 7.33967 6.17828 7.21388C6.1177 7.56502 6.08333 7.93809 6.08333 8.33268C6.08333 8.85665 6.14393 9.34267 6.24604 9.78979C6.79567 9.86768 7.3847 9.91602 8 9.91602C8.6153 9.91602 9.20433 9.86768 9.75396 9.78979C9.85607 9.34267 9.91667 8.85665 9.91667 8.33268C9.91667 7.93809 9.8823 7.56502 9.82172 7.21388ZM11.3373 9.46902C11.3883 9.10818 11.4167 8.72927 11.4167 8.33268C11.4167 7.75069 11.3557 7.20677 11.2514 6.70218C11.5167 6.56987 11.7532 6.42783 11.9624 6.28398C12.1811 6.13357 12.3683 5.98232 12.5261 5.84002C12.9877 6.57314 13.25 7.4252 13.25 8.33268C13.25 8.49828 13.2413 8.66177 13.2243 8.82281C13.2033 8.83192 13.1814 8.84134 13.1587 8.85104C12.8847 8.96779 12.482 9.12556 11.9785 9.28389C11.7793 9.34651 11.565 9.40902 11.3373 9.46902ZM9.17104 11.3653C8.79342 11.3977 8.40214 11.416 8 11.416C7.59786 11.416 7.20658 11.3977 6.82896 11.3653C6.97296 11.6407 7.12741 11.89 7.28235 12.1127C7.53772 12.4798 7.79264 12.7719 8 12.9852C8.20735 12.7719 8.46228 12.4798 8.71765 12.1127C8.87259 11.89 9.02704 11.6407 9.17104 11.3653ZM5.98654 12.8753C5.65738 12.3884 5.3312 11.7974 5.07628 11.1071C4.51532 10.9903 4.00896 10.8523 3.57159 10.7148C3.50245 10.6931 3.43498 10.6713 3.36922 10.6496C3.93669 11.6412 4.85924 12.4365 5.98654 12.8753ZM2.77571 8.82281C2.79668 8.83192 2.81855 8.84134 2.84133 8.85104C3.11533 8.96779 3.51805 9.12556 4.02154 9.28389C4.2207 9.34651 4.43497 9.40902 4.6627 9.46902C4.61166 9.10818 4.58333 8.72927 4.58333 8.33268C4.58333 7.75069 4.64433 7.20677 4.74861 6.70219C4.48331 6.56987 4.24677 6.42783 4.03761 6.28398C3.81889 6.13356 3.6317 5.98232 3.47392 5.84002C3.01228 6.57314 2.75 7.42521 2.75 8.33268C2.75 8.49828 2.75872 8.66177 2.77571 8.82281ZM10.0135 12.8753C10.3426 12.3884 10.6688 11.7974 10.9237 11.1071C11.4847 10.9903 11.991 10.8523 12.4284 10.7148C12.4975 10.6931 12.565 10.6713 12.6308 10.6496C12.0633 11.6412 11.1408 12.4365 10.0135 12.8753ZM11.544 4.70566C11.4277 4.81231 11.2845 4.92971 11.1124 5.04805C11.0177 5.11315 10.9138 5.17896 10.8 5.24368C10.5675 4.68713 10.2918 4.20183 10.0139 3.79073C10.5819 4.01198 11.0986 4.32371 11.544 4.70566ZM2.86758 4.16446C4.1097 2.78347 5.95317 1.91602 8 1.91602C10.0468 1.91602 11.8903 2.78347 13.1324 4.16446C14.137 5.28136 14.75 6.73727 14.75 8.33268C14.75 8.72081 14.7137 9.1015 14.6439 9.47163C14.0727 12.5015 11.2893 14.7493 8 14.7493C4.71071 14.7493 1.92732 12.5015 1.35611 9.47163C1.28633 9.1015 1.25 8.72081 1.25 8.33268C1.25 6.73727 1.86298 5.28136 2.86758 4.16446Z\" fill=\"#1A1715\"/> </svg>'},yui_YcgZY:{customSvgCode:'<svg width=\"17\" height=\"16\" viewBox=\"0 0 17 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.91719 12.5631C7.81562 12.6267 7.6013 12.7498 7.33208 12.7498C7.05445 12.7498 6.81152 12.6476 6.63504 12.5501C6.44882 12.4474 6.26868 12.3117 6.10104 12.1663C5.76517 11.875 5.41375 11.4865 5.07936 11.0678C4.41005 10.2297 3.74008 9.18315 3.32422 8.32766L4.67327 7.67188C5.03519 8.41638 5.64299 9.36984 6.25146 10.1317C6.55596 10.513 6.84343 10.8246 7.08395 11.0332C7.15402 11.094 7.21459 11.1412 7.26538 11.1769C7.26981 11.173 7.27434 11.1689 7.27896 11.1647C7.4421 11.0176 7.65883 10.7887 7.92 10.4854C8.43862 9.88311 9.07751 9.05207 9.72496 8.15942C11.0321 6.35727 12.3009 4.4056 12.6576 3.67188L14.0066 4.32766C13.5855 5.19393 12.2432 7.24227 10.9392 9.04012C10.2811 9.94747 9.61443 10.8164 9.05665 11.4642C8.77963 11.7859 8.51546 12.0695 8.28363 12.2786C8.16879 12.3822 8.04446 12.4834 7.91719 12.5631ZM7.1074 11.2995C7.10751 11.2991 7.11183 11.2964 7.12002 11.2925C7.11139 11.2979 7.10729 11.2998 7.1074 11.2995ZM7.40361 11.2581C7.40493 11.2585 7.4056 11.2588 7.40561 11.2588Z\" fill=\"#1A1715\"/> </svg>'}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-t29Lq.framer-10ncz3r, .framer-t29Lq .framer-10ncz3r { display: block; }\",\".framer-t29Lq.framer-1n2grl5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 16px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 16px; }\",\".framer-t29Lq .framer-p596r6-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 16\n * @framerIntrinsicWidth 16\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"dvhS_DCQp\":{\"layout\":[\"fixed\",\"fixed\"]},\"H1NqBnCSc\":{\"layout\":[\"fixed\",\"fixed\"]},\"a8xmxXqx_\":{\"layout\":[\"fixed\",\"fixed\"]},\"GAlaa9Hfh\":{\"layout\":[\"fixed\",\"fixed\"]},\"o_XmxVvji\":{\"layout\":[\"fixed\",\"fixed\"]},\"OYwa_8Blt\":{\"layout\":[\"fixed\",\"fixed\"]},\"thOwEx4HD\":{\"layout\":[\"fixed\",\"fixed\"]},\"yui_YcgZY\":{\"layout\":[\"fixed\",\"fixed\"]},\"D72T7qorX\":{\"layout\":[\"fixed\",\"fixed\"]},\"Dic7zo3bM\":{\"layout\":[\"fixed\",\"fixed\"]},\"x2Ztm8gjz\":{\"layout\":[\"fixed\",\"fixed\"]},\"oOtUpQmOm\":{\"layout\":[\"fixed\",\"fixed\"]},\"alTZbOY2I\":{\"layout\":[\"fixed\",\"fixed\"]},\"MiQjcm71P\":{\"layout\":[\"fixed\",\"fixed\"]},\"ckdS2giQ_\":{\"layout\":[\"fixed\",\"fixed\"]},\"U3RAKB2Sq\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"jwziibmFx\":\"iconColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Frameri5EEdbwbt=withCSS(Component,css,\"framer-t29Lq\");export default Frameri5EEdbwbt;Frameri5EEdbwbt.displayName=\"icon\";Frameri5EEdbwbt.defaultProps={height:16,width:16};addPropertyControls(Frameri5EEdbwbt,{variant:{options:[\"uAxXbfyG5\",\"dvhS_DCQp\",\"H1NqBnCSc\",\"a8xmxXqx_\",\"GAlaa9Hfh\",\"o_XmxVvji\",\"OYwa_8Blt\",\"thOwEx4HD\",\"yui_YcgZY\",\"D72T7qorX\",\"Dic7zo3bM\",\"x2Ztm8gjz\",\"oOtUpQmOm\",\"alTZbOY2I\",\"MiQjcm71P\",\"ckdS2giQ_\",\"U3RAKB2Sq\"],optionTitles:[\"arrow-right\",\"chevron-down\",\"chevron-up\",\"chevron-right\",\"chevron-left\",\"play\",\"close\",\"search\",\"checkmark\",\"mail\",\"hamburger\",\"globe\",\"play-filled\",\"pause\",\"volume\",\"mute\",\"link\"],title:\"Variant\",type:ControlType.Enum},jwziibmFx:{defaultValue:'var(--token-a2576e88-9d85-431d-8f14-5d226696339a, rgb(26, 23, 21)) /* {\"name\":\"Black\"} */',title:\"Icon Color\",type:ControlType.Color}});addFonts(Frameri5EEdbwbt,[{explicitInter:true,fonts:[]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameri5EEdbwbt\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"jwziibmFx\\\":\\\"iconColor\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"16\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"16\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dvhS_DCQp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"H1NqBnCSc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"a8xmxXqx_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GAlaa9Hfh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"o_XmxVvji\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OYwa_8Blt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"thOwEx4HD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yui_YcgZY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"D72T7qorX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Dic7zo3bM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"x2Ztm8gjz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oOtUpQmOm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"alTZbOY2I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MiQjcm71P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ckdS2giQ_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"U3RAKB2Sq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./i5EEdbwbt.map"],
  "mappings": "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",
  "names": ["SVG", "props", "customSvgElement", "setCustomSvgElement", "ye", "ue", "svgContent", "processCustomSVGContent", "replacements", "hasCustomStroke", "hasCustomStrokeWidth", "hasLineCap", "hasLineJoin", "circleFillRegex", "match", "updatedCircle", "regex", "replacement", "customContainerStyle", "accessibilityProps", "p", "addPropertyControls", "ControlType", "SVG_Prod_default", "SVGFonts", "getFonts", "SVG_Prod_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "iconColor", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "jwziibmFx", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "Frameri5EEdbwbt", "withCSS", "i5EEdbwbt_default", "addPropertyControls", "ControlType", "addFonts"]
}
