{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@emotion/hash@0.8.0/dist/hash.browser.esm.js", "ssg:https://framerusercontent.com/modules/4S4SnR1GdEzX95H1h5mT/TDb0qbFhtN7SkrM58svb/Arc.js", "ssg:https://framerusercontent.com/modules/gwzLLQVfN9GOlDbmUFdw/WKg2kPwx1RuXlySnoom1/ro7OPezbn.js", "ssg:https://framer.com/m/framer/icon-nullstate.js@0.7.0", "ssg:https://framer.com/m/hero-icons/Home.js@0.0.27", "ssg:https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js", "ssg:https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/rQJeCcsGr1fSnWO0FT2G/Hero.js", "ssg:https://framerusercontent.com/modules/Keiuf2MG0yOXQ0tFAmzN/kCHmxxk6LhxeojX9Vuty/G02RGlfmB.js", "ssg:https://framerusercontent.com/modules/GB0b68pL3eAfRYty3B7h/GO8dmEfuAR0e1VWi3LXM/u2fu2S444.js", "ssg:https://framer.com/m/phosphor-icons/House.js@0.0.53", "ssg:https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js"],
  "sourcesContent": ["function murmur2(r){var t=0;var a,e=0,c=r.length;for(;c>=4;++e,c-=4){a=255&r.charCodeAt(e)|(255&r.charCodeAt(++e))<<8|(255&r.charCodeAt(++e))<<16|(255&r.charCodeAt(++e))<<24;a=1540483477*(65535&a)+(59797*(a>>>16)<<16);a^=a>>>24;t=1540483477*(65535&a)+(59797*(a>>>16)<<16)^1540483477*(65535&t)+(59797*(t>>>16)<<16)}switch(c){case 3:t^=(255&r.charCodeAt(e+2))<<16;case 2:t^=(255&r.charCodeAt(e+1))<<8;case 1:t^=255&r.charCodeAt(e);t=1540483477*(65535&t)+(59797*(t>>>16)<<16)}t^=t>>>13;t=1540483477*(65535&t)+(59797*(t>>>16)<<16);return((t^t>>>15)>>>0).toString(36)}export{murmur2 as default};\n\n//# sourceMappingURL=hash.browser.esm.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children}from\"react\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{motion}from\"framer-motion\";import hash from\"@emotion/hash\";import{renderToString}from\"react-dom/server\";/**\n * ARC TEXT\n * By Adam and Benjamin\n *\n * @framerIntrinsicWidth 150\n * @framerIntrinsicHeight 150\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ const Arc=withCSS(function Arc(props){// Checks\nconst hasChildren=Children.count(props.slots)>0;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const showCustomPath=hasChildren&&props.type===\"graphic\";// For Ellipse\nconst isCircle=props.type===\"circle\";const isEllipse=props.type===\"ellipse\";const cylinder=isEllipse?props.cylinderHeight/2:0;// Base arc path\nlet path=createPath(props.flip,cylinder);let childPath;let viewBox;// If graphic is connected\nif(showCustomPath){const firstChild=getFirstChild(props.slots);const svgChild=getFirstChild(firstChild.props.svg);const svgChildCanvas=getFirstChild(firstChild.props.children);// Show placeholder on canvas if connected layer isn\u2019t a graphic\nif(isCanvas&&!svgChildCanvas.props.frame){return /*#__PURE__*/ _jsxs(\"div\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\uD83D\uDC8E\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Please connect to Graphic\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"You can only connect the Arc to a Graphic with a single path.\"})]});}// Grab the react element from the canvas and turn it into SVG\nif(isCanvas&&svgChildCanvas){const svgString=renderToString(svgChildCanvas);// Canvas does not give us viewBox within the string\nconst canvasFrame=svgChildCanvas.props.frame;viewBox=`0 0 ${canvasFrame.width} ${canvasFrame.height}`;let attributes=svgString.match(/[\\w-]+=\"[^\"]*\"/g);for(const element of attributes){if(element.includes(\"d=\")){childPath=splitAndReplace(element);}}}// On the preview/deploy we already get the SVG string\nif(!isCanvas&&svgChild){let attributes1=svgChild.match(/[\\w-]+=\"[^\"]*\"/g);viewBox=svgChild.split(\"viewBox=\")[1];viewBox=viewBox.split(\">\")[0];viewBox=viewBox.replace(/^\"(.+(?=\"$))\"$/,\"$1\");for(const element1 of attributes1){if(element1.includes(\"d=\")){childPath=splitAndReplace(element1);}}}}// Unique IDs to avoid multiple instances on the canvas sharing a single path\nconst id=`curve-${hash(childPath||path)}`;// Alignment icon conversion\nlet alignmentValue;if(props.alignmentBaseline===\"top\")alignmentValue=\"Text Top\";if(props.alignmentBaseline===\"center\")alignmentValue=\"Central\";if(props.alignmentBaseline===\"bottom\")alignmentValue=\"Hanging\";return /*#__PURE__*/ _jsx(motion.div,{style:{width:\"100%\",height:\"100%\",// userSelect: \"none\",\n// pointerEvents: \"none\",\nposition:\"relative\"},draggable:\"false\",children:/*#__PURE__*/ _jsxs(motion.svg,{className:\"transform-origin-center-center\",style:{width:\"100%\",height:\"100%\",position:\"absolute\",inset:0,transformOrigin:\"center\",willChange:props.rotate&&\"transform\"},viewBox:showCustomPath?viewBox:`0 0 100 100`,overflow:\"visible\",animate:isCircle&&props.rotate&&{rotate:360},transition:isCircle&&props.rotate&&{duration:100/props.rotateSpeed,repeat:Infinity,ease:\"linear\"},children:[/*#__PURE__*/ _jsx(\"path\",{id:id,d:showCustomPath?childPath:path,strokeWidth:\"none\",fill:\"transparent\"}),/*#__PURE__*/ _jsx(\"text\",{children:/*#__PURE__*/ _jsxs(\"textPath\",{href:`#${id}`,startOffset:props.startOffset,dominantBaseline:alignmentValue,style:{fontSize:props.font.fontSize,fontFamily:props.font.font,fontWeight:props.font.fontWeight,wordSpacing:props.font.wordSpacing,letterSpacing:props.font.letterSpacing,fill:props.color},children:[props.text,!isCanvas&&props.animate&&/*#__PURE__*/ _jsx(\"animate\",{attributeName:\"startOffset\",from:`${props.animateStart}%`,to:`${props.animateEnd}%`,begin:\"0s\",dur:`${props.animateDuration}s`,repeatCount:\"indefinite\"})]})})]})});},// Work around a bug with framer-motion that calculates a px origin when animating SVG elements.\n[\".transform-origin-center-center { transform-origin: center center !important; }\",]);export default Arc;Arc.defaultProps={height:50,width:50};addPropertyControls(Arc,{text:{title:\"Content\",type:ControlType.String,defaultValue:\"\u2726 THANK YOU \u2726 FOR VISITING\",displayTextArea:true},type:{title:\"Type\",type:ControlType.Enum,options:[\"circle\",\"ellipse\",\"graphic\"],optionTitles:[\"Circle\",\"Ellipse\",\"Graphic\"],defaultValue:true},cylinderHeight:{title:\"Height\",type:ControlType.Number,unit:\"px\",min:0,max:1e3,hidden:({type})=>type!==\"ellipse\"},rotate:{type:ControlType.Boolean,title:\"Rotate\",defaultValue:false,hidden:({type})=>type!==\"circle\"},rotateSpeed:{type:ControlType.Number,title:\"Speed\",min:0,max:50,defaultValue:5,displayStepper:true,step:1,hidden:({type,rotate})=>type!==\"circle\"||!rotate},slots:{type:ControlType.ComponentInstance,title:\"Graphic\",hidden:({type})=>type!==\"graphic\"},alignmentBaseline:{title:\"Align\",type:ControlType.Enum,options:[\"top\",\"center\",\"bottom\"],optionIcons:[\"align-top\",\"align-middle\",\"align-bottom\"],defaultValue:\"bottom\",displaySegmentedControl:true},flip:{type:ControlType.Boolean,defaultValue:false,title:\"Direction\",enabledTitle:\"CW\",disabledTitle:\"CCW\",hidden:({type})=>type===\"graphic\"},startOffset:{title:\"Offset\",type:ControlType.Number,defaultValue:0,max:360,unit:\"\\xb0\",step:.5},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#999\"},font:{type:ControlType.Object,controls:{font:{type:ControlType.String,placeholder:\"Inter\",defaultValue:\"Inter\"},fontSize:{title:\"Size\",type:ControlType.Number,min:0,max:100,step:.5,defaultValue:12},fontWeight:{type:ControlType.Enum,options:[100,200,300,400,500,600,700,800,900],defaultValue:600,title:\"Weight\"},wordSpacing:{title:\"Word\",type:ControlType.Number,defaultValue:4,step:.1,displayStepper:true},letterSpacing:{title:\"Letter\",type:ControlType.Number,defaultValue:4,step:.1,displayStepper:true}}},animate:{type:ControlType.Boolean,defaultValue:false,title:\"Animate\"},animateStart:{type:ControlType.Number,min:-200,max:200,step:.1,defaultValue:-50,title:\"From\",unit:\"%\",hidden:props=>!props.animate},animateEnd:{type:ControlType.Number,min:-200,max:200,step:.1,defaultValue:150,title:\"To\",unit:\"%\",hidden:props=>!props.animate},animateDuration:{type:ControlType.Number,min:0,max:50,defaultValue:5,title:\"Time\",unit:\"s\",displayStepper:true,hidden:props=>!props.animate}});/* Method to get the first child */ function getFirstChild(slots){let firstChild;Children.map(slots,child=>{if(firstChild===undefined){firstChild=child;}});return firstChild;}/* Method to get stringless attributes */ const splitAndReplace=string=>{return string.split(\"=\")[1].replace(/['\"]+/g,\"\");};/* Path creation method */ const createPath=(flip,cylinder)=>{const cylinderTop=50-cylinder;const cylinderBottom=50+cylinder;return!flip?`M 0 50 L 0 ${cylinderTop} A 1 1 0 0 1 100 ${cylinderTop} L 100 50 L 100 ${cylinderBottom} A 1 1 0 0 1 0 ${cylinderBottom} L 0 ${cylinderTop}`:`M 0 50 L 0 ${cylinderBottom} A 1 1 0 1 0 100 ${cylinderBottom} L 100 ${cylinderTop} A 1 1 0 1 0 0 ${cylinderTop} L 0 50`;};/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:160,lineHeight:1.5,textAlign:\"center\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Arc\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"150\",\"framerIntrinsicWidth\":\"150\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Arc.map", "// Generated by Framer (5351ffe)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-lend2 .framer-styles-preset-1wicq5s:not(.rich-text-wrapper), .framer-lend2 .framer-styles-preset-1wicq5s.rich-text-wrapper a { --framer-link-current-text-color: var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, #f0fffe); --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-fc79a03d-4458-4eee-9edc-8d0ca317150c, rgba(204, 255, 251, 0.7)); --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-88b568e1-e6f8-4980-bc8c-36e51a98442d, #f0fffe); --framer-link-text-decoration: none; }\"];export const className=\"framer-lend2\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import { jsx as _jsx } from \"react/jsx-runtime\";\nimport * as React from \"react\";\nexport const containerStyles = {\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nconst nullIconStyle = {\n    minWidth: \"10px\",\n    minHeight: \"10px\",\n    maxWidth: \"20px\",\n    maxHeight: \"20px\",\n    width: \"60%\",\n    height: \"60%\"\n};\nconst emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(149, 149, 149, 0.1)\",\n    border: \"1px dashed rgba(149, 149, 149, 0.15)\",\n    color: \"#a5a5a5\",\n    flexDirection: \"column\"\n};\nexport const NullState = /*#__PURE__*/ React.forwardRef((_, ref)=>{\n    return(/*#__PURE__*/ _jsx(\"div\", {\n        style: emptyStateStyle,\n        ref: ref\n    }));\n}) /*\n\n<svg\n                xmlns=\"http://www.w3.org/2000/svg\"\n                viewBox=\"0 0 30 30\"\n                style={nullIconStyle}\n            >\n                <path\n                    d=\"M 12.857 0 C 19.958 0 25.714 5.756 25.714 12.857 C 25.714 19.958 19.958 25.714 12.857 25.714 C 5.756 25.714 0 19.958 0 12.857 C 0 5.756 5.756 0 12.857 0 Z\"\n                    fill=\"#FFFFFF\"\n                ></path>\n                <path\n                    d=\"M 20.357 20.357 L 27.857 27.857\"\n                    fill=\"transparent\"\n                    strokeWidth=\"4.28\"\n                    stroke=\"#FFFFFF\"\n                    strokeLinecap=\"round\"\n                ></path>\n                <g transform=\"translate(9.643 6.429)\">\n                    <path\n                        d=\"M 3.214 12.857 L 3.214 12.857\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.75\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                    ></path>\n                    <path\n                        d=\"M 0 3.214 C 0 1.004 1.843 0 3.214 0 C 4.586 0 6.429 0.603 6.429 3.214 C 6.429 5.826 3.214 5.913 3.214 7.232 C 3.214 8.552 3.214 8.571 3.214 8.571\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.22\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                        strokeLinejoin=\"round\"\n                    ></path>\n                </g>\n            </svg>\n            */ ;\n\nexport const __FramerMetadata__ = {\"exports\":{\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"NullState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./nullstate.map", "let r;var l=e=>{if(!r){const t=({size:o=24,...a},n)=>e.createElement(\"svg\",{viewBox:\"0 0 20 20\",fill:\"currentColor\",width:o,height:o,ref:n,...a},e.createElement(\"path\",{d:\"M10.707 2.293a1 1 0 00-1.414 0l-7 7a1 1 0 001.414 1.414L4 10.414V17a1 1 0 001 1h2a1 1 0 001-1v-2a1 1 0 011-1h2a1 1 0 011 1v2a1 1 0 001 1h2a1 1 0 001-1v-6.586l.293.293a1 1 0 001.414-1.414l-7-7z\"}));r=e.forwardRef(t)}return r};export{l as default};\n", "import{useMemo}from\"react\";import{ControlType}from\"framer\";/*\n ** ICON UTILS\n ** Pull as much re-usable logic into here as possible\n ** This will make it easier to replace in all icon components\n */ export const containerStyles={width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};export const defaultEvents={onClick:{type:ControlType.EventHandler},onMouseDown:{type:ControlType.EventHandler},onMouseUp:{type:ControlType.EventHandler},onMouseEnter:{type:ControlType.EventHandler},onMouseLeave:{type:ControlType.EventHandler}};const findByArray=(arr,search)=>arr.find(a=>a.toLowerCase().includes(search));export function getIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// gotta get the exact match first THEN find\n// have a set and try to access ?\nif(selectByList)return iconSelection;if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;}export function useIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// Clean search term\nconst iconSearchResult=useMemo(()=>{if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;},[iconSelection,iconSearch]);const name=selectByList?iconSelection:iconSearchResult;return name;}\nexport const __FramerMetadata__ = {\"exports\":{\"getIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/hero-icons/Home.js@0.0.27\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"AcademicCap\",\"AcademicCapOutline\",\"Adjustments\",\"AdjustmentsOutline\",\"Annotation\",\"AnnotationOutline\",\"Archive\",\"ArchiveOutline\",\"ArrowCircleDown\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpOutline\",\"ArrowDown\",\"ArrowDownOutline\",\"ArrowLeft\",\"ArrowLeftOutline\",\"ArrowNarrowDown\",\"ArrowNarrowLeft\",\"ArrowNarrowRight\",\"ArrowNarrowUp\",\"ArrowNarrowUpOutline\",\"ArrowRight\",\"ArrowRightOutline\",\"ArrowUp\",\"ArrowUpOutline\",\"ArrowsExpand\",\"ArrowsExpandOutline\",\"AtSymbol\",\"AtSymbolOutline\",\"Backspace\",\"BackspaceOutline\",\"BadgeCheck\",\"BadgeCheckOutline\",\"Ban\",\"BanOutline\",\"Beaker\",\"BeakerOutline\",\"Bell\",\"BellOutline\",\"BookOpen\",\"BookOpenOutline\",\"Bookmark\",\"BookmarkAlt\",\"BookmarkAltOutline\",\"BookmarkOutline\",\"Briefcase\",\"BriefcaseOutline\",\"Cake\",\"CakeOutline\",\"Calculator\",\"CalculatorOutline\",\"Calendar\",\"CalendarOutline\",\"Camera\",\"CameraOutline\",\"Cash\",\"CashOutline\",\"ChartBar\",\"ChartBarOutline\",\"ChartPie\",\"ChartPieOutline\",\"ChartSquareBar\",\"Chat\",\"ChatAlt\",\"ChatAlt2\",\"ChatAlt2Outline\",\"ChatAltOutline\",\"ChatOutline\",\"Check\",\"CheckCircle\",\"CheckCircleOutline\",\"CheckOutline\",\"ChevronDoubleDown\",\"ChevronDoubleLeft\",\"ChevronDoubleRight\",\"ChevronDoubleUp\",\"ChevronDown\",\"ChevronDownOutline\",\"ChevronLeft\",\"ChevronLeftOutline\",\"ChevronRight\",\"ChevronRightOutline\",\"ChevronUp\",\"ChevronUpOutline\",\"Chip\",\"ChipOutline\",\"Clipboard\",\"ClipboardCheck\",\"ClipboardCopy\",\"ClipboardCopyOutline\",\"ClipboardList\",\"ClipboardListOutline\",\"ClipboardOutline\",\"Clock\",\"ClockOutline\",\"Cloud\",\"CloudDownload\",\"CloudDownloadOutline\",\"CloudOutline\",\"CloudUpload\",\"CloudUploadOutline\",\"Code\",\"CodeOutline\",\"Cog\",\"CogOutline\",\"Collection\",\"CollectionOutline\",\"ColorSwatch\",\"ColorSwatchOutline\",\"CreditCard\",\"CreditCardOutline\",\"Cube\",\"CubeOutline\",\"CubeTransparent\",\"CurrencyBangladeshi\",\"CurrencyDollar\",\"CurrencyEuro\",\"CurrencyEuroOutline\",\"CurrencyPound\",\"CurrencyPoundOutline\",\"CurrencyRupee\",\"CurrencyRupeeOutline\",\"CurrencyYen\",\"CurrencyYenOutline\",\"CursorClick\",\"CursorClickOutline\",\"Database\",\"DatabaseOutline\",\"DesktopComputer\",\"DeviceMobile\",\"DeviceMobileOutline\",\"DeviceTablet\",\"DeviceTabletOutline\",\"Document\",\"DocumentAdd\",\"DocumentAddOutline\",\"DocumentDownload\",\"DocumentDuplicate\",\"DocumentOutline\",\"DocumentRemove\",\"DocumentReport\",\"DocumentSearch\",\"DocumentText\",\"DocumentTextOutline\",\"DotsCircleHorizontal\",\"DotsHorizontal\",\"DotsVertical\",\"DotsVerticalOutline\",\"Download\",\"DownloadOutline\",\"Duplicate\",\"DuplicateOutline\",\"EmojiHappy\",\"EmojiHappyOutline\",\"EmojiSad\",\"EmojiSadOutline\",\"Exclamation\",\"ExclamationCircle\",\"ExclamationOutline\",\"ExternalLink\",\"ExternalLinkOutline\",\"Eye\",\"EyeOff\",\"EyeOffOutline\",\"EyeOutline\",\"FastForward\",\"FastForwardOutline\",\"Film\",\"FilmOutline\",\"Filter\",\"FilterOutline\",\"FingerPrint\",\"FingerPrintOutline\",\"Fire\",\"FireOutline\",\"Flag\",\"FlagOutline\",\"Folder\",\"FolderAdd\",\"FolderAddOutline\",\"FolderDownload\",\"FolderOpen\",\"FolderOpenOutline\",\"FolderOutline\",\"FolderRemove\",\"FolderRemoveOutline\",\"Gift\",\"GiftOutline\",\"Globe\",\"GlobeAlt\",\"GlobeAltOutline\",\"GlobeOutline\",\"Hand\",\"HandOutline\",\"Hashtag\",\"HashtagOutline\",\"Heart\",\"HeartOutline\",\"Home\",\"HomeOutline\",\"Identification\",\"Inbox\",\"InboxIn\",\"InboxInOutline\",\"InboxOutline\",\"InformationCircle\",\"Key\",\"KeyOutline\",\"Library\",\"LibraryOutline\",\"LightBulb\",\"LightBulbOutline\",\"LightningBolt\",\"LightningBoltOutline\",\"Link\",\"LinkOutline\",\"LocationMarker\",\"LockClosed\",\"LockClosedOutline\",\"LockOpen\",\"LockOpenOutline\",\"Login\",\"LoginOutline\",\"Logout\",\"LogoutOutline\",\"Mail\",\"MailOpen\",\"MailOpenOutline\",\"MailOutline\",\"Map\",\"MapOutline\",\"Menu\",\"MenuAlt1\",\"MenuAlt1Outline\",\"MenuAlt2\",\"MenuAlt2Outline\",\"MenuAlt3\",\"MenuAlt3Outline\",\"MenuAlt4\",\"MenuAlt4Outline\",\"MenuOutline\",\"Microphone\",\"MicrophoneOutline\",\"Minus\",\"MinusCircle\",\"MinusCircleOutline\",\"MinusOutline\",\"MinusSm\",\"MinusSmOutline\",\"Moon\",\"MoonOutline\",\"MusicNote\",\"MusicNoteOutline\",\"Newspaper\",\"NewspaperOutline\",\"OfficeBuilding\",\"PaperAirplane\",\"PaperAirplaneOutline\",\"PaperClip\",\"PaperClipOutline\",\"Pause\",\"PauseOutline\",\"Pencil\",\"PencilAlt\",\"PencilAltOutline\",\"PencilOutline\",\"Phone\",\"PhoneIncoming\",\"PhoneIncomingOutline\",\"PhoneMissedCall\",\"PhoneOutgoing\",\"PhoneOutgoingOutline\",\"PhoneOutline\",\"Photograph\",\"PhotographOutline\",\"Play\",\"PlayOutline\",\"Plus\",\"PlusCircle\",\"PlusCircleOutline\",\"PlusOutline\",\"PlusSm\",\"PlusSmOutline\",\"PresentationChartBar\",\"Printer\",\"PrinterOutline\",\"Puzzle\",\"PuzzleOutline\",\"Qrcode\",\"QrcodeOutline\",\"QuestionMarkCircle\",\"ReceiptRefund\",\"ReceiptRefundOutline\",\"ReceiptTax\",\"ReceiptTaxOutline\",\"Refresh\",\"RefreshOutline\",\"Reply\",\"ReplyOutline\",\"Rewind\",\"RewindOutline\",\"Rss\",\"RssOutline\",\"Save\",\"SaveAs\",\"SaveAsOutline\",\"SaveOutline\",\"Scale\",\"ScaleOutline\",\"Scissors\",\"ScissorsOutline\",\"Search\",\"SearchCircle\",\"SearchCircleOutline\",\"SearchOutline\",\"Selector\",\"SelectorOutline\",\"Server\",\"ServerOutline\",\"Share\",\"ShareOutline\",\"ShieldCheck\",\"ShieldCheckOutline\",\"ShieldExclamation\",\"ShoppingBag\",\"ShoppingBagOutline\",\"ShoppingCart\",\"ShoppingCartOutline\",\"SortAscending\",\"SortAscendingOutline\",\"SortDescending\",\"Sparkles\",\"SparklesOutline\",\"Speakerphone\",\"SpeakerphoneOutline\",\"Star\",\"StarOutline\",\"StatusOffline\",\"StatusOfflineOutline\",\"StatusOnline\",\"StatusOnlineOutline\",\"Stop\",\"StopOutline\",\"Sun\",\"SunOutline\",\"Support\",\"SupportOutline\",\"SwitchHorizontal\",\"SwitchVertical\",\"Table\",\"TableOutline\",\"Tag\",\"TagOutline\",\"Template\",\"TemplateOutline\",\"Terminal\",\"TerminalOutline\",\"ThumbDown\",\"ThumbDownOutline\",\"ThumbUp\",\"ThumbUpOutline\",\"Ticket\",\"TicketOutline\",\"Translate\",\"TranslateOutline\",\"Trash\",\"TrashOutline\",\"TrendingDown\",\"TrendingDownOutline\",\"TrendingUp\",\"TrendingUpOutline\",\"Truck\",\"TruckOutline\",\"Upload\",\"UploadOutline\",\"User\",\"UserAdd\",\"UserAddOutline\",\"UserCircle\",\"UserCircleOutline\",\"UserGroup\",\"UserGroupOutline\",\"UserOutline\",\"UserRemove\",\"UserRemoveOutline\",\"Users\",\"UsersOutline\",\"Variable\",\"VariableOutline\",\"VideoCamera\",\"VideoCameraOutline\",\"ViewBoards\",\"ViewBoardsOutline\",\"ViewGrid\",\"ViewGridAdd\",\"ViewGridAddOutline\",\"ViewGridOutline\",\"ViewList\",\"ViewListOutline\",\"VolumeOff\",\"VolumeOffOutline\",\"VolumeUp\",\"VolumeUpOutline\",\"Wifi\",\"WifiOutline\",\"X\",\"XCircle\",\"XCircleOutline\",\"XOutline\",\"ZoomIn\",\"ZoomInOutline\",\"ZoomOut\",\"ZoomOutOutline\",];const moduleBaseUrl=\"https://framer.com/m/hero-icons/\";const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * HERO\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.27`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch{if(isMounted.current)setSelectedIcon(null);}}// Import module when new style or icon is selected\nuseEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(SelectedIcon,{style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Hero\";Icon.defaultProps={width:24,height:24,iconSelection:\"Home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Hero site](https://heroicons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Hero.map", "// Generated by Framer (eb93fa7)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/gwzLLQVfN9GOlDbmUFdw/WKg2kPwx1RuXlySnoom1/ro7OPezbn.js\";const enabledGestures={CRBZmY64B:{hover:true},Gk6GBCvlS:{hover:true}};const cycleOrder=[\"Gk6GBCvlS\",\"CRBZmY64B\"];const serializationHash=\"framer-nNypO\";const variantClassNames={CRBZmY64B:\"framer-v-uvz8o\",Gk6GBCvlS:\"framer-v-cbp1pi\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,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={\"Variant 1\":\"Gk6GBCvlS\",\"Variant 2-ar\":\"CRBZmY64B\"};const getProps=({height,id,link,title,width,...props})=>{return{...props,HtTFUFo1p:link??props.HtTFUFo1p,t6W_a9Bi1:title??props.t6W_a9Bi1??\"Book Meeting\",variant:humanReadableVariantMap[props.variant]??props.variant??\"Gk6GBCvlS\"};};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,t6W_a9Bi1,HtTFUFo1p,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Gk6GBCvlS\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];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-cbp1pi\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Gk6GBCvlS\",ref:refBinding,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({\"CRBZmY64B-hover\":{\"data-framer-name\":undefined},\"Gk6GBCvlS-hover\":{\"data-framer-name\":undefined},CRBZmY64B:{\"data-framer-name\":\"Variant 2-ar\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0424b541-eae8-4098-abe1-1296a77b0be6, rgb(200, 245, 90)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(179deg, var(--token-0424b541-eae8-4098-abe1-1296a77b0be6, rgb(200, 245, 90)) 22%, var(--token-0424b541-eae8-4098-abe1-1296a77b0be6, rgb(200, 245, 90)) 117.00500000000001%)\"},children:/*#__PURE__*/_jsx(Link,{href:HtTFUFo1p,motionChild:true,nodeId:\"FS6cZ3fQS\",openInNewTab:false,scopeId:\"G02RGlfmB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Book Meeting\"})})})})}),className:\"framer-1d3ipo7\",\"data-framer-name\":\"Book Meeting\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"FS6cZ3fQS\",style:{\"--extracted-r6o4lv\":\"var(--token-0424b541-eae8-4098-abe1-1296a77b0be6, rgb(200, 245, 90))\",\"--framer-paragraph-spacing\":\"0px\"},text:t6W_a9Bi1,variants:{\"Gk6GBCvlS-hover\":{\"--extracted-r6o4lv\":\"var(--token-49143943-9104-4fba-ac5b-86e64c491560, rgb(157, 236, 253))\"},CRBZmY64B:{\"--extracted-r6o4lv\":\"var(--token-a1d6a3b4-5ac4-4a61-a3e4-558f45761cb2, rgb(255, 251, 143))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"CRBZmY64B-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NhbG1hIEFyYWJpYyAgQmxhY2s=\",\"--framer-font-family\":'\"Salma Arabic  Black\", \"Salma Arabic  Black Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1d6a3b4-5ac4-4a61-a3e4-558f45761cb2, rgb(255, 251, 143)))\",direction:\"rtl\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(179deg, var(--token-49143943-9104-4fba-ac5b-86e64c491560, rgb(157, 236, 253)) 22%, var(--token-49143943-9104-4fba-ac5b-86e64c491560, rgb(157, 236, 253)) 117.00500000000001%)\"},children:/*#__PURE__*/_jsx(Link,{href:HtTFUFo1p,motionChild:true,nodeId:\"FS6cZ3fQS\",openInNewTab:false,scopeId:\"G02RGlfmB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"\u0627\u062D\u062C\u0632 \u0645\u0648\u0639\u062F \u0645\u0639\u0646\u0627\"})})})})}),text:undefined},\"Gk6GBCvlS-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-49143943-9104-4fba-ac5b-86e64c491560, rgb(157, 236, 253)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-49143943-9104-4fba-ac5b-86e64c491560, rgb(157, 236, 253)) 0%, var(--token-49143943-9104-4fba-ac5b-86e64c491560, rgb(157, 236, 253)) 100%)\"},children:/*#__PURE__*/_jsx(Link,{href:HtTFUFo1p,motionChild:true,nodeId:\"FS6cZ3fQS\",openInNewTab:false,scopeId:\"G02RGlfmB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Book Meeting\"})})})})})},CRBZmY64B:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NhbG1hIEFyYWJpYyAgQmxhY2s=\",\"--framer-font-family\":'\"Salma Arabic  Black\", \"Salma Arabic  Black Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1d6a3b4-5ac4-4a61-a3e4-558f45761cb2, rgb(255, 251, 143)))\",direction:\"rtl\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(179deg, var(--token-0424b541-eae8-4098-abe1-1296a77b0be6, rgb(200, 245, 90)) 22%, var(--token-0424b541-eae8-4098-abe1-1296a77b0be6, rgb(200, 245, 90)) 117.00500000000001%)\"},children:/*#__PURE__*/_jsx(Link,{href:HtTFUFo1p,motionChild:true,nodeId:\"FS6cZ3fQS\",openInNewTab:false,scopeId:\"G02RGlfmB\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"\u0627\u062D\u062C\u0632 \u0645\u0648\u0639\u062F \u0645\u0639\u0646\u0627\"})})})})}),fonts:[\"CUSTOM;Salma Arabic  Black\"],text:undefined}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nNypO.framer-k5bprw, .framer-nNypO .framer-k5bprw { display: block; }\",\".framer-nNypO.framer-cbp1pi { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 45px; justify-content: center; overflow: visible; padding: 8px 16px 8px 16px; position: relative; width: 204px; }\",\".framer-nNypO .framer-1d3ipo7 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 45\n * @framerIntrinsicWidth 204\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"CRBZmY64B\":{\"layout\":[\"fixed\",\"fixed\"]},\"IG_T3Y2zC\":{\"layout\":[\"fixed\",\"fixed\"]},\"cKaAZb5Y4\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"t6W_a9Bi1\":\"title\",\"HtTFUFo1p\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerG02RGlfmB=withCSS(Component,css,\"framer-nNypO\");export default FramerG02RGlfmB;FramerG02RGlfmB.displayName=\"Text Button\";FramerG02RGlfmB.defaultProps={height:45,width:204};addPropertyControls(FramerG02RGlfmB,{variant:{options:[\"Gk6GBCvlS\",\"CRBZmY64B\"],optionTitles:[\"Variant 1\",\"Variant 2-ar\"],title:\"Variant\",type:ControlType.Enum},t6W_a9Bi1:{defaultValue:\"Book Meeting\",displayTextArea:false,title:\"Title\",type:ControlType.String},HtTFUFo1p:{title:\"Link\",type:ControlType.Link}});addFonts(FramerG02RGlfmB,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"Salma Arabic  Black\",source:\"custom\",url:\"https://framerusercontent.com/assets/FVSXnA3U3dOJCcyUjWaB4WZsc8.woff2\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerG02RGlfmB\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CRBZmY64B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IG_T3Y2zC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cKaAZb5Y4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"t6W_a9Bi1\\\":\\\"title\\\",\\\"HtTFUFo1p\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"204\",\"framerIntrinsicHeight\":\"45\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./G02RGlfmB.map", "// Generated by Framer (eb93fa7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,ResolveLinks,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/rQJeCcsGr1fSnWO0FT2G/Hero.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/gwzLLQVfN9GOlDbmUFdw/WKg2kPwx1RuXlySnoom1/ro7OPezbn.js\";import TextButton from\"https://framerusercontent.com/modules/Keiuf2MG0yOXQ0tFAmzN/kCHmxxk6LhxeojX9Vuty/G02RGlfmB.js\";const HeroFonts=getFonts(Hero);const TextButtonFonts=getFonts(TextButton);const cycleOrder=[\"fFlA2BbsS\",\"qDYlQaoky\",\"AjMPwQTtg\",\"jIsAgWXyK\",\"pBTjxAoWl\",\"k6KxV_qMb\"];const serializationHash=\"framer-QvRRl\";const variantClassNames={AjMPwQTtg:\"framer-v-1opeuqq\",fFlA2BbsS:\"framer-v-13hl4vo\",jIsAgWXyK:\"framer-v-1svxf9m\",k6KxV_qMb:\"framer-v-1a1f7rj\",pBTjxAoWl:\"framer-v-1089wkj\",qDYlQaoky:\"framer-v-pyofnz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,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={\"Desktop-ar\":\"qDYlQaoky\",\"Phone - Closed\":\"jIsAgWXyK\",\"Phone - Open\":\"AjMPwQTtg\",\"Phone closed-ar\":\"k6KxV_qMb\",\"phone open-ar\":\"pBTjxAoWl\",Desktop:\"fFlA2BbsS\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"fFlA2BbsS\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fFlA2BbsS\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1a6z6hy=activeVariantCallback(async(...args)=>{setVariant(\"jIsAgWXyK\");});const onTapa975pv=activeVariantCallback(async(...args)=>{setVariant(\"AjMPwQTtg\");});const onTapcx00rw=activeVariantCallback(async(...args)=>{setVariant(\"k6KxV_qMb\");});const onTapx99leo=activeVariantCallback(async(...args)=>{setVariant(\"pBTjxAoWl\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"AjMPwQTtg\",\"jIsAgWXyK\",\"pBTjxAoWl\",\"k6KxV_qMb\"].includes(baseVariant))return true;return false;};const router=useRouter();const isDisplayed1=()=>{if(baseVariant===\"qDYlQaoky\")return true;return false;};const isDisplayed2=()=>{if([\"qDYlQaoky\",\"pBTjxAoWl\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"pBTjxAoWl\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-13hl4vo\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"fFlA2BbsS\",ref:refBinding,style:{backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(0, 0, 0, 0.08)\",WebkitBackdropFilter:\"blur(10px)\",...style},...addPropertyOverrides({AjMPwQTtg:{\"data-framer-name\":\"Phone - Open\"},jIsAgWXyK:{\"data-framer-name\":\"Phone - Closed\"},k6KxV_qMb:{\"data-framer-name\":\"Phone closed-ar\"},pBTjxAoWl:{\"data-framer-name\":\"phone open-ar\"},qDYlQaoky:{\"data-framer-name\":\"Desktop-ar\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3tjn58\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"TMFIe9UTl\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"s3oQbnnPE\"},motionChild:true,nodeId:\"Tp5p2EyGP\",openInNewTab:false,scopeId:\"u2fu2S444\",smoothScroll:true,...addPropertyOverrides({k6KxV_qMb:{href:{webPageId:\"SKl8jhEHX\"}},pBTjxAoWl:{href:{webPageId:\"SKl8jhEHX\"}},qDYlQaoky:{href:{webPageId:\"SKl8jhEHX\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-276c4i framer-rtagr5\",\"data-framer-name\":\"Logo Container\",layoutDependency:layoutDependency,layoutId:\"Tp5p2EyGP\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(24+((componentViewport?.height||125)-48-69)/2)+0+6),pixelHeight:1124,pixelWidth:2372,positionX:\"center\",positionY:\"center\",sizes:\"121px\",src:\"https://framerusercontent.com/images/yUgxx9vqyIj6tFjvabWdWCVKFE.png\",srcSet:\"https://framerusercontent.com/images/yUgxx9vqyIj6tFjvabWdWCVKFE.png?scale-down-to=512 512w,https://framerusercontent.com/images/yUgxx9vqyIj6tFjvabWdWCVKFE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yUgxx9vqyIj6tFjvabWdWCVKFE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yUgxx9vqyIj6tFjvabWdWCVKFE.png 2372w\"},className:\"framer-gfwmde\",\"data-framer-name\":\"2 1\",layoutDependency:layoutDependency,layoutId:\"XcZqQ8nTH\",...addPropertyOverrides({AjMPwQTtg:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+0+0+6),pixelHeight:1124,pixelWidth:2372,positionX:\"center\",positionY:\"center\",sizes:\"121px\",src:\"https://framerusercontent.com/images/yUgxx9vqyIj6tFjvabWdWCVKFE.png\",srcSet:\"https://framerusercontent.com/images/yUgxx9vqyIj6tFjvabWdWCVKFE.png?scale-down-to=512 512w,https://framerusercontent.com/images/yUgxx9vqyIj6tFjvabWdWCVKFE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yUgxx9vqyIj6tFjvabWdWCVKFE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yUgxx9vqyIj6tFjvabWdWCVKFE.png 2372w\"}},jIsAgWXyK:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+0+0+6),pixelHeight:1124,pixelWidth:2372,positionX:\"center\",positionY:\"center\",sizes:\"121px\",src:\"https://framerusercontent.com/images/yUgxx9vqyIj6tFjvabWdWCVKFE.png\",srcSet:\"https://framerusercontent.com/images/yUgxx9vqyIj6tFjvabWdWCVKFE.png?scale-down-to=512 512w,https://framerusercontent.com/images/yUgxx9vqyIj6tFjvabWdWCVKFE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yUgxx9vqyIj6tFjvabWdWCVKFE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yUgxx9vqyIj6tFjvabWdWCVKFE.png 2372w\"}},k6KxV_qMb:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+0+0+6),pixelHeight:1124,pixelWidth:2372,positionX:\"center\",positionY:\"center\",sizes:\"121px\",src:\"https://framerusercontent.com/images/yUgxx9vqyIj6tFjvabWdWCVKFE.png\",srcSet:\"https://framerusercontent.com/images/yUgxx9vqyIj6tFjvabWdWCVKFE.png?scale-down-to=512 512w,https://framerusercontent.com/images/yUgxx9vqyIj6tFjvabWdWCVKFE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yUgxx9vqyIj6tFjvabWdWCVKFE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yUgxx9vqyIj6tFjvabWdWCVKFE.png 2372w\"}},pBTjxAoWl:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+0+0+6),pixelHeight:1124,pixelWidth:2372,positionX:\"center\",positionY:\"center\",sizes:\"121px\",src:\"https://framerusercontent.com/images/yUgxx9vqyIj6tFjvabWdWCVKFE.png\",srcSet:\"https://framerusercontent.com/images/yUgxx9vqyIj6tFjvabWdWCVKFE.png?scale-down-to=512 512w,https://framerusercontent.com/images/yUgxx9vqyIj6tFjvabWdWCVKFE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/yUgxx9vqyIj6tFjvabWdWCVKFE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/yUgxx9vqyIj6tFjvabWdWCVKFE.png 2372w\"}}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1slynqq\",\"data-border\":true,\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"dduayw81Y\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-f8462981-9721-42e6-b3e4-0addd9427ec8, rgba(23, 23, 23, 0.6))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"var(--token-f8462981-9721-42e6-b3e4-0addd9427ec8, rgba(23, 23, 23, 0.6))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,WebkitBackdropFilter:\"blur(10px)\"},variants:{AjMPwQTtg:{\"--border-color\":\"var(--token-69a06b4a-447e-422e-9e50-d39672ecdf48, rgb(38, 38, 38))\"},jIsAgWXyK:{\"--border-color\":\"var(--token-69a06b4a-447e-422e-9e50-d39672ecdf48, rgb(38, 38, 38))\"},k6KxV_qMb:{\"--border-color\":\"var(--token-69a06b4a-447e-422e-9e50-d39672ecdf48, rgb(38, 38, 38))\"},pBTjxAoWl:{\"--border-color\":\"var(--token-69a06b4a-447e-422e-9e50-d39672ecdf48, rgb(38, 38, 38))\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tsw0lt\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"t6ghePYZE\",...addPropertyOverrides({AjMPwQTtg:{\"data-highlight\":true,onTap:onTap1a6z6hy},jIsAgWXyK:{\"data-highlight\":true,onTap:onTapa975pv},k6KxV_qMb:{\"data-highlight\":true,onTap:onTapx99leo},pBTjxAoWl:{\"data-highlight\":true,onTap:onTapcx00rw}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1m9lh1s-container\",\"data-framer-name\":\"Icon\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ZP1SbT_73-container\",name:\"Icon\",nodeId:\"ZP1SbT_73\",rendersWithMotion:true,scopeId:\"u2fu2S444\",children:/*#__PURE__*/_jsx(Hero,{color:\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Menu\",id:\"ZP1SbT_73\",layoutId:\"ZP1SbT_73\",mirrored:false,name:\"Icon\",selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({AjMPwQTtg:{iconSearch:\"x\",selectByList:false},jIsAgWXyK:{iconSearch:\"menu\",selectByList:false},k6KxV_qMb:{iconSearch:\"menu\",selectByList:false},pBTjxAoWl:{iconSearch:\"x\",selectByList:false}},baseVariant,gestureVariant)})})})})})]}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({AjMPwQTtg:{value:transition1},jIsAgWXyK:{value:transition1},k6KxV_qMb:{value:transition1},pBTjxAoWl:{value:transition1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bgvb2n\",\"data-border\":true,\"data-framer-name\":\"Navigation Container\",layoutDependency:layoutDependency,layoutId:\"aTUlHGIQR\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-69a06b4a-447e-422e-9e50-d39672ecdf48, rgb(38, 38, 38))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"var(--token-f8462981-9721-42e6-b3e4-0addd9427ec8, rgba(23, 23, 23, 0.6))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,opacity:1,WebkitBackdropFilter:\"blur(10px)\"},variants:{AjMPwQTtg:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},jIsAgWXyK:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,opacity:0},k6KxV_qMb:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,opacity:0},pBTjxAoWl:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,opacity:1}},children:/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({AjMPwQTtg:{value:transition1},jIsAgWXyK:{value:transition1},k6KxV_qMb:{value:transition1},pBTjxAoWl:{value:transition1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vnqonn\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"JDvdOj8KJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dfix2q\",layoutDependency:layoutDependency,layoutId:\"vnmskkyRm\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-145h6eg\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"Q26FP0hLo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gf3A3lvQ1\"},motionChild:true,nodeId:\"RMj5R6ibx\",openInNewTab:false,scopeId:\"u2fu2S444\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Our Work\"})})})}),className:\"framer-1wp7wz2\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"RMj5R6ibx\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},variants:{pBTjxAoWl:{\"--extracted-r6o4lv\":\"var(--token-57ae06a1-a0bd-4695-8cf8-575414478f77, rgb(156, 156, 156))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AjMPwQTtg:{children:/*#__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\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gf3A3lvQ1\"},motionChild:true,nodeId:\"RMj5R6ibx\",openInNewTab:false,scopeId:\"u2fu2S444\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Our Work\"})})})})},jIsAgWXyK:{children:/*#__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\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gf3A3lvQ1\"},motionChild:true,nodeId:\"RMj5R6ibx\",openInNewTab:false,scopeId:\"u2fu2S444\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Our Work\"})})})})},k6KxV_qMb:{children:/*#__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\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gf3A3lvQ1\"},motionChild:true,nodeId:\"RMj5R6ibx\",openInNewTab:false,scopeId:\"u2fu2S444\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Our Work\"})})})})},pBTjxAoWl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NhbG1hIEFyYWJpYyAgQmxhY2s=\",\"--framer-font-family\":'\"Salma Arabic  Black\", \"Salma Arabic  Black Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.5)\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-57ae06a1-a0bd-4695-8cf8-575414478f77, rgb(156, 156, 156)))\",direction:\"rtl\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QWXkXyQHm\"},motionChild:true,nodeId:\"RMj5R6ibx\",openInNewTab:false,scopeId:\"u2fu2S444\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"\u0623\u0639\u0645\u0627\u0644\u0646\u0627\"})})})}),fonts:[\"CUSTOM;Salma Arabic  Black\"]},qDYlQaoky:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NhbG1hIEFyYWJpYyAgQmxhY2s=\",\"--framer-font-family\":'\"Salma Arabic  Black\", \"Salma Arabic  Black Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",direction:\"rtl\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QWXkXyQHm\"},motionChild:true,nodeId:\"RMj5R6ibx\",openInNewTab:false,scopeId:\"u2fu2S444\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"\u0623\u0639\u0645\u0627\u0644\u0646\u0627\"})})})}),fonts:[\"CUSTOM;Salma Arabic  Black\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":XSltQl0Uw\",webPageId:\"feYlYWBzC\"},motionChild:true,nodeId:\"uDrWTeDvd\",openInNewTab:false,scopeId:\"u2fu2S444\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Services\"})})})}),className:\"framer-13nd1yl\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"uDrWTeDvd\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},variants:{pBTjxAoWl:{\"--extracted-r6o4lv\":\"var(--token-57ae06a1-a0bd-4695-8cf8-575414478f77, rgb(156, 156, 156))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AjMPwQTtg:{children:/*#__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\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":XSltQl0Uw\",webPageId:\"feYlYWBzC\"},motionChild:true,nodeId:\"uDrWTeDvd\",openInNewTab:false,scopeId:\"u2fu2S444\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Services\"})})})})},jIsAgWXyK:{children:/*#__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\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":XSltQl0Uw\",webPageId:\"feYlYWBzC\"},motionChild:true,nodeId:\"uDrWTeDvd\",openInNewTab:false,scopeId:\"u2fu2S444\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Services\"})})})})},k6KxV_qMb:{children:/*#__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\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":XSltQl0Uw\",webPageId:\"feYlYWBzC\"},motionChild:true,nodeId:\"uDrWTeDvd\",openInNewTab:false,scopeId:\"u2fu2S444\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Services\"})})})})},pBTjxAoWl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NhbG1hIEFyYWJpYyAgQmxhY2s=\",\"--framer-font-family\":'\"Salma Arabic  Black\", \"Salma Arabic  Black Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.5)\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-57ae06a1-a0bd-4695-8cf8-575414478f77, rgb(156, 156, 156)))\",direction:\"rtl\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Jz7iDyjfE\",webPageId:\"mdE3vXpaQ\"},motionChild:true,nodeId:\"uDrWTeDvd\",openInNewTab:false,scopeId:\"u2fu2S444\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"\u0627\u0644\u062E\u062F\u0645\u0627\u062A\"})})})}),fonts:[\"CUSTOM;Salma Arabic  Black\"]},qDYlQaoky:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NhbG1hIEFyYWJpYyAgQmxhY2s=\",\"--framer-font-family\":'\"Salma Arabic  Black\", \"Salma Arabic  Black Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",direction:\"rtl\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Jz7iDyjfE\",webPageId:\"mdE3vXpaQ\"},motionChild:true,nodeId:\"uDrWTeDvd\",openInNewTab:false,scopeId:\"u2fu2S444\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"\u0627\u0644\u062E\u062F\u0645\u0627\u062A\"})})})}),fonts:[\"CUSTOM;Salma Arabic  Black\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GIxo0nZEi\"},motionChild:true,nodeId:\"IxeoE7vTJ\",openInNewTab:false,scopeId:\"u2fu2S444\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Blog\"})})})}),className:\"framer-1bpnsdz\",\"data-framer-name\":\"Notify me\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"IxeoE7vTJ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},variants:{AjMPwQTtg:{\"--extracted-r6o4lv\":\"rgb(125, 127, 120)\"},jIsAgWXyK:{\"--extracted-r6o4lv\":\"rgb(125, 127, 120)\"},k6KxV_qMb:{\"--extracted-r6o4lv\":\"rgb(125, 127, 120)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AjMPwQTtg:{children:/*#__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\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(125, 127, 120))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GIxo0nZEi\"},motionChild:true,nodeId:\"IxeoE7vTJ\",openInNewTab:false,scopeId:\"u2fu2S444\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Blog\"})})})})},jIsAgWXyK:{children:/*#__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\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(125, 127, 120))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"IxeoE7vTJ\",openInNewTab:false,scopeId:\"u2fu2S444\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Blog\"})})})})},k6KxV_qMb:{children:/*#__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\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(125, 127, 120))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"IxeoE7vTJ\",openInNewTab:false,scopeId:\"u2fu2S444\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"Blog\"})})})})},pBTjxAoWl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NhbG1hIEFyYWJpYyAgQmxhY2s=\",\"--framer-font-family\":'\"Salma Arabic  Black\", \"Salma Arabic  Black Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--framer-root-font-size, 1rem) * 1.5)\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",direction:\"rtl\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"VF9pRIS_b\"},motionChild:true,nodeId:\"IxeoE7vTJ\",openInNewTab:false,scopeId:\"u2fu2S444\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"\u0627\u0644\u0645\u062F\u0648\u0646\u0629\"})})})}),fonts:[\"CUSTOM;Salma Arabic  Black\"]},qDYlQaoky:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NhbG1hIEFyYWJpYyAgQmxhY2s=\",\"--framer-font-family\":'\"Salma Arabic  Black\", \"Salma Arabic  Black Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",direction:\"rtl\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"VF9pRIS_b\"},motionChild:true,nodeId:\"IxeoE7vTJ\",openInNewTab:false,scopeId:\"u2fu2S444\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1wicq5s\",\"data-styles-preset\":\"ro7OPezbn\",children:\"\u0627\u0644\u0645\u062F\u0648\u0646\u0629\"})})})}),fonts:[\"CUSTOM;Salma Arabic  Black\"]}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"aBNCP9WZK\"},implicitPathVariables:undefined},{href:{webPageId:\"zan6u0XdC\"},implicitPathVariables:undefined},{href:{webPageId:\"aBNCP9WZK\"},implicitPathVariables:undefined},{href:{webPageId:\"aBNCP9WZK\"},implicitPathVariables:undefined},{href:{webPageId:\"zan6u0XdC\"},implicitPathVariables:undefined},{href:{webPageId:\"aBNCP9WZK\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:\"204px\",y:(componentViewport?.y||0)+(24+((componentViewport?.height||125)-48-77)/2)+0+0+16+0,...addPropertyOverrides({AjMPwQTtg:{y:(componentViewport?.y||0)+24+77+0+0+40+0+0+175},jIsAgWXyK:{y:(componentViewport?.y||0)+24+77+0+0+40+0+0},k6KxV_qMb:{y:(componentViewport?.y||0)+24+77+0+0+40+0+0},pBTjxAoWl:{y:(componentViewport?.y||0)+24+77+0+0+40+0+0+190.6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1p007dd-container\",layoutDependency:layoutDependency,layoutId:\"nEPOqp5p0-container\",nodeId:\"nEPOqp5p0\",rendersWithMotion:true,scopeId:\"u2fu2S444\",children:/*#__PURE__*/_jsx(TextButton,{height:\"100%\",HtTFUFo1p:resolvedLinks[0],id:\"nEPOqp5p0\",layoutId:\"nEPOqp5p0\",style:{height:\"100%\",width:\"100%\"},t6W_a9Bi1:\"Book Meeting\",variant:\"Gk6GBCvlS\",width:\"100%\",...addPropertyOverrides({AjMPwQTtg:{HtTFUFo1p:resolvedLinks[2]},jIsAgWXyK:{HtTFUFo1p:resolvedLinks[3]},k6KxV_qMb:{HtTFUFo1p:resolvedLinks[5]},pBTjxAoWl:{HtTFUFo1p:resolvedLinks[4],variant:\"CRBZmY64B\"},qDYlQaoky:{HtTFUFo1p:resolvedLinks[1],t6W_a9Bi1:\"\u0627\u062D\u062C\u0632 \u0645\u0648\u0639\u062F \u0645\u0639\u0646\u0627\",variant:\"CRBZmY64B\"}},baseVariant,gestureVariant)})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"s3oQbnnPE\"},motionChild:true,nodeId:\"gnX0zafrT\",openInNewTab:false,scopeId:\"u2fu2S444\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-fxhgeg framer-rtagr5\",layoutDependency:layoutDependency,layoutId:\"gnX0zafrT\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggU2FucyBBcmFiaWMtcmVndWxhcg==\",\"--framer-font-family\":'\"IBM Plex Sans Arabic\", \"IBM Plex Sans Arabic Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"English\"})}),className:\"framer-1lk0x6f\",\"data-framer-name\":\"\u0627\u0644\u0639\u0631\u0628\u064A\u0629\",fonts:[\"GF;IBM Plex Sans Arabic-regular\"],layoutDependency:layoutDependency,layoutId:\"qhDqip2iz\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-363if3\",layoutDependency:layoutDependency,layoutId:\"yWBGszRd7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><g><path d=\"M 12 24 C 18.627 24 24 18.627 24 12 C 24 5.373 18.628 0 12 0 C 5.372 0 0 5.374 0 12 C 0 18.626 5.373 24 12 24 Z\" fill=\"rgb(240,240,240)\"></path><g transform=\"translate(0 0)\"><path d=\"M 19.46 2.601 L 11.46 2.601 L 11.46 5.734 L 22.227 5.734 C 21.495 4.536 20.559 3.475 19.46 2.601 Z M 23.587 8.867 L 11.467 8.867 L 11.467 12 L 24 12 C 24.001 10.942 23.862 9.889 23.587 8.867 Z M 12 24 C 14.713 24.006 17.347 23.087 19.467 21.394 L 4.534 21.394 C 6.653 23.087 9.287 24.007 12 24 Z M 23.587 15.134 L 0.413 15.134 C 0.709 16.238 1.163 17.293 1.76 18.267 L 22.24 18.267 C 22.837 17.293 23.291 16.238 23.587 15.134 Z\" fill=\"rgb(216,0,39)\"></path><path d=\"M 5.56 1.875 L 5.56 1.868 L 5.571 1.868 Z M 5.571 1.868 C 7.492 0.645 9.723 -0.003 12 0 L 12 12 L 0 12 C 0 11.501 0.033 11.002 0.1 10.507 L 0.7 10.067 L 1.72 10.8 L 1.334 9.6 L 2.34 8.859 L 1.074 8.859 L 0.741 7.814 L 1.14 6.883 L 1.72 7.305 L 1.414 6.352 L 1.707 5.836 L 2.354 5.367 L 2.001 5.367 C 2.643 4.392 3.425 3.515 4.32 2.766 L 3.987 3.801 L 5.001 3.068 L 6.021 3.801 L 5.634 2.601 L 6.656 1.868 L 5.571 1.868 Z M 6.021 10.801 L 6.027 10.801 L 6.018 10.794 Z M 6.652 8.868 L 5.386 8.868 L 4.999 7.668 L 4.613 8.868 L 3.347 8.868 L 4.367 9.601 L 3.98 10.801 L 5 10.068 L 6.018 10.794 L 5.633 9.601 Z M 6.659 5.374 L 5.393 5.374 L 5.006 4.174 L 4.62 5.374 L 3.354 5.374 L 4.374 6.108 L 3.987 7.308 L 5.007 6.574 L 6.027 7.308 L 5.64 6.108 Z M 9.314 10.068 L 10.334 10.801 L 9.947 9.601 L 10.969 8.868 L 9.703 8.868 L 9.316 7.668 L 8.93 8.868 L 7.664 8.868 L 8.684 9.601 L 8.297 10.801 Z M 10.965 5.374 L 9.699 5.374 L 9.313 4.174 L 8.926 5.374 L 7.66 5.374 L 8.68 6.108 L 8.294 7.308 L 9.314 6.574 L 10.334 7.308 L 9.947 6.108 Z M 10.334 3.814 L 9.947 2.614 L 10.969 1.881 L 9.703 1.881 L 9.316 0.681 L 8.93 1.881 L 7.664 1.881 L 8.684 2.614 L 8.297 3.814 L 9.317 3.081 Z\" fill=\"rgb(0,82,180)\"></path></g></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11e39jt\",layoutDependency:layoutDependency,layoutId:\"mrOXV_N3g\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 12 24 C 18.627 24 24 18.627 24 12 C 24 5.373 18.628 0 12 0 C 5.372 0 0 5.374 0 12 C 0 18.626 5.373 24 12 24 Z\" fill=\"rgb(240,240,240)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1s5ws1n\",layoutDependency:layoutDependency,layoutId:\"p8DDtUiGo\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><g><path d=\"M 19.46 2.601 L 11.46 2.601 L 11.46 5.734 L 22.227 5.734 C 21.495 4.536 20.559 3.475 19.46 2.601 Z M 23.587 8.867 L 11.467 8.867 L 11.467 12 L 24 12 C 24.001 10.942 23.862 9.889 23.587 8.867 Z M 12 24 C 14.713 24.006 17.347 23.087 19.467 21.394 L 4.534 21.394 C 6.653 23.087 9.287 24.007 12 24 Z M 23.587 15.134 L 0.413 15.134 C 0.709 16.238 1.163 17.293 1.76 18.267 L 22.24 18.267 C 22.837 17.293 23.291 16.238 23.587 15.134 Z\" fill=\"rgb(216,0,39)\"></path><path d=\"M 5.56 1.875 L 5.56 1.868 L 5.571 1.868 Z M 5.571 1.868 C 7.492 0.645 9.723 -0.003 12 0 L 12 12 L 0 12 C 0 11.501 0.033 11.002 0.1 10.507 L 0.7 10.067 L 1.72 10.8 L 1.334 9.6 L 2.34 8.859 L 1.074 8.859 L 0.741 7.814 L 1.14 6.883 L 1.72 7.305 L 1.414 6.352 L 1.707 5.836 L 2.354 5.367 L 2.001 5.367 C 2.643 4.392 3.425 3.515 4.32 2.766 L 3.987 3.801 L 5.001 3.068 L 6.021 3.801 L 5.634 2.601 L 6.656 1.868 L 5.571 1.868 Z M 6.021 10.801 L 6.027 10.801 L 6.018 10.794 Z M 6.652 8.868 L 5.386 8.868 L 4.999 7.668 L 4.613 8.868 L 3.347 8.868 L 4.367 9.601 L 3.98 10.801 L 5 10.068 L 6.018 10.794 L 5.633 9.601 Z M 6.659 5.374 L 5.393 5.374 L 5.006 4.174 L 4.62 5.374 L 3.354 5.374 L 4.374 6.108 L 3.987 7.308 L 5.007 6.574 L 6.027 7.308 L 5.64 6.108 Z M 9.314 10.068 L 10.334 10.801 L 9.947 9.601 L 10.969 8.868 L 9.703 8.868 L 9.316 7.668 L 8.93 8.868 L 7.664 8.868 L 8.684 9.601 L 8.297 10.801 Z M 10.965 5.374 L 9.699 5.374 L 9.313 4.174 L 8.926 5.374 L 7.66 5.374 L 8.68 6.108 L 8.294 7.308 L 9.314 6.574 L 10.334 7.308 L 9.947 6.108 Z M 10.334 3.814 L 9.947 2.614 L 10.969 1.881 L 9.703 1.881 L 9.316 0.681 L 8.93 1.881 L 7.664 1.881 L 8.684 2.614 L 8.297 3.814 L 9.317 3.081 Z\" fill=\"rgb(0,82,180)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-18myaqj\",layoutDependency:layoutDependency,layoutId:\"xn7fqdrOp\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23.587 21.399\" overflow=\"visible\"><path d=\"M 19.047 0 L 11.047 0 L 11.047 3.134 L 21.813 3.134 C 21.082 1.935 20.145 0.875 19.047 0 Z M 23.174 6.267 L 11.054 6.267 L 11.054 9.399 L 23.587 9.399 C 23.587 8.342 23.449 7.288 23.174 6.267 Z M 11.587 21.399 C 14.3 21.406 16.933 20.486 19.053 18.793 L 4.12 18.793 C 6.24 20.487 8.874 21.406 11.587 21.399 Z M 23.173 12.533 L 0 12.533 C 0.296 13.637 0.749 14.692 1.347 15.667 L 21.826 15.667 C 22.424 14.692 22.877 13.637 23.173 12.533 Z\" fill=\"rgb(216,0,39)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10je692\",layoutDependency:layoutDependency,layoutId:\"vydsJ9isB\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.766 3.134\" overflow=\"visible\"><path d=\"M 10.766 3.134 L 0 3.134 L 0 0 L 8 0 C 9.098 0.875 10.035 1.935 10.766 3.134 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-r5g7qk\",layoutDependency:layoutDependency,layoutId:\"b2kO03ktm\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.533 3.133\" overflow=\"visible\"><path d=\"M 12.533 3.133 L 0 3.133 L 0 0 L 12.12 0 C 12.395 1.021 12.534 2.075 12.533 3.133 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17kxzyy\",layoutDependency:layoutDependency,layoutId:\"LkBvtcM5h\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.933 2.606\" overflow=\"visible\"><path d=\"M 7.466 2.606 C 10.179 2.612 12.813 1.693 14.933 0 L 0 0 C 2.119 1.693 4.753 2.613 7.466 2.606 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1h2ztcm\",layoutDependency:layoutDependency,layoutId:\"cgp2jEGXS\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23.173 3.133\" overflow=\"visible\"><path d=\"M 21.826 3.133 L 1.347 3.133 C 0.749 2.159 0.296 1.104 0 0 L 23.173 0 C 22.877 1.104 22.424 2.159 21.826 3.133 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1hj2k39\",layoutDependency:layoutDependency,layoutId:\"nSYt1Qz70\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\" overflow=\"visible\"><path d=\"M 5.56 1.875 L 5.56 1.868 L 5.571 1.868 Z M 5.571 1.868 C 7.492 0.645 9.723 -0.003 12 0 L 12 12 L 0 12 C 0 11.501 0.033 11.002 0.1 10.507 L 0.7 10.067 L 1.72 10.8 L 1.334 9.6 L 2.34 8.859 L 1.074 8.859 L 0.741 7.814 L 1.14 6.883 L 1.72 7.305 L 1.414 6.352 L 1.707 5.836 L 2.354 5.367 L 2.001 5.367 C 2.643 4.392 3.425 3.515 4.32 2.766 L 3.987 3.801 L 5.001 3.068 L 6.021 3.801 L 5.634 2.601 L 6.656 1.868 L 5.571 1.868 Z M 6.021 10.801 L 6.027 10.801 L 6.018 10.794 Z M 6.652 8.868 L 5.386 8.868 L 4.999 7.668 L 4.613 8.868 L 3.347 8.868 L 4.367 9.601 L 3.98 10.801 L 5 10.068 L 6.018 10.794 L 5.633 9.601 Z M 6.659 5.374 L 5.393 5.374 L 5.006 4.174 L 4.62 5.374 L 3.354 5.374 L 4.374 6.108 L 3.987 7.308 L 5.007 6.574 L 6.027 7.308 L 5.64 6.108 Z M 9.314 10.068 L 10.334 10.801 L 9.947 9.601 L 10.969 8.868 L 9.703 8.868 L 9.316 7.668 L 8.93 8.868 L 7.664 8.868 L 8.684 9.601 L 8.297 10.801 Z M 10.965 5.374 L 9.699 5.374 L 9.313 4.174 L 8.926 5.374 L 7.66 5.374 L 8.68 6.108 L 8.294 7.308 L 9.314 6.574 L 10.334 7.308 L 9.947 6.108 Z M 10.334 3.814 L 9.947 2.614 L 10.969 1.881 L 9.703 1.881 L 9.316 0.681 L 8.93 1.881 L 7.664 1.881 L 8.684 2.614 L 8.297 3.814 L 9.317 3.081 Z\" fill=\"rgb(0,82,180)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-kvxg8u\",layoutDependency:layoutDependency,layoutId:\"p1KgxyF2h\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0.011 0 L 0 0 L 0 0.008 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-bsbvpi\",layoutDependency:layoutDependency,layoutId:\"CbOsbSLNx\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\" overflow=\"visible\"><path d=\"M 5.571 1.868 L 6.656 1.868 L 5.634 2.601 L 6.021 3.801 L 5.001 3.068 L 3.987 3.801 L 4.32 2.766 C 3.425 3.515 2.643 4.392 2.001 5.367 L 2.354 5.367 L 1.707 5.836 L 1.414 6.352 L 1.72 7.305 L 1.14 6.883 L 0.741 7.814 L 1.074 8.859 L 2.34 8.859 L 1.334 9.6 L 1.72 10.8 L 0.7 10.067 L 0.1 10.507 C 0.033 11.002 0 11.501 0 12 L 12 12 L 12 0 C 9.723 -0.003 7.492 0.645 5.571 1.868 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8dn1b0\",layoutDependency:layoutDependency,layoutId:\"N7aJV6F0D\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0 0 L 0.009 0.007 L 0.002 0.007 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-v69cpg\",layoutDependency:layoutDependency,layoutId:\"SFUBFYkys\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.305 3.134\" overflow=\"visible\"><path d=\"M 2.287 1.933 L 2.671 3.127 L 1.653 2.4 L 0.633 3.134 L 1.02 1.934 L 0 1.2 L 1.266 1.2 L 1.652 0 L 2.039 1.2 L 3.305 1.2 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-t7w936\",layoutDependency:layoutDependency,layoutId:\"oOvC_L1Rq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.305 3.134\" overflow=\"visible\"><path d=\"M 2.287 1.934 L 2.673 3.134 L 1.653 2.4 L 0.633 3.134 L 1.02 1.934 L 0 1.2 L 1.266 1.2 L 1.652 0 L 2.039 1.2 L 3.305 1.2 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-kvwkc1\",layoutDependency:layoutDependency,layoutId:\"J9Q2weN1c\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.305 3.134\" overflow=\"visible\"><path d=\"M 1.65 2.4 L 2.67 3.134 L 2.283 1.934 L 3.305 1.2 L 2.039 1.2 L 1.652 0 L 1.266 1.2 L 0 1.2 L 1.02 1.934 L 0.633 3.134 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-rbdqok\",layoutDependency:layoutDependency,layoutId:\"aw3PQbZDe\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.305 3.134\" overflow=\"visible\"><path d=\"M 2.287 1.934 L 2.673 3.134 L 1.653 2.4 L 0.633 3.134 L 1.02 1.934 L 0 1.2 L 1.266 1.2 L 1.652 0 L 2.039 1.2 L 3.305 1.2 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1du3fvj\",layoutDependency:layoutDependency,layoutId:\"QzTXpF94A\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.305 3.134\" overflow=\"visible\"><path d=\"M 2.67 3.134 L 2.283 1.934 L 3.305 1.2 L 2.039 1.2 L 1.652 0 L 1.266 1.2 L 0 1.2 L 1.02 1.934 L 0.633 3.134 L 1.653 2.4 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})]})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"SKl8jhEHX\"},motionChild:true,nodeId:\"nNqKYRlgo\",openInNewTab:false,scopeId:\"u2fu2S444\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1ewr3zx framer-rtagr5\",layoutDependency:layoutDependency,layoutId:\"nNqKYRlgo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NhbG1hIEFyYWJpYyAgQm9sZA==\",\"--framer-font-family\":'\"Salma Arabic  Bold\", \"Salma Arabic  Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",direction:\"rtl\"},children:\"\u0627\u0644\u0639\u0631\u0628\u064A\u0629\"})}),className:\"framer-1s5mj6d\",\"data-framer-name\":\"\u0627\u0644\u0639\u0631\u0628\u064A\u0629\",fonts:[\"CUSTOM;Salma Arabic  Bold\"],layoutDependency:layoutDependency,layoutId:\"zIfR0aWYW\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-6hzxa\",layoutDependency:layoutDependency,layoutId:\"LOhSlYzn3\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><g><path d=\"M 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 Z\" fill=\"rgb(61,150,53)\"></path><g transform=\"translate(3.365 5.589)\"><path d=\"M 0.123 1.253 C 0.084 1.874 0.033 2.971 0.498 3.082 C 1.065 3.14 0.753 2.001 0.957 1.794 C 0.996 1.694 1.068 1.694 1.073 1.82 L 1.073 2.791 C 1.057 3.003 1.192 3.198 1.396 3.257 C 1.546 3.246 1.644 3.251 1.701 3.416 C 1.726 3.973 1.75 4.529 1.771 5.086 C 1.771 5.086 2.117 5.202 2.133 4.148 C 2.099 3.73 2.088 3.311 2.101 2.892 C 2.101 2.775 2.236 2.765 2.332 2.828 C 2.482 2.945 2.547 3.088 2.776 3.03 C 3.127 2.918 3.336 2.73 3.342 2.426 C 3.333 2.131 3.28 1.84 3.184 1.562 C 3.199 1.508 3.114 1.376 3.132 1.323 C 3.195 1.435 3.289 1.424 3.31 1.323 C 3.276 1.118 3.17 0.932 3.01 0.798 C 2.886 0.676 2.702 0.702 2.635 0.962 C 2.628 1.294 2.729 1.62 2.923 1.889 C 2.983 2.037 3.007 2.197 2.994 2.356 C 2.897 2.416 2.77 2.388 2.708 2.292 C 2.708 2.292 2.426 2.054 2.426 2.006 C 2.494 1.76 2.486 1.498 2.403 1.256 C 2.372 1.111 2.309 0.974 2.22 0.856 C 2.151 0.766 2.056 0.766 2.011 0.856 C 1.912 1.178 1.92 1.524 2.034 1.842 C 2.096 2.054 2.196 2.186 2.151 2.186 C 2.112 2.309 2.032 2.276 1.975 2.138 C 1.907 1.841 1.874 1.537 1.878 1.232 C 1.852 0.994 1.824 0.482 1.685 0.353 C 1.6 0.225 1.473 0.289 1.428 0.411 C 1.417 0.641 1.422 0.871 1.442 1.1 C 1.525 1.466 1.583 1.838 1.615 2.213 C 1.627 2.738 1.347 2.438 1.359 2.176 C 1.419 1.844 1.415 1.504 1.349 1.174 C 1.303 1.037 1.249 1.004 1.136 1.031 C 1.046 1.02 0.819 1.301 0.755 1.768 C 0.722 1.918 0.696 2.071 0.68 2.224 C 0.647 2.462 0.507 2.632 0.408 2.186 C 0.321 1.863 0.27 1.068 0.128 1.253\" fill=\"rgb(255,255,255)\"></path><path d=\"M 1.665 3.797 C 1.164 4.079 0.678 4.333 0.186 4.598 C 0.355 4.057 0.803 3.65 1.356 3.533 C 1.656 3.543 1.581 3.665 1.665 3.797\" fill=\"rgb(255,255,255)\"></path><path d=\"M 3.549 0.289 C 3.517 0.296 3.485 0.306 3.455 0.32 C 3.296 0.376 3.209 0.546 3.257 0.707 C 3.399 1.682 3.49 2.425 3.632 3.395 C 3.657 3.512 3.57 3.66 3.461 3.65 C 3.274 3.506 3.228 3.215 2.91 3.23 C 2.634 3.286 2.424 3.509 2.385 3.787 C 2.342 3.997 2.342 4.213 2.385 4.423 C 2.501 4.592 2.721 4.655 2.91 4.573 C 3.049 4.509 3.165 4.348 3.215 4.388 C 3.246 4.451 3.21 4.96 2.556 5.347 C 2.152 5.548 1.833 5.601 1.656 5.23 C 1.551 4.997 1.665 4.117 1.403 4.319 C 0.624 6.576 3.225 6.894 3.516 4.414 C 3.535 4.345 3.591 4.276 3.634 4.292 C 3.654 4.303 3.667 4.329 3.672 4.382 C 3.612 6.624 1.661 6.773 1.33 6.073 C 1.25 5.828 1.21 5.572 1.213 5.315 C 1.213 5.225 1.185 5.138 1.134 5.066 C 1.054 5.003 0.948 5.177 0.924 5.48 C 0.901 5.659 0.893 5.839 0.901 6.02 C 1.005 7.801 3.517 7.037 3.927 5.57 C 4.008 5.107 4.031 4.636 3.995 4.167 L 4.003 4.167 L 4.009 4.162 C 4.263 4.462 4.609 4.199 4.688 4.098 C 4.705 4.068 4.735 4.047 4.77 4.043 C 4.804 4.039 4.838 4.052 4.862 4.077 C 4.961 4.157 5.094 4.182 5.216 4.143 C 5.337 4.105 5.432 4.009 5.468 3.887 C 5.512 3.607 5.54 3.326 5.553 3.044 C 5.454 3.065 5.362 3.108 5.282 3.17 C 5.271 3.182 5.264 3.197 5.262 3.213 C 5.252 3.288 5.241 3.372 5.229 3.452 C 5.228 3.459 5.226 3.466 5.224 3.473 C 5.218 3.482 5.21 3.49 5.199 3.494 C 5.175 3.511 5.143 3.513 5.117 3.5 C 5.091 3.487 5.073 3.46 5.072 3.431 C 5.013 3.131 4.765 3.08 4.614 3.557 C 4.511 3.653 4.329 3.669 4.309 3.536 C 4.335 3.213 4.218 3.17 3.989 3.319 C 3.914 2.683 3.839 2.079 3.764 1.444 C 3.861 1.444 3.947 1.523 4.036 1.401 C 3.956 1.024 3.818 0.662 3.63 0.326 C 3.624 0.319 3.618 0.312 3.612 0.305 C 3.608 0.304 3.605 0.302 3.604 0.299 L 3.595 0.299 C 3.591 0.294 3.583 0.294 3.582 0.289 C 3.57 0.289 3.56 0.284 3.549 0.289 M 2.85 3.771 C 2.913 3.765 2.972 3.805 2.988 3.866 C 3.007 3.924 2.996 3.987 2.96 4.036 C 2.94 4.073 2.874 4.058 2.824 4.058 C 2.773 4.062 2.724 4.035 2.702 3.989 C 2.684 3.93 2.733 3.872 2.757 3.824 C 2.781 3.777 2.762 3.814 2.766 3.809 C 2.79 3.789 2.819 3.776 2.85 3.771\" fill=\"rgb(255,255,255)\"></path><path d=\"M 5.301 0.236 C 5.239 0.242 5.18 0.26 5.125 0.289 C 4.996 0.425 4.973 0.631 5.07 0.792 C 5.169 0.84 5.268 0.957 5.2 1.017 C 4.923 1.352 4.194 1.917 4.158 2.019 L 4.158 2.03 L 4.164 2.03 C 4.343 2.06 4.527 2.062 4.707 2.035 L 4.707 2.03 C 5.035 1.716 5.336 1.376 5.607 1.012 C 5.57 0.975 5.532 0.948 5.495 0.911 C 5.477 0.897 5.467 0.876 5.467 0.853 C 5.467 0.83 5.477 0.809 5.495 0.794 C 5.642 0.662 5.656 0.435 5.526 0.286 C 5.457 0.248 5.379 0.232 5.301 0.238 M 5.266 0.53 C 5.312 0.524 5.365 0.578 5.392 0.641 C 5.419 0.704 5.406 0.779 5.361 0.794 C 5.316 0.81 5.254 0.758 5.224 0.689 C 5.194 0.62 5.211 0.545 5.258 0.535 C 5.258 0.535 5.258 0.53 5.266 0.53 M 0.238 5.399 C -0.014 5.844 -0.069 6.374 0.088 6.861 C 0.158 6.962 0.284 7.009 0.402 6.977 C 0.576 6.893 0.654 6.495 0.611 6.353 C 0.553 6.246 0.507 6.23 0.448 6.32 C 0.327 6.596 0.276 6.405 0.264 6.245 C 0.25 5.983 0.261 5.721 0.297 5.461 C 0.328 5.244 0.297 5.307 0.237 5.398 M 12.1 4.604 C 11.833 3.951 11.461 3.31 11.343 3.066 C 11.226 2.822 10.332 1.365 10.2 1.196 C 9.909 0.809 10.671 1.36 10.104 0.586 C 9.889 0.379 9.879 0.368 9.693 0.199 C 9.606 0.124 9.382 -0.002 9.346 0.209 C 9.326 0.363 9.332 0.519 9.365 0.671 C 9.421 0.811 9.497 0.943 9.59 1.063 C 10.545 2.483 11.376 3.983 12.072 5.546 C 12.195 5.483 12.169 4.715 12.096 4.604\" fill=\"rgb(255,255,255)\"></path><path d=\"M 10.924 6.776 C 10.869 6.84 11.052 7.131 11.292 7.126 C 11.688 7.079 12.042 6.826 12.363 6.161 C 12.496 5.934 12.58 5.682 12.608 5.42 C 12.648 4.164 12.558 2.907 12.34 1.67 C 12.326 1.583 12.33 1.495 12.35 1.41 C 12.375 1.373 12.463 1.41 12.509 1.325 C 12.579 1.246 12.33 0.599 12.188 0.35 C 12.138 0.239 12.12 0.165 12.038 0.361 C 11.936 0.583 11.889 0.827 11.898 1.071 C 12.088 2.545 12.146 3.846 12.273 5.316 C 12.295 5.468 12.262 5.622 12.18 5.751 C 11.843 6.182 11.415 6.533 10.927 6.779 M 15.481 8.93 C 15.194 9.116 15.194 9.333 15.427 9.338 C 15.91 9.35 16.363 9.106 16.62 8.697 C 16.734 8.436 16.799 8.157 16.812 7.872 C 16.866 6.517 16.794 5.159 16.596 3.818 C 16.571 3.692 16.558 3.564 16.557 3.436 C 16.584 3.367 16.712 3.446 16.755 3.361 C 16.826 3.286 16.423 2.699 16.279 2.45 C 16.231 2.338 16.213 2.264 16.129 2.465 C 16.034 2.688 16.006 2.932 16.047 3.17 C 16.26 4.689 16.393 6.217 16.446 7.75 C 16.436 7.878 16.409 8.004 16.366 8.125 C 16.257 8.311 16.126 8.484 15.977 8.639 C 15.845 8.745 15.569 8.851 15.48 8.93\" fill=\"rgb(255,255,255)\"></path><path d=\"M 16.509 5.33 C 16.505 4.955 16.519 4.63 16.505 4.349 C 16.491 4.067 16.379 3.018 16.344 2.796 C 16.308 2.574 16.264 2.229 16.21 1.958 C 16.179 1.801 16.162 1.642 16.161 1.481 C 16.182 1.406 16.274 1.487 16.315 1.397 C 16.268 0.984 16.141 0.584 15.94 0.22 C 15.888 0.109 15.79 0.145 15.671 0.326 C 15.557 0.443 15.596 0.707 15.642 0.962 C 15.954 2.62 16.105 4.305 16.095 5.992 C 16.078 6.125 16.514 5.584 16.509 5.33 M 14.403 3.251 C 14.222 3.246 13.845 2.859 13.736 2.632 C 13.703 2.521 13.71 2.403 13.757 2.297 C 13.824 2.25 13.926 2.192 14.002 2.25 C 14.002 2.25 14.082 2.372 14.067 2.388 C 14.164 2.441 14.207 2.409 14.217 2.361 C 14.223 2.286 14.186 2.24 14.186 2.155 C 14.227 1.916 14.466 1.884 14.561 2.033 C 14.625 2.161 14.66 2.302 14.661 2.446 C 14.661 2.515 14.563 2.435 14.511 2.451 C 14.46 2.467 14.443 2.537 14.436 2.601 C 14.421 2.818 14.41 3.035 14.406 3.253 M 11.086 5.748 C 11.137 5.234 11.07 4.195 11.065 3.893 C 11.049 3.183 10.943 1.81 10.896 1.582 C 10.839 1.148 11.052 1.63 11.022 1.376 C 10.927 0.969 10.746 0.587 10.49 0.257 C 10.41 0.13 10.415 0.104 10.287 0.289 C 10.206 0.574 10.212 0.876 10.304 1.158 C 10.475 1.99 10.587 2.833 10.638 3.681 C 10.693 4.574 10.699 5.469 10.659 6.363 C 10.794 6.363 11.011 6.114 11.086 5.748\" fill=\"rgb(255,255,255)\"></path><path d=\"M 17.122 4.927 C 16.808 4.327 16.328 3.628 16.201 3.389 C 16.074 3.151 14.991 1.37 14.856 1.214 C 14.46 0.753 15.038 1.139 14.781 0.774 C 14.643 0.589 14.487 0.418 14.313 0.266 C 14.221 0.202 14.163 0.069 14.133 0.287 C 14.117 0.48 14.112 0.675 14.119 0.869 C 14.14 1.001 14.194 1.125 14.277 1.23 C 15.346 2.697 16.296 4.248 17.117 5.867 C 17.237 5.804 17.196 5.036 17.121 4.93 M 13.287 10.604 C 13.174 10.638 13.089 10.734 13.07 10.851 C 13.051 10.969 13.101 11.086 13.198 11.155 C 10.239 11.155 5.698 11.102 4.728 11.102 C 4.182 11.102 2.46 11.027 2.428 11.027 C 2.777 11.559 3.399 11.847 4.031 11.768 C 5.346 11.768 11.433 11.753 13.163 11.753 C 13.074 11.992 13.115 12.261 13.272 12.463 L 13.279 12.468 C 13.281 12.472 13.285 12.474 13.29 12.473 L 13.295 12.473 C 13.41 12.506 13.461 12.41 13.501 12.347 C 13.943 12.371 14.387 12.37 14.829 12.341 C 14.894 12.447 14.96 12.548 15.082 12.532 C 15.298 12.479 15.468 12.452 15.475 11.96 C 15.475 11.96 15.453 11.122 14.962 11.175 C 14.846 11.191 14.521 11.228 14.521 11.228 C 14.146 11.18 13.866 11.175 13.443 11.153 C 13.483 11.1 13.551 10.872 13.467 10.793 C 13.438 10.769 13.402 10.758 13.365 10.761 L 13.357 10.761 C 13.357 10.761 13.35 10.756 13.348 10.751 L 13.348 10.745 C 13.329 10.699 13.313 10.651 13.301 10.602 L 13.291 10.602 M 13.492 11.802 C 13.921 11.823 14.326 11.807 14.76 11.828 C 14.814 11.902 14.809 12.004 14.748 12.072 C 14.748 12.077 14.743 12.077 14.742 12.077 L 14.73 12.077 C 14.59 12.072 14.51 12.072 14.37 12.067 C 14.37 12.056 14.365 12.051 14.365 12.041 C 14.331 11.929 14.092 11.94 14.034 12.03 L 14.034 12.056 C 14.032 12.062 14.032 12.067 14.034 12.072 C 13.85 12.084 13.665 12.077 13.482 12.051 C 13.429 11.976 13.435 11.839 13.5 11.802 M 5.802 0.745 C 5.515 1.667 5.969 2.684 6.282 2.589 C 6.507 2.69 6.652 2.202 6.747 1.672 C 6.811 1.522 6.858 1.508 6.891 1.582 C 6.882 2.292 6.936 2.451 7.098 2.663 C 7.185 2.758 7.308 2.812 7.437 2.814 C 7.565 2.816 7.689 2.765 7.78 2.674 C 7.803 2.653 8.061 2.361 8.061 2.361 C 8.089 2.325 8.131 2.303 8.176 2.301 C 8.222 2.299 8.265 2.317 8.296 2.351 C 8.379 2.435 8.371 2.589 8.553 2.69 C 8.749 2.766 8.972 2.714 9.114 2.558 C 9.217 2.361 9.24 2.292 9.287 2.218 C 9.362 2.107 9.486 2.155 9.486 2.192 C 9.475 2.255 9.405 2.314 9.45 2.425 C 9.54 2.5 9.561 2.451 9.613 2.435 C 9.796 2.335 9.934 1.889 9.934 1.889 C 9.94 1.72 9.859 1.736 9.802 1.773 C 9.734 1.82 9.727 1.837 9.658 1.884 C 9.57 1.895 9.396 1.964 9.312 1.815 C 9.222 1.635 9.222 1.381 9.153 1.201 C 9.153 1.19 9.039 0.92 9.147 0.901 C 9.2 0.911 9.315 0.948 9.335 0.837 C 9.393 0.731 9.213 0.424 9.09 0.275 C 9.046 0.211 8.974 0.17 8.895 0.167 C 8.817 0.164 8.741 0.198 8.692 0.26 C 8.621 0.354 8.584 0.47 8.586 0.588 C 8.554 0.743 8.588 0.905 8.681 1.034 C 8.852 1.303 8.931 1.621 8.906 1.94 C 8.847 2.045 8.735 2.11 8.613 2.109 C 8.538 2.088 8.411 2.051 8.343 1.499 C 8.359 1.065 8.31 0.631 8.198 0.212 C 8.14 0.042 8.1 -0.122 7.959 0.17 C 7.836 0.356 7.805 0.589 7.877 0.8 C 7.985 1.115 8.016 1.451 7.967 1.781 C 7.919 1.875 7.863 1.966 7.799 2.051 C 7.715 2.161 7.558 2.185 7.445 2.104 C 7.322 2.034 7.241 1.908 7.23 1.767 C 7.255 1.405 7.243 1.041 7.194 0.68 C 7.109 0.479 6.964 0.553 6.904 0.611 C 6.623 0.966 6.439 1.388 6.372 1.836 C 6.29 2.132 6.202 2.048 6.141 1.926 C 5.991 1.772 5.982 0.542 5.802 0.744\" fill=\"rgb(255,255,255)\"></path><path d=\"M 6.774 2.658 C 6.774 2.663 6.771 2.663 6.766 2.663 L 6.766 2.669 C 6.747 2.679 6.723 2.717 6.673 2.759 C 6.588 2.872 6.555 3.016 6.58 3.156 C 6.584 3.183 6.738 3.665 6.871 4.01 C 6.983 4.382 7.021 4.773 6.982 5.16 C 6.768 5.657 6.408 6.078 5.951 6.368 C 5.816 6.437 5.656 6.437 5.52 6.368 L 5.52 6.363 C 5.436 6.297 5.392 6.193 5.404 6.087 C 5.865 5.803 6.227 5.384 6.441 4.887 C 6.543 4.607 6.552 4.303 6.469 4.017 C 6.443 3.872 6.383 3.736 6.293 3.62 C 6.293 3.62 6.293 3.62 6.293 3.614 C 6.351 3.583 6.5 3.71 6.525 3.63 C 6.481 3.402 6.378 3.19 6.225 3.015 C 6.184 2.956 6.119 2.919 6.048 2.913 C 5.977 2.908 5.907 2.936 5.859 2.989 C 5.735 3.068 5.709 3.35 5.766 3.599 C 5.834 3.779 6.016 3.811 6.146 4.181 L 6.146 4.187 C 6.171 4.315 6.163 4.448 6.123 4.574 C 5.903 4.88 5.642 5.155 5.347 5.39 L 5.342 5.395 L 5.342 5.401 L 5.334 5.401 L 5.334 5.395 C 5.337 5.354 5.337 5.314 5.334 5.273 C 5.334 5.168 5.372 4.913 5.369 4.865 L 5.369 4.86 C 5.148 5.024 5.069 5.522 5.031 5.671 C 4.467 6.022 3.939 6.429 3.456 6.884 C 3.262 7.219 4.784 6.492 4.956 6.407 C 4.956 6.407 4.96 6.407 4.962 6.413 C 4.995 6.522 5.04 6.627 5.098 6.725 C 5.28 6.989 5.609 7.11 5.919 7.025 C 6.418 6.784 6.832 6.395 7.106 5.912 C 7.151 5.837 7.224 5.78 7.289 5.837 C 7.61 6.466 8.265 6.852 8.97 6.83 C 9.159 6.569 9.07 6.437 8.992 6.389 C 8.967 6.368 8.582 6.199 8.523 6.029 C 8.487 5.876 8.576 5.738 8.761 5.631 C 9.289 5.576 9.809 5.464 10.313 5.297 C 10.331 5.088 10.389 4.885 10.483 4.697 C 10.503 4.655 10.533 4.618 10.571 4.591 C 10.571 4.591 10.571 4.591 10.571 4.586 L 10.571 4.58 C 10.572 4.577 10.572 4.573 10.571 4.57 L 10.483 4.511 L 8.797 4.501 C 8.78 4.494 8.764 4.485 8.75 4.475 L 8.75 4.443 C 8.763 4.425 8.782 4.412 8.803 4.406 C 9.208 4.347 9.922 4.215 9.969 3.436 C 9.994 3.258 9.944 3.079 9.832 2.939 C 9.719 2.8 9.554 2.713 9.375 2.699 C 9.025 2.775 8.796 3.114 8.859 3.467 C 8.844 3.569 8.892 3.775 8.797 3.796 C 8.176 3.865 7.5 4.3 7.475 4.613 L 7.467 4.613 L 7.462 4.618 L 7.454 4.618 L 7.446 4.613 C 7.381 4.573 7.348 4.496 7.364 4.421 C 7.335 3.857 7.19 3.305 6.937 2.8 C 6.852 2.699 6.813 2.662 6.787 2.657 L 6.777 2.657 M 9.242 3.351 C 9.289 3.346 9.336 3.359 9.374 3.388 C 9.434 3.418 9.474 3.479 9.477 3.547 L 9.477 3.567 L 9.467 3.578 C 9.434 3.614 9.362 3.609 9.29 3.561 C 9.234 3.53 9.195 3.475 9.186 3.411 L 9.186 3.405 C 9.186 3.395 9.191 3.389 9.194 3.389 L 9.198 3.379 C 9.198 3.374 9.198 3.374 9.207 3.368 C 9.217 3.358 9.232 3.352 9.246 3.353 M 7.678 4.953 L 7.695 4.953 C 7.927 5.002 8.163 5.032 8.4 5.043 C 8.596 5.059 8.693 5.228 8.51 5.303 C 8.327 5.377 8.155 5.425 8.155 5.722 C 8.18 5.805 8.18 5.893 8.155 5.976 C 8.155 5.981 8.151 5.987 8.148 5.987 L 8.148 5.997 L 8.142 5.997 L 8.134 6.002 C 8.133 6.005 8.131 6.007 8.127 6.008 C 8.082 6.013 8.02 5.96 7.972 5.939 C 7.711 5.759 7.54 5.475 7.504 5.16 C 7.5 5.109 7.516 5.059 7.549 5.02 C 7.582 4.981 7.629 4.957 7.68 4.953 M 2.25 0.755 C 2.445 0.856 2.809 0.814 2.794 0.464 C 2.793 0.409 2.79 0.354 2.786 0.299 C 2.748 0.194 2.636 0.215 2.613 0.326 C 2.605 0.358 2.625 0.416 2.598 0.437 C 2.571 0.458 2.52 0.443 2.523 0.347 C 2.521 0.317 2.511 0.287 2.492 0.263 C 2.48 0.249 2.462 0.243 2.445 0.247 C 2.418 0.252 2.418 0.257 2.406 0.284 C 2.397 0.309 2.392 0.336 2.391 0.363 C 2.387 0.4 2.373 0.411 2.351 0.416 C 2.328 0.422 2.334 0.422 2.311 0.406 C 2.301 0.389 2.283 0.384 2.283 0.358 C 2.282 0.329 2.279 0.301 2.274 0.273 C 2.261 0.257 2.244 0.246 2.225 0.242 C 2.118 0.242 2.111 0.379 2.118 0.432 C 2.109 0.443 2.105 0.686 2.249 0.755\" fill=\"rgb(255,255,255)\"></path><path d=\"M 7.947 3.469 C 8.142 3.57 8.604 3.512 8.493 3.169 C 8.491 3.114 8.487 3.059 8.481 3.005 C 8.442 2.899 8.335 2.925 8.309 3.032 C 8.303 3.068 8.324 3.127 8.296 3.148 C 8.268 3.169 8.217 3.148 8.221 3.053 C 8.219 3.023 8.208 2.996 8.19 2.973 C 8.178 2.961 8.162 2.955 8.145 2.957 C 8.12 2.963 8.12 2.968 8.105 2.994 C 8.097 3.02 8.092 3.047 8.091 3.074 C 8.091 3.111 8.075 3.122 8.052 3.127 C 8.028 3.132 8.035 3.132 8.013 3.116 C 7.99 3.101 7.984 3.095 7.984 3.068 C 7.985 3.04 7.981 3.011 7.971 2.984 C 7.96 2.967 7.943 2.956 7.924 2.952 C 7.819 2.952 7.813 3.089 7.817 3.143 C 7.811 3.148 7.806 3.392 7.95 3.466 M 11.27 2.345 C 11.463 2.446 11.829 2.399 11.814 2.045 C 11.814 2.019 11.808 1.913 11.805 1.881 C 11.764 1.781 11.655 1.802 11.633 1.913 C 11.624 1.945 11.644 2.003 11.616 2.019 C 11.601 2.04 11.541 2.03 11.541 1.929 C 11.537 1.899 11.526 1.87 11.509 1.844 C 11.496 1.839 11.481 1.837 11.466 1.839 C 11.441 1.839 11.441 1.844 11.425 1.871 C 11.416 1.898 11.411 1.927 11.41 1.955 C 11.41 1.988 11.396 1.998 11.371 2.003 C 11.346 2.009 11.351 2.009 11.334 1.993 C 11.317 1.983 11.306 1.965 11.305 1.945 C 11.304 1.914 11.3 1.884 11.292 1.855 C 11.278 1.844 11.262 1.837 11.245 1.834 C 11.139 1.834 11.13 1.971 11.138 2.019 C 11.13 2.03 11.126 2.273 11.271 2.342 M 12.99 5.16 C 12.754 5.55 12.712 6.028 12.876 6.453 C 12.949 6.675 13.097 6.865 13.295 6.989 C 13.354 7.053 13.441 7.085 13.528 7.074 C 13.614 7.064 13.691 7.012 13.733 6.935 C 13.931 6.702 13.936 6.114 14.028 5.997 C 14.095 5.78 14.258 5.817 14.337 5.912 C 14.41 6.025 14.507 6.12 14.622 6.188 C 14.698 6.279 14.807 6.334 14.924 6.343 C 15.042 6.352 15.158 6.313 15.247 6.236 C 15.412 6.131 15.531 5.968 15.581 5.78 C 15.653 4.888 15.662 3.992 15.606 3.098 C 15.596 3.035 15.414 1.996 15.414 1.985 C 15.414 1.973 15.387 1.455 15.369 1.333 C 15.364 1.28 15.354 1.264 15.401 1.27 C 15.45 1.322 15.455 1.328 15.486 1.338 C 15.536 1.349 15.581 1.253 15.552 1.163 C 15.402 0.845 15.242 0.522 15.087 0.209 C 15.052 0.162 15.003 0.119 14.942 0.215 C 14.868 0.291 14.827 0.394 14.829 0.501 C 14.844 0.726 14.879 0.962 14.892 1.19 C 14.954 1.577 15.015 1.969 15.078 2.361 C 15.135 3.194 15.153 3.956 15.21 4.789 C 15.223 5.09 15.154 5.389 15.009 5.653 C 15.009 5.653 14.874 5.748 14.78 5.648 C 14.65 5.489 14.536 5.319 14.439 5.138 C 14.3 4.996 14.207 5.033 14.108 5.138 C 13.863 5.522 13.668 5.935 13.528 6.368 C 13.479 6.453 13.344 6.527 13.196 6.363 C 13 5.996 12.927 5.575 12.99 5.163 M 11.358 0.299 C 11.55 0.464 11.647 0.716 11.613 0.968 C 11.578 1.206 11.487 1.471 11.42 1.434 C 11.352 1.397 11.468 1.196 11.401 0.978 C 11.36 0.835 11.124 0.581 11.149 0.501 C 11.129 0.442 11.144 0.377 11.189 0.334 C 11.234 0.29 11.3 0.277 11.358 0.299\" fill=\"rgb(255,255,255)\"></path><path d=\"M 13.551 5.399 C 13.567 5.048 13.554 4.697 13.514 4.349 C 13.503 4.073 13.235 1.799 13.178 1.587 C 13.112 1.19 13.441 1.535 13.403 1.301 C 13.29 1.01 13.008 0.581 12.92 0.326 C 12.864 0.215 12.887 0.119 12.77 0.299 C 12.667 0.621 12.631 0.96 12.663 1.296 C 12.999 2.871 13.178 4.476 13.197 6.087 C 13.331 6.087 13.486 5.743 13.554 5.399 M 15.706 3.026 C 15.869 3.122 15.96 3.614 15.943 3.758 C 15.912 4.017 15.828 4.298 15.768 4.261 C 15.707 4.223 15.78 3.875 15.749 3.768 C 15.711 3.614 15.497 3.334 15.519 3.249 C 15.475 3.074 15.613 3 15.706 3.024 M 4.729 4.497 C 4.879 4.561 4.969 4.927 4.954 5.033 C 4.923 5.223 4.843 5.425 4.786 5.408 C 4.729 5.39 4.8 5.121 4.767 5.042 C 4.756 4.846 4.542 4.742 4.55 4.66 C 4.509 4.506 4.635 4.48 4.731 4.501 M 0.67 0.178 C 0.895 0.253 0.907 0.623 0.895 0.734 C 0.864 0.93 0.784 1.142 0.726 1.116 C 0.667 1.09 0.726 0.824 0.694 0.741 C 0.662 0.619 0.469 0.413 0.495 0.349 C 0.451 0.216 0.579 0.152 0.672 0.179 M 5.094 1.927 C 4.913 2.07 4.858 2.321 4.963 2.527 C 5.024 2.618 5.138 2.657 5.241 2.623 C 5.41 2.649 5.51 2.267 5.51 2.267 C 5.51 2.267 5.515 2.162 5.317 2.363 C 5.232 2.384 5.221 2.347 5.199 2.294 C 5.179 2.194 5.188 2.092 5.225 1.997 C 5.256 1.901 5.191 1.859 5.094 1.928 M 6.382 0.035 C 6.23 0.158 6.136 0.338 6.12 0.533 C 6.114 0.66 6.092 0.66 6.168 0.745 C 6.224 0.835 6.279 0.824 6.389 0.755 C 6.446 0.716 6.484 0.654 6.495 0.586 C 6.522 0.436 6.357 0.655 6.335 0.491 C 6.3 0.337 6.405 0.278 6.506 0.125 C 6.506 0.024 6.506 -0.045 6.382 0.035 M 7.422 0.242 C 7.381 0.432 7.356 0.625 7.347 0.819 C 7.317 0.962 7.483 1.025 7.556 0.84 C 7.631 0.638 7.671 0.425 7.674 0.209 C 7.641 -0.008 7.509 0.003 7.422 0.242 M 13.97 3.989 C 13.994 3.967 14.892 3.246 14.892 3.246 C 14.985 3.209 14.967 3.621 14.923 3.612 C 14.651 3.915 14.328 4.169 13.97 4.362 C 13.926 4.394 13.881 4.082 13.97 3.992 M 14.791 3.983 C 14.952 4.073 15.016 4.592 14.997 4.733 C 15.003 5.009 14.847 5.231 14.782 5.2 C 14.718 5.168 14.789 4.856 14.758 4.744 C 14.689 4.575 14.638 4.399 14.608 4.219 C 14.563 4.043 14.694 3.948 14.79 3.98 M 9.437 6.23 C 9.511 6.136 9.597 6.053 9.693 5.981 C 9.752 5.951 9.824 5.967 9.867 6.018 C 9.882 6.114 9.811 6.209 9.834 6.341 C 9.852 6.395 9.867 6.458 9.954 6.432 C 10.068 6.331 10.22 6.281 10.372 6.294 C 10.485 6.294 10.485 6.506 10.419 6.506 C 10.221 6.56 10.029 6.636 9.847 6.731 C 9.794 6.769 9.72 6.757 9.681 6.704 C 9.646 6.649 9.64 6.58 9.666 6.519 C 9.673 6.413 9.635 6.355 9.555 6.36 C 9.495 6.402 9.443 6.423 9.413 6.35 C 9.402 6.291 9.398 6.26 9.437 6.227 M 15.739 6.512 C 15.792 6.566 15.792 6.653 15.739 6.707 C 15.675 6.776 15.632 6.808 15.567 6.877 C 15.539 6.935 15.52 7.02 15.61 7.046 C 15.777 7.1 16.167 6.821 16.167 6.808 C 16.21 6.769 16.225 6.708 16.204 6.654 C 16.167 6.607 16.086 6.633 16.031 6.633 C 16.002 6.633 15.916 6.612 15.956 6.533 C 15.985 6.485 16.008 6.435 16.026 6.383 C 16.051 6.314 16.032 6.272 15.933 6.233 C 15.854 6.219 15.773 6.219 15.693 6.233 C 15.636 6.248 15.618 6.281 15.605 6.355 C 15.609 6.471 15.673 6.466 15.741 6.514\" fill=\"rgb(255,255,255)\"></path></g></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-14gly43\",layoutDependency:layoutDependency,layoutId:\"uxepq2ISi\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 0 12 C 0 5.373 5.373 0 12 0 C 18.627 0 24 5.373 24 12 C 24 18.627 18.627 24 12 24 C 5.373 24 0 18.627 0 12 Z\" fill=\"rgb(61,150,53)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-os2b42\",layoutDependency:layoutDependency,layoutId:\"cHx2dhCwZ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17.193 12.534\" overflow=\"visible\"><g><path d=\"M 0.123 1.253 C 0.084 1.874 0.033 2.971 0.498 3.082 C 1.065 3.14 0.753 2.001 0.957 1.794 C 0.996 1.694 1.068 1.694 1.073 1.82 L 1.073 2.791 C 1.057 3.003 1.192 3.198 1.396 3.257 C 1.546 3.246 1.644 3.251 1.701 3.416 C 1.726 3.973 1.75 4.529 1.771 5.086 C 1.771 5.086 2.117 5.202 2.133 4.148 C 2.099 3.73 2.088 3.311 2.101 2.892 C 2.101 2.775 2.236 2.765 2.332 2.828 C 2.482 2.945 2.547 3.088 2.776 3.03 C 3.127 2.918 3.336 2.73 3.342 2.426 C 3.333 2.131 3.28 1.84 3.184 1.562 C 3.199 1.508 3.114 1.376 3.132 1.323 C 3.195 1.435 3.289 1.424 3.31 1.323 C 3.276 1.118 3.17 0.932 3.01 0.798 C 2.886 0.676 2.702 0.702 2.635 0.962 C 2.628 1.294 2.729 1.62 2.923 1.889 C 2.983 2.037 3.007 2.197 2.994 2.356 C 2.897 2.416 2.77 2.388 2.708 2.292 C 2.708 2.292 2.426 2.054 2.426 2.006 C 2.494 1.76 2.486 1.498 2.403 1.256 C 2.372 1.111 2.309 0.974 2.22 0.856 C 2.151 0.766 2.056 0.766 2.011 0.856 C 1.912 1.178 1.92 1.524 2.034 1.842 C 2.096 2.054 2.196 2.186 2.151 2.186 C 2.112 2.309 2.032 2.276 1.975 2.138 C 1.907 1.841 1.874 1.537 1.878 1.232 C 1.852 0.994 1.824 0.482 1.685 0.353 C 1.6 0.225 1.473 0.289 1.428 0.411 C 1.417 0.641 1.422 0.871 1.442 1.1 C 1.525 1.466 1.583 1.838 1.615 2.213 C 1.627 2.738 1.347 2.438 1.359 2.176 C 1.419 1.844 1.415 1.504 1.349 1.174 C 1.303 1.037 1.249 1.004 1.136 1.031 C 1.046 1.02 0.819 1.301 0.755 1.768 C 0.722 1.918 0.696 2.071 0.68 2.224 C 0.647 2.462 0.507 2.632 0.408 2.186 C 0.321 1.863 0.27 1.068 0.128 1.253\" fill=\"rgb(255,255,255)\"></path><path d=\"M 1.665 3.797 C 1.164 4.079 0.678 4.333 0.186 4.598 C 0.355 4.057 0.803 3.65 1.356 3.533 C 1.656 3.543 1.581 3.665 1.665 3.797\" fill=\"rgb(255,255,255)\"></path><path d=\"M 3.549 0.289 C 3.517 0.296 3.485 0.306 3.455 0.32 C 3.296 0.376 3.209 0.546 3.257 0.707 C 3.399 1.682 3.49 2.425 3.632 3.395 C 3.657 3.512 3.57 3.66 3.461 3.65 C 3.274 3.506 3.228 3.215 2.91 3.23 C 2.634 3.286 2.424 3.509 2.385 3.787 C 2.342 3.997 2.342 4.213 2.385 4.423 C 2.501 4.592 2.721 4.655 2.91 4.573 C 3.049 4.509 3.165 4.348 3.215 4.388 C 3.246 4.451 3.21 4.96 2.556 5.347 C 2.152 5.548 1.833 5.601 1.656 5.23 C 1.551 4.997 1.665 4.117 1.403 4.319 C 0.624 6.576 3.225 6.894 3.516 4.414 C 3.535 4.345 3.591 4.276 3.634 4.292 C 3.654 4.303 3.667 4.329 3.672 4.382 C 3.612 6.624 1.661 6.773 1.33 6.073 C 1.25 5.828 1.21 5.572 1.213 5.315 C 1.213 5.225 1.185 5.138 1.134 5.066 C 1.054 5.003 0.948 5.177 0.924 5.48 C 0.901 5.659 0.893 5.839 0.901 6.02 C 1.005 7.801 3.517 7.037 3.927 5.57 C 4.008 5.107 4.031 4.636 3.995 4.167 L 4.003 4.167 L 4.009 4.162 C 4.263 4.462 4.609 4.199 4.688 4.098 C 4.705 4.068 4.735 4.047 4.77 4.043 C 4.804 4.039 4.838 4.052 4.862 4.077 C 4.961 4.157 5.094 4.182 5.216 4.143 C 5.337 4.105 5.432 4.009 5.468 3.887 C 5.512 3.607 5.54 3.326 5.553 3.044 C 5.454 3.065 5.362 3.108 5.282 3.17 C 5.271 3.182 5.264 3.197 5.262 3.213 C 5.252 3.288 5.241 3.372 5.229 3.452 C 5.228 3.459 5.226 3.466 5.224 3.473 C 5.218 3.482 5.21 3.49 5.199 3.494 C 5.175 3.511 5.143 3.513 5.117 3.5 C 5.091 3.487 5.073 3.46 5.072 3.431 C 5.013 3.131 4.765 3.08 4.614 3.557 C 4.511 3.653 4.329 3.669 4.309 3.536 C 4.335 3.213 4.218 3.17 3.989 3.319 C 3.914 2.683 3.839 2.079 3.764 1.444 C 3.861 1.444 3.947 1.523 4.036 1.401 C 3.956 1.024 3.818 0.662 3.63 0.326 C 3.624 0.319 3.618 0.312 3.612 0.305 C 3.608 0.304 3.605 0.302 3.604 0.299 L 3.595 0.299 C 3.591 0.294 3.583 0.294 3.582 0.289 C 3.57 0.289 3.56 0.284 3.549 0.289 M 2.85 3.771 C 2.913 3.765 2.972 3.805 2.988 3.866 C 3.007 3.924 2.996 3.987 2.96 4.036 C 2.94 4.073 2.874 4.058 2.824 4.058 C 2.773 4.062 2.724 4.035 2.702 3.989 C 2.684 3.93 2.733 3.872 2.757 3.824 C 2.781 3.777 2.762 3.814 2.766 3.809 C 2.79 3.789 2.819 3.776 2.85 3.771\" fill=\"rgb(255,255,255)\"></path><path d=\"M 5.301 0.236 C 5.239 0.242 5.18 0.26 5.125 0.289 C 4.996 0.425 4.973 0.631 5.07 0.792 C 5.169 0.84 5.268 0.957 5.2 1.017 C 4.923 1.352 4.194 1.917 4.158 2.019 L 4.158 2.03 L 4.164 2.03 C 4.343 2.06 4.527 2.062 4.707 2.035 L 4.707 2.03 C 5.035 1.716 5.336 1.376 5.607 1.012 C 5.57 0.975 5.532 0.948 5.495 0.911 C 5.477 0.897 5.467 0.876 5.467 0.853 C 5.467 0.83 5.477 0.809 5.495 0.794 C 5.642 0.662 5.656 0.435 5.526 0.286 C 5.457 0.248 5.379 0.232 5.301 0.238 M 5.266 0.53 C 5.312 0.524 5.365 0.578 5.392 0.641 C 5.419 0.704 5.406 0.779 5.361 0.794 C 5.316 0.81 5.254 0.758 5.224 0.689 C 5.194 0.62 5.211 0.545 5.258 0.535 C 5.258 0.535 5.258 0.53 5.266 0.53 M 0.238 5.399 C -0.014 5.844 -0.069 6.374 0.088 6.861 C 0.158 6.962 0.284 7.009 0.402 6.977 C 0.576 6.893 0.654 6.495 0.611 6.353 C 0.553 6.246 0.507 6.23 0.448 6.32 C 0.327 6.596 0.276 6.405 0.264 6.245 C 0.25 5.983 0.261 5.721 0.297 5.461 C 0.328 5.244 0.297 5.307 0.237 5.398 M 12.1 4.604 C 11.833 3.951 11.461 3.31 11.343 3.066 C 11.226 2.822 10.332 1.365 10.2 1.196 C 9.909 0.809 10.671 1.36 10.104 0.586 C 9.889 0.379 9.879 0.368 9.693 0.199 C 9.606 0.124 9.382 -0.002 9.346 0.209 C 9.326 0.363 9.332 0.519 9.365 0.671 C 9.421 0.811 9.497 0.943 9.59 1.063 C 10.545 2.483 11.376 3.983 12.072 5.546 C 12.195 5.483 12.169 4.715 12.096 4.604\" fill=\"rgb(255,255,255)\"></path><path d=\"M 10.924 6.776 C 10.869 6.84 11.052 7.131 11.292 7.126 C 11.688 7.079 12.042 6.826 12.363 6.161 C 12.496 5.934 12.58 5.682 12.608 5.42 C 12.648 4.164 12.558 2.907 12.34 1.67 C 12.326 1.583 12.33 1.495 12.35 1.41 C 12.375 1.373 12.463 1.41 12.509 1.325 C 12.579 1.246 12.33 0.599 12.188 0.35 C 12.138 0.239 12.12 0.165 12.038 0.361 C 11.936 0.583 11.889 0.827 11.898 1.071 C 12.088 2.545 12.146 3.846 12.273 5.316 C 12.295 5.468 12.262 5.622 12.18 5.751 C 11.843 6.182 11.415 6.533 10.927 6.779 M 15.481 8.93 C 15.194 9.116 15.194 9.333 15.427 9.338 C 15.91 9.35 16.363 9.106 16.62 8.697 C 16.734 8.436 16.799 8.157 16.812 7.872 C 16.866 6.517 16.794 5.159 16.596 3.818 C 16.571 3.692 16.558 3.564 16.557 3.436 C 16.584 3.367 16.712 3.446 16.755 3.361 C 16.826 3.286 16.423 2.699 16.279 2.45 C 16.231 2.338 16.213 2.264 16.129 2.465 C 16.034 2.688 16.006 2.932 16.047 3.17 C 16.26 4.689 16.393 6.217 16.446 7.75 C 16.436 7.878 16.409 8.004 16.366 8.125 C 16.257 8.311 16.126 8.484 15.977 8.639 C 15.845 8.745 15.569 8.851 15.48 8.93\" fill=\"rgb(255,255,255)\"></path><path d=\"M 16.509 5.33 C 16.505 4.955 16.519 4.63 16.505 4.349 C 16.491 4.067 16.379 3.018 16.344 2.796 C 16.308 2.574 16.264 2.229 16.21 1.958 C 16.179 1.801 16.162 1.642 16.161 1.481 C 16.182 1.406 16.274 1.487 16.315 1.397 C 16.268 0.984 16.141 0.584 15.94 0.22 C 15.888 0.109 15.79 0.145 15.671 0.326 C 15.557 0.443 15.596 0.707 15.642 0.962 C 15.954 2.62 16.105 4.305 16.095 5.992 C 16.078 6.125 16.514 5.584 16.509 5.33 M 14.403 3.251 C 14.222 3.246 13.845 2.859 13.736 2.632 C 13.703 2.521 13.71 2.403 13.757 2.297 C 13.824 2.25 13.926 2.192 14.002 2.25 C 14.002 2.25 14.082 2.372 14.067 2.388 C 14.164 2.441 14.207 2.409 14.217 2.361 C 14.223 2.286 14.186 2.24 14.186 2.155 C 14.227 1.916 14.466 1.884 14.561 2.033 C 14.625 2.161 14.66 2.302 14.661 2.446 C 14.661 2.515 14.563 2.435 14.511 2.451 C 14.46 2.467 14.443 2.537 14.436 2.601 C 14.421 2.818 14.41 3.035 14.406 3.253 M 11.086 5.748 C 11.137 5.234 11.07 4.195 11.065 3.893 C 11.049 3.183 10.943 1.81 10.896 1.582 C 10.839 1.148 11.052 1.63 11.022 1.376 C 10.927 0.969 10.746 0.587 10.49 0.257 C 10.41 0.13 10.415 0.104 10.287 0.289 C 10.206 0.574 10.212 0.876 10.304 1.158 C 10.475 1.99 10.587 2.833 10.638 3.681 C 10.693 4.574 10.699 5.469 10.659 6.363 C 10.794 6.363 11.011 6.114 11.086 5.748\" fill=\"rgb(255,255,255)\"></path><path d=\"M 17.122 4.927 C 16.808 4.327 16.328 3.628 16.201 3.389 C 16.074 3.151 14.991 1.37 14.856 1.214 C 14.46 0.753 15.038 1.139 14.781 0.774 C 14.643 0.589 14.487 0.418 14.313 0.266 C 14.221 0.202 14.163 0.069 14.133 0.287 C 14.117 0.48 14.112 0.675 14.119 0.869 C 14.14 1.001 14.194 1.125 14.277 1.23 C 15.346 2.697 16.296 4.248 17.117 5.867 C 17.237 5.804 17.196 5.036 17.121 4.93 M 13.287 10.604 C 13.174 10.638 13.089 10.734 13.07 10.851 C 13.051 10.969 13.101 11.086 13.198 11.155 C 10.239 11.155 5.698 11.102 4.728 11.102 C 4.182 11.102 2.46 11.027 2.428 11.027 C 2.777 11.559 3.399 11.847 4.031 11.768 C 5.346 11.768 11.433 11.753 13.163 11.753 C 13.074 11.992 13.115 12.261 13.272 12.463 L 13.279 12.468 C 13.281 12.472 13.285 12.474 13.29 12.473 L 13.295 12.473 C 13.41 12.506 13.461 12.41 13.501 12.347 C 13.943 12.371 14.387 12.37 14.829 12.341 C 14.894 12.447 14.96 12.548 15.082 12.532 C 15.298 12.479 15.468 12.452 15.475 11.96 C 15.475 11.96 15.453 11.122 14.962 11.175 C 14.846 11.191 14.521 11.228 14.521 11.228 C 14.146 11.18 13.866 11.175 13.443 11.153 C 13.483 11.1 13.551 10.872 13.467 10.793 C 13.438 10.769 13.402 10.758 13.365 10.761 L 13.357 10.761 C 13.357 10.761 13.35 10.756 13.348 10.751 L 13.348 10.745 C 13.329 10.699 13.313 10.651 13.301 10.602 L 13.291 10.602 M 13.492 11.802 C 13.921 11.823 14.326 11.807 14.76 11.828 C 14.814 11.902 14.809 12.004 14.748 12.072 C 14.748 12.077 14.743 12.077 14.742 12.077 L 14.73 12.077 C 14.59 12.072 14.51 12.072 14.37 12.067 C 14.37 12.056 14.365 12.051 14.365 12.041 C 14.331 11.929 14.092 11.94 14.034 12.03 L 14.034 12.056 C 14.032 12.062 14.032 12.067 14.034 12.072 C 13.85 12.084 13.665 12.077 13.482 12.051 C 13.429 11.976 13.435 11.839 13.5 11.802 M 5.802 0.745 C 5.515 1.667 5.969 2.684 6.282 2.589 C 6.507 2.69 6.652 2.202 6.747 1.672 C 6.811 1.522 6.858 1.508 6.891 1.582 C 6.882 2.292 6.936 2.451 7.098 2.663 C 7.185 2.758 7.308 2.812 7.437 2.814 C 7.565 2.816 7.689 2.765 7.78 2.674 C 7.803 2.653 8.061 2.361 8.061 2.361 C 8.089 2.325 8.131 2.303 8.176 2.301 C 8.222 2.299 8.265 2.317 8.296 2.351 C 8.379 2.435 8.371 2.589 8.553 2.69 C 8.749 2.766 8.972 2.714 9.114 2.558 C 9.217 2.361 9.24 2.292 9.287 2.218 C 9.362 2.107 9.486 2.155 9.486 2.192 C 9.475 2.255 9.405 2.314 9.45 2.425 C 9.54 2.5 9.561 2.451 9.613 2.435 C 9.796 2.335 9.934 1.889 9.934 1.889 C 9.94 1.72 9.859 1.736 9.802 1.773 C 9.734 1.82 9.727 1.837 9.658 1.884 C 9.57 1.895 9.396 1.964 9.312 1.815 C 9.222 1.635 9.222 1.381 9.153 1.201 C 9.153 1.19 9.039 0.92 9.147 0.901 C 9.2 0.911 9.315 0.948 9.335 0.837 C 9.393 0.731 9.213 0.424 9.09 0.275 C 9.046 0.211 8.974 0.17 8.895 0.167 C 8.817 0.164 8.741 0.198 8.692 0.26 C 8.621 0.354 8.584 0.47 8.586 0.588 C 8.554 0.743 8.588 0.905 8.681 1.034 C 8.852 1.303 8.931 1.621 8.906 1.94 C 8.847 2.045 8.735 2.11 8.613 2.109 C 8.538 2.088 8.411 2.051 8.343 1.499 C 8.359 1.065 8.31 0.631 8.198 0.212 C 8.14 0.042 8.1 -0.122 7.959 0.17 C 7.836 0.356 7.805 0.589 7.877 0.8 C 7.985 1.115 8.016 1.451 7.967 1.781 C 7.919 1.875 7.863 1.966 7.799 2.051 C 7.715 2.161 7.558 2.185 7.445 2.104 C 7.322 2.034 7.241 1.908 7.23 1.767 C 7.255 1.405 7.243 1.041 7.194 0.68 C 7.109 0.479 6.964 0.553 6.904 0.611 C 6.623 0.966 6.439 1.388 6.372 1.836 C 6.29 2.132 6.202 2.048 6.141 1.926 C 5.991 1.772 5.982 0.542 5.802 0.744\" fill=\"rgb(255,255,255)\"></path><path d=\"M 6.774 2.658 C 6.774 2.663 6.771 2.663 6.766 2.663 L 6.766 2.669 C 6.747 2.679 6.723 2.717 6.673 2.759 C 6.588 2.872 6.555 3.016 6.58 3.156 C 6.584 3.183 6.738 3.665 6.871 4.01 C 6.983 4.382 7.021 4.773 6.982 5.16 C 6.768 5.657 6.408 6.078 5.951 6.368 C 5.816 6.437 5.656 6.437 5.52 6.368 L 5.52 6.363 C 5.436 6.297 5.392 6.193 5.404 6.087 C 5.865 5.803 6.227 5.384 6.441 4.887 C 6.543 4.607 6.552 4.303 6.469 4.017 C 6.443 3.872 6.383 3.736 6.293 3.62 C 6.293 3.62 6.293 3.62 6.293 3.614 C 6.351 3.583 6.5 3.71 6.525 3.63 C 6.481 3.402 6.378 3.19 6.225 3.015 C 6.184 2.956 6.119 2.919 6.048 2.913 C 5.977 2.908 5.907 2.936 5.859 2.989 C 5.735 3.068 5.709 3.35 5.766 3.599 C 5.834 3.779 6.016 3.811 6.146 4.181 L 6.146 4.187 C 6.171 4.315 6.163 4.448 6.123 4.574 C 5.903 4.88 5.642 5.155 5.347 5.39 L 5.342 5.395 L 5.342 5.401 L 5.334 5.401 L 5.334 5.395 C 5.337 5.354 5.337 5.314 5.334 5.273 C 5.334 5.168 5.372 4.913 5.369 4.865 L 5.369 4.86 C 5.148 5.024 5.069 5.522 5.031 5.671 C 4.467 6.022 3.939 6.429 3.456 6.884 C 3.262 7.219 4.784 6.492 4.956 6.407 C 4.956 6.407 4.96 6.407 4.962 6.413 C 4.995 6.522 5.04 6.627 5.098 6.725 C 5.28 6.989 5.609 7.11 5.919 7.025 C 6.418 6.784 6.832 6.395 7.106 5.912 C 7.151 5.837 7.224 5.78 7.289 5.837 C 7.61 6.466 8.265 6.852 8.97 6.83 C 9.159 6.569 9.07 6.437 8.992 6.389 C 8.967 6.368 8.582 6.199 8.523 6.029 C 8.487 5.876 8.576 5.738 8.761 5.631 C 9.289 5.576 9.809 5.464 10.313 5.297 C 10.331 5.088 10.389 4.885 10.483 4.697 C 10.503 4.655 10.533 4.618 10.571 4.591 C 10.571 4.591 10.571 4.591 10.571 4.586 L 10.571 4.58 C 10.572 4.577 10.572 4.573 10.571 4.57 L 10.483 4.511 L 8.797 4.501 C 8.78 4.494 8.764 4.485 8.75 4.475 L 8.75 4.443 C 8.763 4.425 8.782 4.412 8.803 4.406 C 9.208 4.347 9.922 4.215 9.969 3.436 C 9.994 3.258 9.944 3.079 9.832 2.939 C 9.719 2.8 9.554 2.713 9.375 2.699 C 9.025 2.775 8.796 3.114 8.859 3.467 C 8.844 3.569 8.892 3.775 8.797 3.796 C 8.176 3.865 7.5 4.3 7.475 4.613 L 7.467 4.613 L 7.462 4.618 L 7.454 4.618 L 7.446 4.613 C 7.381 4.573 7.348 4.496 7.364 4.421 C 7.335 3.857 7.19 3.305 6.937 2.8 C 6.852 2.699 6.813 2.662 6.787 2.657 L 6.777 2.657 M 9.242 3.351 C 9.289 3.346 9.336 3.359 9.374 3.388 C 9.434 3.418 9.474 3.479 9.477 3.547 L 9.477 3.567 L 9.467 3.578 C 9.434 3.614 9.362 3.609 9.29 3.561 C 9.234 3.53 9.195 3.475 9.186 3.411 L 9.186 3.405 C 9.186 3.395 9.191 3.389 9.194 3.389 L 9.198 3.379 C 9.198 3.374 9.198 3.374 9.207 3.368 C 9.217 3.358 9.232 3.352 9.246 3.353 M 7.678 4.953 L 7.695 4.953 C 7.927 5.002 8.163 5.032 8.4 5.043 C 8.596 5.059 8.693 5.228 8.51 5.303 C 8.327 5.377 8.155 5.425 8.155 5.722 C 8.18 5.805 8.18 5.893 8.155 5.976 C 8.155 5.981 8.151 5.987 8.148 5.987 L 8.148 5.997 L 8.142 5.997 L 8.134 6.002 C 8.133 6.005 8.131 6.007 8.127 6.008 C 8.082 6.013 8.02 5.96 7.972 5.939 C 7.711 5.759 7.54 5.475 7.504 5.16 C 7.5 5.109 7.516 5.059 7.549 5.02 C 7.582 4.981 7.629 4.957 7.68 4.953 M 2.25 0.755 C 2.445 0.856 2.809 0.814 2.794 0.464 C 2.793 0.409 2.79 0.354 2.786 0.299 C 2.748 0.194 2.636 0.215 2.613 0.326 C 2.605 0.358 2.625 0.416 2.598 0.437 C 2.571 0.458 2.52 0.443 2.523 0.347 C 2.521 0.317 2.511 0.287 2.492 0.263 C 2.48 0.249 2.462 0.243 2.445 0.247 C 2.418 0.252 2.418 0.257 2.406 0.284 C 2.397 0.309 2.392 0.336 2.391 0.363 C 2.387 0.4 2.373 0.411 2.351 0.416 C 2.328 0.422 2.334 0.422 2.311 0.406 C 2.301 0.389 2.283 0.384 2.283 0.358 C 2.282 0.329 2.279 0.301 2.274 0.273 C 2.261 0.257 2.244 0.246 2.225 0.242 C 2.118 0.242 2.111 0.379 2.118 0.432 C 2.109 0.443 2.105 0.686 2.249 0.755\" fill=\"rgb(255,255,255)\"></path><path d=\"M 7.947 3.469 C 8.142 3.57 8.604 3.512 8.493 3.169 C 8.491 3.114 8.487 3.059 8.481 3.005 C 8.442 2.899 8.335 2.925 8.309 3.032 C 8.303 3.068 8.324 3.127 8.296 3.148 C 8.268 3.169 8.217 3.148 8.221 3.053 C 8.219 3.023 8.208 2.996 8.19 2.973 C 8.178 2.961 8.162 2.955 8.145 2.957 C 8.12 2.963 8.12 2.968 8.105 2.994 C 8.097 3.02 8.092 3.047 8.091 3.074 C 8.091 3.111 8.075 3.122 8.052 3.127 C 8.028 3.132 8.035 3.132 8.013 3.116 C 7.99 3.101 7.984 3.095 7.984 3.068 C 7.985 3.04 7.981 3.011 7.971 2.984 C 7.96 2.967 7.943 2.956 7.924 2.952 C 7.819 2.952 7.813 3.089 7.817 3.143 C 7.811 3.148 7.806 3.392 7.95 3.466 M 11.27 2.345 C 11.463 2.446 11.829 2.399 11.814 2.045 C 11.814 2.019 11.808 1.913 11.805 1.881 C 11.764 1.781 11.655 1.802 11.633 1.913 C 11.624 1.945 11.644 2.003 11.616 2.019 C 11.601 2.04 11.541 2.03 11.541 1.929 C 11.537 1.899 11.526 1.87 11.509 1.844 C 11.496 1.839 11.481 1.837 11.466 1.839 C 11.441 1.839 11.441 1.844 11.425 1.871 C 11.416 1.898 11.411 1.927 11.41 1.955 C 11.41 1.988 11.396 1.998 11.371 2.003 C 11.346 2.009 11.351 2.009 11.334 1.993 C 11.317 1.983 11.306 1.965 11.305 1.945 C 11.304 1.914 11.3 1.884 11.292 1.855 C 11.278 1.844 11.262 1.837 11.245 1.834 C 11.139 1.834 11.13 1.971 11.138 2.019 C 11.13 2.03 11.126 2.273 11.271 2.342 M 12.99 5.16 C 12.754 5.55 12.712 6.028 12.876 6.453 C 12.949 6.675 13.097 6.865 13.295 6.989 C 13.354 7.053 13.441 7.085 13.528 7.074 C 13.614 7.064 13.691 7.012 13.733 6.935 C 13.931 6.702 13.936 6.114 14.028 5.997 C 14.095 5.78 14.258 5.817 14.337 5.912 C 14.41 6.025 14.507 6.12 14.622 6.188 C 14.698 6.279 14.807 6.334 14.924 6.343 C 15.042 6.352 15.158 6.313 15.247 6.236 C 15.412 6.131 15.531 5.968 15.581 5.78 C 15.653 4.888 15.662 3.992 15.606 3.098 C 15.596 3.035 15.414 1.996 15.414 1.985 C 15.414 1.973 15.387 1.455 15.369 1.333 C 15.364 1.28 15.354 1.264 15.401 1.27 C 15.45 1.322 15.455 1.328 15.486 1.338 C 15.536 1.349 15.581 1.253 15.552 1.163 C 15.402 0.845 15.242 0.522 15.087 0.209 C 15.052 0.162 15.003 0.119 14.942 0.215 C 14.868 0.291 14.827 0.394 14.829 0.501 C 14.844 0.726 14.879 0.962 14.892 1.19 C 14.954 1.577 15.015 1.969 15.078 2.361 C 15.135 3.194 15.153 3.956 15.21 4.789 C 15.223 5.09 15.154 5.389 15.009 5.653 C 15.009 5.653 14.874 5.748 14.78 5.648 C 14.65 5.489 14.536 5.319 14.439 5.138 C 14.3 4.996 14.207 5.033 14.108 5.138 C 13.863 5.522 13.668 5.935 13.528 6.368 C 13.479 6.453 13.344 6.527 13.196 6.363 C 13 5.996 12.927 5.575 12.99 5.163 M 11.358 0.299 C 11.55 0.464 11.647 0.716 11.613 0.968 C 11.578 1.206 11.487 1.471 11.42 1.434 C 11.352 1.397 11.468 1.196 11.401 0.978 C 11.36 0.835 11.124 0.581 11.149 0.501 C 11.129 0.442 11.144 0.377 11.189 0.334 C 11.234 0.29 11.3 0.277 11.358 0.299\" fill=\"rgb(255,255,255)\"></path><path d=\"M 13.551 5.399 C 13.567 5.048 13.554 4.697 13.514 4.349 C 13.503 4.073 13.235 1.799 13.178 1.587 C 13.112 1.19 13.441 1.535 13.403 1.301 C 13.29 1.01 13.008 0.581 12.92 0.326 C 12.864 0.215 12.887 0.119 12.77 0.299 C 12.667 0.621 12.631 0.96 12.663 1.296 C 12.999 2.871 13.178 4.476 13.197 6.087 C 13.331 6.087 13.486 5.743 13.554 5.399 M 15.706 3.026 C 15.869 3.122 15.96 3.614 15.943 3.758 C 15.912 4.017 15.828 4.298 15.768 4.261 C 15.707 4.223 15.78 3.875 15.749 3.768 C 15.711 3.614 15.497 3.334 15.519 3.249 C 15.475 3.074 15.613 3 15.706 3.024 M 4.729 4.497 C 4.879 4.561 4.969 4.927 4.954 5.033 C 4.923 5.223 4.843 5.425 4.786 5.408 C 4.729 5.39 4.8 5.121 4.767 5.042 C 4.756 4.846 4.542 4.742 4.55 4.66 C 4.509 4.506 4.635 4.48 4.731 4.501 M 0.67 0.178 C 0.895 0.253 0.907 0.623 0.895 0.734 C 0.864 0.93 0.784 1.142 0.726 1.116 C 0.667 1.09 0.726 0.824 0.694 0.741 C 0.662 0.619 0.469 0.413 0.495 0.349 C 0.451 0.216 0.579 0.152 0.672 0.179 M 5.094 1.927 C 4.913 2.07 4.858 2.321 4.963 2.527 C 5.024 2.618 5.138 2.657 5.241 2.623 C 5.41 2.649 5.51 2.267 5.51 2.267 C 5.51 2.267 5.515 2.162 5.317 2.363 C 5.232 2.384 5.221 2.347 5.199 2.294 C 5.179 2.194 5.188 2.092 5.225 1.997 C 5.256 1.901 5.191 1.859 5.094 1.928 M 6.382 0.035 C 6.23 0.158 6.136 0.338 6.12 0.533 C 6.114 0.66 6.092 0.66 6.168 0.745 C 6.224 0.835 6.279 0.824 6.389 0.755 C 6.446 0.716 6.484 0.654 6.495 0.586 C 6.522 0.436 6.357 0.655 6.335 0.491 C 6.3 0.337 6.405 0.278 6.506 0.125 C 6.506 0.024 6.506 -0.045 6.382 0.035 M 7.422 0.242 C 7.381 0.432 7.356 0.625 7.347 0.819 C 7.317 0.962 7.483 1.025 7.556 0.84 C 7.631 0.638 7.671 0.425 7.674 0.209 C 7.641 -0.008 7.509 0.003 7.422 0.242 M 13.97 3.989 C 13.994 3.967 14.892 3.246 14.892 3.246 C 14.985 3.209 14.967 3.621 14.923 3.612 C 14.651 3.915 14.328 4.169 13.97 4.362 C 13.926 4.394 13.881 4.082 13.97 3.992 M 14.791 3.983 C 14.952 4.073 15.016 4.592 14.997 4.733 C 15.003 5.009 14.847 5.231 14.782 5.2 C 14.718 5.168 14.789 4.856 14.758 4.744 C 14.689 4.575 14.638 4.399 14.608 4.219 C 14.563 4.043 14.694 3.948 14.79 3.98 M 9.437 6.23 C 9.511 6.136 9.597 6.053 9.693 5.981 C 9.752 5.951 9.824 5.967 9.867 6.018 C 9.882 6.114 9.811 6.209 9.834 6.341 C 9.852 6.395 9.867 6.458 9.954 6.432 C 10.068 6.331 10.22 6.281 10.372 6.294 C 10.485 6.294 10.485 6.506 10.419 6.506 C 10.221 6.56 10.029 6.636 9.847 6.731 C 9.794 6.769 9.72 6.757 9.681 6.704 C 9.646 6.649 9.64 6.58 9.666 6.519 C 9.673 6.413 9.635 6.355 9.555 6.36 C 9.495 6.402 9.443 6.423 9.413 6.35 C 9.402 6.291 9.398 6.26 9.437 6.227 M 15.739 6.512 C 15.792 6.566 15.792 6.653 15.739 6.707 C 15.675 6.776 15.632 6.808 15.567 6.877 C 15.539 6.935 15.52 7.02 15.61 7.046 C 15.777 7.1 16.167 6.821 16.167 6.808 C 16.21 6.769 16.225 6.708 16.204 6.654 C 16.167 6.607 16.086 6.633 16.031 6.633 C 16.002 6.633 15.916 6.612 15.956 6.533 C 15.985 6.485 16.008 6.435 16.026 6.383 C 16.051 6.314 16.032 6.272 15.933 6.233 C 15.854 6.219 15.773 6.219 15.693 6.233 C 15.636 6.248 15.618 6.281 15.605 6.355 C 15.609 6.471 15.673 6.466 15.741 6.514\" fill=\"rgb(255,255,255)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1s79o6l\",layoutDependency:layoutDependency,layoutId:\"quul5axQs\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.243 4.807\" overflow=\"visible\"><path d=\"M 0.025 0.971 C -0.015 1.591 -0.066 2.688 0.4 2.799 C 0.966 2.858 0.654 1.718 0.858 1.511 C 0.897 1.411 0.969 1.411 0.974 1.538 L 0.974 2.508 C 0.958 2.72 1.093 2.915 1.297 2.975 C 1.447 2.963 1.545 2.969 1.603 3.134 C 1.628 3.69 1.651 4.247 1.672 4.803 C 1.672 4.803 2.018 4.919 2.035 3.865 C 2 3.447 1.989 3.028 2.002 2.609 C 2.002 2.492 2.137 2.482 2.233 2.546 C 2.383 2.663 2.448 2.805 2.677 2.747 C 3.028 2.636 3.237 2.447 3.243 2.143 C 3.234 1.849 3.181 1.557 3.085 1.279 C 3.1 1.226 3.016 1.094 3.034 1.04 C 3.096 1.152 3.19 1.141 3.211 1.04 C 3.177 0.835 3.071 0.649 2.911 0.515 C 2.787 0.393 2.603 0.419 2.536 0.68 C 2.529 1.012 2.63 1.337 2.824 1.607 C 2.884 1.754 2.909 1.914 2.896 2.073 C 2.799 2.133 2.671 2.105 2.609 2.009 C 2.609 2.009 2.327 1.771 2.327 1.724 C 2.395 1.477 2.387 1.215 2.304 0.974 C 2.273 0.828 2.21 0.692 2.121 0.573 C 2.052 0.483 1.957 0.483 1.912 0.573 C 1.813 0.896 1.821 1.242 1.935 1.559 C 1.997 1.771 2.098 1.904 2.052 1.904 C 2.013 2.026 1.933 1.994 1.876 1.856 C 1.808 1.559 1.775 1.254 1.78 0.95 C 1.753 0.711 1.725 0.2 1.586 0.07 C 1.501 -0.058 1.374 0.006 1.329 0.128 C 1.318 0.358 1.323 0.588 1.343 0.817 C 1.426 1.183 1.484 1.555 1.516 1.93 C 1.528 2.455 1.248 2.155 1.26 1.893 C 1.32 1.561 1.316 1.221 1.25 0.891 C 1.204 0.754 1.15 0.722 1.037 0.749 C 0.947 0.737 0.72 1.019 0.656 1.485 C 0.623 1.636 0.598 1.788 0.581 1.941 C 0.548 2.18 0.408 2.349 0.31 1.904 C 0.223 1.58 0.172 0.785 0.029 0.971\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qxisjq\",layoutDependency:layoutDependency,layoutId:\"Nfcy1_jcB\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.478 1.065\" overflow=\"visible\"><path d=\"M 1.478 0.265 C 0.978 0.546 0.492 0.8 0 1.065 C 0.169 0.525 0.616 0.118 1.17 0 C 1.47 0.011 1.395 0.133 1.478 0.265\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-rseye5\",layoutDependency:layoutDependency,layoutId:\"NeBRB5ogd\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.655 6.768\" overflow=\"visible\"><path d=\"M 2.652 0.002 C 2.619 0.009 2.587 0.02 2.557 0.034 C 2.398 0.089 2.311 0.26 2.359 0.421 C 2.502 1.396 2.592 2.138 2.734 3.108 C 2.759 3.225 2.672 3.374 2.563 3.363 C 2.376 3.22 2.33 2.928 2.012 2.944 C 1.737 2.999 1.526 3.222 1.487 3.5 C 1.444 3.71 1.444 3.926 1.487 4.136 C 1.603 4.305 1.823 4.368 2.012 4.286 C 2.151 4.223 2.268 4.061 2.317 4.101 C 2.348 4.165 2.313 4.673 1.659 5.06 C 1.254 5.261 0.935 5.315 0.759 4.943 C 0.654 4.711 0.767 3.83 0.505 4.032 C -0.273 6.29 2.327 6.608 2.619 4.127 C 2.637 4.058 2.694 3.989 2.736 4.006 C 2.756 4.016 2.769 4.043 2.774 4.096 C 2.714 6.338 0.763 6.486 0.432 5.786 C 0.352 5.542 0.313 5.286 0.315 5.028 C 0.315 4.939 0.287 4.852 0.236 4.779 C 0.156 4.716 0.051 4.891 0.027 5.193 C 0.003 5.372 -0.005 5.553 0.003 5.733 C 0.107 7.514 2.619 6.751 3.03 5.283 C 3.11 4.82 3.133 4.349 3.097 3.881 L 3.105 3.881 L 3.111 3.875 C 3.366 4.175 3.711 3.912 3.79 3.812 C 3.807 3.781 3.837 3.761 3.872 3.757 C 3.906 3.752 3.94 3.765 3.964 3.791 C 4.064 3.87 4.196 3.895 4.318 3.857 C 4.439 3.819 4.534 3.722 4.57 3.6 C 4.614 3.321 4.642 3.039 4.655 2.757 C 4.556 2.779 4.464 2.822 4.384 2.884 C 4.373 2.896 4.366 2.911 4.364 2.927 C 4.354 3.002 4.344 3.086 4.332 3.165 C 4.33 3.172 4.328 3.179 4.326 3.186 C 4.32 3.196 4.312 3.203 4.302 3.208 C 4.277 3.224 4.246 3.226 4.219 3.213 C 4.193 3.2 4.175 3.174 4.174 3.144 C 4.115 2.844 3.867 2.794 3.717 3.271 C 3.613 3.367 3.432 3.383 3.411 3.25 C 3.438 2.927 3.321 2.884 3.091 3.032 C 3.016 2.396 2.941 1.793 2.866 1.157 C 2.964 1.157 3.049 1.237 3.138 1.115 C 3.058 0.738 2.921 0.376 2.732 0.04 C 2.726 0.032 2.72 0.025 2.714 0.018 C 2.71 0.018 2.708 0.016 2.706 0.013 L 2.697 0.013 C 2.693 0.008 2.685 0.008 2.685 0.002 C 2.673 0.002 2.662 -0.003 2.652 0.002 M 1.953 3.485 C 2.016 3.479 2.074 3.519 2.091 3.58 C 2.109 3.638 2.098 3.701 2.062 3.749 C 2.042 3.787 1.976 3.771 1.926 3.771 C 1.875 3.776 1.826 3.748 1.804 3.702 C 1.786 3.644 1.836 3.585 1.86 3.538 C 1.884 3.491 1.864 3.527 1.868 3.522 C 1.892 3.502 1.921 3.489 1.953 3.485\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1bnd9vi\",layoutDependency:layoutDependency,layoutId:\"rLd8Y5UAF\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.655 6.768\" overflow=\"visible\"><path d=\"M 2.652 0.002 C 2.619 0.009 2.587 0.02 2.557 0.034 C 2.398 0.089 2.311 0.26 2.359 0.421 C 2.502 1.396 2.592 2.138 2.734 3.108 C 2.759 3.225 2.672 3.374 2.563 3.363 C 2.376 3.22 2.33 2.928 2.012 2.944 C 1.737 2.999 1.526 3.222 1.487 3.5 C 1.444 3.71 1.444 3.926 1.487 4.136 C 1.603 4.305 1.823 4.368 2.012 4.286 C 2.151 4.223 2.268 4.061 2.317 4.101 C 2.348 4.165 2.313 4.673 1.659 5.06 C 1.254 5.261 0.935 5.315 0.759 4.943 C 0.654 4.711 0.767 3.83 0.505 4.032 C -0.273 6.29 2.327 6.608 2.619 4.127 C 2.637 4.058 2.694 3.989 2.736 4.006 C 2.756 4.016 2.769 4.043 2.774 4.096 C 2.714 6.338 0.763 6.486 0.432 5.786 C 0.352 5.542 0.313 5.286 0.315 5.028 C 0.315 4.939 0.287 4.852 0.236 4.779 C 0.156 4.716 0.051 4.891 0.027 5.193 C 0.003 5.372 -0.005 5.553 0.003 5.733 C 0.107 7.514 2.619 6.751 3.03 5.283 C 3.11 4.82 3.133 4.349 3.097 3.881 L 3.105 3.881 L 3.111 3.875 C 3.366 4.175 3.711 3.912 3.79 3.812 C 3.807 3.781 3.837 3.761 3.872 3.757 C 3.906 3.752 3.94 3.765 3.964 3.791 C 4.064 3.87 4.196 3.895 4.318 3.857 C 4.439 3.819 4.534 3.722 4.57 3.6 C 4.614 3.321 4.642 3.039 4.655 2.757 C 4.556 2.779 4.464 2.822 4.384 2.884 C 4.373 2.896 4.366 2.911 4.364 2.927 C 4.354 3.002 4.344 3.086 4.332 3.165 C 4.33 3.172 4.328 3.179 4.326 3.186 C 4.32 3.196 4.312 3.203 4.302 3.208 C 4.277 3.224 4.246 3.226 4.219 3.213 C 4.193 3.2 4.175 3.174 4.174 3.144 C 4.115 2.844 3.867 2.794 3.717 3.271 C 3.613 3.367 3.432 3.383 3.411 3.25 C 3.438 2.927 3.321 2.884 3.091 3.032 C 3.016 2.396 2.941 1.793 2.866 1.157 C 2.964 1.157 3.049 1.237 3.138 1.115 C 3.058 0.738 2.921 0.376 2.732 0.04 C 2.726 0.032 2.72 0.025 2.714 0.018 C 2.71 0.018 2.708 0.016 2.706 0.013 L 2.697 0.013 C 2.693 0.008 2.685 0.008 2.685 0.002 C 2.673 0.002 2.662 -0.003 2.652 0.002\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1b4uwim\",layoutDependency:layoutDependency,layoutId:\"KUJxznMXm\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0.152 0.001 C 0.215 -0.005 0.274 0.035 0.29 0.096 C 0.309 0.154 0.298 0.217 0.262 0.265 C 0.242 0.303 0.176 0.287 0.126 0.287 C 0.075 0.292 0.026 0.264 0.004 0.218 C -0.014 0.16 0.035 0.101 0.059 0.054 C 0.083 0.007 0.064 0.043 0.068 0.038 C 0.092 0.018 0.121 0.005 0.152 0.001\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-tj0elb\",layoutDependency:layoutDependency,layoutId:\"hFkExG7Va\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.158 6.894\" overflow=\"visible\"><path d=\"M 5.301 0.143 C 5.239 0.149 5.18 0.167 5.125 0.196 C 4.996 0.332 4.973 0.538 5.07 0.699 C 5.169 0.747 5.268 0.864 5.2 0.924 C 4.923 1.259 4.194 1.824 4.158 1.926 L 4.158 1.937 L 4.164 1.937 C 4.343 1.968 4.527 1.969 4.707 1.942 L 4.707 1.937 C 5.035 1.624 5.336 1.283 5.607 0.919 C 5.57 0.882 5.532 0.855 5.495 0.819 C 5.477 0.804 5.467 0.783 5.467 0.76 C 5.467 0.737 5.477 0.716 5.495 0.702 C 5.642 0.569 5.656 0.343 5.526 0.193 C 5.457 0.156 5.379 0.139 5.301 0.145 M 5.266 0.437 C 5.312 0.432 5.365 0.485 5.392 0.548 C 5.419 0.611 5.406 0.686 5.361 0.702 C 5.316 0.717 5.254 0.665 5.224 0.596 C 5.194 0.527 5.211 0.453 5.258 0.442 C 5.258 0.442 5.258 0.437 5.266 0.437 M 0.238 5.306 C -0.014 5.751 -0.069 6.281 0.088 6.768 C 0.158 6.87 0.284 6.916 0.402 6.885 C 0.576 6.8 0.654 6.402 0.611 6.26 C 0.553 6.153 0.507 6.138 0.448 6.228 C 0.327 6.504 0.276 6.312 0.264 6.153 C 0.25 5.891 0.261 5.628 0.297 5.368 C 0.328 5.151 0.297 5.214 0.237 5.305 M 12.1 4.511 C 11.833 3.858 11.461 3.217 11.343 2.973 C 11.226 2.73 10.332 1.272 10.2 1.103 C 9.909 0.716 10.671 1.267 10.104 0.493 C 9.889 0.286 9.879 0.276 9.693 0.106 C 9.606 0.031 9.382 -0.095 9.346 0.117 C 9.326 0.27 9.332 0.426 9.365 0.578 C 9.421 0.719 9.497 0.851 9.59 0.97 C 10.545 2.39 11.376 3.89 12.072 5.454 C 12.195 5.391 12.169 4.622 12.096 4.511\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-u2n48p\",layoutDependency:layoutDependency,layoutId:\"rKB7zxfQV\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.457 1.818\" overflow=\"visible\"><path d=\"M 1.143 0 C 1.082 0.006 1.022 0.024 0.968 0.053 C 0.838 0.189 0.815 0.395 0.912 0.556 C 1.011 0.604 1.11 0.721 1.043 0.781 C 0.765 1.116 0.037 1.681 0 1.784 L 0 1.794 L 0.006 1.794 C 0.186 1.825 0.369 1.826 0.549 1.799 L 0.549 1.794 C 0.877 1.481 1.178 1.14 1.449 0.776 C 1.412 0.74 1.374 0.712 1.337 0.676 C 1.32 0.662 1.309 0.64 1.309 0.617 C 1.309 0.595 1.32 0.573 1.337 0.559 C 1.484 0.426 1.498 0.2 1.368 0.05 C 1.299 0.013 1.221 -0.004 1.143 0.002\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18zgips\",layoutDependency:layoutDependency,layoutId:\"py4Opm35I\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0.057 0 C 0.103 -0.005 0.156 0.048 0.183 0.111 C 0.21 0.174 0.197 0.249 0.152 0.265 C 0.107 0.281 0.045 0.228 0.015 0.159 C -0.015 0.09 0.002 0.016 0.049 0.006 C 0.049 0.006 0.049 0 0.057 0\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18zoyh\",layoutDependency:layoutDependency,layoutId:\"IDZ6QwH0i\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1.673\" overflow=\"visible\"><path d=\"M 0.238 0.085 C -0.014 0.53 -0.069 1.06 0.088 1.547 C 0.158 1.648 0.284 1.695 0.402 1.663 C 0.576 1.579 0.654 1.181 0.611 1.039 C 0.553 0.932 0.507 0.916 0.448 1.006 C 0.327 1.282 0.276 1.091 0.264 0.931 C 0.25 0.669 0.261 0.407 0.297 0.147 C 0.328 -0.07 0.297 -0.007 0.237 0.084\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6unuc7\",layoutDependency:layoutDependency,layoutId:\"azySBlO_X\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.823 5.454\" overflow=\"visible\"><path d=\"M 2.766 4.511 C 2.499 3.858 2.127 3.217 2.009 2.973 C 1.891 2.73 0.998 1.272 0.866 1.103 C 0.575 0.716 1.337 1.267 0.769 0.493 C 0.555 0.286 0.544 0.276 0.359 0.106 C 0.272 0.031 0.048 -0.095 0.012 0.117 C -0.009 0.27 -0.002 0.426 0.03 0.578 C 0.087 0.719 0.163 0.851 0.255 0.97 C 1.211 2.39 2.041 3.89 2.738 5.454 C 2.861 5.391 2.835 4.622 2.762 4.511\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-t0ksyq\",layoutDependency:layoutDependency,layoutId:\"LmFClEyrb\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.915 9.1\" overflow=\"visible\"><path d=\"M 0.01 6.537 C -0.045 6.601 0.138 6.892 0.377 6.887 C 0.774 6.839 1.127 6.587 1.448 5.922 C 1.582 5.695 1.666 5.442 1.694 5.18 C 1.734 3.925 1.644 2.668 1.426 1.43 C 1.412 1.344 1.415 1.256 1.436 1.171 C 1.461 1.134 1.549 1.171 1.595 1.086 C 1.664 1.007 1.415 0.36 1.274 0.111 C 1.223 -0.001 1.205 -0.074 1.124 0.122 C 1.022 0.344 0.974 0.588 0.984 0.832 C 1.174 2.306 1.232 3.607 1.359 5.077 C 1.38 5.228 1.347 5.382 1.266 5.512 C 0.929 5.943 0.501 6.294 0.013 6.54 M 4.567 8.691 C 4.28 8.877 4.28 9.094 4.513 9.099 C 4.996 9.111 5.449 8.867 5.705 8.458 C 5.819 8.197 5.885 7.917 5.898 7.633 C 5.952 6.278 5.88 4.92 5.682 3.578 C 5.657 3.453 5.643 3.325 5.642 3.197 C 5.669 3.128 5.798 3.207 5.841 3.122 C 5.912 3.047 5.509 2.459 5.365 2.21 C 5.317 2.099 5.299 2.024 5.215 2.226 C 5.12 2.448 5.091 2.693 5.132 2.931 C 5.345 4.45 5.479 5.978 5.531 7.511 C 5.521 7.639 5.494 7.765 5.452 7.886 C 5.343 8.072 5.212 8.245 5.063 8.4 C 4.931 8.506 4.655 8.612 4.565 8.691\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-idemzk\",layoutDependency:layoutDependency,layoutId:\"R1ZX_t0gh\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.703 6.887\" overflow=\"visible\"><path d=\"M 0.01 6.537 C -0.045 6.601 0.138 6.892 0.377 6.887 C 0.774 6.839 1.127 6.587 1.448 5.922 C 1.582 5.695 1.666 5.442 1.694 5.18 C 1.734 3.925 1.644 2.668 1.426 1.43 C 1.412 1.344 1.415 1.256 1.436 1.171 C 1.461 1.134 1.549 1.171 1.595 1.086 C 1.664 1.007 1.415 0.36 1.274 0.111 C 1.223 -0.001 1.205 -0.074 1.124 0.122 C 1.022 0.344 0.974 0.588 0.984 0.832 C 1.174 2.306 1.232 3.607 1.359 5.077 C 1.38 5.228 1.347 5.382 1.266 5.512 C 0.929 5.943 0.501 6.294 0.013 6.54\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-55q9lz\",layoutDependency:layoutDependency,layoutId:\"pRIZqpofA\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.571 7\" overflow=\"visible\"><path d=\"M 0.223 6.591 C -0.065 6.777 -0.065 6.994 0.169 6.999 C 0.652 7.011 1.105 6.767 1.361 6.358 C 1.475 6.097 1.541 5.818 1.554 5.533 C 1.608 4.178 1.536 2.821 1.338 1.479 C 1.313 1.353 1.299 1.225 1.298 1.097 C 1.325 1.028 1.453 1.107 1.497 1.022 C 1.567 0.947 1.165 0.36 1.021 0.111 C 0.973 -0.001 0.955 -0.075 0.871 0.126 C 0.776 0.349 0.747 0.593 0.788 0.831 C 1.001 2.35 1.135 3.878 1.187 5.411 C 1.177 5.539 1.15 5.665 1.108 5.786 C 0.999 5.972 0.868 6.145 0.718 6.3 C 0.586 6.406 0.31 6.512 0.221 6.591\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-6j3333\",layoutDependency:layoutDependency,layoutId:\"Zo8Y90DXS\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.281 6.207\" overflow=\"visible\"><path d=\"M 6.279 5.174 C 6.274 4.799 6.289 4.474 6.274 4.193 C 6.26 3.912 6.148 2.862 6.113 2.64 C 6.078 2.418 6.034 2.073 5.98 1.803 C 5.948 1.645 5.932 1.486 5.93 1.326 C 5.951 1.251 6.043 1.331 6.085 1.241 C 6.037 0.828 5.91 0.428 5.71 0.064 C 5.658 -0.047 5.56 -0.011 5.44 0.171 C 5.326 0.287 5.365 0.552 5.411 0.807 C 5.723 2.465 5.875 4.149 5.864 5.836 C 5.848 5.969 6.283 5.428 6.279 5.174 M 4.172 3.096 C 3.991 3.09 3.615 2.703 3.505 2.476 C 3.472 2.366 3.48 2.247 3.526 2.142 C 3.593 2.094 3.696 2.036 3.772 2.094 C 3.772 2.094 3.851 2.216 3.836 2.232 C 3.934 2.285 3.976 2.253 3.986 2.205 C 3.992 2.13 3.955 2.084 3.955 1.999 C 3.997 1.761 4.236 1.728 4.33 1.877 C 4.395 2.005 4.429 2.146 4.431 2.29 C 4.431 2.359 4.333 2.28 4.281 2.295 C 4.229 2.311 4.213 2.381 4.206 2.445 C 4.19 2.662 4.18 2.88 4.175 3.097 M 0.856 5.592 C 0.907 5.078 0.839 4.039 0.835 3.738 C 0.818 3.027 0.712 1.654 0.665 1.426 C 0.608 0.992 0.822 1.474 0.791 1.22 C 0.697 0.813 0.515 0.431 0.259 0.102 C 0.18 -0.026 0.184 -0.052 0.057 0.133 C -0.024 0.418 -0.018 0.721 0.073 1.002 C 0.245 1.834 0.357 2.677 0.408 3.525 C 0.462 4.418 0.469 5.314 0.428 6.207 C 0.564 6.207 0.781 5.958 0.856 5.592\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-zd6g9e\",layoutDependency:layoutDependency,layoutId:\"HU8kFzyp8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 5.856\" overflow=\"visible\"><path d=\"M 0.913 5.173 C 0.909 4.798 0.923 4.473 0.909 4.192 C 0.894 3.91 0.783 2.861 0.747 2.639 C 0.712 2.417 0.668 2.072 0.614 1.801 C 0.582 1.644 0.566 1.485 0.564 1.324 C 0.585 1.249 0.678 1.33 0.719 1.24 C 0.672 0.827 0.544 0.427 0.344 0.063 C 0.292 -0.048 0.194 -0.012 0.075 0.169 C -0.039 0.286 0 0.55 0.045 0.805 C 0.357 2.464 0.509 4.148 0.498 5.835 C 0.482 5.968 0.918 5.427 0.913 5.173\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-upkjfz\",layoutDependency:layoutDependency,layoutId:\"x9n_2sEAU\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1.31\" overflow=\"visible\"><path d=\"M 0.687 1.309 C 0.506 1.303 0.13 0.916 0.02 0.689 C -0.013 0.579 -0.005 0.46 0.041 0.355 C 0.108 0.307 0.211 0.249 0.286 0.307 C 0.286 0.307 0.366 0.429 0.351 0.445 C 0.448 0.498 0.491 0.466 0.501 0.418 C 0.507 0.343 0.47 0.297 0.47 0.212 C 0.511 -0.026 0.751 -0.059 0.845 0.09 C 0.91 0.218 0.944 0.359 0.946 0.503 C 0.946 0.572 0.847 0.493 0.796 0.508 C 0.744 0.524 0.727 0.594 0.721 0.658 C 0.705 0.875 0.695 1.093 0.69 1.31\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-cwrk2m\",layoutDependency:layoutDependency,layoutId:\"nOH0BOLBf\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 6.207\" overflow=\"visible\"><path d=\"M 0.856 5.592 C 0.907 5.078 0.839 4.039 0.835 3.738 C 0.818 3.027 0.712 1.654 0.665 1.426 C 0.608 0.992 0.822 1.474 0.791 1.22 C 0.697 0.813 0.515 0.431 0.259 0.102 C 0.18 -0.026 0.184 -0.052 0.057 0.133 C -0.024 0.418 -0.018 0.721 0.073 1.002 C 0.245 1.834 0.357 2.677 0.408 3.525 C 0.462 4.418 0.469 5.314 0.428 6.207 C 0.564 6.207 0.781 5.958 0.856 5.592\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1wfnlj4\",layoutDependency:layoutDependency,layoutId:\"FU_LQVIE8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.764 12.524\" overflow=\"visible\"><path d=\"M 14.694 4.917 C 14.38 4.317 13.9 3.618 13.773 3.38 C 13.646 3.141 12.563 1.361 12.428 1.205 C 12.032 0.744 12.61 1.13 12.353 0.765 C 12.215 0.579 12.058 0.409 11.885 0.256 C 11.793 0.192 11.735 0.06 11.705 0.277 C 11.689 0.471 11.684 0.665 11.691 0.86 C 11.712 0.992 11.766 1.116 11.849 1.221 C 12.918 2.688 13.868 4.239 14.689 5.858 C 14.809 5.795 14.768 5.026 14.693 4.92 M 10.859 10.594 C 10.745 10.628 10.661 10.724 10.642 10.842 C 10.623 10.959 10.673 11.077 10.77 11.145 C 7.811 11.145 3.27 11.092 2.3 11.092 C 1.754 11.092 0.032 11.017 0 11.017 C 0.349 11.55 0.971 11.837 1.603 11.759 C 2.918 11.759 9.005 11.743 10.735 11.743 C 10.646 11.983 10.687 12.252 10.844 12.453 L 10.851 12.459 C 10.853 12.462 10.857 12.465 10.862 12.464 L 10.867 12.464 C 10.982 12.496 11.033 12.4 11.073 12.337 C 11.515 12.362 11.959 12.36 12.401 12.332 C 12.466 12.438 12.532 12.538 12.654 12.522 C 12.87 12.469 13.04 12.443 13.047 11.95 C 13.047 11.95 13.025 11.112 12.534 11.166 C 12.418 11.181 12.093 11.219 12.093 11.219 C 11.718 11.171 11.438 11.166 11.015 11.144 C 11.055 11.091 11.123 10.863 11.038 10.783 C 11.01 10.759 10.974 10.748 10.937 10.752 L 10.929 10.752 C 10.929 10.752 10.922 10.746 10.92 10.741 L 10.92 10.736 C 10.901 10.689 10.885 10.641 10.873 10.593 L 10.863 10.593 M 11.064 11.793 C 11.493 11.814 11.898 11.798 12.331 11.819 C 12.386 11.892 12.381 11.994 12.32 12.063 C 12.32 12.068 12.315 12.068 12.314 12.068 L 12.302 12.068 C 12.162 12.063 12.082 12.063 11.941 12.057 C 11.941 12.047 11.937 12.042 11.937 12.031 C 11.902 11.919 11.664 11.931 11.605 12.021 L 11.605 12.047 C 11.604 12.052 11.604 12.057 11.605 12.063 C 11.422 12.074 11.237 12.067 11.054 12.042 C 11.001 11.967 11.007 11.829 11.072 11.793 M 3.374 0.735 C 3.087 1.657 3.541 2.675 3.854 2.58 C 4.079 2.68 4.224 2.193 4.319 1.662 C 4.383 1.512 4.43 1.498 4.463 1.572 C 4.454 2.283 4.508 2.442 4.67 2.654 C 4.757 2.748 4.88 2.802 5.009 2.804 C 5.137 2.806 5.261 2.756 5.352 2.664 C 5.375 2.643 5.633 2.352 5.633 2.352 C 5.661 2.316 5.703 2.294 5.748 2.292 C 5.793 2.29 5.837 2.308 5.868 2.341 C 5.951 2.426 5.943 2.58 6.125 2.68 C 6.321 2.757 6.544 2.704 6.686 2.548 C 6.789 2.352 6.812 2.283 6.859 2.208 C 6.934 2.097 7.058 2.145 7.058 2.182 C 7.047 2.246 6.977 2.304 7.022 2.415 C 7.112 2.49 7.133 2.442 7.185 2.426 C 7.368 2.325 7.506 1.88 7.506 1.88 C 7.512 1.71 7.431 1.726 7.374 1.764 C 7.306 1.811 7.299 1.827 7.23 1.875 C 7.142 1.885 6.968 1.954 6.884 1.806 C 6.794 1.626 6.794 1.371 6.725 1.191 C 6.725 1.181 6.611 0.91 6.719 0.891 C 6.772 0.902 6.887 0.939 6.907 0.828 C 6.965 0.722 6.785 0.414 6.662 0.266 C 6.618 0.201 6.546 0.161 6.467 0.158 C 6.389 0.155 6.313 0.189 6.264 0.25 C 6.193 0.345 6.155 0.46 6.158 0.579 C 6.125 0.734 6.16 0.895 6.253 1.024 C 6.424 1.294 6.503 1.612 6.478 1.93 C 6.419 2.036 6.306 2.101 6.185 2.1 C 6.11 2.079 5.983 2.041 5.915 1.49 C 5.931 1.056 5.882 0.622 5.77 0.202 C 5.712 0.033 5.672 -0.132 5.531 0.16 C 5.407 0.346 5.377 0.579 5.449 0.791 C 5.557 1.106 5.587 1.442 5.539 1.771 C 5.491 1.866 5.435 1.956 5.371 2.041 C 5.286 2.151 5.13 2.175 5.017 2.094 C 4.894 2.025 4.813 1.899 4.802 1.758 C 4.826 1.395 4.815 1.031 4.766 0.671 C 4.681 0.469 4.536 0.543 4.476 0.602 C 4.194 0.956 4.011 1.379 3.944 1.827 C 3.862 2.123 3.774 2.038 3.713 1.917 C 3.563 1.763 3.554 0.533 3.374 0.735\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1a6tanz\",layoutDependency:layoutDependency,layoutId:\"yNDh2Wsnr\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.077 5.701\" overflow=\"visible\"><path d=\"M 3.006 4.76 C 2.692 4.16 2.212 3.461 2.085 3.223 C 1.958 2.984 0.875 1.204 0.74 1.048 C 0.344 0.586 0.922 0.973 0.665 0.607 C 0.527 0.422 0.37 0.252 0.197 0.099 C 0.105 0.035 0.047 -0.098 0.017 0.12 C 0.001 0.314 -0.004 0.508 0.003 0.703 C 0.024 0.834 0.078 0.958 0.161 1.063 C 1.23 2.531 2.18 4.081 3.001 5.701 C 3.121 5.638 3.08 4.869 3.005 4.763\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jkx8ey\",layoutDependency:layoutDependency,layoutId:\"Ej7Oav4d7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.047 1.931\" overflow=\"visible\"><path d=\"M 10.859 0.002 C 10.745 0.036 10.661 0.132 10.642 0.249 C 10.623 0.367 10.673 0.484 10.77 0.553 C 7.811 0.553 3.27 0.5 2.3 0.5 C 1.754 0.5 0.032 0.425 0 0.425 C 0.349 0.957 0.971 1.245 1.603 1.166 C 2.918 1.166 9.005 1.151 10.735 1.151 C 10.646 1.39 10.687 1.659 10.844 1.861 L 10.851 1.866 C 10.853 1.87 10.857 1.872 10.862 1.871 L 10.867 1.871 C 10.982 1.904 11.033 1.808 11.073 1.745 C 11.515 1.769 11.959 1.767 12.401 1.739 C 12.466 1.845 12.532 1.945 12.654 1.93 C 12.87 1.877 13.04 1.85 13.047 1.358 C 13.047 1.358 13.025 0.52 12.534 0.573 C 12.418 0.589 12.093 0.626 12.093 0.626 C 11.718 0.578 11.438 0.573 11.015 0.551 C 11.055 0.498 11.123 0.27 11.038 0.191 C 11.01 0.167 10.974 0.156 10.937 0.159 L 10.929 0.159 C 10.929 0.159 10.922 0.154 10.92 0.148 L 10.92 0.143 C 10.901 0.097 10.885 0.049 10.873 0 L 10.863 0\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-oork6h\",layoutDependency:layoutDependency,layoutId:\"YB97FHAIm\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.351 1\" overflow=\"visible\"><path d=\"M 0.046 0 C 0.475 0.021 0.88 0.005 1.313 0.026 C 1.368 0.1 1.363 0.202 1.302 0.27 C 1.302 0.275 1.297 0.275 1.296 0.275 L 1.284 0.275 C 1.144 0.27 1.063 0.27 0.923 0.265 C 0.923 0.254 0.919 0.249 0.919 0.239 C 0.884 0.127 0.646 0.138 0.587 0.228 L 0.587 0.254 C 0.586 0.259 0.586 0.265 0.587 0.27 C 0.403 0.282 0.218 0.275 0.036 0.249 C -0.017 0.174 -0.011 0.037 0.054 0\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5cb6z6\",layoutDependency:layoutDependency,layoutId:\"mcMOJi2Wf\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.223 2.805\" overflow=\"visible\"><path d=\"M 0.091 0.735 C -0.196 1.657 0.258 2.675 0.571 2.58 C 0.796 2.68 0.941 2.193 1.036 1.662 C 1.1 1.512 1.147 1.498 1.18 1.572 C 1.171 2.283 1.225 2.442 1.387 2.654 C 1.474 2.748 1.597 2.802 1.726 2.804 C 1.854 2.806 1.978 2.756 2.069 2.664 C 2.092 2.643 2.35 2.352 2.35 2.352 C 2.378 2.316 2.42 2.294 2.465 2.292 C 2.511 2.29 2.554 2.308 2.585 2.341 C 2.668 2.426 2.66 2.58 2.842 2.68 C 3.038 2.757 3.261 2.704 3.403 2.548 C 3.506 2.352 3.529 2.283 3.576 2.208 C 3.651 2.097 3.775 2.145 3.775 2.182 C 3.764 2.246 3.694 2.304 3.739 2.415 C 3.829 2.49 3.85 2.442 3.902 2.426 C 4.085 2.325 4.223 1.88 4.223 1.88 C 4.229 1.71 4.148 1.726 4.091 1.764 C 4.023 1.811 4.016 1.827 3.947 1.875 C 3.859 1.885 3.685 1.954 3.601 1.806 C 3.511 1.626 3.511 1.371 3.442 1.191 C 3.442 1.181 3.328 0.91 3.436 0.891 C 3.489 0.902 3.604 0.939 3.624 0.828 C 3.682 0.722 3.502 0.414 3.379 0.266 C 3.335 0.201 3.263 0.161 3.184 0.158 C 3.106 0.155 3.03 0.189 2.981 0.25 C 2.91 0.345 2.873 0.46 2.875 0.579 C 2.843 0.734 2.877 0.895 2.97 1.024 C 3.141 1.294 3.22 1.612 3.195 1.93 C 3.136 2.036 3.024 2.101 2.902 2.1 C 2.827 2.079 2.7 2.041 2.632 1.49 C 2.648 1.056 2.599 0.622 2.487 0.202 C 2.429 0.033 2.389 -0.132 2.248 0.16 C 2.125 0.346 2.094 0.579 2.166 0.791 C 2.274 1.106 2.305 1.442 2.256 1.771 C 2.208 1.866 2.152 1.956 2.088 2.041 C 2.004 2.151 1.847 2.175 1.734 2.094 C 1.611 2.025 1.53 1.899 1.519 1.758 C 1.544 1.395 1.532 1.031 1.483 0.671 C 1.398 0.469 1.253 0.543 1.193 0.602 C 0.912 0.956 0.728 1.379 0.661 1.827 C 0.579 2.123 0.491 2.038 0.43 1.917 C 0.28 1.763 0.271 0.533 0.091 0.735\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1f11y8n\",layoutDependency:layoutDependency,layoutId:\"qW2LdQ9qK\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.457 6.822\" overflow=\"visible\"><path d=\"M 4.66 2.428 C 4.66 2.433 4.657 2.433 4.652 2.433 L 4.652 2.438 C 4.633 2.449 4.609 2.486 4.559 2.528 C 4.474 2.642 4.441 2.786 4.466 2.926 C 4.47 2.953 4.624 3.435 4.757 3.779 C 4.869 4.152 4.907 4.543 4.868 4.93 C 4.654 5.427 4.294 5.848 3.837 6.138 C 3.702 6.206 3.542 6.206 3.406 6.138 L 3.406 6.133 C 3.322 6.067 3.278 5.963 3.29 5.857 C 3.751 5.573 4.113 5.154 4.327 4.657 C 4.429 4.377 4.438 4.072 4.355 3.787 C 4.329 3.642 4.269 3.506 4.179 3.389 C 4.179 3.389 4.179 3.389 4.179 3.384 C 4.237 3.353 4.386 3.479 4.411 3.4 C 4.367 3.172 4.264 2.959 4.111 2.785 C 4.07 2.726 4.005 2.688 3.934 2.683 C 3.863 2.678 3.793 2.706 3.745 2.759 C 3.621 2.838 3.595 3.119 3.652 3.368 C 3.72 3.548 3.902 3.581 4.032 3.951 L 4.032 3.956 C 4.057 4.085 4.049 4.218 4.009 4.343 C 3.789 4.65 3.528 4.924 3.233 5.159 L 3.228 5.165 L 3.228 5.171 L 3.22 5.171 L 3.22 5.165 C 3.223 5.124 3.223 5.083 3.22 5.043 C 3.22 4.937 3.258 4.682 3.255 4.635 L 3.255 4.63 C 3.034 4.794 2.955 5.292 2.917 5.441 C 2.353 5.792 1.825 6.198 1.342 6.654 C 1.148 6.989 2.67 6.262 2.842 6.177 C 2.842 6.177 2.846 6.177 2.848 6.182 C 2.881 6.292 2.926 6.397 2.984 6.495 C 3.166 6.759 3.495 6.879 3.805 6.795 C 4.304 6.553 4.718 6.165 4.992 5.682 C 5.037 5.607 5.11 5.549 5.175 5.607 C 5.496 6.235 6.151 6.622 6.856 6.599 C 7.045 6.339 6.956 6.207 6.878 6.159 C 6.853 6.138 6.468 5.969 6.409 5.799 C 6.373 5.645 6.462 5.507 6.647 5.401 C 7.175 5.346 7.695 5.234 8.199 5.067 C 8.217 4.858 8.275 4.654 8.369 4.467 C 8.389 4.425 8.419 4.388 8.457 4.361 C 8.457 4.361 8.457 4.361 8.457 4.355 L 8.457 4.35 C 8.458 4.347 8.458 4.343 8.457 4.34 L 8.369 4.281 L 6.683 4.271 C 6.666 4.264 6.65 4.255 6.636 4.244 L 6.636 4.213 C 6.649 4.195 6.668 4.182 6.689 4.175 C 7.094 4.117 7.808 3.985 7.855 3.206 C 7.88 3.028 7.83 2.848 7.718 2.709 C 7.605 2.569 7.44 2.482 7.261 2.469 C 6.911 2.544 6.682 2.884 6.745 3.237 C 6.73 3.338 6.778 3.545 6.683 3.566 C 6.062 3.635 5.386 4.07 5.361 4.382 L 5.353 4.382 L 5.348 4.388 L 5.34 4.388 L 5.332 4.382 C 5.267 4.342 5.234 4.266 5.25 4.191 C 5.221 3.627 5.076 3.075 4.823 2.57 C 4.738 2.469 4.699 2.432 4.673 2.426 L 4.663 2.426 M 7.128 3.121 C 7.175 3.116 7.222 3.129 7.26 3.158 C 7.32 3.188 7.36 3.249 7.363 3.317 L 7.363 3.337 L 7.353 3.347 C 7.32 3.384 7.248 3.379 7.176 3.331 C 7.12 3.3 7.081 3.244 7.072 3.181 L 7.072 3.175 C 7.072 3.164 7.077 3.159 7.08 3.159 L 7.084 3.149 C 7.084 3.143 7.084 3.143 7.093 3.138 C 7.103 3.127 7.118 3.122 7.132 3.122 M 5.564 4.723 L 5.581 4.723 C 5.813 4.772 6.049 4.802 6.286 4.813 C 6.482 4.829 6.579 4.998 6.396 5.072 C 6.213 5.147 6.041 5.195 6.041 5.492 C 6.066 5.574 6.066 5.663 6.041 5.746 C 6.041 5.751 6.037 5.756 6.034 5.756 L 6.034 5.767 L 6.028 5.767 L 6.02 5.772 C 6.019 5.775 6.017 5.777 6.013 5.777 C 5.968 5.783 5.906 5.73 5.858 5.708 C 5.597 5.529 5.426 5.245 5.39 4.93 C 5.386 4.879 5.402 4.828 5.435 4.79 C 5.468 4.751 5.515 4.727 5.566 4.723 M 0.136 0.525 C 0.331 0.626 0.695 0.584 0.68 0.233 C 0.679 0.178 0.676 0.124 0.672 0.069 C 0.634 -0.037 0.522 -0.016 0.499 0.096 C 0.491 0.128 0.511 0.186 0.484 0.207 C 0.457 0.228 0.406 0.212 0.409 0.117 C 0.408 0.086 0.397 0.057 0.378 0.032 C 0.366 0.019 0.348 0.013 0.331 0.017 C 0.304 0.022 0.304 0.027 0.292 0.053 C 0.283 0.079 0.278 0.106 0.277 0.133 C 0.273 0.17 0.259 0.181 0.237 0.186 C 0.214 0.191 0.22 0.191 0.197 0.176 C 0.187 0.159 0.169 0.154 0.169 0.128 C 0.168 0.099 0.165 0.071 0.16 0.043 C 0.147 0.027 0.13 0.016 0.111 0.011 C 0.004 0.011 -0.003 0.149 0.004 0.202 C -0.005 0.212 -0.009 0.456 0.135 0.525\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1hxasw5\",layoutDependency:layoutDependency,layoutId:\"vkJHB2BqX\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.133 4.395\" overflow=\"visible\"><path d=\"M 3.336 0.002 C 3.336 0.007 3.332 0.007 3.327 0.007 L 3.327 0.012 C 3.309 0.022 3.284 0.06 3.234 0.102 C 3.15 0.216 3.116 0.36 3.141 0.499 C 3.145 0.526 3.299 1.009 3.432 1.353 C 3.544 1.726 3.582 2.116 3.543 2.503 C 3.329 3.001 2.97 3.422 2.512 3.712 C 2.377 3.78 2.217 3.78 2.082 3.712 L 2.082 3.706 C 1.998 3.641 1.954 3.536 1.965 3.43 C 2.426 3.147 2.789 2.728 3.003 2.23 C 3.104 1.951 3.114 1.646 3.03 1.36 C 3.005 1.216 2.944 1.079 2.854 0.963 C 2.854 0.963 2.854 0.963 2.854 0.958 C 2.912 0.926 3.061 1.053 3.086 0.973 C 3.043 0.745 2.939 0.533 2.786 0.358 C 2.746 0.299 2.681 0.262 2.609 0.257 C 2.538 0.252 2.468 0.28 2.42 0.332 C 2.296 0.412 2.27 0.693 2.328 0.942 C 2.395 1.122 2.577 1.154 2.707 1.525 L 2.707 1.53 C 2.732 1.659 2.724 1.792 2.685 1.917 C 2.465 2.223 2.203 2.498 1.908 2.733 L 1.903 2.738 L 1.903 2.744 L 1.895 2.744 L 1.895 2.738 C 1.898 2.698 1.898 2.657 1.895 2.617 C 1.895 2.511 1.933 2.256 1.93 2.209 L 1.93 2.203 C 1.709 2.368 1.63 2.866 1.592 3.014 C 1.028 3.366 0.501 3.772 0.017 4.228 C -0.177 4.562 1.345 3.835 1.517 3.751 C 1.517 3.751 1.521 3.751 1.524 3.756 C 1.556 3.865 1.601 3.971 1.659 4.069 C 1.842 4.333 2.171 4.453 2.48 4.369 C 2.98 4.127 3.394 3.739 3.667 3.256 C 3.712 3.181 3.785 3.123 3.85 3.181 C 4.171 3.809 4.826 4.195 5.531 4.173 C 5.721 3.913 5.631 3.781 5.553 3.733 C 5.529 3.712 5.143 3.542 5.085 3.373 C 5.048 3.219 5.137 3.081 5.322 2.974 C 5.85 2.92 6.371 2.808 6.874 2.641 C 6.892 2.432 6.95 2.228 7.044 2.041 C 7.064 1.998 7.094 1.962 7.132 1.934 C 7.132 1.934 7.132 1.934 7.132 1.929 L 7.132 1.924 C 7.133 1.92 7.133 1.917 7.132 1.913 L 7.044 1.855 L 5.358 1.844 C 5.342 1.838 5.326 1.829 5.311 1.818 L 5.311 1.787 C 5.324 1.769 5.343 1.755 5.364 1.749 C 5.769 1.691 6.483 1.558 6.53 0.779 C 6.555 0.602 6.505 0.422 6.393 0.282 C 6.281 0.143 6.115 0.056 5.937 0.043 C 5.586 0.118 5.358 0.457 5.42 0.811 C 5.406 0.912 5.453 1.118 5.358 1.139 C 4.737 1.208 4.061 1.643 4.036 1.956 L 4.028 1.956 L 4.023 1.961 L 4.015 1.961 L 4.008 1.956 C 3.943 1.916 3.91 1.84 3.925 1.765 C 3.897 1.201 3.751 0.648 3.498 0.143 C 3.413 0.043 3.374 0.005 3.348 0 L 3.338 0\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ok2yq1\",layoutDependency:layoutDependency,layoutId:\"xYAJlGMRj\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0.056 0.001 C 0.103 -0.004 0.15 0.009 0.188 0.038 C 0.248 0.068 0.288 0.129 0.291 0.197 L 0.291 0.217 L 0.281 0.227 C 0.248 0.264 0.175 0.259 0.104 0.211 C 0.047 0.18 0.009 0.125 0 0.061 L 0 0.055 C 0 0.044 0.005 0.039 0.008 0.039 L 0.012 0.029 C 0.012 0.023 0.012 0.023 0.02 0.018 C 0.031 0.008 0.045 0.002 0.06 0.002\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6cseon\",layoutDependency:layoutDependency,layoutId:\"uhyFacic5\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.104 1.055\" overflow=\"visible\"><path d=\"M 0.175 0 L 0.191 0 C 0.424 0.049 0.66 0.079 0.897 0.09 C 1.093 0.106 1.19 0.275 1.007 0.35 C 0.824 0.424 0.652 0.472 0.652 0.769 C 0.677 0.852 0.677 0.94 0.652 1.023 C 0.652 1.028 0.647 1.034 0.644 1.034 L 0.644 1.044 L 0.639 1.044 L 0.631 1.049 C 0.63 1.052 0.627 1.054 0.624 1.055 C 0.579 1.06 0.517 1.007 0.469 0.986 C 0.208 0.806 0.037 0.522 0.001 0.207 C -0.004 0.156 0.012 0.106 0.045 0.067 C 0.078 0.028 0.125 0.004 0.176 0\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11nihic\",layoutDependency:layoutDependency,layoutId:\"sTySaBq0X\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0.136 0.525 C 0.331 0.626 0.695 0.584 0.68 0.233 C 0.679 0.178 0.676 0.124 0.672 0.069 C 0.634 -0.037 0.522 -0.016 0.499 0.096 C 0.491 0.128 0.511 0.186 0.484 0.207 C 0.457 0.228 0.406 0.212 0.409 0.117 C 0.408 0.086 0.397 0.057 0.378 0.032 C 0.366 0.019 0.348 0.013 0.331 0.017 C 0.304 0.022 0.304 0.027 0.292 0.053 C 0.283 0.079 0.278 0.106 0.277 0.133 C 0.273 0.17 0.259 0.181 0.237 0.186 C 0.214 0.191 0.22 0.191 0.197 0.176 C 0.187 0.159 0.169 0.154 0.169 0.128 C 0.168 0.099 0.165 0.071 0.16 0.043 C 0.147 0.027 0.13 0.016 0.111 0.011 C 0.004 0.011 -0.003 0.149 0.004 0.202 C -0.005 0.212 -0.009 0.456 0.135 0.525\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1sxnqpx\",layoutDependency:layoutDependency,layoutId:\"I74J93B9Y\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.828 6.919\" overflow=\"visible\"><path d=\"M 0.133 3.311 C 0.327 3.412 0.789 3.354 0.678 3.011 C 0.677 2.956 0.673 2.901 0.666 2.847 C 0.628 2.741 0.52 2.767 0.494 2.874 C 0.488 2.911 0.509 2.969 0.481 2.99 C 0.454 3.011 0.402 2.99 0.406 2.895 C 0.405 2.866 0.394 2.838 0.375 2.815 C 0.364 2.804 0.347 2.798 0.331 2.8 C 0.305 2.805 0.305 2.81 0.29 2.836 C 0.282 2.862 0.277 2.889 0.276 2.916 C 0.276 2.953 0.26 2.964 0.237 2.969 C 0.214 2.974 0.22 2.974 0.198 2.959 C 0.175 2.943 0.169 2.938 0.169 2.911 C 0.17 2.882 0.166 2.853 0.157 2.826 C 0.146 2.81 0.129 2.798 0.109 2.794 C 0.004 2.794 -0.002 2.932 0.002 2.985 C -0.004 2.99 -0.008 3.234 0.136 3.308 M 3.455 2.188 C 3.649 2.288 4.014 2.241 3.999 1.888 C 3.999 1.861 3.993 1.756 3.991 1.723 C 3.949 1.623 3.841 1.644 3.818 1.756 C 3.809 1.787 3.829 1.846 3.801 1.861 C 3.787 1.882 3.726 1.872 3.726 1.771 C 3.722 1.741 3.711 1.712 3.694 1.687 C 3.681 1.681 3.666 1.68 3.652 1.681 C 3.626 1.681 3.626 1.687 3.61 1.713 C 3.602 1.74 3.597 1.769 3.595 1.798 C 3.595 1.83 3.581 1.84 3.556 1.846 C 3.532 1.851 3.536 1.851 3.519 1.835 C 3.502 1.825 3.491 1.807 3.49 1.787 C 3.49 1.757 3.485 1.727 3.478 1.697 C 3.464 1.687 3.448 1.68 3.43 1.676 C 3.325 1.676 3.316 1.813 3.323 1.861 C 3.316 1.872 3.311 2.116 3.456 2.185 M 5.175 5.002 C 4.939 5.393 4.898 5.87 5.062 6.295 C 5.134 6.517 5.282 6.707 5.48 6.831 C 5.539 6.895 5.626 6.927 5.713 6.917 C 5.8 6.906 5.876 6.854 5.918 6.778 C 6.116 6.544 6.121 5.956 6.213 5.839 C 6.28 5.622 6.443 5.659 6.523 5.755 C 6.595 5.867 6.692 5.962 6.807 6.031 C 6.883 6.121 6.992 6.177 7.11 6.186 C 7.227 6.194 7.344 6.156 7.432 6.078 C 7.597 5.974 7.717 5.811 7.766 5.622 C 7.839 4.73 7.847 3.834 7.791 2.941 C 7.781 2.877 7.599 1.838 7.599 1.827 C 7.599 1.816 7.573 1.297 7.554 1.175 C 7.549 1.123 7.539 1.106 7.586 1.112 C 7.636 1.165 7.64 1.17 7.672 1.18 C 7.721 1.192 7.766 1.096 7.737 1.006 C 7.587 0.688 7.427 0.364 7.273 0.052 C 7.237 0.004 7.188 -0.038 7.127 0.057 C 7.053 0.134 7.013 0.237 7.015 0.343 C 7.029 0.568 7.064 0.805 7.077 1.033 C 7.139 1.419 7.201 1.811 7.263 2.203 C 7.321 3.036 7.338 3.799 7.395 4.631 C 7.408 4.932 7.339 5.231 7.195 5.495 C 7.195 5.495 7.059 5.59 6.965 5.49 C 6.835 5.332 6.721 5.161 6.625 4.981 C 6.485 4.838 6.392 4.875 6.293 4.981 C 6.049 5.364 5.854 5.778 5.713 6.211 C 5.664 6.295 5.53 6.37 5.381 6.205 C 5.185 5.838 5.113 5.417 5.175 5.005 M 3.543 0.142 C 3.736 0.307 3.832 0.558 3.799 0.81 C 3.763 1.048 3.673 1.313 3.605 1.276 C 3.538 1.24 3.653 1.038 3.586 0.82 C 3.545 0.677 3.31 0.423 3.334 0.343 C 3.314 0.285 3.329 0.219 3.374 0.176 C 3.419 0.133 3.485 0.119 3.543 0.142\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-13swr8r\",layoutDependency:layoutDependency,layoutId:\"B6j26qMYs\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0.133 0.532 C 0.327 0.633 0.789 0.574 0.678 0.232 C 0.677 0.177 0.673 0.122 0.666 0.067 C 0.628 -0.038 0.52 -0.012 0.494 0.094 C 0.488 0.131 0.509 0.19 0.481 0.211 C 0.454 0.232 0.402 0.211 0.406 0.115 C 0.405 0.086 0.394 0.058 0.375 0.036 C 0.364 0.024 0.347 0.018 0.331 0.02 C 0.305 0.025 0.305 0.031 0.29 0.057 C 0.282 0.083 0.277 0.109 0.276 0.136 C 0.276 0.174 0.26 0.184 0.237 0.19 C 0.214 0.195 0.22 0.195 0.198 0.179 C 0.175 0.163 0.169 0.158 0.169 0.131 C 0.17 0.102 0.166 0.074 0.157 0.046 C 0.146 0.03 0.129 0.019 0.109 0.015 C 0.004 0.015 -0.002 0.152 0.002 0.205 C -0.004 0.211 -0.008 0.454 0.136 0.529\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-lfpzqa\",layoutDependency:layoutDependency,layoutId:\"WVwkBEDrl\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0.135 0.529 C 0.328 0.629 0.694 0.582 0.679 0.229 C 0.679 0.203 0.673 0.097 0.67 0.065 C 0.629 -0.036 0.52 -0.015 0.498 0.097 C 0.489 0.128 0.509 0.187 0.481 0.203 C 0.466 0.224 0.406 0.213 0.406 0.113 C 0.402 0.082 0.391 0.053 0.374 0.028 C 0.361 0.023 0.346 0.021 0.331 0.023 C 0.306 0.023 0.306 0.028 0.29 0.054 C 0.282 0.082 0.276 0.11 0.275 0.139 C 0.275 0.171 0.261 0.182 0.236 0.187 C 0.211 0.192 0.216 0.192 0.199 0.176 C 0.182 0.166 0.171 0.148 0.17 0.128 C 0.169 0.098 0.165 0.068 0.157 0.038 C 0.143 0.028 0.127 0.021 0.11 0.017 C 0.004 0.017 -0.005 0.155 0.003 0.203 C -0.005 0.213 -0.009 0.457 0.136 0.526\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6w82om\",layoutDependency:layoutDependency,layoutId:\"VGVBWpemj\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.865 6.919\" overflow=\"visible\"><path d=\"M 0.212 5.002 C -0.023 5.393 -0.065 5.87 0.099 6.295 C 0.171 6.517 0.319 6.707 0.517 6.831 C 0.577 6.895 0.663 6.927 0.75 6.917 C 0.837 6.906 0.913 6.854 0.955 6.778 C 1.153 6.544 1.159 5.956 1.25 5.839 C 1.318 5.622 1.48 5.659 1.56 5.755 C 1.632 5.867 1.729 5.962 1.844 6.031 C 1.92 6.121 2.029 6.177 2.147 6.186 C 2.265 6.194 2.381 6.156 2.47 6.078 C 2.634 5.974 2.754 5.811 2.803 5.622 C 2.876 4.73 2.884 3.834 2.828 2.941 C 2.818 2.877 2.636 1.838 2.636 1.827 C 2.636 1.816 2.61 1.297 2.591 1.175 C 2.587 1.123 2.576 1.106 2.623 1.112 C 2.673 1.165 2.677 1.17 2.709 1.18 C 2.758 1.192 2.803 1.096 2.774 1.006 C 2.624 0.688 2.464 0.364 2.31 0.052 C 2.275 0.004 2.225 -0.038 2.164 0.057 C 2.09 0.134 2.05 0.237 2.052 0.343 C 2.066 0.568 2.101 0.805 2.114 1.033 C 2.176 1.419 2.238 1.811 2.3 2.203 C 2.358 3.036 2.375 3.799 2.432 4.631 C 2.446 4.932 2.376 5.231 2.232 5.495 C 2.232 5.495 2.096 5.59 2.002 5.49 C 1.872 5.332 1.758 5.161 1.662 4.981 C 1.522 4.838 1.429 4.875 1.33 4.981 C 1.086 5.364 0.891 5.778 0.751 6.211 C 0.701 6.295 0.567 6.37 0.418 6.205 C 0.222 5.838 0.15 5.417 0.212 5.005\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-l9pamw\",layoutDependency:layoutDependency,layoutId:\"hGKxS0h1C\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1.149\" overflow=\"visible\"><path d=\"M 0.217 0.011 C 0.41 0.176 0.507 0.427 0.473 0.679 C 0.438 0.918 0.347 1.182 0.28 1.146 C 0.212 1.109 0.328 0.907 0.261 0.69 C 0.22 0.546 -0.016 0.292 0.009 0.213 C -0.012 0.154 0.004 0.088 0.049 0.045 C 0.093 0.002 0.159 -0.012 0.217 0.011\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1nsgy3s\",layoutDependency:layoutDependency,layoutId:\"xm1nAW8ke\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15.727 7.053\" overflow=\"visible\"><path d=\"M 13.065 5.399 C 13.081 5.048 13.068 4.697 13.028 4.349 C 13.017 4.073 12.749 1.799 12.692 1.587 C 12.626 1.19 12.955 1.535 12.917 1.301 C 12.804 1.01 12.522 0.581 12.434 0.326 C 12.378 0.215 12.401 0.119 12.284 0.299 C 12.181 0.621 12.145 0.96 12.177 1.296 C 12.513 2.871 12.692 4.476 12.711 6.087 C 12.845 6.087 13 5.743 13.068 5.399 M 15.22 3.026 C 15.383 3.122 15.474 3.614 15.457 3.758 C 15.426 4.017 15.342 4.298 15.282 4.261 C 15.221 4.223 15.294 3.875 15.263 3.768 C 15.225 3.614 15.011 3.334 15.033 3.249 C 14.989 3.074 15.127 3 15.22 3.024 M 4.243 4.497 C 4.393 4.561 4.483 4.927 4.468 5.033 C 4.437 5.223 4.357 5.425 4.3 5.408 C 4.243 5.39 4.314 5.121 4.281 5.042 C 4.27 4.846 4.056 4.742 4.064 4.66 C 4.023 4.506 4.149 4.48 4.245 4.501 M 0.184 0.178 C 0.409 0.253 0.421 0.623 0.409 0.734 C 0.378 0.93 0.298 1.142 0.24 1.116 C 0.181 1.09 0.24 0.824 0.208 0.741 C 0.176 0.619 -0.017 0.413 0.009 0.349 C -0.035 0.216 0.093 0.152 0.186 0.179 M 4.608 1.927 C 4.427 2.07 4.372 2.321 4.477 2.527 C 4.538 2.618 4.652 2.657 4.755 2.623 C 4.924 2.649 5.024 2.267 5.024 2.267 C 5.024 2.267 5.029 2.162 4.831 2.363 C 4.746 2.384 4.735 2.347 4.713 2.294 C 4.694 2.194 4.702 2.092 4.739 1.997 C 4.77 1.901 4.705 1.859 4.608 1.928 M 5.896 0.035 C 5.745 0.158 5.65 0.338 5.634 0.533 C 5.628 0.66 5.606 0.66 5.682 0.745 C 5.738 0.835 5.793 0.824 5.903 0.755 C 5.96 0.716 5.998 0.654 6.009 0.586 C 6.036 0.436 5.871 0.655 5.849 0.491 C 5.814 0.337 5.919 0.278 6.02 0.125 C 6.02 0.024 6.02 -0.045 5.896 0.035 M 6.936 0.242 C 6.895 0.432 6.87 0.625 6.861 0.819 C 6.831 0.962 6.997 1.025 7.07 0.84 C 7.145 0.638 7.185 0.425 7.188 0.209 C 7.155 -0.008 7.023 0.003 6.936 0.242 M 13.484 3.989 C 13.508 3.967 14.406 3.246 14.406 3.246 C 14.499 3.209 14.481 3.621 14.437 3.612 C 14.165 3.915 13.842 4.169 13.484 4.362 C 13.44 4.394 13.395 4.082 13.484 3.992 M 14.305 3.983 C 14.466 4.073 14.53 4.592 14.511 4.733 C 14.517 5.009 14.361 5.231 14.296 5.2 C 14.232 5.168 14.303 4.856 14.272 4.744 C 14.203 4.575 14.152 4.399 14.122 4.219 C 14.077 4.043 14.208 3.948 14.304 3.98 M 8.951 6.23 C 9.025 6.136 9.111 6.053 9.207 5.981 C 9.266 5.951 9.338 5.967 9.381 6.018 C 9.396 6.114 9.325 6.209 9.348 6.341 C 9.366 6.395 9.381 6.458 9.468 6.432 C 9.582 6.331 9.734 6.281 9.886 6.294 C 9.999 6.294 9.999 6.506 9.933 6.506 C 9.735 6.56 9.543 6.636 9.361 6.731 C 9.308 6.769 9.234 6.757 9.195 6.704 C 9.16 6.649 9.154 6.58 9.18 6.519 C 9.187 6.413 9.149 6.355 9.069 6.36 C 9.009 6.402 8.957 6.423 8.927 6.35 C 8.916 6.291 8.912 6.26 8.951 6.227 M 15.253 6.512 C 15.306 6.566 15.306 6.653 15.253 6.707 C 15.189 6.776 15.146 6.808 15.081 6.877 C 15.053 6.935 15.034 7.02 15.124 7.046 C 15.291 7.1 15.681 6.821 15.681 6.808 C 15.724 6.769 15.739 6.708 15.718 6.654 C 15.681 6.607 15.6 6.633 15.545 6.633 C 15.516 6.633 15.43 6.612 15.47 6.533 C 15.499 6.485 15.522 6.435 15.54 6.383 C 15.565 6.314 15.546 6.272 15.447 6.233 C 15.368 6.219 15.287 6.219 15.207 6.233 C 15.15 6.248 15.132 6.281 15.119 6.355 C 15.123 6.471 15.187 6.466 15.255 6.514\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-fkmtg4\",layoutDependency:layoutDependency,layoutId:\"GSdBW1dv_\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 5.888\" overflow=\"visible\"><path d=\"M 0.899 5.2 C 0.915 4.849 0.903 4.498 0.862 4.15 C 0.852 3.874 0.583 1.6 0.526 1.388 C 0.46 0.991 0.79 1.336 0.751 1.102 C 0.639 0.811 0.356 0.382 0.268 0.127 C 0.212 0.016 0.235 -0.08 0.118 0.1 C 0.016 0.422 -0.021 0.761 0.011 1.097 C 0.347 2.673 0.526 4.277 0.545 5.888 C 0.679 5.888 0.835 5.544 0.902 5.2\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-lu1wi2\",layoutDependency:layoutDependency,layoutId:\"GgsN_hJuT\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1.245\" overflow=\"visible\"><path d=\"M 0.196 0.007 C 0.359 0.102 0.45 0.595 0.433 0.738 C 0.402 0.997 0.318 1.279 0.257 1.241 C 0.197 1.204 0.27 0.855 0.239 0.748 C 0.2 0.595 -0.013 0.314 0.008 0.229 C -0.035 0.054 0.103 -0.02 0.196 0.004\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2nm652\",layoutDependency:layoutDependency,layoutId:\"RKHOTikgq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0.187 0.003 C 0.337 0.066 0.427 0.432 0.412 0.538 C 0.381 0.729 0.301 0.93 0.244 0.913 C 0.187 0.896 0.258 0.627 0.225 0.547 C 0.214 0.351 0 0.247 0.008 0.165 C -0.033 0.012 0.093 -0.015 0.189 0.006\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-9pacju\",layoutDependency:layoutDependency,layoutId:\"cJi_b0gKJ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0.184 0.005 C 0.409 0.08 0.421 0.449 0.409 0.561 C 0.378 0.757 0.298 0.969 0.24 0.943 C 0.181 0.917 0.24 0.651 0.208 0.568 C 0.176 0.446 -0.017 0.239 0.009 0.176 C -0.035 0.043 0.093 -0.021 0.186 0.006\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ep70ss\",layoutDependency:layoutDependency,layoutId:\"vPx9VVR62\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0.184 0.033 C 0.003 0.175 -0.052 0.427 0.053 0.633 C 0.114 0.723 0.228 0.763 0.331 0.729 C 0.5 0.755 0.6 0.373 0.6 0.373 C 0.6 0.373 0.605 0.267 0.407 0.468 C 0.322 0.49 0.311 0.453 0.289 0.399 C 0.269 0.3 0.278 0.197 0.315 0.103 C 0.346 0.007 0.281 -0.035 0.184 0.034\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-z2ibp7\",layoutDependency:layoutDependency,layoutId:\"CD1Hhl8t2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0.27 0.035 C 0.118 0.158 0.024 0.338 0.008 0.533 C 0.001 0.66 -0.02 0.66 0.055 0.745 C 0.112 0.835 0.167 0.824 0.277 0.755 C 0.333 0.716 0.372 0.654 0.383 0.586 C 0.41 0.436 0.245 0.655 0.223 0.491 C 0.187 0.337 0.292 0.278 0.394 0.125 C 0.394 0.024 0.394 -0.045 0.27 0.035\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1oxvbxv\",layoutDependency:layoutDependency,layoutId:\"JYHDyoIc1\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0.079 0.188 C 0.037 0.378 0.012 0.571 0.004 0.765 C -0.027 0.908 0.139 0.971 0.212 0.786 C 0.287 0.584 0.327 0.371 0.33 0.155 C 0.297 -0.062 0.165 -0.051 0.079 0.188\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18qpcbo\",layoutDependency:layoutDependency,layoutId:\"WA3e6mebq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.04 1.121\" overflow=\"visible\"><path d=\"M 0.051 0.745 C 0.075 0.723 0.973 0.002 0.973 0.002 C 1.066 -0.034 1.048 0.377 1.004 0.368 C 0.732 0.671 0.409 0.925 0.051 1.118 C 0.007 1.151 -0.038 0.838 0.051 0.748\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1u4qkw7\",layoutDependency:layoutDependency,layoutId:\"lyQsFIK1V\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1.229\" overflow=\"visible\"><path d=\"M 0.192 0.009 C 0.353 0.099 0.417 0.618 0.398 0.759 C 0.404 1.035 0.248 1.257 0.183 1.226 C 0.119 1.194 0.19 0.881 0.159 0.77 C 0.09 0.601 0.039 0.425 0.009 0.245 C -0.036 0.069 0.095 -0.026 0.191 0.006\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1402mkk\",layoutDependency:layoutDependency,layoutId:\"C_fEcitTn\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.058 1\" overflow=\"visible\"><path d=\"M 0.031 0.264 C 0.105 0.17 0.191 0.087 0.287 0.015 C 0.347 -0.015 0.419 0.001 0.461 0.052 C 0.477 0.148 0.406 0.243 0.428 0.375 C 0.446 0.428 0.461 0.492 0.548 0.466 C 0.663 0.365 0.814 0.315 0.967 0.328 C 1.079 0.328 1.08 0.539 1.013 0.539 C 0.815 0.594 0.624 0.669 0.442 0.764 C 0.388 0.803 0.315 0.791 0.276 0.738 C 0.24 0.683 0.235 0.614 0.26 0.553 C 0.268 0.446 0.229 0.389 0.149 0.394 C 0.089 0.436 0.037 0.457 0.007 0.383 C -0.003 0.325 -0.008 0.293 0.031 0.261\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-n18bg6\",layoutDependency:layoutDependency,layoutId:\"DYlWWw8j6\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0.195 0.289 C 0.248 0.343 0.248 0.43 0.195 0.485 C 0.131 0.554 0.088 0.585 0.024 0.654 C -0.005 0.713 -0.024 0.797 0.066 0.824 C 0.234 0.877 0.624 0.599 0.624 0.585 C 0.666 0.546 0.681 0.485 0.66 0.431 C 0.624 0.384 0.542 0.41 0.487 0.41 C 0.459 0.41 0.372 0.389 0.412 0.31 C 0.441 0.263 0.464 0.212 0.483 0.16 C 0.507 0.091 0.488 0.049 0.39 0.01 C 0.31 -0.003 0.229 -0.003 0.15 0.01 C 0.092 0.026 0.075 0.058 0.061 0.132 C 0.065 0.248 0.129 0.243 0.197 0.291\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})]})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"s3oQbnnPE\"},motionChild:true,nodeId:\"cPX60HAhY\",openInNewTab:false,scopeId:\"u2fu2S444\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-837veu framer-rtagr5\",layoutDependency:layoutDependency,layoutId:\"cPX60HAhY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__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\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e0fc8a59-2501-4004-a1af-b27ab8ed7f81, rgb(162, 162, 162)))\"},children:\"English\"})}),className:\"framer-lbaqng\",\"data-framer-name\":\"\u0627\u0644\u0639\u0631\u0628\u064A\u0629\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"Hq4sJmtxG\",style:{\"--extracted-r6o4lv\":\"var(--token-e0fc8a59-2501-4004-a1af-b27ab8ed7f81, rgb(162, 162, 162))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-18l9nv\",layoutDependency:layoutDependency,layoutId:\"wGHAYmORd\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><g><path d=\"M 12 24 C 18.627 24 24 18.627 24 12 C 24 5.373 18.628 0 12 0 C 5.372 0 0 5.374 0 12 C 0 18.626 5.373 24 12 24 Z\" fill=\"rgb(240,240,240)\"></path><g transform=\"translate(0 0)\"><path d=\"M 19.46 2.601 L 11.46 2.601 L 11.46 5.734 L 22.227 5.734 C 21.495 4.536 20.559 3.475 19.46 2.601 Z M 23.587 8.867 L 11.467 8.867 L 11.467 12 L 24 12 C 24.001 10.942 23.862 9.889 23.587 8.867 Z M 12 24 C 14.713 24.006 17.347 23.087 19.467 21.394 L 4.534 21.394 C 6.653 23.087 9.287 24.007 12 24 Z M 23.587 15.134 L 0.413 15.134 C 0.709 16.238 1.163 17.293 1.76 18.267 L 22.24 18.267 C 22.837 17.293 23.291 16.238 23.587 15.134 Z\" fill=\"rgb(216,0,39)\"></path><path d=\"M 5.56 1.875 L 5.56 1.868 L 5.571 1.868 Z M 5.571 1.868 C 7.492 0.645 9.723 -0.003 12 0 L 12 12 L 0 12 C 0 11.501 0.033 11.002 0.1 10.507 L 0.7 10.067 L 1.72 10.8 L 1.334 9.6 L 2.34 8.859 L 1.074 8.859 L 0.741 7.814 L 1.14 6.883 L 1.72 7.305 L 1.414 6.352 L 1.707 5.836 L 2.354 5.367 L 2.001 5.367 C 2.643 4.392 3.425 3.515 4.32 2.766 L 3.987 3.801 L 5.001 3.068 L 6.021 3.801 L 5.634 2.601 L 6.656 1.868 L 5.571 1.868 Z M 6.021 10.801 L 6.027 10.801 L 6.018 10.794 Z M 6.652 8.868 L 5.386 8.868 L 4.999 7.668 L 4.613 8.868 L 3.347 8.868 L 4.367 9.601 L 3.98 10.801 L 5 10.068 L 6.018 10.794 L 5.633 9.601 Z M 6.659 5.374 L 5.393 5.374 L 5.006 4.174 L 4.62 5.374 L 3.354 5.374 L 4.374 6.108 L 3.987 7.308 L 5.007 6.574 L 6.027 7.308 L 5.64 6.108 Z M 9.314 10.068 L 10.334 10.801 L 9.947 9.601 L 10.969 8.868 L 9.703 8.868 L 9.316 7.668 L 8.93 8.868 L 7.664 8.868 L 8.684 9.601 L 8.297 10.801 Z M 10.965 5.374 L 9.699 5.374 L 9.313 4.174 L 8.926 5.374 L 7.66 5.374 L 8.68 6.108 L 8.294 7.308 L 9.314 6.574 L 10.334 7.308 L 9.947 6.108 Z M 10.334 3.814 L 9.947 2.614 L 10.969 1.881 L 9.703 1.881 L 9.316 0.681 L 8.93 1.881 L 7.664 1.881 L 8.684 2.614 L 8.297 3.814 L 9.317 3.081 Z\" fill=\"rgb(0,82,180)\"></path></g></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1xkww9y\",layoutDependency:layoutDependency,layoutId:\"eIXcpLd1S\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><path d=\"M 12 24 C 18.627 24 24 18.627 24 12 C 24 5.373 18.628 0 12 0 C 5.372 0 0 5.374 0 12 C 0 18.626 5.373 24 12 24 Z\" fill=\"rgb(240,240,240)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-191zxux\",layoutDependency:layoutDependency,layoutId:\"VLPQIWtpf\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\" overflow=\"visible\"><g><path d=\"M 19.46 2.601 L 11.46 2.601 L 11.46 5.734 L 22.227 5.734 C 21.495 4.536 20.559 3.475 19.46 2.601 Z M 23.587 8.867 L 11.467 8.867 L 11.467 12 L 24 12 C 24.001 10.942 23.862 9.889 23.587 8.867 Z M 12 24 C 14.713 24.006 17.347 23.087 19.467 21.394 L 4.534 21.394 C 6.653 23.087 9.287 24.007 12 24 Z M 23.587 15.134 L 0.413 15.134 C 0.709 16.238 1.163 17.293 1.76 18.267 L 22.24 18.267 C 22.837 17.293 23.291 16.238 23.587 15.134 Z\" fill=\"rgb(216,0,39)\"></path><path d=\"M 5.56 1.875 L 5.56 1.868 L 5.571 1.868 Z M 5.571 1.868 C 7.492 0.645 9.723 -0.003 12 0 L 12 12 L 0 12 C 0 11.501 0.033 11.002 0.1 10.507 L 0.7 10.067 L 1.72 10.8 L 1.334 9.6 L 2.34 8.859 L 1.074 8.859 L 0.741 7.814 L 1.14 6.883 L 1.72 7.305 L 1.414 6.352 L 1.707 5.836 L 2.354 5.367 L 2.001 5.367 C 2.643 4.392 3.425 3.515 4.32 2.766 L 3.987 3.801 L 5.001 3.068 L 6.021 3.801 L 5.634 2.601 L 6.656 1.868 L 5.571 1.868 Z M 6.021 10.801 L 6.027 10.801 L 6.018 10.794 Z M 6.652 8.868 L 5.386 8.868 L 4.999 7.668 L 4.613 8.868 L 3.347 8.868 L 4.367 9.601 L 3.98 10.801 L 5 10.068 L 6.018 10.794 L 5.633 9.601 Z M 6.659 5.374 L 5.393 5.374 L 5.006 4.174 L 4.62 5.374 L 3.354 5.374 L 4.374 6.108 L 3.987 7.308 L 5.007 6.574 L 6.027 7.308 L 5.64 6.108 Z M 9.314 10.068 L 10.334 10.801 L 9.947 9.601 L 10.969 8.868 L 9.703 8.868 L 9.316 7.668 L 8.93 8.868 L 7.664 8.868 L 8.684 9.601 L 8.297 10.801 Z M 10.965 5.374 L 9.699 5.374 L 9.313 4.174 L 8.926 5.374 L 7.66 5.374 L 8.68 6.108 L 8.294 7.308 L 9.314 6.574 L 10.334 7.308 L 9.947 6.108 Z M 10.334 3.814 L 9.947 2.614 L 10.969 1.881 L 9.703 1.881 L 9.316 0.681 L 8.93 1.881 L 7.664 1.881 L 8.684 2.614 L 8.297 3.814 L 9.317 3.081 Z\" fill=\"rgb(0,82,180)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-bgj6sc\",layoutDependency:layoutDependency,layoutId:\"Edk9bP0C8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23.587 21.399\" overflow=\"visible\"><path d=\"M 19.047 0 L 11.047 0 L 11.047 3.134 L 21.813 3.134 C 21.082 1.935 20.145 0.875 19.047 0 Z M 23.174 6.267 L 11.054 6.267 L 11.054 9.399 L 23.587 9.399 C 23.587 8.342 23.449 7.288 23.174 6.267 Z M 11.587 21.399 C 14.3 21.406 16.933 20.486 19.053 18.793 L 4.12 18.793 C 6.24 20.487 8.874 21.406 11.587 21.399 Z M 23.173 12.533 L 0 12.533 C 0.296 13.637 0.749 14.692 1.347 15.667 L 21.826 15.667 C 22.424 14.692 22.877 13.637 23.173 12.533 Z\" fill=\"rgb(216,0,39)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10938lw\",layoutDependency:layoutDependency,layoutId:\"SloZwCGeL\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.766 3.134\" overflow=\"visible\"><path d=\"M 10.766 3.134 L 0 3.134 L 0 0 L 8 0 C 9.098 0.875 10.035 1.935 10.766 3.134 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1lt968m\",layoutDependency:layoutDependency,layoutId:\"PiBcGiDh2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.533 3.133\" overflow=\"visible\"><path d=\"M 12.533 3.133 L 0 3.133 L 0 0 L 12.12 0 C 12.395 1.021 12.534 2.075 12.533 3.133 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tfm3sa\",layoutDependency:layoutDependency,layoutId:\"HubnjT22y\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.933 2.606\" overflow=\"visible\"><path d=\"M 7.466 2.606 C 10.179 2.612 12.813 1.693 14.933 0 L 0 0 C 2.119 1.693 4.753 2.613 7.466 2.606 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1mxeerd\",layoutDependency:layoutDependency,layoutId:\"DdfzGeL0m\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23.173 3.133\" overflow=\"visible\"><path d=\"M 21.826 3.133 L 1.347 3.133 C 0.749 2.159 0.296 1.104 0 0 L 23.173 0 C 22.877 1.104 22.424 2.159 21.826 3.133 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1g1i83j\",layoutDependency:layoutDependency,layoutId:\"FY9n34322\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\" overflow=\"visible\"><path d=\"M 5.56 1.875 L 5.56 1.868 L 5.571 1.868 Z M 5.571 1.868 C 7.492 0.645 9.723 -0.003 12 0 L 12 12 L 0 12 C 0 11.501 0.033 11.002 0.1 10.507 L 0.7 10.067 L 1.72 10.8 L 1.334 9.6 L 2.34 8.859 L 1.074 8.859 L 0.741 7.814 L 1.14 6.883 L 1.72 7.305 L 1.414 6.352 L 1.707 5.836 L 2.354 5.367 L 2.001 5.367 C 2.643 4.392 3.425 3.515 4.32 2.766 L 3.987 3.801 L 5.001 3.068 L 6.021 3.801 L 5.634 2.601 L 6.656 1.868 L 5.571 1.868 Z M 6.021 10.801 L 6.027 10.801 L 6.018 10.794 Z M 6.652 8.868 L 5.386 8.868 L 4.999 7.668 L 4.613 8.868 L 3.347 8.868 L 4.367 9.601 L 3.98 10.801 L 5 10.068 L 6.018 10.794 L 5.633 9.601 Z M 6.659 5.374 L 5.393 5.374 L 5.006 4.174 L 4.62 5.374 L 3.354 5.374 L 4.374 6.108 L 3.987 7.308 L 5.007 6.574 L 6.027 7.308 L 5.64 6.108 Z M 9.314 10.068 L 10.334 10.801 L 9.947 9.601 L 10.969 8.868 L 9.703 8.868 L 9.316 7.668 L 8.93 8.868 L 7.664 8.868 L 8.684 9.601 L 8.297 10.801 Z M 10.965 5.374 L 9.699 5.374 L 9.313 4.174 L 8.926 5.374 L 7.66 5.374 L 8.68 6.108 L 8.294 7.308 L 9.314 6.574 L 10.334 7.308 L 9.947 6.108 Z M 10.334 3.814 L 9.947 2.614 L 10.969 1.881 L 9.703 1.881 L 9.316 0.681 L 8.93 1.881 L 7.664 1.881 L 8.684 2.614 L 8.297 3.814 L 9.317 3.081 Z\" fill=\"rgb(0,82,180)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-dvfecx\",layoutDependency:layoutDependency,layoutId:\"vKSmAgFiV\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0.011 0 L 0 0 L 0 0.008 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-199s44v\",layoutDependency:layoutDependency,layoutId:\"rjDBYreUL\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\" overflow=\"visible\"><path d=\"M 5.571 1.868 L 6.656 1.868 L 5.634 2.601 L 6.021 3.801 L 5.001 3.068 L 3.987 3.801 L 4.32 2.766 C 3.425 3.515 2.643 4.392 2.001 5.367 L 2.354 5.367 L 1.707 5.836 L 1.414 6.352 L 1.72 7.305 L 1.14 6.883 L 0.741 7.814 L 1.074 8.859 L 2.34 8.859 L 1.334 9.6 L 1.72 10.8 L 0.7 10.067 L 0.1 10.507 C 0.033 11.002 0 11.501 0 12 L 12 12 L 12 0 C 9.723 -0.003 7.492 0.645 5.571 1.868 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-aor5l4\",layoutDependency:layoutDependency,layoutId:\"S_dSllHdN\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 1\" overflow=\"visible\"><path d=\"M 0 0 L 0.009 0.007 L 0.002 0.007 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-u4idxz\",layoutDependency:layoutDependency,layoutId:\"yV8eMdpoO\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.305 3.134\" overflow=\"visible\"><path d=\"M 2.287 1.933 L 2.671 3.127 L 1.653 2.4 L 0.633 3.134 L 1.02 1.934 L 0 1.2 L 1.266 1.2 L 1.652 0 L 2.039 1.2 L 3.305 1.2 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1v6v5n5\",layoutDependency:layoutDependency,layoutId:\"bCli7KvOL\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.305 3.134\" overflow=\"visible\"><path d=\"M 2.287 1.934 L 2.673 3.134 L 1.653 2.4 L 0.633 3.134 L 1.02 1.934 L 0 1.2 L 1.266 1.2 L 1.652 0 L 2.039 1.2 L 3.305 1.2 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gqanv8\",layoutDependency:layoutDependency,layoutId:\"D4ffpnv94\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.305 3.134\" overflow=\"visible\"><path d=\"M 1.65 2.4 L 2.67 3.134 L 2.283 1.934 L 3.305 1.2 L 2.039 1.2 L 1.652 0 L 1.266 1.2 L 0 1.2 L 1.02 1.934 L 0.633 3.134 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ae21r2\",layoutDependency:layoutDependency,layoutId:\"YJAAdDB9Y\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.305 3.134\" overflow=\"visible\"><path d=\"M 2.287 1.934 L 2.673 3.134 L 1.653 2.4 L 0.633 3.134 L 1.02 1.934 L 0 1.2 L 1.266 1.2 L 1.652 0 L 2.039 1.2 L 3.305 1.2 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1kbcsqc\",layoutDependency:layoutDependency,layoutId:\"VpSrN8cZb\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.305 3.134\" overflow=\"visible\"><path d=\"M 2.67 3.134 L 2.283 1.934 L 3.305 1.2 L 2.039 1.2 L 1.652 0 L 1.266 1.2 L 0 1.2 L 1.02 1.934 L 0.633 3.134 L 1.653 2.4 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})]})]})})]})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-k95gr3\",\"data-framer-name\":\"Logo Container\",layoutDependency:layoutDependency,layoutId:\"fZOGSQz91\"})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QvRRl.framer-rtagr5, .framer-QvRRl .framer-rtagr5 { display: block; }\",\".framer-QvRRl.framer-13hl4vo { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 24px 48px 24px 48px; position: relative; width: 1400px; }\",\".framer-QvRRl .framer-3tjn58 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-QvRRl .framer-276c4i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 6px; position: relative; text-decoration: none; width: min-content; }\",\".framer-QvRRl .framer-gfwmde { aspect-ratio: 2.112665832080784 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 57px); position: relative; width: 121px; }\",\".framer-QvRRl .framer-1slynqq, .framer-QvRRl .framer-bgvb2n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-QvRRl .framer-tsw0lt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 150px; height: min-content; justify-content: center; overflow: visible; padding: 16px 24px 16px 24px; position: relative; width: min-content; }\",\".framer-QvRRl .framer-1m9lh1s-container { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-QvRRl .framer-1vnqonn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 16px 32px 16px 42px; position: relative; width: min-content; }\",\".framer-QvRRl .framer-dfix2q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 45px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 501px; }\",\".framer-QvRRl .framer-145h6eg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 4px 0px 4px 0px; position: relative; width: min-content; }\",\".framer-QvRRl .framer-1wp7wz2, .framer-QvRRl .framer-13nd1yl, .framer-QvRRl .framer-1bpnsdz, .framer-QvRRl .framer-1lk0x6f, .framer-QvRRl .framer-1s5mj6d, .framer-QvRRl .framer-lbaqng { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-QvRRl .framer-1p007dd-container { flex: none; height: 45px; position: relative; width: 204px; }\",\".framer-QvRRl .framer-fxhgeg, .framer-QvRRl .framer-1ewr3zx, .framer-QvRRl .framer-837veu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-QvRRl .framer-363if3, .framer-QvRRl .framer-6hzxa, .framer-QvRRl .framer-18l9nv { height: 24px; position: relative; width: 24px; }\",\".framer-QvRRl .framer-11e39jt, .framer-QvRRl .framer-1s5ws1n, .framer-QvRRl .framer-14gly43, .framer-QvRRl .framer-1xkww9y, .framer-QvRRl .framer-191zxux { height: 24px; left: 0px; position: absolute; top: 0px; width: 24px; }\",\".framer-QvRRl .framer-18myaqj, .framer-QvRRl .framer-bgj6sc { height: 22px; left: 1px; position: absolute; top: 3px; width: 24px; }\",\".framer-QvRRl .framer-10je692, .framer-QvRRl .framer-10938lw { height: 3px; left: 11px; position: absolute; top: 0px; width: 11px; }\",\".framer-QvRRl .framer-r5g7qk, .framer-QvRRl .framer-1lt968m { height: 3px; left: 11px; position: absolute; top: 7px; width: 13px; }\",\".framer-QvRRl .framer-17kxzyy, .framer-QvRRl .framer-tfm3sa { height: 3px; left: 4px; position: absolute; top: 19px; width: 15px; }\",\".framer-QvRRl .framer-1h2ztcm, .framer-QvRRl .framer-1mxeerd { height: 3px; left: 0px; position: absolute; top: 13px; width: 23px; }\",\".framer-QvRRl .framer-1hj2k39, .framer-QvRRl .framer-bsbvpi, .framer-QvRRl .framer-1g1i83j, .framer-QvRRl .framer-199s44v { height: 12px; left: 0px; position: absolute; top: 0px; width: 12px; }\",\".framer-QvRRl .framer-kvxg8u, .framer-QvRRl .framer-dvfecx { height: 1px; left: 6px; position: absolute; top: 2px; width: 1px; }\",\".framer-QvRRl .framer-8dn1b0, .framer-QvRRl .framer-aor5l4 { height: 1px; left: 6px; position: absolute; top: 11px; width: 1px; }\",\".framer-QvRRl .framer-v69cpg, .framer-QvRRl .framer-u4idxz { height: 3px; left: 4px; position: absolute; top: 8px; width: 4px; }\",\".framer-QvRRl .framer-t7w936, .framer-QvRRl .framer-1v6v5n5 { height: 3px; left: 4px; position: absolute; top: 4px; width: 4px; }\",\".framer-QvRRl .framer-kvwkc1, .framer-QvRRl .framer-1gqanv8 { height: 3px; left: 8px; position: absolute; top: 8px; width: 4px; }\",\".framer-QvRRl .framer-rbdqok, .framer-QvRRl .framer-ae21r2 { height: 3px; left: 8px; position: absolute; top: 4px; width: 4px; }\",\".framer-QvRRl .framer-1du3fvj, .framer-QvRRl .framer-1kbcsqc { height: 3px; left: 8px; position: absolute; top: 1px; width: 4px; }\",\".framer-QvRRl .framer-os2b42 { height: 13px; left: 4px; position: absolute; top: 6px; width: 17px; }\",\".framer-QvRRl .framer-1s79o6l { height: 5px; left: 0px; position: absolute; top: 1px; width: 3px; }\",\".framer-QvRRl .framer-1qxisjq { height: 1px; left: 0px; position: absolute; top: 4px; width: 2px; }\",\".framer-QvRRl .framer-rseye5 { height: 7px; left: 1px; position: absolute; top: 1px; width: 5px; }\",\".framer-QvRRl .framer-1bnd9vi { height: 7px; left: 0px; position: absolute; top: 0px; width: 5px; }\",\".framer-QvRRl .framer-1b4uwim { height: 1px; left: 2px; position: absolute; top: 4px; width: 1px; }\",\".framer-QvRRl .framer-tj0elb { height: 7px; left: 0px; position: absolute; top: 0px; width: 12px; }\",\".framer-QvRRl .framer-u2n48p { height: 2px; left: 4px; position: absolute; top: 0px; width: 2px; }\",\".framer-QvRRl .framer-18zgips { height: 1px; left: 5px; position: absolute; top: 1px; width: 1px; }\",\".framer-QvRRl .framer-18zoyh { height: 2px; left: 0px; position: absolute; top: 5px; width: 1px; }\",\".framer-QvRRl .framer-6unuc7 { height: 6px; left: 10px; position: absolute; top: 0px; width: 3px; }\",\".framer-QvRRl .framer-t0ksyq { height: 9px; left: 11px; position: absolute; top: 0px; width: 6px; }\",\".framer-QvRRl .framer-idemzk { height: 7px; left: 0px; position: absolute; top: 0px; width: 2px; }\",\".framer-QvRRl .framer-55q9lz { height: 7px; left: 5px; position: absolute; top: 2px; width: 2px; }\",\".framer-QvRRl .framer-6j3333 { height: 6px; left: 10px; position: absolute; top: 0px; width: 7px; }\",\".framer-QvRRl .framer-zd6g9e { height: 6px; left: 6px; position: absolute; top: 0px; width: 1px; }\",\".framer-QvRRl .framer-upkjfz { height: 2px; left: 4px; position: absolute; top: 2px; width: 1px; }\",\".framer-QvRRl .framer-cwrk2m { height: 6px; left: 0px; position: absolute; top: 0px; width: 1px; }\",\".framer-QvRRl .framer-1wfnlj4 { height: 13px; left: 3px; position: absolute; top: 0px; width: 15px; }\",\".framer-QvRRl .framer-1a6tanz { height: 6px; left: 12px; position: absolute; top: 0px; width: 3px; }\",\".framer-QvRRl .framer-jkx8ey { height: 2px; left: 0px; position: absolute; top: 11px; width: 13px; }\",\".framer-QvRRl .framer-oork6h { height: 1px; left: 11px; position: absolute; top: 12px; width: 2px; }\",\".framer-QvRRl .framer-5cb6z6 { height: 3px; left: 4px; position: absolute; top: 0px; width: 4px; }\",\".framer-QvRRl .framer-1f11y8n { height: 7px; left: 2px; position: absolute; top: 0px; width: 9px; }\",\".framer-QvRRl .framer-1hxasw5 { height: 5px; left: 2px; position: absolute; top: 3px; width: 7px; }\",\".framer-QvRRl .framer-ok2yq1 { height: 1px; left: 7px; position: absolute; top: 3px; width: 1px; }\",\".framer-QvRRl .framer-6cseon { height: 1px; left: 6px; position: absolute; top: 5px; width: 1px; }\",\".framer-QvRRl .framer-11nihic, .framer-QvRRl .framer-9pacju { height: 1px; left: 0px; position: absolute; top: 0px; width: 1px; }\",\".framer-QvRRl .framer-1sxnqpx { height: 7px; left: 8px; position: absolute; top: 0px; width: 8px; }\",\".framer-QvRRl .framer-13swr8r { height: 1px; left: 0px; position: absolute; top: 3px; width: 1px; }\",\".framer-QvRRl .framer-lfpzqa { height: 1px; left: 4px; position: absolute; top: 2px; width: 1px; }\",\".framer-QvRRl .framer-6w82om { height: 7px; left: 5px; position: absolute; top: 0px; width: 3px; }\",\".framer-QvRRl .framer-l9pamw { height: 1px; left: 4px; position: absolute; top: 0px; width: 1px; }\",\".framer-QvRRl .framer-1nsgy3s { height: 7px; left: 1px; position: absolute; top: 0px; width: 16px; }\",\".framer-QvRRl .framer-fkmtg4 { height: 6px; left: 12px; position: absolute; top: 0px; width: 1px; }\",\".framer-QvRRl .framer-lu1wi2 { height: 1px; left: 15px; position: absolute; top: 3px; width: 1px; }\",\".framer-QvRRl .framer-2nm652 { height: 1px; left: 4px; position: absolute; top: 5px; width: 1px; }\",\".framer-QvRRl .framer-1ep70ss { height: 1px; left: 5px; position: absolute; top: 2px; width: 1px; }\",\".framer-QvRRl .framer-z2ibp7 { height: 1px; left: 6px; position: absolute; top: 0px; width: 1px; }\",\".framer-QvRRl .framer-1oxvbxv { height: 1px; left: 7px; position: absolute; top: 0px; width: 1px; }\",\".framer-QvRRl .framer-18qpcbo { height: 1px; left: 14px; position: absolute; top: 3px; width: 1px; }\",\".framer-QvRRl .framer-1u4qkw7 { height: 1px; left: 14px; position: absolute; top: 4px; width: 1px; }\",\".framer-QvRRl .framer-1402mkk { height: 1px; left: 9px; position: absolute; top: 6px; width: 1px; }\",\".framer-QvRRl .framer-n18bg6 { height: 1px; left: 15px; position: absolute; top: 6px; width: 1px; }\",\".framer-QvRRl .framer-k95gr3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 36px; min-width: 173px; overflow: visible; padding: 6px; position: relative; width: min-content; }\",\".framer-QvRRl.framer-v-pyofnz .framer-3tjn58, .framer-QvRRl.framer-v-pyofnz .framer-dfix2q, .framer-QvRRl.framer-v-pyofnz .framer-1wp7wz2, .framer-QvRRl.framer-v-1opeuqq .framer-k95gr3, .framer-QvRRl.framer-v-1svxf9m .framer-k95gr3, .framer-QvRRl.framer-v-1089wkj .framer-k95gr3, .framer-QvRRl.framer-v-1a1f7rj .framer-k95gr3 { order: 2; }\",\".framer-QvRRl.framer-v-pyofnz .framer-276c4i, .framer-QvRRl.framer-v-pyofnz .framer-1bpnsdz, .framer-QvRRl.framer-v-pyofnz .framer-1p007dd-container, .framer-QvRRl.framer-v-pyofnz .framer-1lk0x6f, .framer-QvRRl.framer-v-pyofnz .framer-k95gr3, .framer-QvRRl.framer-v-1opeuqq .framer-1s5mj6d, .framer-QvRRl.framer-v-1089wkj .framer-1slynqq, .framer-QvRRl.framer-v-1089wkj .framer-lbaqng, .framer-QvRRl.framer-v-1a1f7rj .framer-1slynqq { order: 0; }\",\".framer-QvRRl.framer-v-pyofnz .framer-bgvb2n, .framer-QvRRl.framer-v-pyofnz .framer-145h6eg, .framer-QvRRl.framer-v-pyofnz .framer-13nd1yl, .framer-QvRRl.framer-v-pyofnz .framer-fxhgeg, .framer-QvRRl.framer-v-pyofnz .framer-363if3, .framer-QvRRl.framer-v-1opeuqq .framer-6hzxa, .framer-QvRRl.framer-v-1089wkj .framer-276c4i, .framer-QvRRl.framer-v-1089wkj .framer-18l9nv, .framer-QvRRl.framer-v-1a1f7rj .framer-276c4i { order: 1; }\",\".framer-QvRRl.framer-v-pyofnz .framer-1vnqonn { padding: 16px 42px 16px 42px; }\",\".framer-QvRRl.framer-v-1opeuqq.framer-13hl4vo, .framer-QvRRl.framer-v-1089wkj.framer-13hl4vo { flex-direction: column; gap: 8px; justify-content: flex-start; padding: 24px 20px 24px 20px; width: 390px; }\",\".framer-QvRRl.framer-v-1opeuqq .framer-3tjn58, .framer-QvRRl.framer-v-1svxf9m .framer-3tjn58, .framer-QvRRl.framer-v-1089wkj .framer-3tjn58, .framer-QvRRl.framer-v-1a1f7rj .framer-3tjn58 { gap: unset; justify-content: space-between; order: 0; width: 100%; }\",\".framer-QvRRl.framer-v-1opeuqq .framer-tsw0lt, .framer-QvRRl.framer-v-1svxf9m .framer-tsw0lt, .framer-QvRRl.framer-v-1089wkj .framer-tsw0lt, .framer-QvRRl.framer-v-1a1f7rj .framer-tsw0lt { cursor: pointer; padding: 12px 16px 12px 16px; }\",\".framer-QvRRl.framer-v-1opeuqq .framer-1m9lh1s-container, .framer-QvRRl.framer-v-1svxf9m .framer-1m9lh1s-container, .framer-QvRRl.framer-v-1089wkj .framer-1m9lh1s-container, .framer-QvRRl.framer-v-1a1f7rj .framer-1m9lh1s-container { height: 35px; width: 35px; }\",\".framer-QvRRl.framer-v-1opeuqq .framer-bgvb2n, .framer-QvRRl.framer-v-1089wkj .framer-bgvb2n { order: 1; width: 100%; }\",\".framer-QvRRl.framer-v-1opeuqq .framer-1vnqonn, .framer-QvRRl.framer-v-1089wkj .framer-1vnqonn { flex-direction: column; gap: 70px; padding: 40px 32px 40px 42px; width: 100%; }\",\".framer-QvRRl.framer-v-1opeuqq .framer-dfix2q, .framer-QvRRl.framer-v-1089wkj .framer-dfix2q { flex-direction: column; gap: 41px; height: min-content; justify-content: flex-start; width: 204px; }\",\".framer-QvRRl.framer-v-1opeuqq .framer-145h6eg, .framer-QvRRl.framer-v-1089wkj .framer-145h6eg { flex-direction: column; gap: 24px; }\",\".framer-QvRRl.framer-v-1svxf9m.framer-13hl4vo, .framer-QvRRl.framer-v-1a1f7rj.framer-13hl4vo { flex-direction: column; gap: 8px; height: 93px; justify-content: flex-start; padding: 24px 20px 24px 20px; width: 390px; }\",\".framer-QvRRl.framer-v-1svxf9m .framer-bgvb2n, .framer-QvRRl.framer-v-1a1f7rj .framer-bgvb2n { order: 1; pointer-events: none; width: 100%; }\",\".framer-QvRRl.framer-v-1svxf9m .framer-1vnqonn, .framer-QvRRl.framer-v-1a1f7rj .framer-1vnqonn { flex-direction: column; gap: 130px; padding: 40px 32px 40px 42px; width: 100%; }\",\".framer-QvRRl.framer-v-1svxf9m .framer-145h6eg, .framer-QvRRl.framer-v-1a1f7rj .framer-145h6eg { flex-direction: column; gap: 24px; padding: 0px 0px 4px 0px; }\",...sharedStyle.css,'.framer-QvRRl[data-border=\"true\"]::after, .framer-QvRRl [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 125\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qDYlQaoky\":{\"layout\":[\"fixed\",\"auto\"]},\"AjMPwQTtg\":{\"layout\":[\"fixed\",\"auto\"]},\"jIsAgWXyK\":{\"layout\":[\"fixed\",\"fixed\"]},\"pBTjxAoWl\":{\"layout\":[\"fixed\",\"auto\"]},\"k6KxV_qMb\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Frameru2fu2S444=withCSS(Component,css,\"framer-QvRRl\");export default Frameru2fu2S444;Frameru2fu2S444.displayName=\"Navigation Bar\";Frameru2fu2S444.defaultProps={height:125,width:1400};addPropertyControls(Frameru2fu2S444,{variant:{options:[\"fFlA2BbsS\",\"qDYlQaoky\",\"AjMPwQTtg\",\"jIsAgWXyK\",\"pBTjxAoWl\",\"k6KxV_qMb\"],optionTitles:[\"Desktop\",\"Desktop-ar\",\"Phone - Open\",\"Phone - Closed\",\"phone open-ar\",\"Phone closed-ar\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Frameru2fu2S444,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"},{family:\"Salma Arabic  Black\",source:\"custom\",url:\"https://framerusercontent.com/assets/FVSXnA3U3dOJCcyUjWaB4WZsc8.woff2\"},{family:\"IBM Plex Sans Arabic\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexsansarabic/v13/Qw3CZRtWPQCuHme67tEYUIx3Kh0PHR9N6bs_1vSbfdlA.woff2\",weight:\"400\"},{family:\"Salma Arabic  Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/BYfgizcnJ5WyOtsWjYtcXA3QtCk.woff2\"}]},...HeroFonts,...TextButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameru2fu2S444\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qDYlQaoky\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AjMPwQTtg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jIsAgWXyK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pBTjxAoWl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"k6KxV_qMb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"125\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./u2fu2S444.map", "let Component;\nvar House_default = (React) => {\n  if (!Component) {\n    const weights = /* @__PURE__ */ new Map([\n      [\n        \"bold\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M221.56,100.85,141.61,25.38l-.16-.15a19.93,19.93,0,0,0-26.91,0l-.17.15L34.44,100.85A20.07,20.07,0,0,0,28,115.55V208a20,20,0,0,0,20,20H96a20,20,0,0,0,20-20V164h24v44a20,20,0,0,0,20,20h48a20,20,0,0,0,20-20V115.55A20.07,20.07,0,0,0,221.56,100.85ZM204,204H164V160a20,20,0,0,0-20-20H112a20,20,0,0,0-20,20v44H52V117.28l76-71.75,76,71.75Z\" }))\n      ],\n      [\n        \"duotone\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\n          \"path\",\n          {\n            d: \"M216,115.54V208a8,8,0,0,1-8,8H160a8,8,0,0,1-8-8V160a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V115.54a8,8,0,0,1,2.62-5.92l80-75.54a8,8,0,0,1,10.77,0l80,75.54A8,8,0,0,1,216,115.54Z\",\n            opacity: \"0.2\"\n          }\n        ), /* @__PURE__ */ React.createElement(\"path\", { d: \"M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z\" }))\n      ],\n      [\n        \"fill\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M224,115.55V208a16,16,0,0,1-16,16H168a16,16,0,0,1-16-16V168a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v40a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V115.55a16,16,0,0,1,5.17-11.78l80-75.48.11-.11a16,16,0,0,1,21.53,0,1.14,1.14,0,0,0,.11.11l80,75.48A16,16,0,0,1,224,115.55Z\" }))\n      ],\n      [\n        \"light\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M217.47,105.24l-80-75.5-.09-.08a13.94,13.94,0,0,0-18.83,0l-.09.08-80,75.5A14,14,0,0,0,34,115.55V208a14,14,0,0,0,14,14H96a14,14,0,0,0,14-14V160a2,2,0,0,1,2-2h32a2,2,0,0,1,2,2v48a14,14,0,0,0,14,14h48a14,14,0,0,0,14-14V115.55A14,14,0,0,0,217.47,105.24ZM210,208a2,2,0,0,1-2,2H160a2,2,0,0,1-2-2V160a14,14,0,0,0-14-14H112a14,14,0,0,0-14,14v48a2,2,0,0,1-2,2H48a2,2,0,0,1-2-2V115.55a2,2,0,0,1,.65-1.48l.09-.08,79.94-75.48a2,2,0,0,1,2.63,0L209.26,114l.08.08a2,2,0,0,1,.66,1.48Z\" }))\n      ],\n      [\n        \"regular\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z\" }))\n      ],\n      [\n        \"thin\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M216.13,106.72,136.07,31.13a12,12,0,0,0-16.2.05L39.93,106.67A12,12,0,0,0,36,115.54V208a12,12,0,0,0,12,12H96a12,12,0,0,0,12-12V160a4,4,0,0,1,4-4h32a4,4,0,0,1,4,4v48a12,12,0,0,0,12,12h48a12,12,0,0,0,12-12V115.54A12,12,0,0,0,216.13,106.72ZM212,208a4,4,0,0,1-4,4H160a4,4,0,0,1-4-4V160a12,12,0,0,0-12-12H112a12,12,0,0,0-12,12v48a4,4,0,0,1-4,4H48a4,4,0,0,1-4-4V115.54a4.09,4.09,0,0,1,1.36-3L125.3,37.05a4,4,0,0,1,5.33,0l80.06,75.58a4,4,0,0,1,1.31,3Z\" }))\n      ]\n    ]);\n    const House = React.forwardRef((props, ref) => /* @__PURE__ */ React.createElement(\"g\", { ref, ...props }, weights.get(props.weight)));\n    House.displayName = \"House\";\n    Component = House;\n  }\n  return Component;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nexport {\n  __FramerMetadata__,\n  House_default as default\n};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HouseFactory from\"https://framer.com/m/phosphor-icons/House.js@0.0.53\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const iconKeys=[\"AddressBook\",\"AirTrafficControl\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"Alien\",\"AlignBottom\",\"AlignBottomSimple\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignLeftSimple\",\"AlignRight\",\"AlignRightSimple\",\"AlignTop\",\"AlignTopSimple\",\"AmazonLogo\",\"Anchor\",\"AnchorSimple\",\"AndroidLogo\",\"AngularLogo\",\"Aperture\",\"AppStoreLogo\",\"AppWindow\",\"AppleLogo\",\"ApplePodcastsLogo\",\"Archive\",\"ArchiveBox\",\"ArchiveTray\",\"Armchair\",\"ArrowArcLeft\",\"ArrowArcRight\",\"ArrowBendDownLeft\",\"ArrowBendDownRight\",\"ArrowBendLeftDown\",\"ArrowBendLeftUp\",\"ArrowBendRightDown\",\"ArrowBendRightUp\",\"ArrowBendUpLeft\",\"ArrowBendUpRight\",\"ArrowCircleDown\",\"ArrowCircleDownLeft\",\"ArrowCircleDownRight\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpLeft\",\"ArrowCircleUpRight\",\"ArrowClockwise\",\"ArrowDown\",\"ArrowDownLeft\",\"ArrowDownRight\",\"ArrowElbowDownLeft\",\"ArrowElbowDownRight\",\"ArrowElbowLeft\",\"ArrowElbowLeftDown\",\"ArrowElbowLeftUp\",\"ArrowElbowRight\",\"ArrowElbowRightDown\",\"ArrowElbowRightUp\",\"ArrowElbowUpLeft\",\"ArrowElbowUpRight\",\"ArrowFatDown\",\"ArrowFatLeft\",\"ArrowFatLineDown\",\"ArrowFatLineLeft\",\"ArrowFatLineRight\",\"ArrowFatLineUp\",\"ArrowFatLinesDown\",\"ArrowFatLinesLeft\",\"ArrowFatLinesRight\",\"ArrowFatLinesUp\",\"ArrowFatRight\",\"ArrowFatUp\",\"ArrowLeft\",\"ArrowLineDown\",\"ArrowLineDownLeft\",\"ArrowLineDownRight\",\"ArrowLineLeft\",\"ArrowLineRight\",\"ArrowLineUp\",\"ArrowLineUpLeft\",\"ArrowLineUpRight\",\"ArrowRight\",\"ArrowSquareDown\",\"ArrowSquareDownLeft\",\"ArrowSquareDownRight\",\"ArrowSquareIn\",\"ArrowSquareLeft\",\"ArrowSquareOut\",\"ArrowSquareRight\",\"ArrowSquareUp\",\"ArrowSquareUpLeft\",\"ArrowSquareUpRight\",\"ArrowUDownLeft\",\"ArrowUDownRight\",\"ArrowULeftDown\",\"ArrowULeftUp\",\"ArrowURightDown\",\"ArrowURightUp\",\"ArrowUUpLeft\",\"ArrowUUpRight\",\"ArrowUp\",\"ArrowUpLeft\",\"ArrowUpRight\",\"ArrowsClockwise\",\"ArrowsDownUp\",\"ArrowsHorizontal\",\"ArrowsIn\",\"ArrowsInCardinal\",\"ArrowsInLineVertical\",\"ArrowsInSimple\",\"ArrowsLeftRight\",\"ArrowsMerge\",\"ArrowsOut\",\"ArrowsOutCardinal\",\"ArrowsOutSimple\",\"ArrowsSplit\",\"ArrowsVertical\",\"Article\",\"ArticleMedium\",\"ArticleNyTimes\",\"Asterisk\",\"AsteriskSimple\",\"At\",\"Atom\",\"Baby\",\"Backpack\",\"Backspace\",\"Bag\",\"BagSimple\",\"Balloon\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Barricade\",\"Baseball\",\"BaseballCap\",\"Basket\",\"Basketball\",\"Bathtub\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryPlus\",\"BatteryPlusVertical\",\"BatteryVerticalEmpty\",\"BatteryVerticalFull\",\"BatteryVerticalHigh\",\"BatteryVerticalLow\",\"BatteryWarning\",\"Bed\",\"BeerBottle\",\"BeerStein\",\"BehanceLogo\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"BezierCurve\",\"Bicycle\",\"Binoculars\",\"Bird\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Bone\",\"Book\",\"BookBookmark\",\"BookOpen\",\"BookOpenText\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"Boot\",\"BoundingBox\",\"BowlFood\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Bridge\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Broom\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Buildings\",\"Bus\",\"Butterfly\",\"Cactus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarPlus\",\"CalendarX\",\"CallBell\",\"Camera\",\"CameraPlus\",\"CameraRotate\",\"CameraSlash\",\"Campfire\",\"Car\",\"CarProfile\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretCircleUpDown\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretRight\",\"CaretUp\",\"CaretUpDown\",\"Carrot\",\"CassetteTape\",\"CastleTurret\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"Certificate\",\"Chair\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"Champagne\",\"ChargingStation\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartDonut\",\"ChartLine\",\"ChartLineDown\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"ChartPolar\",\"ChartScatter\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleText\",\"ChatDots\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckFat\",\"CheckSquare\",\"CheckSquareOffset\",\"Checks\",\"Church\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleNotch\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Circuitry\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClockCounterClockwise\",\"ClockCountdown\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"CloudWarning\",\"CloudX\",\"Club\",\"CoatHanger\",\"CodaLogo\",\"Code\",\"CodeBlock\",\"CodeSimple\",\"CodepenLogo\",\"CodesandboxLogo\",\"Coffee\",\"Coin\",\"CoinVertical\",\"Coins\",\"Columns\",\"Command\",\"Compass\",\"CompassTool\",\"ComputerTower\",\"Confetti\",\"ContactlessPayment\",\"Control\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyleft\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Couch\",\"Cpu\",\"CreditCard\",\"Crop\",\"Cross\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownSimple\",\"Cube\",\"CubeFocus\",\"CubeTransparent\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEth\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyKzt\",\"CurrencyNgn\",\"CurrencyRub\",\"Cursor\",\"CursorClick\",\"CursorText\",\"Cylinder\",\"Database\",\"Desktop\",\"DesktopTower\",\"Detective\",\"DevToLogo\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSpeaker\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Devices\",\"Diamond\",\"DiamondsFour\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscordLogo\",\"Divide\",\"Dna\",\"Dog\",\"Door\",\"DoorOpen\",\"Dot\",\"DotOutline\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"Dress\",\"DribbbleLogo\",\"Drop\",\"DropHalf\",\"DropHalfBottom\",\"DropboxLogo\",\"Ear\",\"EarSlash\",\"Egg\",\"EggCrack\",\"Eject\",\"EjectSimple\",\"Elevator\",\"Engine\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equalizer\",\"Equals\",\"Eraser\",\"EscalatorDown\",\"EscalatorUp\",\"Exam\",\"Exclude\",\"ExcludeSquare\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"EyedropperSample\",\"Eyeglasses\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"Fan\",\"FastForward\",\"FastForwardCircle\",\"Feather\",\"FigmaLogo\",\"File\",\"FileArchive\",\"FileArrowDown\",\"FileArrowUp\",\"FileAudio\",\"FileCloud\",\"FileCode\",\"FileCss\",\"FileCsv\",\"FileDashed\",\"FileDoc\",\"FileHtml\",\"FileImage\",\"FileJpg\",\"FileJs\",\"FileJsx\",\"FileLock\",\"FileMagnifyingGlass\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FilePng\",\"FilePpt\",\"FileRs\",\"FileSql\",\"FileSvg\",\"FileText\",\"FileTs\",\"FileTsx\",\"FileVideo\",\"FileVue\",\"FileX\",\"FileXls\",\"FileZip\",\"Files\",\"FilmReel\",\"FilmScript\",\"FilmSlate\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireExtinguisher\",\"FireSimple\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"FlagCheckered\",\"FlagPennant\",\"Flame\",\"Flashlight\",\"Flask\",\"FloppyDisk\",\"FloppyDiskBack\",\"FlowArrow\",\"Flower\",\"FlowerLotus\",\"FlowerTulip\",\"FlyingSaucer\",\"Folder\",\"FolderDashed\",\"FolderLock\",\"FolderMinus\",\"FolderNotch\",\"FolderNotchMinus\",\"FolderNotchOpen\",\"FolderNotchPlus\",\"FolderOpen\",\"FolderPlus\",\"FolderSimple\",\"FolderSimpleDashed\",\"FolderSimpleLock\",\"FolderSimpleMinus\",\"FolderSimplePlus\",\"FolderSimpleStar\",\"FolderSimpleUser\",\"FolderStar\",\"FolderUser\",\"Folders\",\"Football\",\"Footprints\",\"ForkKnife\",\"FrameCorners\",\"FramerLogo\",\"Function\",\"Funnel\",\"FunnelSimple\",\"GameController\",\"Garage\",\"GasCan\",\"GasPump\",\"Gauge\",\"Gavel\",\"Gear\",\"GearFine\",\"GearSix\",\"GenderFemale\",\"GenderIntersex\",\"GenderMale\",\"GenderNeuter\",\"GenderNonbinary\",\"GenderTransgender\",\"Ghost\",\"Gif\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitDiff\",\"GitFork\",\"GitMerge\",\"GitPullRequest\",\"GithubLogo\",\"GitlabLogo\",\"GitlabLogoSimple\",\"Globe\",\"GlobeHemisphereEast\",\"GlobeHemisphereWest\",\"GlobeSimple\",\"GlobeStand\",\"Goggles\",\"GoodreadsLogo\",\"GoogleCardboardLogo\",\"GoogleChromeLogo\",\"GoogleDriveLogo\",\"GoogleLogo\",\"GooglePhotosLogo\",\"GooglePlayLogo\",\"GooglePodcastsLogo\",\"Gradient\",\"GraduationCap\",\"Grains\",\"GrainsSlash\",\"Graph\",\"GridFour\",\"GridNine\",\"Guitar\",\"Hamburger\",\"Hammer\",\"Hand\",\"HandCoins\",\"HandEye\",\"HandFist\",\"HandGrabbing\",\"HandHeart\",\"HandPalm\",\"HandPointing\",\"HandSoap\",\"HandSwipeLeft\",\"HandSwipeRight\",\"HandTap\",\"HandWaving\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"HandsPraying\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"Hash\",\"HashStraight\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartBreak\",\"HeartHalf\",\"HeartStraight\",\"HeartStraightBreak\",\"Heartbeat\",\"Hexagon\",\"HighHeel\",\"HighlighterCircle\",\"Hoodie\",\"Horse\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"IceCream\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageSquare\",\"Images\",\"ImagesSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"IntersectSquare\",\"IntersectThree\",\"Jeep\",\"Kanban\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Keyhole\",\"Knife\",\"Ladder\",\"LadderSimple\",\"Lamp\",\"Laptop\",\"Layout\",\"Leaf\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lighthouse\",\"Lightning\",\"LightningA\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"LinuxLogo\",\"List\",\"ListBullets\",\"ListChecks\",\"ListDashes\",\"ListMagnifyingGlass\",\"ListNumbers\",\"ListPlus\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"Lockers\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"MapPin\",\"MapPinLine\",\"MapTrifold\",\"MarkerCircle\",\"Martini\",\"MaskHappy\",\"MaskSad\",\"MathOperations\",\"Medal\",\"MedalMilitary\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MessengerLogo\",\"MetaLogo\",\"Metronome\",\"Microphone\",\"MicrophoneSlash\",\"MicrophoneStage\",\"MicrosoftExcelLogo\",\"MicrosoftOutlookLogo\",\"MicrosoftTeamsLogo\",\"MicrosoftWordLogo\",\"Minus\",\"MinusCircle\",\"MinusSquare\",\"Money\",\"Monitor\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Moped\",\"MopedFront\",\"Mosque\",\"Motorcycle\",\"Mountains\",\"Mouse\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesPlus\",\"MusicNotesSimple\",\"NavigationArrow\",\"Needle\",\"Newspaper\",\"NewspaperClipping\",\"Notches\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NotionLogo\",\"NumberCircleEight\",\"NumberCircleFive\",\"NumberCircleFour\",\"NumberCircleNine\",\"NumberCircleOne\",\"NumberCircleSeven\",\"NumberCircleSix\",\"NumberCircleThree\",\"NumberCircleTwo\",\"NumberCircleZero\",\"NumberEight\",\"NumberFive\",\"NumberFour\",\"NumberNine\",\"NumberOne\",\"NumberSeven\",\"NumberSix\",\"NumberSquareEight\",\"NumberSquareFive\",\"NumberSquareFour\",\"NumberSquareNine\",\"NumberSquareOne\",\"NumberSquareSeven\",\"NumberSquareSix\",\"NumberSquareThree\",\"NumberSquareTwo\",\"NumberSquareZero\",\"NumberThree\",\"NumberTwo\",\"NumberZero\",\"Nut\",\"NyTimesLogo\",\"Octagon\",\"OfficeChair\",\"Option\",\"OrangeSlice\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"Pants\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Parachute\",\"Paragraph\",\"Parallelogram\",\"Park\",\"Password\",\"Path\",\"PatreonLogo\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"PaypalLogo\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilSimple\",\"PencilSimpleLine\",\"PencilSimpleSlash\",\"PencilSlash\",\"Pentagram\",\"Pepper\",\"Percent\",\"Person\",\"PersonArmsSpread\",\"PersonSimple\",\"PersonSimpleBike\",\"PersonSimpleRun\",\"PersonSimpleThrow\",\"PersonSimpleWalk\",\"Perspective\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneOutgoing\",\"PhonePlus\",\"PhoneSlash\",\"PhoneX\",\"PhosphorLogo\",\"Pi\",\"PianoKeys\",\"PictureInPicture\",\"PiggyBank\",\"Pill\",\"PinterestLogo\",\"Pinwheel\",\"Pizza\",\"Placeholder\",\"Planet\",\"Plant\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Playlist\",\"Plug\",\"PlugCharging\",\"Plugs\",\"PlugsConnected\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PlusSquare\",\"PokerChip\",\"PoliceCar\",\"Polygon\",\"Popcorn\",\"PottedPlant\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"Pulse\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"Queue\",\"Quotes\",\"Radical\",\"Radio\",\"RadioButton\",\"Radioactive\",\"Rainbow\",\"RainbowCloud\",\"ReadCvLogo\",\"Receipt\",\"ReceiptX\",\"Record\",\"Rectangle\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"Rewind\",\"RewindCircle\",\"RoadHorizon\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"Rss\",\"RssSimple\",\"Rug\",\"Ruler\",\"Scales\",\"Scan\",\"Scissors\",\"Scooter\",\"Screencast\",\"ScribbleLoop\",\"Scroll\",\"Seal\",\"SealCheck\",\"SealQuestion\",\"SealWarning\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Shapes\",\"Share\",\"ShareFat\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldStar\",\"ShieldWarning\",\"ShirtFolded\",\"ShootingStar\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shower\",\"Shrimp\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"Sidebar\",\"SidebarSimple\",\"Sigma\",\"SignIn\",\"SignOut\",\"Signature\",\"Signpost\",\"SimCard\",\"Siren\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"Skull\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Slideshow\",\"Smiley\",\"SmileyAngry\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Sneaker\",\"SneakerMove\",\"Snowflake\",\"SoccerBall\",\"SortAscending\",\"SortDescending\",\"SoundcloudLogo\",\"Spade\",\"Sparkle\",\"SpeakerHifi\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Spinner\",\"SpinnerGap\",\"Spiral\",\"SplitHorizontal\",\"SplitVertical\",\"SpotifyLogo\",\"Square\",\"SquareHalf\",\"SquareHalfBottom\",\"SquareLogo\",\"SquareSplitVertical\",\"SquaresFour\",\"Stack\",\"StackOverflowLogo\",\"StackSimple\",\"Stairs\",\"Stamp\",\"Star\",\"StarAndCrescent\",\"StarFour\",\"StarHalf\",\"StarOfDavid\",\"SteeringWheel\",\"Steps\",\"Stethoscope\",\"Sticker\",\"Stool\",\"Stop\",\"StopCircle\",\"Storefront\",\"Strategy\",\"StripeLogo\",\"Student\",\"Subtitles\",\"Subtract\",\"SubtractSquare\",\"Suitcase\",\"SuitcaseRolling\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Sunglasses\",\"Swap\",\"Swatches\",\"SwimmingPool\",\"Sword\",\"Synagogue\",\"Syringe\",\"TShirt\",\"Table\",\"Tabs\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"Taxi\",\"TelegramLogo\",\"Television\",\"TelevisionSimple\",\"TennisBall\",\"Tent\",\"Terminal\",\"TerminalWindow\",\"TestTube\",\"TextAUnderline\",\"TextAa\",\"TextAlignCenter\",\"TextAlignJustify\",\"TextAlignLeft\",\"TextAlignRight\",\"TextB\",\"TextColumns\",\"TextH\",\"TextHFive\",\"TextHFour\",\"TextHOne\",\"TextHSix\",\"TextHThree\",\"TextHTwo\",\"TextIndent\",\"TextItalic\",\"TextOutdent\",\"TextStrikethrough\",\"TextT\",\"TextUnderline\",\"Textbox\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TidalLogo\",\"TiktokLogo\",\"Timer\",\"Tipi\",\"ToggleLeft\",\"ToggleRight\",\"Toilet\",\"ToiletPaper\",\"Toolbox\",\"Tooth\",\"Tote\",\"ToteSimple\",\"Trademark\",\"TrademarkRegistered\",\"TrafficCone\",\"TrafficSign\",\"TrafficSignal\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Tram\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"Tree\",\"TreeEvergreen\",\"TreePalm\",\"TreeStructure\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"Trophy\",\"Truck\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Unite\",\"UniteSquare\",\"Upload\",\"UploadSimple\",\"Usb\",\"User\",\"UserCircle\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSquare\",\"UserSwitch\",\"Users\",\"UsersFour\",\"UsersThree\",\"Van\",\"Vault\",\"Vibrate\",\"Video\",\"VideoCamera\",\"VideoCameraSlash\",\"Vignette\",\"VinylRecord\",\"VirtualReality\",\"Virus\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warehouse\",\"Warning\",\"WarningCircle\",\"WarningDiamond\",\"WarningOctagon\",\"Watch\",\"WaveSawtooth\",\"WaveSine\",\"WaveSquare\",\"WaveTriangle\",\"Waveform\",\"Waves\",\"Webcam\",\"WebcamSlash\",\"WebhooksLogo\",\"WechatLogo\",\"WhatsappLogo\",\"Wheelchair\",\"WheelchairMotion\",\"WifiHigh\",\"WifiLow\",\"WifiMedium\",\"WifiNone\",\"WifiSlash\",\"WifiX\",\"Wind\",\"WindowsLogo\",\"Wine\",\"Wrench\",\"X\",\"XCircle\",\"XSquare\",\"YinYang\",\"YoutubeLogo\",];const moduleBaseUrl=\"https://framer.com/m/phosphor-icons/\";const weightOptions=[\"thin\",\"light\",\"regular\",\"bold\",\"fill\",\"duotone\",];const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * PHOSPHOR\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,weight,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HouseFactory(React):null);async function importModule(){// Get the selected module\ntry{const version=\"0.0.53\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@${version}`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch(err){if(isMounted.current)setSelectedIcon(null);}}useEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined},focusable:\"false\",color:color,children:/*#__PURE__*/ _jsx(SelectedIcon,{color:color,weight:weight})}):emptyState});}Icon.displayName=\"Phosphor\";Icon.defaultProps={width:24,height:24,iconSelection:\"House\",iconSearch:\"House\",color:\"#66F\",selectByList:true,weight:\"regular\",mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Phosphor site](https://phosphoricons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},weight:{type:ControlType.Enum,title:\"Weight\",optionTitles:weightOptions.map(piece=>piece.charAt(0).toUpperCase()+piece.slice(1)),options:weightOptions,defaultValue:Icon.defaultProps.weight},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"24\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phosphor.map"],
  "mappings": "8YAAA,SAASA,GAAQ,EAAE,CAA8B,QAAzBC,EAAE,EAAMC,EAAEC,EAAE,EAAEC,EAAE,EAAE,OAAYA,GAAG,EAAE,EAAED,EAAEC,GAAG,EAAGF,EAAE,IAAI,EAAE,WAAWC,CAAC,GAAG,IAAI,EAAE,WAAW,EAAEA,CAAC,IAAI,GAAG,IAAI,EAAE,WAAW,EAAEA,CAAC,IAAI,IAAI,IAAI,EAAE,WAAW,EAAEA,CAAC,IAAI,GAAGD,EAAE,YAAY,MAAMA,IAAI,OAAOA,IAAI,KAAK,IAAIA,GAAGA,IAAI,GAAGD,EAAE,YAAY,MAAMC,IAAI,OAAOA,IAAI,KAAK,IAAI,YAAY,MAAMD,IAAI,OAAOA,IAAI,KAAK,IAAI,OAAOG,EAAE,CAAC,IAAK,GAAEH,IAAI,IAAI,EAAE,WAAWE,EAAE,CAAC,IAAI,GAAG,IAAK,GAAEF,IAAI,IAAI,EAAE,WAAWE,EAAE,CAAC,IAAI,EAAE,IAAK,GAAEF,GAAG,IAAI,EAAE,WAAWE,CAAC,EAAEF,EAAE,YAAY,MAAMA,IAAI,OAAOA,IAAI,KAAK,GAAG,CAAC,OAAAA,GAAGA,IAAI,GAAGA,EAAE,YAAY,MAAMA,IAAI,OAAOA,IAAI,KAAK,MAAYA,EAAEA,IAAI,MAAM,GAAG,SAAS,EAAE,CAAC,CCU9iB,IAAMI,GAAIC,EAAQ,SAAaC,EAAM,CACzC,IAAMC,EAAYC,GAAS,MAAMF,EAAM,KAAK,EAAE,EAAQG,EAASC,EAAa,QAAQ,IAAIA,EAAa,OAAaC,EAAeJ,GAAaD,EAAM,OAAO,UACrJM,EAASN,EAAM,OAAO,SAAsDO,EAA7BP,EAAM,OAAO,UAAmCA,EAAM,eAAe,EAAE,EACxHQ,EAAKC,GAAWT,EAAM,KAAKO,CAAQ,EAAMG,EAAcC,EAC3D,GAAGN,EAAe,CAAC,IAAMO,EAAWC,GAAcb,EAAM,KAAK,EAAQc,EAASD,GAAcD,EAAW,MAAM,GAAG,EAAQG,EAAeF,GAAcD,EAAW,MAAM,QAAQ,EAC9K,GAAGT,GAAU,CAACY,EAAe,MAAM,MAAO,OAAqBC,EAAM,MAAM,CAAC,MAAMC,GAAkB,SAAS,CAAeC,EAAK,MAAM,CAAC,MAAMC,GAAY,SAAS,WAAI,CAAC,EAAgBD,EAAK,IAAI,CAAC,MAAME,GAAY,SAAS,2BAA2B,CAAC,EAAgBF,EAAK,IAAI,CAAC,MAAMG,GAAe,SAAS,+DAA+D,CAAC,CAAC,CAAC,CAAC,EACpX,GAAGlB,GAAUY,EAAe,CAAC,IAAMO,EAAUC,GAAeR,CAAc,EACpES,EAAYT,EAAe,MAAM,MAAMJ,EAAQ,OAAOa,EAAY,KAAK,IAAIA,EAAY,MAAM,GAAG,IAAIC,EAAWH,EAAU,MAAM,iBAAiB,EAAE,QAAUI,KAAWD,EAAeC,EAAQ,SAAS,IAAI,IAAGhB,EAAUiB,GAAgBD,CAAO,EAAI,CACzP,GAAG,CAACvB,GAAUW,EAAS,CAAC,IAAIc,EAAYd,EAAS,MAAM,iBAAiB,EAAEH,EAAQG,EAAS,MAAM,UAAU,EAAE,CAAC,EAAEH,EAAQA,EAAQ,MAAM,GAAG,EAAE,CAAC,EAAEA,EAAQA,EAAQ,QAAQ,iBAAiB,IAAI,EAAE,QAAUkB,KAAYD,EAAgBC,EAAS,SAAS,IAAI,IAAGnB,EAAUiB,GAAgBE,CAAQ,EAAI,CAAC,CACnS,IAAMC,EAAG,SAASC,GAAKrB,GAAWF,CAAI,CAAC,GACnCwB,EAAe,OAAGhC,EAAM,oBAAoB,QAAMgC,EAAe,YAAchC,EAAM,oBAAoB,WAASgC,EAAe,WAAahC,EAAM,oBAAoB,WAASgC,EAAe,WAA+Bd,EAAKe,EAAO,IAAI,CAAC,MAAM,CAAC,MAAM,OAAO,OAAO,OAE/Q,SAAS,UAAU,EAAE,UAAU,QAAQ,SAAuBjB,EAAMiB,EAAO,IAAI,CAAC,UAAU,iCAAiC,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,SAAS,WAAW,MAAM,EAAE,gBAAgB,SAAS,WAAWjC,EAAM,QAAQ,WAAW,EAAE,QAAQK,EAAeM,EAAQ,cAAc,SAAS,UAAU,QAAQL,GAAUN,EAAM,QAAQ,CAAC,OAAO,GAAG,EAAE,WAAWM,GAAUN,EAAM,QAAQ,CAAC,SAAS,IAAIA,EAAM,YAAY,OAAO,IAAS,KAAK,QAAQ,EAAE,SAAS,CAAekB,EAAK,OAAO,CAAC,GAAGY,EAAG,EAAEzB,EAAeK,EAAUF,EAAK,YAAY,OAAO,KAAK,aAAa,CAAC,EAAgBU,EAAK,OAAO,CAAC,SAAuBF,EAAM,WAAW,CAAC,KAAK,IAAIc,CAAE,GAAG,YAAY9B,EAAM,YAAY,iBAAiBgC,EAAe,MAAM,CAAC,SAAShC,EAAM,KAAK,SAAS,WAAWA,EAAM,KAAK,KAAK,WAAWA,EAAM,KAAK,WAAW,YAAYA,EAAM,KAAK,YAAY,cAAcA,EAAM,KAAK,cAAc,KAAKA,EAAM,KAAK,EAAE,SAAS,CAACA,EAAM,KAAK,CAACG,GAAUH,EAAM,SAAuBkB,EAAK,UAAU,CAAC,cAAc,cAAc,KAAK,GAAGlB,EAAM,YAAY,IAAI,GAAG,GAAGA,EAAM,UAAU,IAAI,MAAM,KAAK,IAAI,GAAGA,EAAM,eAAe,IAAI,YAAY,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,EACvnC,CAAC,iFAAkF,CAAC,EAASkC,GAAQpC,GAAIA,GAAI,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEqC,EAAoBrC,GAAI,CAAC,KAAK,CAAC,MAAM,UAAU,KAAKsC,EAAY,OAAO,aAAa,uCAA6B,gBAAgB,EAAI,EAAE,KAAK,CAAC,MAAM,OAAO,KAAKA,EAAY,KAAK,QAAQ,CAAC,SAAS,UAAU,SAAS,EAAE,aAAa,CAAC,SAAS,UAAU,SAAS,EAAE,aAAa,EAAI,EAAE,eAAe,CAAC,MAAM,SAAS,KAAKA,EAAY,OAAO,KAAK,KAAK,IAAI,EAAE,IAAI,IAAI,OAAO,CAAC,CAAC,KAAAC,CAAI,IAAIA,IAAO,SAAS,EAAE,OAAO,CAAC,KAAKD,EAAY,QAAQ,MAAM,SAAS,aAAa,GAAM,OAAO,CAAC,CAAC,KAAAC,CAAI,IAAIA,IAAO,QAAQ,EAAE,YAAY,CAAC,KAAKD,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,eAAe,GAAK,KAAK,EAAE,OAAO,CAAC,CAAC,KAAAC,EAAK,OAAAC,CAAM,IAAID,IAAO,UAAU,CAACC,CAAM,EAAE,MAAM,CAAC,KAAKF,EAAY,kBAAkB,MAAM,UAAU,OAAO,CAAC,CAAC,KAAAC,CAAI,IAAIA,IAAO,SAAS,EAAE,kBAAkB,CAAC,MAAM,QAAQ,KAAKD,EAAY,KAAK,QAAQ,CAAC,MAAM,SAAS,QAAQ,EAAE,YAAY,CAAC,YAAY,eAAe,cAAc,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,KAAK,CAAC,KAAKA,EAAY,QAAQ,aAAa,GAAM,MAAM,YAAY,aAAa,KAAK,cAAc,MAAM,OAAO,CAAC,CAAC,KAAAC,CAAI,IAAIA,IAAO,SAAS,EAAE,YAAY,CAAC,MAAM,SAAS,KAAKD,EAAY,OAAO,aAAa,EAAE,IAAI,IAAI,KAAK,OAAO,KAAK,EAAE,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,KAAK,CAAC,KAAKA,EAAY,OAAO,SAAS,CAAC,KAAK,CAAC,KAAKA,EAAY,OAAO,YAAY,QAAQ,aAAa,OAAO,EAAE,SAAS,CAAC,MAAM,OAAO,KAAKA,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,KAAK,GAAG,aAAa,EAAE,EAAE,WAAW,CAAC,KAAKA,EAAY,KAAK,QAAQ,CAAC,IAAI,IAAI,IAAI,IAAI,IAAI,IAAI,IAAI,IAAI,GAAG,EAAE,aAAa,IAAI,MAAM,QAAQ,EAAE,YAAY,CAAC,MAAM,OAAO,KAAKA,EAAY,OAAO,aAAa,EAAE,KAAK,GAAG,eAAe,EAAI,EAAE,cAAc,CAAC,MAAM,SAAS,KAAKA,EAAY,OAAO,aAAa,EAAE,KAAK,GAAG,eAAe,EAAI,CAAC,CAAC,EAAE,QAAQ,CAAC,KAAKA,EAAY,QAAQ,aAAa,GAAM,MAAM,SAAS,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,IAAI,KAAK,IAAI,IAAI,KAAK,GAAG,aAAa,IAAI,MAAM,OAAO,KAAK,IAAI,OAAOpC,GAAO,CAACA,EAAM,OAAO,EAAE,WAAW,CAAC,KAAKoC,EAAY,OAAO,IAAI,KAAK,IAAI,IAAI,KAAK,GAAG,aAAa,IAAI,MAAM,KAAK,KAAK,IAAI,OAAOpC,GAAO,CAACA,EAAM,OAAO,EAAE,gBAAgB,CAAC,KAAKoC,EAAY,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,MAAM,OAAO,KAAK,IAAI,eAAe,GAAK,OAAOpC,GAAO,CAACA,EAAM,OAAO,CAAC,CAAC,EAAsC,SAASa,GAAc0B,EAAM,CAAC,IAAI3B,EAAW,OAAAV,GAAS,IAAIqC,EAAMC,GAAO,CAAI5B,IAAa,SAAWA,EAAW4B,EAAO,CAAC,EAAS5B,CAAW,CAA2C,IAAMe,GAAgBc,GAAgBA,EAAO,MAAM,GAAG,EAAE,CAAC,EAAE,QAAQ,SAAS,EAAE,EAAqChC,GAAW,CAACiC,EAAKnC,IAAW,CAAC,IAAMoC,EAAY,GAAGpC,EAAeqC,EAAe,GAAGrC,EAAS,OAAOmC,EAAoJ,cAAcE,CAAc,oBAAoBA,CAAc,UAAUD,CAAW,kBAAkBA,CAAW,UAA/P,cAAcA,CAAW,oBAAoBA,CAAW,mBAAmBC,CAAc,kBAAkBA,CAAc,QAAQD,CAAW,EAA6H,EAAqB1B,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,QAAQ,EAAQE,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,ECtBp5GwB,GAAU,UAAU,CAAC,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,wiBAAwiB,EAAeC,GAAU,eCCrrB,IAAMC,GAAkB,CAC3B,MAAO,OACP,OAAQ,OACR,QAAS,OACT,eAAgB,SAChB,WAAY,QAChB,EASA,IAAMC,GAAkB,CACpB,GAAGC,GACH,aAAc,EACd,WAAY,2BACZ,OAAQ,uCACR,MAAO,UACP,cAAe,QACnB,EACaC,GAAgCC,EAAW,CAACC,EAAGC,IACnCC,EAAK,MAAO,CAC7B,MAAON,GACP,IAAKK,CACT,CAAC,CACJ,EC9BD,IAAIE,GAAMC,GAAEC,GAAG,CAAC,GAAG,CAACF,GAAE,CAAC,IAAMG,EAAE,CAAC,CAAC,KAAKC,EAAE,GAAG,GAAGC,CAAC,EAAEC,IAAIJ,EAAE,cAAc,MAAM,CAAC,QAAQ,YAAY,KAAK,eAAe,MAAME,EAAE,OAAOA,EAAE,IAAIE,EAAE,GAAGD,CAAC,EAAEH,EAAE,cAAc,OAAO,CAAC,EAAE,kMAAkM,CAAC,CAAC,EAAEF,GAAEE,EAAE,WAAWC,CAAC,CAAC,CAAC,OAAOH,EAAC,ECI3Q,IAAMO,GAAc,CAAC,QAAQ,CAAC,KAAKC,EAAY,YAAY,EAAE,YAAY,CAAC,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,KAAKA,EAAY,YAAY,EAAE,aAAa,CAAC,KAAKA,EAAY,YAAY,EAAE,aAAa,CAAC,KAAKA,EAAY,YAAY,CAAC,EAAQC,GAAY,CAACC,EAAIC,IAASD,EAAI,KAAKE,GAAGA,EAAE,YAAY,EAAE,SAASD,CAAM,CAAC,EAG7P,SAASE,GAAiBC,EAASC,EAAaC,EAAW,GAAGC,EAAcC,EAAsB,CAC/R,IAAMC,EAAiBC,EAAQ,IAAI,CAAC,GAAGJ,GAAY,MAAqDA,GAAW,SAAU,EAAE,OAAO,KAAK,IAAMK,EAAeL,EAAW,YAAY,EAAE,QAAQ,QAAQ,EAAE,EAAE,IAAIM,EAChD,OAA7IA,EAAgBJ,EAAsBG,CAAc,KAAK,MAAMC,IAAkB,OAAOA,EAAgBC,GAAYT,EAASO,CAAc,CAAsB,EAAE,CAACJ,EAAcD,CAAU,CAAC,EAAyD,OAA5CD,EAAaE,EAAcE,CAA6B,CCTgO,IAAMK,GAAS,CAAC,cAAc,qBAAqB,cAAc,qBAAqB,aAAa,oBAAoB,UAAU,iBAAiB,kBAAkB,kBAAkB,mBAAmB,gBAAgB,uBAAuB,YAAY,mBAAmB,YAAY,mBAAmB,kBAAkB,kBAAkB,mBAAmB,gBAAgB,uBAAuB,aAAa,oBAAoB,UAAU,iBAAiB,eAAe,sBAAsB,WAAW,kBAAkB,YAAY,mBAAmB,aAAa,oBAAoB,MAAM,aAAa,SAAS,gBAAgB,OAAO,cAAc,WAAW,kBAAkB,WAAW,cAAc,qBAAqB,kBAAkB,YAAY,mBAAmB,OAAO,cAAc,aAAa,oBAAoB,WAAW,kBAAkB,SAAS,gBAAgB,OAAO,cAAc,WAAW,kBAAkB,WAAW,kBAAkB,iBAAiB,OAAO,UAAU,WAAW,kBAAkB,iBAAiB,cAAc,QAAQ,cAAc,qBAAqB,eAAe,oBAAoB,oBAAoB,qBAAqB,kBAAkB,cAAc,qBAAqB,cAAc,qBAAqB,eAAe,sBAAsB,YAAY,mBAAmB,OAAO,cAAc,YAAY,iBAAiB,gBAAgB,uBAAuB,gBAAgB,uBAAuB,mBAAmB,QAAQ,eAAe,QAAQ,gBAAgB,uBAAuB,eAAe,cAAc,qBAAqB,OAAO,cAAc,MAAM,aAAa,aAAa,oBAAoB,cAAc,qBAAqB,aAAa,oBAAoB,OAAO,cAAc,kBAAkB,sBAAsB,iBAAiB,eAAe,sBAAsB,gBAAgB,uBAAuB,gBAAgB,uBAAuB,cAAc,qBAAqB,cAAc,qBAAqB,WAAW,kBAAkB,kBAAkB,eAAe,sBAAsB,eAAe,sBAAsB,WAAW,cAAc,qBAAqB,mBAAmB,oBAAoB,kBAAkB,iBAAiB,iBAAiB,iBAAiB,eAAe,sBAAsB,uBAAuB,iBAAiB,eAAe,sBAAsB,WAAW,kBAAkB,YAAY,mBAAmB,aAAa,oBAAoB,WAAW,kBAAkB,cAAc,oBAAoB,qBAAqB,eAAe,sBAAsB,MAAM,SAAS,gBAAgB,aAAa,cAAc,qBAAqB,OAAO,cAAc,SAAS,gBAAgB,cAAc,qBAAqB,OAAO,cAAc,OAAO,cAAc,SAAS,YAAY,mBAAmB,iBAAiB,aAAa,oBAAoB,gBAAgB,eAAe,sBAAsB,OAAO,cAAc,QAAQ,WAAW,kBAAkB,eAAe,OAAO,cAAc,UAAU,iBAAiB,QAAQ,eAAe,OAAO,cAAc,iBAAiB,QAAQ,UAAU,iBAAiB,eAAe,oBAAoB,MAAM,aAAa,UAAU,iBAAiB,YAAY,mBAAmB,gBAAgB,uBAAuB,OAAO,cAAc,iBAAiB,aAAa,oBAAoB,WAAW,kBAAkB,QAAQ,eAAe,SAAS,gBAAgB,OAAO,WAAW,kBAAkB,cAAc,MAAM,aAAa,OAAO,WAAW,kBAAkB,WAAW,kBAAkB,WAAW,kBAAkB,WAAW,kBAAkB,cAAc,aAAa,oBAAoB,QAAQ,cAAc,qBAAqB,eAAe,UAAU,iBAAiB,OAAO,cAAc,YAAY,mBAAmB,YAAY,mBAAmB,iBAAiB,gBAAgB,uBAAuB,YAAY,mBAAmB,QAAQ,eAAe,SAAS,YAAY,mBAAmB,gBAAgB,QAAQ,gBAAgB,uBAAuB,kBAAkB,gBAAgB,uBAAuB,eAAe,aAAa,oBAAoB,OAAO,cAAc,OAAO,aAAa,oBAAoB,cAAc,SAAS,gBAAgB,uBAAuB,UAAU,iBAAiB,SAAS,gBAAgB,SAAS,gBAAgB,qBAAqB,gBAAgB,uBAAuB,aAAa,oBAAoB,UAAU,iBAAiB,QAAQ,eAAe,SAAS,gBAAgB,MAAM,aAAa,OAAO,SAAS,gBAAgB,cAAc,QAAQ,eAAe,WAAW,kBAAkB,SAAS,eAAe,sBAAsB,gBAAgB,WAAW,kBAAkB,SAAS,gBAAgB,QAAQ,eAAe,cAAc,qBAAqB,oBAAoB,cAAc,qBAAqB,eAAe,sBAAsB,gBAAgB,uBAAuB,iBAAiB,WAAW,kBAAkB,eAAe,sBAAsB,OAAO,cAAc,gBAAgB,uBAAuB,eAAe,sBAAsB,OAAO,cAAc,MAAM,aAAa,UAAU,iBAAiB,mBAAmB,iBAAiB,QAAQ,eAAe,MAAM,aAAa,WAAW,kBAAkB,WAAW,kBAAkB,YAAY,mBAAmB,UAAU,iBAAiB,SAAS,gBAAgB,YAAY,mBAAmB,QAAQ,eAAe,eAAe,sBAAsB,aAAa,oBAAoB,QAAQ,eAAe,SAAS,gBAAgB,OAAO,UAAU,iBAAiB,aAAa,oBAAoB,YAAY,mBAAmB,cAAc,aAAa,oBAAoB,QAAQ,eAAe,WAAW,kBAAkB,cAAc,qBAAqB,aAAa,oBAAoB,WAAW,cAAc,qBAAqB,kBAAkB,WAAW,kBAAkB,YAAY,mBAAmB,WAAW,kBAAkB,OAAO,cAAc,IAAI,UAAU,iBAAiB,WAAW,SAAS,gBAAgB,UAAU,gBAAiB,EAAQC,GAAc,mCAAyCC,GAAsBF,GAAS,OAAO,CAACG,EAAIC,KAAOD,EAAIC,EAAI,YAAY,CAAC,EAAEA,EAAWD,GAAM,CAAC,CAAC,EAQ9oN,SAASE,EAAKC,EAAM,CAAC,GAAK,CAAC,MAAAC,EAAM,aAAAC,EAAa,WAAAC,EAAW,cAAAC,EAAc,QAAAC,EAAQ,YAAAC,EAAY,UAAAC,EAAU,aAAAC,EAAa,aAAAC,EAAa,SAAAC,CAAQ,EAAEV,EAAYW,EAAUC,EAAO,EAAK,EAAQC,EAAQC,GAAiBpB,GAASQ,EAAaC,EAAWC,EAAcR,EAAqB,EACtR,CAACmB,EAAaC,CAAe,EAAEC,GAASJ,IAAU,OAAOK,GAAYC,CAAK,EAAE,IAAI,EACrF,eAAeC,GAAc,CAC7B,GAAG,CAA4D,IAAMC,EAAO,MAAM,OAA1D,GAAG1B,EAAa,GAAGkB,CAAO,cAAmFF,EAAU,SAAQK,EAAgBK,EAAO,QAAQF,CAAK,CAAC,CAAE,MAAM,CAAIR,EAAU,SAAQK,EAAgB,IAAI,CAAE,CAAC,CACjPM,EAAU,KAAKX,EAAU,QAAQ,GAAKS,EAAa,EAAQ,IAAI,CAACT,EAAU,QAAQ,EAAM,GAAI,CAACE,CAAO,CAAC,EAAgE,IAAMU,EAAnDC,EAAa,QAAQ,IAAIA,EAAa,OAAiDC,EAAKC,GAAU,CAAC,CAAC,EAAE,KAAK,OAAqBD,EAAKE,EAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,QAAAtB,EAAQ,aAAAG,EAAa,aAAAC,EAAa,YAAAH,EAAY,UAAAC,EAAU,SAASQ,EAA2BU,EAAKV,EAAa,CAAC,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,UAAUL,EAAS,eAAe,MAAS,EAAE,MAAMT,CAAK,CAAC,EAAEsB,CAAU,CAAC,CAAE,CAACxB,EAAK,YAAY,OAAOA,EAAK,aAAa,CAAC,MAAM,GAAG,OAAO,GAAG,cAAc,OAAO,WAAW,OAAO,MAAM,OAAO,aAAa,GAAK,SAAS,EAAK,EAAE6B,EAAoB7B,EAAK,CAAC,aAAa,CAAC,KAAK8B,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,SAAS,aAAa9B,EAAK,aAAa,YAAY,EAAE,cAAc,CAAC,KAAK8B,EAAY,KAAK,QAAQnC,GAAS,aAAaK,EAAK,aAAa,cAAc,MAAM,OAAO,OAAO,CAAC,CAAC,aAAAG,CAAY,IAAI,CAACA,EAAa,YAAY,iEAAiE,EAAE,WAAW,CAAC,KAAK2B,EAAY,OAAO,MAAM,OAAO,YAAY,wBAAmB,OAAO,CAAC,CAAC,aAAA3B,CAAY,IAAIA,CAAY,EAAE,SAAS,CAAC,KAAK2B,EAAY,QAAQ,aAAa,MAAM,cAAc,KAAK,aAAa9B,EAAK,aAAa,QAAQ,EAAE,MAAM,CAAC,KAAK8B,EAAY,MAAM,MAAM,QAAQ,aAAa9B,EAAK,aAAa,KAAK,EAAE,GAAG+B,EAAa,CAAC,ECXn7B,IAAMC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,eAAe,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUH,GAAMG,EAAM,UAAU,UAAUF,GAAOE,EAAM,WAAW,eAAe,QAAQP,GAAwBO,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMxB,IAAewB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAU0B,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAvC,EAAQ,UAAAwC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE1B,GAASM,CAAK,EAAO,CAAC,YAAAqB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAApD,CAAQ,EAAEqD,GAAgB,CAAC,WAAA1D,GAAW,eAAe,YAAY,gBAAAD,GAAgB,IAAIqC,EAAW,QAAA7B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQyD,GAAiB7B,GAAuBD,EAAMxB,CAAQ,EAA4DuD,GAAkBC,EAAG5D,GAAkB,GAArE,CAAa4C,EAAS,CAAuE,EAAE,OAAoB3B,EAAK4C,GAAY,CAAC,GAAGhB,GAAUT,EAAgB,SAAsBnB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAG6B,EAAU,GAAGI,EAAgB,UAAUQ,EAAGD,GAAkB,gBAAgBf,EAAUM,CAAU,EAAE,mBAAmB,YAAY,iBAAiBQ,GAAiB,SAAS,YAAY,IAAIvB,EAAW,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGQ,CAAK,EAAE,GAAGzC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,cAAc,CAAC,EAAE+C,EAAYI,CAAc,EAAE,SAAsBpC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,+FAA+F,EAAE,SAAsBF,EAAKE,EAAO,KAAK,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,6LAA6L,EAAE,SAAsBF,EAAK8C,EAAK,CAAC,KAAKhB,EAAU,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,MAAM,CAAC,gBAAgB,EAAE,iBAAiBuC,GAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,6BAA6B,KAAK,EAAE,KAAKZ,EAAU,SAAS,CAAC,kBAAkB,CAAC,qBAAqB,uEAAuE,EAAE,UAAU,CAAC,qBAAqB,uEAAuE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG5C,GAAqB,CAAC,kBAAkB,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,uEAAuE,qBAAqB,OAAO,sBAAsB,iGAAiG,UAAU,KAAK,EAAE,SAAsBF,EAAKE,EAAO,KAAK,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,+LAA+L,EAAE,SAAsBF,EAAK8C,EAAK,CAAC,KAAKhB,EAAU,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,4EAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,KAAK,MAAS,EAAE,kBAAkB,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,gGAAgG,EAAE,SAAsBF,EAAKE,EAAO,KAAK,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,6KAA6K,EAAE,SAAsBF,EAAK8C,EAAK,CAAC,KAAKhB,EAAU,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,uEAAuE,qBAAqB,OAAO,sBAAsB,iGAAiG,UAAU,KAAK,EAAE,SAAsBF,EAAKE,EAAO,KAAK,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,6LAA6L,EAAE,SAAsBF,EAAK8C,EAAK,CAAC,KAAKhB,EAAU,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,4EAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,4BAA4B,EAAE,KAAK,MAAS,CAAC,EAAE8B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQW,GAAI,CAAC,kFAAkF,gFAAgF,yRAAyR,iHAAiH,GAAeA,EAAG,EAWryQC,EAAgBC,EAAQpC,GAAUkC,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,cAAcA,EAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,cAAc,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,8GAA8G,OAAO,KAAK,EAAE,CAAC,OAAO,sBAAsB,OAAO,SAAS,IAAI,uEAAuE,CAAC,CAAC,EAAE,GAAGM,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECX/F,IAAMC,GAAUC,GAASC,CAAI,EAAQC,GAAgBF,GAASG,EAAU,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,EAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,aAAa,YAAY,iBAAiB,YAAY,eAAe,YAAY,kBAAkB,YAAY,gBAAgB,YAAY,QAAQ,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMtB,IAAesB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAUwB,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAArC,EAAQ,GAAGsC,CAAS,EAAEtB,GAASI,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAhD,CAAQ,EAAEiD,GAAgB,CAAC,WAAAtD,GAAW,eAAe,YAAY,IAAIkC,EAAW,QAAA3B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQqD,EAAiB3B,GAAuBD,EAAMtB,CAAQ,EAAO,CAAC,sBAAAmD,EAAsB,MAAAC,EAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAaH,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,GAAYL,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,GAAYN,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQU,GAAYP,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAA4DW,GAAkBC,EAAGhE,GAAkB,GAArE,CAAa0C,EAAS,CAAuE,EAAQuB,GAAY,IAAQ,GAAC,YAAY,YAAY,YAAY,WAAW,EAAE,SAASpB,CAAW,EAAmCqB,GAAOC,GAAU,EAAQC,GAAa,IAAQvB,IAAc,YAA6CwB,GAAa,IAAQ,EAAC,YAAY,WAAW,EAAE,SAASxB,CAAW,EAAmCyB,GAAa,IAAQzB,IAAc,YAAuC,OAAoB5B,EAAKsD,GAAY,CAAC,GAAG5B,GAAUT,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,EAAY,SAAsBiE,EAAMrD,EAAO,IAAI,CAAC,GAAGyB,EAAU,GAAGI,EAAgB,UAAUgB,EAAGD,GAAkB,iBAAiBrB,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,eAAe,aAAa,gBAAgB,sBAAsB,qBAAqB,aAAa,GAAGQ,CAAK,EAAE,GAAGvC,EAAqB,CAAC,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,iBAAiB,EAAE,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,YAAY,CAAC,EAAE2C,EAAYI,CAAc,EAAE,SAAS,CAAcuB,EAAMrD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAKwD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,GAAGvE,EAAqB,CAAC,UAAU,CAAC,KAAK,CAAC,UAAU,WAAW,CAAC,EAAE,UAAU,CAAC,KAAK,CAAC,UAAU,WAAW,CAAC,EAAE,UAAU,CAAC,KAAK,CAAC,UAAU,WAAW,CAAC,CAAC,EAAE2C,EAAYI,CAAc,EAAE,SAAsBhC,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,mBAAmB,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKyD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQC,GAA2BpC,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,IAAI,GAAG,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiBe,EAAiB,SAAS,YAAY,GAAGpD,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQyE,GAA2BpC,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQoC,GAA2BpC,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQoC,GAA2BpC,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQoC,GAA2BpC,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAEM,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgB,GAAY,GAAgBhD,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2EAA2E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,aAAa,gBAAgB,2EAA2E,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,qBAAqB,YAAY,EAAE,SAAS,CAAC,UAAU,CAAC,iBAAiB,oEAAoE,EAAE,UAAU,CAAC,iBAAiB,oEAAoE,EAAE,UAAU,CAAC,iBAAiB,oEAAoE,EAAE,UAAU,CAAC,iBAAiB,oEAAoE,CAAC,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBmC,EAAiB,SAAS,YAAY,GAAGpD,EAAqB,CAAC,UAAU,CAAC,iBAAiB,GAAK,MAAMwD,EAAY,EAAE,UAAU,CAAC,iBAAiB,GAAK,MAAME,EAAW,EAAE,UAAU,CAAC,iBAAiB,GAAK,MAAME,EAAW,EAAE,UAAU,CAAC,iBAAiB,GAAK,MAAMD,EAAW,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAsBhC,EAAK2D,GAA0B,CAAC,SAAsB3D,EAAK4D,GAA8B,CAAC,UAAU,2BAA2B,mBAAmB,OAAO,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBvB,EAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKrB,EAAK,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,OAAO,cAAc,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,KAAK,OAAO,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGM,EAAqB,CAAC,UAAU,CAAC,WAAW,IAAI,aAAa,EAAK,EAAE,UAAU,CAAC,WAAW,OAAO,aAAa,EAAK,EAAE,UAAU,CAAC,WAAW,OAAO,aAAa,EAAK,EAAE,UAAU,CAAC,WAAW,IAAI,aAAa,EAAK,CAAC,EAAE2C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKT,GAAW,CAAC,GAAGN,EAAqB,CAAC,UAAU,CAAC,MAAMK,CAAW,EAAE,UAAU,CAAC,MAAMA,CAAW,EAAE,UAAU,CAAC,MAAMA,CAAW,EAAE,UAAU,CAAC,MAAMA,CAAW,CAAC,EAAEsC,EAAYI,CAAc,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,uBAAuB,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,aAAa,gBAAgB,2EAA2E,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,QAAQ,EAAE,qBAAqB,YAAY,EAAE,SAAS,CAAC,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,QAAQ,CAAC,EAAE,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,QAAQ,CAAC,EAAE,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,QAAQ,CAAC,CAAC,EAAE,SAAsBrC,EAAKT,GAAW,CAAC,GAAGN,EAAqB,CAAC,UAAU,CAAC,MAAMK,CAAW,EAAE,UAAU,CAAC,MAAMA,CAAW,EAAE,UAAU,CAAC,MAAMA,CAAW,EAAE,UAAU,CAAC,MAAMA,CAAW,CAAC,EAAEsC,EAAYI,CAAc,EAAE,SAAsBuB,EAAMrD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAckB,EAAMrD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAckB,EAAMrD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAK6D,EAAS,CAAC,sBAAsB,GAAK,SAAsB7D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,OAAO,sBAAsB,6CAA6C,EAAE,SAAsBF,EAAKwD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBxD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,oBAAoB,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,uEAAuE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGpD,EAAqB,CAAC,UAAU,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAsBF,EAAKwD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBxD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAsBF,EAAKwD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBxD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAsBF,EAAKwD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBxD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,uEAAuE,qBAAqB,iDAAiD,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,iGAAiG,UAAU,KAAK,EAAE,SAAsBF,EAAKwD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBxD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,4CAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,4BAA4B,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,uEAAuE,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,8CAA8C,UAAU,KAAK,EAAE,SAAsBF,EAAKwD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBxD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,4CAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,4BAA4B,CAAC,CAAC,EAAE0B,EAAYI,CAAc,CAAC,CAAC,EAAehC,EAAK6D,EAAS,CAAC,sBAAsB,GAAK,SAAsB7D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,OAAO,sBAAsB,6CAA6C,EAAE,SAAsBF,EAAKwD,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBxD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,oBAAoB,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,uEAAuE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGpD,EAAqB,CAAC,UAAU,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAsBF,EAAKwD,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBxD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAsBF,EAAKwD,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBxD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAsBF,EAAKwD,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBxD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,uEAAuE,qBAAqB,iDAAiD,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,iGAAiG,UAAU,KAAK,EAAE,SAAsBF,EAAKwD,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBxD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,4CAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,4BAA4B,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,uEAAuE,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,8CAA8C,UAAU,KAAK,EAAE,SAAsBF,EAAKwD,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBxD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,4CAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,4BAA4B,CAAC,CAAC,EAAE0B,EAAYI,CAAc,CAAC,CAAC,EAAehC,EAAK6D,EAAS,CAAC,sBAAsB,GAAK,SAAsB7D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,OAAO,sBAAsB,6CAA6C,EAAE,SAAsBF,EAAKwD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsBxD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,oBAAoB,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,oBAAoB,EAAE,UAAU,CAAC,qBAAqB,oBAAoB,EAAE,UAAU,CAAC,qBAAqB,oBAAoB,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGpD,EAAqB,CAAC,UAAU,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAsBF,EAAKwD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBxD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAsBF,EAAKwD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBxD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAsBF,EAAKwD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBxD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,uEAAuE,qBAAqB,iDAAiD,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,8CAA8C,UAAU,KAAK,EAAE,SAAsBF,EAAKwD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsBxD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,4CAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,4BAA4B,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,uEAAuE,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,8CAA8C,UAAU,KAAK,EAAE,SAAsBF,EAAKwD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsBxD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,4CAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,4BAA4B,CAAC,CAAC,EAAE0B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK8D,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4B/D,EAAK2D,GAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAGrC,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,IAAI,GAAG,EAAE,EAAE,GAAG,EAAE,GAAGrC,EAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,EAAE,KAAK,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsBhC,EAAK4D,GAA8B,CAAC,UAAU,2BAA2B,iBAAiBvB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKnB,GAAW,CAAC,OAAO,OAAO,UAAUkF,EAAc,CAAC,EAAE,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,eAAe,QAAQ,YAAY,MAAM,OAAO,GAAG9E,EAAqB,CAAC,UAAU,CAAC,UAAU8E,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,EAAE,UAAU,6EAAiB,QAAQ,WAAW,CAAC,EAAEnC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmB,GAAa,GAAgBnD,EAAKwD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBD,EAAMrD,EAAO,EAAE,CAAC,UAAU,8BAA8B,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAK6D,EAAS,CAAC,sBAAsB,GAAK,SAAsB7D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,yEAAyE,qBAAqB,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,6CAAU,MAAM,CAAC,iCAAiC,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAekB,EAAMS,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,w9DAAw9D,mBAAmB,GAAK,SAAS,CAAcrC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,4RAA4R,mBAAmB,EAAI,CAAC,EAAekB,EAAMS,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,6xDAA6xD,mBAAmB,GAAK,SAAS,CAAckB,EAAMS,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,wmBAAwmB,mBAAmB,GAAK,SAAS,CAAcrC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,6PAA6P,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,kQAAkQ,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,+QAA+Q,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,+RAA+R,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAekB,EAAMS,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,o0CAAo0C,mBAAmB,GAAK,SAAS,CAAcrC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,iMAAiM,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,kiBAAkiB,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,yMAAyM,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,wSAAwS,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,wSAAwS,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,sSAAsS,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,wSAAwS,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,uSAAuS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEe,GAAa,GAAgBpD,EAAKwD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBD,EAAMrD,EAAO,EAAE,CAAC,UAAU,+BAA+B,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAK6D,EAAS,CAAC,sBAAsB,GAAK,SAAsB7D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,qEAAqE,qBAAqB,OAAO,sBAAsB,8CAA8C,UAAU,KAAK,EAAE,SAAS,4CAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,6CAAU,MAAM,CAAC,2BAA2B,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAekB,EAAMS,EAAI,CAAC,UAAU,eAAe,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,m/nBAAm/nB,mBAAmB,GAAK,SAAS,CAAcrC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,yRAAyR,mBAAmB,EAAI,CAAC,EAAekB,EAAMS,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,2znBAA2znB,mBAAmB,GAAK,SAAS,CAAcrC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,ulDAAulD,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,sSAAsS,mBAAmB,EAAI,CAAC,EAAekB,EAAMS,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,spEAAspE,mBAAmB,GAAK,SAAS,CAAcrC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,23DAA23D,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,6bAA6b,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAekB,EAAMS,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,k9CAAk9C,mBAAmB,GAAK,SAAS,CAAcrC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,mnBAAmnB,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,qWAAqW,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,icAAic,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,8gBAA8gB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAekB,EAAMS,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,snCAAsnC,mBAAmB,GAAK,SAAS,CAAcrC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,goBAAgoB,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,mqBAAmqB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAekB,EAAMS,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,m0CAAm0C,mBAAmB,GAAK,SAAS,CAAcrC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,8iBAA8iB,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,mlBAAmlB,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,+gBAA+gB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAekB,EAAMS,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,65GAA65G,mBAAmB,GAAK,SAAS,CAAcrC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,2gBAA2gB,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,u+BAAu+B,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,4hBAA4hB,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,utDAAutD,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAekB,EAAMS,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,inHAAinH,mBAAmB,GAAK,SAAS,CAAcrC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,kvEAAkvE,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,seAAse,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,6lBAA6lB,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,mxBAAmxB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAekB,EAAMS,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,yrFAAyrF,mBAAmB,GAAK,SAAS,CAAcrC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,+wBAA+wB,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,kxBAAkxB,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,uvCAAuvC,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,0ZAA0Z,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAekB,EAAMS,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,+nGAA+nG,mBAAmB,GAAK,SAAS,CAAcrC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,6dAA6d,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,mXAAmX,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,8WAA8W,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,iXAAiX,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,obAAob,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,ybAAyb,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,6UAA6U,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,oVAAoV,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,oXAAoX,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,8nBAA8nB,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,mnBAAmnB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgB,GAAa,GAAgBrD,EAAKwD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBD,EAAMrD,EAAO,EAAE,CAAC,UAAU,8BAA8B,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAK6D,EAAS,CAAC,sBAAsB,GAAK,SAAsB7D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,6CAAU,MAAM,CAAC,oBAAoB,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAekB,EAAMS,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,w9DAAw9D,mBAAmB,GAAK,SAAS,CAAcrC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,4RAA4R,mBAAmB,EAAI,CAAC,EAAekB,EAAMS,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,6xDAA6xD,mBAAmB,GAAK,SAAS,CAAckB,EAAMS,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,wmBAAwmB,mBAAmB,GAAK,SAAS,CAAcrC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,6PAA6P,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,kQAAkQ,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,+QAA+Q,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,+RAA+R,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAekB,EAAMS,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,o0CAAo0C,mBAAmB,GAAK,SAAS,CAAcrC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,iMAAiM,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,kiBAAkiB,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,yMAAyM,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,wSAAwS,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,wSAAwS,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,sSAAsS,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,gBAAgB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,wSAAwS,mBAAmB,EAAI,CAAC,EAAerC,EAAKgE,EAAI,CAAC,UAAU,iBAAiB,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,wBAAwB,GAAM,IAAI,uSAAuS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,iBAAiBmC,EAAiB,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ4B,GAAI,CAAC,kFAAkF,gFAAgF,+QAA+Q,oRAAoR,0SAA0S,0KAA0K,qTAAqT,qSAAqS,yGAAyG,qSAAqS,uQAAuQ,iSAAiS,2QAA2Q,0GAA0G,2WAA2W,6IAA6I,oOAAoO,sIAAsI,uIAAuI,sIAAsI,sIAAsI,uIAAuI,oMAAoM,mIAAmI,oIAAoI,mIAAmI,oIAAoI,oIAAoI,mIAAmI,qIAAqI,uGAAuG,sGAAsG,sGAAsG,qGAAqG,sGAAsG,sGAAsG,sGAAsG,qGAAqG,sGAAsG,qGAAqG,sGAAsG,sGAAsG,qGAAqG,qGAAqG,sGAAsG,qGAAqG,qGAAqG,qGAAqG,wGAAwG,uGAAuG,uGAAuG,uGAAuG,qGAAqG,sGAAsG,sGAAsG,qGAAqG,qGAAqG,oIAAoI,sGAAsG,sGAAsG,qGAAqG,qGAAqG,qGAAqG,uGAAuG,sGAAsG,sGAAsG,qGAAqG,sGAAsG,qGAAqG,sGAAsG,uGAAuG,uGAAuG,sGAAsG,sGAAsG,uTAAuT,sVAAsV,icAAic,kbAAkb,kFAAkF,8MAA8M,oQAAoQ,gPAAgP,wQAAwQ,0HAA0H,mLAAmL,sMAAsM,wIAAwI,4NAA4N,gJAAgJ,oLAAoL,kKAAkK,GAAeA,GAAI,+bAA+b,EAU58jKC,EAAgBC,EAAQxD,GAAUsD,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,iBAAiBA,EAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,aAAa,eAAe,iBAAiB,gBAAgB,iBAAiB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,8GAA8G,OAAO,KAAK,EAAE,CAAC,OAAO,sBAAsB,OAAO,SAAS,IAAI,uEAAuE,EAAE,CAAC,OAAO,uBAAuB,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAK,EAAE,CAAC,OAAO,qBAAqB,OAAO,SAAS,IAAI,wEAAwE,CAAC,CAAC,EAAE,GAAGzF,GAAU,GAAGG,GAAgB,GAAG4F,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECXxtC,IAAIC,GACAC,GAAiBC,GAAU,CAC7B,GAAI,CAACF,GAAW,CACd,IAAMG,EAA0B,IAAI,IAAI,CACtC,CACE,OACgBD,EAAM,cAAcA,EAAM,SAAU,KAAsBA,EAAM,cAAc,OAAQ,CAAE,EAAG,6UAA8U,CAAC,CAAC,CAC7b,EACA,CACE,UACgBA,EAAM,cAAcA,EAAM,SAAU,KAAsBA,EAAM,cAC9E,OACA,CACE,EAAG,6MACH,QAAS,KACX,CACF,EAAmBA,EAAM,cAAc,OAAQ,CAAE,EAAG,mVAAoV,CAAC,CAAC,CAC5Y,EACA,CACE,OACgBA,EAAM,cAAcA,EAAM,SAAU,KAAsBA,EAAM,cAAc,OAAQ,CAAE,EAAG,iQAAkQ,CAAC,CAAC,CACjX,EACA,CACE,QACgBA,EAAM,cAAcA,EAAM,SAAU,KAAsBA,EAAM,cAAc,OAAQ,CAAE,EAAG,sdAAud,CAAC,CAAC,CACtkB,EACA,CACE,UACgBA,EAAM,cAAcA,EAAM,SAAU,KAAsBA,EAAM,cAAc,OAAQ,CAAE,EAAG,mVAAoV,CAAC,CAAC,CACnc,EACA,CACE,OACgBA,EAAM,cAAcA,EAAM,SAAU,KAAsBA,EAAM,cAAc,OAAQ,CAAE,EAAG,6bAA8b,CAAC,CAAC,CAC7iB,CACF,CAAC,EACKE,EAAQF,EAAM,WAAW,CAACG,EAAOC,IAAwBJ,EAAM,cAAc,IAAK,CAAE,IAAAI,EAAK,GAAGD,CAAM,EAAGF,EAAQ,IAAIE,EAAM,MAAM,CAAC,CAAC,EACrID,EAAM,YAAc,QACpBJ,GAAYI,CACd,CACA,OAAOJ,EACT,ECxCqf,IAAMO,GAAS,CAAC,cAAc,oBAAoB,WAAW,mBAAmB,kBAAkB,kBAAkB,eAAe,UAAU,QAAQ,QAAQ,cAAc,oBAAoB,sBAAsB,YAAY,kBAAkB,aAAa,mBAAmB,WAAW,iBAAiB,aAAa,SAAS,eAAe,cAAc,cAAc,WAAW,eAAe,YAAY,YAAY,oBAAoB,UAAU,aAAa,cAAc,WAAW,eAAe,gBAAgB,oBAAoB,qBAAqB,oBAAoB,kBAAkB,qBAAqB,mBAAmB,kBAAkB,mBAAmB,kBAAkB,sBAAsB,uBAAuB,kBAAkB,mBAAmB,gBAAgB,oBAAoB,qBAAqB,iBAAiB,YAAY,gBAAgB,iBAAiB,qBAAqB,sBAAsB,iBAAiB,qBAAqB,mBAAmB,kBAAkB,sBAAsB,oBAAoB,mBAAmB,oBAAoB,eAAe,eAAe,mBAAmB,mBAAmB,oBAAoB,iBAAiB,oBAAoB,oBAAoB,qBAAqB,kBAAkB,gBAAgB,aAAa,YAAY,gBAAgB,oBAAoB,qBAAqB,gBAAgB,iBAAiB,cAAc,kBAAkB,mBAAmB,aAAa,kBAAkB,sBAAsB,uBAAuB,gBAAgB,kBAAkB,iBAAiB,mBAAmB,gBAAgB,oBAAoB,qBAAqB,iBAAiB,kBAAkB,iBAAiB,eAAe,kBAAkB,gBAAgB,eAAe,gBAAgB,UAAU,cAAc,eAAe,kBAAkB,eAAe,mBAAmB,WAAW,mBAAmB,uBAAuB,iBAAiB,kBAAkB,cAAc,YAAY,oBAAoB,kBAAkB,cAAc,iBAAiB,UAAU,gBAAgB,iBAAiB,WAAW,iBAAiB,KAAK,OAAO,OAAO,WAAW,YAAY,MAAM,YAAY,UAAU,WAAW,OAAO,UAAU,UAAU,YAAY,WAAW,cAAc,SAAS,aAAa,UAAU,kBAAkB,eAAe,cAAc,cAAc,aAAa,gBAAgB,cAAc,sBAAsB,uBAAuB,sBAAsB,sBAAsB,qBAAqB,iBAAiB,MAAM,aAAa,YAAY,cAAc,OAAO,cAAc,aAAa,oBAAoB,kBAAkB,cAAc,YAAY,QAAQ,cAAc,UAAU,aAAa,OAAO,YAAY,qBAAqB,iBAAiB,aAAa,OAAO,OAAO,OAAO,eAAe,WAAW,eAAe,WAAW,iBAAiB,YAAY,kBAAkB,QAAQ,OAAO,cAAc,WAAW,gBAAgB,gBAAgB,gBAAgB,iBAAiB,QAAQ,SAAS,SAAS,YAAY,iBAAiB,YAAY,QAAQ,UAAU,WAAW,MAAM,YAAY,WAAW,YAAY,MAAM,YAAY,SAAS,OAAO,aAAa,WAAW,gBAAgB,gBAAgB,eAAe,YAAY,WAAW,SAAS,aAAa,eAAe,cAAc,WAAW,MAAM,aAAa,YAAY,aAAa,QAAQ,sBAAsB,kBAAkB,kBAAkB,mBAAmB,gBAAgB,oBAAoB,kBAAkB,kBAAkB,mBAAmB,gBAAgB,YAAY,YAAY,aAAa,UAAU,cAAc,SAAS,eAAe,eAAe,MAAM,iBAAiB,iBAAiB,gBAAgB,mBAAmB,iBAAiB,kBAAkB,cAAc,cAAc,QAAQ,aAAa,mBAAmB,oBAAoB,YAAY,kBAAkB,WAAW,qBAAqB,aAAa,YAAY,gBAAgB,cAAc,WAAW,gBAAgB,aAAa,eAAe,OAAO,eAAe,mBAAmB,mBAAmB,aAAa,iBAAiB,iBAAiB,WAAW,eAAe,mBAAmB,mBAAmB,WAAW,QAAQ,cAAc,gBAAgB,QAAQ,cAAc,WAAW,cAAc,oBAAoB,SAAS,SAAS,SAAS,eAAe,aAAa,iBAAiB,cAAc,cAAc,eAAe,mBAAmB,YAAY,YAAY,gBAAgB,QAAQ,iBAAiB,iBAAiB,wBAAwB,iBAAiB,mBAAmB,QAAQ,iBAAiB,eAAe,aAAa,WAAW,iBAAiB,YAAY,YAAY,aAAa,YAAY,WAAW,eAAe,SAAS,OAAO,aAAa,WAAW,OAAO,YAAY,aAAa,cAAc,kBAAkB,SAAS,OAAO,eAAe,QAAQ,UAAU,UAAU,UAAU,cAAc,gBAAgB,WAAW,qBAAqB,UAAU,SAAS,aAAa,OAAO,aAAa,WAAW,YAAY,YAAY,aAAa,QAAQ,MAAM,aAAa,OAAO,QAAQ,YAAY,kBAAkB,QAAQ,cAAc,OAAO,YAAY,kBAAkB,cAAc,uBAAuB,cAAc,iBAAiB,uBAAuB,cAAc,cAAc,cAAc,cAAc,cAAc,cAAc,cAAc,cAAc,cAAc,SAAS,cAAc,aAAa,WAAW,WAAW,UAAU,eAAe,YAAY,YAAY,eAAe,qBAAqB,sBAAsB,eAAe,qBAAqB,sBAAsB,UAAU,UAAU,eAAe,WAAW,WAAW,UAAU,UAAU,YAAY,UAAU,OAAO,cAAc,SAAS,MAAM,MAAM,OAAO,WAAW,MAAM,aAAa,WAAW,UAAU,kBAAkB,YAAY,kBAAkB,mBAAmB,oBAAoB,WAAW,iBAAiB,QAAQ,eAAe,OAAO,WAAW,iBAAiB,cAAc,MAAM,WAAW,MAAM,WAAW,QAAQ,cAAc,WAAW,SAAS,WAAW,eAAe,iBAAiB,qBAAqB,YAAY,SAAS,SAAS,gBAAgB,cAAc,OAAO,UAAU,gBAAgB,SAAS,MAAM,YAAY,WAAW,aAAa,mBAAmB,aAAa,WAAW,eAAe,UAAU,SAAS,mBAAmB,MAAM,cAAc,oBAAoB,UAAU,YAAY,OAAO,cAAc,gBAAgB,cAAc,YAAY,YAAY,WAAW,UAAU,UAAU,aAAa,UAAU,WAAW,YAAY,UAAU,SAAS,UAAU,WAAW,sBAAsB,YAAY,UAAU,WAAW,UAAU,UAAU,SAAS,UAAU,UAAU,WAAW,SAAS,UAAU,YAAY,UAAU,QAAQ,UAAU,UAAU,QAAQ,WAAW,aAAa,YAAY,YAAY,cAAc,oBAAoB,eAAe,OAAO,mBAAmB,aAAa,WAAW,cAAc,OAAO,aAAa,OAAO,aAAa,gBAAgB,cAAc,QAAQ,aAAa,QAAQ,aAAa,iBAAiB,YAAY,SAAS,cAAc,cAAc,eAAe,SAAS,eAAe,aAAa,cAAc,cAAc,mBAAmB,kBAAkB,kBAAkB,aAAa,aAAa,eAAe,qBAAqB,mBAAmB,oBAAoB,mBAAmB,mBAAmB,mBAAmB,aAAa,aAAa,UAAU,WAAW,aAAa,YAAY,eAAe,aAAa,WAAW,SAAS,eAAe,iBAAiB,SAAS,SAAS,UAAU,QAAQ,QAAQ,OAAO,WAAW,UAAU,eAAe,iBAAiB,aAAa,eAAe,kBAAkB,oBAAoB,QAAQ,MAAM,OAAO,YAAY,YAAY,UAAU,UAAU,WAAW,iBAAiB,aAAa,aAAa,mBAAmB,QAAQ,sBAAsB,sBAAsB,cAAc,aAAa,UAAU,gBAAgB,sBAAsB,mBAAmB,kBAAkB,aAAa,mBAAmB,iBAAiB,qBAAqB,WAAW,gBAAgB,SAAS,cAAc,QAAQ,WAAW,WAAW,SAAS,YAAY,SAAS,OAAO,YAAY,UAAU,WAAW,eAAe,YAAY,WAAW,eAAe,WAAW,gBAAgB,iBAAiB,UAAU,aAAa,UAAU,gBAAgB,gBAAgB,eAAe,YAAY,YAAY,aAAa,OAAO,eAAe,aAAa,aAAa,UAAU,QAAQ,aAAa,YAAY,gBAAgB,qBAAqB,YAAY,UAAU,WAAW,oBAAoB,SAAS,QAAQ,YAAY,gBAAgB,eAAe,kBAAkB,kBAAkB,sBAAsB,qBAAqB,QAAQ,YAAY,cAAc,WAAW,sBAAsB,qBAAqB,QAAQ,cAAc,SAAS,eAAe,WAAW,OAAO,gBAAgB,YAAY,kBAAkB,iBAAiB,OAAO,SAAS,MAAM,YAAY,WAAW,UAAU,QAAQ,SAAS,eAAe,OAAO,SAAS,SAAS,OAAO,WAAW,YAAY,oBAAoB,aAAa,YAAY,aAAa,iBAAiB,cAAc,eAAe,OAAO,YAAY,aAAa,kBAAkB,uBAAuB,eAAe,YAAY,OAAO,cAAc,aAAa,aAAa,sBAAsB,cAAc,WAAW,OAAO,UAAU,cAAc,gBAAgB,oBAAoB,WAAW,aAAa,iBAAiB,UAAU,YAAY,SAAS,iBAAiB,kBAAkB,uBAAuB,sBAAsB,SAAS,aAAa,aAAa,eAAe,UAAU,YAAY,UAAU,iBAAiB,QAAQ,gBAAgB,aAAa,YAAY,kBAAkB,gBAAgB,WAAW,YAAY,aAAa,kBAAkB,kBAAkB,qBAAqB,uBAAuB,qBAAqB,oBAAoB,QAAQ,cAAc,cAAc,QAAQ,UAAU,cAAc,OAAO,YAAY,QAAQ,aAAa,SAAS,aAAa,YAAY,QAAQ,cAAc,YAAY,kBAAkB,aAAa,iBAAiB,mBAAmB,kBAAkB,SAAS,YAAY,oBAAoB,UAAU,OAAO,YAAY,aAAa,WAAW,UAAU,eAAe,aAAa,oBAAoB,mBAAmB,mBAAmB,mBAAmB,kBAAkB,oBAAoB,kBAAkB,oBAAoB,kBAAkB,mBAAmB,cAAc,aAAa,aAAa,aAAa,YAAY,cAAc,YAAY,oBAAoB,mBAAmB,mBAAmB,mBAAmB,kBAAkB,oBAAoB,kBAAkB,oBAAoB,kBAAkB,mBAAmB,cAAc,YAAY,aAAa,MAAM,cAAc,UAAU,cAAc,SAAS,cAAc,UAAU,aAAa,kBAAkB,sBAAsB,cAAc,cAAc,UAAU,QAAQ,aAAa,kBAAkB,iBAAiB,YAAY,sBAAsB,YAAY,YAAY,gBAAgB,OAAO,WAAW,OAAO,cAAc,QAAQ,cAAc,WAAW,aAAa,QAAQ,MAAM,SAAS,iBAAiB,SAAS,eAAe,aAAa,eAAe,mBAAmB,oBAAoB,cAAc,YAAY,SAAS,UAAU,SAAS,mBAAmB,eAAe,mBAAmB,kBAAkB,oBAAoB,mBAAmB,cAAc,QAAQ,YAAY,kBAAkB,gBAAgB,gBAAgB,YAAY,aAAa,SAAS,eAAe,KAAK,YAAY,mBAAmB,YAAY,OAAO,gBAAgB,WAAW,QAAQ,cAAc,SAAS,QAAQ,OAAO,aAAa,YAAY,WAAW,OAAO,eAAe,QAAQ,iBAAiB,OAAO,aAAa,YAAY,aAAa,YAAY,YAAY,UAAU,UAAU,cAAc,QAAQ,eAAe,eAAe,oBAAoB,UAAU,WAAW,gBAAgB,kBAAkB,uBAAuB,QAAQ,UAAU,gBAAgB,qBAAqB,eAAe,cAAc,SAAS,WAAW,QAAQ,SAAS,UAAU,QAAQ,cAAc,cAAc,UAAU,eAAe,aAAa,UAAU,WAAW,SAAS,YAAY,UAAU,aAAa,SAAS,aAAa,SAAS,eAAe,cAAc,QAAQ,SAAS,eAAe,OAAO,MAAM,YAAY,MAAM,QAAQ,SAAS,OAAO,WAAW,UAAU,aAAa,eAAe,SAAS,OAAO,YAAY,eAAe,cAAc,YAAY,eAAe,sBAAsB,sBAAsB,mBAAmB,gBAAgB,iBAAiB,SAAS,QAAQ,WAAW,eAAe,SAAS,cAAc,kBAAkB,gBAAgB,aAAa,cAAc,aAAa,gBAAgB,cAAc,eAAe,cAAc,kBAAkB,eAAe,qBAAqB,SAAS,SAAS,UAAU,iBAAiB,gBAAgB,UAAU,gBAAgB,QAAQ,SAAS,UAAU,YAAY,WAAW,UAAU,QAAQ,aAAa,WAAW,iBAAiB,cAAc,oBAAoB,QAAQ,YAAY,UAAU,oBAAoB,YAAY,SAAS,cAAc,cAAc,YAAY,gBAAgB,YAAY,gBAAgB,aAAa,cAAc,eAAe,UAAU,cAAc,YAAY,aAAa,gBAAgB,iBAAiB,iBAAiB,QAAQ,UAAU,cAAc,cAAc,aAAa,cAAc,oBAAoB,mBAAmB,oBAAoB,qBAAqB,iBAAiB,eAAe,WAAW,UAAU,aAAa,SAAS,kBAAkB,gBAAgB,cAAc,SAAS,aAAa,mBAAmB,aAAa,sBAAsB,cAAc,QAAQ,oBAAoB,cAAc,SAAS,QAAQ,OAAO,kBAAkB,WAAW,WAAW,cAAc,gBAAgB,QAAQ,cAAc,UAAU,QAAQ,OAAO,aAAa,aAAa,WAAW,aAAa,UAAU,YAAY,WAAW,iBAAiB,WAAW,kBAAkB,iBAAiB,MAAM,SAAS,aAAa,aAAa,OAAO,WAAW,eAAe,QAAQ,YAAY,UAAU,SAAS,QAAQ,OAAO,MAAM,aAAa,YAAY,SAAS,OAAO,eAAe,aAAa,mBAAmB,aAAa,OAAO,WAAW,iBAAiB,WAAW,iBAAiB,SAAS,kBAAkB,mBAAmB,gBAAgB,iBAAiB,QAAQ,cAAc,QAAQ,YAAY,YAAY,WAAW,WAAW,aAAa,WAAW,aAAa,aAAa,cAAc,oBAAoB,QAAQ,gBAAgB,UAAU,cAAc,kBAAkB,iBAAiB,oBAAoB,aAAa,WAAW,SAAS,YAAY,aAAa,QAAQ,OAAO,aAAa,cAAc,SAAS,cAAc,UAAU,QAAQ,OAAO,aAAa,YAAY,sBAAsB,cAAc,cAAc,gBAAgB,QAAQ,gBAAgB,cAAc,OAAO,YAAY,QAAQ,cAAc,OAAO,OAAO,gBAAgB,WAAW,gBAAgB,YAAY,UAAU,WAAW,SAAS,QAAQ,aAAa,cAAc,WAAW,iBAAiB,QAAQ,cAAc,SAAS,eAAe,MAAM,OAAO,aAAa,iBAAiB,kBAAkB,iBAAiB,YAAY,WAAW,WAAW,YAAY,WAAW,gBAAgB,aAAa,aAAa,QAAQ,YAAY,aAAa,MAAM,QAAQ,UAAU,QAAQ,cAAc,mBAAmB,WAAW,cAAc,iBAAiB,QAAQ,YAAY,aAAa,OAAO,SAAS,YAAY,UAAU,gBAAgB,iBAAiB,iBAAiB,QAAQ,eAAe,WAAW,aAAa,eAAe,WAAW,QAAQ,SAAS,cAAc,eAAe,aAAa,eAAe,aAAa,mBAAmB,WAAW,UAAU,aAAa,WAAW,YAAY,QAAQ,OAAO,cAAc,OAAO,SAAS,IAAI,UAAU,UAAU,UAAU,aAAc,EAAQC,GAAc,uCAA6CC,GAAc,CAAC,OAAO,QAAQ,UAAU,OAAO,OAAO,SAAU,EAAQC,GAAsBH,GAAS,OAAO,CAACI,EAAIC,KAAOD,EAAIC,EAAI,YAAY,CAAC,EAAEA,EAAWD,GAAM,CAAC,CAAC,EAQnqhB,SAASE,EAAKC,EAAM,CAAC,GAAK,CAAC,MAAAC,EAAM,aAAAC,EAAa,WAAAC,EAAW,cAAAC,EAAc,QAAAC,EAAQ,YAAAC,EAAY,UAAAC,EAAU,aAAAC,EAAa,aAAAC,EAAa,OAAAC,EAAO,SAAAC,CAAQ,EAAEX,EAAYY,EAAUC,EAAO,EAAK,EAAQC,EAAQC,GAAiBtB,GAASS,EAAaC,EAAWC,EAAcR,EAAqB,EAAO,CAACoB,EAAaC,CAAe,EAAEC,GAASJ,IAAU,OAAOK,GAAaC,CAAK,EAAE,IAAI,EAAE,eAAeC,GAAc,CACzZ,GAAG,CAAuF,IAAMC,EAAO,MAAM,OAA9D,GAAG5B,EAAa,GAAGoB,CAAO,cAAuFF,EAAU,SAAQK,EAAgBK,EAAO,QAAQF,CAAK,CAAC,CAAE,MAAW,CAAIR,EAAU,SAAQK,EAAgB,IAAI,CAAE,CAAC,CAACM,EAAU,KAAKX,EAAU,QAAQ,GAAKS,EAAa,EAAQ,IAAI,CAACT,EAAU,QAAQ,EAAM,GAAI,CAACE,CAAO,CAAC,EAAgE,IAAMU,EAAnDC,EAAa,QAAQ,IAAIA,EAAa,OAAiDC,EAAKC,GAAU,CAAC,CAAC,EAAE,KAAK,OAAqBD,EAAKE,EAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,QAAAvB,EAAQ,aAAAG,EAAa,aAAAC,EAAa,YAAAH,EAAY,UAAAC,EAAU,SAASS,EAA2BU,EAAK,MAAM,CAAC,MAAM,6BAA6B,QAAQ,cAAc,MAAM,CAAC,WAAW,OAAO,MAAM,OAAO,OAAO,OAAO,QAAQ,eAAe,KAAKzB,EAAM,MAAAA,EAAM,WAAW,EAAE,UAAUU,EAAS,eAAe,MAAS,EAAE,UAAU,QAAQ,MAAMV,EAAM,SAAuByB,EAAKV,EAAa,CAAC,MAAMf,EAAM,OAAOS,CAAM,CAAC,CAAC,CAAC,EAAEc,CAAU,CAAC,CAAE,CAACzB,EAAK,YAAY,WAAWA,EAAK,aAAa,CAAC,MAAM,GAAG,OAAO,GAAG,cAAc,QAAQ,WAAW,QAAQ,MAAM,OAAO,aAAa,GAAK,OAAO,UAAU,SAAS,EAAK,EAAE8B,EAAoB9B,EAAK,CAAC,aAAa,CAAC,KAAK+B,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,SAAS,aAAa/B,EAAK,aAAa,YAAY,EAAE,cAAc,CAAC,KAAK+B,EAAY,KAAK,QAAQrC,GAAS,aAAaM,EAAK,aAAa,cAAc,MAAM,OAAO,OAAO,CAAC,CAAC,aAAAG,CAAY,IAAI,CAACA,EAAa,YAAY,yEAAyE,EAAE,WAAW,CAAC,KAAK4B,EAAY,OAAO,MAAM,OAAO,YAAY,wBAAmB,OAAO,CAAC,CAAC,aAAA5B,CAAY,IAAIA,CAAY,EAAE,MAAM,CAAC,KAAK4B,EAAY,MAAM,MAAM,QAAQ,aAAa/B,EAAK,aAAa,KAAK,EAAE,OAAO,CAAC,KAAK+B,EAAY,KAAK,MAAM,SAAS,aAAanC,GAAc,IAAIoC,GAAOA,EAAM,OAAO,CAAC,EAAE,YAAY,EAAEA,EAAM,MAAM,CAAC,CAAC,EAAE,QAAQpC,GAAc,aAAaI,EAAK,aAAa,MAAM,EAAE,SAAS,CAAC,KAAK+B,EAAY,QAAQ,aAAa,MAAM,cAAc,KAAK,aAAa/B,EAAK,aAAa,QAAQ,EAAE,GAAGiC,EAAa,CAAC",
  "names": ["murmur2", "t", "a", "e", "c", "Arc", "withCSS", "props", "hasChildren", "j", "isCanvas", "RenderTarget", "showCustomPath", "isCircle", "cylinder", "path", "createPath", "childPath", "viewBox", "firstChild", "getFirstChild", "svgChild", "svgChildCanvas", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "svgString", "Gn", "canvasFrame", "attributes", "element", "splitAndReplace", "attributes1", "element1", "id", "murmur2", "alignmentValue", "motion", "Arc_default", "addPropertyControls", "ControlType", "type", "rotate", "slots", "child", "string", "flip", "cylinderTop", "cylinderBottom", "fontStore", "fonts", "css", "className", "containerStyles", "emptyStateStyle", "containerStyles", "NullState", "Y", "_", "ref", "p", "r", "l", "e", "t", "o", "a", "n", "defaultEvents", "ControlType", "findByArray", "arr", "search", "a", "useIconSelection", "iconKeys", "selectByList", "iconSearch", "iconSelection", "lowercaseIconKeyPairs", "iconSearchResult", "se", "iconSearchTerm", "_iconSearchTerm", "findByArray", "iconKeys", "moduleBaseUrl", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "l", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "defaultEvents", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "t6W_a9Bi1", "HtTFUFo1p", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "RichText2", "Link", "css", "FramerG02RGlfmB", "withCSS", "G02RGlfmB_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "HeroFonts", "getFonts", "Icon", "TextButtonFonts", "G02RGlfmB_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", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1a6z6hy", "args", "onTapa975pv", "onTapcx00rw", "onTapx99leo", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "Link", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "ResolveLinks", "resolvedLinks", "SVG", "css", "Frameru2fu2S444", "withCSS", "u2fu2S444_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "Component", "House_default", "React", "weights", "House", "props", "ref", "iconKeys", "moduleBaseUrl", "weightOptions", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "weight", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "House_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "piece", "defaultEvents"]
}
