{"version":3,"file":"CQp45HOmKs0gKs-UUPz_VJNabTBWzNo3xwfgVHku3yo.pa5VkexF.mjs","names":["serializationHash","variantClassNames","transition1","humanReadableVariantMap","getProps","Component","className","Image","css","HeaderAnnouncementBar","HeaderHeaderMobile","HeaderHeaderDesktop","HeaderHeaderDesktopInfo","SectionPageTitle","Filter","YouTube","Partners","NewFooter","useRef","metadata","metadataProvider","className","PropertyOverrides","Image"],"sources":["https:/framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js","https:/framerusercontent.com/modules/j0zPwxql9jdZrCG60dr8/IldyivSDJE6F615BouEL/rxOPCkSYc.js","https:/framerusercontent.com/modules/NIzlDBnJhXzG0SgvXOZd/7sqnMZOUbOP7mzEwxuF0/sCdAtqIr1.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 (508aa67)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/ISGYOU5xv78YH3tjvjmU/PlpN2eYphj213COdCkEb/P_zY2XGRU.js\";const cycleOrder=[\"Jm6KsrM1U\",\"AqWfDvNXj\",\"UsRTnqsPa\"];const serializationHash=\"framer-ebqzx\";const variantClassNames={AqWfDvNXj:\"framer-v-pztpjt\",Jm6KsrM1U:\"framer-v-i4qphd\",UsRTnqsPa:\"framer-v-f4x058\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Partner Desktop\":\"Jm6KsrM1U\",\"Partner Mobile\":\"UsRTnqsPa\",\"Partner Tablet\":\"AqWfDvNXj\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"Jm6KsrM1U\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Jm6KsrM1U\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"UsRTnqsPa\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"UsRTnqsPa\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-i4qphd\",className,classNames),\"data-framer-name\":\"Partner Desktop\",layoutDependency:layoutDependency,layoutId:\"Jm6KsrM1U\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({AqWfDvNXj:{\"data-framer-name\":\"Partner Tablet\"},UsRTnqsPa:{\"data-framer-name\":\"Partner Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12dmuwa\",layoutDependency:layoutDependency,layoutId:\"oq2MxYVBm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-wsmaoz\",\"data-styles-preset\":\"P_zY2XGRU\",children:\"Our Partners\"})}),className:\"framer-xqp93a\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ifmRKzPmC\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b6g7od\",layoutDependency:layoutDependency,layoutId:\"SnPyTupYJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xrtmg5\",layoutDependency:layoutDependency,layoutId:\"g_wHUb3kP\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ikxk3e\",layoutDependency:layoutDependency,layoutId:\"eTpNZI_cv\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/91uEPrNqYepdL7WU4XBJNfOEI.png\"},className:\"framer-11wyw3s\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"zHTx8yzK7\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2txb6l\",layoutDependency:layoutDependency,layoutId:\"wILgtC7el\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/jVRkfwj6M6QXs6pfNSjBhx7XBb4.png\"},className:\"framer-1v9qhbr\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"hc6rTwz8X\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16mguff\",layoutDependency:layoutDependency,layoutId:\"fekF_El8n\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/oJgpcQVIBgqKBW0In7t9r9DFOSk.png\"},className:\"framer-qhnteq\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"awBGdo0M1\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gmod2r\",layoutDependency:layoutDependency,layoutId:\"EtwpT7mx4\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b4e8yl\",layoutDependency:layoutDependency,layoutId:\"TYxWL1fHZ\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/LnndwNUgVw2MHqxnB8hgfX0IZM.png\"},className:\"framer-qn98hw\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"zYnId1NqD\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1149970\",layoutDependency:layoutDependency,layoutId:\"YWcDT79dp\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/psQvXbPFOTgtH28jioc0FYcN55k.png\"},className:\"framer-1h1ffmp\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"e6ozIL9Z_\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mwuel7\",layoutDependency:layoutDependency,layoutId:\"SdHUP4fwv\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/FUdJI3QDjEpXIlPBPZF8efe78A.png\"},className:\"framer-hqv7z4\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"KC2619ETj\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dp1707\",layoutDependency:layoutDependency,layoutId:\"ozzhA6FoE\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kktcwh\",layoutDependency:layoutDependency,layoutId:\"TJG84tfx6\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/mmk18L2n8BX22tORATcLaAjEXqE.png\"},className:\"framer-1lnmn5\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"FbbwiqNYJ\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o8lmaz\",layoutDependency:layoutDependency,layoutId:\"pKAeHNwmN\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/c5HUpaFsioPJu5GaSf3V3lKIbo.png\"},className:\"framer-1klv3z2\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"IIa6CaiBH\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-m2qec6\",layoutDependency:layoutDependency,layoutId:\"UAT_9ePnv\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/ejI08X4Q2Xa9NSWCu2P8MlLqo.png\"},className:\"framer-hwn7vr\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"Ei5_rUtJD\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n310qd\",layoutDependency:layoutDependency,layoutId:\"R_pS1hcqp\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pqvcrr\",layoutDependency:layoutDependency,layoutId:\"qaoVW5ltT\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4TYedLSW2tbowBshFi3u8CpFD5k.png\"},className:\"framer-1x9ey4b\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"MItmcul9H\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-m3cqka\",layoutDependency:layoutDependency,layoutId:\"oMIQIxgeu\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OmteQJSwK42rdSlXUtnPI3Fk5eo.png\"},className:\"framer-tpqt66\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"HgpwclJix\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1id20ac\",layoutDependency:layoutDependency,layoutId:\"GjDshCFKA\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/l7Qp25R3pp7b1iy8i3HtGJPFGAg.png\"},className:\"framer-t8s41z\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"UVqByoA0q\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-128xml3\",layoutDependency:layoutDependency,layoutId:\"LGDHtAKYu\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wb2m0p\",layoutDependency:layoutDependency,layoutId:\"NdmTaRDQZ\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/BPZjhAqmdpNfhgJ8x82cSg62pVA.png\"},className:\"framer-1efxtv7\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"tx9ju_060\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ci4u2m\",layoutDependency:layoutDependency,layoutId:\"Q9g6qx9w8\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Gv95MUVSZ2ZSA0n4AFHSgaSQ.png\"},className:\"framer-1txeew1\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"fecvyeY6Y\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-iz0w6w\",layoutDependency:layoutDependency,layoutId:\"X4TNxXK13\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/JAlZeFMR3MokE5ehi1r00RpW2dA.png\"},className:\"framer-1nv3tst\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"aXYdwQCX9\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d35lj5\",layoutDependency:layoutDependency,layoutId:\"ElLAMMeNG\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1emb1lg\",layoutDependency:layoutDependency,layoutId:\"czRfghjVb\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/EcNh5SdCC2Uh3b6aS7ztBkM0.png\"},className:\"framer-gq4mye\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"R0DZAwSvV\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bx92ry\",layoutDependency:layoutDependency,layoutId:\"njPLPklI3\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/mSMtodrz4RdqwQtsSYVICsPAM74.png\"},className:\"framer-1ilh6ya\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"rVohu_ukQ\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4u7my0\",layoutDependency:layoutDependency,layoutId:\"DZPfIbXGU\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/0j6iBRctHFtu1HM4nZ5hHXd8Fwo.png\"},className:\"framer-1tvnuzm\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"k0n6j2RMN\"})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wam7fu\",layoutDependency:layoutDependency,layoutId:\"l7JGAf97U\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.dbaudio.com/\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1bun8zf framer-r3wpd7\",layoutDependency:layoutDependency,layoutId:\"LzOtjpZuJ\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/91uEPrNqYepdL7WU4XBJNfOEI.png\"},className:\"framer-sy0swi\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"SHxwVIdzI\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://digico.biz/\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-12elvad framer-r3wpd7\",layoutDependency:layoutDependency,layoutId:\"uoCG1ugvN\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/oJgpcQVIBgqKBW0In7t9r9DFOSk.png\"},className:\"framer-1wsi548\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"srZhcDA64\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.yamaha.com/2/proaudio/\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1latqw3 framer-r3wpd7\",layoutDependency:layoutDependency,layoutId:\"Yu7PX12Qm\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/psQvXbPFOTgtH28jioc0FYcN55k.png\"},className:\"framer-ghe12t\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"tOpmaxaqN\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.l-acoustics.com/\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-tdyje9 framer-r3wpd7\",layoutDependency:layoutDependency,layoutId:\"tBzG05xV8\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/jVRkfwj6M6QXs6pfNSjBhx7XBb4.png\"},className:\"framer-c6g415\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"qKgaVV00E\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.riedel.net/en/\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-187crt5 framer-r3wpd7\",layoutDependency:layoutDependency,layoutId:\"VGBAJ0rg_\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:150,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/LnndwNUgVw2MHqxnB8hgfX0IZM.png\"},className:\"framer-1pep879\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"vvubZEb_K\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.avid.com/\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-iucgr4 framer-r3wpd7\",layoutDependency:layoutDependency,layoutId:\"GBH3OwI0Z\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/FUdJI3QDjEpXIlPBPZF8efe78A.png\"},className:\"framer-okj6dz\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"YgqA_RzMX\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3676pm\",layoutDependency:layoutDependency,layoutId:\"nSDuEwyU2\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.shure.com/\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-z1xkea framer-r3wpd7\",layoutDependency:layoutDependency,layoutId:\"QwkDWSmG3\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/mmk18L2n8BX22tORATcLaAjEXqE.png\"},className:\"framer-8cskr4\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"eGplU6xGR\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://en-us.sennheiser.com/\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1dpo872 framer-r3wpd7\",layoutDependency:layoutDependency,layoutId:\"gPfq2iPQC\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/c5HUpaFsioPJu5GaSf3V3lKIbo.png\"},className:\"framer-10bpyj1\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"BsNsTtBEk\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.elationlighting.com/\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-zpvdm9 framer-r3wpd7\",layoutDependency:layoutDependency,layoutId:\"KJ6aiwYCa\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/ejI08X4Q2Xa9NSWCu2P8MlLqo.png\"},className:\"framer-1cbyv2i\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"rLUAuDnIe\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.chauvetlighting.com/\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-3rr5zn framer-r3wpd7\",layoutDependency:layoutDependency,layoutId:\"dmkaT8Gl4\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4TYedLSW2tbowBshFi3u8CpFD5k.png\"},className:\"framer-1ieqp45\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"lPESjgzGk\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.malighting.com/\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-mtqud0 framer-r3wpd7\",layoutDependency:layoutDependency,layoutId:\"mCsllsE6S\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OmteQJSwK42rdSlXUtnPI3Fk5eo.png\"},className:\"framer-c0i6yq\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"HJXN1tfSR\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.robelighting.com/\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1ii6nz6 framer-r3wpd7\",layoutDependency:layoutDependency,layoutId:\"U5W_txbRO\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/l7Qp25R3pp7b1iy8i3HtGJPFGAg.png\"},className:\"framer-9bhdc2\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"nLC0Bm9oo\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sh9ipb\",layoutDependency:layoutDependency,layoutId:\"Gw7hXcDRQ\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://tylertruss.com/\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1rqmfmt framer-r3wpd7\",layoutDependency:layoutDependency,layoutId:\"EwpIZdAdY\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/BPZjhAqmdpNfhgJ8x82cSg62pVA.png\"},className:\"framer-111qduu\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"K1h7hz02p\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.roevisual.com/us-en/\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-11ysman framer-r3wpd7\",layoutDependency:layoutDependency,layoutId:\"DGCJO0QZP\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Gv95MUVSZ2ZSA0n4AFHSgaSQ.png\"},className:\"framer-1xzpazf\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"DPX8fYgoG\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.bromptontech.com/\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1wptsyu framer-r3wpd7\",layoutDependency:layoutDependency,layoutId:\"VK6P_ynIx\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/JAlZeFMR3MokE5ehi1r00RpW2dA.png\"},className:\"framer-1hqbwly\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"qxmleyzsH\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://showsdt.com/\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-o2pmls framer-r3wpd7\",layoutDependency:layoutDependency,layoutId:\"iPytHcWLU\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/EcNh5SdCC2Uh3b6aS7ztBkM0.png\"},className:\"framer-1kv5tgl\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"UkLrp42QF\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.kinesys.com/\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1aztue9 framer-r3wpd7\",layoutDependency:layoutDependency,layoutId:\"ym880BK50\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/mSMtodrz4RdqwQtsSYVICsPAM74.png\"},className:\"framer-1ar3gmd\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"o50XJ0Vu_\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.motionlabs.com/\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1x2mum framer-r3wpd7\",layoutDependency:layoutDependency,layoutId:\"CtlA5dXSG\",style:{backgroundColor:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:225,intrinsicWidth:300,pixelHeight:225,pixelWidth:300,src:\"https://framerusercontent.com/images/0j6iBRctHFtu1HM4nZ5hHXd8Fwo.png\"},className:\"framer-1wf6ief\",\"data-framer-name\":\"$4_Riedel\",layoutDependency:layoutDependency,layoutId:\"x8eon1EET\"})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ebqzx.framer-r3wpd7, .framer-ebqzx .framer-r3wpd7 { display: block; }\",\".framer-ebqzx.framer-i4qphd { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 60px 60px 60px; position: relative; width: 1440px; }\",\".framer-ebqzx .framer-12dmuwa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ebqzx .framer-xqp93a { flex: none; height: 86px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ebqzx .framer-b6g7od { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ebqzx .framer-xrtmg5, .framer-ebqzx .framer-1gmod2r, .framer-ebqzx .framer-dp1707, .framer-ebqzx .framer-1n310qd, .framer-ebqzx .framer-128xml3, .framer-ebqzx .framer-1d35lj5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: auto; justify-content: space-between; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ebqzx .framer-1ikxk3e, .framer-ebqzx .framer-2txb6l, .framer-ebqzx .framer-16mguff, .framer-ebqzx .framer-1b4e8yl, .framer-ebqzx .framer-1149970, .framer-ebqzx .framer-1mwuel7, .framer-ebqzx .framer-1kktcwh, .framer-ebqzx .framer-o8lmaz, .framer-ebqzx .framer-m2qec6, .framer-ebqzx .framer-1pqvcrr, .framer-ebqzx .framer-m3cqka, .framer-ebqzx .framer-1id20ac, .framer-ebqzx .framer-1wb2m0p, .framer-ebqzx .framer-ci4u2m, .framer-ebqzx .framer-iz0w6w, .framer-ebqzx .framer-1emb1lg, .framer-ebqzx .framer-1bx92ry, .framer-ebqzx .framer-4u7my0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: auto; will-change: var(--framer-will-change-override, transform); }\",\".framer-ebqzx .framer-11wyw3s, .framer-ebqzx .framer-1v9qhbr, .framer-ebqzx .framer-qhnteq, .framer-ebqzx .framer-qn98hw, .framer-ebqzx .framer-1h1ffmp, .framer-ebqzx .framer-hqv7z4, .framer-ebqzx .framer-1lnmn5, .framer-ebqzx .framer-1klv3z2, .framer-ebqzx .framer-hwn7vr, .framer-ebqzx .framer-1x9ey4b, .framer-ebqzx .framer-tpqt66, .framer-ebqzx .framer-t8s41z, .framer-ebqzx .framer-1efxtv7, .framer-ebqzx .framer-1txeew1, .framer-ebqzx .framer-1nv3tst, .framer-ebqzx .framer-gq4mye, .framer-ebqzx .framer-1ilh6ya, .framer-ebqzx .framer-1tvnuzm, .framer-ebqzx .framer-sy0swi, .framer-ebqzx .framer-1wsi548, .framer-ebqzx .framer-ghe12t, .framer-ebqzx .framer-c6g415, .framer-ebqzx .framer-1pep879, .framer-ebqzx .framer-okj6dz, .framer-ebqzx .framer-8cskr4, .framer-ebqzx .framer-10bpyj1, .framer-ebqzx .framer-1cbyv2i, .framer-ebqzx .framer-1ieqp45, .framer-ebqzx .framer-c0i6yq, .framer-ebqzx .framer-9bhdc2, .framer-ebqzx .framer-111qduu, .framer-ebqzx .framer-1xzpazf, .framer-ebqzx .framer-1hqbwly, .framer-ebqzx .framer-1kv5tgl, .framer-ebqzx .framer-1ar3gmd, .framer-ebqzx .framer-1wf6ief { flex: none; height: 36px; overflow: visible; position: relative; width: 83px; }\",\".framer-ebqzx .framer-1wam7fu, .framer-ebqzx .framer-3676pm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ebqzx .framer-1bun8zf, .framer-ebqzx .framer-12elvad, .framer-ebqzx .framer-1latqw3, .framer-ebqzx .framer-tdyje9, .framer-ebqzx .framer-187crt5, .framer-ebqzx .framer-z1xkea, .framer-ebqzx .framer-1dpo872, .framer-ebqzx .framer-zpvdm9, .framer-ebqzx .framer-3rr5zn, .framer-ebqzx .framer-mtqud0, .framer-ebqzx .framer-1rqmfmt, .framer-ebqzx .framer-11ysman, .framer-ebqzx .framer-1wptsyu, .framer-ebqzx .framer-o2pmls, .framer-ebqzx .framer-1aztue9, .framer-ebqzx .framer-1x2mum { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ebqzx .framer-iucgr4, .framer-ebqzx .framer-1ii6nz6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; text-decoration: none; width: 16%; will-change: var(--framer-will-change-override, transform); }\",\".framer-ebqzx .framer-sh9ipb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ebqzx.framer-i4qphd, .framer-ebqzx .framer-12dmuwa, .framer-ebqzx .framer-b6g7od, .framer-ebqzx .framer-1ikxk3e, .framer-ebqzx .framer-2txb6l, .framer-ebqzx .framer-16mguff, .framer-ebqzx .framer-1b4e8yl, .framer-ebqzx .framer-1149970, .framer-ebqzx .framer-1mwuel7, .framer-ebqzx .framer-1kktcwh, .framer-ebqzx .framer-o8lmaz, .framer-ebqzx .framer-m2qec6, .framer-ebqzx .framer-1pqvcrr, .framer-ebqzx .framer-m3cqka, .framer-ebqzx .framer-1id20ac, .framer-ebqzx .framer-1wb2m0p, .framer-ebqzx .framer-ci4u2m, .framer-ebqzx .framer-iz0w6w, .framer-ebqzx .framer-1emb1lg, .framer-ebqzx .framer-1bx92ry, .framer-ebqzx .framer-4u7my0, .framer-ebqzx .framer-1wam7fu, .framer-ebqzx .framer-1bun8zf, .framer-ebqzx .framer-12elvad, .framer-ebqzx .framer-1latqw3, .framer-ebqzx .framer-tdyje9, .framer-ebqzx .framer-187crt5, .framer-ebqzx .framer-iucgr4, .framer-ebqzx .framer-3676pm, .framer-ebqzx .framer-z1xkea, .framer-ebqzx .framer-1dpo872, .framer-ebqzx .framer-zpvdm9, .framer-ebqzx .framer-3rr5zn, .framer-ebqzx .framer-mtqud0, .framer-ebqzx .framer-1ii6nz6, .framer-ebqzx .framer-sh9ipb, .framer-ebqzx .framer-1rqmfmt, .framer-ebqzx .framer-11ysman, .framer-ebqzx .framer-1wptsyu, .framer-ebqzx .framer-o2pmls, .framer-ebqzx .framer-1aztue9, .framer-ebqzx .framer-1x2mum { gap: 0px; } .framer-ebqzx.framer-i4qphd > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ebqzx.framer-i4qphd > :first-child, .framer-ebqzx .framer-12dmuwa > :first-child, .framer-ebqzx .framer-b6g7od > :first-child { margin-top: 0px; } .framer-ebqzx.framer-i4qphd > :last-child, .framer-ebqzx .framer-12dmuwa > :last-child, .framer-ebqzx .framer-b6g7od > :last-child { margin-bottom: 0px; } .framer-ebqzx .framer-12dmuwa > *, .framer-ebqzx .framer-b6g7od > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ebqzx .framer-1ikxk3e > *, .framer-ebqzx .framer-2txb6l > *, .framer-ebqzx .framer-16mguff > *, .framer-ebqzx .framer-1b4e8yl > *, .framer-ebqzx .framer-1149970 > *, .framer-ebqzx .framer-1mwuel7 > *, .framer-ebqzx .framer-1kktcwh > *, .framer-ebqzx .framer-o8lmaz > *, .framer-ebqzx .framer-m2qec6 > *, .framer-ebqzx .framer-1pqvcrr > *, .framer-ebqzx .framer-m3cqka > *, .framer-ebqzx .framer-1id20ac > *, .framer-ebqzx .framer-1wb2m0p > *, .framer-ebqzx .framer-ci4u2m > *, .framer-ebqzx .framer-iz0w6w > *, .framer-ebqzx .framer-1emb1lg > *, .framer-ebqzx .framer-1bx92ry > *, .framer-ebqzx .framer-4u7my0 > *, .framer-ebqzx .framer-1bun8zf > *, .framer-ebqzx .framer-12elvad > *, .framer-ebqzx .framer-1latqw3 > *, .framer-ebqzx .framer-tdyje9 > *, .framer-ebqzx .framer-187crt5 > *, .framer-ebqzx .framer-iucgr4 > *, .framer-ebqzx .framer-z1xkea > *, .framer-ebqzx .framer-1dpo872 > *, .framer-ebqzx .framer-zpvdm9 > *, .framer-ebqzx .framer-3rr5zn > *, .framer-ebqzx .framer-mtqud0 > *, .framer-ebqzx .framer-1ii6nz6 > *, .framer-ebqzx .framer-1rqmfmt > *, .framer-ebqzx .framer-11ysman > *, .framer-ebqzx .framer-1wptsyu > *, .framer-ebqzx .framer-o2pmls > *, .framer-ebqzx .framer-1aztue9 > *, .framer-ebqzx .framer-1x2mum > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-ebqzx .framer-1ikxk3e > :first-child, .framer-ebqzx .framer-2txb6l > :first-child, .framer-ebqzx .framer-16mguff > :first-child, .framer-ebqzx .framer-1b4e8yl > :first-child, .framer-ebqzx .framer-1149970 > :first-child, .framer-ebqzx .framer-1mwuel7 > :first-child, .framer-ebqzx .framer-1kktcwh > :first-child, .framer-ebqzx .framer-o8lmaz > :first-child, .framer-ebqzx .framer-m2qec6 > :first-child, .framer-ebqzx .framer-1pqvcrr > :first-child, .framer-ebqzx .framer-m3cqka > :first-child, .framer-ebqzx .framer-1id20ac > :first-child, .framer-ebqzx .framer-1wb2m0p > :first-child, .framer-ebqzx .framer-ci4u2m > :first-child, .framer-ebqzx .framer-iz0w6w > :first-child, .framer-ebqzx .framer-1emb1lg > :first-child, .framer-ebqzx .framer-1bx92ry > :first-child, .framer-ebqzx .framer-4u7my0 > :first-child, .framer-ebqzx .framer-1wam7fu > :first-child, .framer-ebqzx .framer-1bun8zf > :first-child, .framer-ebqzx .framer-12elvad > :first-child, .framer-ebqzx .framer-1latqw3 > :first-child, .framer-ebqzx .framer-tdyje9 > :first-child, .framer-ebqzx .framer-187crt5 > :first-child, .framer-ebqzx .framer-iucgr4 > :first-child, .framer-ebqzx .framer-3676pm > :first-child, .framer-ebqzx .framer-z1xkea > :first-child, .framer-ebqzx .framer-1dpo872 > :first-child, .framer-ebqzx .framer-zpvdm9 > :first-child, .framer-ebqzx .framer-3rr5zn > :first-child, .framer-ebqzx .framer-mtqud0 > :first-child, .framer-ebqzx .framer-1ii6nz6 > :first-child, .framer-ebqzx .framer-sh9ipb > :first-child, .framer-ebqzx .framer-1rqmfmt > :first-child, .framer-ebqzx .framer-11ysman > :first-child, .framer-ebqzx .framer-1wptsyu > :first-child, .framer-ebqzx .framer-o2pmls > :first-child, .framer-ebqzx .framer-1aztue9 > :first-child, .framer-ebqzx .framer-1x2mum > :first-child { margin-left: 0px; } .framer-ebqzx .framer-1ikxk3e > :last-child, .framer-ebqzx .framer-2txb6l > :last-child, .framer-ebqzx .framer-16mguff > :last-child, .framer-ebqzx .framer-1b4e8yl > :last-child, .framer-ebqzx .framer-1149970 > :last-child, .framer-ebqzx .framer-1mwuel7 > :last-child, .framer-ebqzx .framer-1kktcwh > :last-child, .framer-ebqzx .framer-o8lmaz > :last-child, .framer-ebqzx .framer-m2qec6 > :last-child, .framer-ebqzx .framer-1pqvcrr > :last-child, .framer-ebqzx .framer-m3cqka > :last-child, .framer-ebqzx .framer-1id20ac > :last-child, .framer-ebqzx .framer-1wb2m0p > :last-child, .framer-ebqzx .framer-ci4u2m > :last-child, .framer-ebqzx .framer-iz0w6w > :last-child, .framer-ebqzx .framer-1emb1lg > :last-child, .framer-ebqzx .framer-1bx92ry > :last-child, .framer-ebqzx .framer-4u7my0 > :last-child, .framer-ebqzx .framer-1wam7fu > :last-child, .framer-ebqzx .framer-1bun8zf > :last-child, .framer-ebqzx .framer-12elvad > :last-child, .framer-ebqzx .framer-1latqw3 > :last-child, .framer-ebqzx .framer-tdyje9 > :last-child, .framer-ebqzx .framer-187crt5 > :last-child, .framer-ebqzx .framer-iucgr4 > :last-child, .framer-ebqzx .framer-3676pm > :last-child, .framer-ebqzx .framer-z1xkea > :last-child, .framer-ebqzx .framer-1dpo872 > :last-child, .framer-ebqzx .framer-zpvdm9 > :last-child, .framer-ebqzx .framer-3rr5zn > :last-child, .framer-ebqzx .framer-mtqud0 > :last-child, .framer-ebqzx .framer-1ii6nz6 > :last-child, .framer-ebqzx .framer-sh9ipb > :last-child, .framer-ebqzx .framer-1rqmfmt > :last-child, .framer-ebqzx .framer-11ysman > :last-child, .framer-ebqzx .framer-1wptsyu > :last-child, .framer-ebqzx .framer-o2pmls > :last-child, .framer-ebqzx .framer-1aztue9 > :last-child, .framer-ebqzx .framer-1x2mum > :last-child { margin-right: 0px; } .framer-ebqzx .framer-1wam7fu > *, .framer-ebqzx .framer-3676pm > *, .framer-ebqzx .framer-sh9ipb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-ebqzx.framer-v-pztpjt.framer-i4qphd { padding: 20px 40px 40px 40px; width: 810px; }\",\".framer-ebqzx.framer-v-pztpjt .framer-xqp93a, .framer-ebqzx.framer-v-pztpjt .framer-1wam7fu, .framer-ebqzx.framer-v-pztpjt .framer-3676pm { width: 730px; }\",\".framer-ebqzx.framer-v-pztpjt .framer-iucgr4, .framer-ebqzx.framer-v-pztpjt .framer-1ii6nz6 { flex: 1 0 0px; width: 1px; }\",\".framer-ebqzx.framer-v-pztpjt .framer-sh9ipb { max-width: 100%; width: 730px; }\",\".framer-ebqzx.framer-v-f4x058.framer-i4qphd { gap: 16px; padding: 10px 20px 20px 20px; width: 390px; }\",\".framer-ebqzx.framer-v-f4x058 .framer-12dmuwa { height: 463px; }\",\".framer-ebqzx.framer-v-f4x058 .framer-xqp93a { height: auto; }\",\".framer-ebqzx.framer-v-f4x058 .framer-xrtmg5 { order: 0; }\",\".framer-ebqzx.framer-v-f4x058 .framer-1gmod2r { order: 1; }\",\".framer-ebqzx.framer-v-f4x058 .framer-dp1707 { order: 2; }\",\".framer-ebqzx.framer-v-f4x058 .framer-1n310qd { order: 3; }\",\".framer-ebqzx.framer-v-f4x058 .framer-128xml3 { order: 4; }\",\".framer-ebqzx.framer-v-f4x058 .framer-1d35lj5 { order: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ebqzx.framer-v-f4x058.framer-i4qphd { gap: 0px; } .framer-ebqzx.framer-v-f4x058.framer-i4qphd > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ebqzx.framer-v-f4x058.framer-i4qphd > :first-child { margin-top: 0px; } .framer-ebqzx.framer-v-f4x058.framer-i4qphd > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 374\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"AqWfDvNXj\":{\"layout\":[\"fixed\",\"auto\"]},\"UsRTnqsPa\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrxOPCkSYc=withCSS(Component,css,\"framer-ebqzx\");export default FramerrxOPCkSYc;FramerrxOPCkSYc.displayName=\"Partners\";FramerrxOPCkSYc.defaultProps={height:374,width:1440};addPropertyControls(FramerrxOPCkSYc,{variant:{options:[\"Jm6KsrM1U\",\"AqWfDvNXj\",\"UsRTnqsPa\"],optionTitles:[\"Partner Desktop\",\"Partner Tablet\",\"Partner Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerrxOPCkSYc,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrxOPCkSYc\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AqWfDvNXj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UsRTnqsPa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"374\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rxOPCkSYc.map","// Generated by Framer (c85c929)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useRouter,withCodeBoundaryForOverrides,withCSS,withMappedReactProps,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{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/LPTFCIP00KeG4YaFsoNu/YouTube.js\";import HeaderHeaderMobile from\"#framer/local/canvasComponent/dc2Sgb5xR/dc2Sgb5xR.js\";import Filter from\"#framer/local/canvasComponent/Fzt6sNUDj/Fzt6sNUDj.js\";import HeaderAnnouncementBar from\"#framer/local/canvasComponent/IOrSRjv8y/IOrSRjv8y.js\";import SectionPageTitle from\"#framer/local/canvasComponent/owOCrPnE6/owOCrPnE6.js\";import Partners from\"#framer/local/canvasComponent/rxOPCkSYc/rxOPCkSYc.js\";import HeaderHeaderDesktop,*as HeaderHeaderDesktopInfo from\"#framer/local/canvasComponent/tyLoQvYg3/tyLoQvYg3.js\";import NewFooter from\"#framer/local/canvasComponent/yScbtwzCo/yScbtwzCo.js\";import{MegaMenu}from\"#framer/local/codeFile/gqwmJZa/MegaMenu.js\";import*as sharedStyle2 from\"#framer/local/css/GJWRXVKtg/GJWRXVKtg.js\";import*as sharedStyle1 from\"#framer/local/css/NmKesphMY/NmKesphMY.js\";import*as sharedStyle from\"#framer/local/css/P_zY2XGRU/P_zY2XGRU.js\";import metadataProvider from\"#framer/local/webPageMetadata/sCdAtqIr1/sCdAtqIr1.js\";const HeaderAnnouncementBarFonts=getFonts(HeaderAnnouncementBar);const HeaderHeaderMobileFonts=getFonts(HeaderHeaderMobile);const HeaderHeaderDesktopFonts=getFonts(HeaderHeaderDesktop);const HeaderHeaderDesktopMegaMenuf7qjw6WithMappedReactProps1iedf04=withMappedReactProps(withCodeBoundaryForOverrides(HeaderHeaderDesktop,{nodeId:\"SEUxueH3O\",override:MegaMenu,scopeId:\"sCdAtqIr1\"}),HeaderHeaderDesktopInfo);const SectionPageTitleFonts=getFonts(SectionPageTitle);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const DownloadFonts=getFonts(Download);const FilterFonts=getFonts(Filter);const YouTubeFonts=getFonts(YouTube);const PartnersFonts=getFonts(Partners);const NewFooterFonts=getFonts(NewFooter);const breakpoints={hwzm4ihVz:\"(min-width: 1440px)\",OmOcBCTAE:\"(max-width: 809px)\",rx5zmQ50Y:\"(min-width: 810px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-fODwy\";const variantClassNames={hwzm4ihVz:\"framer-v-ekdz3t\",OmOcBCTAE:\"framer-v-kc22fe\",rx5zmQ50Y:\"framer-v-mn35sc\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};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:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"hwzm4ihVz\",Phone:\"OmOcBCTAE\",Tablet:\"rx5zmQ50Y\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"hwzm4ihVz\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if([\"rx5zmQ50Y\",\"OmOcBCTAE\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"rx5zmQ50Y\",\"OmOcBCTAE\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"rx5zmQ50Y\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"rx5zmQ50Y\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"hwzm4ihVz\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-1b0d6e4b-5eef-4cdc-b734-24c44c1b01a9, rgb(245, 245, 245)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-ekdz3t\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OmOcBCTAE:{y:undefined},rx5zmQ50Y:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wxm1v1-container\",nodeId:\"nTWIRgIzE\",scopeId:\"sCdAtqIr1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OmOcBCTAE:{variant:\"Rtpl5UkG7\"}},children:/*#__PURE__*/_jsx(HeaderAnnouncementBar,{eS07kcP93:\"Las Vegas, NV 89103\",height:\"100%\",id:\"nTWIRgIzE\",layoutId:\"nTWIRgIzE\",OVbnZzRq0:\"Call: (702) 948-0459\",OWF7I1gIV:\"var(--token-0090adf1-b48c-465d-8f35-fe70e101a5e7, rgb(27, 30, 39))\",style:{width:\"100%\"},variant:\"vuowkOfXP\",w8n3sT2Rn:\"var(--token-c334d8fb-aed0-48e8-b334-dc942b15ea92, rgb(255, 255, 255))\",width:\"100%\",xvHahklOr:\"Professional Production with Personalized Service\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OmOcBCTAE:{height:50,width:componentViewport?.width||\"100vw\"},rx5zmQ50Y:{height:50,width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pf5wi4-container hidden-ekdz3t\",nodeId:\"K26CXh8es\",scopeId:\"sCdAtqIr1\",children:/*#__PURE__*/_jsx(HeaderHeaderMobile,{height:\"100%\",id:\"K26CXh8es\",layoutId:\"K26CXh8es\",style:{width:\"100%\"},variant:\"m5ALkwQbV\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-167rrln\",\"data-framer-name\":\"Main\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+40+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f7qjw6-container hidden-mn35sc hidden-kc22fe\",nodeId:\"SEUxueH3O\",rendersWithMotion:true,scopeId:\"sCdAtqIr1\",children:/*#__PURE__*/_jsx(HeaderHeaderDesktopMegaMenuf7qjw6WithMappedReactProps1iedf04,{AWIWjTCFw:resolvedLinks[0],height:\"100%\",id:\"SEUxueH3O\",layoutId:\"SEUxueH3O\",style:{width:\"100%\"},variant:\"ndnXYOJh9\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OmOcBCTAE:{height:700,y:undefined},rx5zmQ50Y:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:467,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+40+0+67,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1uxy5ac-container\",\"data-framer-appear-id\":\"1uxy5ac\",initial:animation1,nodeId:\"n9GSr4cbF\",optimized:true,rendersWithMotion:true,scopeId:\"sCdAtqIr1\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OmOcBCTAE:{variant:\"utO4SEZHv\"}},children:/*#__PURE__*/_jsx(SectionPageTitle,{aVMNRsfl9:\"We Have the Expertise and Experience to Design, Sell, and Install New Systems in Any Venue\",CkFgEv6hI:true,height:\"100%\",id:\"n9GSr4cbF\",layoutId:\"n9GSr4cbF\",lgjob4jv5:\"rgba(27, 30, 39, 0.25)\",Ma9BXIAcK:\"Sales & Integration\",ohmiq0jjU:addImageAlt({pixelHeight:2e3,pixelWidth:3e3,src:\"https://framerusercontent.com/images/MCyVBaPsUd90c4G3OSIK111MCqQ.jpg\",srcSet:\"https://framerusercontent.com/images/MCyVBaPsUd90c4G3OSIK111MCqQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MCyVBaPsUd90c4G3OSIK111MCqQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MCyVBaPsUd90c4G3OSIK111MCqQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MCyVBaPsUd90c4G3OSIK111MCqQ.jpg 3000w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"WjBSuHS0t\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f9zk4z\",\"data-framer-name\":\"INTEGRATION\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-a46knn\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f3vsw5\",\"data-framer-name\":\"Content\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o5rfsb hidden-ekdz3t hidden-kc22fe\",\"data-framer-name\":\"Intro\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b8foh8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-wsmaoz\",\"data-styles-preset\":\"P_zY2XGRU\",children:\"Overview\"})}),className:\"framer-lrd8vv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"Looking to install a new A/V system in your venue? 3G Productions offers the best products and installation services to fit your needs. We are partners and certified dealers for some of the top brands in the world!\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"We are licensed as low voltage contractors in our home states of California and Nevada. \\xa0Our team of certified professionals can design a custom system for any performance venue. We’ve installed systems in auditoriums, churches, amphitheaters, and arenas.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"After your system is designed, we custom build the racks, deliver all gear to site, fully install and test the equipment, and train your on-site technicians so they become experts with your new system. Your guests will experience shows and events like never before thanks to state-of-the-art technology and design.\"})]}),className:\"framer-q5942l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-sp93mr hidden-mn35sc\",\"data-framer-name\":\"Intro\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13nk9l2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-wsmaoz\",\"data-styles-preset\":\"P_zY2XGRU\",children:\"Overview\"})}),className:\"framer-mjgw31\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"Elevate your venue with cutting-edge audio, video, and lighting systems—designed, installed, and supported by the experts at 3G Productions.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"From stadiums and arenas to theaters, houses of worship, and performance venues of all sizes, 3G delivers world-class A/V integration built for unforgettable audience experiences. As certified dealers and trusted partners of the industry's top brands, we bring best-in-class technology to every project.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"Licensed low-voltage contractors in California and Nevada, our nationwide team of certified engineers and technicians handle everything from initial design to final installation. We custom-build racks, deliver and install all gear on-site, fully test your system, and train your staff to operate it with confidence.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"Whether you're building a new venue or upgrading an existing space, 3G Productions is your end-to-end integration partner—bringing your vision to life with precision, performance, and professionalism.\"})]}),className:\"framer-kl084o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OmOcBCTAE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:853,intrinsicWidth:1280,pixelHeight:853,pixelWidth:1280,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`,src:\"https://framerusercontent.com/images/vtDyS0Wl4XdXT4NBxqhXFSHoD5o.png\",srcSet:\"https://framerusercontent.com/images/vtDyS0Wl4XdXT4NBxqhXFSHoD5o.png?scale-down-to=512 512w,https://framerusercontent.com/images/vtDyS0Wl4XdXT4NBxqhXFSHoD5o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vtDyS0Wl4XdXT4NBxqhXFSHoD5o.png 1280w\"}},rx5zmQ50Y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:853,intrinsicWidth:1280,pixelHeight:853,pixelWidth:1280,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) / 2 - 8px, 1px)`,src:\"https://framerusercontent.com/images/vtDyS0Wl4XdXT4NBxqhXFSHoD5o.png\",srcSet:\"https://framerusercontent.com/images/vtDyS0Wl4XdXT4NBxqhXFSHoD5o.png?scale-down-to=512 512w,https://framerusercontent.com/images/vtDyS0Wl4XdXT4NBxqhXFSHoD5o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vtDyS0Wl4XdXT4NBxqhXFSHoD5o.png 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:853,intrinsicWidth:1280,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+40+0+534+60+0+0+0+0),pixelHeight:853,pixelWidth:1280,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 1440px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/vtDyS0Wl4XdXT4NBxqhXFSHoD5o.png\",srcSet:\"https://framerusercontent.com/images/vtDyS0Wl4XdXT4NBxqhXFSHoD5o.png?scale-down-to=512 512w,https://framerusercontent.com/images/vtDyS0Wl4XdXT4NBxqhXFSHoD5o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/vtDyS0Wl4XdXT4NBxqhXFSHoD5o.png 1280w\"},className:\"framer-wozlyv\",\"data-framer-name\":\"Title\"})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15xc29w\",\"data-framer-name\":\"NEW EQUIPMENT SALES\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-9s1ksf\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d80wn9\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OmOcBCTAE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:543,intrinsicWidth:960,pixelHeight:543,pixelWidth:960,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`,src:\"https://framerusercontent.com/images/n8gVBkxwTJ3tq6GaCfp3cbY.jpg\",srcSet:\"https://framerusercontent.com/images/n8gVBkxwTJ3tq6GaCfp3cbY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/n8gVBkxwTJ3tq6GaCfp3cbY.jpg 960w\"}},rx5zmQ50Y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:543,intrinsicWidth:960,pixelHeight:543,pixelWidth:960,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/n8gVBkxwTJ3tq6GaCfp3cbY.jpg\",srcSet:\"https://framerusercontent.com/images/n8gVBkxwTJ3tq6GaCfp3cbY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/n8gVBkxwTJ3tq6GaCfp3cbY.jpg 960w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:543,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+40+0+1093+30+0+0+0+0),pixelHeight:543,pixelWidth:960,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 1440px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/n8gVBkxwTJ3tq6GaCfp3cbY.jpg\",srcSet:\"https://framerusercontent.com/images/n8gVBkxwTJ3tq6GaCfp3cbY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/n8gVBkxwTJ3tq6GaCfp3cbY.jpg 960w\"},className:\"framer-8qnkfw\",\"data-framer-name\":\"Title\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i2qqxe\",\"data-framer-name\":\"Intro\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-36c7fa\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-cmsvad\",\"data-styles-preset\":\"GJWRXVKtg\",children:\"New Equipment Sales\"})}),className:\"framer-8903ff\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"Over the years we have developed long-term partnerships with the best A/V manufacturers in the world, which allows us to offer competitive pricing on individual products and systems. If you’re a startup production company or a well-established producer in the entertainment industry, we will provide you the best audio, lighting and video equipment at the lowest price available. Moreover, we offer training and support as an added service with your equipment purchase.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"Categories available for purchase include:\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"• Audio • Lighting • Rigging • RF/Comm •Video\"})]}),className:\"framer-1dxkn57\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j79wj7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qKaIoPh27\",scopeId:\"sCdAtqIr1\",children:/*#__PURE__*/_jsx(Download,{fontControl:{},height:\"100%\",id:\"qKaIoPh27\",layoutId:\"qKaIoPh27\",srcFile:\"https://framerusercontent.com/assets/ogdWCfQGfoixzog3NW9h0tvmTKw.pdf\",srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:\"var(--token-1d60e60e-2b05-4757-a56b-764517912759, rgb(0, 93, 199))\",borderRadius:50,color:\"rgb(255, 255, 255)\",gap:5,padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10},text:\"2025 GEAR CATALOG DOWNLOAD\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://usedgear.com\",motionChild:true,nodeId:\"qxUN3KoKQ\",openInNewTab:true,scopeId:\"sCdAtqIr1\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-mbqwot framer-iri2iz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"BUY USED GEAR\"})}),className:\"framer-rmsoq2\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4y6gbp\",\"data-framer-name\":\"4-BLOCK\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1evl4aw\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-oxrry2\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vdneky\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OmOcBCTAE:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`},rx5zmQ50Y:{height:undefined,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:`min(${componentViewport?.width||\"100vw\"} - 120px, 1440px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-127ohab-container\",nodeId:\"Yh_rH0UfI\",scopeId:\"sCdAtqIr1\",children:/*#__PURE__*/_jsx(Filter,{ChMbWrzQ1:\"\",EfhMqGRNp:\"rgba(27, 30, 39, 0.8)\",height:\"100%\",id:\"Yh_rH0UfI\",klTbFqGQW:\"\",layoutId:\"Yh_rH0UfI\",lGObEFfr2:true,lID9WNQ9C:\"\",Lvq91rqHm:\"3G is well versed in CAD and can design a custom solution to fit the needs of any venue.\",SmiIin1WR:\"\",style:{height:\"100%\",width:\"100%\"},ufUCWG4Mc:false,Unekrvb8X:\"\",variant:\"m37uITpGo\",width:\"100%\",y_cFOcRVw:\"Custom-Designed\",Y4VSsgRWe:\"\",ZPHByqpqA:\"\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OmOcBCTAE:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`},rx5zmQ50Y:{height:undefined,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:`min(${componentViewport?.width||\"100vw\"} - 120px, 1440px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18gxv3j-container\",nodeId:\"h2z2HmzAO\",scopeId:\"sCdAtqIr1\",children:/*#__PURE__*/_jsx(Filter,{ChMbWrzQ1:\"\",EfhMqGRNp:\"rgba(27, 30, 39, 0.8)\",height:\"100%\",id:\"h2z2HmzAO\",klTbFqGQW:\"\",layoutId:\"h2z2HmzAO\",lGObEFfr2:true,lID9WNQ9C:\"\",Lvq91rqHm:\"Certified, Licensed, and professional installers. We are low-voltage electrical contractors in CA and NV.\",SmiIin1WR:\"\",style:{height:\"100%\",width:\"100%\"},ufUCWG4Mc:false,Unekrvb8X:\"\",variant:\"m37uITpGo\",width:\"100%\",y_cFOcRVw:\"Installation\",Y4VSsgRWe:\"\",ZPHByqpqA:\"\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OmOcBCTAE:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`},rx5zmQ50Y:{height:undefined,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:`min(${componentViewport?.width||\"100vw\"} - 120px, 1440px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18aqh46-container\",nodeId:\"AhZLhCwzW\",scopeId:\"sCdAtqIr1\",children:/*#__PURE__*/_jsx(Filter,{ChMbWrzQ1:\"\",EfhMqGRNp:\"rgba(27, 30, 39, 0.8)\",height:\"100%\",id:\"AhZLhCwzW\",klTbFqGQW:\"\",layoutId:\"AhZLhCwzW\",lGObEFfr2:true,lID9WNQ9C:\"\",Lvq91rqHm:\"Train all on-site engineers and technicians for maximum knowledge and utilization of system\",SmiIin1WR:\"\",style:{height:\"100%\",width:\"100%\"},ufUCWG4Mc:false,Unekrvb8X:\"\",variant:\"m37uITpGo\",width:\"100%\",y_cFOcRVw:\"Training \",Y4VSsgRWe:\"\",ZPHByqpqA:\"\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OmOcBCTAE:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`},rx5zmQ50Y:{height:undefined,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:`min(${componentViewport?.width||\"100vw\"} - 120px, 1440px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qppfhk-container\",nodeId:\"mhFnQE0YW\",scopeId:\"sCdAtqIr1\",children:/*#__PURE__*/_jsx(Filter,{ChMbWrzQ1:\"\",EfhMqGRNp:\"rgba(27, 30, 39, 0.8)\",height:\"100%\",id:\"mhFnQE0YW\",klTbFqGQW:\"\",layoutId:\"mhFnQE0YW\",lGObEFfr2:true,lID9WNQ9C:\"\",Lvq91rqHm:\"Ongoing service agreements and support to ensure system stays up to date and the venue gets the most life out of the system\",SmiIin1WR:\"\",style:{height:\"100%\",width:\"100%\"},ufUCWG4Mc:false,Unekrvb8X:\"\",variant:\"m37uITpGo\",width:\"100%\",y_cFOcRVw:\"Service & Support\",Y4VSsgRWe:\"\",ZPHByqpqA:\"\"})})})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xi8sgu\",\"data-framer-name\":\"INTEGRATION\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-gykg1d\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tc52eu\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-oxh6pa\",\"data-framer-name\":\"Intro\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s7e0ca\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-cmsvad\",\"data-styles-preset\":\"GJWRXVKtg\",children:\"Integration\"})}),className:\"framer-wdlqvq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rx5zmQ50Y:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"The integration team at 3G Productions is highly skilled, expertly trained, certified and licensed with numerous years of experience in their fields. Audio, lighting, rigging and video are all aspects our team can skillfully install in any venue. We are experts in integration including retrofits of existing venues, system upgrades, and new venues that are looking for a design/build partner. With the best brands in the industry and years of live event experience, we offer the best integration service available.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"The 3G quotation process is easy and free. Our experts will come to your venue for a walk through. We’ll discuss design concepts and learn about your vision before creating a contract so that we can ensure you are completely satisfied. Our relationship-based approach has led to many long-lasting and repeat clients.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"The integration team at 3G Productions is highly skilled, expertly trained, certified and licensed with numerous years of experience in their fields. Audio, lighting, rigging and video are all aspects our team can skillfully install in any venue. We are experts in integration including retrofits of existing venues, system upgrades, and new venues that are looking for a design/build partner. With the best brands in the industry and years of live event experience, we offer the best integration service available.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"The 3G quotation process is easy and free. Our experts will come to your venue for a walk through. We’ll discuss design concepts and learn about your vision before creating a contract so that we can ensure you are completely satisfied. Our relationship-based approach has led to many long-lasting and repeat clients.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1toap9z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OmOcBCTAE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1400,intrinsicWidth:2527,pixelHeight:1400,pixelWidth:2527,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`,src:\"https://framerusercontent.com/images/1belbgRSHZnXjr5rtFCnuapww.jpg\",srcSet:\"https://framerusercontent.com/images/1belbgRSHZnXjr5rtFCnuapww.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1belbgRSHZnXjr5rtFCnuapww.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1belbgRSHZnXjr5rtFCnuapww.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1belbgRSHZnXjr5rtFCnuapww.jpg 2527w\"}},rx5zmQ50Y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1400,intrinsicWidth:2527,pixelHeight:1400,pixelWidth:2527,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/1belbgRSHZnXjr5rtFCnuapww.jpg\",srcSet:\"https://framerusercontent.com/images/1belbgRSHZnXjr5rtFCnuapww.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1belbgRSHZnXjr5rtFCnuapww.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1belbgRSHZnXjr5rtFCnuapww.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1belbgRSHZnXjr5rtFCnuapww.jpg 2527w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1400,intrinsicWidth:2527,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+40+0+1763+30+0+0+0+0),pixelHeight:1400,pixelWidth:2527,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 1440px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/1belbgRSHZnXjr5rtFCnuapww.jpg\",srcSet:\"https://framerusercontent.com/images/1belbgRSHZnXjr5rtFCnuapww.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1belbgRSHZnXjr5rtFCnuapww.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1belbgRSHZnXjr5rtFCnuapww.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1belbgRSHZnXjr5rtFCnuapww.jpg 2527w\"},className:\"framer-16gl7df\",\"data-framer-name\":\"Title\"})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-iji8un\",\"data-framer-name\":\"USED EQUIPMENT SALES\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-15xu5a2\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wpq1eq\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OmOcBCTAE:{background:{alt:\"Used Equipment Sales\",fit:\"fill\",intrinsicHeight:1445,intrinsicWidth:2560,pixelHeight:1445,pixelWidth:2560,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`,src:\"https://framerusercontent.com/images/tQrXgBQbnrNrILtzcfjjeBbgdI.jpeg\",srcSet:\"https://framerusercontent.com/images/tQrXgBQbnrNrILtzcfjjeBbgdI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/tQrXgBQbnrNrILtzcfjjeBbgdI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/tQrXgBQbnrNrILtzcfjjeBbgdI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/tQrXgBQbnrNrILtzcfjjeBbgdI.jpeg 2560w\"}},rx5zmQ50Y:{background:{alt:\"Used Equipment Sales\",fit:\"fill\",intrinsicHeight:1445,intrinsicWidth:2560,pixelHeight:1445,pixelWidth:2560,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1440px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/tQrXgBQbnrNrILtzcfjjeBbgdI.jpeg\",srcSet:\"https://framerusercontent.com/images/tQrXgBQbnrNrILtzcfjjeBbgdI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/tQrXgBQbnrNrILtzcfjjeBbgdI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/tQrXgBQbnrNrILtzcfjjeBbgdI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/tQrXgBQbnrNrILtzcfjjeBbgdI.jpeg 2560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Used Equipment Sales\",fit:\"fill\",intrinsicHeight:1445,intrinsicWidth:2560,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+40+0+2223+30+0+0+0+0),pixelHeight:1445,pixelWidth:2560,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 120px, 1440px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/tQrXgBQbnrNrILtzcfjjeBbgdI.jpeg\",srcSet:\"https://framerusercontent.com/images/tQrXgBQbnrNrILtzcfjjeBbgdI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/tQrXgBQbnrNrILtzcfjjeBbgdI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/tQrXgBQbnrNrILtzcfjjeBbgdI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/tQrXgBQbnrNrILtzcfjjeBbgdI.jpeg 2560w\"},className:\"framer-1v3ldee\",\"data-framer-name\":\"Title\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yymk1q\",\"data-framer-name\":\"Intro\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-egfx7o\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-cmsvad\",\"data-styles-preset\":\"GJWRXVKtg\",children:\"Used Equipment Sales\"})}),className:\"framer-1dr097f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"We offer a wide variety of show-used equipment for sale. These items are in excellent condition, are industry-leading brands, and are a fraction of the original costs. Click below to see our selection of used inventory available for purchase. We will arrange shipment of any products and offer a 90 day warranty on all equipment, unless otherwise noted.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"Categories available for purchase include:\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"\\xb7\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0 Audio\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"\\xb7\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0 Lighting\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"\\xb7\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0 Rigging\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"\\xb7\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0 RF/Comm\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"\\xb7\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0 Video\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1ipvc56\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"header\",{className:\"framer-13q7tue hidden-ekdz3t hidden-kc22fe\",\"data-framer-name\":\"VIDEO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-wsmaoz\",\"data-styles-preset\":\"P_zY2XGRU\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"3G Productions and YouTube Theatre\"})}),className:\"framer-lv9unq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"3G Productions was chosen as the integrator for the YouTube Theater, installing the audio, lighting, and rigging system. Prior to the venue opening in August 2021. The YouTube Theater, located at the SoFi Stadium complex in Hollywood Park, is a 6,000-seat music and theater venue, capable of accommodating a wide range of events, including concerts, comedy shows, e-sports tournaments, and award ceremonies.  The audio system in the theater is highlighted by L-Acoustics K2 and Kara II while the lighting system is primarily Robe Lighting.  Below is a video highlighting the audio portion of the project.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-gcuyqm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ab1s4x-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yjGMLVeQs\",scopeId:\"sCdAtqIr1\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"yjGMLVeQs\",isMixedBorderRadius:false,isRed:true,layoutId:\"yjGMLVeQs\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/0smRcAWsdBg?si=wD7EdsaiSrba9b3b\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-873w74\"})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"header\",{className:\"framer-lo47f3 hidden-mn35sc\",\"data-framer-name\":\"VIDEO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-wsmaoz\",\"data-styles-preset\":\"P_zY2XGRU\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"3G Productions and YouTube Theatre\"})}),className:\"framer-h89jwg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:\"3G Productions was chosen as the integrator for the YouTube Theater, installing the audio, lighting, and rigging system. Prior to the venue opening in August 2021. The YouTube Theater, located at the SoFi Stadium complex in Hollywood Park, is a 6,000-seat music and theater venue, capable of accommodating a wide range of events, including concerts, comedy shows, e-sports tournaments, and award ceremonies.  The audio system in the theater is highlighted by L-Acoustics K2 and Kara II while the lighting system is primarily Robe Lighting.  Below is a video highlighting the audio portion of the project.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tlb8wu\",\"data-styles-preset\":\"NmKesphMY\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-slaabt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1izo977-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Exr9Iho7Y\",scopeId:\"sCdAtqIr1\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"Exr9Iho7Y\",isMixedBorderRadius:false,isRed:true,layoutId:\"Exr9Iho7Y\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/0smRcAWsdBg?si=wD7EdsaiSrba9b3b\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ab9xj9\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OmOcBCTAE:{width:`calc(${componentViewport?.width||\"100vw\"} * 1.0051)`,y:undefined},rx5zmQ50Y:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:374,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+40+0+3721,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vuhml8-container\",nodeId:\"YoJA11w8g\",scopeId:\"sCdAtqIr1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OmOcBCTAE:{variant:\"UsRTnqsPa\"},rx5zmQ50Y:{variant:\"AqWfDvNXj\"}},children:/*#__PURE__*/_jsx(Partners,{height:\"100%\",id:\"YoJA11w8g\",layoutId:\"YoJA11w8g\",style:{width:\"100%\"},variant:\"Jm6KsrM1U\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OmOcBCTAE:{y:undefined},rx5zmQ50Y:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:454,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4135,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19p8odk-container\",nodeId:\"GhqMFcvCa\",scopeId:\"sCdAtqIr1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OmOcBCTAE:{variant:\"G4cPs1VkP\"},rx5zmQ50Y:{variant:\"gZBD03NGF\"}},children:/*#__PURE__*/_jsx(NewFooter,{height:\"100%\",id:\"GhqMFcvCa\",layoutId:\"GhqMFcvCa\",style:{width:\"100%\"},variant:\"EhxXsuida\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fODwy.framer-iri2iz, .framer-fODwy .framer-iri2iz { display: block; }\",\".framer-fODwy.framer-ekdz3t { align-content: center; align-items: center; background-color: var(--token-1b0d6e4b-5eef-4cdc-b734-24c44c1b01a9, #f5f5f5); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-fODwy .framer-wxm1v1-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-fODwy .framer-1pf5wi4-container { flex: none; height: auto; position: sticky; top: 0px; width: 810px; z-index: 1; }\",\".framer-fODwy .framer-167rrln { 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-fODwy .framer-f7qjw6-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 10; }\",\".framer-fODwy .framer-1uxy5ac-container { aspect-ratio: 3.6 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 467px); min-height: 467px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-fODwy .framer-1f9zk4z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 60px 60px 30px 60px; position: relative; width: 100%; }\",\".framer-fODwy .framer-a46knn, .framer-fODwy .framer-9s1ksf, .framer-fODwy .framer-1evl4aw, .framer-fODwy .framer-gykg1d, .framer-fODwy .framer-15xu5a2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fODwy .framer-1f3vsw5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 469px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fODwy .framer-1o5rfsb { align-content: flex-start; align-items: flex-start; background-color: var(--token-c334d8fb-aed0-48e8-b334-dc942b15ea92, #ffffff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 24px; position: relative; width: 50%; will-change: var(--framer-will-change-override, transform); }\",\".framer-fODwy .framer-b8foh8, .framer-fODwy .framer-13nk9l2, .framer-fODwy .framer-s7e0ca, .framer-fODwy .framer-egfx7o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fODwy .framer-lrd8vv, .framer-fODwy .framer-q5942l, .framer-fODwy .framer-mjgw31, .framer-fODwy .framer-8903ff, .framer-fODwy .framer-1dxkn57, .framer-fODwy .framer-wdlqvq, .framer-fODwy .framer-1dr097f { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-fODwy .framer-sp93mr, .framer-fODwy .framer-oxh6pa { align-content: flex-start; align-items: flex-start; background-color: var(--token-c334d8fb-aed0-48e8-b334-dc942b15ea92, #ffffff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 100%; justify-content: flex-end; min-height: 400px; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fODwy .framer-kl084o { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 343px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-fODwy .framer-wozlyv, .framer-fODwy .framer-8qnkfw, .framer-fODwy .framer-16gl7df, .framer-fODwy .framer-1v3ldee { align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-end; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fODwy .framer-15xc29w, .framer-fODwy .framer-4y6gbp, .framer-fODwy .framer-1xi8sgu, .framer-fODwy .framer-iji8un { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 30px 60px 30px 60px; position: relative; width: 100%; }\",\".framer-fODwy .framer-d80wn9, .framer-fODwy .framer-1tc52eu, .framer-fODwy .framer-wpq1eq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 400px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fODwy .framer-i2qqxe { align-content: flex-start; align-items: flex-start; background-color: var(--token-c334d8fb-aed0-48e8-b334-dc942b15ea92, #ffffff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 400px; overflow: hidden; padding: 25px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fODwy .framer-36c7fa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fODwy .framer-1j79wj7-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-fODwy .framer-mbqwot { background-color: var(--token-1d60e60e-2b05-4757-a56b-764517912759, #005dc7); border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; flex: none; height: 34px; overflow: hidden; position: relative; text-decoration: none; width: 196px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fODwy .framer-rmsoq2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 7px; flex: none; height: auto; position: absolute; right: 34px; white-space: pre; width: auto; }\",\".framer-fODwy .framer-oxrry2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fODwy .framer-vdneky { align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 8px; height: 150px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-fODwy .framer-127ohab-container, .framer-fODwy .framer-18gxv3j-container, .framer-fODwy .framer-18aqh46-container, .framer-fODwy .framer-1qppfhk-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-fODwy .framer-1toap9z, .framer-fODwy .framer-1ipvc56 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 316px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-fODwy .framer-yymk1q { align-content: flex-start; align-items: flex-start; background-color: var(--token-c334d8fb-aed0-48e8-b334-dc942b15ea92, #ffffff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: 100%; justify-content: flex-end; min-height: 400px; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fODwy .framer-13q7tue { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 60px 30px 60px; position: relative; width: 810px; }\",\".framer-fODwy .framer-lv9unq, .framer-fODwy .framer-h89jwg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-fODwy .framer-gcuyqm, .framer-fODwy .framer-slaabt { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 1320px; word-break: break-word; word-wrap: break-word; }\",\".framer-fODwy .framer-1ab1s4x-container { flex: none; height: 400px; position: relative; width: 100%; }\",\".framer-fODwy .framer-873w74, .framer-fODwy .framer-ab9xj9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; min-height: 1px; min-width: 6px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-fODwy .framer-lo47f3 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: 1038px; justify-content: center; overflow: hidden; padding: 30px 60px 30px 60px; position: relative; width: 100%; }\",\".framer-fODwy .framer-1izo977-container { flex: none; height: 746px; position: relative; width: 1323px; }\",\".framer-fODwy .framer-1vuhml8-container, .framer-fODwy .framer-19p8odk-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,\"@media (min-width: 810px) and (max-width: 1439px) { .framer-fODwy.framer-ekdz3t { width: 810px; } .framer-fODwy .framer-1pf5wi4-container { width: 100%; } .framer-fODwy .framer-1f9zk4z { padding: 40px 40px 20px 40px; } .framer-fODwy .framer-1f3vsw5, .framer-fODwy .framer-d80wn9, .framer-fODwy .framer-vdneky, .framer-fODwy .framer-1tc52eu, .framer-fODwy .framer-oxh6pa, .framer-fODwy .framer-wpq1eq, .framer-fODwy .framer-yymk1q { height: min-content; } .framer-fODwy .framer-wozlyv, .framer-fODwy .framer-8qnkfw, .framer-fODwy .framer-127ohab-container, .framer-fODwy .framer-18gxv3j-container, .framer-fODwy .framer-18aqh46-container, .framer-fODwy .framer-1qppfhk-container, .framer-fODwy .framer-16gl7df, .framer-fODwy .framer-1v3ldee { align-self: stretch; height: auto; } .framer-fODwy .framer-15xc29w, .framer-fODwy .framer-4y6gbp, .framer-fODwy .framer-1xi8sgu, .framer-fODwy .framer-iji8un { padding: 20px 40px 20px 40px; } .framer-fODwy .framer-i2qqxe { min-height: unset; } .framer-fODwy .framer-1toap9z { height: auto; }}\",\"@media (max-width: 809px) { .framer-fODwy.framer-ekdz3t { width: 390px; } .framer-fODwy .framer-wxm1v1-container { order: 0; } .framer-fODwy .framer-1pf5wi4-container { order: 1; width: 100%; } .framer-fODwy .framer-167rrln { order: 2; } .framer-fODwy .framer-1f9zk4z { padding: 20px 20px 10px 20px; } .framer-fODwy .framer-a46knn, .framer-fODwy .framer-9s1ksf, .framer-fODwy .framer-1evl4aw, .framer-fODwy .framer-gykg1d, .framer-fODwy .framer-15xu5a2 { gap: 0px; } .framer-fODwy .framer-1f3vsw5, .framer-fODwy .framer-1tc52eu, .framer-fODwy .framer-wpq1eq { flex-direction: column; gap: 0px; height: min-content; } .framer-fODwy .framer-sp93mr, .framer-fODwy .framer-oxh6pa, .framer-fODwy .framer-yymk1q { flex: none; gap: 20px; height: min-content; min-height: unset; padding: 16px; width: 100%; } .framer-fODwy .framer-kl084o, .framer-fODwy .framer-1toap9z, .framer-fODwy .framer-1ipvc56 { height: auto; } .framer-fODwy .framer-wozlyv { flex: none; height: min-content; min-height: 250px; padding: 16px; width: 100%; } .framer-fODwy .framer-15xc29w, .framer-fODwy .framer-4y6gbp, .framer-fODwy .framer-1xi8sgu, .framer-fODwy .framer-iji8un { padding: 10px 20px 10px 20px; } .framer-fODwy .framer-d80wn9 { flex-direction: column; gap: 0px; height: 606px; } .framer-fODwy .framer-8qnkfw { height: 1px; padding: 16px; width: 100%; } .framer-fODwy .framer-i2qqxe { flex: none; gap: 20px; min-height: unset; padding: 16px; width: 100%; } .framer-fODwy .framer-oxrry2 { flex-direction: column; justify-content: center; } .framer-fODwy .framer-vdneky { height: min-content; } .framer-fODwy .framer-127ohab-container, .framer-fODwy .framer-18gxv3j-container, .framer-fODwy .framer-18aqh46-container, .framer-fODwy .framer-1qppfhk-container { flex: none; height: 150px; width: 100%; } .framer-fODwy .framer-16gl7df, .framer-fODwy .framer-1v3ldee { flex: none; height: 250px; padding: 16px; width: 100%; } .framer-fODwy .framer-lo47f3 { height: min-content; padding: 60px; } .framer-fODwy .framer-1izo977-container { height: 164px; width: 100%; } .framer-fODwy .framer-1vuhml8-container { width: 101%; } .framer-fODwy .framer-19p8odk-container { order: 3; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4589\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rx5zmQ50Y\":{\"layout\":[\"fixed\",\"auto\"]},\"OmOcBCTAE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramersCdAtqIr1=withCSS(Component,css,\"framer-fODwy\");export default FramersCdAtqIr1;FramersCdAtqIr1.displayName=\"Sales Integration\";FramersCdAtqIr1.defaultProps={height:4589,width:1440};addFonts(FramersCdAtqIr1,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...HeaderAnnouncementBarFonts,...HeaderHeaderMobileFonts,...HeaderHeaderDesktopFonts,...SectionPageTitleFonts,...DownloadFonts,...FilterFonts,...YouTubeFonts,...PartnersFonts,...NewFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersCdAtqIr1\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rx5zmQ50Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OmOcBCTAE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"4589\",\"framerIntrinsicWidth\":\"1440\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"y2DAGA,SAAS,IAAsB,CAAC,GAAG,OAAO,SAAW,IAAY,MAAO,GAAK,IAAM,EAAQ,SAAS,cAAc,IAAiB,MAAM,CAAC,CAAC,CAAS,CAYhJ,SAAwB,EAAS,EAAM,CAAC,GAAK,CAAC,eAAa,eAAa,cAAY,CAAC,EAAW,CAAC,kBAAgB,QAAM,eAAa,UAAQ,iBAAe,aAAW,eAAa,gBAAc,cAAY,MAAI,CAAC,EAAmB,EAAuB,KAA2B,EAAyB,IAA2B,EAAM,UAAU,EAAQ,MAAI,EAAY,EAAM,QAAU,EAAM,UAAU,EAAQ,SAAO,EAAY,EAAM,cAAe,EAAa,EAAe,GAAG,EAAW,KAAK,EAAa,KAAK,EAAc,KAAK,EAAY,IAAI,GAAG,EAAQ,IAAU,MAAY,CAAC,IAAI,EAAI,EAAK,GAAG,CAAC,EAAY,OAAO,IAAM,EAAU,CAAC,MAAM,EAAY,YAAY,QAAQ,EAAE,EAAE,WAAW,EAAE,CAAC,OAAO,EAAY,OAAO,EAAS,SAAY,EAAI,EAAY,QAAuC,IAAmB,EAAK,MAAM,CAAC,MAAM,EAAU,KAAM,EAAK,EAAY,QAAyC,KAAM,EAAY,MAAM,IAAI,OAAO,EAAE,EAAY,MAAM,IAAI,gBAAgB,IAAI,EAAY,MAAM,IAAI,MAAM,EAAY,KAAK,OAAO,EAAY,KAAK,EAAgB,EAAK,MAAM,CAAC,MAAM,EAAU,MAAM,6BAA6B,MAAM,EAAY,KAAK,OAAO,EAAY,KAAK,KAAK,EAAY,MAAM,QAAQ,cAAc,SAAuB,EAAK,OAAO,CAAC,EAAE,4NAA4N,EAAE,CAAG,EAAO,MAAkB,EAAM,UAAU,EAAQ,KAAK,EAAM,QAA0B,EAAM,UAAU,EAAQ,QAAQ,EAAM,QAAc,UAAgB,OAAe,GAAY,EAAuB,gBAAgB,sBAAsB,OAAqB,EAAM,EAAO,EAAE,CAAC,OAAO,SAAS,KAAK,EAAY,SAAS,GAAK,MAAM,GAAY,MAAM,CAAC,MAAI,SAAS,GAAG,WAAW,EAAE,WAAW,QAAQ,WAAW,IAAI,MAAM,cAAc,GAAG,EAAM,MAAM,GAAG,GAAa,GAAG,EAAM,YAAY,QAAQ,EAAmB,QAAsB,kBAA6B,eAAa,WAAW,OAAO,aAAa,GAAgB,EAAM,aAAa,WAAW,SAAS,OAAO,IAAY,CAAC,WAAW,EAAa,WAAW,GAA+D,WAAW,SAAS,CAAC,IAAU,EAAM,KAAK,CAAC,CAAG,0CAfnnE,SAAS,EAAS,CAAC,EAAS,QAAW,UAAU,EAAS,OAAU,QAAU,GAAE,AAAW,IAAS,EAAE,GAAgB,SAAS,EAAQ,CAAC,EAAQ,OAAU,SAAS,EAAQ,IAAO,KAAO,GAAE,AAAU,IAAQ,EAAE,EAEtW,GAAgB,mCAa2vE,EAAS,YAAY,WAAW,EAAoB,EAAS,CAAC,KAAK,CAAC,MAAM,OAAO,KAAK,EAAY,OAAO,aAAa,WAAW,CAAC,QAAQ,CAAC,KAAK,EAAY,KAAK,wBAAwB,GAAK,MAAM,SAAS,QAAQ,CAAC,EAAQ,OAAO,EAAQ,IAAI,CAAC,CAAC,OAAO,CAAC,KAAK,EAAY,OAAO,MAAM,IAAI,YAAY,iBAAiB,OAAO,GAAO,EAAM,UAAU,EAAQ,OAAO,CAAC,QAAQ,CAAC,KAAK,EAAY,KAAK,MAAM,IAAI,iBAAiB,EAAE,CAAC,OAAO,GAAO,EAAM,UAAU,EAAQ,IAAI,CAAC,YAAY,CAC7uF,KAAK,EAAY,KAAK,MAAM,OAAO,SAAS,WAAW,CAAC,YAAY,CAAC,KAAK,EAAY,OAAO,SAAS,GAAK,MAAM,OAAO,YAAY,cAAc,SAAS,CAAC,KAAK,CAAC,MAAM,OAAO,KAAK,EAAY,KAAK,QAAQ,OAAO,OAAO,GAAU,aAAa,OAAO,OAAO,GAAU,wBAAwB,GAAK,CAAC,MAAM,CAAC,MAAM,QAAQ,KAAK,EAAY,MAAM,aAAa,OAAO,OAAO,GAAO,EAAM,OAAO,EAAS,OAAO,CAAC,MAAM,CAAC,MAAM,OAAO,KAAK,EAAY,gBAAgB,iBAAiB,CAAC,MAAM,MAAM,MAAM,CAAC,OAAO,GAAO,EAAM,OAAO,EAAS,QAAQ,CAAC,KAAK,CAAC,KAAK,EAAY,OAAO,eAAe,GAAK,IAAI,EAAE,aAAa,GAAG,IAAI,IAAI,CAAC,UAAU,CAAC,MAAM,QAAQ,KAAK,EAAY,KAAK,wBAAwB,GAAK,QAAQ,CAAC,QAAQ,MAAM,CAAC,aAAa,CAAC,QAAQ,MAAM,CAAC,CAAC,CAAC,CAAC,aAAa,CAAC,KAAK,EAAY,OAAO,MAAM,SAAS,YAAY,eAAe,SAAS,CAAC,gBAAgB,CAAC,KAAK,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,CAAC,MAAM,CAAC,KAAK,EAAY,MAAM,aAAa,OAAO,CAAC,aAAa,CAAC,KAAK,EAAY,OAAO,MAAM,SAAS,eAAe,GAAK,aAAa,GAAG,CAAC,QAAQ,CAAC,MAAM,UAAU,KAAK,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,mBAAmB,CAAC,aAAa,GAAG,UAAU,CAAC,aAAa,eAAe,gBAAgB,cAAe,CAAC,YAAY,CAAC,IAAI,IAAI,IAAI,IAAI,CAAC,IAAI,EAAE,CAAC,IAAI,CAAC,MAAM,MAAM,KAAK,EAAY,OAAO,eAAe,GAAK,aAAa,EAAE,CAAC,CAAC,CAAC,aAAa,CAAC,KAAK,EAAY,OAAO,MAAM,QAAQ,YAAY,SAAS,SAAS,GAAK,SAAS,CAAC,MAAM,CAAC,KAAK,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,GAAG,eAAe,GAAK,KAAK,IAAI,aAAa,IAAI,CAAC,gBAAgB,CAAC,KAAK,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,SAAS,GAAK,CAAC,MAAM,CAAC,KAAK,EAAY,MAAM,MAAM,QAAQ,aAAa,OAAO,SAAS,GAAK,CAAC,WAAW,CAAC,KAAK,EAAY,WAAW,MAAM,aAAa,aAAa,CAAC,KAAK,SAAS,UAAU,IAAI,QAAQ,GAAG,CAAC,CAAC,CAAC,CAAC,EAAQ,GAAa,CAAC,QAAQ,OAAO,WAAW,SAAS,aAAa,SAAS,eAAe,OAAO,CAA0D,GAAgB,GAAyB,GAA8E,UAA6B,EAAkB,YAAY,OAAc,aAAiB,EAAkB,YAAY,QAAe,WAAkB,SAAvI,UCfn/C,SAAS,GAAqB,EAAU,GAAG,EAAS,CAAC,IAAM,EAAc,EAAE,CAA+H,OAA9H,GAAmD,QAAQ,GAAS,GAAS,OAAO,OAAO,EAAc,EAAU,KAAkB,CAAe,uEAAta,GAAW,CAAC,YAAY,YAAY,YAAY,CAAOA,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,CAAuOC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,SAAS,CAAO,IAAY,CAAC,QAAM,WAAS,GAAG,CAAC,IAAM,EAAA,EAAwB,GAA2B,EAAW,GAAmC,EAAO,WAAiB,EAAA,OAAgC,CAAC,GAAG,EAAO,aAAW,EAAE,CAAC,KAAK,UAAU,GAAY,EAAE,OAAoB,EAAK,EAAoB,SAAS,CAAC,MAAM,EAAsB,WAAS,CAAG,EAAO,GAAS,EAAA,GAA6BC,GAAwB,CAAC,kBAAkB,YAAY,iBAAiB,YAAY,iBAAiB,YAAY,CAAOC,IAAU,CAAC,SAAO,KAAG,QAAM,GAAG,EAAM,GAAG,CAAC,IAAI,EAAuC,EAAK,MAAM,CAAC,GAAG,EAAM,SAAS,GAAM,EAAuCD,GAAwB,EAAM,WAAyG,EAAM,UAAoC,YAAY,AAAE,EAAO,IAAwB,EAAM,IAAW,EAAS,KAAK,KAAK,EAAM,iBAAuBE,GAAuB,EAAiB,SAAS,EAAM,EAAI,CAAC,GAAK,CAAC,eAAa,YAAU,CAAC,KAAqB,CAAC,QAAM,UAAA,EAAU,WAAS,UAAQ,GAAG,EAAU,CAACD,GAAS,GAAY,CAAC,cAAY,aAAW,iBAAe,kBAAgB,cAAW,WAAS,CAAC,EAAgB,CAAC,cAAW,eAAe,YAAY,UAAQ,kBAAA,GAAkB,EAAQ,EAAiB,GAAuB,EAAM,GAAgB,EAAA,EAAkB,MAAY,MAAoB,IAAc,YAA6C,MAAqB,IAAc,YAA6C,EAAA,IAAoC,EAAsB,CAAA,EAAuB,CAAgD,OAAvB,IAA2C,EAAK,EAAY,CAAC,GAAG,GAA4C,EAAgB,SAAsB,EAAK,GAAS,CAAC,QAAQ,EAAS,QAAQ,GAAM,SAAsB,EAAK,GAAW,CAAC,MAAMF,GAAY,SAAsB,EAAK,EAAO,IAAI,CAAC,GAAG,EAAU,UAAU,EAAGF,GAAkB,GAAG,EAAsB,gBAAgBqB,EAAU,GAAY,mBAAmB,kBAAmC,mBAAiB,SAAS,YAAY,eAAe,EAAgB,CAAC,UAAU,GAAM,EAAE,iBAAiB,EAAgB,CAAC,UAAU,GAAK,EAAE,UAAU,EAAgB,CAAC,UAAU,GAAM,EAAE,gBAAgB,EAAgB,CAAC,UAAU,GAAM,EAAE,eAAe,EAAgB,CAAC,UAAU,GAAK,EAAE,IAAI,GAA6B,EAAK,MAAM,CAAC,GAAG,EAAM,CAAC,GAAG,GAAqB,CAAC,UAAU,CAAC,mBAAmB,iBAAiB,CAAC,UAAU,CAAC,mBAAmB,iBAAiB,CAAC,CAAC,EAAY,GAAgB,SAAsB,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,eAAe,EAAE,EAAE,UAAU,gBAAgB,MAAM,CAAC,QAAQ,CAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,YAAY,CAAC,kBAAkB,MAAM,mBAAmB,GAAK,EAAE,KAA4B,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,CAAC,UAAU,iBAAiB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAe,EAAK,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,CAAC,UAAU,iBAAiB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAe,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,CAAC,UAAU,gBAAgB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAE,CAAC,EAAe,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,UAAU,gBAAgB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAe,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,CAAC,UAAU,iBAAiB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAe,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,UAAU,gBAAgB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAE,CAAC,EAAe,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,CAAC,UAAU,gBAAgB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAe,EAAK,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,UAAU,iBAAiB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAe,EAAK,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,CAAC,UAAU,gBAAgB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAE,CAAC,EAAe,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,uEAAuE,CAAC,UAAU,iBAAiB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAe,EAAK,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,uEAAuE,CAAC,UAAU,gBAAgB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAe,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,CAAC,UAAU,gBAAgB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAE,CAAC,EAAe,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,CAAC,UAAU,iBAAiB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAe,EAAK,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,CAAC,UAAU,iBAAiB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAe,EAAK,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,CAAC,UAAU,iBAAiB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAE,CAAC,EAAe,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,oEAAoE,CAAC,UAAU,gBAAgB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAe,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,CAAC,UAAU,iBAAiB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAe,EAAK,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,CAAC,UAAU,iBAAiB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,KAA6B,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAK,CAAC,KAAK,2BAA2B,aAAa,GAAK,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,+BAAgD,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,CAAC,UAAU,gBAAgB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAE,EAAe,EAAK,EAAK,CAAC,KAAK,sBAAsB,aAAa,GAAK,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,+BAAgD,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,CAAC,UAAU,iBAAiB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAE,EAAe,EAAK,EAAK,CAAC,KAAK,qCAAqC,aAAa,GAAK,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,+BAAgD,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,CAAC,UAAU,gBAAgB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAE,EAAe,EAAK,EAAK,CAAC,KAAK,+BAA+B,aAAa,GAAK,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,8BAA+C,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,CAAC,UAAU,gBAAgB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAE,EAAe,EAAK,EAAK,CAAC,KAAK,6BAA6B,aAAa,GAAK,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,+BAAgD,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,UAAU,iBAAiB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAE,EAAe,EAAK,EAAK,CAAC,KAAK,wBAAwB,aAAa,GAAK,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,8BAA+C,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,UAAU,gBAAgB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAE,EAAE,CAAC,EAAE,KAA6B,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAK,CAAC,KAAK,yBAAyB,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,8BAA+C,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,CAAC,UAAU,gBAAgB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAE,EAAe,EAAK,EAAK,CAAC,KAAK,gCAAgC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,+BAAgD,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,UAAU,iBAAiB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAE,EAAe,EAAK,EAAK,CAAC,KAAK,mCAAmC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,8BAA+C,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,CAAC,UAAU,iBAAiB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAE,EAAe,EAAK,EAAK,CAAC,KAAK,mCAAmC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,8BAA+C,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,uEAAuE,CAAC,UAAU,iBAAiB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAE,EAAe,EAAK,EAAK,CAAC,KAAK,8BAA8B,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,8BAA+C,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,uEAAuE,CAAC,UAAU,gBAAgB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAE,EAAe,EAAK,EAAK,CAAC,KAAK,gCAAgC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,+BAAgD,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,CAAC,UAAU,gBAAgB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAE,EAAE,CAAC,EAAE,KAA6B,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAK,CAAC,KAAK,0BAA0B,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,+BAAgD,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,CAAC,UAAU,iBAAiB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAE,EAAe,EAAK,EAAK,CAAC,KAAK,mCAAmC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,+BAAgD,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,CAAC,UAAU,iBAAiB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAE,EAAe,EAAK,EAAK,CAAC,KAAK,gCAAgC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,+BAAgD,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,CAAC,UAAU,iBAAiB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAE,EAAe,EAAK,EAAK,CAAC,KAAK,uBAAuB,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,8BAA+C,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,oEAAoE,CAAC,UAAU,iBAAiB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAE,EAAe,EAAK,EAAK,CAAC,KAAK,2BAA2B,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,+BAAgD,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,CAAC,UAAU,iBAAiB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAE,EAAe,EAAK,EAAK,CAAC,KAAK,8BAA8B,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,8BAA+C,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,CAAC,SAAsB,EAAKA,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,CAAC,UAAU,iBAAiB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,CAAG,GAAQf,GAAI,CAAC,kFAAkF,gFAAgF,oRAAoR,oSAAoS,oKAAoK,yRAAyR,6aAA6a,20BAA20B,gqCAAgqC,0TAA0T,6yBAA6yB,8XAA8X,0QAA0Q,o1NAAo1N,8FAA8F,8JAA8J,6HAA6H,kFAAkF,yGAAyG,mEAAmE,iEAAiE,6DAA6D,8DAA8D,6DAA6D,8DAA8D,8DAA8D,8DAA8D,2aAA2a,GAAA,EAAmB,CAQvu1C,EAAgB,GAAQH,GAAUG,GAAI,gBAA+C,EAAgB,YAAY,WAAW,EAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,KAAK,CAAC,EAAoB,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,CAAC,aAAa,CAAC,kBAAkB,iBAAiB,iBAAiB,CAAC,MAAM,UAAU,KAAK,EAAY,KAAK,CAAC,EAAE,EAAS,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,qEAAqE,OAAO,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,sEAAsE,OAAO,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,kEAAkE,OAAO,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,sEAAsE,OAAO,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,kEAAkE,OAAO,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,MAAM,CAAC,CAAC,CAAC,GAAG,EAAA,GAA2C,CAAC,CAAC,6BAA6B,GAAK,8KCRrT,GAA2B,EAASC,GAA6B,GAAwB,EAASC,GAA0B,GAAyB,EAASC,GAA2B,GAA6D,GAAqB,GAA6BA,EAAoB,CAAC,OAAO,YAAY,SAAS,GAAS,QAAQ,YAAY,EAAEC,IAA+B,GAAsB,EAASC,IAAwB,GAAmC,GAA0B,GAAiB,GAAc,EAAS,GAAgB,GAAY,EAASC,GAAc,GAAa,EAASC,GAAe,GAAc,EAASC,GAAgB,GAAe,EAASC,GAAiB,GAAY,CAAC,UAAU,sBAAsB,UAAU,qBAAqB,UAAU,6CAA6C,CAAO,MAAc,OAAO,SAAW,IAAkB,EAAkB,eAAqB,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,CAAO,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,SAAS,CAAO,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAW,GAAY,EAAE,EAAE,EAAE,EAAE,CAAO,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,CAAO,IAAa,EAAM,IAAM,CAAI,MAAC,GAAO,OAAO,GAAQ,UAAkB,MAAM,CAAC,GAAG,EAAM,MAAI,AAAE,EAAO,IAAW,CAAC,QAAM,GAAG,CAAC,IAAM,EAAS,KAA8C,OAArB,EAAgB,KAAyB,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAO,EAAM,CAAC,yBAAyB,GAAG,CAAG,EAAO,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,YAAY,CAAO,IAAU,CAAC,SAAO,KAAG,QAAM,GAAG,EAAM,IAAU,CAAC,GAAG,EAAM,QAAQ,GAAwB,EAAM,UAAU,EAAM,SAAS,YAAY,EAAS,GAAuB,EAAiB,SAAS,EAAM,EAAI,CAAC,IAAM,EAAYC,EAAO,MAAY,EAAW,GAAK,EAAkB,EAAA,IAAmC,CAAC,eAAa,YAAU,CAAC,KAAsB,EAAkB,IAA4B,CAAC,QAAM,UAAA,EAAU,WAAS,UAAQ,GAAG,EAAU,CAAC,GAAS,GAAaC,GAAAA,MAA2BC,GAAiB,IAAA,GAAU,GAAc,CAAC,IAAA,GAAU,EAAa,EAAE,GAAYD,IAAU,GAAK,CAAC,EAAY,GAAoB,CAAC,GAA8B,EAAQ,GAAY,IAA4C,GAAsB,SAAqE,CAAO,GAAkB,EAAG,EAAkB,GAAG,IAA6B,OAA6C,GAAzB,CAAC,KAA2B,CAAC,YAAY,YAAY,CAAC,SAAS,IAA8C,MAAsB,IAAwB,CAAG,CAAC,YAAY,YAAY,CAAC,SAAS,GAA3C,GAAgG,KAAY,IAAM,MAAqB,CAAC,KAA2B,IAAc,YAA6C,MAAsB,IAA2B,IAAc,YAAtB,GAAkF,OAArB,EAAiB,EAAE,EAAsB,EAAK,EAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,qBAAkB,CAAC,SAAsB,EAAM,EAAY,CAAC,GAAG,GAAU,EAAgB,SAAS,CAAc,EAAK,GAAU,CAAC,MAAM,mGAAmG,EAAe,EAAM,EAAO,IAAI,CAAC,GAAG,EAAU,UAAU,EAAG,GAAkB,gBAAgBE,GAAW,IAAI,EAAW,MAAM,CAAC,GAAG,EAAM,CAAC,SAAS,CAAc,EAAKC,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,IAAA,GAAU,CAAC,UAAU,CAAC,EAAE,IAAA,GAAU,CAAC,CAAC,SAAsB,EAAK,EAA0B,CAAC,OAAO,GAAG,MAAM,GAAmB,OAAO,QAAQ,GAAG,GAAmB,GAAG,GAAG,EAAE,EAAE,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKA,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,YAAY,CAAC,CAAC,SAAsB,EAAKb,EAAsB,CAAC,UAAU,sBAAsB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,uBAAuB,UAAU,qEAAqE,MAAM,CAAC,MAAM,OAAO,CAAC,QAAQ,YAAY,UAAU,wEAAwE,MAAM,OAAO,UAAU,oDAAoD,EAAE,EAAE,EAAE,EAAE,EAAE,MAA4B,EAAKa,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,GAAmB,OAAO,QAAQ,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,GAAmB,OAAO,QAAQ,CAAC,CAAC,SAAsB,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,yCAAyC,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKZ,EAAmB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,OAAO,CAAC,QAAQ,YAAY,MAAM,OAAO,EAAE,EAAE,EAAE,EAAe,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAC,KAA6B,EAAK,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,YAAY,CAAC,sBAAsB,IAAA,GAAU,CAAC,CAAC,SAAS,GAA4B,EAAK,EAA0B,CAAC,OAAO,GAAG,MAAM,GAAmB,OAAO,QAAQ,GAAG,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,EAAE,SAAsB,EAAK,EAAU,CAAC,UAAU,sDAAsD,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB,EAAK,GAA6D,CAAC,UAAU,EAAc,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,OAAO,CAAC,QAAQ,YAAY,MAAM,OAAO,EAAE,EAAE,EAAE,EAAe,EAAKY,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,EAAE,IAAA,GAAU,CAAC,UAAU,CAAC,EAAE,IAAA,GAAU,CAAC,CAAC,SAAsB,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,GAAmB,OAAO,QAAQ,GAAG,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,GAAG,SAAsB,EAAK,GAAmC,CAAC,QAAQ,GAAU,UAAU,2BAA2B,wBAAwB,UAAU,QAAQ,GAAW,OAAO,YAAY,UAAU,GAAK,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,KAAK,CAAC,SAAsB,EAAKA,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,YAAY,CAAC,CAAC,SAAsB,EAAKT,GAAiB,CAAC,UAAU,6FAA6F,UAAU,GAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,yBAAyB,UAAU,sBAAsB,UAAU,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,OAAO,qWAAqW,CAAC,IAAI,MAAM,CAAC,OAAO,OAAO,MAAM,OAAO,CAAC,QAAQ,YAAY,MAAM,OAAO,EAAE,EAAE,EAAE,EAAE,EAAe,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAsB,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAsB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAC,KAA6B,EAAK,MAAM,CAAC,UAAU,6CAA6C,mBAAmB,QAAQ,SAAsB,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc,EAAK,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,WAAW,EAAE,EAAE,UAAU,gBAAgB,MAAM,CAAC,QAAQ,CAAC,kBAAkB,MAAM,mBAAmB,GAAK,EAAe,EAAK,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAA,EAAqB,CAAC,SAAS,CAAc,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,yNAAyN,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAsB,EAAK,KAAK,CAAC,UAAU,iBAAiB,EAAE,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,qQAAqQ,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAsB,EAAK,KAAK,CAAC,UAAU,iBAAiB,EAAE,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,6TAA6T,EAAE,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,QAAQ,CAAC,kBAAkB,MAAM,mBAAmB,GAAK,EAAE,CAAC,EAAE,EAAE,KAA6B,EAAK,MAAM,CAAC,UAAU,8BAA8B,mBAAmB,QAAQ,SAAsB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc,EAAK,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,WAAW,EAAE,EAAE,UAAU,gBAAgB,MAAM,CAAC,QAAQ,CAAC,kBAAkB,MAAM,mBAAmB,GAAK,EAAe,EAAK,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAA,EAAqB,CAAC,SAAS,CAAc,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,+IAA+I,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAsB,EAAK,KAAK,CAAC,UAAU,iBAAiB,EAAE,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,kTAAkT,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAsB,EAAK,KAAK,CAAC,UAAU,iBAAiB,EAAE,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,8TAA8T,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAsB,EAAK,KAAK,CAAC,UAAU,iBAAiB,EAAE,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,2MAA2M,EAAE,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,QAAQ,CAAC,kBAAkB,MAAM,mBAAmB,GAAK,EAAE,CAAC,EAAE,EAAe,EAAKS,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,MAAM,OAAO,GAAmB,OAAO,QAAQ,kBAAkB,IAAI,uEAAuE,OAAO,uQAAuQ,CAAC,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,MAAM,WAAW,GAAmB,OAAO,QAAQ,kCAAkC,IAAI,uEAAuE,OAAO,uQAAuQ,CAAC,CAAC,CAAC,SAAsB,EAAKC,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,GAAG,YAAY,IAAI,WAAW,KAAK,MAAM,YAAY,GAAmB,OAAO,QAAQ,oCAAoC,IAAI,uEAAuE,OAAO,uQAAuQ,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,EAAE,EAAE,CAAC,EAAE,EAAE,EAAe,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,sBAAsB,SAAsB,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAsB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc,EAAKD,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,OAAO,GAAmB,OAAO,QAAQ,kBAAkB,IAAI,mEAAmE,OAAO,gKAAgK,CAAC,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,YAAY,GAAmB,OAAO,QAAQ,mCAAmC,IAAI,mEAAmE,OAAO,gKAAgK,CAAC,CAAC,CAAC,SAAsB,EAAKC,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,GAAG,YAAY,IAAI,WAAW,IAAI,MAAM,YAAY,GAAmB,OAAO,QAAQ,oCAAoC,IAAI,mEAAmE,OAAO,gKAAgK,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,EAAE,EAAe,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAc,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc,EAAK,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,sBAAsB,EAAE,EAAE,UAAU,gBAAgB,MAAM,CAAC,QAAQ,CAAC,kBAAkB,MAAM,mBAAmB,GAAK,EAAe,EAAK,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAA,EAAqB,CAAC,SAAS,CAAc,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,wdAAwd,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAsB,EAAK,KAAK,CAAC,UAAU,iBAAiB,EAAE,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,6CAA6C,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,gDAAgD,EAAE,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,QAAQ,CAAC,kBAAkB,MAAM,mBAAmB,GAAK,EAAE,CAAC,EAAe,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAK,EAAS,CAAC,YAAY,EAAE,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,uEAAuE,QAAQ,SAAS,OAAO,GAAG,aAAa,CAAC,gBAAgB,qEAAqE,aAAa,GAAG,MAAM,qBAAqB,IAAI,EAAE,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,CAAC,KAAK,6BAA6B,MAAM,OAAO,EAAE,EAAE,EAAe,EAAK,EAAK,CAAC,KAAK,uBAAuB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,8BAA8B,SAAsB,EAAK,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,uBAAuB,MAAM,sBAAsB,qBAAqB,CAAC,SAAS,gBAAgB,EAAE,EAAE,UAAU,gBAAgB,MAAM,CAAC,iBAAiB,CAAC,kBAAkB,MAAM,mBAAmB,GAAK,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,EAAE,EAAE,EAAe,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsB,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAsB,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAc,EAAKD,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAO,GAAmB,OAAO,QAAQ,kBAAkB,CAAC,UAAU,CAAC,OAAO,IAAA,GAAU,MAAM,OAAO,GAAmB,OAAO,QAAQ,kBAAkB,CAAC,CAAC,SAAsB,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,GAAmB,OAAO,QAAQ,mBAAmB,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKR,EAAO,CAAC,UAAU,GAAG,UAAU,wBAAwB,OAAO,OAAO,GAAG,YAAY,UAAU,GAAG,SAAS,YAAY,UAAU,GAAK,UAAU,GAAG,UAAU,2FAA2F,UAAU,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,OAAO,CAAC,UAAU,GAAM,UAAU,GAAG,QAAQ,YAAY,MAAM,OAAO,UAAU,kBAAkB,UAAU,GAAG,UAAU,GAAG,EAAE,EAAE,EAAE,EAAe,EAAKQ,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAO,GAAmB,OAAO,QAAQ,kBAAkB,CAAC,UAAU,CAAC,OAAO,IAAA,GAAU,MAAM,OAAO,GAAmB,OAAO,QAAQ,kBAAkB,CAAC,CAAC,SAAsB,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,GAAmB,OAAO,QAAQ,mBAAmB,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKR,EAAO,CAAC,UAAU,GAAG,UAAU,wBAAwB,OAAO,OAAO,GAAG,YAAY,UAAU,GAAG,SAAS,YAAY,UAAU,GAAK,UAAU,GAAG,UAAU,4GAA4G,UAAU,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,OAAO,CAAC,UAAU,GAAM,UAAU,GAAG,QAAQ,YAAY,MAAM,OAAO,UAAU,eAAe,UAAU,GAAG,UAAU,GAAG,EAAE,EAAE,EAAE,EAAe,EAAKQ,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAO,GAAmB,OAAO,QAAQ,kBAAkB,CAAC,UAAU,CAAC,OAAO,IAAA,GAAU,MAAM,OAAO,GAAmB,OAAO,QAAQ,kBAAkB,CAAC,CAAC,SAAsB,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,GAAmB,OAAO,QAAQ,mBAAmB,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKR,EAAO,CAAC,UAAU,GAAG,UAAU,wBAAwB,OAAO,OAAO,GAAG,YAAY,UAAU,GAAG,SAAS,YAAY,UAAU,GAAK,UAAU,GAAG,UAAU,8FAA8F,UAAU,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,OAAO,CAAC,UAAU,GAAM,UAAU,GAAG,QAAQ,YAAY,MAAM,OAAO,UAAU,YAAY,UAAU,GAAG,UAAU,GAAG,EAAE,EAAE,EAAE,EAAe,EAAKQ,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAO,GAAmB,OAAO,QAAQ,kBAAkB,CAAC,UAAU,CAAC,OAAO,IAAA,GAAU,MAAM,OAAO,GAAmB,OAAO,QAAQ,kBAAkB,CAAC,CAAC,SAAsB,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,GAAmB,OAAO,QAAQ,mBAAmB,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKR,EAAO,CAAC,UAAU,GAAG,UAAU,wBAAwB,OAAO,OAAO,GAAG,YAAY,UAAU,GAAG,SAAS,YAAY,UAAU,GAAK,UAAU,GAAG,UAAU,8HAA8H,UAAU,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,OAAO,CAAC,UAAU,GAAM,UAAU,GAAG,QAAQ,YAAY,MAAM,OAAO,UAAU,oBAAoB,UAAU,GAAG,UAAU,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAe,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAsB,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAsB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsB,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc,EAAK,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,cAAc,EAAE,EAAE,UAAU,gBAAgB,MAAM,CAAC,QAAQ,CAAC,kBAAkB,MAAM,mBAAmB,GAAK,EAAe,EAAKQ,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAqB,CAAC,SAAS,CAAc,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,sgBAAsgB,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAsB,EAAK,KAAK,CAAC,UAAU,iBAAiB,EAAE,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,+TAA+T,EAAE,CAAC,EAAE,CAAC,CAAC,SAAsB,EAAK,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAA,EAAqB,CAAC,SAAS,CAAc,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,sgBAAsgB,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAsB,EAAK,KAAK,CAAC,UAAU,iBAAiB,EAAE,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,+TAA+T,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAsB,EAAK,KAAK,CAAC,UAAU,iBAAiB,EAAE,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAsB,EAAK,KAAK,CAAC,UAAU,iBAAiB,EAAE,EAAE,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,QAAQ,CAAC,kBAAkB,MAAM,mBAAmB,GAAK,EAAE,EAAE,CAAC,EAAE,EAAe,EAAKA,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,GAAmB,OAAO,QAAQ,kBAAkB,IAAI,qEAAqE,OAAO,6VAA6V,CAAC,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,YAAY,GAAmB,OAAO,QAAQ,mCAAmC,IAAI,qEAAqE,OAAO,6VAA6V,CAAC,CAAC,CAAC,SAAsB,EAAKC,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,GAAG,YAAY,KAAK,WAAW,KAAK,MAAM,YAAY,GAAmB,OAAO,QAAQ,oCAAoC,IAAI,qEAAqE,OAAO,6VAA6V,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,EAAE,EAAE,CAAC,EAAE,EAAE,EAAe,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,uBAAuB,SAAsB,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAsB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc,EAAKD,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,uBAAuB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,GAAmB,OAAO,QAAQ,kBAAkB,IAAI,uEAAuE,OAAO,qWAAqW,CAAC,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,uBAAuB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,YAAY,GAAmB,OAAO,QAAQ,mCAAmC,IAAI,uEAAuE,OAAO,qWAAqW,CAAC,CAAC,CAAC,SAAsB,EAAKC,EAAM,CAAC,WAAW,CAAC,IAAI,uBAAuB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,GAAG,YAAY,KAAK,WAAW,KAAK,MAAM,YAAY,GAAmB,OAAO,QAAQ,oCAAoC,IAAI,uEAAuE,OAAO,qWAAqW,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,EAAE,EAAe,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsB,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc,EAAK,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,uBAAuB,EAAE,EAAE,UAAU,iBAAiB,MAAM,CAAC,QAAQ,CAAC,kBAAkB,MAAM,mBAAmB,GAAK,EAAe,EAAK,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAA,EAAqB,CAAC,SAAS,CAAc,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,oWAAoW,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAsB,EAAK,KAAK,CAAC,UAAU,iBAAiB,EAAE,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,6CAA6C,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAsB,EAAK,KAAK,CAAC,UAAU,iBAAiB,EAAE,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,kCAAqC,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,qCAAwC,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,oCAAuC,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,oCAAuC,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,kCAAqC,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAsB,EAAK,KAAK,CAAC,UAAU,iBAAiB,EAAE,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAsB,EAAK,KAAK,CAAC,UAAU,iBAAiB,EAAE,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAsB,EAAK,KAAK,CAAC,UAAU,iBAAiB,EAAE,EAAE,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,QAAQ,CAAC,kBAAkB,MAAM,mBAAmB,GAAK,EAAE,CAAC,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,KAA6B,EAAM,SAAS,CAAC,UAAU,6CAA6C,mBAAmB,QAAQ,SAAS,CAAc,EAAK,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,eAAe,CAAC,SAAS,qCAAqC,EAAE,EAAE,UAAU,gBAAgB,MAAM,CAAC,QAAQ,CAAC,kBAAkB,MAAM,mBAAmB,GAAK,EAAe,EAAK,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAA,EAAqB,CAAC,SAAS,CAAc,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAsB,EAAK,KAAK,CAAC,UAAU,iBAAiB,EAAE,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,+lBAA+lB,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAsB,EAAK,KAAK,CAAC,UAAU,iBAAiB,EAAE,EAAE,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,QAAQ,CAAC,kBAAkB,MAAM,mBAAmB,GAAK,EAAe,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKR,EAAQ,CAAC,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,MAAM,GAAK,SAAS,YAAY,KAAK,MAAM,WAAW,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,OAAO,CAAC,UAAU,iBAAiB,cAAc,EAAE,eAAe,EAAE,IAAI,mDAAmD,MAAM,OAAO,EAAE,EAAE,EAAe,EAAK,MAAM,CAAC,UAAU,gBAAgB,EAAE,CAAC,EAAE,KAA6B,EAAM,SAAS,CAAC,UAAU,8BAA8B,mBAAmB,QAAQ,SAAS,CAAc,EAAK,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,eAAe,CAAC,SAAS,qCAAqC,EAAE,EAAE,UAAU,gBAAgB,MAAM,CAAC,QAAQ,CAAC,kBAAkB,MAAM,mBAAmB,GAAK,EAAe,EAAK,EAAS,CAAC,sBAAsB,GAAK,SAAsB,EAAA,EAAqB,CAAC,SAAS,CAAc,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAsB,EAAK,KAAK,CAAC,UAAU,iBAAiB,EAAE,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,+lBAA+lB,EAAe,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAsB,EAAK,KAAK,CAAC,UAAU,iBAAiB,EAAE,EAAE,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,QAAQ,CAAC,kBAAkB,MAAM,mBAAmB,GAAK,EAAe,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKA,EAAQ,CAAC,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,MAAM,GAAK,SAAS,YAAY,KAAK,MAAM,WAAW,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,OAAO,CAAC,UAAU,iBAAiB,cAAc,EAAE,eAAe,EAAE,IAAI,mDAAmD,MAAM,OAAO,EAAE,EAAE,EAAe,EAAK,MAAM,CAAC,UAAU,gBAAgB,EAAE,CAAC,EAAe,EAAKO,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQ,GAAmB,OAAO,QAAQ,YAAY,EAAE,IAAA,GAAU,CAAC,UAAU,CAAC,EAAE,IAAA,GAAU,CAAC,CAAC,SAAsB,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,GAAmB,OAAO,QAAQ,GAAG,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,KAAK,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKA,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,YAAY,CAAC,UAAU,CAAC,QAAQ,YAAY,CAAC,CAAC,SAAsB,EAAKN,EAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,OAAO,CAAC,QAAQ,YAAY,MAAM,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAe,EAAKM,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,IAAA,GAAU,CAAC,UAAU,CAAC,EAAE,IAAA,GAAU,CAAC,CAAC,SAAsB,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,GAAmB,OAAO,QAAQ,GAAG,GAAmB,GAAG,GAAG,EAAE,KAAK,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKA,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,YAAY,CAAC,UAAU,CAAC,QAAQ,YAAY,CAAC,CAAC,SAAsB,EAAKL,EAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,OAAO,CAAC,QAAQ,YAAY,MAAM,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAe,EAAK,MAAM,CAAC,GAAG,UAAU,EAAE,CAAC,EAAE,CAAG,GAAQ,GAAI,CAAC,kFAAkF,gFAAgF,sVAAsV,oHAAoH,8HAA8H,oRAAoR,6HAA6H,6PAA6P,oSAAoS,2ZAA2Z,0QAA0Q,giBAAgiB,yWAAyW,uaAAua,4kBAA4kB,kPAAkP,iiBAAiiB,+XAA+X,sUAAsU,ujBAAujB,kRAAkR,yGAAyG,kZAAkZ,uNAAuN,+QAA+Q,+bAA+b,sOAAsO,kRAAkR,8iBAA8iB,2TAA2T,gSAAgS,wOAAwO,0GAA0G,mVAAmV,oTAAoT,4GAA4G,kJAAkJ,GAAA,EAAmB,GAAA,EAAoB,GAAA,GAAoB,6gCAA6gC,2mEAA2mE,CAa1nvD,EAAgB,GAAQ,GAAU,GAAI,gBAA+C,EAAgB,YAAY,oBAAoB,EAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,KAAK,CAAC,EAAS,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,yEAAyE,OAAO,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,MAAM,CAAC,CAAC,CAAC,GAAG,GAA2B,GAAG,GAAwB,GAAG,GAAyB,GAAG,GAAsB,GAAG,GAAc,GAAG,GAAY,GAAG,GAAa,GAAG,GAAc,GAAG,GAAe,GAAG,EAAA,GAA2C,GAAG,EAAA,GAA4C,GAAG,EAAA,IAA4C,CAAC,CAAC,6BAA6B,GAAK,EAClqH,EAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,EAAE,CAAC,YAAc,CAAC,yBAA2B,QAAQ,qBAAuB,OAAO,qBAAuB,4BAA4B,6BAA+B,OAAO,sBAAwB,IAAI,4BAA8B,OAAO,oCAAsC,4JAA0L,yBAA2B,OAAO,kBAAoB,OAAO,sBAAwB,OAAO,qBAAuB,OAAO,CAAC,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,IAAI,CAAC,CAAC,mBAAqB,CAAC,KAAO,WAAW,CAAC,CAAC"}