{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js", "ssg:https://framerusercontent.com/modules/zusd0WO0V1hZQh2CKa0p/lCaVBUrCscgUtcn94gJb/JManD67vQ.js", "ssg:https://framerusercontent.com/modules/cGbY1APailFNg9WqnX8h/uencPMqUvIKOHqVia0I0/ro7OPezbn.js", "ssg:https://framerusercontent.com/modules/iDK8daeNsq1Hzap4IvPo/2z5lOsZNKRiRKf8ezGdI/ymwr5G22A.js", "ssg:https://framerusercontent.com/modules/wfgB9Nc2WKyIN8OLLsdJ/fg4ZOuNI30RC0SCo77pV/tS2Z9Rl3A.js", "ssg:https://framerusercontent.com/modules/plzDfnoFPOlJS4huAtke/OsKJmgWSDqJOQlqznrXE/tS2Z9Rl3A.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";var IconType;(function(IconType){IconType[\"Default\"]=\"Default\";IconType[\"Custom\"]=\"Custom\";})(IconType||(IconType={}));var SrcType;(function(SrcType){SrcType[\"Upload\"]=\"Upload\";SrcType[\"URL\"]=\"URL\";})(SrcType||(SrcType={}));// Check for the Search Index Meta Tag\n// Currently the only way to differenciate between Preview & Publish\nconst metaTagSelector='meta[name=\"framer-search-index\"]';// We can hopefully remove this check when new Preview ships\nfunction isPublishedSiteOrSSG(){if(typeof document===\"undefined\")return true;const metaTag=document.querySelector(metaTagSelector);return!!metaTag;}/**\n *\n * DOWNLOAD\n * By Hunter\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 100\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Download(props){const{styleOptions,hoverOptions,iconOptions}=props;const{backgroundColor,color,borderRadius,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,gap}=styleOptions;const isInPublishedSiteOrSSG=isPublishedSiteOrSSG();let downloadURL=undefined;if(isInPublishedSiteOrSSG){if(props.srcType===SrcType.URL)downloadURL=props.srcURL;if(props.srcType===SrcType.Upload)downloadURL=props.srcFile;}const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;const getIcon=()=>{var ref,ref1;if(!iconOptions)return;const iconStyle={order:iconOptions.alignment===\"start\"?0:2,flexShrink:0};return iconOptions.type===IconType.Custom&&!!((ref=iconOptions.image)===null||ref===void 0?void 0:ref.src)?/*#__PURE__*/ _jsx(\"img\",{style:iconStyle,alt:((ref1=iconOptions.image)===null||ref1===void 0?void 0:ref1.alt)&&iconOptions.image.alt.length>0?iconOptions.image.alt:\"download icon\",src:iconOptions.image.src,width:iconOptions.size,height:iconOptions.size}):/*#__PURE__*/ _jsx(\"svg\",{style:iconStyle,xmlns:\"http://www.w3.org/2000/svg\",width:iconOptions.size,height:iconOptions.size,fill:iconOptions.color,viewBox:\"0 0 256 256\",children:/*#__PURE__*/ _jsx(\"path\",{d:\"M228 152v56a20 20 0 0 1-20 20H48a20 20 0 0 1-20-20v-56a12 12 0 0 1 24 0v52h152v-52a12 12 0 0 1 24 0Zm-108.49 8.49a12 12 0 0 0 17 0l40-40a12 12 0 0 0-17-17L140 123V40a12 12 0 0 0-24 0v83l-19.51-19.49a12 12 0 0 0-17 17Z\"})});};const getCursor=()=>{if(props.srcType===SrcType.URL&&props.srcURL)return\"pointer\";if(props.srcType===SrcType.Upload&&props.srcFile)return\"pointer\";return\"auto\";};const buttonTitle=isInPublishedSiteOrSSG?\"Download File\":\"Publish to Download\";return /*#__PURE__*/ _jsxs(motion.a,{target:\"_blank\",href:downloadURL,download:true,title:buttonTitle,style:{gap,fontSize:16,lineHeight:1,fontFamily:\"Inter\",fontWeight:500,width:\"max-content\",...props.style,...buttonStyles,...props.fontControl,padding:paddingValue,color:color,backgroundColor:backgroundColor,borderRadius:borderRadius,userSelect:\"none\",placeContent:flexAlignSwitch(props.fontControl),whiteSpace:\"nowrap\",cursor:getCursor()},whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:[getIcon(),props.text]});};Download.displayName=\"Download\";addPropertyControls(Download,{text:{title:\"Text\",type:ControlType.String,defaultValue:\"Download\"},srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Upload,SrcType.URL]},srcURL:{type:ControlType.String,title:\" \",placeholder:\"../example.pdf\",hidden:props=>props.srcType===SrcType.Upload},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[],hidden:props=>props.srcType===SrcType.URL},fontControl:{// @ts-ignore - Internal\ntype:ControlType.Font,title:\"Font\",controls:\"extended\"},iconOptions:{type:ControlType.Object,optional:true,title:\"Icon\",buttonTitle:\"Size, Color\",controls:{type:{title:\"Type\",type:ControlType.Enum,options:Object.values(IconType),optionTitles:Object.values(IconType),displaySegmentedControl:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.type===IconType.Custom},image:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.type===IconType.Default},size:{type:ControlType.Number,displayStepper:true,min:5,defaultValue:16,max:250},alignment:{title:\"Align\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"start\",\"end\"],optionTitles:[\"Start\",\"End\"]}}},styleOptions:{type:ControlType.Object,title:\"Styles\",buttonTitle:\"Button, Font\",controls:{backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#111\"},color:{type:ControlType.Color,defaultValue:\"#FFF\"},borderRadius:{type:ControlType.Number,title:\"Radius\",displayStepper:true,defaultValue:50},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:10,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,defaultValue:5}}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#333\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}}});const buttonStyles={display:\"flex\",placeItems:\"center\",placeContent:\"center\",textDecoration:\"none\"};/* Match flex content alignment with text align */ const flexAlignSwitch=fontControlStyles=>{if(!(fontControlStyles===null||fontControlStyles===void 0?void 0:fontControlStyles.textAlign)){return\"left\";}if(fontControlStyles.textAlign===\"left\"){return\"flex-start\";}if(fontControlStyles.textAlign===\"right\"){return\"flex-end\";}return\"center\";};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Download\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"100\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Download.map", "// Generated by Framer (0f540f8)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Andada Pro-600\",\"GF;Andada Pro-700\",\"GF;Andada Pro-700italic\",\"GF;Andada Pro-600italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Andada Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMXAo8ZFLzvIt2S.woff2\",weight:\"600\"},{family:\"Andada Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMuAo8ZFLzvIt2S.woff2\",weight:\"700\"},{family:\"Andada Pro\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRoBYHr3NJ82Stjw.woff2\",weight:\"700\"},{family:\"Andada Pro\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRrlYHr3NJ82Stjw.woff2\",weight:\"600\"}]}];export const css=['.framer-dvnUN .framer-styles-preset-w44646:not(.rich-text-wrapper), .framer-dvnUN .framer-styles-preset-w44646.rich-text-wrapper h3 { --framer-font-family: \"Andada Pro\", \"Andada Pro Placeholder\", serif; --framer-font-family-bold: \"Andada Pro\", \"Andada Pro Placeholder\", serif; --framer-font-family-bold-italic: \"Andada Pro\", \"Andada Pro Placeholder\", serif; --framer-font-family-italic: \"Andada Pro\", \"Andada Pro Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.5px; --framer-line-height: 32px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-b3d2ad2a-71b9-4473-b8a2-63569d8b7306, #f2f2f2); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-dvnUN .framer-styles-preset-w44646:not(.rich-text-wrapper), .framer-dvnUN .framer-styles-preset-w44646.rich-text-wrapper h3 { --framer-font-family: \"Andada Pro\", \"Andada Pro Placeholder\", serif; --framer-font-family-bold: \"Andada Pro\", \"Andada Pro Placeholder\", serif; --framer-font-family-bold-italic: \"Andada Pro\", \"Andada Pro Placeholder\", serif; --framer-font-family-italic: \"Andada Pro\", \"Andada Pro Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.5px; --framer-line-height: 32px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-b3d2ad2a-71b9-4473-b8a2-63569d8b7306, #f2f2f2); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-dvnUN .framer-styles-preset-w44646:not(.rich-text-wrapper), .framer-dvnUN .framer-styles-preset-w44646.rich-text-wrapper h3 { --framer-font-family: \"Andada Pro\", \"Andada Pro Placeholder\", serif; --framer-font-family-bold: \"Andada Pro\", \"Andada Pro Placeholder\", serif; --framer-font-family-bold-italic: \"Andada Pro\", \"Andada Pro Placeholder\", serif; --framer-font-family-italic: \"Andada Pro\", \"Andada Pro Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.7px; --framer-line-height: 28px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-b3d2ad2a-71b9-4473-b8a2-63569d8b7306, #f2f2f2); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-dvnUN\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=['.framer-EzAgE .framer-styles-preset-1wicq5s:not(.rich-text-wrapper), .framer-EzAgE .framer-styles-preset-1wicq5s.rich-text-wrapper a { --framer-link-current-text-color: var(--token-b3d2ad2a-71b9-4473-b8a2-63569d8b7306, #000000) /* {\"name\":\"Typography\"} */; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-4a7b8e81-3912-453a-8164-e6712285d1cf, #83868a) /* {\"name\":\"Grey\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-b3d2ad2a-71b9-4473-b8a2-63569d8b7306, #000000); --framer-link-text-decoration: none; }'];export const className=\"framer-EzAgE\";\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\"}}}", "// Generated by Framer (0f540f8)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Andada Pro-600\",\"GF;Andada Pro-700\",\"GF;Andada Pro-700italic\",\"GF;Andada Pro-600italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Andada Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMXAo8ZFLzvIt2S.woff2\",weight:\"600\"},{family:\"Andada Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/andadapro/v20/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMuAo8ZFLzvIt2S.woff2\",weight:\"700\"},{family:\"Andada Pro\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRoBYHr3NJ82Stjw.woff2\",weight:\"700\"},{family:\"Andada Pro\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/andadapro/v20/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRrlYHr3NJ82Stjw.woff2\",weight:\"600\"}]}];export const css=['.framer-tTfIX .framer-styles-preset-136i7lp:not(.rich-text-wrapper), .framer-tTfIX .framer-styles-preset-136i7lp.rich-text-wrapper h2 { --framer-font-family: \"Andada Pro\", \"Andada Pro Placeholder\", serif; --framer-font-family-bold: \"Andada Pro\", \"Andada Pro Placeholder\", serif; --framer-font-family-bold-italic: \"Andada Pro\", \"Andada Pro Placeholder\", serif; --framer-font-family-italic: \"Andada Pro\", \"Andada Pro Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: -1.44px; --framer-line-height: 48px; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-b3d2ad2a-71b9-4473-b8a2-63569d8b7306, #f2f2f2); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-tTfIX .framer-styles-preset-136i7lp:not(.rich-text-wrapper), .framer-tTfIX .framer-styles-preset-136i7lp.rich-text-wrapper h2 { --framer-font-family: \"Andada Pro\", \"Andada Pro Placeholder\", serif; --framer-font-family-bold: \"Andada Pro\", \"Andada Pro Placeholder\", serif; --framer-font-family-bold-italic: \"Andada Pro\", \"Andada Pro Placeholder\", serif; --framer-font-family-italic: \"Andada Pro\", \"Andada Pro Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: -1.44px; --framer-line-height: 48px; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-b3d2ad2a-71b9-4473-b8a2-63569d8b7306, #f2f2f2); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-tTfIX .framer-styles-preset-136i7lp:not(.rich-text-wrapper), .framer-tTfIX .framer-styles-preset-136i7lp.rich-text-wrapper h2 { --framer-font-family: \"Andada Pro\", \"Andada Pro Placeholder\", serif; --framer-font-family-bold: \"Andada Pro\", \"Andada Pro Placeholder\", serif; --framer-font-family-bold-italic: \"Andada Pro\", \"Andada Pro Placeholder\", serif; --framer-font-family-italic: \"Andada Pro\", \"Andada Pro Placeholder\", serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: -1.4px; --framer-line-height: 40px; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-b3d2ad2a-71b9-4473-b8a2-63569d8b7306, #f2f2f2); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-tTfIX\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (06534cb)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={VDdu3xvwm:new LazyValue(()=>import(\"./tS2Z9Rl3A-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (06534cb)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Download from\"https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js\";import ComponentProductCard from\"#framer/local/canvasComponent/BfiU6Ydyp/BfiU6Ydyp.js\";import BlockKontakt from\"#framer/local/canvasComponent/cqamu8ShE/cqamu8ShE.js\";import ComponentNavbar from\"#framer/local/canvasComponent/HpjRpKcZa/HpjRpKcZa.js\";import ButtonBackLink from\"#framer/local/canvasComponent/K0IhmAYp6/K0IhmAYp6.js\";import ComponentFooter from\"#framer/local/canvasComponent/mfBXrkaSs/mfBXrkaSs.js\";import Products from\"#framer/local/collection/xc9ugaadL/xc9ugaadL.js\";import*as sharedStyle1 from\"#framer/local/css/CEdV3POxh/CEdV3POxh.js\";import*as sharedStyle from\"#framer/local/css/gygvS6A2x/gygvS6A2x.js\";import*as sharedStyle3 from\"#framer/local/css/JManD67vQ/JManD67vQ.js\";import*as sharedStyle4 from\"#framer/local/css/Nswr0T_fo/Nswr0T_fo.js\";import*as sharedStyle5 from\"#framer/local/css/ro7OPezbn/ro7OPezbn.js\";import*as sharedStyle2 from\"#framer/local/css/ymwr5G22A/ymwr5G22A.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/tS2Z9Rl3A/tS2Z9Rl3A.js\";import metadataProvider from\"#framer/local/webPageMetadata/tS2Z9Rl3A/tS2Z9Rl3A.js\";const ComponentNavbarFonts=getFonts(ComponentNavbar);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const ButtonBackLinkFonts=getFonts(ButtonBackLink);const DownloadFonts=getFonts(Download);const ComponentProductCardFonts=getFonts(ComponentProductCard);const BlockKontaktFonts=getFonts(BlockKontakt);const ComponentFooterFonts=getFonts(ComponentFooter);const breakpoints={GJZOVhYI1:\"(min-width: 810px) and (max-width: 1199px)\",oNV4o7efb:\"(max-width: 809px)\",tBR5DFtLJ:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-tY3nu\";const variantClassNames={GJZOVhYI1:\"framer-v-cjmw62\",oNV4o7efb:\"framer-v-1vc5b0f\",tBR5DFtLJ:\"framer-v-i73mfj\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={delay:0,duration:1.2,ease:[.16,1,.3,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-32,y:0};const transition2={delay:.1,duration:1.2,ease:[.16,1,.3,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={delay:.2,duration:1.2,ease:[.16,1,.3,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={delay:.3,duration:1.2,ease:[.16,1,.3,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={delay:.4,duration:1.2,ease:[.16,1,.3,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const transition6={delay:.5,duration:1.2,ease:[.16,1,.3,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"tBR5DFtLJ\",Phone:\"oNV4o7efb\",Tablet:\"GJZOVhYI1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"tBR5DFtLJ\"};};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"tS2Z9Rl3A\",data:Products,type:\"Collection\"},select:[{collection:\"tS2Z9Rl3A\",name:\"GLYoLi6pc\",type:\"Identifier\"},{collection:\"tS2Z9Rl3A\",name:\"h1gHZV6M6\",type:\"Identifier\"},{collection:\"tS2Z9Rl3A\",name:\"TMAt9qvWi\",type:\"Identifier\"},{collection:\"tS2Z9Rl3A\",name:\"esJEufCO4\",type:\"Identifier\"},{collection:\"tS2Z9Rl3A\",name:\"fiM6oHHew\",type:\"Identifier\"},{collection:\"tS2Z9Rl3A\",name:\"tGjUDIBhS\",type:\"Identifier\"},{collection:\"tS2Z9Rl3A\",name:\"DqadtEyKq\",type:\"Identifier\"},{collection:\"tS2Z9Rl3A\",name:\"rMJpXzciI\",type:\"Identifier\"},{collection:\"tS2Z9Rl3A\",name:\"VcNU1TbG7\",type:\"Identifier\"},{collection:\"tS2Z9Rl3A\",name:\"pOz4T5kbW\",type:\"Identifier\"},{collection:\"tS2Z9Rl3A\",name:\"iKhLewoAX\",type:\"Identifier\"},{collection:\"tS2Z9Rl3A\",name:\"znLiFXkiE\",type:\"Identifier\"},{collection:\"tS2Z9Rl3A\",name:\"Mb2zVyGY2\",type:\"Identifier\"},{collection:\"tS2Z9Rl3A\",name:\"QOmQMpUTo\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"tS2Z9Rl3A\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,esJEufCO4=getFromCurrentRouteData(\"esJEufCO4\"),fiM6oHHew=getFromCurrentRouteData(\"fiM6oHHew\"),tGjUDIBhS=getFromCurrentRouteData(\"tGjUDIBhS\"),OzWvj6mUP,eNxefkKh7,Lo9fJSDTo,GLYoLi6pc=getFromCurrentRouteData(\"GLYoLi6pc\")??\"\",h1gHZV6M6=getFromCurrentRouteData(\"h1gHZV6M6\")??\"\",DqadtEyKq=getFromCurrentRouteData(\"DqadtEyKq\"),rMJpXzciI=getFromCurrentRouteData(\"rMJpXzciI\")??\"\",VcNU1TbG7=getFromCurrentRouteData(\"VcNU1TbG7\"),pOz4T5kbW=getFromCurrentRouteData(\"pOz4T5kbW\")??\"\",iKhLewoAX=getFromCurrentRouteData(\"iKhLewoAX\"),znLiFXkiE=getFromCurrentRouteData(\"znLiFXkiE\")??\"\",Mb2zVyGY2=getFromCurrentRouteData(\"Mb2zVyGY2\"),QOmQMpUTo=getFromCurrentRouteData(\"QOmQMpUTo\")??\"\",TMAt9qvWi=getFromCurrentRouteData(\"TMAt9qvWi\")??\"\",esJEufCO4pl5H_RSB4,lVXuKYP25pl5H_RSB4,GLYoLi6pcpl5H_RSB4,idpl5H_RSB4,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"OdSPWfUrf\");const ref1=React.useRef(null);const visible=isSet(esJEufCO4);const visible1=isSet(fiM6oHHew);const visible2=isSet(tGjUDIBhS);const visible3=isSet(OzWvj6mUP);const visible4=isSet(eNxefkKh7);const visible5=isSet(Lo9fJSDTo);usePreloadLocalizedValues(activeLocale);const router=useRouter();const visible6=isSet(DqadtEyKq);const visible7=isSet(VcNU1TbG7);const visible8=isSet(iKhLewoAX);const visible9=isSet(Mb2zVyGY2);const elementId1=useRouteElementId(\"lsQLycWc4\");const ref2=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"tBR5DFtLJ\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-96496d62-c517-482d-af2e-6211b5cf4453, rgb(22, 22, 22)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-i73mfj\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GJZOVhYI1:{y:undefined},oNV4o7efb:{height:80,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:97,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-euujrv-container\",nodeId:\"k8GS6dYQv\",scopeId:\"tS2Z9Rl3A\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GJZOVhYI1:{style:{height:\"100%\",width:\"100%\"}},oNV4o7efb:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(ComponentNavbar,{height:\"100%\",id:\"k8GS6dYQv\",layoutId:\"k8GS6dYQv\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1t201w7\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GJZOVhYI1:{background:{alt:\"\",fit:\"fill\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/tcXoTSmF6vpSBKMGpMqPDDnA9b8.png\",srcSet:\"https://framerusercontent.com/images/tcXoTSmF6vpSBKMGpMqPDDnA9b8.png?scale-down-to=512 512w,https://framerusercontent.com/images/tcXoTSmF6vpSBKMGpMqPDDnA9b8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tcXoTSmF6vpSBKMGpMqPDDnA9b8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tcXoTSmF6vpSBKMGpMqPDDnA9b8.png 2880w\"}},oNV4o7efb:{background:{alt:\"\",fit:\"fill\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/tcXoTSmF6vpSBKMGpMqPDDnA9b8.png\",srcSet:\"https://framerusercontent.com/images/tcXoTSmF6vpSBKMGpMqPDDnA9b8.png?scale-down-to=512 512w,https://framerusercontent.com/images/tcXoTSmF6vpSBKMGpMqPDDnA9b8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tcXoTSmF6vpSBKMGpMqPDDnA9b8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tcXoTSmF6vpSBKMGpMqPDDnA9b8.png 2880w\"}}},children:/*#__PURE__*/_jsx(\"header\",{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+97+0+0),sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/tcXoTSmF6vpSBKMGpMqPDDnA9b8.png\",srcSet:\"https://framerusercontent.com/images/tcXoTSmF6vpSBKMGpMqPDDnA9b8.png?scale-down-to=512 512w,https://framerusercontent.com/images/tcXoTSmF6vpSBKMGpMqPDDnA9b8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tcXoTSmF6vpSBKMGpMqPDDnA9b8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tcXoTSmF6vpSBKMGpMqPDDnA9b8.png 2880w\"},className:\"framer-vmfk9q\",\"data-border\":true,\"data-framer-name\":\"Product\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x19581\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lrkteq\",\"data-framer-name\":\"Images\",children:[visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GJZOVhYI1:{background:{alt:\"\",fit:\"fill\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1360px) - 96px) / 2, 200px)`,...toResponsiveImage(esJEufCO4)}},oNV4o7efb:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1360px) - 64px)`,...toResponsiveImage(esJEufCO4)}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+97+0+0+160+0+0+-1280),sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1360px) - 128px) / 1.8, 1px)`,...toResponsiveImage(esJEufCO4)},className:\"framer-18ioec8\",\"data-border\":true,\"data-framer-appear-id\":\"18ioec8\",\"data-framer-name\":\"product_image\",initial:animation1,optimized:true,style:{transformPerspective:1200}})}),visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GJZOVhYI1:{background:{alt:\"\",fit:\"fill\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1360px) - 96px) / 2, 200px)`,...toResponsiveImage(fiM6oHHew)}},oNV4o7efb:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1360px) - 64px)`,...toResponsiveImage(fiM6oHHew)}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation2,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+97+0+0+160+0+0+-848),sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1360px) - 128px) / 1.8, 1px)`,...toResponsiveImage(fiM6oHHew)},className:\"framer-5nq4fn\",\"data-framer-appear-id\":\"5nq4fn\",\"data-framer-name\":\"Image 2\",initial:animation1,optimized:true,style:{transformPerspective:1200}})}),visible2&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GJZOVhYI1:{background:{alt:\"\",fit:\"fill\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1360px) - 96px) / 2, 200px)`,...toResponsiveImage(tGjUDIBhS)}},oNV4o7efb:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1360px) - 64px)`,...toResponsiveImage(tGjUDIBhS)}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation3,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+97+0+0+160+0+0+-416),sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1360px) - 128px) / 1.8, 1px)`,...toResponsiveImage(tGjUDIBhS)},className:\"framer-1kdfi5n\",\"data-framer-appear-id\":\"1kdfi5n\",\"data-framer-name\":\"Image 3\",initial:animation1,optimized:true,style:{transformPerspective:1200}})}),visible3&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GJZOVhYI1:{background:{alt:\"\",fit:\"fill\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1360px) - 96px) / 2, 200px)`,...toResponsiveImage(OzWvj6mUP)}},oNV4o7efb:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1360px) - 64px)`,...toResponsiveImage(OzWvj6mUP)}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation4,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+97+0+0+160+0+0+16),sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1360px) - 128px) / 1.8, 1px)`,...toResponsiveImage(OzWvj6mUP)},className:\"framer-olz812\",\"data-framer-appear-id\":\"olz812\",\"data-framer-name\":\"Image 4\",initial:animation1,optimized:true,style:{transformPerspective:1200}})}),visible4&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GJZOVhYI1:{background:{alt:\"\",fit:\"fill\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1360px) - 96px) / 2, 200px)`,...toResponsiveImage(eNxefkKh7)}},oNV4o7efb:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1360px) - 64px)`,...toResponsiveImage(eNxefkKh7)}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation5,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+97+0+0+160+0+0+448),sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1360px) - 128px) / 1.8, 1px)`,...toResponsiveImage(eNxefkKh7)},className:\"framer-j96vt\",\"data-framer-appear-id\":\"j96vt\",\"data-framer-name\":\"Image 5\",initial:animation1,optimized:true,style:{transformPerspective:1200}})}),visible5&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GJZOVhYI1:{background:{alt:\"\",fit:\"fill\",sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1360px) - 96px) / 2, 200px)`,...toResponsiveImage(Lo9fJSDTo)}},oNV4o7efb:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1360px) - 64px)`,...toResponsiveImage(Lo9fJSDTo)}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation6,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+97+0+0+160+0+0+880),sizes:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1360px) - 128px) / 1.8, 1px)`,...toResponsiveImage(Lo9fJSDTo)},className:\"framer-dv5uaa\",\"data-framer-appear-id\":\"dv5uaa\",\"data-framer-name\":\"Image 6\",initial:animation1,optimized:true,style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vjsvwr\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j2io8l\",\"data-framer-name\":\"Breadcrumb\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"OF_DtRqQo\"},implicitPathVariables:undefined},{href:{webPageId:\"OF_DtRqQo\"},implicitPathVariables:undefined},{href:{webPageId:\"OF_DtRqQo\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lnvpsc-container\",nodeId:\"jO5IqxB6f\",scopeId:\"tS2Z9Rl3A\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GJZOVhYI1:{Hza07G7r_:resolvedLinks[1]},oNV4o7efb:{Hza07G7r_:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ButtonBackLink,{dfAT8g3ip:true,height:\"100%\",Hza07G7r_:resolvedLinks[0],id:\"jO5IqxB6f\",layoutId:\"jO5IqxB6f\",variant:\"PCdrYk6UM\",w0MfyCyBE:getLocalizedValue(\"v0\",activeLocale)??\"Tillbaka\",width:\"100%\",Z7TMrUzhg:false})})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-cvdpyn\",\"data-styles-preset\":\"gygvS6A2x\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-4488deea-d28e-4b89-a68c-aef2f131822b, rgb(0, 0, 0))\"},children:\"F\\xe4ste Tegelpannor\"})}),className:\"framer-1akhkur\",\"data-framer-name\":\"product_name\",fonts:[\"Inter\"],text:GLYoLi6pc,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:h1gHZV6M6,className:\"framer-1sl1uou\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1wicq5s\",h1:\"framer-styles-preset-zfx3k3\",h2:\"framer-styles-preset-136i7lp\",h3:\"framer-styles-preset-w44646\",p:\"framer-styles-preset-1cgeyu8\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-150al4j\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aaigwc\",children:[visible6&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lpioqb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YlRRf8Fpx\",scopeId:\"tS2Z9Rl3A\",children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:300,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:\"rgb(251, 251, 250)\",color:\"var(--token-4488deea-d28e-4b89-a68c-aef2f131822b, rgb(28, 28, 28))\",scale:1,transition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"}},iconOptions:{alignment:\"start\",color:\"var(--token-4488deea-d28e-4b89-a68c-aef2f131822b, rgb(28, 28, 28))\",size:16,type:\"Default\"},id:\"YlRRf8Fpx\",layoutId:\"YlRRf8Fpx\",srcFile:DqadtEyKq,srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:\"rgb(244, 244, 244)\",borderRadius:10,color:\"var(--token-4488deea-d28e-4b89-a68c-aef2f131822b, rgb(28, 28, 28))\",gap:5,padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10},text:rMJpXzciI,width:\"100%\"})})}),visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s4hy2f-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"lLFj2qMcY\",scopeId:\"tS2Z9Rl3A\",children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:300,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:\"rgb(251, 251, 250)\",color:\"var(--token-4488deea-d28e-4b89-a68c-aef2f131822b, rgb(28, 28, 28))\",scale:1,transition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"}},iconOptions:{alignment:\"start\",color:\"var(--token-4488deea-d28e-4b89-a68c-aef2f131822b, rgb(28, 28, 28))\",size:16,type:\"Default\"},id:\"lLFj2qMcY\",layoutId:\"lLFj2qMcY\",srcFile:VcNU1TbG7,srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:\"rgb(244, 244, 244)\",borderRadius:10,color:\"var(--token-4488deea-d28e-4b89-a68c-aef2f131822b, rgb(28, 28, 28))\",gap:5,padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10},text:pOz4T5kbW,width:\"100%\"})})}),visible8&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hun1e4-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DcL4Hs6oR\",scopeId:\"tS2Z9Rl3A\",children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:300,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:\"rgb(251, 251, 250)\",color:\"var(--token-4488deea-d28e-4b89-a68c-aef2f131822b, rgb(28, 28, 28))\",scale:1,transition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"}},iconOptions:{alignment:\"start\",color:\"var(--token-4488deea-d28e-4b89-a68c-aef2f131822b, rgb(28, 28, 28))\",size:16,type:\"Default\"},id:\"DcL4Hs6oR\",layoutId:\"DcL4Hs6oR\",srcFile:iKhLewoAX,srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:\"rgb(244, 244, 244)\",borderRadius:10,color:\"var(--token-4488deea-d28e-4b89-a68c-aef2f131822b, rgb(28, 28, 28))\",gap:5,padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10},text:znLiFXkiE,width:\"100%\"})})}),visible9&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oxzkl3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Ql73_XnRl\",scopeId:\"tS2Z9Rl3A\",children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"12px\",fontStyle:\"normal\",fontWeight:300,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:\"rgb(251, 251, 250)\",color:\"var(--token-4488deea-d28e-4b89-a68c-aef2f131822b, rgb(28, 28, 28))\",scale:1,transition:{damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"}},iconOptions:{alignment:\"start\",color:\"var(--token-4488deea-d28e-4b89-a68c-aef2f131822b, rgb(28, 28, 28))\",size:16,type:\"Default\"},id:\"Ql73_XnRl\",layoutId:\"Ql73_XnRl\",srcFile:Mb2zVyGY2,srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:\"rgb(244, 244, 244)\",borderRadius:10,color:\"var(--token-4488deea-d28e-4b89-a68c-aef2f131822b, rgb(28, 28, 28))\",gap:5,padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10},text:QOmQMpUTo,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n6jlw2\",\"data-framer-name\":\"Product Data\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fzvw4u\",\"data-framer-name\":\"Artikelnr\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-twj0sy\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.12px\",\"--framer-line-height\":\"14px\",\"--framer-text-color\":\"var(--token-4a7b8e81-3912-453a-8164-e6712285d1cf, rgb(131, 134, 138))\"},children:\"18 x 6 x 14 cm\"})}),className:\"framer-som0mn\",\"data-framer-name\":\"Taktyp\",fonts:[\"Inter\"],text:TMAt9qvWi,verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1n6ir7m\",\"data-framer-name\":\"Category:filtered\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wewkpu\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-s7kq2l\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-w44646\",\"data-styles-preset\":\"JManD67vQ\",style:{\"--framer-text-color\":\"var(--token-4488deea-d28e-4b89-a68c-aef2f131822b, rgb(0, 0, 0))\"},children:\"Beh\\xf6ver du n\\xe5got annat?\"})}),className:\"framer-hui9q2\",\"data-framer-name\":\"H2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cnajxc\",\"data-framer-name\":\"Product Grid\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-rq9lfe\",\"data-framer-name\":\"CMS: Collection\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"pl5H_RSB4\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"pl5H_RSB4\",name:\"esJEufCO4\",type:\"Identifier\"},{collection:\"pl5H_RSB4\",name:\"lVXuKYP25\",type:\"Identifier\"},{collection:\"pl5H_RSB4\",name:\"GLYoLi6pc\",type:\"Identifier\"},{collection:\"pl5H_RSB4\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"pl5H_RSB4\",name:\"GLYoLi6pc\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:GLYoLi6pc},type:\"BinaryOperation\"}}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({esJEufCO4:esJEufCO4pl5H_RSB4,GLYoLi6pc:GLYoLi6pcpl5H_RSB4,id:idpl5H_RSB4,lVXuKYP25:lVXuKYP25pl5H_RSB4},index)=>{lVXuKYP25pl5H_RSB4??=\"\";GLYoLi6pcpl5H_RSB4??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`pl5H_RSB4-${idpl5H_RSB4}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{lVXuKYP25:lVXuKYP25pl5H_RSB4},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{lVXuKYP25:lVXuKYP25pl5H_RSB4},webPageId:\"tS2Z9Rl3A\"},implicitPathVariables:undefined},{href:{pathVariables:{lVXuKYP25:lVXuKYP25pl5H_RSB4},webPageId:\"tS2Z9Rl3A\"},implicitPathVariables:undefined},{href:{pathVariables:{lVXuKYP25:lVXuKYP25pl5H_RSB4},webPageId:\"tS2Z9Rl3A\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GJZOVhYI1:{y:undefined},oNV4o7efb:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1360px) - 48px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:333,width:`max((max(min(${componentViewport?.width||\"100vw\"}, 1360px) - 64px, 1px) - 24px) / 2, 200px)`,y:(componentViewport?.y||0)+0+97+0+890.5+80+0+0+56+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hb2dnn-container\",nodeId:\"nGf82I6BV\",scopeId:\"tS2Z9Rl3A\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GJZOVhYI1:{hj8GOMVNp:resolvedLinks1[1],variant:\"Ya_dIcDFp\"},oNV4o7efb:{hj8GOMVNp:resolvedLinks1[2],variant:\"UyTWatPAI\"}},children:/*#__PURE__*/_jsx(ComponentProductCard,{Dam31cSZm:toResponsiveImage(esJEufCO4pl5H_RSB4),GgPNlQW0r:\"Alla taktyper\",height:\"100%\",hj8GOMVNp:resolvedLinks1[0],id:\"nGf82I6BV\",layoutId:\"nGf82I6BV\",style:{width:\"100%\"},variant:\"ea0LKL5O6\",Vls4N1ZMe:GLYoLi6pcpl5H_RSB4,width:\"100%\"})})})})})})})},idpl5H_RSB4);})})})})})})]})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MCcXNZTpD\"},implicitPathVariables:undefined},{href:{webPageId:\"MCcXNZTpD\"},implicitPathVariables:undefined},{href:{webPageId:\"MCcXNZTpD\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GJZOVhYI1:{y:undefined},oNV4o7efb:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:402,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+97+0+1463.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jt5z5-container\",nodeId:\"XluaYuat0\",scopeId:\"tS2Z9Rl3A\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GJZOVhYI1:{j3Q0WkuS1:resolvedLinks2[1]},oNV4o7efb:{j3Q0WkuS1:resolvedLinks2[2],variant:\"DJrdlpSE5\"}},children:/*#__PURE__*/_jsx(BlockKontakt,{height:\"100%\",id:\"XluaYuat0\",j3Q0WkuS1:resolvedLinks2[0],KuUq9FyjM:getLocalizedValue(\"v4\",activeLocale)??\"Kontakta oss\",layoutId:\"XluaYuat0\",sr7PbTTdq:getLocalizedValue(\"v3\",activeLocale)??\"Skicka ett meddelande och l\\xe5t oss g\\xf6ra skillnad tillsammans.\",style:{width:\"100%\"},variant:\"cpBGEfyo5\",width:\"100%\",yx96liwJv:getLocalizedValue(\"v2\",activeLocale)??\"Dags att bygga framtiden\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GJZOVhYI1:{y:undefined},oNV4o7efb:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:386,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+97+0+1865.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-150m7xf-container\",nodeId:\"jcufduELQ\",scopeId:\"tS2Z9Rl3A\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GJZOVhYI1:{variant:\"srLDAgFyt\"},oNV4o7efb:{variant:\"fmLuTvDOo\"}},children:/*#__PURE__*/_jsx(ComponentFooter,{height:\"100%\",id:\"jcufduELQ\",layoutId:\"jcufduELQ\",style:{width:\"100%\"},variant:\"MwsCALduy\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tY3nu.framer-91mo97, .framer-tY3nu .framer-91mo97 { display: block; }\",\".framer-tY3nu.framer-i73mfj { align-content: center; align-items: center; background-color: var(--token-96496d62-c517-482d-af2e-6211b5cf4453, #161616); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-tY3nu .framer-euujrv-container, .framer-tY3nu .framer-1jt5z5-container, .framer-tY3nu .framer-150m7xf-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-tY3nu .framer-1t201w7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tY3nu .framer-vmfk9q { --border-bottom-width: 1px; --border-color: var(--token-1f963d42-4feb-474f-bc9f-8d768116c40e, #eeeeee); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 160px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-tY3nu .framer-1x19581 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1360px; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 1px; z-index: 1; }\",\".framer-tY3nu .framer-1lrkteq { align-content: center; align-items: center; display: flex; flex: 1.25 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; min-height: 306px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-tY3nu .framer-18ioec8 { --border-bottom-width: 1px; --border-color: var(--token-1f963d42-4feb-474f-bc9f-8d768116c40e, #eeeeee); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.5 / 1; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; height: var(--framer-aspect-ratio-supported, 133px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-tY3nu .framer-5nq4fn, .framer-tY3nu .framer-1kdfi5n, .framer-tY3nu .framer-olz812 { aspect-ratio: 1.5 / 1; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; height: var(--framer-aspect-ratio-supported, 133px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-tY3nu .framer-j96vt, .framer-tY3nu .framer-dv5uaa { aspect-ratio: 0.49627791563275436 / 1; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; height: var(--framer-aspect-ratio-supported, 403px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-tY3nu .framer-vjsvwr { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 651px; justify-content: flex-start; overflow: visible; padding: 0px; position: sticky; top: 160px; width: 1px; z-index: 1; }\",\".framer-tY3nu .framer-1j2io8l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tY3nu .framer-1lnvpsc-container, .framer-tY3nu .framer-1lpioqb-container, .framer-tY3nu .framer-s4hy2f-container, .framer-tY3nu .framer-hun1e4-container, .framer-tY3nu .framer-1oxzkl3-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-tY3nu .framer-1akhkur { -webkit-user-select: none; flex: none; height: auto; pointer-events: none; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-tY3nu .framer-1sl1uou { --framer-paragraph-spacing: 16px; -webkit-user-select: none; flex: none; height: auto; pointer-events: none; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-tY3nu .framer-150al4j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 44px; overflow: hidden; padding: 4px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-tY3nu .framer-aaigwc { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 50px; overflow: hidden; padding: 15px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-tY3nu .framer-n6jlw2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tY3nu .framer-fzvw4u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tY3nu .framer-twj0sy { aspect-ratio: 1 / 1; background-color: var(--token-4a7b8e81-3912-453a-8164-e6712285d1cf, #83868a); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 2px); opacity: 0.4; overflow: hidden; position: relative; width: 2px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tY3nu .framer-som0mn { -webkit-user-select: none; flex: none; height: auto; opacity: 0.8; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-tY3nu .framer-1n6ir7m { align-content: center; align-items: center; background-color: var(--token-96496d62-c517-482d-af2e-6211b5cf4453, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-tY3nu .framer-1wewkpu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1360px; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-tY3nu .framer-s7kq2l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-tY3nu .framer-hui9q2 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-tY3nu .framer-cnajxc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tY3nu .framer-rq9lfe { display: grid; flex: 1 0 0px; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); height: min-content; justify-content: start; padding: 0px; position: relative; width: 1px; }\",\".framer-tY3nu .framer-1hb2dnn-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tY3nu.framer-i73mfj, .framer-tY3nu .framer-1t201w7, .framer-tY3nu .framer-vmfk9q, .framer-tY3nu .framer-1x19581, .framer-tY3nu .framer-1lrkteq, .framer-tY3nu .framer-vjsvwr, .framer-tY3nu .framer-1j2io8l, .framer-tY3nu .framer-150al4j, .framer-tY3nu .framer-aaigwc, .framer-tY3nu .framer-n6jlw2, .framer-tY3nu .framer-fzvw4u, .framer-tY3nu .framer-1n6ir7m, .framer-tY3nu .framer-1wewkpu, .framer-tY3nu .framer-s7kq2l, .framer-tY3nu .framer-cnajxc { gap: 0px; } .framer-tY3nu.framer-i73mfj > *, .framer-tY3nu .framer-1t201w7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-tY3nu.framer-i73mfj > :first-child, .framer-tY3nu .framer-1t201w7 > :first-child, .framer-tY3nu .framer-1lrkteq > :first-child, .framer-tY3nu .framer-vjsvwr > :first-child, .framer-tY3nu .framer-n6jlw2 > :first-child, .framer-tY3nu .framer-1n6ir7m > :first-child, .framer-tY3nu .framer-1wewkpu > :first-child { margin-top: 0px; } .framer-tY3nu.framer-i73mfj > :last-child, .framer-tY3nu .framer-1t201w7 > :last-child, .framer-tY3nu .framer-1lrkteq > :last-child, .framer-tY3nu .framer-vjsvwr > :last-child, .framer-tY3nu .framer-n6jlw2 > :last-child, .framer-tY3nu .framer-1n6ir7m > :last-child, .framer-tY3nu .framer-1wewkpu > :last-child { margin-bottom: 0px; } .framer-tY3nu .framer-vmfk9q > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-tY3nu .framer-vmfk9q > :first-child, .framer-tY3nu .framer-1x19581 > :first-child, .framer-tY3nu .framer-1j2io8l > :first-child, .framer-tY3nu .framer-150al4j > :first-child, .framer-tY3nu .framer-aaigwc > :first-child, .framer-tY3nu .framer-fzvw4u > :first-child, .framer-tY3nu .framer-s7kq2l > :first-child, .framer-tY3nu .framer-cnajxc > :first-child { margin-left: 0px; } .framer-tY3nu .framer-vmfk9q > :last-child, .framer-tY3nu .framer-1x19581 > :last-child, .framer-tY3nu .framer-1j2io8l > :last-child, .framer-tY3nu .framer-150al4j > :last-child, .framer-tY3nu .framer-aaigwc > :last-child, .framer-tY3nu .framer-fzvw4u > :last-child, .framer-tY3nu .framer-s7kq2l > :last-child, .framer-tY3nu .framer-cnajxc > :last-child { margin-right: 0px; } .framer-tY3nu .framer-1x19581 > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-tY3nu .framer-1lrkteq > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-tY3nu .framer-vjsvwr > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-tY3nu .framer-1j2io8l > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-tY3nu .framer-150al4j > *, .framer-tY3nu .framer-aaigwc > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-tY3nu .framer-n6jlw2 > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-tY3nu .framer-fzvw4u > *, .framer-tY3nu .framer-s7kq2l > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-tY3nu .framer-1n6ir7m > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-tY3nu .framer-1wewkpu > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-tY3nu .framer-cnajxc > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-tY3nu[data-border=\"true\"]::after, .framer-tY3nu [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; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-tY3nu.framer-i73mfj { width: 810px; } .framer-tY3nu .framer-euujrv-container { height: 97px; } .framer-tY3nu .framer-vmfk9q { padding: 140px 0px 64px 0px; } .framer-tY3nu .framer-1x19581 { flex-direction: column; gap: 32px; } .framer-tY3nu .framer-1lrkteq { align-content: unset; align-items: unset; display: grid; flex: none; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); min-height: 14px; order: 1; width: 100%; } .framer-tY3nu .framer-18ioec8, .framer-tY3nu .framer-5nq4fn, .framer-tY3nu .framer-1kdfi5n, .framer-tY3nu .framer-olz812, .framer-tY3nu .framer-j96vt, .framer-tY3nu .framer-dv5uaa { align-self: start; justify-self: start; } .framer-tY3nu .framer-vjsvwr { flex: none; height: min-content; order: 0; position: relative; top: unset; width: 100%; } .framer-tY3nu .framer-1j2io8l { order: 0; } .framer-tY3nu .framer-1akhkur { order: 1; } .framer-tY3nu .framer-1sl1uou { order: 3; } .framer-tY3nu .framer-150al4j { order: 2; } .framer-tY3nu .framer-aaigwc { order: 4; } .framer-tY3nu .framer-n6jlw2 { order: 5; } .framer-tY3nu .framer-1n6ir7m { padding: 64px 0px 64px 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tY3nu .framer-1x19581, .framer-tY3nu .framer-1lrkteq { gap: 0px; } .framer-tY3nu .framer-1x19581 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-tY3nu .framer-1x19581 > :first-child { margin-top: 0px; } .framer-tY3nu .framer-1x19581 > :last-child { margin-bottom: 0px; } .framer-tY3nu .framer-1lrkteq > *, .framer-tY3nu .framer-1lrkteq > :first-child, .framer-tY3nu .framer-1lrkteq > :last-child { margin: 0px; } }}\",\"@media (max-width: 809px) { .framer-tY3nu.framer-i73mfj { width: 390px; } .framer-tY3nu .framer-euujrv-container { height: 80px; } .framer-tY3nu .framer-vmfk9q { padding: 120px 0px 48px 0px; } .framer-tY3nu .framer-1x19581 { flex-direction: column; gap: 32px; } .framer-tY3nu .framer-1lrkteq { align-content: flex-start; align-items: flex-start; flex: none; min-height: 100px; order: 1; width: 100%; } .framer-tY3nu .framer-vjsvwr { flex: none; height: min-content; order: 0; position: relative; top: unset; width: 100%; } .framer-tY3nu .framer-1n6ir7m { padding: 36px 0px 36px 0px; } .framer-tY3nu .framer-1wewkpu { padding: 0px 24px 0px 24px; } .framer-tY3nu .framer-s7kq2l { gap: 4px; } .framer-tY3nu .framer-cnajxc { flex-direction: column; } .framer-tY3nu .framer-rq9lfe { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; width: 100%; } .framer-tY3nu .framer-1hb2dnn-container { align-self: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tY3nu .framer-1x19581, .framer-tY3nu .framer-s7kq2l, .framer-tY3nu .framer-cnajxc, .framer-tY3nu .framer-rq9lfe { gap: 0px; } .framer-tY3nu .framer-1x19581 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-tY3nu .framer-1x19581 > :first-child, .framer-tY3nu .framer-cnajxc > :first-child, .framer-tY3nu .framer-rq9lfe > :first-child { margin-top: 0px; } .framer-tY3nu .framer-1x19581 > :last-child, .framer-tY3nu .framer-cnajxc > :last-child, .framer-tY3nu .framer-rq9lfe > :last-child { margin-bottom: 0px; } .framer-tY3nu .framer-s7kq2l > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-tY3nu .framer-s7kq2l > :first-child { margin-left: 0px; } .framer-tY3nu .framer-s7kq2l > :last-child { margin-right: 0px; } .framer-tY3nu .framer-cnajxc > *, .framer-tY3nu .framer-rq9lfe > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2998\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"GJZOVhYI1\":{\"layout\":[\"fixed\",\"auto\"]},\"oNV4o7efb\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"OdSPWfUrf\":{\"pattern\":\":OdSPWfUrf\",\"name\":\"hero\"},\"lsQLycWc4\":{\"pattern\":\":lsQLycWc4\",\"name\":\"products\"}}\n * @framerResponsiveScreen\n */const FramertS2Z9Rl3A=withCSS(Component,css,\"framer-tY3nu\");export default FramertS2Z9Rl3A;FramertS2Z9Rl3A.displayName=\"Product\";FramertS2Z9Rl3A.defaultProps={height:2998,width:1200};addFonts(FramertS2Z9Rl3A,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/BkDpl4ghaqvMi1btKFyG2tdbec.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zAMK70AQRFSShJgUiaR5IiIhgzk.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/IETjvc5qzUaRoaruDpPSwCUM8.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/oLCoaT3ioA0fHdJnWR9W6k7NY.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/Sj0PCHQSBjFmEp6NBWg6FNaKc.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/v2q8JTTTs7McDMSEhnxAIBqd0.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/H4TfENUY1rh8R9UaSD6vngjJP3M.woff2\",weight:\"300\"}]},...ComponentNavbarFonts,...ButtonBackLinkFonts,...DownloadFonts,...ComponentProductCardFonts,...BlockKontaktFonts,...ComponentFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertS2Z9Rl3A\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"2998\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GJZOVhYI1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oNV4o7efb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"OdSPWfUrf\\\":{\\\"pattern\\\":\\\":OdSPWfUrf\\\",\\\"name\\\":\\\"hero\\\"},\\\"lsQLycWc4\\\":{\\\"pattern\\\":\\\":lsQLycWc4\\\",\\\"name\\\":\\\"products\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "g7BAA+I,IAAIA,GAAU,SAASA,EAAS,CAACA,EAAS,QAAW,UAAUA,EAAS,OAAU,QAAS,GAAGA,IAAWA,EAAS,CAAC,EAAE,EAAE,IAAIC,GAAS,SAASA,EAAQ,CAACA,EAAQ,OAAU,SAASA,EAAQ,IAAO,KAAM,GAAGA,IAAUA,EAAQ,CAAC,EAAE,EAE7W,IAAMC,GAAgB,mCACtB,SAASC,IAAsB,CAAC,OAAG,OAAO,SAAW,IAAmB,GAAiE,CAAC,CAA/C,SAAS,cAAcD,EAAe,CAAkB,CAYhI,SAARE,EAA0BC,EAAM,CAAC,GAAK,CAAC,aAAAC,EAAa,aAAAC,EAAa,YAAAC,CAAW,EAAEH,EAAW,CAAC,gBAAAI,EAAgB,MAAAC,EAAM,aAAAC,GAAa,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,IAAAC,CAAG,EAAEZ,EAAmBa,EAAuBhB,GAAqB,EAAMiB,EAAyBD,IAA2Bd,EAAM,UAAUJ,EAAQ,MAAImB,EAAYf,EAAM,QAAUA,EAAM,UAAUJ,EAAQ,SAAOmB,EAAYf,EAAM,UAAS,IAAMgB,EAAaR,EAAe,GAAGC,OAAgBC,OAAkBC,OAAmBC,MAAgB,GAAGL,MAAkBU,EAAQ,IAAI,CAAC,IAAIC,EAAIC,EAAK,GAAG,CAAChB,EAAY,OAAO,IAAMiB,EAAU,CAAC,MAAMjB,EAAY,YAAY,QAAQ,EAAE,EAAE,WAAW,CAAC,EAAE,OAAOA,EAAY,OAAOR,EAAS,SAAY,GAAAuB,EAAIf,EAAY,SAAS,MAAMe,IAAM,SAAcA,EAAI,KAAmBG,EAAK,MAAM,CAAC,MAAMD,EAAU,IAAM,GAAAD,EAAKhB,EAAY,SAAS,MAAMgB,IAAO,SAAcA,EAAK,KAAMhB,EAAY,MAAM,IAAI,OAAO,EAAEA,EAAY,MAAM,IAAI,gBAAgB,IAAIA,EAAY,MAAM,IAAI,MAAMA,EAAY,KAAK,OAAOA,EAAY,IAAI,CAAC,EAAgBkB,EAAK,MAAM,CAAC,MAAMD,EAAU,MAAM,6BAA6B,MAAMjB,EAAY,KAAK,OAAOA,EAAY,KAAK,KAAKA,EAAY,MAAM,QAAQ,cAAc,SAAuBkB,EAAK,OAAO,CAAC,EAAE,2NAA2N,CAAC,CAAC,CAAC,CAAE,EAAQC,EAAU,IAAQtB,EAAM,UAAUJ,EAAQ,KAAKI,EAAM,QAA0BA,EAAM,UAAUJ,EAAQ,QAAQI,EAAM,QAAc,UAAgB,OAAeuB,EAAYT,EAAuB,gBAAgB,sBAAsB,OAAqBU,EAAMC,EAAO,EAAE,CAAC,OAAO,SAAS,KAAKV,EAAY,SAAS,GAAK,MAAMQ,EAAY,MAAM,CAAC,IAAAV,EAAI,SAAS,GAAG,WAAW,EAAE,WAAW,QAAQ,WAAW,IAAI,MAAM,cAAc,GAAGb,EAAM,MAAM,GAAG0B,GAAa,GAAG1B,EAAM,YAAY,QAAQgB,EAAa,MAAMX,EAAM,gBAAgBD,EAAgB,aAAaE,GAAa,WAAW,OAAO,aAAaqB,GAAgB3B,EAAM,WAAW,EAAE,WAAW,SAAS,OAAOsB,EAAU,CAAC,EAAE,WAAWpB,EAAa,WAA6DA,GAAa,WAAW,SAAS,CAACe,EAAQ,EAAEjB,EAAM,IAAI,CAAC,CAAC,CAAE,CAAED,EAAS,YAAY,WAAW6B,GAAoB7B,EAAS,CAAC,KAAK,CAAC,MAAM,OAAO,KAAK8B,EAAY,OAAO,aAAa,UAAU,EAAE,QAAQ,CAAC,KAAKA,EAAY,KAAK,wBAAwB,GAAK,MAAM,SAAS,QAAQ,CAACjC,EAAQ,OAAOA,EAAQ,GAAG,CAAC,EAAE,OAAO,CAAC,KAAKiC,EAAY,OAAO,MAAM,IAAI,YAAY,iBAAiB,OAAO7B,GAAOA,EAAM,UAAUJ,EAAQ,MAAM,EAAE,QAAQ,CAAC,KAAKiC,EAAY,KAAK,MAAM,IAAI,iBAAiB,CAAC,EAAE,OAAO7B,GAAOA,EAAM,UAAUJ,EAAQ,GAAG,EAAE,YAAY,CAC7uF,KAAKiC,EAAY,KAAK,MAAM,OAAO,SAAS,UAAU,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,SAAS,GAAK,MAAM,OAAO,YAAY,cAAc,SAAS,CAAC,KAAK,CAAC,MAAM,OAAO,KAAKA,EAAY,KAAK,QAAQ,OAAO,OAAOlC,CAAQ,EAAE,aAAa,OAAO,OAAOA,CAAQ,EAAE,wBAAwB,EAAI,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKkC,EAAY,MAAM,aAAa,OAAO,OAAO7B,GAAOA,EAAM,OAAOL,EAAS,MAAM,EAAE,MAAM,CAAC,MAAM,OAAO,KAAKkC,EAAY,gBAAgB,iBAAiB,CAAC,MAAM,MAAM,KAAK,EAAE,OAAO7B,GAAOA,EAAM,OAAOL,EAAS,OAAO,EAAE,KAAK,CAAC,KAAKkC,EAAY,OAAO,eAAe,GAAK,IAAI,EAAE,aAAa,GAAG,IAAI,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,KAAK,wBAAwB,GAAK,QAAQ,CAAC,QAAQ,KAAK,EAAE,aAAa,CAAC,QAAQ,KAAK,CAAC,CAAC,CAAC,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,YAAY,eAAe,SAAS,CAAC,gBAAgB,CAAC,KAAKA,EAAY,MAAM,MAAM,OAAO,aAAa,MAAM,EAAE,MAAM,CAAC,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,eAAe,GAAK,aAAa,EAAE,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,aAAa,GAAG,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAc,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,IAAI,CAAC,MAAM,MAAM,KAAKA,EAAY,OAAO,eAAe,GAAK,aAAa,CAAC,CAAC,CAAC,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,YAAY,SAAS,SAAS,GAAK,SAAS,CAAC,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,GAAG,eAAe,GAAK,KAAK,IAAI,aAAa,GAAG,EAAE,gBAAgB,CAAC,KAAKA,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,SAAS,EAAI,EAAE,MAAM,CAAC,KAAKA,EAAY,MAAM,MAAM,QAAQ,aAAa,OAAO,SAAS,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,WAAW,MAAM,aAAa,aAAa,CAAC,KAAK,SAAS,UAAU,IAAI,QAAQ,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,IAAMH,GAAa,CAAC,QAAQ,OAAO,WAAW,SAAS,aAAa,SAAS,eAAe,MAAM,EAA2DC,GAAgBG,GAAqFA,GAAkB,UAA6BA,EAAkB,YAAY,OAAc,aAAiBA,EAAkB,YAAY,QAAe,WAAkB,SAAvI,OCfxlEC,EAAU,UAAU,CAAC,oBAAoB,oBAAoB,0BAA0B,yBAAyB,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,aAAa,OAAO,SAAS,MAAM,SAAS,IAAI,mGAAmG,OAAO,KAAK,EAAE,CAAC,OAAO,aAAa,OAAO,SAAS,MAAM,SAAS,IAAI,mGAAmG,OAAO,KAAK,EAAE,CAAC,OAAO,aAAa,OAAO,SAAS,MAAM,SAAS,IAAI,sGAAsG,OAAO,KAAK,EAAE,CAAC,OAAO,aAAa,OAAO,SAAS,MAAM,SAAS,IAAI,sGAAsG,OAAO,KAAK,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,kmCAAkmC,wpCAAwpC,opCAAopC,EAAeC,GAAU,eCDxwIC,EAAU,0BAA0B,CAAC,CAAC,EAAS,IAAMC,GAAM,CAAC,EAAeC,GAAI,CAAC,mlBAAmlB,EAAeC,GAAU,eCC5rBC,EAAU,UAAU,CAAC,oBAAoB,oBAAoB,0BAA0B,yBAAyB,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,aAAa,OAAO,SAAS,MAAM,SAAS,IAAI,mGAAmG,OAAO,KAAK,EAAE,CAAC,OAAO,aAAa,OAAO,SAAS,MAAM,SAAS,IAAI,mGAAmG,OAAO,KAAK,EAAE,CAAC,OAAO,aAAa,OAAO,SAAS,MAAM,SAAS,IAAI,sGAAsG,OAAO,KAAK,EAAE,CAAC,OAAO,aAAa,OAAO,SAAS,MAAM,SAAS,IAAI,sGAAsG,OAAO,KAAK,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,omCAAomC,0pCAA0pC,qpCAAqpC,EAAeC,GAAU,eCA7wI,IAAMC,GAAiB,CAAC,UAAU,IAAIC,GAAU,IAAI,OAAO,4BAAkB,CAAC,CAAC,EAAiB,SAARC,EAAmCC,EAAIC,EAAO,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAO,KAAK,EAAEF,CAAG,EAAE,GAAGG,EAAM,OAAOA,EAAOF,EAAOA,EAAO,SAAU,CAAC,SAASG,GAAQH,EAAO,CAAC,IAAMI,EAAS,CAAC,EAAE,KAAMJ,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMI,EAAQJ,EAAO,QAAQ,EAAKI,GAAQD,EAAS,KAAKC,CAAO,EAAGL,EAAOA,EAAO,SAAU,GAAGI,EAAS,OAAO,EAAE,OAAO,QAAQ,IAAIA,CAAQ,CAAE,CAAQ,SAASE,GAA0BN,EAAO,CAAC,IAAMO,EAAeJ,GAAQH,CAAM,EAAE,GAAGO,EAAe,MAAMA,CAAe,CCAoqC,IAAMC,GAAqBC,EAASC,EAAe,EAAQC,EAA+BC,GAA0BC,EAAK,EAAQC,GAAoBL,EAASM,EAAc,EAAQC,GAAcP,EAASQ,CAAQ,EAAQC,GAA0BT,EAASU,EAAoB,EAAQC,GAAkBX,EAASY,EAAY,EAAQC,GAAqBb,EAASc,EAAe,EAAQC,GAAY,CAAC,UAAU,6CAA6C,UAAU,qBAAqB,UAAU,qBAAqB,EAAoD,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,iBAAiB,EAAQC,EAAMC,GAAW,MAAM,QAAQA,CAAK,EAASA,EAAM,OAAO,EAA4BA,GAAQ,MAAMA,IAAQ,GAAWC,EAAkBD,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBE,GAAY,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,EAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,CAAC,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAU,CAAC,CAAC,MAAAC,EAAM,SAAAC,EAAS,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAKC,GAAaJ,CAAK,EAAE,OAAOE,EAASC,CAAI,CAAE,EAAQE,GAAU,CAAC,CAAC,MAAArB,CAAK,IAAoBsB,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOvB,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUwB,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,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,GAA6BC,GAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,EAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAQC,EAAqBC,GAAwB,EAAO,CAACC,CAAgB,EAAEzB,GAAa,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK0B,GAAS,KAAK,YAAY,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,CAAC,EAAE,MAAMC,GAAoCJ,EAAqB,WAAW,CAAC,CAAC,EAAQK,EAAwBC,GAAK,CAAC,GAAG,CAACJ,EAAiB,MAAM,IAAIK,GAAc,mCAAmC,KAAK,UAAUP,CAAoB,GAAG,EAAE,OAAOE,EAAiBI,CAAG,CAAE,EAAO,CAAC,MAAAE,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAUP,EAAwB,WAAW,EAAE,UAAAQ,EAAUR,EAAwB,WAAW,EAAE,UAAAS,EAAUT,EAAwB,WAAW,EAAE,UAAAU,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAUb,EAAwB,WAAW,GAAG,GAAG,UAAAc,EAAUd,EAAwB,WAAW,GAAG,GAAG,UAAAe,GAAUf,EAAwB,WAAW,EAAE,UAAAgB,GAAUhB,EAAwB,WAAW,GAAG,GAAG,UAAAiB,GAAUjB,EAAwB,WAAW,EAAE,UAAAkB,GAAUlB,EAAwB,WAAW,GAAG,GAAG,UAAAmB,GAAUnB,EAAwB,WAAW,EAAE,UAAAoB,GAAUpB,EAAwB,WAAW,GAAG,GAAG,UAAAqB,GAAUrB,EAAwB,WAAW,EAAE,UAAAsB,GAAUtB,EAAwB,WAAW,GAAG,GAAG,UAAAuB,GAAUvB,EAAwB,WAAW,GAAG,GAAG,mBAAAwB,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,GAAGC,EAAS,EAAEnD,GAASI,CAAK,EAAQgD,GAAU,IAAI,CAAC,IAAMC,EAASA,GAAiBjC,EAAiBP,CAAY,EAAE,GAAGwC,EAAS,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,GAAI,EAAE,CAAClC,EAAiBP,CAAY,CAAC,EAAQ0C,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiBjC,EAAiBP,CAAY,EAAE,SAAS,MAAMwC,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAACjC,EAAiBP,CAAY,CAAC,EAAE,GAAK,CAAC2C,EAAYC,EAAmB,EAAEC,GAA8B7B,EAAQ8B,GAAY,EAAK,EAAQC,GAAe,OAAuLC,GAAkBC,GAAG1F,GAAkB,GAAxL,CAAauD,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQoC,GAAUC,GAAkB,WAAW,EAAQC,GAAWxD,EAAO,IAAI,EAAQyD,GAAQ5F,EAAMwD,CAAS,EAAQqC,GAAS7F,EAAMyD,CAAS,EAAQqC,GAAS9F,EAAM0D,CAAS,EAAQqC,GAAS/F,EAAM2D,CAAS,EAAQqC,GAAShG,EAAM4D,CAAS,EAAQqC,GAASjG,EAAM6D,CAAS,EAAEqC,GAA0B3D,CAAY,EAAE,IAAM4D,GAAOC,GAAU,EAAQC,GAASrG,EAAMgE,EAAS,EAAQsC,GAAStG,EAAMkE,EAAS,EAAQqC,GAASvG,EAAMoE,EAAS,EAAQoC,GAASxG,EAAMsE,EAAS,EAAQmC,GAAWf,GAAkB,WAAW,EAAQgB,GAAWvE,EAAO,IAAI,EAAE,OAAAwE,GAAiB,CAAC,CAAC,EAAsBnF,EAAKoF,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAA7G,EAAiB,EAAE,SAAsB8G,EAAMC,GAAY,CAAC,GAAGxD,GAAUjB,EAAgB,SAAS,CAAcb,EAAKF,GAAU,CAAC,MAAM,+FAA+F,CAAC,EAAeuF,EAAME,EAAO,IAAI,CAAC,GAAGlC,GAAU,UAAUW,GAAGD,GAAkB,gBAAgBlC,CAAS,EAAE,IAAIjB,EAAW,MAAM,CAAC,GAAGgB,CAAK,EAAE,SAAS,CAAc5B,EAAKwF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,OAAO,GAAG,EAAE,MAAS,CAAC,EAAE,SAAsB1D,EAAKyF,EAA0B,CAAC,OAAO,GAAG,MAAMvE,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,SAAsBlB,EAAK0F,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB1F,EAAKwF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB1D,EAAK2F,GAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeN,EAAM,OAAO,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcrF,EAAKwF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAMxC,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAMA,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBlB,EAAK,SAAS,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ4F,GAA2B1E,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,MAAMA,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,UAAU,GAAG+C,GAAU,IAAIE,GAAK,SAAsBkB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAS,CAACjB,IAAsBpE,EAAKwF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,gBAAgBxC,GAAmB,OAAO,6CAA6C,GAAGxC,EAAkBsD,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,gBAAgBd,GAAmB,OAAO,iCAAiC,GAAGxC,EAAkBsD,CAAS,CAAC,CAAC,CAAC,EAAE,SAAsBhC,EAAK6F,EAA+B,CAAC,QAAQjH,GAAU,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQgH,GAA2B1E,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,KAAK,EAAE,MAAM,gBAAgBA,GAAmB,OAAO,8CAA8C,GAAGxC,EAAkBsD,CAAS,CAAC,EAAE,UAAU,iBAAiB,cAAc,GAAK,wBAAwB,UAAU,mBAAmB,gBAAgB,QAAQnD,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAEwF,IAAuBrE,EAAKwF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,gBAAgBxC,GAAmB,OAAO,6CAA6C,GAAGxC,EAAkBuD,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,gBAAgBf,GAAmB,OAAO,iCAAiC,GAAGxC,EAAkBuD,CAAS,CAAC,CAAC,CAAC,EAAE,SAAsBjC,EAAK6F,EAA+B,CAAC,QAAQ9G,GAAW,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ6G,GAA2B1E,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,MAAM,gBAAgBA,GAAmB,OAAO,8CAA8C,GAAGxC,EAAkBuD,CAAS,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,UAAU,QAAQpD,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAEyF,IAAuBtE,EAAKwF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,gBAAgBxC,GAAmB,OAAO,6CAA6C,GAAGxC,EAAkBwD,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,gBAAgBhB,GAAmB,OAAO,iCAAiC,GAAGxC,EAAkBwD,CAAS,CAAC,CAAC,CAAC,EAAE,SAAsBlC,EAAK6F,EAA+B,CAAC,QAAQ5G,GAAW,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ2G,GAA2B1E,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,MAAM,gBAAgBA,GAAmB,OAAO,8CAA8C,GAAGxC,EAAkBwD,CAAS,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,UAAU,QAAQrD,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE0F,IAAuBvE,EAAKwF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,gBAAgBxC,GAAmB,OAAO,6CAA6C,GAAGxC,EAAkByD,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,gBAAgBjB,GAAmB,OAAO,iCAAiC,GAAGxC,EAAkByD,CAAS,CAAC,CAAC,CAAC,EAAE,SAAsBnC,EAAK6F,EAA+B,CAAC,QAAQ1G,GAAW,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQyG,GAA2B1E,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,MAAM,gBAAgBA,GAAmB,OAAO,8CAA8C,GAAGxC,EAAkByD,CAAS,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,UAAU,QAAQtD,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE2F,IAAuBxE,EAAKwF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,gBAAgBxC,GAAmB,OAAO,6CAA6C,GAAGxC,EAAkB0D,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,gBAAgBlB,GAAmB,OAAO,iCAAiC,GAAGxC,EAAkB0D,CAAS,CAAC,CAAC,CAAC,EAAE,SAAsBpC,EAAK6F,EAA+B,CAAC,QAAQxG,GAAW,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQuG,GAA2B1E,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,MAAM,gBAAgBA,GAAmB,OAAO,8CAA8C,GAAGxC,EAAkB0D,CAAS,CAAC,EAAE,UAAU,eAAe,wBAAwB,QAAQ,mBAAmB,UAAU,QAAQvD,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE4F,IAAuBzE,EAAKwF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,gBAAgBxC,GAAmB,OAAO,6CAA6C,GAAGxC,EAAkB2D,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,gBAAgBnB,GAAmB,OAAO,iCAAiC,GAAGxC,EAAkB2D,CAAS,CAAC,CAAC,CAAC,EAAE,SAAsBrC,EAAK6F,EAA+B,CAAC,QAAQtG,GAAW,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQqG,GAA2B1E,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,MAAM,gBAAgBA,GAAmB,OAAO,8CAA8C,GAAGxC,EAAkB2D,CAAS,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,UAAU,QAAQxD,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewG,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcrF,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAsBA,EAAK8F,EAAa,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,CAAC,EAAE,SAASC,GAA4B/F,EAAKyF,EAA0B,CAAC,SAAsBzF,EAAK0F,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB1F,EAAKwF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUqC,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsB/F,EAAKgG,GAAe,CAAC,UAAU,GAAK,OAAO,OAAO,UAAUD,EAAc,CAAC,EAAE,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,UAAUE,EAAkB,KAAKlF,CAAY,GAAG,WAAW,MAAM,OAAO,UAAU,EAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKkG,EAAS,CAAC,sBAAsB,GAAK,SAAsBlG,EAAWmG,EAAS,CAAC,SAAsBnG,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,MAAM,CAAC,OAAO,EAAE,KAAKsC,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetC,EAAKkG,EAAS,CAAC,sBAAsB,GAAK,SAAS3D,EAAU,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,wBAAwB,CAAC,EAAE,+BAA+B,GAAG,8BAA8B,GAAG,+BAA+B,GAAG,8BAA8B,EAAE,8BAA8B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeqF,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAACR,IAAuB7E,EAAKyF,EAA0B,CAAC,SAAsBzF,EAAK0F,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB1F,EAAKoG,EAAS,CAAC,YAAY,CAAC,WAAW,2CAA2C,SAAS,OAAO,UAAU,SAAS,WAAW,IAAI,cAAc,MAAM,WAAW,KAAK,EAAE,OAAO,OAAO,aAAa,CAAC,gBAAgB,qBAAqB,MAAM,qEAAqE,MAAM,EAAE,WAAW,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAE,YAAY,CAAC,UAAU,QAAQ,MAAM,qEAAqE,KAAK,GAAG,KAAK,SAAS,EAAE,GAAG,YAAY,SAAS,YAAY,QAAQ5D,GAAU,QAAQ,SAAS,OAAO,GAAG,aAAa,CAAC,gBAAgB,qBAAqB,aAAa,GAAG,MAAM,qEAAqE,IAAI,EAAE,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,EAAE,EAAE,KAAKC,GAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqC,IAAuB9E,EAAKyF,EAA0B,CAAC,SAAsBzF,EAAK0F,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB1F,EAAKoG,EAAS,CAAC,YAAY,CAAC,WAAW,2CAA2C,SAAS,OAAO,UAAU,SAAS,WAAW,IAAI,cAAc,MAAM,WAAW,KAAK,EAAE,OAAO,OAAO,aAAa,CAAC,gBAAgB,qBAAqB,MAAM,qEAAqE,MAAM,EAAE,WAAW,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAE,YAAY,CAAC,UAAU,QAAQ,MAAM,qEAAqE,KAAK,GAAG,KAAK,SAAS,EAAE,GAAG,YAAY,SAAS,YAAY,QAAQ1D,GAAU,QAAQ,SAAS,OAAO,GAAG,aAAa,CAAC,gBAAgB,qBAAqB,aAAa,GAAG,MAAM,qEAAqE,IAAI,EAAE,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,EAAE,EAAE,KAAKC,GAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoC,IAAuB/E,EAAKyF,EAA0B,CAAC,SAAsBzF,EAAK0F,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB1F,EAAKoG,EAAS,CAAC,YAAY,CAAC,WAAW,2CAA2C,SAAS,OAAO,UAAU,SAAS,WAAW,IAAI,cAAc,MAAM,WAAW,KAAK,EAAE,OAAO,OAAO,aAAa,CAAC,gBAAgB,qBAAqB,MAAM,qEAAqE,MAAM,EAAE,WAAW,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAE,YAAY,CAAC,UAAU,QAAQ,MAAM,qEAAqE,KAAK,GAAG,KAAK,SAAS,EAAE,GAAG,YAAY,SAAS,YAAY,QAAQxD,GAAU,QAAQ,SAAS,OAAO,GAAG,aAAa,CAAC,gBAAgB,qBAAqB,aAAa,GAAG,MAAM,qEAAqE,IAAI,EAAE,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,EAAE,EAAE,KAAKC,GAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmC,IAAuBhF,EAAKyF,EAA0B,CAAC,SAAsBzF,EAAK0F,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB1F,EAAKoG,EAAS,CAAC,YAAY,CAAC,WAAW,2CAA2C,SAAS,OAAO,UAAU,SAAS,WAAW,IAAI,cAAc,MAAM,WAAW,KAAK,EAAE,OAAO,OAAO,aAAa,CAAC,gBAAgB,qBAAqB,MAAM,qEAAqE,MAAM,EAAE,WAAW,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAE,YAAY,CAAC,UAAU,QAAQ,MAAM,qEAAqE,KAAK,GAAG,KAAK,SAAS,EAAE,GAAG,YAAY,SAAS,YAAY,QAAQtD,GAAU,QAAQ,SAAS,OAAO,GAAG,aAAa,CAAC,gBAAgB,qBAAqB,aAAa,GAAG,MAAM,qEAAqE,IAAI,EAAE,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,EAAE,EAAE,KAAKC,GAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAsBqF,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAcrF,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,CAAC,EAAeA,EAAKkG,EAAS,CAAC,sBAAsB,GAAK,SAAsBlG,EAAWmG,EAAS,CAAC,SAAsBnG,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,MAAM,CAAC,OAAO,EAAE,KAAKgD,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehD,EAAK,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,oBAAoB,GAAGiF,GAAW,IAAIC,GAAK,SAAsBG,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcrF,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKkG,EAAS,CAAC,sBAAsB,GAAK,SAASD,EAAkB,KAAKlF,CAAY,GAAgBf,EAAWmG,EAAS,CAAC,SAAsBnG,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iEAAiE,EAAE,SAAS,+BAA+B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,KAAK,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,SAAsBA,EAAKqG,GAAmB,CAAC,SAAsBrG,EAAKR,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK+B,GAAS,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,SAAS,MAAM,KAAK,iBAAiB,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAMe,CAAS,EAAE,KAAK,iBAAiB,CAAC,CAAC,EAAE,SAAS,CAACgE,EAAWC,EAAeC,KAAwBxG,EAAKyG,GAAU,CAAC,SAASH,GAAY,IAAI,CAAC,CAAC,UAAUrD,GAAmB,UAAUE,GAAmB,GAAGC,GAAY,UAAUF,CAAkB,EAAEwD,MAASxD,IAAqB,GAAGC,KAAqB,GAAuBnD,EAAKsF,GAAY,CAAC,GAAG,aAAalC,KAAc,SAAsBpD,EAAK2G,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUzD,CAAkB,EAAE,SAAsBlD,EAAK8F,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU5C,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAAS0D,GAA6B5G,EAAKwF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,MAAM,YAAYxC,GAAmB,OAAO,2BAA2B,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKyF,EAA0B,CAAC,OAAO,IAAI,MAAM,gBAAgBvE,GAAmB,OAAO,oDAAoD,GAAGA,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,MAAM,GAAG,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,SAAsBlB,EAAK0F,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB1F,EAAKwF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUkD,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsB5G,EAAK6G,GAAqB,CAAC,UAAUnI,EAAkBuE,EAAkB,EAAE,UAAU,gBAAgB,OAAO,OAAO,UAAU2D,EAAe,CAAC,EAAE,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAUzD,GAAmB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEC,EAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepD,EAAK8F,EAAa,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,CAAC,EAAE,SAASgB,GAA6B9G,EAAKwF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsB1D,EAAKyF,EAA0B,CAAC,OAAO,IAAI,MAAMvE,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,OAAO,SAAsBlB,EAAK0F,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB1F,EAAKwF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUoD,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsB9G,EAAK+G,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUD,EAAe,CAAC,EAAE,UAAUb,EAAkB,KAAKlF,CAAY,GAAG,eAAe,SAAS,YAAY,UAAUkF,EAAkB,KAAKlF,CAAY,GAAG,qEAAqE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUkF,EAAkB,KAAKlF,CAAY,GAAG,0BAA0B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKwF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsB1D,EAAKyF,EAA0B,CAAC,OAAO,IAAI,MAAMvE,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,OAAO,SAAsBlB,EAAK0F,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB1F,EAAKwF,EAAkB,CAAC,WAAW9B,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB1D,EAAKgH,GAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehH,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiH,GAAI,CAAC,kFAAkF,gFAAgF,sVAAsV,yLAAyL,oRAAoR,weAAwe,yUAAyU,ySAAyS,2jBAA2jB,0aAA0a,0ZAA0Z,8SAA8S,kRAAkR,2QAA2Q,yOAAyO,2QAA2Q,qTAAqT,wUAAwU,8QAA8Q,gRAAgR,6bAA6b,4KAA4K,iXAAiX,sTAAsT,uRAAuR,8JAA8J,yRAAyR,0PAA0P,iJAAiJ,uzGAAuzG,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,gcAAgc,uuDAAuuD,k+DAAk+D,EAWts6CC,EAAgBC,GAAQ5G,GAAU0G,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,UAAUA,EAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGI,GAAqB,GAAGC,GAAoB,GAAGC,GAAc,GAAGC,GAA0B,GAAGC,GAAkB,GAAGC,GAAqB,GAAGC,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC/uH,IAAMC,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,4BAA8B,OAAO,sBAAwB,OAAO,yBAA2B,QAAQ,oCAAsC,4JAA0L,qBAAuB,8GAAkI,uBAAyB,GAAG,6BAA+B,OAAO,qBAAuB,OAAO,yBAA2B,OAAO,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["IconType", "SrcType", "metaTagSelector", "isPublishedSiteOrSSG", "Download", "props", "styleOptions", "hoverOptions", "iconOptions", "backgroundColor", "color", "borderRadius", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "gap", "isInPublishedSiteOrSSG", "downloadURL", "paddingValue", "getIcon", "ref", "ref1", "iconStyle", "p", "getCursor", "buttonTitle", "u", "motion", "buttonStyles", "flexAlignSwitch", "addPropertyControls", "ControlType", "fontControlStyles", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "ComponentNavbarFonts", "getFonts", "HpjRpKcZa_default", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "ButtonBackLinkFonts", "K0IhmAYp6_default", "DownloadFonts", "Download", "ComponentProductCardFonts", "BfiU6Ydyp_default", "BlockKontaktFonts", "cqamu8ShE_default", "ComponentFooterFonts", "mfBXrkaSs_default", "breakpoints", "serializationHash", "variantClassNames", "isSet", "value", "toResponsiveImage", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "animation5", "transition6", "animation6", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "xc9ugaadL_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "esJEufCO4", "fiM6oHHew", "tGjUDIBhS", "OzWvj6mUP", "eNxefkKh7", "Lo9fJSDTo", "GLYoLi6pc", "h1gHZV6M6", "DqadtEyKq", "rMJpXzciI", "VcNU1TbG7", "pOz4T5kbW", "iKhLewoAX", "znLiFXkiE", "Mb2zVyGY2", "QOmQMpUTo", "TMAt9qvWi", "esJEufCO4pl5H_RSB4", "lVXuKYP25pl5H_RSB4", "GLYoLi6pcpl5H_RSB4", "idpl5H_RSB4", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "visible", "visible1", "visible2", "visible3", "visible4", "visible5", "usePreloadLocalizedValues", "router", "useRouter", "visible6", "visible7", "visible8", "visible9", "elementId1", "ref2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "HpjRpKcZa_default", "getLoadingLazyAtYPosition", "ImageWithOptimizedAppearEffect", "ResolveLinks", "resolvedLinks", "K0IhmAYp6_default", "getLocalizedValue", "RichText2", "x", "Download", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks1", "BfiU6Ydyp_default", "resolvedLinks2", "cqamu8ShE_default", "mfBXrkaSs_default", "css", "FramertS2Z9Rl3A", "withCSS", "tS2Z9Rl3A_default", "addFonts", "ComponentNavbarFonts", "ButtonBackLinkFonts", "DownloadFonts", "ComponentProductCardFonts", "BlockKontaktFonts", "ComponentFooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
