{"version":3,"file":"UyrWtpheS.BNuaSX3U.mjs","names":["progress","start","end","isSelected","dotStyle","addPropertyOverrides","MaterialFonts","Material","enabledGestures","cycleOrder","serializationHash","variantClassNames","transition1","toResponsiveImage","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","Image","RichText","css","__FramerMetadata__","fonts","css","className","fonts","css","className","addPropertyOverrides","Global_ButtonFonts","Global_Button","Global_ButtonInfo","cycleOrder","serializationHash","variantClassNames","transition1","transformTemplate1","transformTemplate2","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","RichText","css","serializationHash","variantClassNames","transition1","toResponsiveImage","Transition","Variants","getProps","createLayoutDependency","Component","className","Image","css","addPropertyOverrides","Home_AppList_AppIcon","Home_AppList_AppIconInfo","Global_ButtonFonts","Global_Button","Global_ButtonInfo","cycleOrder","serializationHash","variantClassNames","transition1","transformTemplate1","transformTemplate2","toResponsiveImage","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","Image","RichText","css","fonts","css","className","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","toResponsiveImage","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","RichText","Image","css","addPropertyOverrides","Material","Global_ButtonFonts","Global_Button","Global_ButtonInfo","enabledGestures","cycleOrder","serializationHash","variantClassNames","transition1","toResponsiveImage","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","Image","className","RichText","css","__FramerMetadata__","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","toResponsiveImage","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","Image","css","fonts","css","className","Global_Button","Global_ButtonInfo","Image","className","RichText","css"],"sources":["https:/framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js","https:/framerusercontent.com/modules/2ZXSzNFF4H2VNEDoJnYa/JxafvMm3b5lYPLViZKYZ/BsKixe5Cn.js","https:/framerusercontent.com/modules/s7VflSTEVmJ5WiMLROrR/kVcSEYJ3dothvanzZzrk/rgvzP8QHm.js","https:/framerusercontent.com/modules/GtUknWq2wmCt8cLdmmvU/dqNpAdZW5H7Tomt1Ifzh/X82eKqeAg.js","https:/framerusercontent.com/modules/OprTXzywkdd9IiIlHgv4/ApW9Zpvt80OAiqTbeltU/eA11P_Jmg.js","https:/framerusercontent.com/modules/EqVqbxpse7BS7V1mpLOo/HOyXVXAsk1eEg8FpwCTX/EGECu0gzA.js","https:/framerusercontent.com/modules/ycE6pBgfySNPrWD1enCo/9wuE0RnPh8LQffpySPQ0/Ii4QR9MrW.js","https:/framerusercontent.com/modules/0n0tGCZuKERH0XSqqaBH/1CjMIpOqn1dOPIgA491F/gN8nO_xJR.js","https:/framerusercontent.com/modules/8e8KhNrbdlY1Sf5BpaOU/oWWyrUND8trlq8VoS2wB/jRK2gWUun.js","https:/framerusercontent.com/modules/C43sWWyfgEnS5FYCq1qS/zsjgHrEVzJkHq9D1mpQn/rN28uQIMx.js","https:/framerusercontent.com/modules/LEMLDKkRF7mjB1ywbkn8/QSQfgevdy6ZKXDR4G6V1/s53CUXh1v.js","https:/framerusercontent.com/modules/Wns2FBrAK6lSRUsiLncP/XMgxKwYi6ALdbr1uVTsa/x9RikGskl.js","https:/framerusercontent.com/modules/eNpbEGpmFyu7pYuYAy6b/fiwNvHFHRxXwVJ3AWBgE/UyrWtpheS.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */ function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */ function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */ function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */ const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */ const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */ if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){const numItems=Children.count(slots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */ const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */ const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */ const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */ const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */ const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth,],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */ const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */ const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start:start1,end:end1}=itemSizes.current[i];if(end1<current||start1>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows — Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */ let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */ if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility1=progress(start,end,target);if(visibility1>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */ if(numItems===0){return /*#__PURE__*/ _jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/ _jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/ _jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(slots,(child,index)=>{var ref;/*#__PURE__*/ return _jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/ cloneElement(child,{...child.props,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,...childStyle}})});})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/ _jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/ _jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/ _jsx(MouseStyles,{})]});};/* Default Properties */ Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */ addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var ref,ref1;if(!((ref=scrollInfo.current)===null||ref===void 0?void 0:ref.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((ref1=scrollInfo.current)===null||ref1===void 0?void 0:ref1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/ _jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/ _jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"✨\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/ _jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */ const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */ const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map","// Generated by Framer (a2a31b0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import{stepsOfLarkClick}from\"https://framerusercontent.com/modules/OwFQ4dpHnsYAdogwIEzb/SesVHYGgjIbD7dZ8KJDO/StorylineTracking.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/DAMMloKvuzZqMdKBrPPJ/56lg0djcMKbTeuOa3A2n/ikm7JuTuk.js\";const MaterialFonts=getFonts(Material);const MotionDivStepsOfLarkClickvppp4b=withCodeBoundaryForOverrides(motion.div,{nodeId:\"LH6wexpxN\",override:stepsOfLarkClick,scopeId:\"BsKixe5Cn\"});const enabledGestures={oDH9bYl9a:{hover:true}};const cycleOrder=[\"oDH9bYl9a\",\"TQJGQ9wrM\",\"FtX9wJ6e2\"];const serializationHash=\"framer-bNt7V\";const variantClassNames={FtX9wJ6e2:\"framer-v-4rxco9\",oDH9bYl9a:\"framer-v-22t5bk\",TQJGQ9wrM:\"framer-v-bubd2b\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"oDH9bYl9a\",\"Variant 3\":\"FtX9wJ6e2\",Mobile:\"TQJGQ9wrM\"};const getProps=({content,height,id,jobTitle,link,logo,name1,profile,tap,width,...props})=>{return{...props,AmpWeEKxM:content??props.AmpWeEKxM??\"ECで靴の小売りを行っている株式会社ザカモア。Lark の活用によって、社員の生産性向上とともに、風通しの良い社風を実現しています。「Lark は効率的なコミュニケーションと業務効率化を実現するための必要不可欠なツールとなっています。社員同士のコミュニケーションが円滑になり、情報共有がスムーズになったことで、業務プロセスの改善にもつながっています。」\",BE_GpjUYY:tap??props.BE_GpjUYY,eBy_jbXQv:profile??props.eBy_jbXQv??{src:\"https://framerusercontent.com/images/x4fFgsTfJf3x7zL3Qkf99EveF10.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/x4fFgsTfJf3x7zL3Qkf99EveF10.png?scale-down-to=512 512w,https://framerusercontent.com/images/x4fFgsTfJf3x7zL3Qkf99EveF10.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/x4fFgsTfJf3x7zL3Qkf99EveF10.png 1282w\"},KFYpOQxB5:jobTitle??props.KFYpOQxB5??\"グループ副社長\",sTwe9T43y:name1??props.sTwe9T43y??\"菅原 亮平様\",variant:humanReadableVariantMap[props.variant]??props.variant??\"oDH9bYl9a\",vcNkrQTsN:link??props.vcNkrQTsN,ZCiFj6I_q:logo??props.ZCiFj6I_q??{src:\"https://framerusercontent.com/images/G6WTOlmOPKvC1vHvQMQasyNk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/G6WTOlmOPKvC1vHvQMQasyNk.png?scale-down-to=512 512w,https://framerusercontent.com/images/G6WTOlmOPKvC1vHvQMQasyNk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/G6WTOlmOPKvC1vHvQMQasyNk.png 1264w\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,eBy_jbXQv,sTwe9T43y,KFYpOQxB5,ZCiFj6I_q,AmpWeEKxM,vcNkrQTsN,BE_GpjUYY,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oDH9bYl9a\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTape0kk2f=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(BE_GpjUYY){const res=await BE_GpjUYY(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:vcNkrQTsN,motionChild:true,nodeId:\"oDH9bYl9a\",openInNewTab:false,scopeId:\"BsKixe5Cn\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-22t5bk\",className,classNames)} framer-1y57cxu`,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"oDH9bYl9a\",onTap:onTape0kk2f,ref:refBinding,style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"none\",...style},variants:{\"oDH9bYl9a-hover\":{boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.17997), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625)\"}},...addPropertyOverrides({\"oDH9bYl9a-hover\":{\"data-framer-name\":undefined},FtX9wJ6e2:{\"data-framer-name\":\"Variant 3\"},TQJGQ9wrM:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bn6kic\",layoutDependency:layoutDependency,layoutId:\"PwzRCutvk\",style:{backgroundColor:\"rgba(255, 255, 255, 0.9)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12xvsgr\",layoutDependency:layoutDependency,layoutId:\"EnmxwBHEX\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r4jmtf\",layoutDependency:layoutDependency,layoutId:\"x4LpunGBz\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1156,intrinsicWidth:1282,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+24+0+0+0+6),pixelHeight:1156,pixelWidth:1282,sizes:\"122px\",...toResponsiveImage(eBy_jbXQv)},className:\"framer-104cv59\",layoutDependency:layoutDependency,layoutId:\"gygenSR5Y\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},...addPropertyOverrides({FtX9wJ6e2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1156,intrinsicWidth:1282,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+24+0+0+0+6),pixelHeight:1156,pixelWidth:1282,sizes:\"102px\",...toResponsiveImage(eBy_jbXQv)}},TQJGQ9wrM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1156,intrinsicWidth:1282,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+24+0+0+0+0),pixelHeight:1156,pixelWidth:1282,sizes:\"92px\",...toResponsiveImage(eBy_jbXQv)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n8ojpe\",layoutDependency:layoutDependency,layoutId:\"t9rYB3Ic_\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTcwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)))\"},children:\"菅原 亮平様\"})}),className:\"framer-1c4uczn\",fonts:[\"GF;Noto Sans JP-700\"],layoutDependency:layoutDependency,layoutId:\"L3_uXkpU4\",style:{\"--extracted-a0htzi\":\"var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:sTwe9T43y,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:\"グループ副社長\"})}),className:\"framer-199i1uo\",fonts:[\"GF;Noto Sans JP-500\"],layoutDependency:layoutDependency,layoutId:\"nKUcTmgsR\",style:{\"--extracted-a0htzi\":\"var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:KFYpOQxB5,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:137,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+24+0+0+0+0+0+78),pixelHeight:137,pixelWidth:512,sizes:\"120px\",...toResponsiveImage(ZCiFj6I_q),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-13jjdu6\",layoutDependency:layoutDependency,layoutId:\"rbW6V5bn3\",...addPropertyOverrides({FtX9wJ6e2:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:137,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+24+0+0+0+0+0+58),pixelHeight:137,pixelWidth:512,sizes:\"90px\",...toResponsiveImage(ZCiFj6I_q),...{positionX:\"center\",positionY:\"center\"}}},TQJGQ9wrM:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:137,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+24+0+0+0+0+0+58),pixelHeight:137,pixelWidth:512,sizes:\"90px\",...toResponsiveImage(ZCiFj6I_q),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-77b05d\",\"data-framer-name\":\"divider\",layoutDependency:layoutDependency,layoutId:\"r9H8VPLBq\",style:{background:\"linear-gradient(90deg, rgb(65, 164, 255) 0%, rgb(99, 143, 255) 51.35135135135135%, rgb(149, 84, 255) 100%)\",opacity:.5}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nzdbbn\",layoutDependency:layoutDependency,layoutId:\"TNTaObAXO\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)))\"},children:\"ECで靴の小売りを行っている株式会社ザカモア。Lark の活用によって、社員の生産性向上とともに、風通しの良い社風を実現しています。「Lark は効率的なコミュニケーションと業務効率化を実現するための必要不可欠なツールとなっています。社員同士のコミュニケーションが円滑になり、情報共有がスムーズになったことで、業務プロセスの改善にもつながっています。」\"})}),className:\"framer-ue73fo\",fonts:[\"GF;Noto Sans JP-regular\"],layoutDependency:layoutDependency,layoutId:\"LocYCsz1d\",style:{\"--extracted-a0htzi\":\"var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"8px\"},text:AmpWeEKxM,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivStepsOfLarkClickvppp4b,{className:\"framer-vppp4b\",\"data-framer-name\":\"Global_Button\",layoutDependency:layoutDependency,layoutId:\"LH6wexpxN\",style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-91fca6\",\"data-styles-preset\":\"ikm7JuTuk\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c35d3ec6-90ac-4a43-90e6-a37deb90809c, rgb(51, 112, 255)))\"},children:\"導入事例を見る\"})}),className:\"framer-1wjx6w8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wQkjUvefF\",style:{\"--extracted-r6o4lv\":\"var(--token-c35d3ec6-90ac-4a43-90e6-a37deb90809c, rgb(51, 112, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-29iihe-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"n9K90xKA3-container\",nodeId:\"n9K90xKA3\",rendersWithMotion:true,scopeId:\"BsKixe5Cn\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c35d3ec6-90ac-4a43-90e6-a37deb90809c, rgb(51, 112, 255))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowForward\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"n9K90xKA3\",layoutId:\"n9K90xKA3\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bNt7V.framer-1y57cxu, .framer-bNt7V .framer-1y57cxu { display: block; }\",\".framer-bNt7V.framer-22t5bk { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 452px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 368px; }\",\".framer-bNt7V .framer-bn6kic { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 100%; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-bNt7V .framer-12xvsgr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bNt7V .framer-1r4jmtf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bNt7V .framer-104cv59 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 122px); position: relative; width: 122px; }\",\".framer-bNt7V .framer-1n8ojpe { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-bNt7V .framer-1c4uczn { flex: none; height: auto; max-height: 1000px; position: relative; white-space: pre; width: auto; }\",\".framer-bNt7V .framer-199i1uo { flex: none; height: 44px; max-height: 1000px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bNt7V .framer-13jjdu6 { flex: none; height: 56px; overflow: hidden; position: relative; width: 120px; z-index: 1; }\",\".framer-bNt7V .framer-77b05d { flex: none; height: 1px; overflow: visible; position: relative; width: 102%; }\",\".framer-bNt7V .framer-1nzdbbn { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bNt7V .framer-ue73fo { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bNt7V .framer-vppp4b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 200px; }\",\".framer-bNt7V .framer-1wjx6w8 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-bNt7V .framer-29iihe-container { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bNt7V.framer-22t5bk, .framer-bNt7V .framer-bn6kic, .framer-bNt7V .framer-12xvsgr, .framer-bNt7V .framer-1r4jmtf, .framer-bNt7V .framer-1n8ojpe, .framer-bNt7V .framer-1nzdbbn, .framer-bNt7V .framer-vppp4b { gap: 0px; } .framer-bNt7V.framer-22t5bk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-bNt7V.framer-22t5bk > :first-child, .framer-bNt7V .framer-bn6kic > :first-child, .framer-bNt7V .framer-12xvsgr > :first-child, .framer-bNt7V .framer-1n8ojpe > :first-child, .framer-bNt7V .framer-1nzdbbn > :first-child { margin-top: 0px; } .framer-bNt7V.framer-22t5bk > :last-child, .framer-bNt7V .framer-bn6kic > :last-child, .framer-bNt7V .framer-12xvsgr > :last-child, .framer-bNt7V .framer-1n8ojpe > :last-child, .framer-bNt7V .framer-1nzdbbn > :last-child { margin-bottom: 0px; } .framer-bNt7V .framer-bn6kic > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-bNt7V .framer-12xvsgr > *, .framer-bNt7V .framer-1nzdbbn > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-bNt7V .framer-1r4jmtf > *, .framer-bNt7V .framer-vppp4b > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-bNt7V .framer-1r4jmtf > :first-child, .framer-bNt7V .framer-vppp4b > :first-child { margin-left: 0px; } .framer-bNt7V .framer-1r4jmtf > :last-child, .framer-bNt7V .framer-vppp4b > :last-child { margin-right: 0px; } .framer-bNt7V .framer-1n8ojpe > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } }\",\".framer-bNt7V.framer-v-bubd2b.framer-22t5bk, .framer-bNt7V.framer-v-4rxco9.framer-22t5bk { width: 300px; }\",\".framer-bNt7V.framer-v-bubd2b .framer-bn6kic, .framer-bNt7V.framer-v-4rxco9 .framer-bn6kic { padding: 24px 12px 24px 12px; }\",\".framer-bNt7V.framer-v-bubd2b .framer-12xvsgr, .framer-bNt7V.framer-v-4rxco9 .framer-12xvsgr { gap: 0px; }\",\".framer-bNt7V.framer-v-bubd2b .framer-1r4jmtf { align-content: flex-start; align-items: flex-start; gap: 6px; }\",\".framer-bNt7V.framer-v-bubd2b .framer-104cv59 { height: var(--framer-aspect-ratio-supported, 92px); width: 92px; }\",\".framer-bNt7V.framer-v-bubd2b .framer-199i1uo, .framer-bNt7V.framer-v-4rxco9 .framer-199i1uo { height: auto; }\",\".framer-bNt7V.framer-v-bubd2b .framer-13jjdu6, .framer-bNt7V.framer-v-4rxco9 .framer-13jjdu6 { width: 90px; }\",\".framer-bNt7V.framer-v-bubd2b .framer-1wjx6w8, .framer-bNt7V.framer-v-4rxco9 .framer-1wjx6w8 { order: 0; }\",\".framer-bNt7V.framer-v-bubd2b .framer-29iihe-container, .framer-bNt7V.framer-v-4rxco9 .framer-29iihe-container { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bNt7V.framer-v-bubd2b .framer-12xvsgr, .framer-bNt7V.framer-v-bubd2b .framer-1r4jmtf { gap: 0px; } .framer-bNt7V.framer-v-bubd2b .framer-12xvsgr > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-bNt7V.framer-v-bubd2b .framer-12xvsgr > :first-child { margin-top: 0px; } .framer-bNt7V.framer-v-bubd2b .framer-12xvsgr > :last-child { margin-bottom: 0px; } .framer-bNt7V.framer-v-bubd2b .framer-1r4jmtf > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-bNt7V.framer-v-bubd2b .framer-1r4jmtf > :first-child { margin-left: 0px; } .framer-bNt7V.framer-v-bubd2b .framer-1r4jmtf > :last-child { margin-right: 0px; } }\",\".framer-bNt7V.framer-v-4rxco9 .framer-1r4jmtf { gap: 2px; }\",\".framer-bNt7V.framer-v-4rxco9 .framer-104cv59 { height: var(--framer-aspect-ratio-supported, 102px); width: 102px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bNt7V.framer-v-4rxco9 .framer-12xvsgr, .framer-bNt7V.framer-v-4rxco9 .framer-1r4jmtf { gap: 0px; } .framer-bNt7V.framer-v-4rxco9 .framer-12xvsgr > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-bNt7V.framer-v-4rxco9 .framer-12xvsgr > :first-child { margin-top: 0px; } .framer-bNt7V.framer-v-4rxco9 .framer-12xvsgr > :last-child { margin-bottom: 0px; } .framer-bNt7V.framer-v-4rxco9 .framer-1r4jmtf > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-bNt7V.framer-v-4rxco9 .framer-1r4jmtf > :first-child { margin-left: 0px; } .framer-bNt7V.framer-v-4rxco9 .framer-1r4jmtf > :last-child { margin-right: 0px; } }\",\".framer-bNt7V.framer-v-22t5bk.hover .framer-vppp4b { gap: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bNt7V.framer-v-22t5bk.hover .framer-vppp4b { gap: 0px; } .framer-bNt7V.framer-v-22t5bk.hover .framer-vppp4b > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-bNt7V.framer-v-22t5bk.hover .framer-vppp4b > :first-child { margin-left: 0px; } .framer-bNt7V.framer-v-22t5bk.hover .framer-vppp4b > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 452\n * @framerIntrinsicWidth 368\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"TQJGQ9wrM\":{\"layout\":[\"fixed\",\"fixed\"]},\"FtX9wJ6e2\":{\"layout\":[\"fixed\",\"fixed\"]},\"XgJTDSnE_\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"eBy_jbXQv\":\"profile\",\"sTwe9T43y\":\"name1\",\"KFYpOQxB5\":\"jobTitle\",\"ZCiFj6I_q\":\"logo\",\"AmpWeEKxM\":\"content\",\"vcNkrQTsN\":\"link\",\"BE_GpjUYY\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBsKixe5Cn=withCSS(Component,css,\"framer-bNt7V\");export default FramerBsKixe5Cn;FramerBsKixe5Cn.displayName=\"Customer Story Card\";FramerBsKixe5Cn.defaultProps={height:452,width:368};addPropertyControls(FramerBsKixe5Cn,{variant:{options:[\"oDH9bYl9a\",\"TQJGQ9wrM\",\"FtX9wJ6e2\"],optionTitles:[\"Variant 1\",\"Mobile\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},eBy_jbXQv:{__defaultAssetReference:\"data:framer/asset-reference,x4fFgsTfJf3x7zL3Qkf99EveF10.png?originalFilename=Screenshot+2023-12-12+at+19.32.51.png&preferredSize=auto\",title:\"Profile\",type:ControlType.ResponsiveImage},sTwe9T43y:{defaultValue:\"菅原 亮平様\",displayTextArea:false,title:\"Name\",type:ControlType.String},KFYpOQxB5:{defaultValue:\"グループ副社長\",displayTextArea:false,title:\"Job Title\",type:ControlType.String},ZCiFj6I_q:{__defaultAssetReference:\"data:framer/asset-reference,G6WTOlmOPKvC1vHvQMQasyNk.png?originalFilename=Screenshot+2023-12-12+at+19.37.44.png&preferredSize=auto\",title:\"Logo\",type:ControlType.ResponsiveImage},AmpWeEKxM:{defaultValue:\"ECで靴の小売りを行っている株式会社ザカモア。Lark の活用によって、社員の生産性向上とともに、風通しの良い社風を実現しています。「Lark は効率的なコミュニケーションと業務効率化を実現するための必要不可欠なツールとなっています。社員同士のコミュニケーションが円滑になり、情報共有がスムーズになったことで、業務プロセスの改善にもつながっています。」\",displayTextArea:true,title:\"Content\",type:ControlType.String},vcNkrQTsN:{title:\"Link\",type:ControlType.Link},BE_GpjUYY:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerBsKixe5Cn,[{explicitInter:true,fonts:[{family:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v53/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFPYk757Y0rw-oME.woff2\",weight:\"700\"},{family:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v53/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFCMj757Y0rw-oME.woff2\",weight:\"500\"},{family:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v53/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEj757Y0rw-oME.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/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\"}]},...MaterialFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBsKixe5Cn\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"452\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TQJGQ9wrM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FtX9wJ6e2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XgJTDSnE_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"eBy_jbXQv\\\":\\\"profile\\\",\\\"sTwe9T43y\\\":\\\"name1\\\",\\\"KFYpOQxB5\\\":\\\"jobTitle\\\",\\\"ZCiFj6I_q\\\":\\\"logo\\\",\\\"AmpWeEKxM\\\":\\\"content\\\",\\\"vcNkrQTsN\\\":\\\"link\\\",\\\"BE_GpjUYY\\\":\\\"tap\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"368\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BsKixe5Cn.map","import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Noto Sans JP-900\",\"GF;Noto Sans JP-900\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFLgk757Y0rw-oME.woff2\",weight:\"900\"}]}];export const css=['.framer-zG9tg .framer-styles-preset-h2swgp:not(.rich-text-wrapper), .framer-zG9tg .framer-styles-preset-h2swgp.rich-text-wrapper h6 { --framer-font-family: \"Noto Sans JP\", sans-serif; --framer-font-family-bold: \"Noto Sans JP\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 900; --framer-font-weight-bold: 900; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 12px; --framer-text-alignment: left; --framer-text-color: var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, #1f2329); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1239px) and (min-width: 905px) { .framer-zG9tg .framer-styles-preset-h2swgp:not(.rich-text-wrapper), .framer-zG9tg .framer-styles-preset-h2swgp.rich-text-wrapper h6 { --framer-font-family: \"Noto Sans JP\", sans-serif; --framer-font-family-bold: \"Noto Sans JP\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 900; --framer-font-weight-bold: 900; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 12px; --framer-text-alignment: left; --framer-text-color: var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, #1f2329); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 904px) and (min-width: 600px) { .framer-zG9tg .framer-styles-preset-h2swgp:not(.rich-text-wrapper), .framer-zG9tg .framer-styles-preset-h2swgp.rich-text-wrapper h6 { --framer-font-family: \"Noto Sans JP\", sans-serif; --framer-font-family-bold: \"Noto Sans JP\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 900; --framer-font-weight-bold: 900; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 12px; --framer-text-alignment: left; --framer-text-color: var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, #1f2329); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 599px) and (min-width: 0px) { .framer-zG9tg .framer-styles-preset-h2swgp:not(.rich-text-wrapper), .framer-zG9tg .framer-styles-preset-h2swgp.rich-text-wrapper h6 { --framer-font-family: \"Noto Sans JP\", sans-serif; --framer-font-family-bold: \"Noto Sans JP\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 900; --framer-font-weight-bold: 900; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 12px; --framer-text-alignment: left; --framer-text-color: var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, #1f2329); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-zG9tg\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Noto Sans JP-500\",\"GF;Noto Sans JP-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFCMj757Y0rw-oME.woff2\",weight:\"500\"},{family:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFPYk757Y0rw-oME.woff2\",weight:\"700\"}]}];export const css=['.framer-UGujo .framer-styles-preset-jg60nb:not(.rich-text-wrapper), .framer-UGujo .framer-styles-preset-jg60nb.rich-text-wrapper p { --framer-font-family: \"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif; --framer-font-family-bold: \"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 12px; --framer-text-alignment: left; --framer-text-color: var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, #646a73); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1239px) and (min-width: 905px) { .framer-UGujo .framer-styles-preset-jg60nb:not(.rich-text-wrapper), .framer-UGujo .framer-styles-preset-jg60nb.rich-text-wrapper p { --framer-font-family: \"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif; --framer-font-family-bold: \"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 12px; --framer-text-alignment: left; --framer-text-color: var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, #646a73); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 904px) and (min-width: 600px) { .framer-UGujo .framer-styles-preset-jg60nb:not(.rich-text-wrapper), .framer-UGujo .framer-styles-preset-jg60nb.rich-text-wrapper p { --framer-font-family: \"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif; --framer-font-family-bold: \"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 8px; --framer-text-alignment: left; --framer-text-color: var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, #646a73); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 599px) and (min-width: 0px) { .framer-UGujo .framer-styles-preset-jg60nb:not(.rich-text-wrapper), .framer-UGujo .framer-styles-preset-jg60nb.rich-text-wrapper p { --framer-font-family: \"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif; --framer-font-family-bold: \"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 8px; --framer-text-alignment: left; --framer-text-color: var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, #646a73); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-UGujo\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (5a05c4f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{stepsOfLarkClick}from\"https://framerusercontent.com/modules/OwFQ4dpHnsYAdogwIEzb/SesVHYGgjIbD7dZ8KJDO/StorylineTracking.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/s7VflSTEVmJ5WiMLROrR/kVcSEYJ3dothvanzZzrk/rgvzP8QHm.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/GtUknWq2wmCt8cLdmmvU/dqNpAdZW5H7Tomt1Ifzh/X82eKqeAg.js\";import Global_Button,*as Global_ButtonInfo from\"https://framerusercontent.com/modules/j47mFgAwYb60jec2Gb5c/AfEx4akfvvwe7tpxdHjg/AyKc2Aday.js\";const Global_ButtonFonts=getFonts(Global_Button);const Global_ButtonStepsOfLarkClickqyef0jWithMappedReactPropsqzim95=withMappedReactProps(withCodeBoundaryForOverrides(Global_Button,{nodeId:\"kdBBhrTAE\",override:stepsOfLarkClick,scopeId:\"eA11P_Jmg\"}),Global_ButtonInfo);const cycleOrder=[\"dozFgcYAb\",\"ytXMXqdYN\"];const serializationHash=\"framer-HOKMC\";const variantClassNames={dozFgcYAb:\"framer-v-6x9247\",ytXMXqdYN:\"framer-v-r341dw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"On pricing page\":\"ytXMXqdYN\",\"Variant 1\":\"dozFgcYAb\"};const getProps=({content,height,id,link,linkVisible,step,title,width,...props})=>{return{...props,fe9F3bX3B:link??props.fe9F3bX3B,k5q96vaGN:title??props.k5q96vaGN??\"営業にお問合せ\",PKGeSSudT:content??props.PKGeSSudT??\"お客様の情報を入力し、簡単な導入検討のきっかけなどをフォームより送信してください。\",TKyehPQQl:step??props.TKyehPQQl??\"01\",tvFJruC0v:linkVisible??props.tvFJruC0v??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"dozFgcYAb\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,TKyehPQQl,k5q96vaGN,PKGeSSudT,tvFJruC0v,fe9F3bX3B,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dozFgcYAb\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-6x9247\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"dozFgcYAb\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.04), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.03), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.01)\",...style},variants:{ytXMXqdYN:{boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06)\"}},...addPropertyOverrides({ytXMXqdYN:{\"data-framer-name\":\"On pricing page\"}},baseVariant,gestureVariant),children:[tvFJruC0v&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1136j8q\",layoutDependency:layoutDependency,layoutId:\"m1g645qBU\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+(componentViewport?.height||310)-69+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qyef0j-container\",layoutDependency:layoutDependency,layoutId:\"kdBBhrTAE-container\",nodeId:\"kdBBhrTAE\",rendersWithMotion:true,scopeId:\"eA11P_Jmg\",children:/*#__PURE__*/_jsx(Global_ButtonStepsOfLarkClickqyef0jWithMappedReactPropsqzim95,{G8TptyYBv:\"Download\",height:\"100%\",id:\"kdBBhrTAE\",kXScVjI8w:fe9F3bX3B,layoutId:\"kdBBhrTAE\",PgP_e5X9h:\"お問い合わせはこちら\",variant:\"oqbgLHn_F\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jg60nb\",\"data-styles-preset\":\"X82eKqeAg\",children:\"お客様の情報を入力し、簡単な導入検討のきっかけなどをフォームより送信してください。\"})}),className:\"framer-jmjnku\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AM6zFivo4\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:PKGeSSudT,transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-h2swgp\",\"data-styles-preset\":\"rgvzP8QHm\",children:\"営業にお問合せ\"})}),className:\"framer-b19xlc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xKIm3Eg56\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:k5q96vaGN,transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10x28tw\",layoutDependency:layoutDependency,layoutId:\"yp4umrvmQ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-l14z9g\",layoutDependency:layoutDependency,layoutId:\"oX7P1JWEU\",style:{background:\"linear-gradient(138deg, rgb(51, 214, 192) 0%, rgb(80, 131, 251) 24.31376689189189%, rgb(51, 109, 244) 48.52899774774775%, rgb(71, 82, 230) 71.5917088963964%, rgb(141, 85, 237) 100%)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xj23t2\",layoutDependency:layoutDependency,layoutId:\"XkFNTQtKM\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(89deg, rgb(65, 164, 255) 0%, rgb(99, 143, 255) 48.6486%, rgb(149, 84, 255) 99.0521%)\"},children:\"01\"})})}),className:\"framer-ri8ki2\",fonts:[\"GF;Noto Sans JP-500\"],layoutDependency:layoutDependency,layoutId:\"TP9q8PGM3\",style:{\"--extracted-r6o4lv\":\"var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:TKyehPQQl,transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HOKMC.framer-1lqijlp, .framer-HOKMC .framer-1lqijlp { display: block; }\",\".framer-HOKMC.framer-6x9247 { height: 310px; overflow: visible; position: relative; width: 269px; }\",\".framer-HOKMC .framer-1136j8q { align-content: center; align-items: center; bottom: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; left: -13px; overflow: visible; padding: 0px; position: absolute; right: 0px; z-index: 1; }\",\".framer-HOKMC .framer-qyef0j-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-HOKMC .framer-jmjnku { flex: none; height: auto; left: 50%; overflow: hidden; position: absolute; top: 113px; white-space: pre-wrap; width: 81%; word-break: break-word; word-wrap: break-word; }\",\".framer-HOKMC .framer-b19xlc { flex: none; height: auto; left: 50%; overflow: visible; position: absolute; top: 69px; white-space: pre; width: auto; }\",\".framer-HOKMC .framer-10x28tw { flex: none; height: 84px; left: calc(49.81412639405207% - 85px / 2); overflow: visible; position: absolute; top: -29px; width: 85px; }\",\".framer-HOKMC .framer-l14z9g { aspect-ratio: 1 / 1; bottom: 0px; flex: none; left: 49%; overflow: hidden; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 84px); will-change: var(--framer-will-change-override, transform); }\",\".framer-HOKMC .framer-xj23t2 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: 49%; overflow: hidden; position: absolute; top: 50%; width: 80px; will-change: var(--framer-will-change-override, transform); }\",\".framer-HOKMC .framer-ri8ki2 { flex: none; height: auto; left: 49%; position: absolute; top: 49%; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HOKMC .framer-1136j8q { gap: 0px; } .framer-HOKMC .framer-1136j8q > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-HOKMC .framer-1136j8q > :first-child { margin-top: 0px; } .framer-HOKMC .framer-1136j8q > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 310\n * @framerIntrinsicWidth 269\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ytXMXqdYN\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"TKyehPQQl\":\"step\",\"k5q96vaGN\":\"title\",\"PKGeSSudT\":\"content\",\"tvFJruC0v\":\"linkVisible\",\"fe9F3bX3B\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramereA11P_Jmg=withCSS(Component,css,\"framer-HOKMC\");export default FramereA11P_Jmg;FramereA11P_Jmg.displayName=\"Step\";FramereA11P_Jmg.defaultProps={height:310,width:269};addPropertyControls(FramereA11P_Jmg,{variant:{options:[\"dozFgcYAb\",\"ytXMXqdYN\"],optionTitles:[\"Variant 1\",\"On pricing page\"],title:\"Variant\",type:ControlType.Enum},TKyehPQQl:{defaultValue:\"01\",displayTextArea:false,title:\"Step\",type:ControlType.String},k5q96vaGN:{defaultValue:\"営業にお問合せ\",displayTextArea:false,title:\"Title\",type:ControlType.String},PKGeSSudT:{defaultValue:\"お客様の情報を入力し、簡単な導入検討のきっかけなどをフォームより送信してください。\",displayTextArea:false,title:\"Content\",type:ControlType.String},tvFJruC0v:{defaultValue:true,title:\"Link Visible\",type:ControlType.Boolean},fe9F3bX3B:{title:\"Link\",type:ControlType.Link}});addFonts(FramereA11P_Jmg,[{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:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v53/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFCMj757Y0rw-oME.woff2\",weight:\"500\"}]},...Global_ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereA11P_Jmg\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"269\",\"framerIntrinsicHeight\":\"310\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"TKyehPQQl\\\":\\\"step\\\",\\\"k5q96vaGN\\\":\\\"title\\\",\\\"PKGeSSudT\\\":\\\"content\\\",\\\"tvFJruC0v\\\":\\\"linkVisible\\\",\\\"fe9F3bX3B\\\":\\\"link\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ytXMXqdYN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./eA11P_Jmg.map","// Generated by Framer (a2a31b0)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-NTkOs\";const variantClassNames={wFuHMaQuz:\"framer-v-p347p7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,image,width,...props})=>{return{...props,TjSj36M8H:image??props.TjSj36M8H??{src:\"https://framerusercontent.com/images/94jxniZyMhqoA8ydF67bvxmdnpc.svg\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,TjSj36M8H,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"wFuHMaQuz\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-p347p7\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"wFuHMaQuz\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:80,intrinsicWidth:81,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||92)*.5000000000000002-((componentViewport?.height||92)-0)*.7/2)),pixelHeight:80,pixelWidth:81,sizes:\"146px\",...toResponsiveImage(TjSj36M8H),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1w75d91\",\"data-framer-name\":\"SOC\",layoutDependency:layoutDependency,layoutId:\"mv6Mqshc3\"})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NTkOs.framer-5l3o9l, .framer-NTkOs .framer-5l3o9l { display: block; }\",\".framer-NTkOs.framer-p347p7 { height: 92px; overflow: hidden; position: relative; width: 176px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NTkOs .framer-1w75d91 { flex: none; height: 70%; left: calc(50.56818181818185% - 146px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 70% / 2); width: 146px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 92\n * @framerIntrinsicWidth 176\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"TjSj36M8H\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEGECu0gzA=withCSS(Component,css,\"framer-NTkOs\");export default FramerEGECu0gzA;FramerEGECu0gzA.displayName=\"Compliance logo\";FramerEGECu0gzA.defaultProps={height:92,width:176};addPropertyControls(FramerEGECu0gzA,{TjSj36M8H:{__defaultAssetReference:\"data:framer/asset-reference,94jxniZyMhqoA8ydF67bvxmdnpc.svg?originalFilename=SOC.svg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerEGECu0gzA,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEGECu0gzA\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"92\",\"framerVariables\":\"{\\\"TjSj36M8H\\\":\\\"image\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"176\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EGECu0gzA.map","// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import{productClick,productTryForFree,stepsOfLarkClick}from\"https://framerusercontent.com/modules/OwFQ4dpHnsYAdogwIEzb/SesVHYGgjIbD7dZ8KJDO/StorylineTracking.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/s7VflSTEVmJ5WiMLROrR/kVcSEYJ3dothvanzZzrk/rgvzP8QHm.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/GtUknWq2wmCt8cLdmmvU/dqNpAdZW5H7Tomt1Ifzh/X82eKqeAg.js\";import Global_Button,*as Global_ButtonInfo from\"https://framerusercontent.com/modules/j47mFgAwYb60jec2Gb5c/AfEx4akfvvwe7tpxdHjg/AyKc2Aday.js\";import Home_AppList_AppIcon,*as Home_AppList_AppIconInfo from\"https://framerusercontent.com/modules/13DTCE4hMRFGrSxAMnNk/aT0ebrMhrLKLs7KFelxE/v6JnqCICD.js\";const MotionDivProductClicko9uz0w=withCodeBoundaryForOverrides(motion.div,{nodeId:\"nlw8tnszm\",override:productClick,scopeId:\"Ii4QR9MrW\"});const MotionDivProductClick18163vt=withCodeBoundaryForOverrides(motion.div,{nodeId:\"PYDid6f6O\",override:productClick,scopeId:\"Ii4QR9MrW\"});const Home_AppList_AppIconFonts=getFonts(Home_AppList_AppIcon);const MotionDivProductClick16u6h76=withCodeBoundaryForOverrides(motion.div,{nodeId:\"tmSwQbwpo\",override:productClick,scopeId:\"Ii4QR9MrW\"});const MotionDivProductClick19x5u2e=withCodeBoundaryForOverrides(motion.div,{nodeId:\"bYdi8iTFr\",override:productClick,scopeId:\"Ii4QR9MrW\"});const MotionDivProductClicksssp26=withCodeBoundaryForOverrides(motion.div,{nodeId:\"WWmqtB7iq\",override:productClick,scopeId:\"Ii4QR9MrW\"});const MotionDivProductClick15ug9ki=withCodeBoundaryForOverrides(motion.div,{nodeId:\"kGsnIVLz6\",override:productClick,scopeId:\"Ii4QR9MrW\"});const MotionDivProductClick36s23m=withCodeBoundaryForOverrides(motion.div,{nodeId:\"iOFcNt4W4\",override:productClick,scopeId:\"Ii4QR9MrW\"});const MotionDivProductClick1p8wdvg=withCodeBoundaryForOverrides(motion.div,{nodeId:\"B4Fba7XMo\",override:productClick,scopeId:\"Ii4QR9MrW\"});const MotionDivProductClick4t2l6h=withCodeBoundaryForOverrides(motion.div,{nodeId:\"vIY6QPnmQ\",override:productClick,scopeId:\"Ii4QR9MrW\"});const MotionDivProductClick16kte1x=withCodeBoundaryForOverrides(motion.div,{nodeId:\"KbSpswHVZ\",override:productClick,scopeId:\"Ii4QR9MrW\"});const Home_AppList_AppIconProductClickxp12flWithMappedReactProps1ogsl8s=withMappedReactProps(withCodeBoundaryForOverrides(Home_AppList_AppIcon,{inComponentSlot:true,nodeId:\"QUMnRjN0r\",override:productClick,scopeId:\"Ii4QR9MrW\"}),Home_AppList_AppIconInfo);const Home_AppList_AppIconProductClick1tejcczWithMappedReactProps1ogsl8s=withMappedReactProps(withCodeBoundaryForOverrides(Home_AppList_AppIcon,{inComponentSlot:true,nodeId:\"pfoqFuTjc\",override:productClick,scopeId:\"Ii4QR9MrW\"}),Home_AppList_AppIconInfo);const Home_AppList_AppIconProductClick1jvcyjxWithMappedReactProps1ogsl8s=withMappedReactProps(withCodeBoundaryForOverrides(Home_AppList_AppIcon,{inComponentSlot:true,nodeId:\"Ia5mEJKxy\",override:productClick,scopeId:\"Ii4QR9MrW\"}),Home_AppList_AppIconInfo);const Home_AppList_AppIconProductClickkcil8wWithMappedReactProps1ogsl8s=withMappedReactProps(withCodeBoundaryForOverrides(Home_AppList_AppIcon,{inComponentSlot:true,nodeId:\"JvRKdYlAE\",override:productClick,scopeId:\"Ii4QR9MrW\"}),Home_AppList_AppIconInfo);const Home_AppList_AppIconProductClick1nff8x3WithMappedReactProps1ogsl8s=withMappedReactProps(withCodeBoundaryForOverrides(Home_AppList_AppIcon,{inComponentSlot:true,nodeId:\"ZErkSU1OC\",override:productClick,scopeId:\"Ii4QR9MrW\"}),Home_AppList_AppIconInfo);const Home_AppList_AppIconProductClickwkvo7yWithMappedReactProps1ogsl8s=withMappedReactProps(withCodeBoundaryForOverrides(Home_AppList_AppIcon,{inComponentSlot:true,nodeId:\"KDCAKj0OU\",override:productClick,scopeId:\"Ii4QR9MrW\"}),Home_AppList_AppIconInfo);const Home_AppList_AppIconProductClick19qpuk5WithMappedReactProps1ogsl8s=withMappedReactProps(withCodeBoundaryForOverrides(Home_AppList_AppIcon,{inComponentSlot:true,nodeId:\"LDMM0NxBY\",override:productClick,scopeId:\"Ii4QR9MrW\"}),Home_AppList_AppIconInfo);const Home_AppList_AppIconProductClickj535l7WithMappedReactProps1ogsl8s=withMappedReactProps(withCodeBoundaryForOverrides(Home_AppList_AppIcon,{inComponentSlot:true,nodeId:\"XcNFm5Erw\",override:productClick,scopeId:\"Ii4QR9MrW\"}),Home_AppList_AppIconInfo);const Home_AppList_AppIconProductClick1a8p3x9WithMappedReactProps1ogsl8s=withMappedReactProps(withCodeBoundaryForOverrides(Home_AppList_AppIcon,{inComponentSlot:true,nodeId:\"kdXGLWtB7\",override:productClick,scopeId:\"Ii4QR9MrW\"}),Home_AppList_AppIconInfo);const CarouselFonts=getFonts(Carousel);const Home_AppList_AppIconProductClick113lyn1WithMappedReactProps1ogsl8s=withMappedReactProps(withCodeBoundaryForOverrides(Home_AppList_AppIcon,{inComponentSlot:true,nodeId:\"Ym0wzbGRo\",override:productClick,scopeId:\"Ii4QR9MrW\"}),Home_AppList_AppIconInfo);const Global_ButtonFonts=getFonts(Global_Button);const Global_ButtonStepsOfLarkClick1oq33iwWithMappedReactPropsqzim95=withMappedReactProps(withCodeBoundaryForOverrides(Global_Button,{nodeId:\"jS9whTauM\",override:stepsOfLarkClick,scopeId:\"Ii4QR9MrW\"}),Global_ButtonInfo);const Global_ButtonProductTryForFree1w3vd1qWithMappedReactPropsqzim95=withMappedReactProps(withCodeBoundaryForOverrides(Global_Button,{nodeId:\"MriaJIDbr\",override:productTryForFree,scopeId:\"Ii4QR9MrW\"}),Global_ButtonInfo);const Global_ButtonStepsOfLarkClickv698saWithMappedReactPropsqzim95=withMappedReactProps(withCodeBoundaryForOverrides(Global_Button,{nodeId:\"ZUOIMLubD\",override:stepsOfLarkClick,scopeId:\"Ii4QR9MrW\"}),Global_ButtonInfo);const Global_ButtonProductTryForFree11qovzeWithMappedReactPropsqzim95=withMappedReactProps(withCodeBoundaryForOverrides(Global_Button,{nodeId:\"PCMcWt3jV\",override:productTryForFree,scopeId:\"Ii4QR9MrW\"}),Global_ButtonInfo);const cycleOrder=[\"mnrZeAZks\",\"Zu0XzrHMJ\",\"EJIx7VOCY\",\"yXCy9BJCk\",\"QZkU4dyhU\",\"ZuUUXZgW2\",\"TAEJl1boe\",\"rn5MicaMz\",\"e9qDC0bP2\",\"BjZowWo0x\",\"P8shNqvof\",\"WIYWlbebj\",\"p04E0KwrJ\",\"otLa3jXen\",\"UN61VRXzB\",\"PMmQTO8Sr\",\"E2m8izg1O\",\"gs84CJujH\",\"aDTie48ej\",\"cC3AKyC2E\"];const serializationHash=\"framer-siqgc\";const variantClassNames={aDTie48ej:\"framer-v-a0wflb\",BjZowWo0x:\"framer-v-wts47s\",cC3AKyC2E:\"framer-v-wliq0q\",E2m8izg1O:\"framer-v-1kytvoz\",e9qDC0bP2:\"framer-v-dpl973\",EJIx7VOCY:\"framer-v-1ohnim0\",gs84CJujH:\"framer-v-1ak0ox7\",mnrZeAZks:\"framer-v-1cwosbs\",otLa3jXen:\"framer-v-xonznj\",p04E0KwrJ:\"framer-v-9dqmyr\",P8shNqvof:\"framer-v-1ofwbvf\",PMmQTO8Sr:\"framer-v-1144xdt\",QZkU4dyhU:\"framer-v-5xrjg4\",rn5MicaMz:\"framer-v-1upns0n\",TAEJl1boe:\"framer-v-186ogf\",UN61VRXzB:\"framer-v-1ykljh\",WIYWlbebj:\"framer-v-2z7atj\",yXCy9BJCk:\"framer-v-1e6gqy6\",Zu0XzrHMJ:\"framer-v-5etp9d\",ZuUUXZgW2:\"framer-v-1ixkkuu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Approval - Mobile\":\"otLa3jXen\",\"Base - Mobile\":\"PMmQTO8Sr\",\"Calendar - Mobile\":\"Zu0XzrHMJ\",\"Docs - Mobile\":\"ZuUUXZgW2\",\"Email - Mobile\":\"WIYWlbebj\",\"Meeting - Mobile\":\"rn5MicaMz\",\"Messenger - Mobile\":\"yXCy9BJCk\",\"Minutes - Mobile\":\"BjZowWo0x\",\"OKR - Mobile\":\"cC3AKyC2E\",\"Wiki - Mobile\":\"gs84CJujH\",Approval:\"p04E0KwrJ\",Base:\"UN61VRXzB\",Calendar:\"mnrZeAZks\",Docs:\"QZkU4dyhU\",Email:\"P8shNqvof\",Meeting:\"TAEJl1boe\",Messenger:\"EJIx7VOCY\",Minutes:\"e9qDC0bP2\",OKR:\"aDTie48ej\",Wiki:\"E2m8izg1O\"};const getProps=({height,id,image,title,width,...props})=>{return{...props,JANIzC2cP:image??props.JANIzC2cP??{src:\"https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png\",srcSet:\"https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png?scale-down-to=512 512w,https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png 1800w\"},RE6MPByGe:title??props.RE6MPByGe??\"自分のカレンダーは一元管理。チームメンバーのスケジュールも簡単に把握。時間をより有効に活用する事で、生産性向上を図る\",variant:humanReadableVariantMap[props.variant]??props.variant??\"mnrZeAZks\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,RE6MPByGe,JANIzC2cP,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mnrZeAZks\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1b3uxud=activeVariantCallback(async(...args)=>{setVariant(\"EJIx7VOCY\");});const onMouseEnter1bb0be2=activeVariantCallback(async(...args)=>{setVariant(\"QZkU4dyhU\");});const onMouseEnterfu5erl=activeVariantCallback(async(...args)=>{setVariant(\"TAEJl1boe\");});const onMouseEnter1qakvlg=activeVariantCallback(async(...args)=>{setVariant(\"e9qDC0bP2\");});const onMouseEnter18en4sy=activeVariantCallback(async(...args)=>{setVariant(\"mnrZeAZks\");});const onMouseEnter12bpmhx=activeVariantCallback(async(...args)=>{setVariant(\"P8shNqvof\");});const onMouseEnter6bbsoe=activeVariantCallback(async(...args)=>{setVariant(\"p04E0KwrJ\");});const onMouseEnteryw0dhl=activeVariantCallback(async(...args)=>{setVariant(\"UN61VRXzB\");});const onMouseEnter920cof=activeVariantCallback(async(...args)=>{setVariant(\"E2m8izg1O\");});const onMouseEntercs2i64=activeVariantCallback(async(...args)=>{setVariant(\"aDTie48ej\");});const Gv9AudIN245bvwq=activeVariantCallback(async(...args)=>{setVariant(\"yXCy9BJCk\");});const Gv9AudIN21grzj70=activeVariantCallback(async(...args)=>{setVariant(\"ZuUUXZgW2\");});const Gv9AudIN2frmds9=activeVariantCallback(async(...args)=>{setVariant(\"rn5MicaMz\");});const Gv9AudIN21lbax99=activeVariantCallback(async(...args)=>{setVariant(\"BjZowWo0x\");});const Gv9AudIN2izzsi8=activeVariantCallback(async(...args)=>{setVariant(\"WIYWlbebj\");});const Gv9AudIN21gowb9a=activeVariantCallback(async(...args)=>{setVariant(\"otLa3jXen\");});const Gv9AudIN2tgz83y=activeVariantCallback(async(...args)=>{setVariant(\"PMmQTO8Sr\");});const Gv9AudIN2sfda52=activeVariantCallback(async(...args)=>{setVariant(\"gs84CJujH\");});const Gv9AudIN2199dke2=activeVariantCallback(async(...args)=>{setVariant(\"cC3AKyC2E\");});const Gv9AudIN21uv23ky=activeVariantCallback(async(...args)=>{setVariant(\"Zu0XzrHMJ\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"Zu0XzrHMJ\",\"yXCy9BJCk\",\"ZuUUXZgW2\",\"rn5MicaMz\",\"BjZowWo0x\",\"WIYWlbebj\",\"otLa3jXen\",\"PMmQTO8Sr\",\"gs84CJujH\",\"cC3AKyC2E\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"EJIx7VOCY\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"QZkU4dyhU\")return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"EJIx7VOCY\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"TAEJl1boe\")return false;return true;};const isDisplayed5=()=>{if(baseVariant===\"e9qDC0bP2\")return false;return true;};const isDisplayed6=()=>{if([\"EJIx7VOCY\",\"QZkU4dyhU\",\"TAEJl1boe\",\"e9qDC0bP2\",\"P8shNqvof\",\"p04E0KwrJ\",\"UN61VRXzB\",\"E2m8izg1O\",\"aDTie48ej\"].includes(baseVariant))return true;return false;};const isDisplayed7=()=>{if([\"EJIx7VOCY\",\"QZkU4dyhU\",\"TAEJl1boe\",\"e9qDC0bP2\",\"P8shNqvof\",\"p04E0KwrJ\",\"UN61VRXzB\",\"E2m8izg1O\",\"aDTie48ej\"].includes(baseVariant))return false;return true;};const isDisplayed8=()=>{if(baseVariant===\"P8shNqvof\")return false;return true;};const isDisplayed9=()=>{if(baseVariant===\"p04E0KwrJ\")return false;return true;};const isDisplayed10=()=>{if(baseVariant===\"UN61VRXzB\")return false;return true;};const isDisplayed11=()=>{if(baseVariant===\"E2m8izg1O\")return false;return true;};const isDisplayed12=()=>{if(baseVariant===\"aDTie48ej\")return false;return true;};const isDisplayed13=()=>{if(baseVariant===\"QZkU4dyhU\")return true;return false;};const isDisplayed14=()=>{if(baseVariant===\"TAEJl1boe\")return true;return false;};const isDisplayed15=()=>{if(baseVariant===\"e9qDC0bP2\")return true;return false;};const isDisplayed16=()=>{if(baseVariant===\"P8shNqvof\")return true;return false;};const isDisplayed17=()=>{if(baseVariant===\"p04E0KwrJ\")return true;return false;};const isDisplayed18=()=>{if(baseVariant===\"UN61VRXzB\")return true;return false;};const isDisplayed19=()=>{if(baseVariant===\"E2m8izg1O\")return true;return false;};const isDisplayed20=()=>{if(baseVariant===\"aDTie48ej\")return true;return false;};const isDisplayed21=()=>{if(baseVariant===\"Zu0XzrHMJ\")return true;return false;};const isDisplayed22=()=>{if(baseVariant===\"yXCy9BJCk\")return true;return false;};const isDisplayed23=()=>{if(baseVariant===\"ZuUUXZgW2\")return true;return false;};const isDisplayed24=()=>{if(baseVariant===\"rn5MicaMz\")return true;return false;};const isDisplayed25=()=>{if(baseVariant===\"BjZowWo0x\")return true;return false;};const isDisplayed26=()=>{if(baseVariant===\"WIYWlbebj\")return true;return false;};const isDisplayed27=()=>{if(baseVariant===\"otLa3jXen\")return true;return false;};const isDisplayed28=()=>{if(baseVariant===\"PMmQTO8Sr\")return true;return false;};const isDisplayed29=()=>{if(baseVariant===\"gs84CJujH\")return true;return false;};const isDisplayed30=()=>{if(baseVariant===\"cC3AKyC2E\")return true;return false;};const isDisplayed31=()=>{if([\"Zu0XzrHMJ\",\"yXCy9BJCk\",\"ZuUUXZgW2\",\"rn5MicaMz\",\"BjZowWo0x\",\"WIYWlbebj\",\"otLa3jXen\",\"PMmQTO8Sr\",\"gs84CJujH\",\"cC3AKyC2E\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1cwosbs\",className,classNames),\"data-framer-name\":\"Calendar\",layoutDependency:layoutDependency,layoutId:\"mnrZeAZks\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({aDTie48ej:{\"data-framer-name\":\"OKR\"},BjZowWo0x:{\"data-framer-name\":\"Minutes - Mobile\"},cC3AKyC2E:{\"data-framer-name\":\"OKR - Mobile\"},E2m8izg1O:{\"data-framer-name\":\"Wiki\"},e9qDC0bP2:{\"data-framer-name\":\"Minutes\"},EJIx7VOCY:{\"data-framer-name\":\"Messenger\"},gs84CJujH:{\"data-framer-name\":\"Wiki - Mobile\"},otLa3jXen:{\"data-framer-name\":\"Approval - Mobile\"},p04E0KwrJ:{\"data-framer-name\":\"Approval\"},P8shNqvof:{\"data-framer-name\":\"Email\"},PMmQTO8Sr:{\"data-framer-name\":\"Base - Mobile\"},QZkU4dyhU:{\"data-framer-name\":\"Docs\"},rn5MicaMz:{\"data-framer-name\":\"Meeting - Mobile\"},TAEJl1boe:{\"data-framer-name\":\"Meeting\"},UN61VRXzB:{\"data-framer-name\":\"Base\"},WIYWlbebj:{\"data-framer-name\":\"Email - Mobile\"},yXCy9BJCk:{\"data-framer-name\":\"Messenger - Mobile\"},Zu0XzrHMJ:{\"data-framer-name\":\"Calendar - Mobile\"},ZuUUXZgW2:{\"data-framer-name\":\"Docs - Mobile\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4ypxe4\",layoutDependency:layoutDependency,layoutId:\"ECqZvEzZa\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivProductClicko9uz0w,{className:\"framer-o9uz0w\",\"data-framer-name\":\"Messenger\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"nlw8tnszm\",onMouseEnter:onMouseEnter1b3uxud,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f8sx7k\",layoutDependency:layoutDependency,layoutId:\"daDvaPB8H\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:40,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0+10+0+13),pixelHeight:180,pixelWidth:202,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/GpQsacXAvY4kkjje4jH8foEvYlo.svg\"},className:\"framer-xaymda\",layoutDependency:layoutDependency,layoutId:\"jTSB31Onn\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:[\"メッセージ\",/*#__PURE__*/_jsx(motion.br,{})]})}),className:\"framer-6m6lgk\",fonts:[\"GF;Noto Sans JP-500\"],layoutDependency:layoutDependency,layoutId:\"iTriy5llC\",style:{\"--extracted-r6o4lv\":\"var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(MotionDivProductClick18163vt,{className:\"framer-18163vt\",\"data-framer-name\":\"Docs\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"PYDid6f6O\",onMouseEnter:onMouseEnter1bb0be2,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fsniom\",layoutDependency:layoutDependency,layoutId:\"VHts6T5p6\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:160,intrinsicWidth:166,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0+10+0+13),pixelHeight:160,pixelWidth:166,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uFkom53TsHqHfxnP6et7SAL7Z0.svg\"},className:\"framer-1i9dglr\",layoutDependency:layoutDependency,layoutId:\"PwkZ6Z72_\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:\"Docs\"})}),className:\"framer-mzjdf9\",fonts:[\"GF;Noto Sans JP-500\"],layoutDependency:layoutDependency,layoutId:\"uqmdbi7LE\",style:{\"--extracted-r6o4lv\":\"var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({EJIx7VOCY:{height:123,width:\"84px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bwl10k-container\",\"data-framer-name\":\"Messenger - selected\",layoutDependency:layoutDependency,layoutId:\"bPtRSGVZy-container\",name:\"Messenger - selected\",nodeId:\"bPtRSGVZy\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIcon,{height:\"100%\",id:\"bPtRSGVZy\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/GpQsacXAvY4kkjje4jH8foEvYlo.svg\"},\"\"),layoutId:\"bPtRSGVZy\",name:\"Messenger - selected\",R9mUKnp49:\"メッセージ\\n\",style:{height:\"100%\",width:\"100%\"},variant:\"QUNyNLbf7\",width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsxs(MotionDivProductClick16u6h76,{className:\"framer-16u6h76\",\"data-framer-name\":\"Meeting\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"tmSwQbwpo\",onMouseEnter:onMouseEnterfu5erl,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qbs6gy\",layoutDependency:layoutDependency,layoutId:\"HpdKfGTBk\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:417,intrinsicWidth:555,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0+10+0+13),pixelHeight:417,pixelWidth:555,positionX:\"center\",positionY:\"center\",sizes:\"38px\",src:\"https://framerusercontent.com/images/PgLgkqNPk1ZEgKqDeH9GgHKBMGg.svg\",srcSet:\"https://framerusercontent.com/images/PgLgkqNPk1ZEgKqDeH9GgHKBMGg.svg?scale-down-to=512 512w,https://framerusercontent.com/images/PgLgkqNPk1ZEgKqDeH9GgHKBMGg.svg 555w\"},className:\"framer-1tacnzw\",layoutDependency:layoutDependency,layoutId:\"SPYhwGIA2\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:\"ビデオ会議\"})}),className:\"framer-1j92w7k\",fonts:[\"GF;Noto Sans JP-500\"],layoutDependency:layoutDependency,layoutId:\"QBgaychft\",style:{\"--extracted-r6o4lv\":\"var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(MotionDivProductClick19x5u2e,{className:\"framer-19x5u2e\",\"data-framer-name\":\"Minutes\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"bYdi8iTFr\",onMouseEnter:onMouseEnter1qakvlg,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1912qd8\",layoutDependency:layoutDependency,layoutId:\"mjhnnMZ3V\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1461,intrinsicWidth:1458,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0+10+0+13),pixelHeight:1461,pixelWidth:1458,positionX:\"center\",positionY:\"center\",sizes:\"38px\",src:\"https://framerusercontent.com/images/M1NrR3NohBo3TMfTO8SpqxNMwH0.png\",srcSet:\"https://framerusercontent.com/images/M1NrR3NohBo3TMfTO8SpqxNMwH0.png?scale-down-to=1024 1021w,https://framerusercontent.com/images/M1NrR3NohBo3TMfTO8SpqxNMwH0.png 1458w\"},className:\"framer-g5bdmx\",layoutDependency:layoutDependency,layoutId:\"kzQgkobaO\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:\"Minutes\"})}),className:\"framer-e04vv2\",fonts:[\"GF;Noto Sans JP-500\"],layoutDependency:layoutDependency,layoutId:\"gQS3aGA3y\",style:{\"--extracted-r6o4lv\":\"var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(MotionDivProductClicksssp26,{className:\"framer-sssp26\",\"data-framer-name\":\"Calendar\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"WWmqtB7iq\",onMouseEnter:onMouseEnter18en4sy,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-4dog9y\",layoutDependency:layoutDependency,layoutId:\"Y4GoR006x\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:40,pixelHeight:40,pixelWidth:40,src:\"data:framer/asset-reference,UQsJ3k0ZXmKxQcgEC44Ac70EY4.png?originalFilename=calendar.png&preferredSize=auto\"},className:\"framer-1f510xq\",layoutDependency:layoutDependency,layoutId:\"Bkc0JIQUP\",transformTemplate:transformTemplate1,...addPropertyOverrides({aDTie48ej:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:40,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0+10+0+13),pixelHeight:171,pixelWidth:170,src:\"https://framerusercontent.com/images/qaEwxO6ci4lmW1ozxihFzBWKvE.svg\"}},E2m8izg1O:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:40,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0+10+0+13),pixelHeight:171,pixelWidth:170,src:\"https://framerusercontent.com/images/qaEwxO6ci4lmW1ozxihFzBWKvE.svg\"}},e9qDC0bP2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:40,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0+10+0+13),pixelHeight:171,pixelWidth:170,src:\"https://framerusercontent.com/images/qaEwxO6ci4lmW1ozxihFzBWKvE.svg\"}},EJIx7VOCY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:40,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0+10+0+13),pixelHeight:171,pixelWidth:170,src:\"https://framerusercontent.com/images/qaEwxO6ci4lmW1ozxihFzBWKvE.svg\"}},p04E0KwrJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:40,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0+10+0+13),pixelHeight:171,pixelWidth:170,src:\"https://framerusercontent.com/images/qaEwxO6ci4lmW1ozxihFzBWKvE.svg\"}},P8shNqvof:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:40,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0+10+0+13),pixelHeight:171,pixelWidth:170,src:\"https://framerusercontent.com/images/qaEwxO6ci4lmW1ozxihFzBWKvE.svg\"}},QZkU4dyhU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:40,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0+10+0+13),pixelHeight:171,pixelWidth:170,src:\"https://framerusercontent.com/images/qaEwxO6ci4lmW1ozxihFzBWKvE.svg\"}},TAEJl1boe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:40,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0+10+0+13),pixelHeight:171,pixelWidth:170,src:\"https://framerusercontent.com/images/qaEwxO6ci4lmW1ozxihFzBWKvE.svg\"}},UN61VRXzB:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:40,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0+10+0+13),pixelHeight:171,pixelWidth:170,src:\"https://framerusercontent.com/images/qaEwxO6ci4lmW1ozxihFzBWKvE.svg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:\"カレンダー\"})}),className:\"framer-1sibaza\",fonts:[\"GF;Noto Sans JP-500\"],layoutDependency:layoutDependency,layoutId:\"umUfO04Za\",style:{\"--extracted-r6o4lv\":\"var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:123,width:\"84px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-srv59h-container\",\"data-framer-name\":\"Calendar - selected\",layoutDependency:layoutDependency,layoutId:\"kTx2BMClU-container\",name:\"Calendar - selected\",nodeId:\"kTx2BMClU\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIcon,{height:\"100%\",id:\"kTx2BMClU\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/calendar?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/qaEwxO6ci4lmW1ozxihFzBWKvE.svg\"},\"\"),layoutId:\"kTx2BMClU\",name:\"Calendar - selected\",R9mUKnp49:\"カレンダー\",style:{height:\"100%\",width:\"100%\"},variant:\"QUNyNLbf7\",width:\"100%\"})})}),isDisplayed8()&&/*#__PURE__*/_jsxs(MotionDivProductClick15ug9ki,{className:\"framer-15ug9ki\",\"data-framer-name\":\"Email\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"kGsnIVLz6\",onMouseEnter:onMouseEnter12bpmhx,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-er1z65\",layoutDependency:layoutDependency,layoutId:\"ADjWyaLbM\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:40,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0+10+0+13),pixelHeight:150,pixelWidth:184,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/FGwNbm8IYrM7ZsUCH0ec6ONPZ6w.svg\"},className:\"framer-7job7e\",layoutDependency:layoutDependency,layoutId:\"TBZbKDtNn\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:\"メール\"})}),className:\"framer-1n0k2s3\",fonts:[\"GF;Noto Sans JP-500\"],layoutDependency:layoutDependency,layoutId:\"FQ5LpnvLA\",style:{\"--extracted-r6o4lv\":\"var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed9()&&/*#__PURE__*/_jsxs(MotionDivProductClick36s23m,{className:\"framer-36s23m\",\"data-framer-name\":\"Approval\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"iOFcNt4W4\",onMouseEnter:onMouseEnter6bbsoe,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ar0cos\",layoutDependency:layoutDependency,layoutId:\"gIorGrqa4\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:40,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0+10+0+13),pixelHeight:516,pixelWidth:516,sizes:\"38px\",src:\"https://framerusercontent.com/images/YQHbva3ucHTlEpGAIb7qZVEg8.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/YQHbva3ucHTlEpGAIb7qZVEg8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/YQHbva3ucHTlEpGAIb7qZVEg8.svg 516w\"},className:\"framer-mkfiho\",layoutDependency:layoutDependency,layoutId:\"HtmJ0F1aN\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:\"承認\"})}),className:\"framer-1hwm0en\",fonts:[\"GF;Noto Sans JP-500\"],layoutDependency:layoutDependency,layoutId:\"wDUZCzI4H\",style:{\"--extracted-r6o4lv\":\"var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed10()&&/*#__PURE__*/_jsxs(MotionDivProductClick1p8wdvg,{className:\"framer-1p8wdvg\",\"data-framer-name\":\"Base\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"B4Fba7XMo\",onMouseEnter:onMouseEnteryw0dhl,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-a4rhxo\",layoutDependency:layoutDependency,layoutId:\"OE7hgkqfj\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:40,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0+10+0+13),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/nIYwIAAAj3FNFJOWP9VFxN7zQ.svg\"},className:\"framer-mtuno8\",layoutDependency:layoutDependency,layoutId:\"lW0y1Bgwh\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:\"Base\"})}),className:\"framer-1dx68zv\",fonts:[\"GF;Noto Sans JP-500\"],layoutDependency:layoutDependency,layoutId:\"chItzB6nZ\",style:{\"--extracted-r6o4lv\":\"var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed11()&&/*#__PURE__*/_jsxs(MotionDivProductClick4t2l6h,{className:\"framer-4t2l6h\",\"data-framer-name\":\"Wiki\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"vIY6QPnmQ\",onMouseEnter:onMouseEnter920cof,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tchdxw\",layoutDependency:layoutDependency,layoutId:\"o2mDSlIeJ\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:40,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0+10+0+13),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/79MMbLTmtPlyxMZ84H6T1GFNWM.svg\"},className:\"framer-10ta20h\",layoutDependency:layoutDependency,layoutId:\"ijq5rkwiA\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:\"Wiki\"})}),className:\"framer-malosr\",fonts:[\"GF;Noto Sans JP-500\"],layoutDependency:layoutDependency,layoutId:\"Jnz5WoFo5\",style:{\"--extracted-r6o4lv\":\"var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed12()&&/*#__PURE__*/_jsxs(MotionDivProductClick16kte1x,{className:\"framer-16kte1x\",\"data-framer-name\":\"OKR\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"KbSpswHVZ\",onMouseEnter:onMouseEntercs2i64,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8d1l9s\",layoutDependency:layoutDependency,layoutId:\"Hihbg7AyZ\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:40,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0+10+0+13),pixelHeight:230,pixelWidth:230,src:\"https://framerusercontent.com/images/bWQUZUQpGSJG5KgnVuiWE0m1IQ.svg\"},className:\"framer-fnt7c9\",layoutDependency:layoutDependency,layoutId:\"uz5bacnkv\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:\"OKR\"})}),className:\"framer-1mwu8ow\",fonts:[\"GF;Noto Sans JP-500\"],layoutDependency:layoutDependency,layoutId:\"DOUAIUpEz\",style:{\"--extracted-r6o4lv\":\"var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed13()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({QZkU4dyhU:{height:123,width:\"84px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ujcz0w-container\",\"data-framer-name\":\"Docs - selected\",layoutDependency:layoutDependency,layoutId:\"PLc9a5o0F-container\",name:\"Docs - selected\",nodeId:\"PLc9a5o0F\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIcon,{height:\"100%\",id:\"PLc9a5o0F\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/creation?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/uFkom53TsHqHfxnP6et7SAL7Z0.svg\"},\"\"),layoutId:\"PLc9a5o0F\",name:\"Docs - selected\",R9mUKnp49:\"Docs\",style:{height:\"100%\",width:\"100%\"},variant:\"QUNyNLbf7\",width:\"100%\"})})}),isDisplayed14()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({TAEJl1boe:{height:123,width:\"84px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xwq8pk-container\",\"data-framer-name\":\"Meeting - selected\",layoutDependency:layoutDependency,layoutId:\"JLNlQtB69-container\",name:\"Meeting - selected\",nodeId:\"JLNlQtB69\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIcon,{height:\"100%\",id:\"JLNlQtB69\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/video?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/QbJOm93UUnVkMGCW59pB6XTENw.png\"},\"\"),layoutId:\"JLNlQtB69\",name:\"Meeting - selected\",R9mUKnp49:\"ビデオ会議\",style:{height:\"100%\",width:\"100%\"},variant:\"QUNyNLbf7\",width:\"100%\"})})}),isDisplayed15()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({e9qDC0bP2:{height:103,y:(componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14qe7ux-container\",\"data-framer-name\":\"Minutes - selected\",layoutDependency:layoutDependency,layoutId:\"puGniKhbM-container\",name:\"Minutes - selected\",nodeId:\"puGniKhbM\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIcon,{height:\"100%\",id:\"puGniKhbM\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/minutes?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/M1NrR3NohBo3TMfTO8SpqxNMwH0.png\",srcSet:\"https://framerusercontent.com/images/M1NrR3NohBo3TMfTO8SpqxNMwH0.png?scale-down-to=1024 1021w,https://framerusercontent.com/images/M1NrR3NohBo3TMfTO8SpqxNMwH0.png 1458w\"},\"\"),layoutId:\"puGniKhbM\",name:\"Minutes - selected\",R9mUKnp49:\"Minutes\",variant:\"QUNyNLbf7\",width:\"100%\"})})}),isDisplayed16()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({P8shNqvof:{height:103,y:(componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ke7q3e-container\",\"data-framer-name\":\"Email - selected\",layoutDependency:layoutDependency,layoutId:\"DBQPstj4i-container\",name:\"Email - selected\",nodeId:\"DBQPstj4i\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIcon,{height:\"100%\",id:\"DBQPstj4i\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/email?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/FGwNbm8IYrM7ZsUCH0ec6ONPZ6w.svg\"},\"\"),layoutId:\"DBQPstj4i\",name:\"Email - selected\",R9mUKnp49:\"メール\",variant:\"QUNyNLbf7\",width:\"100%\"})})}),isDisplayed17()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({p04E0KwrJ:{height:103,y:(componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17kf8x2-container\",\"data-framer-name\":\"Approval - selected\",layoutDependency:layoutDependency,layoutId:\"k1xv1xynd-container\",name:\"Approval - selected\",nodeId:\"k1xv1xynd\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIcon,{height:\"100%\",id:\"k1xv1xynd\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/approval?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/XWX36GJD1rfQYqazCAdXY7LK84.png\"},\"\"),layoutId:\"k1xv1xynd\",name:\"Approval - selected\",R9mUKnp49:\"承認\",variant:\"QUNyNLbf7\",width:\"100%\"})})}),isDisplayed18()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({UN61VRXzB:{height:103,y:(componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-oq2gmk-container\",\"data-framer-name\":\"Base - selected\",layoutDependency:layoutDependency,layoutId:\"KnJsd9Fmh-container\",name:\"Base - selected\",nodeId:\"KnJsd9Fmh\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIcon,{height:\"100%\",id:\"KnJsd9Fmh\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/bitable?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/nIYwIAAAj3FNFJOWP9VFxN7zQ.svg\"},\"\"),layoutId:\"KnJsd9Fmh\",name:\"Base - selected\",R9mUKnp49:\"Base\",variant:\"QUNyNLbf7\",width:\"100%\"})})}),isDisplayed19()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({E2m8izg1O:{height:103,y:(componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-190i1wb-container\",\"data-framer-name\":\"Wiki - selected\",layoutDependency:layoutDependency,layoutId:\"KkW9qNBiv-container\",name:\"Wiki - selected\",nodeId:\"KkW9qNBiv\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIcon,{height:\"100%\",id:\"KkW9qNBiv\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/wiki?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/pM3hee06WIi74HRuxCjlF9JG0.png\"},\"\"),layoutId:\"KkW9qNBiv\",name:\"Wiki - selected\",R9mUKnp49:\"Wiki\",variant:\"QUNyNLbf7\",width:\"100%\"})})}),isDisplayed20()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({aDTie48ej:{height:103,y:(componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+0+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1q200lq-container\",\"data-framer-name\":\"OKR - selected\",layoutDependency:layoutDependency,layoutId:\"SF3tcMC3d-container\",name:\"OKR - selected\",nodeId:\"SF3tcMC3d\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIcon,{height:\"100%\",id:\"SF3tcMC3d\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/okr?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/jUJEbEYIiOylbFngKykNR5pSc.png\"},\"\"),layoutId:\"SF3tcMC3d\",name:\"OKR - selected\",R9mUKnp49:\"OKR\",variant:\"QUNyNLbf7\",width:\"100%\"})})})]}),isDisplayed21()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1w4kx7d-container\",\"data-framer-name\":\"Carousel - Calendar - Mobile\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"O7rcfv3H7-container\",name:\"Carousel - Calendar - Mobile\",nodeId:\"O7rcfv3H7\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"O7rcfv3H7\",layoutId:\"O7rcfv3H7\",name:\"Carousel - Calendar - Mobile\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xp12fl-container\",\"data-framer-name\":\"Messenger\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"QUMnRjN0r-container\",name:\"Messenger\",nodeId:\"QUMnRjN0r\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickxp12flWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN245bvwq,height:\"100%\",id:\"QUMnRjN0r\",layoutId:\"QUMnRjN0r\",name:\"Messenger\",R9mUKnp49:\"メッセージ\\n\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tejccz-container\",\"data-framer-name\":\"Docs\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"pfoqFuTjc-container\",name:\"Docs\",nodeId:\"pfoqFuTjc\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1tejcczWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21grzj70,height:\"100%\",id:\"pfoqFuTjc\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/creation?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/2Fji9uhzjGQYQB0mqvuePpmXWA.png\"},\"\"),layoutId:\"pfoqFuTjc\",name:\"Docs\",R9mUKnp49:\"Docs\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jvcyjx-container\",\"data-framer-name\":\"Meetings\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Ia5mEJKxy-container\",name:\"Meetings\",nodeId:\"Ia5mEJKxy\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1jvcyjxWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2frmds9,height:\"100%\",id:\"Ia5mEJKxy\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/video?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/QbJOm93UUnVkMGCW59pB6XTENw.png\"},\"\"),layoutId:\"Ia5mEJKxy\",name:\"Meetings\",R9mUKnp49:\"ビデオ会議\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kcil8w-container\",\"data-framer-name\":\"Minutes\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"JvRKdYlAE-container\",name:\"Minutes\",nodeId:\"JvRKdYlAE\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickkcil8wWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21lbax99,height:\"100%\",id:\"JvRKdYlAE\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/minutes?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/3Xw1qZr8QWpgBneJNqx3q6zGoRI.png\"},\"\"),layoutId:\"JvRKdYlAE\",name:\"Minutes\",R9mUKnp49:\"Minutes\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ypmum3-container\",\"data-framer-name\":\"Calendar - Mobile - selected\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Jafe7hKeI-container\",name:\"Calendar - Mobile - selected\",nodeId:\"Jafe7hKeI\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIcon,{height:\"100%\",id:\"Jafe7hKeI\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/calendar?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/UQsJ3k0ZXmKxQcgEC44Ac70EY4.png\"},\"\"),layoutId:\"Jafe7hKeI\",name:\"Calendar - Mobile - selected\",R9mUKnp49:\"カレンダー\",variant:\"QUNyNLbf7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nff8x3-container\",\"data-framer-name\":\"Email\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ZErkSU1OC-container\",name:\"Email\",nodeId:\"ZErkSU1OC\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1nff8x3WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2izzsi8,height:\"100%\",id:\"ZErkSU1OC\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/email?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/cTabz3CAUTxsEoGGzrInG9Aa6c.png\"},\"\"),layoutId:\"ZErkSU1OC\",name:\"Email\",R9mUKnp49:\"メール\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wkvo7y-container\",\"data-framer-name\":\"Approval\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"KDCAKj0OU-container\",name:\"Approval\",nodeId:\"KDCAKj0OU\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickwkvo7yWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21gowb9a,height:\"100%\",id:\"KDCAKj0OU\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/approval?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/XWX36GJD1rfQYqazCAdXY7LK84.png\"},\"\"),layoutId:\"KDCAKj0OU\",name:\"Approval\",R9mUKnp49:\"承認\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19qpuk5-container\",\"data-framer-name\":\"Base\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"LDMM0NxBY-container\",name:\"Base\",nodeId:\"LDMM0NxBY\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick19qpuk5WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2tgz83y,height:\"100%\",id:\"LDMM0NxBY\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/bitable?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/nIYwIAAAj3FNFJOWP9VFxN7zQ.svg\"},\"\"),layoutId:\"LDMM0NxBY\",name:\"Base\",R9mUKnp49:\"Base\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-j535l7-container\",\"data-framer-name\":\"Wiki\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"XcNFm5Erw-container\",name:\"Wiki\",nodeId:\"XcNFm5Erw\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickj535l7WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2sfda52,height:\"100%\",id:\"XcNFm5Erw\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/wiki?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/pM3hee06WIi74HRuxCjlF9JG0.png\"},\"\"),layoutId:\"XcNFm5Erw\",name:\"Wiki\",R9mUKnp49:\"Wiki\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a8p3x9-container\",\"data-framer-name\":\"OKR\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"kdXGLWtB7-container\",name:\"OKR\",nodeId:\"kdXGLWtB7\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1a8p3x9WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2199dke2,height:\"100%\",id:\"kdXGLWtB7\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/okr?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/jUJEbEYIiOylbFngKykNR5pSc.png\"},\"\"),layoutId:\"kdXGLWtB7\",name:\"OKR\",R9mUKnp49:\"OKR\",variant:\"SnfpBZE_h\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed22()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18jtyor-container\",\"data-framer-name\":\"Carousel - Messenger - Mobile\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Wc5lYfYng-container\",name:\"Carousel - Messenger - Mobile\",nodeId:\"Wc5lYfYng\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"Wc5lYfYng\",layoutId:\"Wc5lYfYng\",name:\"Carousel - Messenger - Mobile\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5glnqh-container\",\"data-framer-name\":\"Messenger - Mobile - selected\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"zMGAf3FKh-container\",name:\"Messenger - Mobile - selected\",nodeId:\"zMGAf3FKh\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIcon,{height:\"100%\",id:\"zMGAf3FKh\",layoutId:\"zMGAf3FKh\",name:\"Messenger - Mobile - selected\",R9mUKnp49:\"メッセージ\\n\",variant:\"QUNyNLbf7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tejccz-container\",\"data-framer-name\":\"Docs\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"pfoqFuTjc-container\",name:\"Docs\",nodeId:\"pfoqFuTjc\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1tejcczWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21grzj70,height:\"100%\",id:\"pfoqFuTjc\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/creation?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/2Fji9uhzjGQYQB0mqvuePpmXWA.png\"},\"\"),layoutId:\"pfoqFuTjc\",name:\"Docs\",R9mUKnp49:\"Docs\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jvcyjx-container\",\"data-framer-name\":\"Meetings\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Ia5mEJKxy-container\",name:\"Meetings\",nodeId:\"Ia5mEJKxy\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1jvcyjxWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2frmds9,height:\"100%\",id:\"Ia5mEJKxy\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/video?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/QbJOm93UUnVkMGCW59pB6XTENw.png\"},\"\"),layoutId:\"Ia5mEJKxy\",name:\"Meetings\",R9mUKnp49:\"ビデオ会議\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kcil8w-container\",\"data-framer-name\":\"Minutes\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"JvRKdYlAE-container\",name:\"Minutes\",nodeId:\"JvRKdYlAE\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickkcil8wWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21lbax99,height:\"100%\",id:\"JvRKdYlAE\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/minutes?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/3Xw1qZr8QWpgBneJNqx3q6zGoRI.png\"},\"\"),layoutId:\"JvRKdYlAE\",name:\"Minutes\",R9mUKnp49:\"Minutes\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-113lyn1-container\",\"data-framer-name\":\"Calendar\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Ym0wzbGRo-container\",name:\"Calendar\",nodeId:\"Ym0wzbGRo\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick113lyn1WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21uv23ky,height:\"100%\",id:\"Ym0wzbGRo\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/calendar?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/UQsJ3k0ZXmKxQcgEC44Ac70EY4.png\"},\"\"),layoutId:\"Ym0wzbGRo\",name:\"Calendar\",R9mUKnp49:\"カレンダー\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nff8x3-container\",\"data-framer-name\":\"Email\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ZErkSU1OC-container\",name:\"Email\",nodeId:\"ZErkSU1OC\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1nff8x3WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2izzsi8,height:\"100%\",id:\"ZErkSU1OC\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/email?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/cTabz3CAUTxsEoGGzrInG9Aa6c.png\"},\"\"),layoutId:\"ZErkSU1OC\",name:\"Email\",R9mUKnp49:\"メール\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wkvo7y-container\",\"data-framer-name\":\"Approval\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"KDCAKj0OU-container\",name:\"Approval\",nodeId:\"KDCAKj0OU\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickwkvo7yWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21gowb9a,height:\"100%\",id:\"KDCAKj0OU\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/approval?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/XWX36GJD1rfQYqazCAdXY7LK84.png\"},\"\"),layoutId:\"KDCAKj0OU\",name:\"Approval\",R9mUKnp49:\"承認\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19qpuk5-container\",\"data-framer-name\":\"Base\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"LDMM0NxBY-container\",name:\"Base\",nodeId:\"LDMM0NxBY\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick19qpuk5WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2tgz83y,height:\"100%\",id:\"LDMM0NxBY\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/bitable?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/nIYwIAAAj3FNFJOWP9VFxN7zQ.svg\"},\"\"),layoutId:\"LDMM0NxBY\",name:\"Base\",R9mUKnp49:\"Base\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-j535l7-container\",\"data-framer-name\":\"Wiki\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"XcNFm5Erw-container\",name:\"Wiki\",nodeId:\"XcNFm5Erw\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickj535l7WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2sfda52,height:\"100%\",id:\"XcNFm5Erw\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/wiki?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/pM3hee06WIi74HRuxCjlF9JG0.png\"},\"\"),layoutId:\"XcNFm5Erw\",name:\"Wiki\",R9mUKnp49:\"Wiki\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a8p3x9-container\",\"data-framer-name\":\"OKR\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"kdXGLWtB7-container\",name:\"OKR\",nodeId:\"kdXGLWtB7\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1a8p3x9WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2199dke2,height:\"100%\",id:\"kdXGLWtB7\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/okr?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/jUJEbEYIiOylbFngKykNR5pSc.png\"},\"\"),layoutId:\"kdXGLWtB7\",name:\"OKR\",R9mUKnp49:\"OKR\",variant:\"SnfpBZE_h\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed23()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kh4mfk-container\",\"data-framer-name\":\"Carousel - Docs - Mobile\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"W9buik80O-container\",name:\"Carousel - Docs - Mobile\",nodeId:\"W9buik80O\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"W9buik80O\",layoutId:\"W9buik80O\",name:\"Carousel - Docs - Mobile\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xp12fl-container\",\"data-framer-name\":\"Messenger\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"QUMnRjN0r-container\",name:\"Messenger\",nodeId:\"QUMnRjN0r\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickxp12flWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN245bvwq,height:\"100%\",id:\"QUMnRjN0r\",layoutId:\"QUMnRjN0r\",name:\"Messenger\",R9mUKnp49:\"メッセージ\\n\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:123,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gjdckt-container\",\"data-framer-name\":\"Docs - Mobile - selected\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"aiaY36F1R-container\",name:\"Docs - Mobile - selected\",nodeId:\"aiaY36F1R\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIcon,{height:\"100%\",id:\"aiaY36F1R\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/creation?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/2Fji9uhzjGQYQB0mqvuePpmXWA.png\"},\"\"),layoutId:\"aiaY36F1R\",name:\"Docs - Mobile - selected\",R9mUKnp49:\"Docs\",style:{height:\"100%\",width:\"100%\"},variant:\"QUNyNLbf7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jvcyjx-container\",\"data-framer-name\":\"Meetings\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Ia5mEJKxy-container\",name:\"Meetings\",nodeId:\"Ia5mEJKxy\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1jvcyjxWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2frmds9,height:\"100%\",id:\"Ia5mEJKxy\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/video?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/QbJOm93UUnVkMGCW59pB6XTENw.png\"},\"\"),layoutId:\"Ia5mEJKxy\",name:\"Meetings\",R9mUKnp49:\"ビデオ会議\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kcil8w-container\",\"data-framer-name\":\"Minutes\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"JvRKdYlAE-container\",name:\"Minutes\",nodeId:\"JvRKdYlAE\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickkcil8wWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21lbax99,height:\"100%\",id:\"JvRKdYlAE\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/minutes?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/3Xw1qZr8QWpgBneJNqx3q6zGoRI.png\"},\"\"),layoutId:\"JvRKdYlAE\",name:\"Minutes\",R9mUKnp49:\"Minutes\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-113lyn1-container\",\"data-framer-name\":\"Calendar\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Ym0wzbGRo-container\",name:\"Calendar\",nodeId:\"Ym0wzbGRo\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick113lyn1WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21uv23ky,height:\"100%\",id:\"Ym0wzbGRo\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/calendar?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/UQsJ3k0ZXmKxQcgEC44Ac70EY4.png\"},\"\"),layoutId:\"Ym0wzbGRo\",name:\"Calendar\",R9mUKnp49:\"カレンダー\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nff8x3-container\",\"data-framer-name\":\"Email\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ZErkSU1OC-container\",name:\"Email\",nodeId:\"ZErkSU1OC\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1nff8x3WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2izzsi8,height:\"100%\",id:\"ZErkSU1OC\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/email?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/cTabz3CAUTxsEoGGzrInG9Aa6c.png\"},\"\"),layoutId:\"ZErkSU1OC\",name:\"Email\",R9mUKnp49:\"メール\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wkvo7y-container\",\"data-framer-name\":\"Approval\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"KDCAKj0OU-container\",name:\"Approval\",nodeId:\"KDCAKj0OU\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickwkvo7yWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21gowb9a,height:\"100%\",id:\"KDCAKj0OU\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/approval?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/XWX36GJD1rfQYqazCAdXY7LK84.png\"},\"\"),layoutId:\"KDCAKj0OU\",name:\"Approval\",R9mUKnp49:\"承認\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19qpuk5-container\",\"data-framer-name\":\"Base\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"LDMM0NxBY-container\",name:\"Base\",nodeId:\"LDMM0NxBY\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick19qpuk5WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2tgz83y,height:\"100%\",id:\"LDMM0NxBY\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/bitable?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/nIYwIAAAj3FNFJOWP9VFxN7zQ.svg\"},\"\"),layoutId:\"LDMM0NxBY\",name:\"Base\",R9mUKnp49:\"Base\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-j535l7-container\",\"data-framer-name\":\"Wiki\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"XcNFm5Erw-container\",name:\"Wiki\",nodeId:\"XcNFm5Erw\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickj535l7WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2sfda52,height:\"100%\",id:\"XcNFm5Erw\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/wiki?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/pM3hee06WIi74HRuxCjlF9JG0.png\"},\"\"),layoutId:\"XcNFm5Erw\",name:\"Wiki\",R9mUKnp49:\"Wiki\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a8p3x9-container\",\"data-framer-name\":\"OKR\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"kdXGLWtB7-container\",name:\"OKR\",nodeId:\"kdXGLWtB7\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1a8p3x9WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2199dke2,height:\"100%\",id:\"kdXGLWtB7\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/okr?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/jUJEbEYIiOylbFngKykNR5pSc.png\"},\"\"),layoutId:\"kdXGLWtB7\",name:\"OKR\",R9mUKnp49:\"OKR\",variant:\"SnfpBZE_h\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed24()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-evwzhi-container\",\"data-framer-name\":\"Carousel - Meeting - Mobile\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"RuLSKVKzC-container\",name:\"Carousel - Meeting - Mobile\",nodeId:\"RuLSKVKzC\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"RuLSKVKzC\",layoutId:\"RuLSKVKzC\",name:\"Carousel - Meeting - Mobile\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xp12fl-container\",\"data-framer-name\":\"Messenger\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"QUMnRjN0r-container\",name:\"Messenger\",nodeId:\"QUMnRjN0r\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickxp12flWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN245bvwq,height:\"100%\",id:\"QUMnRjN0r\",layoutId:\"QUMnRjN0r\",name:\"Messenger\",R9mUKnp49:\"メッセージ\\n\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tejccz-container\",\"data-framer-name\":\"Docs\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"pfoqFuTjc-container\",name:\"Docs\",nodeId:\"pfoqFuTjc\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1tejcczWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21grzj70,height:\"100%\",id:\"pfoqFuTjc\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/creation?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/2Fji9uhzjGQYQB0mqvuePpmXWA.png\"},\"\"),layoutId:\"pfoqFuTjc\",name:\"Docs\",R9mUKnp49:\"Docs\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1b64uut-container\",\"data-framer-name\":\"Meeting - Mobile - selected\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"v6GTNa9VC-container\",name:\"Meeting - Mobile - selected\",nodeId:\"v6GTNa9VC\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIcon,{height:\"100%\",id:\"v6GTNa9VC\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/video?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/QbJOm93UUnVkMGCW59pB6XTENw.png\"},\"\"),layoutId:\"v6GTNa9VC\",name:\"Meeting - Mobile - selected\",R9mUKnp49:\"ビデオ会議\",variant:\"QUNyNLbf7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kcil8w-container\",\"data-framer-name\":\"Minutes\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"JvRKdYlAE-container\",name:\"Minutes\",nodeId:\"JvRKdYlAE\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickkcil8wWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21lbax99,height:\"100%\",id:\"JvRKdYlAE\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/minutes?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/3Xw1qZr8QWpgBneJNqx3q6zGoRI.png\"},\"\"),layoutId:\"JvRKdYlAE\",name:\"Minutes\",R9mUKnp49:\"Minutes\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-113lyn1-container\",\"data-framer-name\":\"Calendar\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Ym0wzbGRo-container\",name:\"Calendar\",nodeId:\"Ym0wzbGRo\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick113lyn1WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21uv23ky,height:\"100%\",id:\"Ym0wzbGRo\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/calendar?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/UQsJ3k0ZXmKxQcgEC44Ac70EY4.png\"},\"\"),layoutId:\"Ym0wzbGRo\",name:\"Calendar\",R9mUKnp49:\"カレンダー\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nff8x3-container\",\"data-framer-name\":\"Email\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ZErkSU1OC-container\",name:\"Email\",nodeId:\"ZErkSU1OC\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1nff8x3WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2izzsi8,height:\"100%\",id:\"ZErkSU1OC\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/email?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/cTabz3CAUTxsEoGGzrInG9Aa6c.png\"},\"\"),layoutId:\"ZErkSU1OC\",name:\"Email\",R9mUKnp49:\"メール\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wkvo7y-container\",\"data-framer-name\":\"Approval\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"KDCAKj0OU-container\",name:\"Approval\",nodeId:\"KDCAKj0OU\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickwkvo7yWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21gowb9a,height:\"100%\",id:\"KDCAKj0OU\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/approval?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/XWX36GJD1rfQYqazCAdXY7LK84.png\"},\"\"),layoutId:\"KDCAKj0OU\",name:\"Approval\",R9mUKnp49:\"承認\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19qpuk5-container\",\"data-framer-name\":\"Base\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"LDMM0NxBY-container\",name:\"Base\",nodeId:\"LDMM0NxBY\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick19qpuk5WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2tgz83y,height:\"100%\",id:\"LDMM0NxBY\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/bitable?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/nIYwIAAAj3FNFJOWP9VFxN7zQ.svg\"},\"\"),layoutId:\"LDMM0NxBY\",name:\"Base\",R9mUKnp49:\"Base\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-j535l7-container\",\"data-framer-name\":\"Wiki\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"XcNFm5Erw-container\",name:\"Wiki\",nodeId:\"XcNFm5Erw\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickj535l7WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2sfda52,height:\"100%\",id:\"XcNFm5Erw\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/wiki?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/pM3hee06WIi74HRuxCjlF9JG0.png\"},\"\"),layoutId:\"XcNFm5Erw\",name:\"Wiki\",R9mUKnp49:\"Wiki\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a8p3x9-container\",\"data-framer-name\":\"OKR\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"kdXGLWtB7-container\",name:\"OKR\",nodeId:\"kdXGLWtB7\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1a8p3x9WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2199dke2,height:\"100%\",id:\"kdXGLWtB7\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/okr?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/jUJEbEYIiOylbFngKykNR5pSc.png\"},\"\"),layoutId:\"kdXGLWtB7\",name:\"OKR\",R9mUKnp49:\"OKR\",variant:\"SnfpBZE_h\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed25()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1l5yggl-container\",\"data-framer-name\":\"Carousel - Minutes - Mobile\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"dGqmF45me-container\",name:\"Carousel - Minutes - Mobile\",nodeId:\"dGqmF45me\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"dGqmF45me\",layoutId:\"dGqmF45me\",name:\"Carousel - Minutes - Mobile\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xp12fl-container\",\"data-framer-name\":\"Messenger\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"QUMnRjN0r-container\",name:\"Messenger\",nodeId:\"QUMnRjN0r\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickxp12flWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN245bvwq,height:\"100%\",id:\"QUMnRjN0r\",layoutId:\"QUMnRjN0r\",name:\"Messenger\",R9mUKnp49:\"メッセージ\\n\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tejccz-container\",\"data-framer-name\":\"Docs\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"pfoqFuTjc-container\",name:\"Docs\",nodeId:\"pfoqFuTjc\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1tejcczWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21grzj70,height:\"100%\",id:\"pfoqFuTjc\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/creation?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/2Fji9uhzjGQYQB0mqvuePpmXWA.png\"},\"\"),layoutId:\"pfoqFuTjc\",name:\"Docs\",R9mUKnp49:\"Docs\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jvcyjx-container\",\"data-framer-name\":\"Meetings\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Ia5mEJKxy-container\",name:\"Meetings\",nodeId:\"Ia5mEJKxy\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1jvcyjxWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2frmds9,height:\"100%\",id:\"Ia5mEJKxy\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/video?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/QbJOm93UUnVkMGCW59pB6XTENw.png\"},\"\"),layoutId:\"Ia5mEJKxy\",name:\"Meetings\",R9mUKnp49:\"ビデオ会議\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-u0qmpn-container\",\"data-framer-name\":\"Minutes - Mobile - selected\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"nLxGPk7Cg-container\",name:\"Minutes - Mobile - selected\",nodeId:\"nLxGPk7Cg\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIcon,{height:\"100%\",id:\"nLxGPk7Cg\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/minutes?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/3Xw1qZr8QWpgBneJNqx3q6zGoRI.png\"},\"\"),layoutId:\"nLxGPk7Cg\",name:\"Minutes - Mobile - selected\",R9mUKnp49:\"Minutes\",variant:\"QUNyNLbf7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-113lyn1-container\",\"data-framer-name\":\"Calendar\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Ym0wzbGRo-container\",name:\"Calendar\",nodeId:\"Ym0wzbGRo\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick113lyn1WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21uv23ky,height:\"100%\",id:\"Ym0wzbGRo\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/calendar?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/UQsJ3k0ZXmKxQcgEC44Ac70EY4.png\"},\"\"),layoutId:\"Ym0wzbGRo\",name:\"Calendar\",R9mUKnp49:\"カレンダー\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nff8x3-container\",\"data-framer-name\":\"Email\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ZErkSU1OC-container\",name:\"Email\",nodeId:\"ZErkSU1OC\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1nff8x3WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2izzsi8,height:\"100%\",id:\"ZErkSU1OC\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/email?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/cTabz3CAUTxsEoGGzrInG9Aa6c.png\"},\"\"),layoutId:\"ZErkSU1OC\",name:\"Email\",R9mUKnp49:\"メール\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wkvo7y-container\",\"data-framer-name\":\"Approval\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"KDCAKj0OU-container\",name:\"Approval\",nodeId:\"KDCAKj0OU\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickwkvo7yWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21gowb9a,height:\"100%\",id:\"KDCAKj0OU\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/approval?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/XWX36GJD1rfQYqazCAdXY7LK84.png\"},\"\"),layoutId:\"KDCAKj0OU\",name:\"Approval\",R9mUKnp49:\"承認\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19qpuk5-container\",\"data-framer-name\":\"Base\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"LDMM0NxBY-container\",name:\"Base\",nodeId:\"LDMM0NxBY\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick19qpuk5WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2tgz83y,height:\"100%\",id:\"LDMM0NxBY\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/bitable?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/nIYwIAAAj3FNFJOWP9VFxN7zQ.svg\"},\"\"),layoutId:\"LDMM0NxBY\",name:\"Base\",R9mUKnp49:\"Base\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-j535l7-container\",\"data-framer-name\":\"Wiki\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"XcNFm5Erw-container\",name:\"Wiki\",nodeId:\"XcNFm5Erw\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickj535l7WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2sfda52,height:\"100%\",id:\"XcNFm5Erw\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/wiki?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/pM3hee06WIi74HRuxCjlF9JG0.png\"},\"\"),layoutId:\"XcNFm5Erw\",name:\"Wiki\",R9mUKnp49:\"Wiki\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a8p3x9-container\",\"data-framer-name\":\"OKR\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"kdXGLWtB7-container\",name:\"OKR\",nodeId:\"kdXGLWtB7\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1a8p3x9WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2199dke2,height:\"100%\",id:\"kdXGLWtB7\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/okr?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/jUJEbEYIiOylbFngKykNR5pSc.png\"},\"\"),layoutId:\"kdXGLWtB7\",name:\"OKR\",R9mUKnp49:\"OKR\",variant:\"SnfpBZE_h\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed26()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lx53rc-container\",\"data-framer-name\":\"Carousel - Email - Mobile\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"nn2EElbNK-container\",name:\"Carousel - Email - Mobile\",nodeId:\"nn2EElbNK\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"nn2EElbNK\",layoutId:\"nn2EElbNK\",name:\"Carousel - Email - Mobile\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xp12fl-container\",\"data-framer-name\":\"Messenger\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"QUMnRjN0r-container\",name:\"Messenger\",nodeId:\"QUMnRjN0r\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickxp12flWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN245bvwq,height:\"100%\",id:\"QUMnRjN0r\",layoutId:\"QUMnRjN0r\",name:\"Messenger\",R9mUKnp49:\"メッセージ\\n\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tejccz-container\",\"data-framer-name\":\"Docs\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"pfoqFuTjc-container\",name:\"Docs\",nodeId:\"pfoqFuTjc\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1tejcczWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21grzj70,height:\"100%\",id:\"pfoqFuTjc\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/creation?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/2Fji9uhzjGQYQB0mqvuePpmXWA.png\"},\"\"),layoutId:\"pfoqFuTjc\",name:\"Docs\",R9mUKnp49:\"Docs\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jvcyjx-container\",\"data-framer-name\":\"Meetings\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Ia5mEJKxy-container\",name:\"Meetings\",nodeId:\"Ia5mEJKxy\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1jvcyjxWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2frmds9,height:\"100%\",id:\"Ia5mEJKxy\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/video?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/QbJOm93UUnVkMGCW59pB6XTENw.png\"},\"\"),layoutId:\"Ia5mEJKxy\",name:\"Meetings\",R9mUKnp49:\"ビデオ会議\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kcil8w-container\",\"data-framer-name\":\"Minutes\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"JvRKdYlAE-container\",name:\"Minutes\",nodeId:\"JvRKdYlAE\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickkcil8wWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21lbax99,height:\"100%\",id:\"JvRKdYlAE\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/minutes?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/3Xw1qZr8QWpgBneJNqx3q6zGoRI.png\"},\"\"),layoutId:\"JvRKdYlAE\",name:\"Minutes\",R9mUKnp49:\"Minutes\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-113lyn1-container\",\"data-framer-name\":\"Calendar\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Ym0wzbGRo-container\",name:\"Calendar\",nodeId:\"Ym0wzbGRo\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick113lyn1WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21uv23ky,height:\"100%\",id:\"Ym0wzbGRo\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/calendar?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/UQsJ3k0ZXmKxQcgEC44Ac70EY4.png\"},\"\"),layoutId:\"Ym0wzbGRo\",name:\"Calendar\",R9mUKnp49:\"カレンダー\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-42g4sd-container\",\"data-framer-name\":\"Email - Mobile - selected\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"vxFa1ojCP-container\",name:\"Email - Mobile - selected\",nodeId:\"vxFa1ojCP\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIcon,{height:\"100%\",id:\"vxFa1ojCP\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/email?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/cTabz3CAUTxsEoGGzrInG9Aa6c.png\"},\"\"),layoutId:\"vxFa1ojCP\",name:\"Email - Mobile - selected\",R9mUKnp49:\"メール\",variant:\"QUNyNLbf7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wkvo7y-container\",\"data-framer-name\":\"Approval\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"KDCAKj0OU-container\",name:\"Approval\",nodeId:\"KDCAKj0OU\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickwkvo7yWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21gowb9a,height:\"100%\",id:\"KDCAKj0OU\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/approval?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/XWX36GJD1rfQYqazCAdXY7LK84.png\"},\"\"),layoutId:\"KDCAKj0OU\",name:\"Approval\",R9mUKnp49:\"承認\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19qpuk5-container\",\"data-framer-name\":\"Base\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"LDMM0NxBY-container\",name:\"Base\",nodeId:\"LDMM0NxBY\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick19qpuk5WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2tgz83y,height:\"100%\",id:\"LDMM0NxBY\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/bitable?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/nIYwIAAAj3FNFJOWP9VFxN7zQ.svg\"},\"\"),layoutId:\"LDMM0NxBY\",name:\"Base\",R9mUKnp49:\"Base\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-j535l7-container\",\"data-framer-name\":\"Wiki\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"XcNFm5Erw-container\",name:\"Wiki\",nodeId:\"XcNFm5Erw\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickj535l7WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2sfda52,height:\"100%\",id:\"XcNFm5Erw\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/wiki?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/pM3hee06WIi74HRuxCjlF9JG0.png\"},\"\"),layoutId:\"XcNFm5Erw\",name:\"Wiki\",R9mUKnp49:\"Wiki\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a8p3x9-container\",\"data-framer-name\":\"OKR\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"kdXGLWtB7-container\",name:\"OKR\",nodeId:\"kdXGLWtB7\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1a8p3x9WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2199dke2,height:\"100%\",id:\"kdXGLWtB7\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/okr?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/jUJEbEYIiOylbFngKykNR5pSc.png\"},\"\"),layoutId:\"kdXGLWtB7\",name:\"OKR\",R9mUKnp49:\"OKR\",variant:\"SnfpBZE_h\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed27()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2ih11x-container\",\"data-framer-name\":\"Carousel - Approval - Mobile\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"dL561K89O-container\",name:\"Carousel - Approval - Mobile\",nodeId:\"dL561K89O\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"dL561K89O\",layoutId:\"dL561K89O\",name:\"Carousel - Approval - Mobile\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xp12fl-container\",\"data-framer-name\":\"Messenger\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"QUMnRjN0r-container\",name:\"Messenger\",nodeId:\"QUMnRjN0r\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickxp12flWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN245bvwq,height:\"100%\",id:\"QUMnRjN0r\",layoutId:\"QUMnRjN0r\",name:\"Messenger\",R9mUKnp49:\"メッセージ\\n\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tejccz-container\",\"data-framer-name\":\"Docs\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"pfoqFuTjc-container\",name:\"Docs\",nodeId:\"pfoqFuTjc\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1tejcczWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21grzj70,height:\"100%\",id:\"pfoqFuTjc\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/creation?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/2Fji9uhzjGQYQB0mqvuePpmXWA.png\"},\"\"),layoutId:\"pfoqFuTjc\",name:\"Docs\",R9mUKnp49:\"Docs\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jvcyjx-container\",\"data-framer-name\":\"Meetings\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Ia5mEJKxy-container\",name:\"Meetings\",nodeId:\"Ia5mEJKxy\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1jvcyjxWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2frmds9,height:\"100%\",id:\"Ia5mEJKxy\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/video?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/QbJOm93UUnVkMGCW59pB6XTENw.png\"},\"\"),layoutId:\"Ia5mEJKxy\",name:\"Meetings\",R9mUKnp49:\"ビデオ会議\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kcil8w-container\",\"data-framer-name\":\"Minutes\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"JvRKdYlAE-container\",name:\"Minutes\",nodeId:\"JvRKdYlAE\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickkcil8wWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21lbax99,height:\"100%\",id:\"JvRKdYlAE\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/minutes?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/3Xw1qZr8QWpgBneJNqx3q6zGoRI.png\"},\"\"),layoutId:\"JvRKdYlAE\",name:\"Minutes\",R9mUKnp49:\"Minutes\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-113lyn1-container\",\"data-framer-name\":\"Calendar\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Ym0wzbGRo-container\",name:\"Calendar\",nodeId:\"Ym0wzbGRo\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick113lyn1WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21uv23ky,height:\"100%\",id:\"Ym0wzbGRo\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/calendar?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/UQsJ3k0ZXmKxQcgEC44Ac70EY4.png\"},\"\"),layoutId:\"Ym0wzbGRo\",name:\"Calendar\",R9mUKnp49:\"カレンダー\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nff8x3-container\",\"data-framer-name\":\"Email\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ZErkSU1OC-container\",name:\"Email\",nodeId:\"ZErkSU1OC\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1nff8x3WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2izzsi8,height:\"100%\",id:\"ZErkSU1OC\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/email?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/cTabz3CAUTxsEoGGzrInG9Aa6c.png\"},\"\"),layoutId:\"ZErkSU1OC\",name:\"Email\",R9mUKnp49:\"メール\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gboj9u-container\",\"data-framer-name\":\"Approval - Mobile - selected\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"DlU35XbtF-container\",name:\"Approval - Mobile - selected\",nodeId:\"DlU35XbtF\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIcon,{height:\"100%\",id:\"DlU35XbtF\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/approval?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/XWX36GJD1rfQYqazCAdXY7LK84.png\"},\"\"),layoutId:\"DlU35XbtF\",name:\"Approval - Mobile - selected\",R9mUKnp49:\"承認\",variant:\"QUNyNLbf7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19qpuk5-container\",\"data-framer-name\":\"Base\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"LDMM0NxBY-container\",name:\"Base\",nodeId:\"LDMM0NxBY\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick19qpuk5WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2tgz83y,height:\"100%\",id:\"LDMM0NxBY\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/bitable?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/nIYwIAAAj3FNFJOWP9VFxN7zQ.svg\"},\"\"),layoutId:\"LDMM0NxBY\",name:\"Base\",R9mUKnp49:\"Base\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-j535l7-container\",\"data-framer-name\":\"Wiki\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"XcNFm5Erw-container\",name:\"Wiki\",nodeId:\"XcNFm5Erw\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickj535l7WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2sfda52,height:\"100%\",id:\"XcNFm5Erw\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/wiki?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/pM3hee06WIi74HRuxCjlF9JG0.png\"},\"\"),layoutId:\"XcNFm5Erw\",name:\"Wiki\",R9mUKnp49:\"Wiki\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a8p3x9-container\",\"data-framer-name\":\"OKR\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"kdXGLWtB7-container\",name:\"OKR\",nodeId:\"kdXGLWtB7\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1a8p3x9WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2199dke2,height:\"100%\",id:\"kdXGLWtB7\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/okr?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/jUJEbEYIiOylbFngKykNR5pSc.png\"},\"\"),layoutId:\"kdXGLWtB7\",name:\"OKR\",R9mUKnp49:\"OKR\",variant:\"SnfpBZE_h\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed28()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gn5rba-container\",\"data-framer-name\":\"Carousel - Base - Mobile\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"VQpYasrlM-container\",name:\"Carousel - Base - Mobile\",nodeId:\"VQpYasrlM\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"VQpYasrlM\",layoutId:\"VQpYasrlM\",name:\"Carousel - Base - Mobile\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xp12fl-container\",\"data-framer-name\":\"Messenger\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"QUMnRjN0r-container\",name:\"Messenger\",nodeId:\"QUMnRjN0r\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickxp12flWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN245bvwq,height:\"100%\",id:\"QUMnRjN0r\",layoutId:\"QUMnRjN0r\",name:\"Messenger\",R9mUKnp49:\"メッセージ\\n\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tejccz-container\",\"data-framer-name\":\"Docs\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"pfoqFuTjc-container\",name:\"Docs\",nodeId:\"pfoqFuTjc\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1tejcczWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21grzj70,height:\"100%\",id:\"pfoqFuTjc\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/creation?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/2Fji9uhzjGQYQB0mqvuePpmXWA.png\"},\"\"),layoutId:\"pfoqFuTjc\",name:\"Docs\",R9mUKnp49:\"Docs\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jvcyjx-container\",\"data-framer-name\":\"Meetings\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Ia5mEJKxy-container\",name:\"Meetings\",nodeId:\"Ia5mEJKxy\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1jvcyjxWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2frmds9,height:\"100%\",id:\"Ia5mEJKxy\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/video?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/QbJOm93UUnVkMGCW59pB6XTENw.png\"},\"\"),layoutId:\"Ia5mEJKxy\",name:\"Meetings\",R9mUKnp49:\"ビデオ会議\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kcil8w-container\",\"data-framer-name\":\"Minutes\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"JvRKdYlAE-container\",name:\"Minutes\",nodeId:\"JvRKdYlAE\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickkcil8wWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21lbax99,height:\"100%\",id:\"JvRKdYlAE\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/minutes?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/3Xw1qZr8QWpgBneJNqx3q6zGoRI.png\"},\"\"),layoutId:\"JvRKdYlAE\",name:\"Minutes\",R9mUKnp49:\"Minutes\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-113lyn1-container\",\"data-framer-name\":\"Calendar\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Ym0wzbGRo-container\",name:\"Calendar\",nodeId:\"Ym0wzbGRo\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick113lyn1WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21uv23ky,height:\"100%\",id:\"Ym0wzbGRo\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/calendar?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/UQsJ3k0ZXmKxQcgEC44Ac70EY4.png\"},\"\"),layoutId:\"Ym0wzbGRo\",name:\"Calendar\",R9mUKnp49:\"カレンダー\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nff8x3-container\",\"data-framer-name\":\"Email\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ZErkSU1OC-container\",name:\"Email\",nodeId:\"ZErkSU1OC\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1nff8x3WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2izzsi8,height:\"100%\",id:\"ZErkSU1OC\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/email?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/cTabz3CAUTxsEoGGzrInG9Aa6c.png\"},\"\"),layoutId:\"ZErkSU1OC\",name:\"Email\",R9mUKnp49:\"メール\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wkvo7y-container\",\"data-framer-name\":\"Approval\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"KDCAKj0OU-container\",name:\"Approval\",nodeId:\"KDCAKj0OU\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickwkvo7yWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21gowb9a,height:\"100%\",id:\"KDCAKj0OU\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/approval?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/XWX36GJD1rfQYqazCAdXY7LK84.png\"},\"\"),layoutId:\"KDCAKj0OU\",name:\"Approval\",R9mUKnp49:\"承認\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rtje9t-container\",\"data-framer-name\":\"Base - Mobile - selected\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"rqWQx6qz5-container\",name:\"Base - Mobile - selected\",nodeId:\"rqWQx6qz5\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIcon,{height:\"100%\",id:\"rqWQx6qz5\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/bitable?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/nIYwIAAAj3FNFJOWP9VFxN7zQ.svg\"},\"\"),layoutId:\"rqWQx6qz5\",name:\"Base - Mobile - selected\",R9mUKnp49:\"Base\",variant:\"QUNyNLbf7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-j535l7-container\",\"data-framer-name\":\"Wiki\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"XcNFm5Erw-container\",name:\"Wiki\",nodeId:\"XcNFm5Erw\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickj535l7WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2sfda52,height:\"100%\",id:\"XcNFm5Erw\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/wiki?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/pM3hee06WIi74HRuxCjlF9JG0.png\"},\"\"),layoutId:\"XcNFm5Erw\",name:\"Wiki\",R9mUKnp49:\"Wiki\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a8p3x9-container\",\"data-framer-name\":\"OKR\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"kdXGLWtB7-container\",name:\"OKR\",nodeId:\"kdXGLWtB7\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1a8p3x9WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2199dke2,height:\"100%\",id:\"kdXGLWtB7\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/okr?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/jUJEbEYIiOylbFngKykNR5pSc.png\"},\"\"),layoutId:\"kdXGLWtB7\",name:\"OKR\",R9mUKnp49:\"OKR\",variant:\"SnfpBZE_h\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed29()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1f5ri70-container\",\"data-framer-name\":\"Carousel - Wiki - Mobile\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"KUMhibDU2-container\",name:\"Carousel - Wiki - Mobile\",nodeId:\"KUMhibDU2\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"KUMhibDU2\",layoutId:\"KUMhibDU2\",name:\"Carousel - Wiki - Mobile\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xp12fl-container\",\"data-framer-name\":\"Messenger\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"QUMnRjN0r-container\",name:\"Messenger\",nodeId:\"QUMnRjN0r\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickxp12flWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN245bvwq,height:\"100%\",id:\"QUMnRjN0r\",layoutId:\"QUMnRjN0r\",name:\"Messenger\",R9mUKnp49:\"メッセージ\\n\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tejccz-container\",\"data-framer-name\":\"Docs\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"pfoqFuTjc-container\",name:\"Docs\",nodeId:\"pfoqFuTjc\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1tejcczWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21grzj70,height:\"100%\",id:\"pfoqFuTjc\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/creation?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/2Fji9uhzjGQYQB0mqvuePpmXWA.png\"},\"\"),layoutId:\"pfoqFuTjc\",name:\"Docs\",R9mUKnp49:\"Docs\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jvcyjx-container\",\"data-framer-name\":\"Meetings\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Ia5mEJKxy-container\",name:\"Meetings\",nodeId:\"Ia5mEJKxy\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1jvcyjxWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2frmds9,height:\"100%\",id:\"Ia5mEJKxy\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/video?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/QbJOm93UUnVkMGCW59pB6XTENw.png\"},\"\"),layoutId:\"Ia5mEJKxy\",name:\"Meetings\",R9mUKnp49:\"ビデオ会議\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kcil8w-container\",\"data-framer-name\":\"Minutes\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"JvRKdYlAE-container\",name:\"Minutes\",nodeId:\"JvRKdYlAE\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickkcil8wWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21lbax99,height:\"100%\",id:\"JvRKdYlAE\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/minutes?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/3Xw1qZr8QWpgBneJNqx3q6zGoRI.png\"},\"\"),layoutId:\"JvRKdYlAE\",name:\"Minutes\",R9mUKnp49:\"Minutes\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-113lyn1-container\",\"data-framer-name\":\"Calendar\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Ym0wzbGRo-container\",name:\"Calendar\",nodeId:\"Ym0wzbGRo\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick113lyn1WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21uv23ky,height:\"100%\",id:\"Ym0wzbGRo\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/calendar?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/UQsJ3k0ZXmKxQcgEC44Ac70EY4.png\"},\"\"),layoutId:\"Ym0wzbGRo\",name:\"Calendar\",R9mUKnp49:\"カレンダー\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nff8x3-container\",\"data-framer-name\":\"Email\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ZErkSU1OC-container\",name:\"Email\",nodeId:\"ZErkSU1OC\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1nff8x3WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2izzsi8,height:\"100%\",id:\"ZErkSU1OC\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/email?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/cTabz3CAUTxsEoGGzrInG9Aa6c.png\"},\"\"),layoutId:\"ZErkSU1OC\",name:\"Email\",R9mUKnp49:\"メール\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wkvo7y-container\",\"data-framer-name\":\"Approval\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"KDCAKj0OU-container\",name:\"Approval\",nodeId:\"KDCAKj0OU\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickwkvo7yWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21gowb9a,height:\"100%\",id:\"KDCAKj0OU\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/approval?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/XWX36GJD1rfQYqazCAdXY7LK84.png\"},\"\"),layoutId:\"KDCAKj0OU\",name:\"Approval\",R9mUKnp49:\"承認\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19qpuk5-container\",\"data-framer-name\":\"Base\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"LDMM0NxBY-container\",name:\"Base\",nodeId:\"LDMM0NxBY\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick19qpuk5WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2tgz83y,height:\"100%\",id:\"LDMM0NxBY\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/bitable?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/nIYwIAAAj3FNFJOWP9VFxN7zQ.svg\"},\"\"),layoutId:\"LDMM0NxBY\",name:\"Base\",R9mUKnp49:\"Base\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qs0l17-container\",\"data-framer-name\":\"Wiki - Mobile - selected\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"s5hMHRgEo-container\",name:\"Wiki - Mobile - selected\",nodeId:\"s5hMHRgEo\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIcon,{height:\"100%\",id:\"s5hMHRgEo\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/wiki?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/pM3hee06WIi74HRuxCjlF9JG0.png\"},\"\"),layoutId:\"s5hMHRgEo\",name:\"Wiki - Mobile - selected\",R9mUKnp49:\"Wiki\",variant:\"QUNyNLbf7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a8p3x9-container\",\"data-framer-name\":\"OKR\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"kdXGLWtB7-container\",name:\"OKR\",nodeId:\"kdXGLWtB7\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1a8p3x9WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2199dke2,height:\"100%\",id:\"kdXGLWtB7\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/okr?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/jUJEbEYIiOylbFngKykNR5pSc.png\"},\"\"),layoutId:\"kdXGLWtB7\",name:\"OKR\",R9mUKnp49:\"OKR\",variant:\"SnfpBZE_h\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed30()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-x0h2y0-container\",\"data-framer-name\":\"Carousel - Wiki - Mobile\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"E7YTkz3lA-container\",name:\"Carousel - Wiki - Mobile\",nodeId:\"E7YTkz3lA\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Carousel,{align:\"flex-start\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"E7YTkz3lA\",layoutId:\"E7YTkz3lA\",name:\"Carousel - Wiki - Mobile\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xp12fl-container\",\"data-framer-name\":\"Messenger\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"QUMnRjN0r-container\",name:\"Messenger\",nodeId:\"QUMnRjN0r\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickxp12flWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN245bvwq,height:\"100%\",id:\"QUMnRjN0r\",layoutId:\"QUMnRjN0r\",name:\"Messenger\",R9mUKnp49:\"メッセージ\\n\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tejccz-container\",\"data-framer-name\":\"Docs\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"pfoqFuTjc-container\",name:\"Docs\",nodeId:\"pfoqFuTjc\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1tejcczWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21grzj70,height:\"100%\",id:\"pfoqFuTjc\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/creation?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/2Fji9uhzjGQYQB0mqvuePpmXWA.png\"},\"\"),layoutId:\"pfoqFuTjc\",name:\"Docs\",R9mUKnp49:\"Docs\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jvcyjx-container\",\"data-framer-name\":\"Meetings\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Ia5mEJKxy-container\",name:\"Meetings\",nodeId:\"Ia5mEJKxy\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1jvcyjxWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2frmds9,height:\"100%\",id:\"Ia5mEJKxy\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/video?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/QbJOm93UUnVkMGCW59pB6XTENw.png\"},\"\"),layoutId:\"Ia5mEJKxy\",name:\"Meetings\",R9mUKnp49:\"ビデオ会議\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kcil8w-container\",\"data-framer-name\":\"Minutes\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"JvRKdYlAE-container\",name:\"Minutes\",nodeId:\"JvRKdYlAE\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickkcil8wWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21lbax99,height:\"100%\",id:\"JvRKdYlAE\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/minutes?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/3Xw1qZr8QWpgBneJNqx3q6zGoRI.png\"},\"\"),layoutId:\"JvRKdYlAE\",name:\"Minutes\",R9mUKnp49:\"Minutes\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-113lyn1-container\",\"data-framer-name\":\"Calendar\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Ym0wzbGRo-container\",name:\"Calendar\",nodeId:\"Ym0wzbGRo\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick113lyn1WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21uv23ky,height:\"100%\",id:\"Ym0wzbGRo\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/calendar?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/UQsJ3k0ZXmKxQcgEC44Ac70EY4.png\"},\"\"),layoutId:\"Ym0wzbGRo\",name:\"Calendar\",R9mUKnp49:\"カレンダー\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nff8x3-container\",\"data-framer-name\":\"Email\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ZErkSU1OC-container\",name:\"Email\",nodeId:\"ZErkSU1OC\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick1nff8x3WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2izzsi8,height:\"100%\",id:\"ZErkSU1OC\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/email?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/cTabz3CAUTxsEoGGzrInG9Aa6c.png\"},\"\"),layoutId:\"ZErkSU1OC\",name:\"Email\",R9mUKnp49:\"メール\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wkvo7y-container\",\"data-framer-name\":\"Approval\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"KDCAKj0OU-container\",name:\"Approval\",nodeId:\"KDCAKj0OU\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickwkvo7yWithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN21gowb9a,height:\"100%\",id:\"KDCAKj0OU\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/approval?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/XWX36GJD1rfQYqazCAdXY7LK84.png\"},\"\"),layoutId:\"KDCAKj0OU\",name:\"Approval\",R9mUKnp49:\"承認\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19qpuk5-container\",\"data-framer-name\":\"Base\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"LDMM0NxBY-container\",name:\"Base\",nodeId:\"LDMM0NxBY\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClick19qpuk5WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2tgz83y,height:\"100%\",id:\"LDMM0NxBY\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/bitable?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/nIYwIAAAj3FNFJOWP9VFxN7zQ.svg\"},\"\"),layoutId:\"LDMM0NxBY\",name:\"Base\",R9mUKnp49:\"Base\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-j535l7-container\",\"data-framer-name\":\"Wiki\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"XcNFm5Erw-container\",name:\"Wiki\",nodeId:\"XcNFm5Erw\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIconProductClickj535l7WithMappedReactProps1ogsl8s,{Gv9AudIN2:Gv9AudIN2sfda52,height:\"100%\",id:\"XcNFm5Erw\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/wiki?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/pM3hee06WIi74HRuxCjlF9JG0.png\"},\"\"),layoutId:\"XcNFm5Erw\",name:\"Wiki\",R9mUKnp49:\"Wiki\",variant:\"SnfpBZE_h\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:103,width:\"84px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19cncc-container\",\"data-framer-name\":\"OKR - Mobile - selected\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"gsjl5Ftrf-container\",name:\"OKR - Mobile - selected\",nodeId:\"gsjl5Ftrf\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Home_AppList_AppIcon,{height:\"100%\",id:\"gsjl5Ftrf\",iQh1W8WS5:\"https://www.larksuite.com/ja_jp/product/okr?from=hero_section\",Jyiio3Zlw:addImageAlt({src:\"https://framerusercontent.com/images/jUJEbEYIiOylbFngKykNR5pSc.png\"},\"\"),layoutId:\"gsjl5Ftrf\",name:\"OKR - Mobile - selected\",R9mUKnp49:\"OKR\",variant:\"QUNyNLbf7\",width:\"100%\"})})})],snapObject:{fluid:true,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"カレンダー\",fit:\"fill\",intrinsicHeight:3140,intrinsicWidth:4740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+160+0)),pixelHeight:2748,pixelWidth:3600,src:\"https://framerusercontent.com/images/NW35xfinMhdUwhA3oppddeujl8.png\"},className:\"framer-1s47dgr\",\"data-framer-name\":\"Feature Screenshot\",layoutDependency:layoutDependency,layoutId:\"aLb24H46X\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({aDTie48ej:{background:{alt:\"OKR\",fit:\"fill\",intrinsicHeight:3140,intrinsicWidth:4740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+160+0)),pixelHeight:1832,pixelWidth:2400,src:\"https://framerusercontent.com/images/UOMPjWMbvae91TyTufDSHNB3w5E.png\"}},E2m8izg1O:{background:{alt:\"Wiki\",fit:\"fill\",intrinsicHeight:3140,intrinsicWidth:4740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+160+0)),pixelHeight:1832,pixelWidth:2400,src:\"https://framerusercontent.com/images/dIEyhra7mIxmsBjzZIZDCgPXGWk.png\"}},e9qDC0bP2:{background:{alt:\"Minutes\",fit:\"fill\",intrinsicHeight:3140,intrinsicWidth:4740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+160+0)),pixelHeight:2748,pixelWidth:3600,src:\"https://framerusercontent.com/images/bdQqNiOP3eB9aIsuQnWXYJMr8KU.png\"}},EJIx7VOCY:{background:{alt:\"メッセージ\",fit:\"fill\",intrinsicHeight:3140,intrinsicWidth:4740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+160+0)),pixelHeight:3664,pixelWidth:4800,src:\"https://framerusercontent.com/images/88lpFNyBWqKDtskPl3RfmAKqXSQ.jpg\"}},p04E0KwrJ:{background:{alt:\"承認\",fit:\"fill\",intrinsicHeight:3140,intrinsicWidth:4740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+160+0)),pixelHeight:1832,pixelWidth:2400,src:\"https://framerusercontent.com/images/r44OJHhMj9gXBI8wyClUVYYmf8.png\"}},P8shNqvof:{background:{alt:\"メール\",fit:\"fill\",intrinsicHeight:3140,intrinsicWidth:4740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+160+0)),pixelHeight:1832,pixelWidth:2400,src:\"https://framerusercontent.com/images/7i0Gic8qkFnC73WUbT8mqkL91s.png\"}},QZkU4dyhU:{background:{alt:\"ドキュメント\",fit:\"fill\",intrinsicHeight:3140,intrinsicWidth:4740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+160+0)),pixelHeight:2748,pixelWidth:3600,src:\"https://framerusercontent.com/images/lmhCySr2amJ0RWnzclaNna2fsQ.png\"}},TAEJl1boe:{background:{alt:\"ビデオ会議\",fit:\"fill\",intrinsicHeight:3140,intrinsicWidth:4740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+160+0)),pixelHeight:3140,pixelWidth:4740,src:\"https://framerusercontent.com/images/WV8Qlxk5RCbU3jThI0bXIeZeIM.jpg\"}},UN61VRXzB:{background:{alt:\"プロジェクト管理\",fit:\"fill\",intrinsicHeight:3140,intrinsicWidth:4740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+160+0)),pixelHeight:1832,pixelWidth:2370,src:\"https://framerusercontent.com/images/qqxn75FtvxMmiXUn44YAN1VHo.png\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gf1rp3\",layoutDependency:layoutDependency,layoutId:\"tPTQi5vgO\",...addPropertyOverrides({aDTie48ej:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j0udfs\",layoutDependency:layoutDependency,layoutId:\"cvzncbDfs\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16xuql2\",layoutDependency:layoutDependency,layoutId:\"oYrKXGTSo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-h2swgp\",\"data-styles-preset\":\"rgvzP8QHm\",children:\"スケジュール 作成と把握を\"})}),className:\"framer-1toxow1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mWVGXjww8\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aDTie48ej:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-h2swgp\",\"data-styles-preset\":\"rgvzP8QHm\",children:\"戦略にフォーカスして、ビジョンを成果につなげる\"})})},E2m8izg1O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-h2swgp\",\"data-styles-preset\":\"rgvzP8QHm\",children:/*#__PURE__*/_jsx(motion.strong,{children:\"チームのナレッジを 一元管理\"})})}),fonts:[\"Inter\",\"Inter-Bold\"]},e9qDC0bP2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-h2swgp\",\"data-styles-preset\":\"rgvzP8QHm\",children:\"面倒な議事録は Lark Minutes におまかせ\"})})},EJIx7VOCY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-h2swgp\",\"data-styles-preset\":\"rgvzP8QHm\",children:\"チャット中心の業務で、仕事をラクにシンプルに\"})})},p04E0KwrJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-h2swgp\",\"data-styles-preset\":\"rgvzP8QHm\",children:\"すべてのワークフローは ここに\"})})},P8shNqvof:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-h2swgp\",\"data-styles-preset\":\"rgvzP8QHm\",children:\"便利かつ安全なメール\"})})},QZkU4dyhU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-h2swgp\",\"data-styles-preset\":\"rgvzP8QHm\",children:\"情報のまとめ方、見せ方を多彩に\"})})},TAEJl1boe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-h2swgp\",\"data-styles-preset\":\"rgvzP8QHm\",children:\"場所を選ばない ビデオ会議\"})})},UN61VRXzB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-h2swgp\",\"data-styles-preset\":\"rgvzP8QHm\",children:\"ノーコードで 自分だけのカスタマイズ アプリを作ろう\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+160+0)+20+0+0+0+0+0+42,...addPropertyOverrides({aDTie48ej:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+160+0)+20+0+0+0+0+42}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1oq33iw-container\",layoutDependency:layoutDependency,layoutId:\"jS9whTauM-container\",nodeId:\"jS9whTauM\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Global_ButtonStepsOfLarkClick1oq33iwWithMappedReactPropsqzim95,{G8TptyYBv:\"Download\",height:\"100%\",id:\"jS9whTauM\",kXScVjI8w:\"https://www.larksuite.com/ja_jp/product/calendar?from=home_product\",layoutId:\"jS9whTauM\",PgP_e5X9h:\"機能を詳しく見る\",variant:\"oqbgLHn_F\",width:\"100%\",...addPropertyOverrides({aDTie48ej:{kXScVjI8w:\"https://www.larksuite.com/ja_jp/product/okr?from=home_product\"},E2m8izg1O:{kXScVjI8w:\"https://www.larksuite.com/ja_jp/product/wiki?from=home_product\"},e9qDC0bP2:{kXScVjI8w:\"https://www.larksuite.com/ja_jp/product/minutes?from=home_product\"},EJIx7VOCY:{kXScVjI8w:\"https://www.larksuite.com/ja_jp/product/messenger?from=home_product\"},p04E0KwrJ:{kXScVjI8w:\"https://www.larksuite.com/ja_jp/product/approval?from=home_product\"},P8shNqvof:{kXScVjI8w:\"https://www.larksuite.com/ja_jp/product/email?from=home_product\"},QZkU4dyhU:{kXScVjI8w:\"https://www.larksuite.com/ja_jp/product/creation?from=home_product\"},TAEJl1boe:{kXScVjI8w:\"https://www.larksuite.com/ja_jp/product/video?from=home_product\"},UN61VRXzB:{kXScVjI8w:\"https://www.larksuite.com/ja_jp/product/base?from=home_product\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+160+0)+20+0+0+0+21,...addPropertyOverrides({aDTie48ej:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||980)-0-980)/2+160+0)+20+0+0+21}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1w3vd1q-container\",layoutDependency:layoutDependency,layoutId:\"MriaJIDbr-container\",nodeId:\"MriaJIDbr\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Global_ButtonProductTryForFree1w3vd1qWithMappedReactPropsqzim95,{G8TptyYBv:\"Download\",height:\"100%\",id:\"MriaJIDbr\",kXScVjI8w:\"https://www.larksuite.com/global/register?redirect_uri=https://www.larksuite.com/ja_jp/getstarted&registration_process=global_register&app_id=1001&from=home_product\",layoutId:\"MriaJIDbr\",PgP_e5X9h:\"無料で使ってみる\",variant:\"zq6FPfMce\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jg60nb\",\"data-styles-preset\":\"X82eKqeAg\",children:\"スケジュール管理は全てここから。チームメンバーのスケジュールも簡単に把握。時間をより有効に活用する事で、生産性向上を図る\"})}),className:\"framer-eomqrc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oTeSzE0mY\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aDTie48ej:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jg60nb\",\"data-styles-preset\":\"X82eKqeAg\",children:\"Lark OKR は、個人とチームの目標を一致させることで、組織が目指す共通目標を設定することができます。\"})})},E2m8izg1O:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jg60nb\",\"data-styles-preset\":\"X82eKqeAg\",children:\"組織向けのナレッジ マネジメント ソリューション。チーム全体でリッチ コンテンツを作成、整理、管理できます。\"})})},e9qDC0bP2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jg60nb\",\"data-styles-preset\":\"X82eKqeAg\",children:\"Lark Minutes の自動文字起こし機能で、ビデオ会議の内容を、閲覧・検索可能な議事録に変更。会議に出られないときでも、情報を簡単にキャッチアップ\"})})},EJIx7VOCY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jg60nb\",\"data-styles-preset\":\"X82eKqeAg\",children:\"チャット内に各機能を連携させる。スケジューリング、承認、タスク割り当てまで必要事項を自動で通知。\"})})},p04E0KwrJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jg60nb\",\"data-styles-preset\":\"X82eKqeAg\",children:\"さまざまな承認の申請と実行を1つのプラットフォーム上で完結。外出先でもワンクリックで内容の確認と承認が可能\"})})},P8shNqvof:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jg60nb\",\"data-styles-preset\":\"X82eKqeAg\",children:\"Larkの機能と連携したスマートで安全なLark メール。複数のデバイス間でのメールの同期、オフラインでの読み取り、新着メールの通知、およびメールの送受信など、重要な機能をサポートします。\"})})},QZkU4dyhU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jg60nb\",\"data-styles-preset\":\"X82eKqeAg\",children:\"Docs から Sheets、Mindnotes までいろんなフォーマットで共同編集できる。クラウド保存なので、リアルタイムで反映・確認できる。共同作業・コンテンツ制作はより効率的に。閲覧や編集、細かい権限設定も可能\"})})},TAEJl1boe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jg60nb\",\"data-styles-preset\":\"X82eKqeAg\",children:\"いつでもどこでも、ドキュメント共有、会議の録画をスマホで完結。自動文字起こしと自動翻訳も完備。内容を保存し、後から確認、共有ができます。\"})})},UN61VRXzB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jg60nb\",\"data-styles-preset\":\"X82eKqeAg\",children:\"現場の店舗点検システム、営業分析のダッシュボード、プロジェクトの進捗管理など、さまざまのチームのさまざまのニーズに適応するツールやワークフローを構築\"})})}},baseVariant,gestureVariant)})]})}),isDisplayed31()&&/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1173,intrinsicWidth:1800,pixelHeight:1173,pixelWidth:1800,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png\",srcSet:\"https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png?scale-down-to=512 512w,https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png 1800w\"},className:\"framer-1lkehf8\",\"data-framer-name\":\"Features Script\",layoutDependency:layoutDependency,layoutId:\"XYIAFzEKW\",...addPropertyOverrides({BjZowWo0x:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1173,intrinsicWidth:1800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+160),pixelHeight:1173,pixelWidth:1800,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png\",srcSet:\"https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png?scale-down-to=512 512w,https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png 1800w\"}},cC3AKyC2E:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1173,intrinsicWidth:1800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+160),pixelHeight:1173,pixelWidth:1800,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png\",srcSet:\"https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png?scale-down-to=512 512w,https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png 1800w\"}},gs84CJujH:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1173,intrinsicWidth:1800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+160),pixelHeight:1173,pixelWidth:1800,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png\",srcSet:\"https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png?scale-down-to=512 512w,https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png 1800w\"}},otLa3jXen:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1173,intrinsicWidth:1800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+160),pixelHeight:1173,pixelWidth:1800,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png\",srcSet:\"https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png?scale-down-to=512 512w,https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png 1800w\"}},PMmQTO8Sr:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1173,intrinsicWidth:1800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+160),pixelHeight:1173,pixelWidth:1800,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png\",srcSet:\"https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png?scale-down-to=512 512w,https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png 1800w\"}},rn5MicaMz:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1173,intrinsicWidth:1800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+155),pixelHeight:1173,pixelWidth:1800,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png\",srcSet:\"https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png?scale-down-to=512 512w,https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png 1800w\"}},WIYWlbebj:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1173,intrinsicWidth:1800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+160),pixelHeight:1173,pixelWidth:1800,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png\",srcSet:\"https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png?scale-down-to=512 512w,https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png 1800w\"}},yXCy9BJCk:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1173,intrinsicWidth:1800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+170),pixelHeight:1173,pixelWidth:1800,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png\",srcSet:\"https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png?scale-down-to=512 512w,https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png 1800w\"}},Zu0XzrHMJ:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1173,intrinsicWidth:1800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+170),pixelHeight:1173,pixelWidth:1800,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png\",srcSet:\"https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png?scale-down-to=512 512w,https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png 1800w\"}},ZuUUXZgW2:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1173,intrinsicWidth:1800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+160),pixelHeight:1173,pixelWidth:1800,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png\",srcSet:\"https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png?scale-down-to=512 512w,https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wWynp85vFGsBRN6fOGFQfBOq0.png 1800w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k8o00f\",layoutDependency:layoutDependency,layoutId:\"qmWrYUwfd\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ipmm6h\",layoutDependency:layoutDependency,layoutId:\"Iadv104gO\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"スケジュール作成と把握を\"})}),className:\"framer-jbbymo\",fonts:[\"GF;Noto Sans JP-900\"],layoutDependency:layoutDependency,layoutId:\"LXBcSsUV6\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({BjZowWo0x:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"面倒な議事録は\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Lark Minutes におまかせ\"})]})},cC3AKyC2E:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"戦略にフォーカスして、\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"ビジョンを成果につなげる\"})]})},gs84CJujH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsxs(motion.strong,{children:[\"チームのナレッジを\",/*#__PURE__*/_jsx(motion.br,{}),\"一元管理\"]})})})},otLa3jXen:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"すべてのワークフローは\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"ここに\"})]})},PMmQTO8Sr:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"ノーコードで\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"自分だけのカスタマイズ\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"アプリを作ろう\"})]})},rn5MicaMz:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"場所を選ばない\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"ビデオ会議\"})]})},WIYWlbebj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"便利かつ安全なメール\"})})},yXCy9BJCk:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"チャット中心の業務で、\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"仕事をラクにシンプルに\"})]})},ZuUUXZgW2:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"情報のまとめ方、\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"見せ方を多彩に\"})]})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,...addPropertyOverrides({BjZowWo0x:{y:(componentViewport?.y||0)+0+160+24+0+0+0+0+66},cC3AKyC2E:{y:(componentViewport?.y||0)+0+160+24+0+0+0+0+66},gs84CJujH:{y:(componentViewport?.y||0)+0+160+24+0+0+0+0+36},otLa3jXen:{y:(componentViewport?.y||0)+0+160+24+0+0+0+0+66},PMmQTO8Sr:{y:(componentViewport?.y||0)+0+160+24+0+0+0+0+96},rn5MicaMz:{y:(componentViewport?.y||0)+0+155+24+0+0+0+0+66},WIYWlbebj:{y:(componentViewport?.y||0)+0+160+24+0+0+0+0+36},yXCy9BJCk:{y:(componentViewport?.y||0)+0+170+24+0+0+0+0+66},Zu0XzrHMJ:{y:(componentViewport?.y||0)+0+170+24+0+0+0+0+36},ZuUUXZgW2:{y:(componentViewport?.y||0)+0+160+24+0+0+0+0+66}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-v698sa-container\",layoutDependency:layoutDependency,layoutId:\"ZUOIMLubD-container\",nodeId:\"ZUOIMLubD\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Global_ButtonStepsOfLarkClickv698saWithMappedReactPropsqzim95,{G8TptyYBv:\"Download\",height:\"100%\",id:\"ZUOIMLubD\",kXScVjI8w:\"https://www.larksuite.com/ja_jp/product/calendar?from=home_product\",layoutId:\"ZUOIMLubD\",PgP_e5X9h:\"機能を詳しく見る\",variant:\"oqbgLHn_F\",width:\"100%\",...addPropertyOverrides({BjZowWo0x:{kXScVjI8w:\"https://www.larksuite.com/ja_jp/product/minutes?from=home_product\"},cC3AKyC2E:{kXScVjI8w:\"https://www.larksuite.com/ja_jp/product/okr?from=home_product\"},gs84CJujH:{kXScVjI8w:\"https://www.larksuite.com/ja_jp/product/wiki?from=home_product\"},otLa3jXen:{kXScVjI8w:\"https://www.larksuite.com/ja_jp/product/approval?from=home_product\"},PMmQTO8Sr:{kXScVjI8w:\"https://www.larksuite.com/ja_jp/product/base?from=home_product\"},rn5MicaMz:{kXScVjI8w:\"https://www.larksuite.com/ja_jp/product/video?from=home_product\"},WIYWlbebj:{kXScVjI8w:\"https://www.larksuite.com/ja_jp/product/email?from=home_product\"},yXCy9BJCk:{kXScVjI8w:\"https://www.larksuite.com/ja_jp/product/messenger?from=home_product\"},ZuUUXZgW2:{kXScVjI8w:\"https://www.larksuite.com/ja_jp/product/creation?from=home_product\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yy0nlj\",layoutDependency:layoutDependency,layoutId:\"y6CMOwvJI\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"自分のカレンダーは一元管理。チームメンバーのスケジュールも簡単に把握。時間をより有効に活用する事で、生産性向上を図る\"})}),className:\"framer-uwep9x\",fonts:[\"GF;Noto Sans JP-regular\"],layoutDependency:layoutDependency,layoutId:\"k_WCcjXv0\",text:RE6MPByGe,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({BjZowWo0x:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Lark Minutes の自動文字起こし機能で、ビデオ会議の内容を、閲覧・検索可能な議事録に変更。会議に出られないときでも、情報を簡単にキャッチアップ\"})}),text:undefined},cC3AKyC2E:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Lark OKR は、個人とチームの目標を一致させることで、組織が目指す共通目標を設定することができます。\"})}),text:undefined},gs84CJujH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"組織向けのナレッジ マネジメント ソリューション。チーム全体でリッチ コンテンツを作成、整理、管理できます。\"})}),text:undefined},otLa3jXen:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"さまざまな承認の申請と実行を1つのプラットフォーム上で完結。外出先でもワンクリックで内容の確認と承認が可能\"})}),text:undefined},PMmQTO8Sr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"現場の店舗点検システム、営業分析のダッシュボード、プロジェクトの進捗管理など、さまざまのチームのさまざまのニーズに適応するツールやワークフローを構築\"})}),text:undefined},rn5MicaMz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"いつでもどこでも、ドキュメント共有、会議の録画をスマホで完結。自動文字起こしと自動翻訳も完備。内容を保存し、後から確認、共有ができます。\"})}),text:undefined},WIYWlbebj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Larkの機能と連携したスマートで安全なLark メール。複数のデバイス間でのメールの同期、オフラインでの読み取り、新着メールの通知、およびメールの送受信など、重要な機能をサポートします。\"})}),text:undefined},yXCy9BJCk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"チャット内に各機能を連携させる。スケジューリング、承認、タスク割り当てまで必要事項を自動で通知。\"})}),text:undefined},Zu0XzrHMJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"スケジュール管理は全てここから。チームメンバーのスケジュールも簡単に把握。時間をより有効に活用する事で、生産性向上を図る\"})}),text:undefined},ZuUUXZgW2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:\"Docs から Sheets、Mindnotes までいろんなフォーマットで共同編集できる。クラウド保存なので、リアルタイムで反映・確認できる。共同作業・コンテンツ制作はより効率的に。閲覧や編集、細かい権限設定も可能\"})}),text:undefined}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lfkpx1\",layoutDependency:layoutDependency,layoutId:\"HQlVxM8kK\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"210px\",...addPropertyOverrides({BjZowWo0x:{y:(componentViewport?.y||0)+0+160+24+0+0+286+0+0},cC3AKyC2E:{y:(componentViewport?.y||0)+0+160+24+0+0+286+0+0},gs84CJujH:{y:(componentViewport?.y||0)+0+160+24+0+0+256+0+0},otLa3jXen:{y:(componentViewport?.y||0)+0+160+24+0+0+286+0+0},PMmQTO8Sr:{y:(componentViewport?.y||0)+0+160+24+0+0+316+0+0},rn5MicaMz:{y:(componentViewport?.y||0)+0+155+24+0+0+286+0+0},WIYWlbebj:{y:(componentViewport?.y||0)+0+160+24+0+0+256+0+0},yXCy9BJCk:{y:(componentViewport?.y||0)+0+170+24+0+0+286+0+0},Zu0XzrHMJ:{y:(componentViewport?.y||0)+0+170+24+0+0+256+0+0},ZuUUXZgW2:{y:(componentViewport?.y||0)+0+160+24+0+0+286+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11qovze-container\",layoutDependency:layoutDependency,layoutId:\"PCMcWt3jV-container\",nodeId:\"PCMcWt3jV\",rendersWithMotion:true,scopeId:\"Ii4QR9MrW\",children:/*#__PURE__*/_jsx(Global_ButtonProductTryForFree11qovzeWithMappedReactPropsqzim95,{G8TptyYBv:\"Download\",height:\"100%\",id:\"PCMcWt3jV\",kXScVjI8w:\"https://www.larksuite.com/global/register?redirect_uri=https://www.larksuite.com/ja_jp/download&registration_process=global_register&app_id=1001&from=home_product\",layoutId:\"PCMcWt3jV\",PgP_e5X9h:\"無料で使ってみる\",style:{height:\"100%\",width:\"100%\"},variant:\"zq6FPfMce\",width:\"100%\",...addPropertyOverrides({BjZowWo0x:{kXScVjI8w:\"https://www.larksuite.com/global/register?redirect_uri=https://www.larksuite.com/ja_jp/getstarted&registration_process=global_register&app_id=1001&from=home_product\"},cC3AKyC2E:{kXScVjI8w:\"https://www.larksuite.com/global/register?redirect_uri=https://www.larksuite.com/ja_jp/getstarted&registration_process=global_register&app_id=1001&from=home_product\"},gs84CJujH:{kXScVjI8w:\"https://www.larksuite.com/global/register?redirect_uri=https://www.larksuite.com/ja_jp/getstarted&registration_process=global_register&app_id=1001&from=home_product\"},otLa3jXen:{kXScVjI8w:\"https://www.larksuite.com/global/register?redirect_uri=https://www.larksuite.com/ja_jp/getstarted&registration_process=global_register&app_id=1001&from=home_product\"},PMmQTO8Sr:{kXScVjI8w:\"https://www.larksuite.com/global/register?redirect_uri=https://www.larksuite.com/ja_jp/getstarted&registration_process=global_register&app_id=1001&from=home_product\"},rn5MicaMz:{kXScVjI8w:\"https://www.larksuite.com/global/register?redirect_uri=https://www.larksuite.com/ja_jp/getstarted&registration_process=global_register&app_id=1001&from=home_product\"},WIYWlbebj:{kXScVjI8w:\"https://www.larksuite.com/global/register?redirect_uri=https://www.larksuite.com/ja_jp/getstarted&registration_process=global_register&app_id=1001&from=home_product\"},yXCy9BJCk:{kXScVjI8w:\"https://www.larksuite.com/global/register?redirect_uri=https://www.larksuite.com/ja_jp/getstarted&registration_process=global_register&app_id=1001&from=home_product\"},Zu0XzrHMJ:{kXScVjI8w:\"https://www.larksuite.com/global/register?redirect_uri=https://www.larksuite.com/ja_jp/getstarted&registration_process=global_register&app_id=1001&from=home_product\"},ZuUUXZgW2:{kXScVjI8w:\"https://www.larksuite.com/global/register?redirect_uri=https://www.larksuite.com/ja_jp/getstarted&registration_process=global_register&app_id=1001&from=home_product\"}},baseVariant,gestureVariant)})})})})]})}),isDisplayed31()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1173,intrinsicWidth:1800,pixelHeight:1173,pixelWidth:1800,...toResponsiveImage(JANIzC2cP),...{positionX:\"center\",positionY:\"bottom\"}},className:\"framer-ymo2w9\",\"data-framer-name\":\"Feature Screenshot\",layoutDependency:layoutDependency,layoutId:\"fmMiy4pVG\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{BjZowWo0x:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},cC3AKyC2E:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},gs84CJujH:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},otLa3jXen:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},PMmQTO8Sr:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},rn5MicaMz:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},WIYWlbebj:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},yXCy9BJCk:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},Zu0XzrHMJ:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},ZuUUXZgW2:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}},...addPropertyOverrides({BjZowWo0x:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3140,intrinsicWidth:4740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+534),pixelHeight:1590,pixelWidth:2400,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/BxBMUVmgHRfb2MM5R08eTLsh8k.png\",srcSet:\"https://framerusercontent.com/images/BxBMUVmgHRfb2MM5R08eTLsh8k.png?scale-down-to=512 512w,https://framerusercontent.com/images/BxBMUVmgHRfb2MM5R08eTLsh8k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BxBMUVmgHRfb2MM5R08eTLsh8k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/BxBMUVmgHRfb2MM5R08eTLsh8k.png 2400w\"}},cC3AKyC2E:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3140,intrinsicWidth:4740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+534),pixelHeight:1590,pixelWidth:2400,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/XhyM9VWsqa4LicgRXKHFZse6CA.png\",srcSet:\"https://framerusercontent.com/images/XhyM9VWsqa4LicgRXKHFZse6CA.png?scale-down-to=512 512w,https://framerusercontent.com/images/XhyM9VWsqa4LicgRXKHFZse6CA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XhyM9VWsqa4LicgRXKHFZse6CA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/XhyM9VWsqa4LicgRXKHFZse6CA.png 2400w\"}},gs84CJujH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3140,intrinsicWidth:4740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+504),pixelHeight:1590,pixelWidth:2400,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/cHhKjjV0q78PsYSHxnOrscxm66Q.png\",srcSet:\"https://framerusercontent.com/images/cHhKjjV0q78PsYSHxnOrscxm66Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/cHhKjjV0q78PsYSHxnOrscxm66Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cHhKjjV0q78PsYSHxnOrscxm66Q.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/cHhKjjV0q78PsYSHxnOrscxm66Q.png 2400w\"}},otLa3jXen:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3140,intrinsicWidth:4740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+534),pixelHeight:1193,pixelWidth:1800,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/CLGHezMEXSz2Cff9YiQ4gBMR9tg.png\",srcSet:\"https://framerusercontent.com/images/CLGHezMEXSz2Cff9YiQ4gBMR9tg.png?scale-down-to=512 512w,https://framerusercontent.com/images/CLGHezMEXSz2Cff9YiQ4gBMR9tg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CLGHezMEXSz2Cff9YiQ4gBMR9tg.png 1800w\"}},PMmQTO8Sr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3140,intrinsicWidth:4740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+564),pixelHeight:1590,pixelWidth:2370,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/cNhSdUBhAdKMIfcJozdxTPpSvo.png\",srcSet:\"https://framerusercontent.com/images/cNhSdUBhAdKMIfcJozdxTPpSvo.png?scale-down-to=512 512w,https://framerusercontent.com/images/cNhSdUBhAdKMIfcJozdxTPpSvo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cNhSdUBhAdKMIfcJozdxTPpSvo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/cNhSdUBhAdKMIfcJozdxTPpSvo.png 2370w\"}},rn5MicaMz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3140,intrinsicWidth:4740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+529),pixelHeight:3140,pixelWidth:4740,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/cffKGCfUgeSEK0juAKyqOxWDDk4.jpg\",srcSet:\"https://framerusercontent.com/images/cffKGCfUgeSEK0juAKyqOxWDDk4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cffKGCfUgeSEK0juAKyqOxWDDk4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cffKGCfUgeSEK0juAKyqOxWDDk4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/cffKGCfUgeSEK0juAKyqOxWDDk4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/cffKGCfUgeSEK0juAKyqOxWDDk4.jpg 4740w\"}},WIYWlbebj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3140,intrinsicWidth:4740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+504),pixelHeight:1193,pixelWidth:1800,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/LUSEJ4IsR7WCfzJ5zaEvNTBVYk.png\",srcSet:\"https://framerusercontent.com/images/LUSEJ4IsR7WCfzJ5zaEvNTBVYk.png?scale-down-to=512 512w,https://framerusercontent.com/images/LUSEJ4IsR7WCfzJ5zaEvNTBVYk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LUSEJ4IsR7WCfzJ5zaEvNTBVYk.png 1800w\"}},yXCy9BJCk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3140,intrinsicWidth:4740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+544),pixelHeight:1590,pixelWidth:2400,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/fM0DQ2Wac7MqzihUJjOHbMFnbw.jpg\",srcSet:\"https://framerusercontent.com/images/fM0DQ2Wac7MqzihUJjOHbMFnbw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fM0DQ2Wac7MqzihUJjOHbMFnbw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fM0DQ2Wac7MqzihUJjOHbMFnbw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/fM0DQ2Wac7MqzihUJjOHbMFnbw.jpg 2400w\"}},Zu0XzrHMJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3140,intrinsicWidth:4740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+514),pixelHeight:1590,pixelWidth:2400,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/6MrziKkk7PhIKew2UF9cvnqSyTg.png\",srcSet:\"https://framerusercontent.com/images/6MrziKkk7PhIKew2UF9cvnqSyTg.png?scale-down-to=512 512w,https://framerusercontent.com/images/6MrziKkk7PhIKew2UF9cvnqSyTg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6MrziKkk7PhIKew2UF9cvnqSyTg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/6MrziKkk7PhIKew2UF9cvnqSyTg.png 2400w\"}},ZuUUXZgW2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3140,intrinsicWidth:4740,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+534),pixelHeight:1590,pixelWidth:2400,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/8ViGz1Cvbn3pLyTvbHoB4z35HY.png\",srcSet:\"https://framerusercontent.com/images/8ViGz1Cvbn3pLyTvbHoB4z35HY.png?scale-down-to=512 512w,https://framerusercontent.com/images/8ViGz1Cvbn3pLyTvbHoB4z35HY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8ViGz1Cvbn3pLyTvbHoB4z35HY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8ViGz1Cvbn3pLyTvbHoB4z35HY.png 2400w\"}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-siqgc.framer-1gd8av5, .framer-siqgc .framer-1gd8av5 { display: block; }\",\".framer-siqgc.framer-1cwosbs { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1240px; }\",\".framer-siqgc .framer-4ypxe4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 160px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 96%; }\",\".framer-siqgc .framer-o9uz0w, .framer-siqgc .framer-18163vt, .framer-siqgc .framer-16u6h76, .framer-siqgc .framer-19x5u2e, .framer-siqgc .framer-sssp26, .framer-siqgc .framer-15ug9ki, .framer-siqgc .framer-36s23m, .framer-siqgc .framer-1p8wdvg, .framer-siqgc .framer-4t2l6h, .framer-siqgc .framer-16kte1x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 123px; justify-content: flex-start; overflow: visible; padding: 10px 0px 0px 0px; position: relative; width: 84px; }\",\".framer-siqgc .framer-1f8sx7k, .framer-siqgc .framer-fsniom, .framer-siqgc .framer-1qbs6gy, .framer-siqgc .framer-1912qd8, .framer-siqgc .framer-4dog9y, .framer-siqgc .framer-er1z65, .framer-siqgc .framer-1ar0cos, .framer-siqgc .framer-a4rhxo, .framer-siqgc .framer-1tchdxw, .framer-siqgc .framer-8d1l9s { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); position: relative; width: 64px; }\",\".framer-siqgc .framer-xaymda, .framer-siqgc .framer-1i9dglr, .framer-siqgc .framer-1tacnzw, .framer-siqgc .framer-g5bdmx, .framer-siqgc .framer-1f510xq, .framer-siqgc .framer-7job7e, .framer-siqgc .framer-mkfiho, .framer-siqgc .framer-mtuno8, .framer-siqgc .framer-10ta20h, .framer-siqgc .framer-fnt7c9 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 38px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 38px; }\",\".framer-siqgc .framer-6m6lgk, .framer-siqgc .framer-mzjdf9, .framer-siqgc .framer-1j92w7k, .framer-siqgc .framer-e04vv2, .framer-siqgc .framer-1sibaza, .framer-siqgc .framer-1n0k2s3, .framer-siqgc .framer-1hwm0en, .framer-siqgc .framer-1dx68zv, .framer-siqgc .framer-malosr, .framer-siqgc .framer-1mwu8ow, .framer-siqgc .framer-jbbymo { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-siqgc .framer-1bwl10k-container, .framer-siqgc .framer-srv59h-container, .framer-siqgc .framer-1ujcz0w-container, .framer-siqgc .framer-1xwq8pk-container { flex: none; height: 123px; position: relative; width: 84px; }\",\".framer-siqgc .framer-14qe7ux-container, .framer-siqgc .framer-1ke7q3e-container, .framer-siqgc .framer-17kf8x2-container, .framer-siqgc .framer-oq2gmk-container, .framer-siqgc .framer-190i1wb-container, .framer-siqgc .framer-1q200lq-container, .framer-siqgc .framer-1oq33iw-container, .framer-siqgc .framer-1w3vd1q-container, .framer-siqgc .framer-v698sa-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-siqgc .framer-1w4kx7d-container, .framer-siqgc .framer-18jtyor-container, .framer-siqgc .framer-evwzhi-container { flex: none; height: 170px; position: relative; width: 100%; }\",\".framer-siqgc .framer-xp12fl-container, .framer-siqgc .framer-1tejccz-container, .framer-siqgc .framer-1jvcyjx-container, .framer-siqgc .framer-kcil8w-container, .framer-siqgc .framer-1ypmum3-container, .framer-siqgc .framer-1nff8x3-container, .framer-siqgc .framer-wkvo7y-container, .framer-siqgc .framer-19qpuk5-container, .framer-siqgc .framer-j535l7-container, .framer-siqgc .framer-1a8p3x9-container, .framer-siqgc .framer-5glnqh-container, .framer-siqgc .framer-113lyn1-container, .framer-siqgc .framer-1b64uut-container, .framer-siqgc .framer-u0qmpn-container, .framer-siqgc .framer-42g4sd-container, .framer-siqgc .framer-gboj9u-container, .framer-siqgc .framer-rtje9t-container, .framer-siqgc .framer-1qs0l17-container, .framer-siqgc .framer-19cncc-container { height: auto; position: relative; width: auto; }\",\".framer-siqgc .framer-1kh4mfk-container, .framer-siqgc .framer-1l5yggl-container, .framer-siqgc .framer-lx53rc-container, .framer-siqgc .framer-2ih11x-container, .framer-siqgc .framer-1gn5rba-container, .framer-siqgc .framer-x0h2y0-container { flex: none; height: 160px; position: relative; width: 100%; }\",\".framer-siqgc .framer-1gjdckt-container { height: 123px; position: relative; width: 84px; }\",\".framer-siqgc .framer-1f5ri70-container { flex: none; height: 160px; position: relative; width: 400px; }\",\".framer-siqgc .framer-1s47dgr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 820px; justify-content: flex-start; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-siqgc .framer-gf1rp3 { align-content: flex-start; align-items: flex-start; 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: 95%; }\",\".framer-siqgc .framer-j0udfs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 16px 0px 0px; position: relative; width: 100%; }\",\".framer-siqgc .framer-16xuql2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-siqgc .framer-1toxow1 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 300px; word-break: break-word; word-wrap: break-word; }\",\".framer-siqgc .framer-eomqrc { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-siqgc .framer-1lkehf8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-siqgc .framer-1k8o00f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 10px 16px 10px; position: relative; width: 100%; }\",\".framer-siqgc .framer-1ipmm6h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-siqgc .framer-yy0nlj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-siqgc .framer-uwep9x { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-siqgc .framer-1lfkpx1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-siqgc .framer-11qovze-container { flex: none; height: 48px; position: relative; width: 210px; }\",\".framer-siqgc .framer-ymo2w9 { aspect-ratio: 1.5625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 128px); overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-siqgc.framer-1cwosbs, .framer-siqgc .framer-o9uz0w, .framer-siqgc .framer-18163vt, .framer-siqgc .framer-16u6h76, .framer-siqgc .framer-19x5u2e, .framer-siqgc .framer-sssp26, .framer-siqgc .framer-15ug9ki, .framer-siqgc .framer-36s23m, .framer-siqgc .framer-1p8wdvg, .framer-siqgc .framer-4t2l6h, .framer-siqgc .framer-16kte1x, .framer-siqgc .framer-1s47dgr, .framer-siqgc .framer-gf1rp3, .framer-siqgc .framer-16xuql2, .framer-siqgc .framer-1lkehf8, .framer-siqgc .framer-1k8o00f, .framer-siqgc .framer-1ipmm6h, .framer-siqgc .framer-yy0nlj, .framer-siqgc .framer-1lfkpx1 { gap: 0px; } .framer-siqgc.framer-1cwosbs > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-siqgc.framer-1cwosbs > :first-child, .framer-siqgc .framer-o9uz0w > :first-child, .framer-siqgc .framer-18163vt > :first-child, .framer-siqgc .framer-16u6h76 > :first-child, .framer-siqgc .framer-19x5u2e > :first-child, .framer-siqgc .framer-sssp26 > :first-child, .framer-siqgc .framer-15ug9ki > :first-child, .framer-siqgc .framer-36s23m > :first-child, .framer-siqgc .framer-1p8wdvg > :first-child, .framer-siqgc .framer-4t2l6h > :first-child, .framer-siqgc .framer-16kte1x > :first-child, .framer-siqgc .framer-1s47dgr > :first-child, .framer-siqgc .framer-gf1rp3 > :first-child, .framer-siqgc .framer-16xuql2 > :first-child, .framer-siqgc .framer-1lkehf8 > :first-child, .framer-siqgc .framer-1k8o00f > :first-child, .framer-siqgc .framer-1lfkpx1 > :first-child { margin-top: 0px; } .framer-siqgc.framer-1cwosbs > :last-child, .framer-siqgc .framer-o9uz0w > :last-child, .framer-siqgc .framer-18163vt > :last-child, .framer-siqgc .framer-16u6h76 > :last-child, .framer-siqgc .framer-19x5u2e > :last-child, .framer-siqgc .framer-sssp26 > :last-child, .framer-siqgc .framer-15ug9ki > :last-child, .framer-siqgc .framer-36s23m > :last-child, .framer-siqgc .framer-1p8wdvg > :last-child, .framer-siqgc .framer-4t2l6h > :last-child, .framer-siqgc .framer-16kte1x > :last-child, .framer-siqgc .framer-1s47dgr > :last-child, .framer-siqgc .framer-gf1rp3 > :last-child, .framer-siqgc .framer-16xuql2 > :last-child, .framer-siqgc .framer-1lkehf8 > :last-child, .framer-siqgc .framer-1k8o00f > :last-child, .framer-siqgc .framer-1lfkpx1 > :last-child { margin-bottom: 0px; } .framer-siqgc .framer-o9uz0w > *, .framer-siqgc .framer-18163vt > *, .framer-siqgc .framer-16u6h76 > *, .framer-siqgc .framer-19x5u2e > *, .framer-siqgc .framer-sssp26 > *, .framer-siqgc .framer-15ug9ki > *, .framer-siqgc .framer-36s23m > *, .framer-siqgc .framer-1p8wdvg > *, .framer-siqgc .framer-4t2l6h > *, .framer-siqgc .framer-16kte1x > *, .framer-siqgc .framer-1s47dgr > *, .framer-siqgc .framer-1lkehf8 > *, .framer-siqgc .framer-1lfkpx1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-siqgc .framer-gf1rp3 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-siqgc .framer-16xuql2 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-siqgc .framer-1k8o00f > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-siqgc .framer-1ipmm6h > *, .framer-siqgc .framer-yy0nlj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-siqgc .framer-1ipmm6h > :first-child, .framer-siqgc .framer-yy0nlj > :first-child { margin-left: 0px; } .framer-siqgc .framer-1ipmm6h > :last-child, .framer-siqgc .framer-yy0nlj > :last-child { margin-right: 0px; } }\",\".framer-siqgc.framer-v-5etp9d.framer-1cwosbs, .framer-siqgc.framer-v-1e6gqy6.framer-1cwosbs, .framer-siqgc.framer-v-1ixkkuu.framer-1cwosbs, .framer-siqgc.framer-v-1upns0n.framer-1cwosbs, .framer-siqgc.framer-v-wts47s.framer-1cwosbs, .framer-siqgc.framer-v-2z7atj.framer-1cwosbs, .framer-siqgc.framer-v-xonznj.framer-1cwosbs, .framer-siqgc.framer-v-1144xdt.framer-1cwosbs, .framer-siqgc.framer-v-1ak0ox7.framer-1cwosbs, .framer-siqgc.framer-v-wliq0q.framer-1cwosbs { justify-content: flex-start; width: 375px; }\",\".framer-siqgc.framer-v-5etp9d .framer-1w4kx7d-container, .framer-siqgc.framer-v-5xrjg4 .framer-o9uz0w, .framer-siqgc.framer-v-186ogf .framer-o9uz0w, .framer-siqgc.framer-v-dpl973 .framer-o9uz0w, .framer-siqgc.framer-v-1ofwbvf .framer-o9uz0w, .framer-siqgc.framer-v-9dqmyr .framer-o9uz0w, .framer-siqgc.framer-v-1ykljh .framer-o9uz0w, .framer-siqgc.framer-v-1kytvoz .framer-o9uz0w, .framer-siqgc.framer-v-a0wflb .framer-o9uz0w { order: 0; }\",\".framer-siqgc.framer-v-5etp9d .framer-1lkehf8, .framer-siqgc.framer-v-5xrjg4 .framer-4ypxe4, .framer-siqgc.framer-v-186ogf .framer-4ypxe4, .framer-siqgc.framer-v-1upns0n .framer-1lkehf8, .framer-siqgc.framer-v-wts47s .framer-1lkehf8, .framer-siqgc.framer-v-1ofwbvf .framer-4ypxe4, .framer-siqgc.framer-v-2z7atj .framer-1lkehf8, .framer-siqgc.framer-v-9dqmyr .framer-4ypxe4, .framer-siqgc.framer-v-xonznj .framer-1lkehf8, .framer-siqgc.framer-v-1ykljh .framer-4ypxe4, .framer-siqgc.framer-v-1144xdt .framer-1lkehf8, .framer-siqgc.framer-v-1ak0ox7 .framer-1lkehf8, .framer-siqgc.framer-v-a0wflb .framer-4ypxe4, .framer-siqgc.framer-v-wliq0q .framer-1lkehf8 { order: 19; }\",\".framer-siqgc.framer-v-5etp9d .framer-1ipmm6h { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 6px; }\",\".framer-siqgc.framer-v-5etp9d .framer-ymo2w9 { height: var(--framer-aspect-ratio-supported, 240px); order: 20; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-siqgc.framer-v-5etp9d .framer-1ipmm6h { gap: 0px; } .framer-siqgc.framer-v-5etp9d .framer-1ipmm6h > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-siqgc.framer-v-5etp9d .framer-1ipmm6h > :first-child { margin-top: 0px; } .framer-siqgc.framer-v-5etp9d .framer-1ipmm6h > :last-child { margin-bottom: 0px; } }\",\".framer-siqgc.framer-v-1ohnim0 .framer-4ypxe4 { order: 3; width: 96%; }\",\".framer-siqgc.framer-v-1ohnim0 .framer-18163vt { order: 2; }\",\".framer-siqgc.framer-v-1ohnim0 .framer-1bwl10k-container, .framer-siqgc.framer-v-186ogf .framer-18163vt, .framer-siqgc.framer-v-dpl973 .framer-18163vt, .framer-siqgc.framer-v-1ofwbvf .framer-18163vt, .framer-siqgc.framer-v-9dqmyr .framer-18163vt, .framer-siqgc.framer-v-1ykljh .framer-18163vt, .framer-siqgc.framer-v-1kytvoz .framer-18163vt, .framer-siqgc.framer-v-a0wflb .framer-18163vt { order: 1; }\",\".framer-siqgc.framer-v-1ohnim0 .framer-16u6h76, .framer-siqgc.framer-v-5xrjg4 .framer-1ujcz0w-container, .framer-siqgc.framer-v-dpl973 .framer-16u6h76, .framer-siqgc.framer-v-1ofwbvf .framer-16u6h76, .framer-siqgc.framer-v-9dqmyr .framer-16u6h76, .framer-siqgc.framer-v-1ykljh .framer-16u6h76, .framer-siqgc.framer-v-1kytvoz .framer-16u6h76, .framer-siqgc.framer-v-a0wflb .framer-16u6h76 { order: 3; }\",\".framer-siqgc.framer-v-1ohnim0 .framer-19x5u2e, .framer-siqgc.framer-v-5xrjg4 .framer-16u6h76, .framer-siqgc.framer-v-186ogf .framer-1xwq8pk-container, .framer-siqgc.framer-v-1ofwbvf .framer-19x5u2e, .framer-siqgc.framer-v-9dqmyr .framer-19x5u2e, .framer-siqgc.framer-v-1ykljh .framer-19x5u2e, .framer-siqgc.framer-v-1kytvoz .framer-19x5u2e, .framer-siqgc.framer-v-a0wflb .framer-19x5u2e { order: 4; }\",\".framer-siqgc.framer-v-1ohnim0 .framer-sssp26, .framer-siqgc.framer-v-5xrjg4 .framer-19x5u2e, .framer-siqgc.framer-v-186ogf .framer-19x5u2e, .framer-siqgc.framer-v-dpl973 .framer-14qe7ux-container, .framer-siqgc.framer-v-1ofwbvf .framer-sssp26, .framer-siqgc.framer-v-9dqmyr .framer-sssp26, .framer-siqgc.framer-v-1ykljh .framer-sssp26, .framer-siqgc.framer-v-1kytvoz .framer-sssp26, .framer-siqgc.framer-v-a0wflb .framer-sssp26 { order: 5; }\",\".framer-siqgc.framer-v-1ohnim0 .framer-15ug9ki, .framer-siqgc.framer-v-5xrjg4 .framer-sssp26, .framer-siqgc.framer-v-186ogf .framer-sssp26, .framer-siqgc.framer-v-dpl973 .framer-sssp26 { order: 6; }\",\".framer-siqgc.framer-v-1ohnim0 .framer-36s23m, .framer-siqgc.framer-v-9dqmyr .framer-15ug9ki, .framer-siqgc.framer-v-1ykljh .framer-15ug9ki, .framer-siqgc.framer-v-1kytvoz .framer-15ug9ki, .framer-siqgc.framer-v-a0wflb .framer-15ug9ki { order: 7; }\",\".framer-siqgc.framer-v-1ohnim0 .framer-1p8wdvg, .framer-siqgc.framer-v-5xrjg4 .framer-15ug9ki, .framer-siqgc.framer-v-186ogf .framer-15ug9ki, .framer-siqgc.framer-v-dpl973 .framer-15ug9ki, .framer-siqgc.framer-v-1ofwbvf .framer-1ke7q3e-container, .framer-siqgc.framer-v-1ykljh .framer-36s23m, .framer-siqgc.framer-v-1kytvoz .framer-36s23m, .framer-siqgc.framer-v-a0wflb .framer-36s23m { order: 8; }\",\".framer-siqgc.framer-v-1ohnim0 .framer-4t2l6h, .framer-siqgc.framer-v-5xrjg4 .framer-36s23m, .framer-siqgc.framer-v-186ogf .framer-36s23m, .framer-siqgc.framer-v-dpl973 .framer-36s23m, .framer-siqgc.framer-v-1ofwbvf .framer-36s23m, .framer-siqgc.framer-v-9dqmyr .framer-17kf8x2-container, .framer-siqgc.framer-v-1kytvoz .framer-1p8wdvg, .framer-siqgc.framer-v-a0wflb .framer-1p8wdvg { order: 9; }\",\".framer-siqgc.framer-v-1ohnim0 .framer-16kte1x, .framer-siqgc.framer-v-1e6gqy6 .framer-18jtyor-container, .framer-siqgc.framer-v-5xrjg4 .framer-1p8wdvg, .framer-siqgc.framer-v-186ogf .framer-1p8wdvg, .framer-siqgc.framer-v-dpl973 .framer-1p8wdvg, .framer-siqgc.framer-v-1ofwbvf .framer-1p8wdvg, .framer-siqgc.framer-v-9dqmyr .framer-1p8wdvg, .framer-siqgc.framer-v-1ykljh .framer-oq2gmk-container, .framer-siqgc.framer-v-a0wflb .framer-4t2l6h { order: 10; }\",\".framer-siqgc.framer-v-1ohnim0 .framer-1s47dgr { order: 21; }\",\".framer-siqgc.framer-v-1ohnim0 .framer-gf1rp3 { align-content: center; align-items: center; }\",\".framer-siqgc.framer-v-1ohnim0 .framer-1toxow1, .framer-siqgc.framer-v-5xrjg4 .framer-1toxow1, .framer-siqgc.framer-v-186ogf .framer-1toxow1, .framer-siqgc.framer-v-dpl973 .framer-1toxow1, .framer-siqgc.framer-v-1ofwbvf .framer-1toxow1, .framer-siqgc.framer-v-9dqmyr .framer-1toxow1, .framer-siqgc.framer-v-1ykljh .framer-1toxow1, .framer-siqgc.framer-v-1kytvoz .framer-1toxow1, .framer-siqgc.framer-v-a0wflb .framer-1toxow1 { white-space: pre; width: auto; }\",\".framer-siqgc.framer-v-1e6gqy6 .framer-1lkehf8, .framer-siqgc.framer-v-1ixkkuu .framer-1lkehf8 { justify-content: flex-start; order: 19; }\",\".framer-siqgc.framer-v-1e6gqy6 .framer-1ipmm6h, .framer-siqgc.framer-v-1ixkkuu .framer-1ipmm6h, .framer-siqgc.framer-v-1upns0n .framer-1ipmm6h, .framer-siqgc.framer-v-wts47s .framer-1ipmm6h, .framer-siqgc.framer-v-2z7atj .framer-1ipmm6h, .framer-siqgc.framer-v-xonznj .framer-1ipmm6h, .framer-siqgc.framer-v-1144xdt .framer-1ipmm6h, .framer-siqgc.framer-v-1ak0ox7 .framer-1ipmm6h, .framer-siqgc.framer-v-wliq0q .framer-1ipmm6h { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 6px; justify-content: flex-start; }\",\".framer-siqgc.framer-v-1e6gqy6 .framer-ymo2w9, .framer-siqgc.framer-v-1ixkkuu .framer-ymo2w9, .framer-siqgc.framer-v-1upns0n .framer-ymo2w9, .framer-siqgc.framer-v-wts47s .framer-ymo2w9, .framer-siqgc.framer-v-2z7atj .framer-ymo2w9, .framer-siqgc.framer-v-xonznj .framer-ymo2w9, .framer-siqgc.framer-v-1144xdt .framer-ymo2w9, .framer-siqgc.framer-v-1ak0ox7 .framer-ymo2w9, .framer-siqgc.framer-v-wliq0q .framer-ymo2w9 { aspect-ratio: 1.875 / 1; height: var(--framer-aspect-ratio-supported, 200px); order: 20; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-siqgc.framer-v-1e6gqy6 .framer-1ipmm6h { gap: 0px; } .framer-siqgc.framer-v-1e6gqy6 .framer-1ipmm6h > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-siqgc.framer-v-1e6gqy6 .framer-1ipmm6h > :first-child { margin-top: 0px; } .framer-siqgc.framer-v-1e6gqy6 .framer-1ipmm6h > :last-child { margin-bottom: 0px; } }\",\".framer-siqgc.framer-v-5xrjg4 .framer-4t2l6h, .framer-siqgc.framer-v-1ixkkuu .framer-1kh4mfk-container, .framer-siqgc.framer-v-186ogf .framer-4t2l6h, .framer-siqgc.framer-v-dpl973 .framer-4t2l6h, .framer-siqgc.framer-v-1ofwbvf .framer-4t2l6h, .framer-siqgc.framer-v-9dqmyr .framer-4t2l6h, .framer-siqgc.framer-v-1ykljh .framer-4t2l6h, .framer-siqgc.framer-v-1kytvoz .framer-190i1wb-container { order: 11; }\",\".framer-siqgc.framer-v-5xrjg4 .framer-16kte1x, .framer-siqgc.framer-v-186ogf .framer-16kte1x, .framer-siqgc.framer-v-dpl973 .framer-16kte1x, .framer-siqgc.framer-v-1ofwbvf .framer-16kte1x, .framer-siqgc.framer-v-9dqmyr .framer-16kte1x, .framer-siqgc.framer-v-1ykljh .framer-16kte1x, .framer-siqgc.framer-v-1kytvoz .framer-16kte1x, .framer-siqgc.framer-v-a0wflb .framer-1q200lq-container { order: 12; }\",\".framer-siqgc.framer-v-5xrjg4 .framer-1s47dgr, .framer-siqgc.framer-v-186ogf .framer-1s47dgr, .framer-siqgc.framer-v-dpl973 .framer-1s47dgr, .framer-siqgc.framer-v-1ofwbvf .framer-1s47dgr, .framer-siqgc.framer-v-9dqmyr .framer-1s47dgr, .framer-siqgc.framer-v-1ykljh .framer-1s47dgr, .framer-siqgc.framer-v-1kytvoz .framer-1s47dgr { order: 20; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-siqgc.framer-v-1ixkkuu .framer-1ipmm6h { gap: 0px; } .framer-siqgc.framer-v-1ixkkuu .framer-1ipmm6h > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-siqgc.framer-v-1ixkkuu .framer-1ipmm6h > :first-child { margin-top: 0px; } .framer-siqgc.framer-v-1ixkkuu .framer-1ipmm6h > :last-child { margin-bottom: 0px; } }\",\".framer-siqgc.framer-v-1upns0n .framer-evwzhi-container { height: 155px; order: 12; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-siqgc.framer-v-1upns0n .framer-1ipmm6h { gap: 0px; } .framer-siqgc.framer-v-1upns0n .framer-1ipmm6h > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-siqgc.framer-v-1upns0n .framer-1ipmm6h > :first-child { margin-top: 0px; } .framer-siqgc.framer-v-1upns0n .framer-1ipmm6h > :last-child { margin-bottom: 0px; } }\",\".framer-siqgc.framer-v-dpl973 .framer-4ypxe4, .framer-siqgc.framer-v-1kytvoz .framer-4ypxe4, .framer-siqgc.framer-v-wliq0q .framer-x0h2y0-container { order: 18; }\",\".framer-siqgc.framer-v-wts47s .framer-1l5yggl-container { order: 13; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-siqgc.framer-v-wts47s .framer-1ipmm6h { gap: 0px; } .framer-siqgc.framer-v-wts47s .framer-1ipmm6h > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-siqgc.framer-v-wts47s .framer-1ipmm6h > :first-child { margin-top: 0px; } .framer-siqgc.framer-v-wts47s .framer-1ipmm6h > :last-child { margin-bottom: 0px; } }\",\".framer-siqgc.framer-v-2z7atj .framer-lx53rc-container { order: 14; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-siqgc.framer-v-2z7atj .framer-1ipmm6h { gap: 0px; } .framer-siqgc.framer-v-2z7atj .framer-1ipmm6h > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-siqgc.framer-v-2z7atj .framer-1ipmm6h > :first-child { margin-top: 0px; } .framer-siqgc.framer-v-2z7atj .framer-1ipmm6h > :last-child { margin-bottom: 0px; } }\",\".framer-siqgc.framer-v-xonznj .framer-2ih11x-container { order: 15; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-siqgc.framer-v-xonznj .framer-1ipmm6h { gap: 0px; } .framer-siqgc.framer-v-xonznj .framer-1ipmm6h > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-siqgc.framer-v-xonznj .framer-1ipmm6h > :first-child { margin-top: 0px; } .framer-siqgc.framer-v-xonznj .framer-1ipmm6h > :last-child { margin-bottom: 0px; } }\",\".framer-siqgc.framer-v-1144xdt .framer-1gn5rba-container { order: 16; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-siqgc.framer-v-1144xdt .framer-1ipmm6h { gap: 0px; } .framer-siqgc.framer-v-1144xdt .framer-1ipmm6h > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-siqgc.framer-v-1144xdt .framer-1ipmm6h > :first-child { margin-top: 0px; } .framer-siqgc.framer-v-1144xdt .framer-1ipmm6h > :last-child { margin-bottom: 0px; } }\",\".framer-siqgc.framer-v-1ak0ox7 .framer-1f5ri70-container { order: 17; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-siqgc.framer-v-1ak0ox7 .framer-1ipmm6h { gap: 0px; } .framer-siqgc.framer-v-1ak0ox7 .framer-1ipmm6h > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-siqgc.framer-v-1ak0ox7 .framer-1ipmm6h > :first-child { margin-top: 0px; } .framer-siqgc.framer-v-1ak0ox7 .framer-1ipmm6h > :last-child { margin-bottom: 0px; } }\",\".framer-siqgc.framer-v-a0wflb .framer-1s47dgr { display: block; gap: unset; order: 20; padding: unset; }\",\".framer-siqgc.framer-v-a0wflb .framer-gf1rp3 { left: 50%; position: absolute; top: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-siqgc.framer-v-a0wflb .framer-1s47dgr { gap: 0px; } .framer-siqgc.framer-v-a0wflb .framer-1s47dgr > *, .framer-siqgc.framer-v-a0wflb .framer-1s47dgr > :first-child, .framer-siqgc.framer-v-a0wflb .framer-1s47dgr > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-siqgc.framer-v-wliq0q .framer-1ipmm6h { gap: 0px; } .framer-siqgc.framer-v-wliq0q .framer-1ipmm6h > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-siqgc.framer-v-wliq0q .framer-1ipmm6h > :first-child { margin-top: 0px; } .framer-siqgc.framer-v-wliq0q .framer-1ipmm6h > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 980\n * @framerIntrinsicWidth 1240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Zu0XzrHMJ\":{\"layout\":[\"fixed\",\"auto\"]},\"EJIx7VOCY\":{\"layout\":[\"fixed\",\"auto\"]},\"yXCy9BJCk\":{\"layout\":[\"fixed\",\"auto\"]},\"QZkU4dyhU\":{\"layout\":[\"fixed\",\"auto\"]},\"ZuUUXZgW2\":{\"layout\":[\"fixed\",\"auto\"]},\"TAEJl1boe\":{\"layout\":[\"fixed\",\"auto\"]},\"rn5MicaMz\":{\"layout\":[\"fixed\",\"auto\"]},\"e9qDC0bP2\":{\"layout\":[\"fixed\",\"auto\"]},\"BjZowWo0x\":{\"layout\":[\"fixed\",\"auto\"]},\"P8shNqvof\":{\"layout\":[\"fixed\",\"auto\"]},\"WIYWlbebj\":{\"layout\":[\"fixed\",\"auto\"]},\"p04E0KwrJ\":{\"layout\":[\"fixed\",\"auto\"]},\"otLa3jXen\":{\"layout\":[\"fixed\",\"auto\"]},\"UN61VRXzB\":{\"layout\":[\"fixed\",\"auto\"]},\"PMmQTO8Sr\":{\"layout\":[\"fixed\",\"auto\"]},\"E2m8izg1O\":{\"layout\":[\"fixed\",\"auto\"]},\"gs84CJujH\":{\"layout\":[\"fixed\",\"auto\"]},\"aDTie48ej\":{\"layout\":[\"fixed\",\"auto\"]},\"cC3AKyC2E\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"RE6MPByGe\":\"title\",\"JANIzC2cP\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIi4QR9MrW=withCSS(Component,css,\"framer-siqgc\");export default FramerIi4QR9MrW;FramerIi4QR9MrW.displayName=\"Product tabs\";FramerIi4QR9MrW.defaultProps={height:980,width:1240};addPropertyControls(FramerIi4QR9MrW,{variant:{options:[\"mnrZeAZks\",\"Zu0XzrHMJ\",\"EJIx7VOCY\",\"yXCy9BJCk\",\"QZkU4dyhU\",\"ZuUUXZgW2\",\"TAEJl1boe\",\"rn5MicaMz\",\"e9qDC0bP2\",\"BjZowWo0x\",\"P8shNqvof\",\"WIYWlbebj\",\"p04E0KwrJ\",\"otLa3jXen\",\"UN61VRXzB\",\"PMmQTO8Sr\",\"E2m8izg1O\",\"gs84CJujH\",\"aDTie48ej\",\"cC3AKyC2E\"],optionTitles:[\"Calendar\",\"Calendar - Mobile\",\"Messenger\",\"Messenger - Mobile\",\"Docs\",\"Docs - Mobile\",\"Meeting\",\"Meeting - Mobile\",\"Minutes\",\"Minutes - Mobile\",\"Email\",\"Email - Mobile\",\"Approval\",\"Approval - Mobile\",\"Base\",\"Base - Mobile\",\"Wiki\",\"Wiki - Mobile\",\"OKR\",\"OKR - Mobile\"],title:\"Variant\",type:ControlType.Enum},RE6MPByGe:{defaultValue:\"自分のカレンダーは一元管理。チームメンバーのスケジュールも簡単に把握。時間をより有効に活用する事で、生産性向上を図る\",displayTextArea:false,title:\"Title\",type:ControlType.String},JANIzC2cP:{__defaultAssetReference:\"data:framer/asset-reference,wWynp85vFGsBRN6fOGFQfBOq0.png?originalFilename=Frame+1912055021.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerIi4QR9MrW,[{explicitInter:true,fonts:[{family:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v53/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFCMj757Y0rw-oME.woff2\",weight:\"500\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v53/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFLgk757Y0rw-oME.woff2\",weight:\"900\"},{family:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v53/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEj757Y0rw-oME.woff2\",weight:\"400\"}]},...Home_AppList_AppIconFonts,...CarouselFonts,...Global_ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIi4QR9MrW\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Zu0XzrHMJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EJIx7VOCY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yXCy9BJCk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QZkU4dyhU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZuUUXZgW2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TAEJl1boe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rn5MicaMz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"e9qDC0bP2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BjZowWo0x\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"P8shNqvof\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WIYWlbebj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p04E0KwrJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"otLa3jXen\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UN61VRXzB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PMmQTO8Sr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"E2m8izg1O\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gs84CJujH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aDTie48ej\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cC3AKyC2E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"RE6MPByGe\\\":\\\"title\\\",\\\"JANIzC2cP\\\":\\\"image\\\"}\",\"framerIntrinsicHeight\":\"980\",\"framerIntrinsicWidth\":\"1240\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ii4QR9MrW.map","// Generated by Framer (461de17)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Noto Sans JP-regular\",\"GF;Noto Sans JP-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEj757Y0rw-oME.woff2\",weight:\"400\"},{family:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFPYk757Y0rw-oME.woff2\",weight:\"700\"}]}];export const css=['.framer-WwEcn .framer-styles-preset-nsftsr:not(.rich-text-wrapper), .framer-WwEcn .framer-styles-preset-nsftsr.rich-text-wrapper p { --framer-font-family: \"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif; --framer-font-family-bold: \"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 8px; --framer-text-alignment: left; --framer-text-color: #646a73; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1239px) and (min-width: 905px) { .framer-WwEcn .framer-styles-preset-nsftsr:not(.rich-text-wrapper), .framer-WwEcn .framer-styles-preset-nsftsr.rich-text-wrapper p { --framer-font-family: \"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif; --framer-font-family-bold: \"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 8px; --framer-text-alignment: left; --framer-text-color: #646a73; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 904px) and (min-width: 600px) { .framer-WwEcn .framer-styles-preset-nsftsr:not(.rich-text-wrapper), .framer-WwEcn .framer-styles-preset-nsftsr.rich-text-wrapper p { --framer-font-family: \"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif; --framer-font-family-bold: \"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 8px; --framer-text-alignment: left; --framer-text-color: #646a73; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 599px) and (min-width: 0px) { .framer-WwEcn .framer-styles-preset-nsftsr:not(.rich-text-wrapper), .framer-WwEcn .framer-styles-preset-nsftsr.rich-text-wrapper p { --framer-font-family: \"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif; --framer-font-family-bold: \"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 8px; --framer-text-alignment: left; --framer-text-color: #646a73; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-WwEcn\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (a2a31b0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/0n0tGCZuKERH0XSqqaBH/1CjMIpOqn1dOPIgA491F/gN8nO_xJR.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/DAMMloKvuzZqMdKBrPPJ/56lg0djcMKbTeuOa3A2n/ikm7JuTuk.js\";const cycleOrder=[\"EHagPSTDo\",\"P80EIUrjp\"];const serializationHash=\"framer-8nKPA\";const variantClassNames={EHagPSTDo:\"framer-v-1k5y4jj\",P80EIUrjp:\"framer-v-1q3kl6e\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Mobile:\"P80EIUrjp\",PC:\"EHagPSTDo\"};const getProps=({content,height,id,image,tag,tagVisible,title,width,...props})=>{return{...props,l4fNuDyJ3:title??props.l4fNuDyJ3??\"人工サービス\",PH6V1UpzS:tagVisible??props.PH6V1UpzS??true,pxqiskr6E:content??props.pxqiskr6E??\"7*24 hの\\nオンライン顧客サービスの解決\",variant:humanReadableVariantMap[props.variant]??props.variant??\"EHagPSTDo\",x4olpKDuy:image??props.x4olpKDuy??{src:\"https://framerusercontent.com/images/XI3hn2l3SFDpksDVZnkBd0Wf48.svg\"},xQLjUCNre:tag??props.xQLjUCNre??\"有料バージョン\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,l4fNuDyJ3,x4olpKDuy,pxqiskr6E,xQLjUCNre,PH6V1UpzS,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"EHagPSTDo\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1k5y4jj\",className,classNames),\"data-framer-name\":\"PC\",layoutDependency:layoutDependency,layoutId:\"EHagPSTDo\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({P80EIUrjp:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ibk63t\",layoutDependency:layoutDependency,layoutId:\"FYfJnIcy_\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bta5km\",layoutDependency:layoutDependency,layoutId:\"j8sxqDpr3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-91fca6\",\"data-styles-preset\":\"ikm7JuTuk\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)))\"},children:\"人工サービス\"})}),className:\"framer-1px4ru4\",\"data-framer-name\":\"Amazon Web Services\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YkdrJdvw8\",style:{\"--extracted-r6o4lv\":\"var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41))\"},text:l4fNuDyJ3,verticalAlignment:\"top\",withExternalLayout:true}),PH6V1UpzS&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ewiyms\",\"data-framer-name\":\"Tag\",layoutDependency:layoutDependency,layoutId:\"mEz9h5wCW\",style:{backgroundColor:\"rgba(80, 131, 251, 0.1)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTYwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c35d3ec6-90ac-4a43-90e6-a37deb90809c, rgb(51, 112, 255)))\"},children:\"有料バージョン\"})}),className:\"framer-k7nwe1\",\"data-framer-name\":\"High availability services backup through Amazon Web Services\",fonts:[\"GF;Noto Sans JP-600\"],layoutDependency:layoutDependency,layoutId:\"ELeDDAZKJ\",style:{\"--extracted-r6o4lv\":\"var(--token-c35d3ec6-90ac-4a43-90e6-a37deb90809c, rgb(51, 112, 255))\"},text:xQLjUCNre,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:65,intrinsicWidth:64,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+(((componentViewport?.height||184)-46-138)/2+0+0)+0),pixelHeight:65,pixelWidth:64,sizes:\"64px\",...toResponsiveImage(x4olpKDuy),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1g6e036\",\"data-framer-name\":\"AWS\",layoutDependency:layoutDependency,layoutId:\"GpDfIhyxT\",...addPropertyOverrides({P80EIUrjp:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:65,intrinsicWidth:64,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+20+0+0+0),pixelHeight:65,pixelWidth:64,sizes:\"48px\",...toResponsiveImage(x4olpKDuy),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-nsftsr\",\"data-styles-preset\":\"gN8nO_xJR\",children:[\"7*24 hの\",/*#__PURE__*/_jsx(motion.br,{}),\"オンライン顧客サービスの解決\"]})}),className:\"framer-1u366ft\",\"data-framer-name\":\"High availability services backup through Amazon Web Services\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FpPvBbrbc\",text:pxqiskr6E,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8nKPA.framer-1lfx7ub, .framer-8nKPA .framer-1lfx7ub { display: block; }\",\".framer-8nKPA.framer-1k5y4jj { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 184px; justify-content: center; overflow: hidden; padding: 20px 26px 26px 20px; position: relative; width: 368px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8nKPA .framer-1ibk63t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8nKPA .framer-1bta5km { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: 88px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 220px; }\",\".framer-8nKPA .framer-1px4ru4 { flex: none; height: 60px; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8nKPA .framer-ewiyms { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 2px 8px 2px 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-8nKPA .framer-k7nwe1 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-8nKPA .framer-1g6e036 { flex: none; height: 64px; overflow: hidden; position: relative; width: 64px; }\",\".framer-8nKPA .framer-1u366ft { flex: none; height: 42px; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8nKPA.framer-1k5y4jj, .framer-8nKPA .framer-1bta5km, .framer-8nKPA .framer-ewiyms { gap: 0px; } .framer-8nKPA.framer-1k5y4jj > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-8nKPA.framer-1k5y4jj > :first-child, .framer-8nKPA .framer-1bta5km > :first-child { margin-top: 0px; } .framer-8nKPA.framer-1k5y4jj > :last-child, .framer-8nKPA .framer-1bta5km > :last-child { margin-bottom: 0px; } .framer-8nKPA .framer-1bta5km > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-8nKPA .framer-ewiyms > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-8nKPA .framer-ewiyms > :first-child { margin-left: 0px; } .framer-8nKPA .framer-ewiyms > :last-child { margin-right: 0px; } }\",\".framer-8nKPA.framer-v-1q3kl6e.framer-1k5y4jj { align-content: flex-start; align-items: flex-start; height: min-content; justify-content: flex-start; }\",\".framer-8nKPA.framer-v-1q3kl6e .framer-1ibk63t { flex-direction: column; gap: 12px; justify-content: flex-start; }\",\".framer-8nKPA.framer-v-1q3kl6e .framer-1bta5km { gap: 12px; height: min-content; order: 1; width: 100%; }\",\".framer-8nKPA.framer-v-1q3kl6e .framer-1px4ru4, .framer-8nKPA.framer-v-1q3kl6e .framer-1u366ft { height: auto; }\",\".framer-8nKPA.framer-v-1q3kl6e .framer-1g6e036 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 48px); order: 0; width: 48px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8nKPA.framer-v-1q3kl6e .framer-1ibk63t, .framer-8nKPA.framer-v-1q3kl6e .framer-1bta5km { gap: 0px; } .framer-8nKPA.framer-v-1q3kl6e .framer-1ibk63t > *, .framer-8nKPA.framer-v-1q3kl6e .framer-1bta5km > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-8nKPA.framer-v-1q3kl6e .framer-1ibk63t > :first-child, .framer-8nKPA.framer-v-1q3kl6e .framer-1bta5km > :first-child { margin-top: 0px; } .framer-8nKPA.framer-v-1q3kl6e .framer-1ibk63t > :last-child, .framer-8nKPA.framer-v-1q3kl6e .framer-1bta5km > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 184\n * @framerIntrinsicWidth 368\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"P80EIUrjp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"l4fNuDyJ3\":\"title\",\"x4olpKDuy\":\"image\",\"pxqiskr6E\":\"content\",\"xQLjUCNre\":\"tag\",\"PH6V1UpzS\":\"tagVisible\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjRK2gWUun=withCSS(Component,css,\"framer-8nKPA\");export default FramerjRK2gWUun;FramerjRK2gWUun.displayName=\"Help center card\";FramerjRK2gWUun.defaultProps={height:184,width:368};addPropertyControls(FramerjRK2gWUun,{variant:{options:[\"EHagPSTDo\",\"P80EIUrjp\"],optionTitles:[\"PC\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},l4fNuDyJ3:{defaultValue:\"人工サービス\",displayTextArea:true,title:\"Title\",type:ControlType.String},x4olpKDuy:{__defaultAssetReference:\"data:framer/asset-reference,XI3hn2l3SFDpksDVZnkBd0Wf48.svg?originalFilename=icon_pa-custom-role_outlined.svg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},pxqiskr6E:{defaultValue:\"7*24 hの\\nオンライン顧客サービスの解決\",displayTextArea:true,title:\"Content\",type:ControlType.String},xQLjUCNre:{defaultValue:\"有料バージョン\",displayTextArea:false,title:\"Tag\",type:ControlType.String},PH6V1UpzS:{defaultValue:true,title:\"Tag Visible\",type:ControlType.Boolean}});addFonts(FramerjRK2gWUun,[{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:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v53/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFM8k757Y0rw-oME.woff2\",weight:\"600\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjRK2gWUun\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"l4fNuDyJ3\\\":\\\"title\\\",\\\"x4olpKDuy\\\":\\\"image\\\",\\\"pxqiskr6E\\\":\\\"content\\\",\\\"xQLjUCNre\\\":\\\"tag\\\",\\\"PH6V1UpzS\\\":\\\"tagVisible\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"P80EIUrjp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"184\",\"framerIntrinsicWidth\":\"368\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jRK2gWUun.map","// Generated by Framer (a2a31b0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import{FeatureTryForFree}from\"https://framerusercontent.com/modules/sXGnAduuIuUJ5JnQrHoP/5tvhM7WkehzbUpfVy2Ob/CTA_Tracking_JP.js\";import Global_Button,*as Global_ButtonInfo from\"https://framerusercontent.com/modules/j47mFgAwYb60jec2Gb5c/AfEx4akfvvwe7tpxdHjg/AyKc2Aday.js\";const MaterialFonts=getFonts(Material);const Global_ButtonFonts=getFonts(Global_Button);const Global_ButtonFeatureTryForFree1ekdzd1WithMappedReactPropsqzim95=withMappedReactProps(withCodeBoundaryForOverrides(Global_Button,{nodeId:\"mAoaB0jGt\",override:FeatureTryForFree,scopeId:\"rN28uQIMx\"}),Global_ButtonInfo);const Global_ButtonFeatureTryForFree6ufhmdWithMappedReactPropsqzim95=withMappedReactProps(withCodeBoundaryForOverrides(Global_Button,{nodeId:\"xchvln9Tb\",override:FeatureTryForFree,scopeId:\"rN28uQIMx\"}),Global_ButtonInfo);const enabledGestures={f7RQz_SR2:{hover:true},hueMT5odv:{hover:true},Zd1bijKpj:{hover:true}};const cycleOrder=[\"hueMT5odv\",\"f7RQz_SR2\",\"LEUBLWZ6_\",\"Zd1bijKpj\"];const serializationHash=\"framer-CVET5\";const variantClassNames={f7RQz_SR2:\"framer-v-ek7k1x\",hueMT5odv:\"framer-v-108qzes\",LEUBLWZ6_:\"framer-v-x5khro\",Zd1bijKpj:\"framer-v-1cvqz0r\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={duration:0,type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"JP - AIGC\":\"Zd1bijKpj\",\"Variant 1\":\"hueMT5odv\",JP:\"f7RQz_SR2\",Mobile:\"LEUBLWZ6_\"};const getProps=({height,id,image,industryBulletPoint1,industryBulletPoint2,industryBulletPoint3,industryDescription,industryTitle,link,width,...props})=>{return{...props,AS8qsmaGb:industryBulletPoint1??props.AS8qsmaGb??\"包括的な知識の獲得\",ge62IdMvp:link??props.ge62IdMvp,mfcXdZXf7:industryTitle??props.mfcXdZXf7??\"飲食\",NDyI9kIPn:industryBulletPoint2??props.NDyI9kIPn??\"統合プロジェクト管理\",OCZHdcgIa:industryDescription??props.OCZHdcgIa??\"より深いデジタル化のための強力な産業技術の統合\",SOnXfojpF:image??props.SOnXfojpF??{src:\"https://framerusercontent.com/images/kzYE4YTDRsEkMbYTe6RPQNQwlf4.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/kzYE4YTDRsEkMbYTe6RPQNQwlf4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kzYE4YTDRsEkMbYTe6RPQNQwlf4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kzYE4YTDRsEkMbYTe6RPQNQwlf4.jpg 1104w\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"hueMT5odv\",ZgZyXlMKc:industryBulletPoint3??props.ZgZyXlMKc??\"シームレスなデータ統合\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,SOnXfojpF,mfcXdZXf7,OCZHdcgIa,AS8qsmaGb,NDyI9kIPn,ZgZyXlMKc,ge62IdMvp,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hueMT5odv\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"hueMT5odv-hover\",\"f7RQz_SR2-hover\",\"Zd1bijKpj-hover\"].includes(gestureVariant))return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"Zd1bijKpj-hover\")return false;return true;};const isDisplayed2=()=>{if([\"hueMT5odv-hover\",\"f7RQz_SR2-hover\"].includes(gestureVariant))return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"LEUBLWZ6_\")return false;return true;};const isDisplayed4=()=>{if([\"hueMT5odv-hover\",\"f7RQz_SR2-hover\",\"Zd1bijKpj-hover\"].includes(gestureVariant))return true;return false;};const isDisplayed5=()=>{if([\"f7RQz_SR2-hover\",\"Zd1bijKpj-hover\"].includes(gestureVariant))return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"LEUBLWZ6_\")return true;return false;};const isDisplayed7=()=>{if(gestureVariant===\"hueMT5odv-hover\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({LEUBLWZ6_:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-108qzes\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"hueMT5odv\",ref:refBinding,style:{backgroundColor:\"rgb(246, 246, 251)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{\"f7RQz_SR2-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},\"hueMT5odv-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({\"f7RQz_SR2-hover\":{\"data-framer-name\":undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1104,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1200,pixelWidth:1104,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/P4UuBygobuR6mQigZdOJrqV3pic.png\",srcSet:\"https://framerusercontent.com/images/P4UuBygobuR6mQigZdOJrqV3pic.png?scale-down-to=1024 942w,https://framerusercontent.com/images/P4UuBygobuR6mQigZdOJrqV3pic.png 1104w\"}},\"hueMT5odv-hover\":{\"data-framer-name\":undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1104,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1200,pixelWidth:1104,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/QiQgROhMZbDJYO03vUgRC3kQ.jpg\",srcSet:\"https://framerusercontent.com/images/QiQgROhMZbDJYO03vUgRC3kQ.jpg?scale-down-to=1024 942w,https://framerusercontent.com/images/QiQgROhMZbDJYO03vUgRC3kQ.jpg 1104w\"}},\"Zd1bijKpj-hover\":{\"data-framer-name\":undefined},f7RQz_SR2:{\"data-framer-name\":\"JP\"},LEUBLWZ6_:{\"data-framer-name\":\"Mobile\"},Zd1bijKpj:{\"data-framer-name\":\"JP - AIGC\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:ge62IdMvp,motionChild:true,nodeId:\"eoDBkOghB\",openInNewTab:true,scopeId:\"rN28uQIMx\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-9mwylm framer-18qcco1\",layoutDependency:layoutDependency,layoutId:\"eoDBkOghB\",children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-5u990a\",layoutDependency:layoutDependency,layoutId:\"SMQXmebnp\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:393,intrinsicWidth:1104,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0),pixelHeight:393,pixelWidth:1104,sizes:\"368px\",...toResponsiveImage(SOnXfojpF)},className:\"framer-179ilkj\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"D17NrU8Vi\",...addPropertyOverrides({f7RQz_SR2:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:393,intrinsicWidth:1104,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+32+378.5+0),pixelHeight:393,pixelWidth:1104,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(SOnXfojpF),...{positionX:\"right\",positionY:\"bottom\"}}},LEUBLWZ6_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:393,intrinsicWidth:1104,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||132)-0-131)/2)+0+-.5),pixelHeight:393,pixelWidth:1104,sizes:\"138px\",...toResponsiveImage(SOnXfojpF),...{positionX:\"center\",positionY:\"top\"}}},Zd1bijKpj:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:393,intrinsicWidth:1104,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0),pixelHeight:393,pixelWidth:1104,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(SOnXfojpF),...{positionX:\"center\",positionY:\"top\"}}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b9kwb0\",layoutDependency:layoutDependency,layoutId:\"pdnCR8Qvt\",variants:{Zd1bijKpj:{background:\"linear-gradient(118deg, rgb(231, 230, 236) 0%, rgb(243, 243, 250) 53.153153153153156%, rgba(208, 211, 236, 0.95) 100%)\"}},children:[isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q1wo6h\",layoutDependency:layoutDependency,layoutId:\"zppz5kRay\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTcwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\"},children:\"飲食\"})}),className:\"framer-la8i3p\",fonts:[\"GF;Noto Sans JP-700\"],layoutDependency:layoutDependency,layoutId:\"xlDtXbUMo\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:mfcXdZXf7,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({LEUBLWZ6_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTcwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\"},children:\"飲食\"})})}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10vu670-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"r7bwzNkVL-container\",nodeId:\"r7bwzNkVL\",rendersWithMotion:true,scopeId:\"rN28uQIMx\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowForward\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"r7bwzNkVL\",layoutId:\"r7bwzNkVL\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-line-height\":\"1.52em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(100, 106, 115))\"},children:\"より深いデジタル化のための強力な産業技術の統合\"})}),className:\"framer-w91f3h\",fonts:[\"GF;Noto Sans JP-regular\"],layoutDependency:layoutDependency,layoutId:\"xtT8E_97e\",style:{\"--extracted-r6o4lv\":\"rgb(100, 106, 115)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:OCZHdcgIa,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ko1ukd\",layoutDependency:layoutDependency,layoutId:\"Q5QBLNwKu\",children:[isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-98evmw\",layoutDependency:layoutDependency,layoutId:\"xjt0CqGlL\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-line-height\":\"1.52em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)))\"},children:\"包括的な知識の獲得\"})}),className:\"framer-2qjp7f\",fonts:[\"GF;Noto Sans JP-regular\"],layoutDependency:layoutDependency,layoutId:\"SoMrKd6uE\",style:{\"--extracted-r6o4lv\":\"var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:AS8qsmaGb,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-levnfb-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"HJ4nQMxNr-container\",nodeId:\"HJ4nQMxNr\",rendersWithMotion:true,scopeId:\"rN28uQIMx\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(51, 112, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Check\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"HJ4nQMxNr\",layoutId:\"HJ4nQMxNr\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11wy6dd\",layoutDependency:layoutDependency,layoutId:\"mkP7OlGQV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-line-height\":\"1.52em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)))\"},children:\"統合プロジェクト管理\"})}),className:\"framer-gi6dai\",fonts:[\"GF;Noto Sans JP-regular\"],layoutDependency:layoutDependency,layoutId:\"tQVG2aXQD\",style:{\"--extracted-r6o4lv\":\"var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:NDyI9kIPn,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4itsaf-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"o2yRmN3QU-container\",nodeId:\"o2yRmN3QU\",rendersWithMotion:true,scopeId:\"rN28uQIMx\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(51, 112, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Check\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"o2yRmN3QU\",layoutId:\"o2yRmN3QU\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ry8u5w\",layoutDependency:layoutDependency,layoutId:\"nyNVjjAab\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-line-height\":\"1.52em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)))\"},children:\"シームレスなデータ統合\"})}),className:\"framer-13cslmk\",fonts:[\"GF;Noto Sans JP-regular\"],layoutDependency:layoutDependency,layoutId:\"FXTTsjQES\",style:{\"--extracted-r6o4lv\":\"var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ZgZyXlMKc,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-199etti-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"BKNm03ECL-container\",nodeId:\"BKNm03ECL\",rendersWithMotion:true,scopeId:\"rN28uQIMx\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(51, 112, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Check\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"BKNm03ECL\",layoutId:\"BKNm03ECL\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({\"f7RQz_SR2-hover\":{height:46,width:\"160px\",y:(componentViewport?.y||0)+0+0+32+0+0+242.96},\"Zd1bijKpj-hover\":{height:46,width:\"160px\",y:(componentViewport?.y||0)+0+0+0+0+0+((Math.max(0,(((componentViewport?.height||360)-0)*1-0-0)/1)*1-16-264.96000000000004)/2+182.96+36)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ekdzd1-container\",layoutDependency:layoutDependency,layoutId:\"mAoaB0jGt-container\",nodeId:\"mAoaB0jGt\",rendersWithMotion:true,scopeId:\"rN28uQIMx\",children:/*#__PURE__*/_jsx(Global_ButtonFeatureTryForFree1ekdzd1WithMappedReactPropsqzim95,{G8TptyYBv:\"Download\",height:\"100%\",id:\"mAoaB0jGt\",kXScVjI8w:ge62IdMvp,layoutId:\"mAoaB0jGt\",PgP_e5X9h:\"詳しく見る\",style:{height:\"100%\",width:\"100%\"},variant:\"Lq8LhBBYj\",width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-8fhwrp\",\"data-framer-name\":\"divider\",layoutDependency:layoutDependency,layoutId:\"F4X8mzQfQ\",style:{background:\"linear-gradient(90deg, rgb(65, 164, 255) 0%, rgb(99, 143, 255) 51.35135135135135%, rgb(149, 84, 255) 100%)\",opacity:.5}}),isDisplayed6()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-line-height\":\"1.52em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(100, 106, 115))\"},children:\"より深いデジタル化のための強力な産業技術の統合\"})}),className:\"framer-1bx886g\",fonts:[\"GF;Noto Sans JP-regular\"],layoutDependency:layoutDependency,layoutId:\"YciYTBAiG\",style:{\"--extracted-r6o4lv\":\"rgb(100, 106, 115)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:OCZHdcgIa,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({\"hueMT5odv-hover\":{height:46,width:\"160px\",y:(componentViewport?.y||0)+0+0+0+0+32+316.06}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6ufhmd-container\",layoutDependency:layoutDependency,layoutId:\"xchvln9Tb-container\",nodeId:\"xchvln9Tb\",rendersWithMotion:true,scopeId:\"rN28uQIMx\",children:/*#__PURE__*/_jsx(Global_ButtonFeatureTryForFree6ufhmdWithMappedReactPropsqzim95,{G8TptyYBv:\"Download\",height:\"100%\",id:\"xchvln9Tb\",kXScVjI8w:ge62IdMvp,layoutId:\"xchvln9Tb\",PgP_e5X9h:\"詳しく見る\",style:{height:\"100%\",width:\"100%\"},variant:\"Lq8LhBBYj\",width:\"100%\"})})})]})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CVET5.framer-18qcco1, .framer-CVET5 .framer-18qcco1 { display: block; }\",\".framer-CVET5.framer-108qzes { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: 400px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 348px; will-change: var(--framer-will-change-override, transform); }\",\".framer-CVET5 .framer-9mwylm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-CVET5 .framer-5u990a { flex: none; height: 131px; overflow: visible; position: relative; width: 368px; }\",\".framer-CVET5 .framer-179ilkj { bottom: 0px; flex: none; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; }\",\".framer-CVET5 .framer-1b9kwb0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 90px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 80%; }\",\".framer-CVET5 .framer-q1wo6h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 282px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 48px; }\",\".framer-CVET5 .framer-la8i3p, .framer-CVET5 .framer-2qjp7f, .framer-CVET5 .framer-gi6dai, .framer-CVET5 .framer-13cslmk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-CVET5 .framer-10vu670-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-CVET5 .framer-w91f3h, .framer-CVET5 .framer-1bx886g { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-CVET5 .framer-1ko1ukd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-CVET5 .framer-98evmw, .framer-CVET5 .framer-11wy6dd, .framer-CVET5 .framer-ry8u5w { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-CVET5 .framer-levnfb-container, .framer-CVET5 .framer-4itsaf-container, .framer-CVET5 .framer-199etti-container { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-CVET5 .framer-1ekdzd1-container, .framer-CVET5 .framer-6ufhmd-container { flex: none; height: 46px; position: relative; width: 160px; }\",\".framer-CVET5 .framer-8fhwrp { flex: none; height: 2px; overflow: visible; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CVET5.framer-108qzes, .framer-CVET5 .framer-9mwylm, .framer-CVET5 .framer-1b9kwb0, .framer-CVET5 .framer-q1wo6h, .framer-CVET5 .framer-1ko1ukd, .framer-CVET5 .framer-98evmw, .framer-CVET5 .framer-11wy6dd, .framer-CVET5 .framer-ry8u5w { gap: 0px; } .framer-CVET5.framer-108qzes > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-CVET5.framer-108qzes > :first-child, .framer-CVET5 .framer-9mwylm > :first-child, .framer-CVET5 .framer-1b9kwb0 > :first-child, .framer-CVET5 .framer-q1wo6h > :first-child { margin-top: 0px; } .framer-CVET5.framer-108qzes > :last-child, .framer-CVET5 .framer-9mwylm > :last-child, .framer-CVET5 .framer-1b9kwb0 > :last-child, .framer-CVET5 .framer-q1wo6h > :last-child { margin-bottom: 0px; } .framer-CVET5 .framer-9mwylm > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-CVET5 .framer-1b9kwb0 > * { margin: 0px; margin-bottom: calc(90px / 2); margin-top: calc(90px / 2); } .framer-CVET5 .framer-q1wo6h > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-CVET5 .framer-1ko1ukd > *, .framer-CVET5 .framer-98evmw > *, .framer-CVET5 .framer-11wy6dd > *, .framer-CVET5 .framer-ry8u5w > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-CVET5 .framer-1ko1ukd > :first-child, .framer-CVET5 .framer-98evmw > :first-child, .framer-CVET5 .framer-11wy6dd > :first-child, .framer-CVET5 .framer-ry8u5w > :first-child { margin-left: 0px; } .framer-CVET5 .framer-1ko1ukd > :last-child, .framer-CVET5 .framer-98evmw > :last-child, .framer-CVET5 .framer-11wy6dd > :last-child, .framer-CVET5 .framer-ry8u5w > :last-child { margin-right: 0px; } }\",\".framer-CVET5.framer-v-ek7k1x.framer-108qzes { gap: 22px; }\",\".framer-CVET5.framer-v-ek7k1x .framer-9mwylm { order: 0; padding: 32px 0px 0px 0px; }\",\".framer-CVET5.framer-v-ek7k1x .framer-5u990a { height: 207px; order: 1; width: 100%; }\",\".framer-CVET5.framer-v-ek7k1x .framer-179ilkj { left: calc(49.79591836734696% - 100% / 2); }\",\".framer-CVET5.framer-v-ek7k1x .framer-1b9kwb0 { gap: 20px; order: 0; }\",\".framer-CVET5.framer-v-ek7k1x .framer-w91f3h { height: 49px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CVET5.framer-v-ek7k1x.framer-108qzes, .framer-CVET5.framer-v-ek7k1x .framer-1b9kwb0 { gap: 0px; } .framer-CVET5.framer-v-ek7k1x.framer-108qzes > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-CVET5.framer-v-ek7k1x.framer-108qzes > :first-child, .framer-CVET5.framer-v-ek7k1x .framer-1b9kwb0 > :first-child { margin-top: 0px; } .framer-CVET5.framer-v-ek7k1x.framer-108qzes > :last-child, .framer-CVET5.framer-v-ek7k1x .framer-1b9kwb0 > :last-child { margin-bottom: 0px; } .framer-CVET5.framer-v-ek7k1x .framer-1b9kwb0 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-CVET5.framer-v-x5khro.framer-108qzes { align-content: center; align-items: center; cursor: unset; flex-direction: row; gap: 18px; height: 132px; }\",\".framer-CVET5.framer-v-x5khro .framer-9mwylm { flex: 1 0 0px; flex-direction: row; height: 131px; width: 1px; }\",\".framer-CVET5.framer-v-x5khro .framer-5u990a { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; width: min-content; }\",\".framer-CVET5.framer-v-x5khro .framer-179ilkj { bottom: unset; height: 132px; left: unset; position: relative; top: unset; width: 138px; }\",\".framer-CVET5.framer-v-x5khro .framer-1b9kwb0 { flex: 1 0 0px; gap: 12px; height: 100%; justify-content: flex-start; padding: 16px 24px 0px 0px; width: 1px; }\",\".framer-CVET5.framer-v-x5khro .framer-q1wo6h, .framer-CVET5.framer-v-1cvqz0r .framer-q1wo6h { flex-direction: row; gap: unset; height: min-content; justify-content: space-between; order: 0; width: 100%; }\",\".framer-CVET5.framer-v-x5khro .framer-la8i3p, .framer-CVET5.framer-v-108qzes.hover .framer-levnfb-container, .framer-CVET5.framer-v-108qzes.hover .framer-4itsaf-container, .framer-CVET5.framer-v-108qzes.hover .framer-199etti-container, .framer-CVET5.framer-v-ek7k1x.hover .framer-levnfb-container, .framer-CVET5.framer-v-ek7k1x.hover .framer-4itsaf-container, .framer-CVET5.framer-v-ek7k1x.hover .framer-199etti-container, .framer-CVET5.framer-v-1cvqz0r.hover .framer-levnfb-container, .framer-CVET5.framer-v-1cvqz0r.hover .framer-4itsaf-container, .framer-CVET5.framer-v-1cvqz0r.hover .framer-199etti-container { order: 0; }\",\".framer-CVET5.framer-v-x5khro .framer-10vu670-container, .framer-CVET5.framer-v-108qzes.hover .framer-w91f3h, .framer-CVET5.framer-v-108qzes.hover .framer-2qjp7f, .framer-CVET5.framer-v-108qzes.hover .framer-gi6dai, .framer-CVET5.framer-v-108qzes.hover .framer-13cslmk, .framer-CVET5.framer-v-ek7k1x.hover .framer-w91f3h, .framer-CVET5.framer-v-ek7k1x.hover .framer-2qjp7f, .framer-CVET5.framer-v-ek7k1x.hover .framer-gi6dai, .framer-CVET5.framer-v-ek7k1x.hover .framer-13cslmk, .framer-CVET5.framer-v-1cvqz0r.hover .framer-2qjp7f, .framer-CVET5.framer-v-1cvqz0r.hover .framer-gi6dai, .framer-CVET5.framer-v-1cvqz0r.hover .framer-13cslmk { order: 1; }\",\".framer-CVET5.framer-v-x5khro .framer-1bx886g, .framer-CVET5.framer-v-108qzes.hover .framer-8fhwrp, .framer-CVET5.framer-v-1cvqz0r.hover .framer-8fhwrp { order: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CVET5.framer-v-x5khro.framer-108qzes, .framer-CVET5.framer-v-x5khro .framer-9mwylm, .framer-CVET5.framer-v-x5khro .framer-5u990a, .framer-CVET5.framer-v-x5khro .framer-1b9kwb0, .framer-CVET5.framer-v-x5khro .framer-q1wo6h { gap: 0px; } .framer-CVET5.framer-v-x5khro.framer-108qzes > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-CVET5.framer-v-x5khro.framer-108qzes > :first-child, .framer-CVET5.framer-v-x5khro .framer-9mwylm > :first-child, .framer-CVET5.framer-v-x5khro .framer-5u990a > :first-child { margin-left: 0px; } .framer-CVET5.framer-v-x5khro.framer-108qzes > :last-child, .framer-CVET5.framer-v-x5khro .framer-9mwylm > :last-child, .framer-CVET5.framer-v-x5khro .framer-5u990a > :last-child { margin-right: 0px; } .framer-CVET5.framer-v-x5khro .framer-9mwylm > * { margin: 0px; margin-left: calc(28px / 2); margin-right: calc(28px / 2); } .framer-CVET5.framer-v-x5khro .framer-5u990a > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-CVET5.framer-v-x5khro .framer-1b9kwb0 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-CVET5.framer-v-x5khro .framer-1b9kwb0 > :first-child { margin-top: 0px; } .framer-CVET5.framer-v-x5khro .framer-1b9kwb0 > :last-child { margin-bottom: 0px; } .framer-CVET5.framer-v-x5khro .framer-q1wo6h > *, .framer-CVET5.framer-v-x5khro .framer-q1wo6h > :first-child, .framer-CVET5.framer-v-x5khro .framer-q1wo6h > :last-child { margin: 0px; } }\",\".framer-CVET5.framer-v-1cvqz0r.framer-108qzes { height: 360px; }\",\".framer-CVET5.framer-v-1cvqz0r .framer-9mwylm, .framer-CVET5.framer-v-ek7k1x.hover .framer-9mwylm { flex: 1 0 0px; height: 1px; }\",\".framer-CVET5.framer-v-1cvqz0r .framer-5u990a { flex: 1 0 0px; height: 1px; width: 100%; }\",\".framer-CVET5.framer-v-1cvqz0r .framer-179ilkj { bottom: -147px; }\",\".framer-CVET5.framer-v-1cvqz0r .framer-1b9kwb0 { gap: 12px; padding: 16px 26px 16px 26px; width: 100%; }\",\".framer-CVET5.framer-v-1cvqz0r .framer-w91f3h { height: 49px; order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CVET5.framer-v-1cvqz0r .framer-1b9kwb0, .framer-CVET5.framer-v-1cvqz0r .framer-q1wo6h { gap: 0px; } .framer-CVET5.framer-v-1cvqz0r .framer-1b9kwb0 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-CVET5.framer-v-1cvqz0r .framer-1b9kwb0 > :first-child { margin-top: 0px; } .framer-CVET5.framer-v-1cvqz0r .framer-1b9kwb0 > :last-child { margin-bottom: 0px; } .framer-CVET5.framer-v-1cvqz0r .framer-q1wo6h > *, .framer-CVET5.framer-v-1cvqz0r .framer-q1wo6h > :first-child, .framer-CVET5.framer-v-1cvqz0r .framer-q1wo6h > :last-child { margin: 0px; } }\",\".framer-CVET5.framer-v-108qzes.hover .framer-9mwylm { height: 100%; }\",\".framer-CVET5.framer-v-108qzes.hover .framer-1b9kwb0 { flex: 1 0 0px; gap: 20px; height: 1px; justify-content: flex-start; padding: 32px 0px 0px 0px; }\",\".framer-CVET5.framer-v-108qzes.hover .framer-q1wo6h, .framer-CVET5.framer-v-ek7k1x.hover .framer-q1wo6h { order: 7; }\",\".framer-CVET5.framer-v-108qzes.hover .framer-1ko1ukd { flex-direction: column; order: 4; }\",\".framer-CVET5.framer-v-108qzes.hover .framer-98evmw, .framer-CVET5.framer-v-108qzes.hover .framer-11wy6dd, .framer-CVET5.framer-v-108qzes.hover .framer-ry8u5w, .framer-CVET5.framer-v-ek7k1x.hover .framer-98evmw, .framer-CVET5.framer-v-ek7k1x.hover .framer-11wy6dd, .framer-CVET5.framer-v-ek7k1x.hover .framer-ry8u5w, .framer-CVET5.framer-v-1cvqz0r.hover .framer-98evmw, .framer-CVET5.framer-v-1cvqz0r.hover .framer-11wy6dd, .framer-CVET5.framer-v-1cvqz0r.hover .framer-ry8u5w { flex: none; width: 100%; }\",\".framer-CVET5.framer-v-108qzes.hover .framer-6ufhmd-container { order: 6; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CVET5.framer-v-108qzes.hover .framer-1b9kwb0, .framer-CVET5.framer-v-108qzes.hover .framer-1ko1ukd { gap: 0px; } .framer-CVET5.framer-v-108qzes.hover .framer-1b9kwb0 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-CVET5.framer-v-108qzes.hover .framer-1b9kwb0 > :first-child, .framer-CVET5.framer-v-108qzes.hover .framer-1ko1ukd > :first-child { margin-top: 0px; } .framer-CVET5.framer-v-108qzes.hover .framer-1b9kwb0 > :last-child, .framer-CVET5.framer-v-108qzes.hover .framer-1ko1ukd > :last-child { margin-bottom: 0px; } .framer-CVET5.framer-v-108qzes.hover .framer-1ko1ukd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-CVET5.framer-v-ek7k1x.hover.framer-108qzes { gap: 34px; }\",\".framer-CVET5.framer-v-ek7k1x.hover .framer-1b9kwb0 { flex: 1 0 0px; height: 1px; justify-content: flex-start; }\",\".framer-CVET5.framer-v-ek7k1x.hover .framer-1ko1ukd { flex-direction: column; order: 3; }\",\".framer-CVET5.framer-v-ek7k1x.hover .framer-1ekdzd1-container { order: 4; }\",\".framer-CVET5.framer-v-ek7k1x.hover .framer-8fhwrp { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CVET5.framer-v-ek7k1x.hover.framer-108qzes, .framer-CVET5.framer-v-ek7k1x.hover .framer-1ko1ukd { gap: 0px; } .framer-CVET5.framer-v-ek7k1x.hover.framer-108qzes > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-CVET5.framer-v-ek7k1x.hover.framer-108qzes > :first-child, .framer-CVET5.framer-v-ek7k1x.hover .framer-1ko1ukd > :first-child { margin-top: 0px; } .framer-CVET5.framer-v-ek7k1x.hover.framer-108qzes > :last-child, .framer-CVET5.framer-v-ek7k1x.hover .framer-1ko1ukd > :last-child { margin-bottom: 0px; } .framer-CVET5.framer-v-ek7k1x.hover .framer-1ko1ukd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-CVET5.framer-v-1cvqz0r.hover .framer-9mwylm { flex: none; height: 100%; }\",\".framer-CVET5.framer-v-1cvqz0r.hover .framer-1b9kwb0 { flex: 1 0 0px; height: 1px; padding: 0px 26px 16px 26px; }\",\".framer-CVET5.framer-v-1cvqz0r.hover .framer-1ko1ukd { flex-direction: column; justify-content: flex-start; order: 4; }\",\".framer-CVET5.framer-v-1cvqz0r.hover .framer-1ekdzd1-container { order: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CVET5.framer-v-1cvqz0r.hover .framer-1ko1ukd { gap: 0px; } .framer-CVET5.framer-v-1cvqz0r.hover .framer-1ko1ukd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-CVET5.framer-v-1cvqz0r.hover .framer-1ko1ukd > :first-child { margin-top: 0px; } .framer-CVET5.framer-v-1cvqz0r.hover .framer-1ko1ukd > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 348\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"f7RQz_SR2\":{\"layout\":[\"fixed\",\"fixed\"]},\"LEUBLWZ6_\":{\"layout\":[\"fixed\",\"fixed\"]},\"Zd1bijKpj\":{\"layout\":[\"fixed\",\"fixed\"]},\"n4RbJ9hOo\":{\"layout\":[\"fixed\",\"fixed\"]},\"kI0tnVumv\":{\"layout\":[\"fixed\",\"fixed\"]},\"E3o4mEqbv\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"SOnXfojpF\":\"image\",\"mfcXdZXf7\":\"industryTitle\",\"OCZHdcgIa\":\"industryDescription\",\"AS8qsmaGb\":\"industryBulletPoint1\",\"NDyI9kIPn\":\"industryBulletPoint2\",\"ZgZyXlMKc\":\"industryBulletPoint3\",\"ge62IdMvp\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrN28uQIMx=withCSS(Component,css,\"framer-CVET5\");export default FramerrN28uQIMx;FramerrN28uQIMx.displayName=\"Industry Card\";FramerrN28uQIMx.defaultProps={height:400,width:348};addPropertyControls(FramerrN28uQIMx,{variant:{options:[\"hueMT5odv\",\"f7RQz_SR2\",\"LEUBLWZ6_\",\"Zd1bijKpj\"],optionTitles:[\"Variant 1\",\"JP\",\"Mobile\",\"JP - AIGC\"],title:\"Variant\",type:ControlType.Enum},SOnXfojpF:{__defaultAssetReference:\"data:framer/asset-reference,kzYE4YTDRsEkMbYTe6RPQNQwlf4.jpg?originalFilename=about-top-pc+1.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},mfcXdZXf7:{defaultValue:\"飲食\",displayTextArea:false,title:\"Industry Title\",type:ControlType.String},OCZHdcgIa:{defaultValue:\"より深いデジタル化のための強力な産業技術の統合\",displayTextArea:false,title:\"Industry description\",type:ControlType.String},AS8qsmaGb:{defaultValue:\"包括的な知識の獲得\",displayTextArea:false,title:\"Industry bullet point 1\",type:ControlType.String},NDyI9kIPn:{defaultValue:\"統合プロジェクト管理\",displayTextArea:false,title:\"Industry bullet point 2\",type:ControlType.String},ZgZyXlMKc:{defaultValue:\"シームレスなデータ統合\",displayTextArea:false,title:\"Industry bullet point 3\",type:ControlType.String},ge62IdMvp:{title:\"Link\",type:ControlType.Link}});addFonts(FramerrN28uQIMx,[{explicitInter:true,fonts:[{family:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v53/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFPYk757Y0rw-oME.woff2\",weight:\"700\"},{family:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v53/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFBEj757Y0rw-oME.woff2\",weight:\"400\"}]},...MaterialFonts,...Global_ButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrN28uQIMx\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"f7RQz_SR2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LEUBLWZ6_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Zd1bijKpj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"n4RbJ9hOo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kI0tnVumv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"E3o4mEqbv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"SOnXfojpF\\\":\\\"image\\\",\\\"mfcXdZXf7\\\":\\\"industryTitle\\\",\\\"OCZHdcgIa\\\":\\\"industryDescription\\\",\\\"AS8qsmaGb\\\":\\\"industryBulletPoint1\\\",\\\"NDyI9kIPn\\\":\\\"industryBulletPoint2\\\",\\\"ZgZyXlMKc\\\":\\\"industryBulletPoint3\\\",\\\"ge62IdMvp\\\":\\\"link\\\"}\",\"framerIntrinsicWidth\":\"348\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (a2a31b0)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={BZVfNONHe:{hover:true}};const cycleOrder=[\"BZVfNONHe\",\"a5RCZnLCE\"];const serializationHash=\"framer-2Bs9f\";const variantClassNames={a5RCZnLCE:\"framer-v-18x4xwr\",BZVfNONHe:\"framer-v-vld1wf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"BZVfNONHe\",\"w/o link\":\"a5RCZnLCE\"};const getProps=({height,id,link,logo,width,...props})=>{return{...props,CbC9RvKEk:link??props.CbC9RvKEk,OLqv7TdMs:logo??props.OLqv7TdMs??{src:\"https://framerusercontent.com/images/djJHA8pfQN7pHZxgjtd1UE7zRSw.svg\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"BZVfNONHe\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,OLqv7TdMs,CbC9RvKEk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BZVfNONHe\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:CbC9RvKEk,motionChild:true,nodeId:\"BZVfNONHe\",openInNewTab:true,scopeId:\"s53CUXh1v\",...addPropertyOverrides({a5RCZnLCE:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-vld1wf\",className,classNames)} framer-1tyxgpt`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"BZVfNONHe\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"none\",...style},variants:{\"BZVfNONHe-hover\":{boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.17997), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625)\"}},...addPropertyOverrides({\"BZVfNONHe-hover\":{\"data-framer-name\":undefined},a5RCZnLCE:{\"data-framer-name\":\"w/o link\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:29,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+8),pixelHeight:29,pixelWidth:100,sizes:`calc(${componentViewport?.width||\"100vw\"} - 26px)`,...toResponsiveImage(OLqv7TdMs),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-ao0x9g\",layoutDependency:layoutDependency,layoutId:\"es3gbk8ct\"})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2Bs9f.framer-1tyxgpt, .framer-2Bs9f .framer-1tyxgpt { display: block; }\",\".framer-2Bs9f.framer-vld1wf { cursor: pointer; height: 60px; overflow: hidden; position: relative; text-decoration: none; width: 126px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2Bs9f .framer-ao0x9g { bottom: 8px; flex: none; left: 13px; position: absolute; right: 13px; top: 8px; }\",\".framer-2Bs9f.framer-v-18x4xwr.framer-vld1wf { cursor: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 126\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"a5RCZnLCE\":{\"layout\":[\"fixed\",\"fixed\"]},\"ibQw3splq\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"OLqv7TdMs\":\"logo\",\"CbC9RvKEk\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framers53CUXh1v=withCSS(Component,css,\"framer-2Bs9f\");export default Framers53CUXh1v;Framers53CUXh1v.displayName=\"Company logo\";Framers53CUXh1v.defaultProps={height:60,width:126};addPropertyControls(Framers53CUXh1v,{variant:{options:[\"BZVfNONHe\",\"a5RCZnLCE\"],optionTitles:[\"Variant 1\",\"w/o link\"],title:\"Variant\",type:ControlType.Enum},OLqv7TdMs:{__defaultAssetReference:\"data:framer/asset-reference,djJHA8pfQN7pHZxgjtd1UE7zRSw.svg?originalFilename=Group.svg&preferredSize=auto\",title:\"Logo\",type:ControlType.ResponsiveImage},CbC9RvKEk:{title:\"Link\",type:ControlType.Link}});addFonts(Framers53CUXh1v,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framers53CUXh1v\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"60\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"OLqv7TdMs\\\":\\\"logo\\\",\\\"CbC9RvKEk\\\":\\\"link\\\"}\",\"framerIntrinsicWidth\":\"126\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"a5RCZnLCE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ibQw3splq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./s53CUXh1v.map","import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Noto Sans JP-700\",\"GF;Noto Sans JP-900\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFPYk757Y0rw-oME.woff2\",weight:\"700\"},{family:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v52/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFLgk757Y0rw-oME.woff2\",weight:\"900\"}]}];export const css=['.framer-M4n02 .framer-styles-preset-1s6gyxk:not(.rich-text-wrapper), .framer-M4n02 .framer-styles-preset-1s6gyxk.rich-text-wrapper h5 { --framer-font-family: \"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif; --framer-font-family-bold: \"Noto Sans JP\", sans-serif; --framer-font-size: 30px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 16px; --framer-text-alignment: left; --framer-text-color: var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, #1f2329); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1239px) and (min-width: 905px) { .framer-M4n02 .framer-styles-preset-1s6gyxk:not(.rich-text-wrapper), .framer-M4n02 .framer-styles-preset-1s6gyxk.rich-text-wrapper h5 { --framer-font-family: \"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif; --framer-font-family-bold: \"Noto Sans JP\", sans-serif; --framer-font-size: 30px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 16px; --framer-text-alignment: left; --framer-text-color: var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, #1f2329); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 904px) and (min-width: 600px) { .framer-M4n02 .framer-styles-preset-1s6gyxk:not(.rich-text-wrapper), .framer-M4n02 .framer-styles-preset-1s6gyxk.rich-text-wrapper h5 { --framer-font-family: \"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif; --framer-font-family-bold: \"Noto Sans JP\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 12px; --framer-text-alignment: left; --framer-text-color: var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, #1f2329); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 599px) and (min-width: 0px) { .framer-M4n02 .framer-styles-preset-1s6gyxk:not(.rich-text-wrapper), .framer-M4n02 .framer-styles-preset-1s6gyxk.rich-text-wrapper h5 { --framer-font-family: \"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif; --framer-font-family-bold: \"Noto Sans JP\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 12px; --framer-text-alignment: left; --framer-text-color: var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, #1f2329); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-M4n02\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (157cd92)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{featureTryForFree,stepsOfLarkClick}from\"https://framerusercontent.com/modules/OwFQ4dpHnsYAdogwIEzb/SesVHYGgjIbD7dZ8KJDO/StorylineTracking.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/GtUknWq2wmCt8cLdmmvU/dqNpAdZW5H7Tomt1Ifzh/X82eKqeAg.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Wns2FBrAK6lSRUsiLncP/XMgxKwYi6ALdbr1uVTsa/x9RikGskl.js\";import Global_Button,*as Global_ButtonInfo from\"https://framerusercontent.com/modules/j47mFgAwYb60jec2Gb5c/AfEx4akfvvwe7tpxdHjg/AyKc2Aday.js\";const Global_ButtonFonts=getFonts(Global_Button);const Global_ButtonStepsOfLarkClick1gvo5ekWithMappedReactPropsqzim95=withMappedReactProps(withCodeBoundaryForOverrides(Global_Button,{nodeId:\"bWffQGXPG\",override:stepsOfLarkClick,scopeId:\"UyrWtpheS\"}),Global_ButtonInfo);const Global_ButtonFeatureTryForFree6nlf16WithMappedReactPropsqzim95=withMappedReactProps(withCodeBoundaryForOverrides(Global_Button,{nodeId:\"isLlesn8H\",override:featureTryForFree,scopeId:\"UyrWtpheS\"}),Global_ButtonInfo);const cycleOrder=[\"PDiZpcLO_\",\"wfnsdqpy9\",\"lNB7LauDN\",\"PsNag2Qao\",\"KDRLE2uBv\",\"bTsWL20bf\",\"ZZxzf64jX\",\"gDXO9K8hC\",\"HZxfb1522\",\"gv0lH8FlA\",\"akdLXsIEG\",\"doqCSAlAx\"];const serializationHash=\"framer-FUd54\";const variantClassNames={akdLXsIEG:\"framer-v-1uv7jnk\",bTsWL20bf:\"framer-v-sch4q7\",doqCSAlAx:\"framer-v-1lf72iq\",gDXO9K8hC:\"framer-v-5dtxwa\",gv0lH8FlA:\"framer-v-3xcexq\",HZxfb1522:\"framer-v-8swdfs\",KDRLE2uBv:\"framer-v-kxctfk\",lNB7LauDN:\"framer-v-gjmqie\",PDiZpcLO_:\"framer-v-1cc99ru\",PsNag2Qao:\"framer-v-17amh30\",wfnsdqpy9:\"framer-v-i2v4cz\",ZZxzf64jX:\"framer-v-u9nooy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"After - JP - Mobile 2\":\"HZxfb1522\",\"After - JP - Tablet\":\"gDXO9K8hC\",\"After - JP\":\"PsNag2Qao\",\"Before - JP - Mobile 2\":\"gv0lH8FlA\",\"Before - JP - Tablet\":\"ZZxzf64jX\",\"Before - JP\":\"lNB7LauDN\",\"Mobile - After - smaller img\":\"doqCSAlAx\",\"Mobile - After\":\"bTsWL20bf\",\"Mobile - Before\":\"KDRLE2uBv\",\"Variant 11\":\"akdLXsIEG\",After:\"wfnsdqpy9\",Before:\"PDiZpcLO_\"};const getProps=({buttonContent,content,cTAVisible,height,id,image,imageJP,imageJPMobile,imageJPMobileAfter,link,no,textLinkVisible,title,width,...props})=>{return{...props,Jw9FnuWCq:cTAVisible??props.Jw9FnuWCq??true,KjxzLMAQK:no??props.KjxzLMAQK??\"01.\",NbIY8LHgo:image??props.NbIY8LHgo??{src:\"https://framerusercontent.com/images/QP2nkQ6z79pPRUNgpcj2jNN7xVk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/QP2nkQ6z79pPRUNgpcj2jNN7xVk.png?scale-down-to=512 512w,https://framerusercontent.com/images/QP2nkQ6z79pPRUNgpcj2jNN7xVk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QP2nkQ6z79pPRUNgpcj2jNN7xVk.png 1120w\"},r8f7T7VSC:title??props.r8f7T7VSC??\"ツールがバラバラ\",rncSQWMSw:link??props.rncSQWMSw,RQTi6zwFS:imageJPMobile??props.RQTi6zwFS??{src:\"https://framerusercontent.com/images/5sxRCe3JM3fJKuOOLUo5pQ0NXw.png\",srcSet:\"https://framerusercontent.com/images/5sxRCe3JM3fJKuOOLUo5pQ0NXw.png?scale-down-to=512 512w,https://framerusercontent.com/images/5sxRCe3JM3fJKuOOLUo5pQ0NXw.png 684w\"},TDZ68nzZD:buttonContent??props.TDZ68nzZD??\"機能を詳しく見る\",UA13drZz9:textLinkVisible??props.UA13drZz9??true,UXlLhVxsx:imageJPMobileAfter??props.UXlLhVxsx??{src:\"https://framerusercontent.com/images/8gGm282OWJ0yO0PPWaMhnVBvdr8.png\",srcSet:\"https://framerusercontent.com/images/8gGm282OWJ0yO0PPWaMhnVBvdr8.png?scale-down-to=512 512w,https://framerusercontent.com/images/8gGm282OWJ0yO0PPWaMhnVBvdr8.png 581w\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"PDiZpcLO_\",w0Ow0ZI3w:imageJP??props.w0Ow0ZI3w??{src:\"https://framerusercontent.com/images/qn0TJzbaXJnX99wbwn5tD5qOSO4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/qn0TJzbaXJnX99wbwn5tD5qOSO4.png?scale-down-to=512 512w,https://framerusercontent.com/images/qn0TJzbaXJnX99wbwn5tD5qOSO4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qn0TJzbaXJnX99wbwn5tD5qOSO4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qn0TJzbaXJnX99wbwn5tD5qOSO4.png 2304w\"},YBOMVxnDF:content??props.YBOMVxnDF??\"情報が分断されがちどこに何があるかわからない\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,NbIY8LHgo,r8f7T7VSC,YBOMVxnDF,KjxzLMAQK,w0Ow0ZI3w,RQTi6zwFS,UXlLhVxsx,TDZ68nzZD,rncSQWMSw,UA13drZz9,Jw9FnuWCq,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"PDiZpcLO_\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"bTsWL20bf\",\"doqCSAlAx\"].includes(baseVariant))return true;return false;};const isDisplayed1=value=>{if(baseVariant===\"wfnsdqpy9\")return value;if([\"PsNag2Qao\",\"bTsWL20bf\",\"gDXO9K8hC\",\"HZxfb1522\",\"akdLXsIEG\",\"doqCSAlAx\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"HZxfb1522\")return true;return false;};const isDisplayed3=()=>{if([\"lNB7LauDN\",\"ZZxzf64jX\",\"gv0lH8FlA\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fit\",intrinsicHeight:820,intrinsicWidth:1120,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:820,pixelWidth:1120,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(NbIY8LHgo),...{positionX:\"center\",positionY:\"bottom\"}},className:cx(scopingClassNames,\"framer-1cc99ru\",className,classNames),\"data-framer-name\":\"Before\",layoutDependency:layoutDependency,layoutId:\"PDiZpcLO_\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,...style},variants:{akdLXsIEG:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},bTsWL20bf:{backgroundColor:\"rgb(246, 246, 251)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},doqCSAlAx:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(246, 246, 251)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},gDXO9K8hC:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},gv0lH8FlA:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},HZxfb1522:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(149, 84, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},KDRLE2uBv:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},lNB7LauDN:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},PsNag2Qao:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},ZZxzf64jX:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16}},...addPropertyOverrides({akdLXsIEG:{\"data-framer-name\":\"Variant 11\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:1200,intrinsicWidth:2304,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1200,pixelWidth:2304,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(w0Ow0ZI3w),...{positionX:\"center\",positionY:\"bottom\"}}},bTsWL20bf:{\"data-framer-name\":\"Mobile - After\",background:undefined},doqCSAlAx:{\"data-framer-name\":\"Mobile - After - smaller img\",background:undefined},gDXO9K8hC:{\"data-framer-name\":\"After - JP - Tablet\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:1200,intrinsicWidth:2304,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1200,pixelWidth:2304,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(w0Ow0ZI3w),...{positionX:\"center\",positionY:\"bottom\"}}},gv0lH8FlA:{\"data-framer-name\":\"Before - JP - Mobile 2\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:672,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:800,pixelWidth:672,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/qd4MYBMYrs6HbOObu9tXLXXTRKk.png\",srcSet:\"https://framerusercontent.com/images/qd4MYBMYrs6HbOObu9tXLXXTRKk.png 672w\"}},HZxfb1522:{\"data-border\":true,\"data-framer-name\":\"After - JP - Mobile 2\",background:undefined},KDRLE2uBv:{\"data-framer-name\":\"Mobile - Before\"},lNB7LauDN:{\"data-framer-name\":\"Before - JP\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:672,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:800,pixelWidth:672,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/qd4MYBMYrs6HbOObu9tXLXXTRKk.png\",srcSet:\"https://framerusercontent.com/images/qd4MYBMYrs6HbOObu9tXLXXTRKk.png 672w\"}},PsNag2Qao:{\"data-framer-name\":\"After - JP\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:1200,intrinsicWidth:2304,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1200,pixelWidth:2304,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(w0Ow0ZI3w),...{positionX:\"center\",positionY:\"bottom\"}}},wfnsdqpy9:{\"data-framer-name\":\"After\"},ZZxzf64jX:{\"data-framer-name\":\"Before - JP - Tablet\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:672,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:800,pixelWidth:672,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/qd4MYBMYrs6HbOObu9tXLXXTRKk.png\",srcSet:\"https://framerusercontent.com/images/qd4MYBMYrs6HbOObu9tXLXXTRKk.png 672w\"}}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:304,intrinsicWidth:581,pixelHeight:304,pixelWidth:581,...toResponsiveImage(UXlLhVxsx),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-hwr9l5\",layoutDependency:layoutDependency,layoutId:\"z3LidQ6Vo\",...addPropertyOverrides({bTsWL20bf:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:304,intrinsicWidth:581,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:304,pixelWidth:581,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.66)`,...toResponsiveImage(UXlLhVxsx),...{positionX:\"center\",positionY:\"center\"}}},doqCSAlAx:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:304,intrinsicWidth:581,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:304,pixelWidth:581,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.46)`,...toResponsiveImage(UXlLhVxsx),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7xcdew\",layoutDependency:layoutDependency,layoutId:\"E3tJDb2T3\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wnn4gv\",layoutDependency:layoutDependency,layoutId:\"bp8RsNNsz\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1egupmm\",layoutDependency:layoutDependency,layoutId:\"kr4Q2dEnF\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)))\"},children:\"ツールがバラバラ\"})}),className:\"framer-410ztq\",fonts:[\"GF;Noto Sans JP-900\"],layoutDependency:layoutDependency,layoutId:\"KS8PyrXQe\",style:{\"--extracted-r6o4lv\":\"var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41))\"},text:r8f7T7VSC,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({akdLXsIEG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1s6gyxk\",\"data-styles-preset\":\"x9RikGskl\",children:\"ツールがバラバラ\"})}),fonts:[\"Inter\"]},bTsWL20bf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)))\"},children:\"ツールがバラバラ\"})})},doqCSAlAx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)))\"},children:\"ツールがバラバラ\"})})},gDXO9K8hC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)))\"},children:\"ツールがバラバラ\"})})},gv0lH8FlA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)))\"},children:\"ツールがバラバラ\"})})},HZxfb1522:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)))\"},children:\"ツールがバラバラ\"})})},KDRLE2uBv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)))\"},children:\"ツールがバラバラ\"})})},lNB7LauDN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1s6gyxk\",\"data-styles-preset\":\"x9RikGskl\",children:\"ツールがバラバラ\"})}),fonts:[\"Inter\"]},PsNag2Qao:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1s6gyxk\",\"data-styles-preset\":\"x9RikGskl\",children:\"ツールがバラバラ\"})}),fonts:[\"Inter\"]},ZZxzf64jX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTkwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", sans-serif',\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)))\"},children:\"ツールがバラバラ\"})})}},baseVariant,gestureVariant)}),isDisplayed1(UA13drZz9)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({akdLXsIEG:{height:49,y:(componentViewport?.y||0)+(componentViewport?.height||410)-373+0+0+0+0+0+55},bTsWL20bf:{height:49,y:(componentViewport?.y||0)+(componentViewport?.height||289)-375+0+0+0+0+0+130},doqCSAlAx:{height:49,y:(componentViewport?.y||0)+(componentViewport?.height||289)-375+0+0+0+0+0+130},gDXO9K8hC:{height:49,y:(componentViewport?.y||0)+(componentViewport?.height||410)-403+0+0+0+0+0+126},HZxfb1522:{height:49,y:(componentViewport?.y||0)+16+0+0+0+0+0+0+126},PsNag2Qao:{height:49,y:(componentViewport?.y||0)+(componentViewport?.height||410)-364+0+0+0+0+0+51},wfnsdqpy9:{height:49,y:(componentViewport?.y||0)+(componentViewport?.height||410)-311+0+0+0+0+0+40}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gvo5ek-container\",layoutDependency:layoutDependency,layoutId:\"bWffQGXPG-container\",nodeId:\"bWffQGXPG\",rendersWithMotion:true,scopeId:\"UyrWtpheS\",children:/*#__PURE__*/_jsx(Global_ButtonStepsOfLarkClick1gvo5ekWithMappedReactPropsqzim95,{G8TptyYBv:\"Download\",height:\"100%\",id:\"bWffQGXPG\",kXScVjI8w:rncSQWMSw,layoutId:\"bWffQGXPG\",PgP_e5X9h:TDZ68nzZD,variant:\"oqbgLHn_F\",width:\"100%\",...addPropertyOverrides({gDXO9K8hC:{variant:\"PY5WHmKXI\"},HZxfb1522:{variant:\"PY5WHmKXI\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:\"情報が分断されがちどこに何があるかわからない\"})}),className:\"framer-1ha6s17\",fonts:[\"GF;Noto Sans JP-500\"],layoutDependency:layoutDependency,layoutId:\"v5nmZXDXP\",style:{\"--extracted-r6o4lv\":\"var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115))\"},text:YBOMVxnDF,variants:{akdLXsIEG:{\"--extracted-r6o4lv\":\"var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41))\"},bTsWL20bf:{\"--extracted-r6o4lv\":\"var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41))\"},doqCSAlAx:{\"--extracted-r6o4lv\":\"var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41))\"},gDXO9K8hC:{\"--extracted-r6o4lv\":\"var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41))\"},HZxfb1522:{\"--extracted-r6o4lv\":\"var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41))\"},lNB7LauDN:{\"--extracted-r6o4lv\":\"var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41))\"},PsNag2Qao:{\"--extracted-r6o4lv\":\"var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({akdLXsIEG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)))\"},children:\"情報が分断されがちどこに何があるかわからない\"})})},bTsWL20bf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)))\"},children:\"情報が分断されがちどこに何があるかわからない\"})})},doqCSAlAx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)))\"},children:\"情報が分断されがちどこに何があるかわからない\"})})},gDXO9K8hC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)))\"},children:\"情報が分断されがちどこに何があるかわからない\"})})},gv0lH8FlA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:\"情報が分断されがちどこに何があるかわからない\"})})},HZxfb1522:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)))\"},children:\"情報が分断されがちどこに何があるかわからない\"})})},KDRLE2uBv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:\"情報が分断されがちどこに何があるかわからない\"})})},lNB7LauDN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jg60nb\",\"data-styles-preset\":\"X82eKqeAg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)))\"},children:\"情報が分断されがちどこに何があるかわからない\"})}),fonts:[\"Inter\"]},PsNag2Qao:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jg60nb\",\"data-styles-preset\":\"X82eKqeAg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)))\"},children:\"情報が分断されがちどこに何があるかわからない\"})}),fonts:[\"Inter\"]},ZZxzf64jX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:\"情報が分断されがちどこに何があるかわからない\"})})}},baseVariant,gestureVariant)})]}),isDisplayed1(Jw9FnuWCq)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({akdLXsIEG:{height:49,y:(componentViewport?.y||0)+(componentViewport?.height||410)-373+0+284},bTsWL20bf:{height:49,y:(componentViewport?.y||0)+(componentViewport?.height||289)-375+0+306},doqCSAlAx:{height:49,y:(componentViewport?.y||0)+(componentViewport?.height||289)-375+0+306},gDXO9K8hC:{height:49,y:(componentViewport?.y||0)+(componentViewport?.height||410)-403+0+314},HZxfb1522:{height:49,y:(componentViewport?.y||0)+16+0+0+320},PsNag2Qao:{height:49,y:(componentViewport?.y||0)+(componentViewport?.height||410)-364+0+275},wfnsdqpy9:{height:46,width:\"220px\",y:(componentViewport?.y||0)+(componentViewport?.height||410)-311+0+239}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6nlf16-container\",layoutDependency:layoutDependency,layoutId:\"isLlesn8H-container\",nodeId:\"isLlesn8H\",rendersWithMotion:true,scopeId:\"UyrWtpheS\",children:/*#__PURE__*/_jsx(Global_ButtonFeatureTryForFree6nlf16WithMappedReactPropsqzim95,{G8TptyYBv:\"Download\",height:\"100%\",id:\"isLlesn8H\",kXScVjI8w:\"https://www.larksuite.com/global/register?redirect_uri=https://www.larksuite.com/ja_jp/download&registration_process=global_register&app_id=1001&from=home_feature\",layoutId:\"isLlesn8H\",PgP_e5X9h:\"無料で使ってみる\",variant:\"zq6FPfMce\",width:\"100%\",...addPropertyOverrides({akdLXsIEG:{kXScVjI8w:\"https://www.larksuite.com/global/register?redirect_uri=https://www.larksuite.com/ja_jp/getstarted&registration_process=global_register&app_id=1001&from=home_feature\"},bTsWL20bf:{kXScVjI8w:\"https://www.larksuite.com/global/register?redirect_uri=https://www.larksuite.com/ja_jp/getstarted&registration_process=global_register&app_id=1001&from=home_feature\",variant:\"ItQHVuywP\"},doqCSAlAx:{kXScVjI8w:\"https://www.larksuite.com/global/register?redirect_uri=https://www.larksuite.com/ja_jp/getstarted&registration_process=global_register&app_id=1001&from=home_feature\",variant:\"ItQHVuywP\"},gDXO9K8hC:{kXScVjI8w:\"https://www.larksuite.com/global/register?redirect_uri=https://www.larksuite.com/ja_jp/getstarted&registration_process=global_register&app_id=1001&from=home_feature\",variant:\"ItQHVuywP\"},HZxfb1522:{kXScVjI8w:\"https://www.larksuite.com/global/register?redirect_uri=https://www.larksuite.com/ja_jp/getstarted&registration_process=global_register&app_id=1001&from=home_feature\",variant:\"ItQHVuywP\"},PsNag2Qao:{kXScVjI8w:\"https://www.larksuite.com/global/register?redirect_uri=https://www.larksuite.com/ja_jp/getstarted&registration_process=global_register&app_id=1001&from=home_feature\"},wfnsdqpy9:{kXScVjI8w:\"https://www.larksuite.com/global/register?redirect_uri=https://www.larksuite.com/ja_jp/getstarted&registration_process=global_register&app_id=1001&from=home_feature\",style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-75wsnv\",layoutDependency:layoutDependency,layoutId:\"sGeYtlMIN\",children:isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:510,intrinsicWidth:684,pixelHeight:510,pixelWidth:684,...toResponsiveImage(RQTi6zwFS),...{positionX:\"center\",positionY:\"bottom\"}},className:\"framer-1c9zain\",layoutDependency:layoutDependency,layoutId:\"FGWGnxAGJ\",transformTemplate:transformTemplate1,...addPropertyOverrides({HZxfb1522:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:510,intrinsicWidth:684,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+16+0+0+393+0),pixelHeight:510,pixelWidth:684,sizes:`calc((${componentViewport?.width||\"100vw\"} - 32px) * 0.6)`,...toResponsiveImage(RQTi6zwFS),...{positionX:\"center\",positionY:\"bottom\"}}}},baseVariant,gestureVariant)})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w6fs54\",layoutDependency:layoutDependency,layoutId:\"jEoN2ve9q\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fpqryw\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"IsopwzYWZ\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},transformTemplate:transformTemplate1,...addPropertyOverrides({gv0lH8FlA:{transformTemplate:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(89deg, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)) 0%, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)) 48.6486%, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)) 99.0521%)\"},children:\"01.\"})})}),className:\"framer-1jtsllr\",fonts:[\"GF;Noto Sans JP-500\"],layoutDependency:layoutDependency,layoutId:\"d4HfErxqe\",style:{\"--extracted-r6o4lv\":\"var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:KjxzLMAQK,transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gv0lH8FlA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7Tm90byBTYW5zIEpQLTUwMA==\",\"--framer-font-family\":'\"Noto Sans JP\", \"Noto Sans JP Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f2a78d25-fcec-4bd5-8d8e-593bde32ecf2, rgb(100, 106, 115)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(89deg, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)) 0%, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)) 48.6486%, var(--token-1b3671a7-ddbb-4586-b516-422ef5d98b58, rgb(31, 35, 41)) 99.0521%)\"},children:\"01.\"})})}),transformTemplate:transformTemplate1}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FUd54.framer-1dkgfch, .framer-FUd54 .framer-1dkgfch { display: block; }\",\".framer-FUd54.framer-1cc99ru { height: 410px; overflow: hidden; position: relative; width: 560px; }\",\".framer-FUd54 .framer-hwr9l5 { aspect-ratio: 1.8357142857142856 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 109px); position: absolute; right: 0px; top: 0px; width: 66%; }\",\".framer-FUd54 .framer-7xcdew { align-content: flex-start; align-items: flex-start; bottom: 26px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; left: 28px; overflow: visible; padding: 0px; position: absolute; width: 442px; }\",\".framer-FUd54 .framer-wnn4gv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FUd54 .framer-1egupmm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-FUd54 .framer-410ztq { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-FUd54 .framer-1gvo5ek-container, .framer-FUd54 .framer-6nlf16-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-FUd54 .framer-1ha6s17 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-FUd54 .framer-75wsnv { aspect-ratio: 2.2133333333333334 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 90px); overflow: visible; position: relative; width: 100%; }\",\".framer-FUd54 .framer-1c9zain { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 150px); left: 50%; position: absolute; top: 0px; width: 60%; }\",\".framer-FUd54 .framer-w6fs54 { flex: none; height: 84px; left: 32px; overflow: visible; position: absolute; top: 121px; width: 85px; }\",\".framer-FUd54 .framer-fpqryw { aspect-ratio: 1 / 1; bottom: 0px; flex: none; left: 49%; overflow: hidden; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 84px); will-change: var(--framer-will-change-override, transform); }\",\".framer-FUd54 .framer-1jtsllr { flex: none; height: auto; left: 48%; position: absolute; top: 49%; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FUd54 .framer-7xcdew, .framer-FUd54 .framer-wnn4gv, .framer-FUd54 .framer-1egupmm { gap: 0px; } .framer-FUd54 .framer-7xcdew > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-FUd54 .framer-7xcdew > :first-child, .framer-FUd54 .framer-wnn4gv > :first-child, .framer-FUd54 .framer-1egupmm > :first-child { margin-top: 0px; } .framer-FUd54 .framer-7xcdew > :last-child, .framer-FUd54 .framer-wnn4gv > :last-child, .framer-FUd54 .framer-1egupmm > :last-child { margin-bottom: 0px; } .framer-FUd54 .framer-wnn4gv > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-FUd54 .framer-1egupmm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-FUd54.framer-v-i2v4cz .framer-7xcdew { justify-content: flex-end; width: 90%; }\",\".framer-FUd54.framer-v-i2v4cz .framer-wnn4gv, .framer-FUd54.framer-v-1uv7jnk .framer-wnn4gv { justify-content: flex-start; }\",\".framer-FUd54.framer-v-i2v4cz .framer-1egupmm { gap: 4px; }\",\".framer-FUd54.framer-v-i2v4cz .framer-6nlf16-container { height: 46px; width: 220px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FUd54.framer-v-i2v4cz .framer-1egupmm { gap: 0px; } .framer-FUd54.framer-v-i2v4cz .framer-1egupmm > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-FUd54.framer-v-i2v4cz .framer-1egupmm > :first-child { margin-top: 0px; } .framer-FUd54.framer-v-i2v4cz .framer-1egupmm > :last-child { margin-bottom: 0px; } }\",\".framer-FUd54.framer-v-gjmqie.framer-1cc99ru, .framer-FUd54.framer-v-u9nooy.framer-1cc99ru { height: 400px; width: 336px; will-change: var(--framer-will-change-override, transform); }\",\".framer-FUd54.framer-v-gjmqie .framer-7xcdew { bottom: 122px; }\",\".framer-FUd54.framer-v-gjmqie .framer-1ha6s17 { width: 273px; }\",\".framer-FUd54.framer-v-gjmqie .framer-w6fs54 { bottom: 265px; top: unset; }\",\".framer-FUd54.framer-v-17amh30.framer-1cc99ru, .framer-FUd54.framer-v-5dtxwa.framer-1cc99ru, .framer-FUd54.framer-v-1uv7jnk.framer-1cc99ru { width: 768px; }\",\".framer-FUd54.framer-v-17amh30 .framer-7xcdew { bottom: 40px; width: 460px; }\",\".framer-FUd54.framer-v-17amh30 .framer-wnn4gv, .framer-FUd54.framer-v-5dtxwa .framer-wnn4gv, .framer-FUd54.framer-v-8swdfs .framer-wnn4gv { gap: 16px; justify-content: flex-start; }\",\".framer-FUd54.framer-v-17amh30 .framer-1egupmm { gap: 6px; justify-content: center; width: 100%; }\",\".framer-FUd54.framer-v-17amh30 .framer-410ztq, .framer-FUd54.framer-v-kxctfk .framer-410ztq, .framer-FUd54.framer-v-sch4q7 .framer-410ztq, .framer-FUd54.framer-v-1lf72iq .framer-410ztq { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-FUd54.framer-v-17amh30 .framer-1ha6s17, .framer-FUd54.framer-v-5dtxwa .framer-1ha6s17, .framer-FUd54.framer-v-1uv7jnk .framer-1ha6s17 { width: 70%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FUd54.framer-v-17amh30 .framer-wnn4gv, .framer-FUd54.framer-v-17amh30 .framer-1egupmm { gap: 0px; } .framer-FUd54.framer-v-17amh30 .framer-wnn4gv > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-FUd54.framer-v-17amh30 .framer-wnn4gv > :first-child, .framer-FUd54.framer-v-17amh30 .framer-1egupmm > :first-child { margin-top: 0px; } .framer-FUd54.framer-v-17amh30 .framer-wnn4gv > :last-child, .framer-FUd54.framer-v-17amh30 .framer-1egupmm > :last-child { margin-bottom: 0px; } .framer-FUd54.framer-v-17amh30 .framer-1egupmm > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",\".framer-FUd54.framer-v-kxctfk.framer-1cc99ru { height: 286px; width: 390px; }\",\".framer-FUd54.framer-v-kxctfk .framer-7xcdew { bottom: 20px; gap: 6px; left: 10px; width: 330px; }\",\".framer-FUd54.framer-v-kxctfk .framer-1egupmm, .framer-FUd54.framer-v-sch4q7 .framer-1egupmm, .framer-FUd54.framer-v-1lf72iq .framer-1egupmm { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FUd54.framer-v-kxctfk .framer-7xcdew { gap: 0px; } .framer-FUd54.framer-v-kxctfk .framer-7xcdew > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-FUd54.framer-v-kxctfk .framer-7xcdew > :first-child { margin-top: 0px; } .framer-FUd54.framer-v-kxctfk .framer-7xcdew > :last-child { margin-bottom: 0px; } }\",\".framer-FUd54.framer-v-sch4q7.framer-1cc99ru, .framer-FUd54.framer-v-1lf72iq.framer-1cc99ru { height: 289px; width: 390px; will-change: var(--framer-will-change-override, transform); }\",\".framer-FUd54.framer-v-sch4q7 .framer-7xcdew, .framer-FUd54.framer-v-1lf72iq .framer-7xcdew { bottom: 20px; gap: 16px; left: 16px; max-width: 390px; width: 90%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FUd54.framer-v-sch4q7 .framer-7xcdew { gap: 0px; } .framer-FUd54.framer-v-sch4q7 .framer-7xcdew > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-FUd54.framer-v-sch4q7 .framer-7xcdew > :first-child { margin-top: 0px; } .framer-FUd54.framer-v-sch4q7 .framer-7xcdew > :last-child { margin-bottom: 0px; } }\",\".framer-FUd54.framer-v-u9nooy .framer-7xcdew { width: 80%; }\",\".framer-FUd54.framer-v-u9nooy .framer-410ztq { white-space: pre-wrap; width: 269px; word-break: break-word; word-wrap: break-word; }\",\".framer-FUd54.framer-v-u9nooy .framer-w6fs54 { bottom: 175px; top: unset; }\",\".framer-FUd54.framer-v-5dtxwa .framer-7xcdew { bottom: 40px; gap: 18px; }\",\".framer-FUd54.framer-v-5dtxwa .framer-1egupmm, .framer-FUd54.framer-v-8swdfs .framer-1egupmm { gap: 6px; }\",\".framer-FUd54.framer-v-5dtxwa .framer-410ztq, .framer-FUd54.framer-v-8swdfs .framer-410ztq, .framer-FUd54.framer-v-3xcexq .framer-410ztq, .framer-FUd54.framer-v-1uv7jnk .framer-410ztq { white-space: pre-wrap; width: 425px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FUd54.framer-v-5dtxwa .framer-7xcdew, .framer-FUd54.framer-v-5dtxwa .framer-wnn4gv, .framer-FUd54.framer-v-5dtxwa .framer-1egupmm { gap: 0px; } .framer-FUd54.framer-v-5dtxwa .framer-7xcdew > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-FUd54.framer-v-5dtxwa .framer-7xcdew > :first-child, .framer-FUd54.framer-v-5dtxwa .framer-wnn4gv > :first-child, .framer-FUd54.framer-v-5dtxwa .framer-1egupmm > :first-child { margin-top: 0px; } .framer-FUd54.framer-v-5dtxwa .framer-7xcdew > :last-child, .framer-FUd54.framer-v-5dtxwa .framer-wnn4gv > :last-child, .framer-FUd54.framer-v-5dtxwa .framer-1egupmm > :last-child { margin-bottom: 0px; } .framer-FUd54.framer-v-5dtxwa .framer-wnn4gv > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-FUd54.framer-v-5dtxwa .framer-1egupmm > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",\".framer-FUd54.framer-v-8swdfs.framer-1cc99ru { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 16px; width: 364px; will-change: var(--framer-will-change-override, transform); }\",\".framer-FUd54.framer-v-8swdfs .framer-7xcdew { bottom: unset; left: unset; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FUd54.framer-v-8swdfs.framer-1cc99ru, .framer-FUd54.framer-v-8swdfs .framer-wnn4gv, .framer-FUd54.framer-v-8swdfs .framer-1egupmm { gap: 0px; } .framer-FUd54.framer-v-8swdfs.framer-1cc99ru > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-FUd54.framer-v-8swdfs.framer-1cc99ru > :first-child, .framer-FUd54.framer-v-8swdfs .framer-wnn4gv > :first-child, .framer-FUd54.framer-v-8swdfs .framer-1egupmm > :first-child { margin-top: 0px; } .framer-FUd54.framer-v-8swdfs.framer-1cc99ru > :last-child, .framer-FUd54.framer-v-8swdfs .framer-wnn4gv > :last-child, .framer-FUd54.framer-v-8swdfs .framer-1egupmm > :last-child { margin-bottom: 0px; } .framer-FUd54.framer-v-8swdfs .framer-wnn4gv > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-FUd54.framer-v-8swdfs .framer-1egupmm > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",\".framer-FUd54.framer-v-3xcexq.framer-1cc99ru { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: 154px; justify-content: space-around; padding: 0px; width: 412px; will-change: var(--framer-will-change-override, transform); }\",\".framer-FUd54.framer-v-3xcexq .framer-7xcdew { bottom: unset; left: unset; order: 1; position: relative; width: 70%; }\",\".framer-FUd54.framer-v-3xcexq .framer-w6fs54 { height: 64px; left: unset; order: 0; position: relative; top: unset; width: 64px; }\",\".framer-FUd54.framer-v-3xcexq .framer-fpqryw { aspect-ratio: unset; left: calc(49.411764705882376% - 64px / 2); width: 64px; }\",\".framer-FUd54.framer-v-3xcexq .framer-1jtsllr { left: 52%; top: 17px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FUd54.framer-v-3xcexq.framer-1cc99ru { gap: 0px; } .framer-FUd54.framer-v-3xcexq.framer-1cc99ru > *, .framer-FUd54.framer-v-3xcexq.framer-1cc99ru > :first-child, .framer-FUd54.framer-v-3xcexq.framer-1cc99ru > :last-child { margin: 0px; } }\",\".framer-FUd54.framer-v-1uv7jnk .framer-7xcdew { bottom: 40px; width: 450px; }\",\".framer-FUd54.framer-v-1lf72iq .framer-hwr9l5 { width: 46%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FUd54.framer-v-1lf72iq .framer-7xcdew { gap: 0px; } .framer-FUd54.framer-v-1lf72iq .framer-7xcdew > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-FUd54.framer-v-1lf72iq .framer-7xcdew > :first-child { margin-top: 0px; } .framer-FUd54.framer-v-1lf72iq .framer-7xcdew > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-FUd54[data-border=\"true\"]::after, .framer-FUd54 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 410\n * @framerIntrinsicWidth 560\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"wfnsdqpy9\":{\"layout\":[\"fixed\",\"fixed\"]},\"lNB7LauDN\":{\"layout\":[\"fixed\",\"fixed\"]},\"PsNag2Qao\":{\"layout\":[\"fixed\",\"fixed\"]},\"KDRLE2uBv\":{\"layout\":[\"fixed\",\"fixed\"]},\"bTsWL20bf\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZZxzf64jX\":{\"layout\":[\"fixed\",\"fixed\"]},\"gDXO9K8hC\":{\"layout\":[\"fixed\",\"fixed\"]},\"HZxfb1522\":{\"layout\":[\"fixed\",\"auto\"]},\"gv0lH8FlA\":{\"layout\":[\"fixed\",\"fixed\"]},\"akdLXsIEG\":{\"layout\":[\"fixed\",\"fixed\"]},\"doqCSAlAx\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"NbIY8LHgo\":\"image\",\"r8f7T7VSC\":\"title\",\"YBOMVxnDF\":\"content\",\"KjxzLMAQK\":\"no\",\"w0Ow0ZI3w\":\"imageJP\",\"RQTi6zwFS\":\"imageJPMobile\",\"UXlLhVxsx\":\"imageJPMobileAfter\",\"TDZ68nzZD\":\"buttonContent\",\"rncSQWMSw\":\"link\",\"UA13drZz9\":\"textLinkVisible\",\"Jw9FnuWCq\":\"cTAVisible\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUyrWtpheS=withCSS(Component,css,\"framer-FUd54\");export default FramerUyrWtpheS;FramerUyrWtpheS.displayName=\"Painpoint\";FramerUyrWtpheS.defaultProps={height:410,width:560};addPropertyControls(FramerUyrWtpheS,{variant:{options:[\"PDiZpcLO_\",\"wfnsdqpy9\",\"lNB7LauDN\",\"PsNag2Qao\",\"KDRLE2uBv\",\"bTsWL20bf\",\"ZZxzf64jX\",\"gDXO9K8hC\",\"HZxfb1522\",\"gv0lH8FlA\",\"akdLXsIEG\",\"doqCSAlAx\"],optionTitles:[\"Before\",\"After\",\"Before - JP\",\"After - JP\",\"Mobile - Before\",\"Mobile - After\",\"Before - JP - Tablet\",\"After - JP - Tablet\",\"After - JP - Mobile 2\",\"Before - JP - Mobile 2\",\"Variant 11\",\"Mobile - After - smaller img\"],title:\"Variant\",type:ControlType.Enum},NbIY8LHgo:{__defaultAssetReference:\"data:framer/asset-reference,QP2nkQ6z79pPRUNgpcj2jNN7xVk.png?originalFilename=before1.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},r8f7T7VSC:{defaultValue:\"ツールがバラバラ\",displayTextArea:false,title:\"Title\",type:ControlType.String},YBOMVxnDF:{defaultValue:\"情報が分断されがちどこに何があるかわからない\",displayTextArea:true,title:\"Content\",type:ControlType.String},KjxzLMAQK:{defaultValue:\"01.\",displayTextArea:false,title:\"No.\",type:ControlType.String},w0Ow0ZI3w:{__defaultAssetReference:\"data:framer/asset-reference,qn0TJzbaXJnX99wbwn5tD5qOSO4.png?originalFilename=after1jp.png&preferredSize=auto\",title:\"Image - JP\",type:ControlType.ResponsiveImage},RQTi6zwFS:{__defaultAssetReference:\"data:framer/asset-reference,5sxRCe3JM3fJKuOOLUo5pQ0NXw.png?originalFilename=image.png&preferredSize=auto\",title:\"Image - JP - mobile\",type:ControlType.ResponsiveImage},UXlLhVxsx:{__defaultAssetReference:\"data:framer/asset-reference,8gGm282OWJ0yO0PPWaMhnVBvdr8.png?originalFilename=Group+1912055127.png&preferredSize=auto\",title:\"Image - JP - mobile - after\",type:ControlType.ResponsiveImage},TDZ68nzZD:{defaultValue:\"機能を詳しく見る\",displayTextArea:false,title:\"Button Content\",type:ControlType.String},rncSQWMSw:{title:\"Link\",type:ControlType.Link},UA13drZz9:{defaultValue:true,title:\"Text Link Visible\",type:ControlType.Boolean},Jw9FnuWCq:{defaultValue:true,title:\"CTA Visible\",type:ControlType.Boolean}});addFonts(FramerUyrWtpheS,[{explicitInter:true,fonts:[{family:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v53/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFLgk757Y0rw-oME.woff2\",weight:\"900\"},{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:\"Noto Sans JP\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/notosansjp/v53/-F6jfjtqLzI2JPCgQBnw7HFyzSD-AsregP8VFCMj757Y0rw-oME.woff2\",weight:\"500\"}]},...Global_ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUyrWtpheS\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"560\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wfnsdqpy9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lNB7LauDN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PsNag2Qao\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KDRLE2uBv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bTsWL20bf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZZxzf64jX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gDXO9K8hC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HZxfb1522\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gv0lH8FlA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"akdLXsIEG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"doqCSAlAx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"410\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"NbIY8LHgo\\\":\\\"image\\\",\\\"r8f7T7VSC\\\":\\\"title\\\",\\\"YBOMVxnDF\\\":\\\"content\\\",\\\"KjxzLMAQK\\\":\\\"no\\\",\\\"w0Ow0ZI3w\\\":\\\"imageJP\\\",\\\"RQTi6zwFS\\\":\\\"imageJPMobile\\\",\\\"UXlLhVxsx\\\":\\\"imageJPMobileAfter\\\",\\\"TDZ68nzZD\\\":\\\"buttonContent\\\",\\\"rncSQWMSw\\\":\\\"link\\\",\\\"UA13drZz9\\\":\\\"textLinkVisible\\\",\\\"Jw9FnuWCq\\\":\\\"cTAVisible\\\"}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UyrWtpheS.map"],"mappings":"0uDAII,SAAS,GAAc,CAAC,EAAM,EAAM,CAAC,CAAC,OAAO,GAAO,IAAI,IAAQ,EAAM,KAAK,EAAI,CAG/E,SAAS,IAAY,CAAC,GAAK,CAAC,EAAc,EAAiB,CAAC,IAAS,EAAM,CAA0F,MAAzF,GAAgB,IAAI,CAAC,EAAiB,GAAO,WAAW,iBAAiB,CAAC,QAAQ,AAAE,EAAC,CAAE,EAAC,CAAQ,CAAe,CAK3L,SAAS,GAAWA,EAAS,EAAO,CAAC,cAAY,YAAU,YAAU,CAAC,EAAW,CAAC,AAAG,EAAU,SAASA,IAAW,GAAQ,EAAU,SAAQ,EAAM,EAAQ,EAAY,EAAE,EAAW,CAAC,EAAU,QAAQ,aAAa,WAAW,GAAG,GAAW,EAAU,SAASA,IAAW,IAAQ,EAAU,SAAQ,EAAK,EAAQ,EAAY,EAAE,EAAW,CAAC,EAAU,QAAQ,gBAAgB,WAAW,CAAG,UAAS,GAAO,EAAiB,EAAa,CAQ3V,IARkW,EAAU,EAAO,EAAiB,CAAO,EAAY,EAAe,EAAU,QAAQ,EAAE,EAAE,CAAO,EAAY,EAAa,EAAY,CAAC,EAAE,CAAE,EAAC,CAAC,GAAc,EAAE,CAAE,EAAC,CAAO,EAAc,EAAa,EAAY,GAAG,EAAE,EAAE,CAAO,EAAU,EAAO,KAAK,CAKzpB,EAAc,EAAa,EAAc,GAAG,EAAE,GAAG,OAAO,OAAO,CAG/D,EAAO,EAAa,EAAc,GAAG,IAAI,OAAO,UAAU,UAAU,CAAO,EAAY,CAAC,GAAG,GAAiB,QAAQ,EAAc,gBAAc,QAAO,EAAC,MAAM,CAAC,YAAU,cAAY,cAAY,cAAY,WAAU,CAAE,UAAS,GAAe,CAAC,UAAQ,CAAC,CAAC,EAAQ,aAAa,eAAc,EAAM,AAAE,UAAS,GAAgB,EAAU,EAAK,EAAW,EAAoB,EAAa,EAAY,EAAa,CAAC,EAAU,IAAI,CAAC,IAAI,EAAU,QAAQ,OAIrO,IAJkP,EAAiB,GAAM,CAItW,AAJuW,EAAW,QAAQ,EAAK,GAIlf,EAAK,GAAM,UAAU,EAAa,UAAS,EAAa,YAAA,IAAmB,EAAoB,EAAK,GAAM,QAAQ,CAAC,GAAa,AAAE,EAAO,EAAW,GAAO,EAAiB,CAAC,UAAU,EAAU,QAAQ,MAAK,EAAC,CAAO,EAAW,GAAO,EAAU,QAAQ,IAAI,CAAgB,AAAf,GAAc,CAAC,GAAa,AAAE,EAAC,CAAC,MAAM,IAAI,CAAc,AAAb,GAAY,CAAC,GAAY,AAAE,CAAE,EAAC,CAAC,EAAY,CAAa,EAAC,AAAE,CASrW,SAAS,EAAS,CAAC,QAAM,MAAI,OAAK,QAAM,eAAa,aAAW,cAAY,aAAW,iBAAe,YAAU,gBAAa,gBAAc,GAAG,GAAM,CAAC,CAkBxG,IAlB+G,EAAS,EAAS,MAAM,EAAM,CAAO,EAAS,GAAa,SAAS,GAAG,GAAa,OAAa,EAAQ,GAAW,GAAM,CAAO,EAAU,EAAK,IAAI,IAAS,CAAC,cAAY,YAAU,YAAU,iBAAe,YAAU,CAAC,EAAgB,CAAC,OAAK,WAAS,QAAM,CAAC,EAAgB,CAAC,YAAU,aAAW,eAAa,aAAW,cAAY,aAAW,CAAC,EAAkB,CAAC,iBAAc,oBAAiB,WAAQ,YAAU,aAAW,cAAY,WAAQ,YAAS,iBAAe,qBAAkB,cAAY,WAAS,CAAC,EAAoB,CAAC,oBAAkB,YAAU,cAAY,aAAU,aAAU,cAAW,gBAAa,CAAC,EAElwB,EAAW,MAAA,GAAiB,CAG5B,GAAa,MAAA,GAAiB,CAI9B,EAAc,EAAe,EAAE,CAAO,GAAoB,GAAW,CAAC,EAAc,IAAI,GAAa,cAAA,GAAyC,EAArB,GAAa,QAAkB,AAAE,EAG1J,GAAc,IAAY,CAE1B,GAAM,IAAO,EAAM,EAAU,CAAO,GAAI,IAAO,EAAK,EAAU,CAAO,GAAe,EAAe,EAAU,GAAG,CAAO,GAAa,EAAa,GAAe,GAAG,IAAI,EAAE,CAAO,GAAU,EAAe,EAAU,CAAO,GAAe,EAAa,CAAC,GAAe,EAAU,EAAC,GAAc,CAAO,GAAa,EAAa,GAAe,GAAG,IAAI,EAAE,CAAO,EAAU,EAAe,EAAK,QAAQ,SAAS,CAAO,GAAK,EAAa,CAAC,EAAU,GAAM,YAAY,GAAe,GAAe,GAAI,YAAY,GAAa,EAAc,EAAC,IAAgB,qBAAqB,EAAO,GAAG,iBAAiB,EAAO,GAAG,IAAI,EAAO,GAAG,qBAAqB,EAAO,GAAG,sBAAsB,EAAO,GAAG,kBAAkB,EAAO,GAAG,IAAI,EAAO,GAAG,IAAM,CAAO,GAAY,EAAO,KAAK,CAErvB,CAAC,GAAS,GAAY,CAAC,GAAS,EAAS,EAAE,EAAE,CAE5C,GAAU,CAAC,gBAAgB,EAAS,WAAW,CAAE,EAAO,GAAW,CAAE,EAAI,IAAQ,YAAc,GAAM,GAAW,OAAO,OAAO,GAAU,OAAO,SAAa,GAAW,MAAM,OAAO,GAAU,MAAM,SAAa,IAAO,GAAU,eAAe,UAAa,IAAY,WAAW,GAAU,OAAO,cAAc,GAAY,EAAE,KAAK,GAAW,MAAM,QAAgB,IAAY,YAAW,GAAU,OAAO,OAAO,IAAI,EAAa,MAAM,EAAI,OAAO,EAAI,EAAa,KAAK,GAAW,MAAM,QAAW,IAAa,WAAW,GAAU,QAAQ,cAAc,GAAa,EAAE,KAAK,GAAW,OAAO,QAAgB,IAAa,SAAQ,GAAU,QAAQ,OAAO,IAAI,EAAW,MAAM,EAAI,OAAO,EAAI,EAAW,KAAK,GAAW,OAAO,QAAuf,IAAze,GAAe,EAAS,SAAS,OAAa,GAAe,CAAC,GAAG,GAAmB,SAAQ,EAAO,GAAc,CAAC,GAAG,GAAkB,MAAI,WAAW,EAAM,cAAc,EAAK,MAAM,SAAS,UAAU,EAAK,GAAe,SAAS,UAAU,EAAK,SAAS,GAAe,eAAe,GAAM,EAAE,EAAU,gBAAA,GAAsB,wBAAwB,QAAQ,gBAAgB,EAAY,OAAA,GAAe,aAAa,EAAY,OAAA,GAAe,UAAU,EAAY,OAAA,GAAe,eAAa,EAAO,GAAa,wBAA0B,UAAW,EAAC,AAAG,IAAW,GAAa,cAAc,GAAW,IAAM,GAAS,CAAE,KAAI,IAAQ,YAAW,GAAS,aAAa,QAAQ,GAAS,wBAAwB,UAAa,EAAS,CAAC,IAAM,EAAU,EAAO,CAAE,EAAC,CAAC,GAAgB,GAAY,EAAU,EAAW,GAAoB,GAAa,EAAY,IAAI,CAAC,IAAI,EAAW,QAAQ,OAA2E,GAA/D,CAAC,eAAa,kBAAgB,eAAa,CAAC,EAAW,QAAc,EAAQ,EAAc,KAAK,CAAC,IAAI,IAAe,EAAgB,OAAO,GAAG,EAAa,EAAgB,CAA4C,AAA3C,GAAW,EAAQ,EAAE,GAAM,EAAe,CAAC,GAAW,EAAQ,EAAa,GAAI,EAAe,CAAC,IAAI,IAAI,EAAE,EAAE,EAAE,EAAU,QAAQ,OAAO,IAAI,CAAC,GAAK,CAAC,UAAQ,MAAM,EAAO,IAAI,EAAK,CAAC,EAAU,QAAQ,GAAG,AAAG,EAAK,GAAS,EAAO,EAAQ,EAAiB,EAAQ,aAAa,eAAc,EAAK,CAAO,EAAQ,aAAa,eAAc,EAAM,AAAG,CAAC,MAA6E,AAAxE,GAAW,EAAE,EAAE,GAAM,EAAe,CAAC,GAAW,EAAE,EAAE,GAAI,EAAe,CAAC,EAAU,QAAQ,QAAQ,GAAe,CAO9rE,IAAI,EAAY,KAAK,KAAK,EAAa,EAAgB,CAAC,AAAI,MAAM,EAAY,GAC/F,EAAY,EAAS,MAAI,EAAY,GAAY,IAAc,IAAS,GAAY,EAAY,CAAG,EAAC,CAAC,EAAS,EAAC,CAAC,EAAY,IAAI,CAAK,GAAY,UAAe,EAAU,QAAQ,MAAM,KAAK,GAAY,QAAQ,SAAS,CAAC,IAAI,GAAiB,EAAK,CAAC,UAAQ,MAAM,EAAQ,WAAW,IAAI,EAAQ,WAAW,EAAQ,WAAY,EAAC,CAAC,UAAQ,MAAM,EAAQ,UAAU,IAAI,EAAQ,UAAU,EAAQ,YAAa,EAAG,CAAE,EAAC,CAAE,EAAC,CAAC,AAAE,CAItZ,AAAG,IAAU,EAAU,IAAI,CAAC,GAAU,IAAI,EAAU,AAAE,EAAC,CAAC,CAAU,EAAC,CAAC,EAAU,IAAI,CAAC,GAAe,IAAI,EAAU,GAAG,AAAE,EAAC,CAAC,CAAU,EAAC,CAAC,EAAU,IAAI,CAAC,EAAU,IAAI,EAAK,QAAQ,SAAS,AAAE,EAAC,CAAC,CAAK,EAAC,EAA2jC,IAAnjC,GAAa,CAAC,EAAM,IAAS,CAAC,IAAI,EAAW,QAAQ,OAA8F,GAAlF,CAAC,UAAQ,CAAC,EAAW,QAAa,CAAC,WAAS,CAAC,GAAY,QAAY,EAAiB,EAAE,IAAQ,EAAE,EAAE,EAAS,OAAO,EAAE,KAAM,QAAA,IAAyB,CAAoJ,IAA7I,EAAK,EAAS,GAASC,EAAM,EAAK,EAAK,WAAW,EAAK,UAAgB,EAAO,EAAK,EAAK,YAAY,EAAK,aAAmBC,EAAID,EAAM,EAAa,EAAU,IAAI,GAAG,IAAQ,EAAE,CAAC,IAAM,EAAW,GAASA,EAAMC,EAAI,EAAO,CAAC,AAAG,EAAW,EAAE,EAAW,EAAaD,EAAe,IAAI,EAAS,OAAO,IAAG,EAAaC,EAAM,SAAQ,IAAQ,GAAG,CAAC,IAAM,EAAY,GAASD,EAAMC,EAAI,EAAO,CAAC,AAAG,EAAY,EAAW,EAAaA,EAAa,IAAI,IAAG,EAAaD,EAAQ,IAAG,CAAO,QAAO,CAAc,EAAO,GAAgB,GAAkB,CAAO,GAAK,GAAU,CAAC,GAAa,QAAQ,EAAS,IAAM,EAAQ,EAAK,CAAC,KAAK,CAAS,EAAC,CAAC,IAAI,CAAS,EAAC,GAAY,QAAQ,SAAS,CAAC,GAAG,EAAQ,SAAS,GAAgB,OAAO,QAAS,EAAC,AAAE,EAAO,GAAS,GAAM,CAAC,IAAI,EAAW,QAAQ,OAAO,GAAK,CAAC,eAAa,CAAC,EAAW,QAAQ,GAAK,GAAM,GAAc,GAAS,IAAI,AAAE,EAAO,GAAU,GAAO,IAAI,CAAC,IAAI,EAAW,QAAQ,OAAuI,GAA3H,CAAC,kBAAgB,eAAa,CAAC,EAAW,QAAc,EAAQ,EAAc,KAAK,CAAO,EAAW,EAAa,GAAe,EAAY,GAAM,EAAE,GAAS,EAAE,KAAK,MAAM,EAAQ,EAAW,CAAC,CAAC,GAAS,EAAY,EAAM,AAAE,EAEvhD,GAAG,IAAW,EAAG,MAAqB,GAAK,GAAY,CAAE,EAAC,CAAgB,IAAR,GAAK,CAAE,EAAO,GAAc,CAAE,EAAC,GAAG,GAAS,GAAG,KAAmB,GAAc,CAAC,IAAI,IAAI,EAAE,EAAE,EAAE,GAAS,IAAI,CAAC,IAAM,EAAW,IAAW,IAAG,EAAM,GAAK,KAAmB,EAAK,GAAI,CAAC,SAAS,CAAC,GAAG,GAAS,MAAM,GAAQ,OAAO,GAAQ,gBAAgB,EAAS,EAAC,YAAY,GAA4B,aAAW,gBAAgB,GAAkB,QAAQ,EAAY,QAAQ,IAAI,GAAS,EAAE,CAAe,gBAAyB,aAAW,MAAM,GAAS,MAAM,EAAE,IAAI,GAAQ,QAAQ,EAAiB,MAAK,EAAC,CAAC,AAAE,CAAG,IAAU,GAAc,eAAe,GAAc,qBAAqB,GAAc,mBAAmB,OAAO,EAAS,KAAO,OAAqB,GAAM,UAAU,CAAC,MAAM,GAAe,GAAG,GAAa,SAAS,CAAe,EAAK,EAAO,GAAG,CAAC,IAAI,GAAY,MAAM,GAAc,UAAU,yCAAyC,iBAA4B,oBAAoB,SAAS,QAAQ,IAAI,GAAa,YAAA,GAAkB,SAAS,EAAS,IAAI,EAAM,CAAC,EAAM,IAAQ,CAAC,IAAI,EAAkB,MAAO,GAAK,KAAK,CAAC,MAAM,GAAU,GAAG,iBAAuB,EAAE,EAAM,EAAE,MAAM,EAAS,EAAE,SAAuB,EAAa,EAAM,CAAC,GAAG,EAAM,MAAM,MAAM,CAAC,IAAI,EAAI,EAAM,QAAuC,MAAM,GAAG,EAAW,CAAC,EAAC,AAAC,EAAC,AAAE,EAAC,AAAC,EAAC,CAAe,EAAM,WAAW,CAAC,MAAM,CAAC,GAAG,GAAe,QAAQ,GAAa,QAAQ,OAAO,cAAc,EAAK,MAAM,QAAS,eAAc,+BAA+B,UAAU,uDAAuD,EAAkB,SAAS,CAAe,EAAK,EAAO,OAAO,CAAC,IAAI,GAAM,UAAU,KAAK,SAAS,MAAM,CAAC,GAAG,GAAM,YAAY,gBAAgB,GAAU,MAAM,EAAU,OAAO,EAAU,aAAa,EAAY,OAAQ,EAAQ,EAAH,GAAK,QAAQ,EAAkB,QAAQ,MAAO,EAAC,QAAQ,GAAU,GAAG,cAAc,WAAW,SAAS,CAAC,MAAM,EAAG,EAAC,WAAW,CAAC,SAAS,GAAI,EAAC,SAAuB,EAAK,MAAM,CAAC,IAAI,GAAG,MAAM,EAAU,OAAO,EAAU,IAAI,IAAW,qEAAsE,EAAC,AAAC,EAAC,CAAe,EAAK,EAAO,OAAO,CAAC,IAAI,GAAI,UAAU,KAAK,SAAS,MAAM,CAAC,GAAG,GAAI,YAAY,gBAAgB,GAAU,MAAM,EAAU,OAAO,EAAU,aAAa,EAAY,OAAQ,EAAQ,EAAH,GAAK,QAAQ,EAAkB,QAAQ,MAAO,EAAC,QAAQ,GAAU,EAAE,cAAc,OAAO,SAAS,CAAC,MAAM,EAAG,EAAC,WAAW,CAAC,SAAS,GAAI,EAAC,SAAuB,EAAK,MAAM,CAAC,IAAI,GAAG,MAAM,EAAU,OAAO,EAAU,IAAI,IAAY,qEAAsE,EAAC,AAAC,EAAC,CAAC,GAAK,OAAO,EAAgB,EAAK,MAAM,CAAC,MAAM,CAAC,GAAG,GAAmB,KAAK,EAAK,MAAM,EAAU,IAAK,EAAW,QAAN,MAAc,UAAU,EAAK,mBAAmB,mBAAmB,cAAc,EAAK,MAAM,SAAS,OAAO,EAAK,EAAU,QAAQ,aAAa,EAAW,gBAAgB,EAAe,GAAG,EAAc,EAAC,SAAS,EAAK,EAAC,CAAC,IAAK,CAAC,EAAC,CAAe,EAAK,GAAY,CAAE,EAAC,AAAC,CAAC,EAAC,AAAE,CAA85K,SAAS,GAAI,CAAC,gBAAc,aAAW,aAAW,kBAAgB,QAAQ,EAAkB,QAAM,QAAM,SAAA,EAAS,cAAY,MAAI,UAAQ,OAAK,GAAG,EAAM,CAAC,CAA2pB,IAAppB,EAAQ,EAAa,EAAc,GAAG,CAAC,IAAI,EAAI,EAAK,KAAM,EAAI,EAAW,UAAyC,aAAe,OAAO,IAAQ,EAAE,EAAgB,EAA2L,IAAlK,GAAa,EAAK,EAAW,UAA2C,aAAc,EAAY,EAAU,EAAW,EAAY,EAAU,EAAU,EAAiBE,EAAW,GAAG,IAAY,EAAM,EAAM,EAAE,EAAE,EAAU,IAAQ,EAAM,GAAG,OAAOA,EAAW,EAAgB,CAAmB,EAAC,CAAO,EAAc,EAAI,EAAM,GAAK,GAAM,EAAM,EAAE,EAAc,EAAY,IAAQ,GAAM,IAAQ,EAAM,EAAE,EAAc,EAAY,EAAM,GAAM,IAAQ,EAAM,EAAE,EAAc,EAAY,GAAK,GAAM,EAAM,EAAE,EAAc,EAAQ,MAAqB,GAAK,SAAS,eAAe,iBAAiB,EAAM,EAAE,EAAE,KAAK,SAAS,GAAG,EAAM,MAAM,CAAC,GAAG,EAAY,SAAS,EAAE,EAAI,KAAK,EAAM,KAAK,GAAO,KAAK,GAAK,GAAI,EAAC,SAAuB,EAAK,EAAO,IAAI,CAAC,MAAM,CAAC,GAAGC,EAAS,SAAQ,CAAC,EAAC,AAAC,EAAC,AAAE,UAAS,IAAa,CAAC,MAAqB,GAAM,UAAU,CAAC,MAAM,GAAkB,SAAS,CAAe,EAAK,MAAM,CAAC,MAAM,GAAY,SAAS,GAAI,EAAC,CAAe,EAAK,IAAI,CAAC,MAAM,GAAY,SAAS,oBAAqB,EAAC,CAAe,EAAK,IAAI,CAAC,MAAM,GAAe,SAAS,4CAA6C,EAAC,AAAC,CAAC,EAAC,AAAE,UAAS,IAAa,CAAC,MAAqB,GAAK,MAAM,CAAC,wBAAwB,CAAC,OAAA;;;;;;;;;;;;;;;;sBAgBpvT,CAAC,EAAC,AAAE,6CAI8H,AAErH,IAvFpC,GAAyD,IAA+F,IAAiE,KAA0C,KAA6C,IAAuF,KAA4F,CAiE86E,EAAS,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,eAAe,CAAC,eAAc,EAAM,kBAAiB,CAAM,EAAC,aAAa,CAAC,UAAU,OAAO,YAAY,EAAE,aAAa,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,CAAE,EAAC,aAAa,CAAE,EAAyB,EAAoB,EAAS,CAAC,MAAM,CAAC,KAAK,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAK,EAAY,iBAAkB,CAAC,EAAC,KAAK,CAAC,KAAK,EAAY,KAAK,MAAM,YAAY,QAAQ,EAAC,GAAK,CAAM,EAAC,YAAY,CAAC,uBAAuB,oBAAqB,EAAC,yBAAwB,CAAK,EAAC,MAAM,CAAC,KAAK,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAW,EAAC,YAAY,CAAC,KAAK,CAAC,KAAK,CAAC,YAAY,eAAe,cAAe,EAAC,MAAM,CAAC,aAAa,eAAe,aAAc,CAAC,CAAC,EAAC,aAAa,SAAS,yBAAwB,CAAK,EAAC,IAAI,CAAC,KAAK,EAAY,OAAO,MAAM,KAAM,EAAC,GAAG,GAAe,aAAa,CAAC,KAAK,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAK,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,OAAO,UAAU,SAAU,EAAC,aAAa,CAAC,OAAO,UAAU,SAAU,EAAC,aAAa,MAAO,EAAC,WAAW,CAAC,KAAK,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,EAAE,OAAO,GAAO,EAAM,YAAY,SAAU,EAAC,aAAa,CAAC,KAAK,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,gBAAe,EAAK,OAAO,GAAO,EAAM,YAAY,SAAU,EAAC,WAAW,CAAC,KAAK,EAAY,KAAK,MAAM,SAAS,QAAQ,CAAC,OAAO,UAAU,MAAO,EAAC,aAAa,CAAC,OAAO,UAAU,MAAO,EAAC,aAAa,MAAO,EAAC,YAAY,CAAC,KAAK,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,EAAE,OAAO,GAAO,EAAM,aAAa,SAAU,EAAC,WAAW,CAAC,KAAK,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,gBAAe,EAAK,OAAO,GAAO,EAAM,aAAa,MAAO,CAAC,CAAC,EAAC,WAAW,CAAC,KAAK,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,KAAK,CAAC,KAAK,EAAY,QAAQ,MAAM,QAAS,EAAC,SAAS,CAAC,KAAK,EAAY,KAAK,MAAM,OAAO,QAAQ,CAAC,QAAQ,SAAS,KAAM,EAAC,aAAa,CAAC,OAAO,SAAS,OAAQ,EAAC,aAAa,SAAS,OAAO,IAAQ,EAAM,IAAK,EAAC,MAAM,CAAC,KAAK,EAAY,QAAQ,MAAM,QAAQ,cAAa,EAAM,OAAO,IAAQ,EAAM,IAAK,CAAC,CAAC,EAAC,WAAW,CAAC,KAAK,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,YAAY,CAAC,KAAK,EAAY,QAAQ,MAAM,SAAS,cAAa,CAAM,EAAC,UAAU,CAAC,KAAK,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO,IAAQ,EAAM,WAAY,EAAC,UAAU,CAAC,KAAK,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO,IAAQ,EAAM,WAAY,EAAC,UAAU,CAAC,KAAK,EAAY,OAAO,MAAM,UAAU,OAAO,IAAQ,EAAM,YAAY,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,CAAE,EAAC,eAAe,CAAC,KAAK,EAAY,WAAW,MAAM,aAAa,OAAO,IAAQ,EAAM,WAAY,CAAC,CAAC,EAAC,eAAe,CAAC,KAAK,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,cAAc,CAAC,KAAK,EAAY,QAAQ,MAAM,aAAa,cAAa,CAAM,EAAC,iBAAiB,CAAC,KAAK,EAAY,QAAQ,MAAM,OAAO,cAAa,EAAM,OAAO,GAAO,EAAM,aAAc,EAAC,QAAQ,CAAC,KAAK,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,gBAAe,EAAK,OAAO,IAAQ,EAAM,kBAAkB,EAAM,aAAc,EAAC,UAAU,CAAC,KAAK,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,gBAAe,EAAK,OAAO,IAAQ,EAAM,kBAAkB,EAAM,aAAc,EAAC,QAAQ,CAAC,KAAK,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,gBAAe,EAAK,OAAO,IAAQ,EAAM,kBAAkB,EAAM,aAAc,EAAC,YAAY,CAAC,KAAK,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,gBAAe,EAAK,OAAO,IAAQ,EAAM,kBAAkB,EAAM,aAAc,EAAC,SAAS,CAAC,KAAK,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,OAAO,IAAQ,EAAM,kBAAkB,EAAM,aAAc,EAAC,eAAe,CAAC,KAAK,EAAY,MAAM,MAAM,WAAW,aAAa,kBAAkB,OAAO,IAAQ,EAAM,kBAAkB,EAAM,aAAc,EAAC,WAAW,CAAC,KAAK,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO,IAAQ,EAAM,kBAAkB,EAAM,aAAc,EAAC,YAAY,CAAC,KAAK,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,GAAG,KAAK,GAAG,gBAAe,EAAK,OAAO,IAAQ,EAAM,kBAAkB,EAAM,aAAc,EAAC,kBAAkB,CAAC,KAAK,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,GAAG,gBAAe,EAAK,OAAO,IAAQ,EAAM,kBAAkB,EAAM,aAAc,EAAC,SAAS,CAAC,KAAK,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,KAAK,EAAE,OAAO,IAAQ,EAAM,kBAAkB,EAAM,aAAc,CAAC,CAAC,EAAC,YAAY,CAAC,KAAK,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,kBAAkB,CAAC,KAAK,EAAY,QAAQ,MAAM,OAAO,cAAa,CAAK,EAAC,UAAU,CAAC,KAAK,EAAY,MAAM,MAAM,OAAO,aAAa,kBAAkB,OAAO,IAAQ,EAAM,iBAAkB,EAAC,UAAU,CAAC,KAAK,EAAY,MAAM,MAAM,WAAW,OAAO,IAAQ,EAAM,iBAAkB,EAAC,WAAW,CAAC,KAAK,EAAY,MAAM,MAAM,OAAO,OAAO,IAAQ,EAAM,iBAAkB,EAAC,UAAU,CAAC,KAAK,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,gBAAe,EAAK,aAAa,GAAG,OAAO,IAAQ,EAAM,iBAAkB,EAAC,YAAY,CAAC,KAAK,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO,IAAQ,EAAM,iBAAkB,EAAC,aAAa,CAAC,KAAK,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,gBAAe,EAAK,OAAO,IAAQ,EAAM,iBAAkB,CAAC,CAAC,EAAC,UAAU,CAAC,KAAK,EAAY,OAAO,MAAM,aAAa,YAAY,WAAY,EAAC,aAAa,CAAC,KAAK,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,gBAAe,EAAK,aAAa,CAAE,CAAC,EAAC,CAgBtuQ,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAsB,EAAO,GAAY,CAAC,SAAS,GAAG,aAAa,EAAG,EAAO,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAS,EAAO,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAS,EAEze,GAAmB,CAAC,QAAQ,OAAO,SAAS,SAAS,MAAM,OAAO,OAAO,OAAO,SAAS,UAAW,EAAO,GAAkB,CAAC,QAAQ,EAAE,OAAO,EAAE,UAAU,OAAO,SAAS,WAAW,QAAQ,OAAO,KAAK,WAAW,MAAM,OAAO,OAAO,MAAO,EAAO,GAAiB,CAAC,OAAO,OAAO,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,WAAW,cAAc,OAAO,UAAU,OAAO,EAAE,QAAQ,CAAE,EAAO,GAAe,CAAC,QAAQ,OAAO,eAAe,gBAAgB,WAAW,SAAS,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,cAAc,OAAO,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAE,EAE3lB,GAAmB,CAAC,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,SAAS,WAAW,cAAc,MAAO,EAAO,GAAS,CAAC,aAAa,MAAM,WAAW,QAAQ,OAAO,UAAU,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,QAAQ,CAAE,2DCpFu/B,SAAS0H,GAAqB,EAAU,GAAG,EAAS,CAAC,IAAM,EAAc,CAAE,EAAsF,MAArF,IAAU,QAAQ,GAAS,GAAS,OAAO,OAAO,EAAc,EAAU,GAAS,CAAC,CAAQ,CAAe,qEAU77CD,AAVb,GAAyD,IAAwT,IAAkE,IAA4B,CAA0B,GAA0H,KAAmI,IAAyH,CAAMvH,GAAc,EAASmG,EAAS,CAAO,GAAgC,EAA6B,EAAO,IAAI,CAAC,OAAO,YAAY,SAAS,EAAiB,QAAQ,WAAY,EAAC,CAAOI,GAAgB,CAAC,UAAU,CAAC,OAAM,CAAK,CAAC,EAAOkB,GAAW,CAAC,YAAY,YAAY,WAAY,EAAOC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAkB,EAA8LC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAOC,GAAkB,UAAkB,GAAQ,UAAU,UAAqB,EAAM,KAAM,SAAiB,SAAqB,GAAQ,SAAS,CAAC,IAAI,CAAM,MAAA,GAAmBC,GAAW,CAAC,CAAC,QAAM,WAAS,GAAG,CAA8F,IAAvF,EAAO,EAAiB,EAAoB,CAAO,EAAW,GAAO,EAAO,WAAiB,EAAa,EAAc,KAAK,CAAC,GAAG,EAAO,YAAW,GAAE,CAAC,KAAK,UAAU,EAAW,AAAC,EAAC,CAAC,MAAoB,GAAK,EAAoB,SAAS,CAAC,MAAM,EAAsB,UAAS,EAAC,AAAE,EAAOC,GAAS,EAAO,OAAA,EAAsB,CAAOC,GAAwB,aAAa,wBAAwB,YAAY,OAAO,WAAY,EAAOC,GAAS,CAAC,CAAC,UAAQ,SAAO,KAAG,WAAS,OAAK,OAAK,QAAM,UAAQ,MAAI,QAAM,GAAG,EAAM,IAAU,CAAC,GAAG,EAAM,UAAU,GAAS,EAAM,WAAW,mLAAmL,UAAU,GAAK,EAAM,UAAU,UAAU,GAAS,EAAM,WAAW,CAAC,IAAI,yFAAyF,OAAO,sQAAuQ,EAAC,UAAU,GAAU,EAAM,WAAW,UAAU,UAAU,GAAO,EAAM,WAAW,SAAS,QAAQD,GAAwB,EAAM,UAAU,EAAM,SAAS,YAAY,UAAU,GAAM,EAAM,UAAU,UAAU,GAAM,EAAM,WAAW,CAAC,IAAI,sFAAsF,OAAO,6PAA8P,CAAC,GAASE,GAAuB,CAAC,EAAM,IAAe,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAAC,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAASC,GAAuB,EAAiB,SAAS,EAAM,EAAI,CAAu6B,IAAh6B,EAAY,EAAO,KAAK,CAAO,EAAW,GAAK,EAAkB,EAAgB,GAAa,CAAM,CAAC,eAAa,YAAU,CAAC,IAAe,CAAO,EAAkB,IAAsB,CAAM,CAAC,QAAM,UAAA,EAAU,WAAS,UAAQ,YAAU,aAAU,aAAU,YAAU,YAAU,YAAU,YAAU,GAAG,EAAU,CAAC,GAAS,EAAM,CAAM,CAAC,cAAY,aAAW,uBAAoB,kBAAgB,iBAAe,YAAU,kBAAgB,aAAW,WAAS,CAAC,GAAgB,CAAC,WAAA,GAAW,eAAe,YAAY,gBAAA,GAAgB,IAAI,EAAW,UAAQ,kBAAA,EAAkB,EAAC,CAAO,EAAiB,GAAuB,EAAM,EAAS,CAAM,CAAC,wBAAsB,QAAM,CAAC,EAAyB,EAAY,CAAO,GAAY,EAAsB,MAAM,GAAG,IAAO,CAAoC,GAAnC,EAAgB,CAAC,WAAU,CAAM,EAAC,CAAI,EAAU,CAAC,IAAM,EAAI,KAAM,GAAU,GAAG,EAAK,CAAC,GAAG,KAAM,EAAM,OAAO,CAAO,CAAC,EAAC,CAAO,GAAsB,CAAA,EAAuB,EAAO,EAAkB,EAAGT,GAAkB,GAAG,GAAsB,CAAC,MAAoB,GAAK,GAAY,CAAC,GAAG,GAAU,EAAgB,SAAsB,EAAKK,GAAS,CAAC,QAAQ,EAAS,SAAQ,EAAM,SAAsB,EAAKD,GAAW,CAAC,MAAMF,GAAY,SAAsB,EAAK,EAAK,CAAC,KAAK,EAAU,aAAY,EAAK,OAAO,YAAY,cAAa,EAAM,QAAQ,YAAY,SAAsB,EAAK,EAAO,EAAE,CAAC,GAAG,EAAU,GAAG,EAAgB,WAAW,EAAE,EAAG,EAAkB,gBAAgBiB,EAAU,EAAW,CAAC,oCAAoC,8BAA6B,EAAsB,mBAAiB,SAAS,YAAY,MAAM,GAAY,IAAI,EAAW,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,OAAO,GAAG,CAAM,EAAC,SAAS,mBAAmB,CAAC,UAAU,sMAAuM,CAAC,EAAC,GAAG,GAAqB,mBAAmB,wBAAA,EAA8B,EAAC,UAAU,oBAAoB,WAAY,EAAC,UAAU,oBAAoB,QAAS,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,2BAA2B,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAG,EAAC,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAsB,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAKD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,GAAG,GAAkB,EAAU,AAAC,EAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAG,EAAC,GAAG,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,GAAG,GAAkB,EAAU,AAAC,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,GAAG,GAAkB,EAAU,AAAC,CAAC,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAKE,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,GAAG,CAAC,MAAM,mBAAmB,sDAAsD,8EAA8E,8BAA8B,6BAA6B,kCAAkC,6BAA6B,6FAA8F,EAAC,SAAS,QAAS,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,qBAAsB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,sBAAsB,gGAAgG,mDAAmD,WAAY,EAAC,KAAK,GAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAKA,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,GAAG,CAAC,MAAM,mBAAmB,sDAAsD,gFAAgF,6BAA6B,kCAAkC,+BAA+B,gGAAiG,EAAC,SAAS,SAAU,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,qBAAsB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,sBAAsB,mGAAmG,mDAAmD,WAAY,EAAC,KAAK,GAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAKF,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,CAAC,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,GAAG,GAAkB,EAAU,CAAC,GAAG,CAAC,UAAU,SAAS,UAAU,QAAS,CAAC,EAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,GAAG,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,CAAC,YAAY,IAAI,WAAW,IAAI,MAAM,OAAO,GAAG,GAAkB,EAAU,CAAC,GAAG,CAAC,UAAU,SAAS,UAAU,QAAS,CAAC,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,CAAC,YAAY,IAAI,WAAW,IAAI,MAAM,OAAO,GAAG,GAAkB,EAAU,CAAC,GAAG,CAAC,UAAU,SAAS,UAAU,QAAS,CAAC,CAAC,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,mCAAmC,UAA2B,mBAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,6GAA6G,QAAQ,EAAG,CAAC,EAAC,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAsB,EAAKE,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,GAAG,CAAC,MAAM,mBAAmB,0DAA0D,gFAAgF,iCAAiC,6BAA6B,6FAA8F,EAAC,SAAS,kLAAmL,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,yBAA0B,EAAkB,mBAAiB,SAAS,YAAY,MAAM,sBAAsB,gGAAgG,mDAAmD,yCAAyC,KAAM,EAAC,KAAK,EAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,EAAC,CAAc,EAAM,GAAgC,CAAC,UAAU,mCAAmC,gBAAiC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,SAAS,CAAc,EAAKA,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,mDAAmD,YAAY,MAAM,uBAAuB,+FAAgG,EAAC,SAAS,SAAU,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,OAAQ,EAAkB,mBAAiB,SAAS,YAAY,MAAM,sBAAsB,kGAAkG,mDAAmD,WAAY,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,0BAA0B,kBAAiB,EAAK,kBAAiB,EAAsB,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK3C,EAAS,CAAC,MAAM,uEAAuE,OAAO,OAAO,WAAW,OAAO,cAAc,eAAe,YAAY,UAAU,WAAW,SAAS,WAAW,SAAS,GAAG,YAAY,SAAS,YAAY,UAAS,EAAM,cAAa,EAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAE,EAAC,CAAO4C,GAAI,CAAC,kFAAkF,kFAAkF,ySAAyS,sRAAsR,6RAA6R,iRAAiR,4JAA4J,oRAAoR,qIAAqI,yLAAyL,8HAA8H,gHAAgH,wRAAwR,oKAAoK,iRAAiR,oIAAoI,wGAAwG,kmDAAkmD,6GAA6G,+HAA+H,6GAA6G,kHAAkH,qHAAqH,iHAAiH,gHAAgH,6GAA6G,+HAA+H,kwBAAkwB,8DAA8D,uHAAuH,kwBAAkwB,oEAAoE,ucAAuc,GAAA,EAAmB,EASxnqB,GAAgB,EAAQZ,GAAUY,GAAI,eAAe,IAAgB,GAAgB,GAAgB,YAAY,sBAAsB,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAI,EAAC,EAAoB,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAY,EAAC,aAAa,CAAC,YAAY,SAAS,WAAY,EAAC,MAAM,UAAU,KAAK,EAAY,IAAK,EAAC,UAAU,CAAC,wBAAwB,wIAAwI,MAAM,UAAU,KAAK,EAAY,eAAgB,EAAC,UAAU,CAAC,aAAa,SAAS,iBAAgB,EAAM,MAAM,OAAO,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,aAAa,UAAU,iBAAgB,EAAM,MAAM,YAAY,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,wBAAwB,qIAAqI,MAAM,OAAO,KAAK,EAAY,eAAgB,EAAC,UAAU,CAAC,aAAa,mLAAmL,iBAAgB,EAAK,MAAM,UAAU,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,MAAM,OAAO,KAAK,EAAY,IAAK,EAAC,UAAU,CAAC,MAAM,MAAM,KAAK,EAAY,YAAa,CAAC,EAAC,CAAC,EAAS,GAAgB,CAAC,CAAC,eAAc,EAAK,MAAM,CAAC,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAM,EAAC,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAM,EAAC,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAM,CAAC,CAAC,EAAC,GAAG/I,GAAc,GAAG,EAAA,GAA0C,AAAC,EAAC,CAAC,8BAA6B,CAAK,EAAC,CACthHuH,GAAqB,CAAA,QAAW,OAAS,MAAQ,qBAAuB,CAAA,sBAAyB,GAAI,CAAC,UAAW,MAAQ,sBAAwB,wBAA0B,CAAE,cAAe,8BAAgC,6BAA+B,0BAA4B,+BAAiC,4CAA8C,wNAAgQ,4KAA0M,4BAA8B,KAAM,CAAC,qBAAsB,CAAA,KAAQ,UAAW,CAAC,CAAC,uBCX+rEsB,AAA5kG,GAA8B,GAAU,UAAU,CAAC,sBAAsB,qBAAsB,EAAC,CAAcN,GAAM,CAAC,CAAC,eAAc,EAAK,MAAM,CAAC,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAO,CAAA,CAAE,CAAA,EAAcQ,GAAI,CAAC,mpBAAmpB,ysBAAysB,wsBAAwsB,qsBAAssB,EAAcF,GAAU,oCCA+XA,AAAr9G,GAA8B,GAAU,UAAU,CAAC,sBAAsB,qBAAsB,EAAC,CAAcN,GAAM,CAAC,CAAC,eAAc,EAAK,MAAM,CAAC,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAM,EAAC,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAO,CAAA,CAAE,CAAA,EAAcQ,GAAI,CAAC,0sBAA0sB,gwBAAgwB,8vBAA8vB,2vBAA4vB,EAAcF,GAAU,iBCC3mE,SAASrB,GAAqB,EAAU,GAAG,EAAS,CAAC,IAAM,EAAc,CAAE,EAAsF,MAArF,IAAU,QAAQ,GAAS,GAAS,OAAO,OAAO,EAAc,EAAU,GAAS,CAAC,CAAQ,CAAe,kEAU1xB,AAVjxB,GAAyD,IAA+Q,IAAkE,IAA4B,CAA0B,IAAmI,KAA0H,KAAyH,KAA8I,CAAMpB,GAAmB,EAASsC,EAAc,CAAO,GAA8D,EAAqB,EAA6BA,EAAc,CAAC,OAAO,YAAY,SAAS,EAAiB,QAAQ,WAAY,EAAC,CAACC,EAAkB,CAAOlB,GAAW,CAAC,YAAY,WAAY,EAAOC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,iBAAkB,EAA8LC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAO1D,GAAmB,CAAC,EAAE,KAAK,mBAAmB,EAAE,EAAQC,GAAmB,CAAC,EAAE,KAAK,wBAAwB,EAAE,EAAQ2D,GAAW,CAAC,CAAC,QAAM,WAAS,GAAG,CAA8F,IAAvF,EAAO,EAAiB,EAAoB,CAAO,EAAW,GAAO,EAAO,WAAiB,EAAa,EAAc,KAAK,CAAC,GAAG,EAAO,YAAW,GAAE,CAAC,KAAK,UAAU,EAAW,AAAC,EAAC,CAAC,MAAoB,GAAK,EAAoB,SAAS,CAAC,MAAM,EAAsB,UAAS,EAAC,AAAE,EAAOC,GAAS,EAAO,OAAA,EAAsB,CAAOC,GAAwB,mBAAmB,wBAAwB,WAAY,EAAOC,GAAS,CAAC,CAAC,UAAQ,SAAO,KAAG,OAAK,cAAY,OAAK,QAAM,QAAM,GAAG,EAAM,IAAU,CAAC,GAAG,EAAM,UAAU,GAAM,EAAM,UAAU,UAAU,GAAO,EAAM,WAAW,UAAU,UAAU,GAAS,EAAM,WAAW,4CAA4C,UAAU,GAAM,EAAM,WAAW,KAAK,UAAU,GAAa,EAAM,YAAW,EAAK,QAAQD,GAAwB,EAAM,UAAU,EAAM,SAAS,WAAY,GAASE,GAAuB,CAAC,EAAM,IAAe,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAAC,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAASC,GAAuB,EAAiB,SAAS,EAAM,EAAI,CAAoqB,IAA7pB,EAAY,EAAO,KAAK,CAAO,EAAW,GAAK,EAAkB,EAAgB,GAAa,CAAM,CAAC,eAAa,YAAU,CAAC,IAAe,CAAO,EAAkB,IAAsB,CAAM,CAAC,QAAM,UAAA,EAAU,WAAS,UAAQ,YAAU,aAAU,aAAU,YAAU,YAAU,GAAG,EAAU,CAAC,GAAS,EAAM,CAAM,CAAC,cAAY,aAAW,sBAAoB,kBAAgB,iBAAe,YAAU,mBAAgB,aAAW,WAAS,CAAC,GAAgB,CAAC,WAAA,GAAW,eAAe,YAAY,IAAI,EAAW,UAAQ,kBAAA,EAAkB,EAAC,CAAO,EAAiB,GAAuB,EAAM,EAAS,CAAO,EAAsB,CAAA,GAAA,EAA8C,EAAO,EAAkB,EAAGT,GAAkB,GAAG,EAAsB,CAAC,MAAoB,GAAK,GAAY,CAAC,GAAG,GAAU,EAAgB,SAAsB,EAAKK,GAAS,CAAC,QAAQ,EAAS,SAAQ,EAAM,SAAsB,EAAKD,GAAW,CAAC,MAAMF,GAAY,SAAsB,EAAM,EAAO,IAAI,CAAC,GAAG,EAAU,GAAG,EAAgB,UAAU,EAAG,EAAkB,gBAAgBiB,EAAU,EAAW,oBAAoB,YAA6B,mBAAiB,SAAS,YAAY,IAAI,EAAW,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,+LAA+L,GAAG,CAAM,EAAC,SAAS,CAAC,UAAU,CAAC,UAAU,8LAA+L,CAAC,EAAC,GAAG,GAAqB,CAAC,UAAU,oBAAoB,iBAAkB,CAAC,EAAC,EAAY,EAAe,CAAC,SAAS,CAAC,GAAwB,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAsB,EAAK,EAA0B,CAAC,OAAO,GAAG,GAAG,GAAmB,GAAG,IAAI,GAAmB,QAAQ,KAAK,GAAG,EAAE,EAAE,SAAsB,EAAK,EAA8B,CAAC,UAAU,0BAA2C,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAA8D,CAAC,UAAU,WAAW,OAAO,OAAO,GAAG,YAAY,UAAU,EAAU,SAAS,YAAY,UAAU,aAAa,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAKC,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,mDAAmD,YAAY,SAAS,2CAA4C,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,OAAQ,EAAkB,mBAAiB,SAAS,YAAY,MAAM,4BAA4B,mDAAmD,WAAY,EAAC,KAAK,GAAU,kBAAkB5E,GAAmB,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK4E,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,GAAG,CAAC,UAAU,mDAAmD,YAAY,SAAS,SAAU,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,OAAQ,EAAkB,mBAAiB,SAAS,YAAY,MAAM,4BAA4B,mDAAmD,WAAY,EAAC,KAAK,GAAU,kBAAkB5E,GAAmB,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,wLAAwL,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAI,EAAC,kBAAkBA,EAAmB,EAAC,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAI,EAAC,kBAAkBC,GAAmB,SAAsB,EAAK2E,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,8EAA8E,8BAA8B,4BAA4B,gGAAiG,EAAC,SAAsB,EAAK,EAAO,KAAK,kBAAkB,OAAO,MAAM,CAAC,gBAAgB,sGAAuG,EAAC,SAAS,IAAK,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,qBAAsB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,sBAAsB,mGAAmG,mDAAmD,WAAY,EAAC,KAAK,EAAU,kBAAkB3E,GAAmB,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAE,EAAC,CAAO4E,GAAI,CAAC,kFAAkF,kFAAkF,sGAAsG,sTAAsT,wGAAwG,4MAA4M,yJAAyJ,yKAAyK,2PAA2P,4PAA4P,qIAAqI,iXAAiX,GAAA,GAAmB,GAAA,EAAoB,EAUlgV,GAAgB,EAAQZ,GAAUY,GAAI,eAAe,IAAgB,GAAgB,GAAgB,YAAY,OAAO,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAI,EAAC,EAAoB,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAY,EAAC,aAAa,CAAC,YAAY,iBAAkB,EAAC,MAAM,UAAU,KAAK,EAAY,IAAK,EAAC,UAAU,CAAC,aAAa,KAAK,iBAAgB,EAAM,MAAM,OAAO,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,aAAa,UAAU,iBAAgB,EAAM,MAAM,QAAQ,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,aAAa,4CAA4C,iBAAgB,EAAM,MAAM,UAAU,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,cAAa,EAAK,MAAM,eAAe,KAAK,EAAY,OAAQ,EAAC,UAAU,CAAC,MAAM,OAAO,KAAK,EAAY,IAAK,CAAC,EAAC,CAAC,EAAS,GAAgB,CAAC,CAAC,eAAc,EAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAM,CAAC,CAAC,EAAC,GAAG3C,GAAmB,GAAG,EAAA,GAA0C,CAAC,GAAG,EAAA,GAA2C,AAAC,EAAC,CAAC,8BAA6B,CAAK,EAAC,iDCD5wE,AATna,GAA2C,IAA2J,IAAkE,IAA4B,CAAgCsB,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAkB,EAA8LC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAOC,GAAkB,UAAkB,GAAQ,UAAU,UAAqB,EAAM,KAAM,SAAiB,SAAqB,GAAQ,SAAS,CAAC,IAAI,CAAM,MAAA,GAAmBC,GAAW,CAAC,CAAC,QAAM,WAAS,GAAG,CAA8F,IAAvF,EAAO,EAAiB,EAAoB,CAAO,EAAW,GAAO,EAAO,WAAiB,EAAa,EAAc,KAAK,CAAC,GAAG,EAAO,YAAW,GAAE,CAAC,KAAK,UAAU,EAAW,AAAC,EAAC,CAAC,MAAoB,GAAK,EAAoB,SAAS,CAAC,MAAM,EAAsB,UAAS,EAAC,AAAE,EAAOC,GAAS,EAAO,OAAA,EAAsB,CAAOE,GAAS,CAAC,CAAC,SAAO,KAAG,QAAM,QAAM,GAAG,EAAM,IAAU,CAAC,GAAG,EAAM,UAAU,GAAO,EAAM,WAAW,CAAC,IAAI,sEAAuE,CAAC,GAASC,GAAuB,CAAC,EAAM,IAAe,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAAC,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAASC,GAAuB,EAAiB,SAAS,EAAM,EAAI,CAAqkB,IAA9jB,EAAY,EAAO,KAAK,CAAO,EAAW,GAAK,EAAkB,EAAgB,GAAa,CAAM,CAAC,eAAa,YAAU,CAAC,IAAe,CAAO,EAAkB,IAAsB,CAAM,CAAC,QAAM,UAAA,EAAU,WAAS,UAAQ,YAAU,GAAG,EAAU,CAAC,GAAS,EAAM,CAAM,CAAC,eAAY,aAAW,uBAAoB,kBAAgB,iBAAe,YAAU,kBAAgB,aAAW,WAAS,CAAC,GAAgB,CAAC,eAAe,YAAY,IAAI,EAAW,UAAQ,kBAAA,EAAkB,EAAC,CAAO,EAAiB,GAAuB,EAAM,EAAS,CAAO,EAAsB,CAAE,EAAO,EAAkB,EAAGT,GAAkB,GAAG,EAAsB,CAAC,MAAoB,GAAK,GAAY,CAAC,GAAG,GAAU,EAAgB,SAAsB,EAAKK,GAAS,CAAC,QAAQ,EAAS,SAAQ,EAAM,SAAsB,EAAKD,GAAW,CAAC,MAAMF,GAAY,SAAsB,EAAK,EAAO,IAAI,CAAC,GAAG,EAAU,GAAG,EAAgB,UAAU,EAAG,EAAkB,gBAAgBiB,EAAU,EAAW,oBAAoB,YAA6B,mBAAiB,SAAS,YAAY,IAAI,EAAW,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAG,CAAM,EAAC,SAAsB,EAAKD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,GAAG,eAAe,GAAG,QAAQ,GAA2B,GAAmB,GAAG,KAAK,GAAmB,QAAQ,IAAI,oBAAoB,GAAmB,QAAQ,IAAI,GAAG,GAAG,GAAG,CAAC,YAAY,GAAG,WAAW,GAAG,MAAM,QAAQ,GAAG,GAAkB,EAAU,CAAC,GAAG,CAAC,UAAU,SAAS,UAAU,QAAS,CAAC,EAAC,UAAU,oCAAoC,MAAuB,mBAAiB,SAAS,WAAY,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAE,EAAC,CAAOG,GAAI,CAAC,kFAAkF,gFAAgF,gKAAgK,sMAAuM,EASjxH,GAAgB,EAAQZ,GAAUY,GAAI,eAAe,IAAgB,GAAgB,GAAgB,YAAY,kBAAkB,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAI,EAAC,EAAoB,GAAgB,CAAC,UAAU,CAAC,wBAAwB,0GAA0G,MAAM,QAAQ,KAAK,EAAY,eAAgB,CAAC,EAAC,CAAC,EAAS,GAAgB,CAAC,CAAC,eAAc,EAAK,MAAM,CAAE,CAAE,CAAA,EAAC,CAAC,8BAA6B,CAAK,EAAC,GCT6gN,SAASvB,EAAqB,EAAU,GAAG,EAAS,CAAC,IAAM,EAAc,CAAE,EAAsF,MAArF,IAAU,QAAQ,GAAS,GAAS,OAAO,OAAO,EAAc,EAAU,GAAS,CAAC,CAAQ,CAAe,kJAShkM,AATpoC,GAAyD,IAAwU,IAAkE,IAA4B,CAA0B,IAAkH,KAAkK,KAAyH,KAA0H,KAA8I,KAA4J,CAAM,GAA4B,EAA6B,EAAO,IAAI,CAAC,OAAO,YAAY,SAAS,EAAa,QAAQ,WAAY,EAAC,CAAO,GAA6B,EAA6B,EAAO,IAAI,CAAC,OAAO,YAAY,SAAS,EAAa,QAAQ,WAAY,EAAC,CAAO,GAA0B,EAAS/D,EAAqB,CAAO,GAA6B,EAA6B,EAAO,IAAI,CAAC,OAAO,YAAY,SAAS,EAAa,QAAQ,WAAY,EAAC,CAAO,GAA6B,EAA6B,EAAO,IAAI,CAAC,OAAO,YAAY,SAAS,EAAa,QAAQ,WAAY,EAAC,CAAO,GAA4B,EAA6B,EAAO,IAAI,CAAC,OAAO,YAAY,SAAS,EAAa,QAAQ,WAAY,EAAC,CAAO,GAA6B,EAA6B,EAAO,IAAI,CAAC,OAAO,YAAY,SAAS,EAAa,QAAQ,WAAY,EAAC,CAAO,GAA4B,EAA6B,EAAO,IAAI,CAAC,OAAO,YAAY,SAAS,EAAa,QAAQ,WAAY,EAAC,CAAO,GAA6B,EAA6B,EAAO,IAAI,CAAC,OAAO,YAAY,SAAS,EAAa,QAAQ,WAAY,EAAC,CAAO,GAA4B,EAA6B,EAAO,IAAI,CAAC,OAAO,YAAY,SAAS,EAAa,QAAQ,WAAY,EAAC,CAAO,GAA6B,EAA6B,EAAO,IAAI,CAAC,OAAO,YAAY,SAAS,EAAa,QAAQ,WAAY,EAAC,CAAO,GAAkE,EAAqB,EAA6BA,EAAqB,CAAC,iBAAgB,EAAK,OAAO,YAAY,SAAS,EAAa,QAAQ,WAAY,EAAC,CAACC,GAAyB,CAAO,GAAmE,EAAqB,EAA6BD,EAAqB,CAAC,iBAAgB,EAAK,OAAO,YAAY,SAAS,EAAa,QAAQ,WAAY,EAAC,CAACC,GAAyB,CAAO,GAAmE,EAAqB,EAA6BD,EAAqB,CAAC,iBAAgB,EAAK,OAAO,YAAY,SAAS,EAAa,QAAQ,WAAY,EAAC,CAACC,GAAyB,CAAO,GAAkE,EAAqB,EAA6BD,EAAqB,CAAC,iBAAgB,EAAK,OAAO,YAAY,SAAS,EAAa,QAAQ,WAAY,EAAC,CAACC,GAAyB,CAAO,GAAmE,EAAqB,EAA6BD,EAAqB,CAAC,iBAAgB,EAAK,OAAO,YAAY,SAAS,EAAa,QAAQ,WAAY,EAAC,CAACC,GAAyB,CAAO,GAAkE,EAAqB,EAA6BD,EAAqB,CAAC,iBAAgB,EAAK,OAAO,YAAY,SAAS,EAAa,QAAQ,WAAY,EAAC,CAACC,GAAyB,CAAO,GAAmE,EAAqB,EAA6BD,EAAqB,CAAC,iBAAgB,EAAK,OAAO,YAAY,SAAS,EAAa,QAAQ,WAAY,EAAC,CAACC,GAAyB,CAAO,GAAkE,EAAqB,EAA6BD,EAAqB,CAAC,iBAAgB,EAAK,OAAO,YAAY,SAAS,EAAa,QAAQ,WAAY,EAAC,CAACC,GAAyB,CAAO,GAAmE,EAAqB,EAA6BD,EAAqB,CAAC,iBAAgB,EAAK,OAAO,YAAY,SAAS,EAAa,QAAQ,WAAY,EAAC,CAACC,GAAyB,CAAO,GAAc,EAAS,EAAS,CAAO,GAAmE,EAAqB,EAA6BD,EAAqB,CAAC,iBAAgB,EAAK,OAAO,YAAY,SAAS,EAAa,QAAQ,WAAY,EAAC,CAACC,GAAyB,CAAO0C,GAAmB,EAASsC,EAAc,CAAO,GAA+D,EAAqB,EAA6BA,EAAc,CAAC,OAAO,YAAY,SAAS,EAAiB,QAAQ,WAAY,EAAC,CAACC,EAAkB,CAAO,GAAgE,EAAqB,EAA6BD,EAAc,CAAC,OAAO,YAAY,SAAS,GAAkB,QAAQ,WAAY,EAAC,CAACC,EAAkB,CAAO,GAA8D,EAAqB,EAA6BD,EAAc,CAAC,OAAO,YAAY,SAAS,EAAiB,QAAQ,WAAY,EAAC,CAACC,EAAkB,CAAO,GAAgE,EAAqB,EAA6BD,EAAc,CAAC,OAAO,YAAY,SAAS,GAAkB,QAAQ,WAAY,EAAC,CAACC,EAAkB,CAAOlB,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAY,EAAOC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAmB,EAA8LC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAO1D,GAAmB,CAAC,EAAE,KAAK,wBAAwB,EAAE,EAAQ,EAAY,CAAC,EAAM,IAAM,CAAC,MAAI,UAAc,GAAQ,UAAkB,MAAM,CAAC,GAAG,EAAM,KAAI,CAAE,EAAOC,GAAmB,CAAC,EAAE,KAAK,mBAAmB,EAAE,EAAQ0D,GAAkB,UAAkB,GAAQ,UAAU,UAAqB,EAAM,KAAM,SAAiB,SAAqB,GAAQ,SAAS,CAAC,IAAI,CAAM,MAAA,GAAmBC,GAAW,CAAC,CAAC,QAAM,WAAS,GAAG,CAA8F,IAAvF,EAAO,EAAiB,EAAoB,CAAO,EAAW,GAAO,EAAO,WAAiB,EAAa,EAAc,KAAK,CAAC,GAAG,EAAO,YAAW,GAAE,CAAC,KAAK,UAAU,EAAW,AAAC,EAAC,CAAC,MAAoB,GAAK,EAAoB,SAAS,CAAC,MAAM,EAAsB,UAAS,EAAC,AAAE,EAAOC,GAAS,EAAO,OAAA,EAAsB,CAAOC,GAAwB,qBAAqB,4BAA4B,gCAAgC,4BAA4B,6BAA6B,+BAA+B,iCAAiC,+BAA+B,2BAA2B,4BAA4B,YAAY,SAAS,YAAY,KAAK,YAAY,SAAS,YAAY,KAAK,YAAY,MAAM,YAAY,QAAQ,YAAY,UAAU,YAAY,QAAQ,YAAY,IAAI,YAAY,KAAK,WAAY,EAAOC,GAAS,CAAC,CAAC,SAAO,KAAG,QAAM,QAAM,QAAM,GAAG,EAAM,IAAU,CAAC,GAAG,EAAM,UAAU,GAAO,EAAM,WAAW,CAAC,IAAI,qEAAqE,OAAO,gQAAiQ,EAAC,UAAU,GAAO,EAAM,WAAW,6DAA6D,QAAQD,GAAwB,EAAM,UAAU,EAAM,SAAS,WAAY,GAASE,GAAuB,CAAC,EAAM,IAAe,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAAC,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAASC,GAAuB,EAAiB,SAAS,EAAM,EAAI,CAA4yK,IAAryK,EAAY,EAAO,KAAK,CAAO,EAAW,GAAK,EAAkB,EAAgB,GAAa,CAAM,CAAC,eAAa,YAAU,CAAC,IAAe,CAAO,EAAkB,IAAsB,CAAM,CAAC,QAAM,UAAA,EAAU,WAAS,UAAQ,YAAU,aAAU,GAAG,GAAU,CAAC,GAAS,EAAM,CAAM,CAAC,cAAY,aAAW,sBAAoB,kBAAgB,iBAAe,YAAU,kBAAgB,aAAW,YAAS,CAAC,GAAgB,CAAC,WAAA,GAAW,eAAe,YAAY,IAAI,EAAW,UAAQ,kBAAA,EAAkB,EAAC,CAAO,EAAiB,GAAuB,EAAM,GAAS,CAAM,CAAC,wBAAsB,QAAM,CAAC,EAAyB,EAAY,CAAO,EAAoB,EAAsB,MAAM,GAAG,IAAO,CAAC,EAAW,YAAY,AAAE,EAAC,CAAO,EAAoB,EAAsB,MAAM,GAAG,IAAO,CAAC,EAAW,YAAY,AAAE,EAAC,CAAO,EAAmB,EAAsB,MAAM,GAAG,IAAO,CAAC,EAAW,YAAY,AAAE,EAAC,CAAO,EAAoB,EAAsB,MAAM,GAAG,IAAO,CAAC,EAAW,YAAY,AAAE,EAAC,CAAO,EAAoB,EAAsB,MAAM,GAAG,IAAO,CAAC,EAAW,YAAY,AAAE,EAAC,CAAO,EAAoB,EAAsB,MAAM,GAAG,IAAO,CAAC,EAAW,YAAY,AAAE,EAAC,CAAO,GAAmB,EAAsB,MAAM,GAAG,IAAO,CAAC,EAAW,YAAY,AAAE,EAAC,CAAO,GAAmB,EAAsB,MAAM,GAAG,IAAO,CAAC,EAAW,YAAY,AAAE,EAAC,CAAO,EAAmB,EAAsB,MAAM,GAAG,IAAO,CAAC,EAAW,YAAY,AAAE,EAAC,CAAO,GAAmB,EAAsB,MAAM,GAAG,IAAO,CAAC,EAAW,YAAY,AAAE,EAAC,CAAO,EAAgB,EAAsB,MAAM,GAAG,IAAO,CAAC,EAAW,YAAY,AAAE,EAAC,CAAO,EAAiB,EAAsB,MAAM,GAAG,IAAO,CAAC,EAAW,YAAY,AAAE,EAAC,CAAO,EAAgB,EAAsB,MAAM,GAAG,IAAO,CAAC,EAAW,YAAY,AAAE,EAAC,CAAO,EAAiB,EAAsB,MAAM,GAAG,IAAO,CAAC,EAAW,YAAY,AAAE,EAAC,CAAO,EAAgB,EAAsB,MAAM,GAAG,IAAO,CAAC,EAAW,YAAY,AAAE,EAAC,CAAO,GAAiB,EAAsB,MAAM,GAAG,IAAO,CAAC,EAAW,YAAY,AAAE,EAAC,CAAO,GAAgB,EAAsB,MAAM,GAAG,IAAO,CAAC,EAAW,YAAY,AAAE,EAAC,CAAO,GAAgB,EAAsB,MAAM,GAAG,IAAO,CAAC,EAAW,YAAY,AAAE,EAAC,CAAO,GAAiB,EAAsB,MAAM,GAAG,IAAO,CAAC,EAAW,YAAY,AAAE,EAAC,CAAO,EAAiB,EAAsB,MAAM,GAAG,IAAO,CAAC,EAAW,YAAY,AAAE,EAAC,CAAO,GAAsB,CAAA,GAAA,EAA8C,EAAO,GAAkB,EAAGT,GAAkB,GAAG,GAAsB,CAAO,GAAY,KAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAY,EAAC,SAAS,EAAY,CAAkC,GAAa,IAAQ,IAAc,YAA6C,GAAa,IAAQ,IAAc,YAA6C,GAAa,IAAQ,IAAc,YAA6C,GAAa,IAAQ,IAAc,YAA6C,GAAa,IAAQ,IAAc,YAA6C,GAAa,MAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAY,EAAC,SAAS,EAAY,CAAkC,GAAa,KAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAY,EAAC,SAAS,EAAY,CAAkC,GAAa,IAAQ,IAAc,YAA6C,GAAa,IAAQ,IAAc,YAA6C,GAAc,IAAQ,IAAc,YAA6C,GAAc,IAAQ,IAAc,YAA6C,GAAc,IAAQ,IAAc,YAA6C,GAAc,IAAQ,IAAc,YAA6C,GAAc,IAAQ,IAAc,YAA6C,GAAc,IAAQ,IAAc,YAA6C,GAAc,IAAQ,IAAc,YAA6C,GAAc,IAAQ,IAAc,YAA6C,GAAc,IAAQ,IAAc,YAA6C,GAAc,IAAQ,IAAc,YAA6C,GAAc,IAAQ,IAAc,YAA6C,GAAc,IAAQ,IAAc,YAA6C,GAAc,IAAQ,IAAc,YAA6C,GAAc,IAAQ,IAAc,YAA6C,GAAc,IAAQ,IAAc,YAA6C,GAAc,IAAQ,IAAc,YAA6C,GAAc,IAAQ,IAAc,YAA6C,GAAc,IAAQ,IAAc,YAA6C,GAAc,IAAQ,IAAc,YAA6C,GAAc,IAAQ,IAAc,YAA6C,GAAc,IAAQ,IAAc,YAA6C,GAAc,MAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAY,EAAC,SAAS,EAAY,CAA4B,MAAoB,GAAK,GAAY,CAAC,GAAG,GAAU,EAAgB,SAAsB,EAAKK,GAAS,CAAC,QAAQ,GAAS,SAAQ,EAAM,SAAsB,EAAKD,GAAW,CAAC,MAAMF,GAAY,SAAsB,EAAM,EAAO,IAAI,CAAC,GAAG,GAAU,GAAG,EAAgB,UAAU,EAAG,GAAkB,iBAAiBiB,EAAU,EAAW,oBAAoB,WAA4B,mBAAiB,SAAS,YAAY,IAAI,EAAW,MAAM,CAAC,gBAAgB,qBAAqB,GAAG,CAAM,EAAC,GAAG,EAAqB,CAAC,UAAU,oBAAoB,KAAM,EAAC,UAAU,oBAAoB,kBAAmB,EAAC,UAAU,oBAAoB,cAAe,EAAC,UAAU,oBAAoB,MAAO,EAAC,UAAU,oBAAoB,SAAU,EAAC,UAAU,oBAAoB,WAAY,EAAC,UAAU,oBAAoB,eAAgB,EAAC,UAAU,oBAAoB,mBAAoB,EAAC,UAAU,oBAAoB,UAAW,EAAC,UAAU,oBAAoB,OAAQ,EAAC,UAAU,oBAAoB,eAAgB,EAAC,UAAU,oBAAoB,MAAO,EAAC,UAAU,oBAAoB,kBAAmB,EAAC,UAAU,oBAAoB,SAAU,EAAC,UAAU,oBAAoB,MAAO,EAAC,UAAU,oBAAoB,gBAAiB,EAAC,UAAU,oBAAoB,oBAAqB,EAAC,UAAU,oBAAoB,mBAAoB,EAAC,UAAU,oBAAoB,eAAgB,CAAC,EAAC,EAAY,EAAe,CAAC,SAAS,CAAC,IAAa,EAAe,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAqB,EAAC,SAAS,CAAC,IAAc,EAAe,EAAM,GAA4B,CAAC,UAAU,mCAAmC,8BAA6B,EAAsB,mBAAiB,SAAS,YAAY,aAAa,EAAoB,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAG,EAAC,SAAsB,EAAKD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,GAAG,eAAe,GAAG,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAuE,EAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,kBAAkB1E,EAAmB,EAAC,AAAC,EAAC,CAAc,EAAK4E,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAM,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,gFAAgF,gCAAgC,+BAA+B,gGAAiG,EAAC,SAAS,CAAC,QAAqB,EAAK,EAAO,GAAG,CAAE,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,qBAAsB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,sBAAsB,mGAAmG,mDAAmD,WAAY,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAC,IAAc,EAAe,EAAM,GAA6B,CAAC,UAAU,oCAAoC,yBAAwB,EAAsB,mBAAiB,SAAS,YAAY,aAAa,EAAoB,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAG,EAAC,SAAsB,EAAKF,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAsE,EAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,kBAAkB1E,EAAmB,EAAC,AAAC,EAAC,CAAc,EAAK4E,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,gFAAgF,gCAAgC,+BAA+B,gGAAiG,EAAC,SAAS,MAAO,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,qBAAsB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,sBAAsB,mGAAmG,mDAAmD,WAAY,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAC,IAAc,EAAe,EAAK,EAA0B,CAAC,GAAG,EAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,OAAO,GAAG,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,CAAE,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,uBAAwC,mBAAiB,SAAS,sBAAsB,KAAK,uBAAuB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKrF,EAAqB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,EAAY,CAAC,IAAI,sEAAuE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,uBAAuB,UAAU;EAAU,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,IAAc,EAAe,EAAM,GAA6B,CAAC,UAAU,oCAAoC,4BAA2B,EAAsB,mBAAiB,SAAS,YAAY,aAAa,EAAmB,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAG,EAAC,SAAsB,EAAKmF,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,OAAO,IAAI,uEAAuE,OAAO,uKAAwK,EAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,kBAAkB1E,EAAmB,EAAC,AAAC,EAAC,CAAc,EAAK4E,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,gFAAgF,gCAAgC,+BAA+B,gGAAiG,EAAC,SAAS,OAAQ,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,qBAAsB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,sBAAsB,mGAAmG,mDAAmD,WAAY,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAC,IAAc,EAAe,EAAM,GAA6B,CAAC,UAAU,oCAAoC,4BAA2B,EAAsB,mBAAiB,SAAS,YAAY,aAAa,EAAoB,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAG,EAAC,SAAsB,EAAKF,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAO,IAAI,uEAAuE,OAAO,0KAA2K,EAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,kBAAkB1E,EAAmB,EAAC,AAAC,EAAC,CAAc,EAAK4E,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,gFAAgF,gCAAgC,+BAA+B,gGAAiG,EAAC,SAAS,SAAU,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,qBAAsB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,sBAAsB,mGAAmG,mDAAmD,WAAY,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAC,IAAc,EAAe,EAAM,GAA4B,CAAC,UAAU,mCAAmC,6BAA4B,EAAsB,mBAAiB,SAAS,YAAY,aAAa,EAAoB,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAG,EAAC,SAAsB,EAAKF,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,YAAY,GAAG,WAAW,GAAG,IAAI,6GAA8G,EAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,kBAAkB1E,GAAmB,GAAG,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAsE,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAsE,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAsE,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAsE,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAsE,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAsE,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAsE,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAsE,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAsE,CAAC,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK4E,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,gFAAgF,gCAAgC,+BAA+B,gGAAiG,EAAC,SAAS,OAAQ,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,qBAAsB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,sBAAsB,mGAAmG,mDAAmD,WAAY,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAC,IAAc,EAAe,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,GAAG,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,sBAAuC,mBAAiB,SAAS,sBAAsB,KAAK,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKrF,EAAqB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,sBAAsB,UAAU,QAAQ,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,IAAc,EAAe,EAAM,GAA6B,CAAC,UAAU,oCAAoC,0BAAyB,EAAsB,mBAAiB,SAAS,YAAY,aAAa,EAAoB,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAG,EAAC,SAAsB,EAAKmF,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,GAAG,eAAe,GAAG,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAuE,EAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,kBAAkB1E,EAAmB,EAAC,AAAC,EAAC,CAAc,EAAK4E,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,gFAAgF,gCAAgC,+BAA+B,gGAAiG,EAAC,SAAS,KAAM,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,qBAAsB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,sBAAsB,mGAAmG,mDAAmD,WAAY,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAC,IAAc,EAAe,EAAM,GAA4B,CAAC,UAAU,mCAAmC,6BAA4B,EAAsB,mBAAiB,SAAS,YAAY,aAAa,GAAmB,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAG,EAAC,SAAsB,EAAKF,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,YAAY,IAAI,WAAW,IAAI,MAAM,OAAO,IAAI,uFAAuF,OAAO,mKAAoK,EAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,kBAAkB1E,EAAmB,EAAC,AAAC,EAAC,CAAc,EAAK4E,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,gFAAgF,gCAAgC,+BAA+B,gGAAiG,EAAC,SAAS,IAAK,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,qBAAsB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,sBAAsB,mGAAmG,mDAAmD,WAAY,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAC,IAAe,EAAe,EAAM,GAA6B,CAAC,UAAU,oCAAoC,yBAAwB,EAAsB,mBAAiB,SAAS,YAAY,aAAa,GAAmB,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAG,EAAC,SAAsB,EAAKF,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,YAAY,GAAG,WAAW,GAAG,IAAI,oEAAqE,EAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,kBAAkB1E,EAAmB,EAAC,AAAC,EAAC,CAAc,EAAK4E,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,gFAAgF,gCAAgC,+BAA+B,gGAAiG,EAAC,SAAS,MAAO,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,qBAAsB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,sBAAsB,mGAAmG,mDAAmD,WAAY,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAC,IAAe,EAAe,EAAM,GAA4B,CAAC,UAAU,mCAAmC,yBAAwB,EAAsB,mBAAiB,SAAS,YAAY,aAAa,EAAmB,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAG,EAAC,SAAsB,EAAKF,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAsE,EAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,kBAAkB1E,EAAmB,EAAC,AAAC,EAAC,CAAc,EAAK4E,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,gFAAgF,gCAAgC,+BAA+B,gGAAiG,EAAC,SAAS,MAAO,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,qBAAsB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,sBAAsB,mGAAmG,mDAAmD,WAAY,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAC,IAAe,EAAe,EAAM,GAA6B,CAAC,UAAU,oCAAoC,wBAAuB,EAAsB,mBAAiB,SAAS,YAAY,aAAa,GAAmB,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAG,EAAC,SAAsB,EAAKF,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAsE,EAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,kBAAkB1E,EAAmB,EAAC,AAAC,EAAC,CAAc,EAAK4E,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,gFAAgF,gCAAgC,+BAA+B,gGAAiG,EAAC,SAAS,KAAM,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,qBAAsB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,sBAAsB,mGAAmG,mDAAmD,WAAY,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAC,IAAe,EAAe,EAAK,EAA0B,CAAC,GAAG,EAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,OAAO,GAAG,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,CAAE,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,kBAAmC,mBAAiB,SAAS,sBAAsB,KAAK,kBAAkB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKrF,EAAqB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,kBAAkB,UAAU,OAAO,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,IAAe,EAAe,EAAK,EAA0B,CAAC,GAAG,EAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,OAAO,GAAG,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,CAAE,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,qBAAsC,mBAAiB,SAAS,sBAAsB,KAAK,qBAAqB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAqB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,qBAAqB,UAAU,QAAQ,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,IAAe,EAAe,EAAK,EAA0B,CAAC,GAAG,EAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,GAAG,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,CAAE,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,qBAAsC,mBAAiB,SAAS,sBAAsB,KAAK,qBAAqB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAqB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,UAAU,EAAY,CAAC,IAAI,uEAAuE,OAAO,0KAA2K,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,qBAAqB,UAAU,UAAU,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,IAAe,EAAe,EAAK,EAA0B,CAAC,GAAG,EAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,GAAG,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,CAAE,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,mBAAoC,mBAAiB,SAAS,sBAAsB,KAAK,mBAAmB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAqB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,UAAU,EAAY,CAAC,IAAI,sEAAuE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,mBAAmB,UAAU,MAAM,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,IAAe,EAAe,EAAK,EAA0B,CAAC,GAAG,EAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,GAAG,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,CAAE,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,sBAAuC,mBAAiB,SAAS,sBAAsB,KAAK,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAqB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,sBAAsB,UAAU,KAAK,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,IAAe,EAAe,EAAK,EAA0B,CAAC,GAAG,EAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,GAAG,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,CAAE,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,kBAAmC,mBAAiB,SAAS,sBAAsB,KAAK,kBAAkB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAqB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,kBAAkB,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,IAAe,EAAe,EAAK,EAA0B,CAAC,GAAG,EAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,GAAG,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,CAAE,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,kBAAmC,mBAAiB,SAAS,sBAAsB,KAAK,kBAAkB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAqB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,iEAAiE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,kBAAkB,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,IAAe,EAAe,EAAK,EAA0B,CAAC,GAAG,EAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,GAAG,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,CAAE,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,iBAAkC,mBAAiB,SAAS,sBAAsB,KAAK,iBAAiB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAqB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,gEAAgE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,iBAAiB,UAAU,MAAM,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAC,IAAe,EAAe,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,+BAA+B,kBAAiB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,+BAA+B,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,EAAS,CAAC,MAAM,aAAa,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,mBAAkB,CAAK,EAAC,MAAK,EAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,aAAY,EAAM,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAC,UAAU,EAAG,EAAC,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,+BAA+B,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,gBAAe,EAAM,aAAa,GAAG,WAAW,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,kBAAiB,EAAM,eAAc,CAAM,EAAC,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAO,EAAC,MAAM,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,YAAY,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,YAAY,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,YAAY,UAAU;EAAU,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,QAAQ,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,UAAU,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,UAAU,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,UAAU,EAAY,CAAC,IAAI,sEAAuE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,UAAU,UAAU,UAAU,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,+BAA+B,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,+BAA+B,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAqB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,+BAA+B,UAAU,QAAQ,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,QAAQ,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,QAAQ,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,QAAQ,UAAU,MAAM,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,GAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,KAAK,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,GAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,GAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,iEAAiE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,MAAM,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,MAAM,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,GAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,gEAAgE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,MAAM,UAAU,MAAM,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,WAAW,CAAC,OAAM,EAAM,MAAK,EAAK,SAAS,QAAS,EAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,IAAe,EAAe,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,gCAAgC,kBAAiB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,gCAAgC,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,EAAS,CAAC,MAAM,aAAa,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,mBAAkB,CAAK,EAAC,MAAK,EAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,aAAY,EAAM,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAC,UAAU,EAAG,EAAC,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,gCAAgC,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,gBAAe,EAAM,aAAa,GAAG,WAAW,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,kBAAiB,EAAM,eAAc,CAAM,EAAC,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAO,EAAC,MAAM,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,gCAAgC,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,gCAAgC,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAqB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,gCAAgC,UAAU;EAAU,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,QAAQ,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,UAAU,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,UAAU,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,UAAU,EAAY,CAAC,IAAI,sEAAuE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,UAAU,UAAU,UAAU,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,QAAQ,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,QAAQ,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,QAAQ,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,QAAQ,UAAU,MAAM,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,GAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,KAAK,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,GAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,GAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,iEAAiE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,MAAM,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,MAAM,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,GAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,gEAAgE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,MAAM,UAAU,MAAM,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,WAAW,CAAC,OAAM,EAAM,MAAK,EAAK,SAAS,QAAS,EAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,IAAe,EAAe,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,2BAA2B,kBAAiB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,2BAA2B,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,EAAS,CAAC,MAAM,aAAa,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,mBAAkB,CAAK,EAAC,MAAK,EAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,aAAY,EAAM,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAC,UAAU,EAAG,EAAC,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,2BAA2B,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,gBAAe,EAAM,aAAa,GAAG,WAAW,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,kBAAiB,EAAM,eAAc,CAAM,EAAC,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAO,EAAC,MAAM,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,YAAY,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,YAAY,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,YAAY,UAAU;EAAU,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,2BAA2B,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,2BAA2B,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAqB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,2BAA2B,UAAU,OAAO,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,QAAQ,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,UAAU,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,UAAU,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,UAAU,EAAY,CAAC,IAAI,sEAAuE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,UAAU,UAAU,UAAU,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,QAAQ,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,QAAQ,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,QAAQ,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,QAAQ,UAAU,MAAM,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,GAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,KAAK,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,GAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,GAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,iEAAiE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,MAAM,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,MAAM,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,GAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,gEAAgE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,MAAM,UAAU,MAAM,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,WAAW,CAAC,OAAM,EAAM,MAAK,EAAK,SAAS,QAAS,EAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,IAAe,EAAe,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,8BAA8B,kBAAiB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,8BAA8B,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,EAAS,CAAC,MAAM,aAAa,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,mBAAkB,CAAK,EAAC,MAAK,EAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,aAAY,EAAM,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAC,UAAU,EAAG,EAAC,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,8BAA8B,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,gBAAe,EAAM,aAAa,GAAG,WAAW,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,kBAAiB,EAAM,eAAc,CAAM,EAAC,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAO,EAAC,MAAM,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,YAAY,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,YAAY,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,YAAY,UAAU;EAAU,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,8BAA8B,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,8BAA8B,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAqB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,8BAA8B,UAAU,QAAQ,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,UAAU,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,UAAU,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,UAAU,EAAY,CAAC,IAAI,sEAAuE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,UAAU,UAAU,UAAU,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,QAAQ,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,QAAQ,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,QAAQ,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,QAAQ,UAAU,MAAM,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,GAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,KAAK,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,GAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,GAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,iEAAiE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,MAAM,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,MAAM,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,GAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,gEAAgE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,MAAM,UAAU,MAAM,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,WAAW,CAAC,OAAM,EAAM,MAAK,EAAK,SAAS,QAAS,EAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,IAAe,EAAe,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,8BAA8B,kBAAiB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,8BAA8B,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,EAAS,CAAC,MAAM,aAAa,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,mBAAkB,CAAK,EAAC,MAAK,EAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,aAAY,EAAM,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAC,UAAU,EAAG,EAAC,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,8BAA8B,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,gBAAe,EAAM,aAAa,GAAG,WAAW,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,kBAAiB,EAAM,eAAc,CAAM,EAAC,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAO,EAAC,MAAM,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,YAAY,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,YAAY,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,YAAY,UAAU;EAAU,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,QAAQ,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,8BAA8B,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,8BAA8B,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAqB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,UAAU,EAAY,CAAC,IAAI,sEAAuE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,8BAA8B,UAAU,UAAU,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,QAAQ,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,QAAQ,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,QAAQ,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,QAAQ,UAAU,MAAM,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,GAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,KAAK,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,GAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,GAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,iEAAiE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,MAAM,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,MAAM,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,GAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,gEAAgE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,MAAM,UAAU,MAAM,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,WAAW,CAAC,OAAM,EAAM,MAAK,EAAK,SAAS,QAAS,EAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,IAAe,EAAe,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,4BAA4B,kBAAiB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,4BAA4B,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,EAAS,CAAC,MAAM,aAAa,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,mBAAkB,CAAK,EAAC,MAAK,EAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,aAAY,EAAM,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAC,UAAU,EAAG,EAAC,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,4BAA4B,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,gBAAe,EAAM,aAAa,GAAG,WAAW,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,kBAAiB,EAAM,eAAc,CAAM,EAAC,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAO,EAAC,MAAM,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,YAAY,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,YAAY,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,YAAY,UAAU;EAAU,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,QAAQ,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,UAAU,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,UAAU,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,UAAU,EAAY,CAAC,IAAI,sEAAuE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,UAAU,UAAU,UAAU,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,QAAQ,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,4BAA4B,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,4BAA4B,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAqB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,4BAA4B,UAAU,MAAM,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,GAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,KAAK,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,GAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,GAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,iEAAiE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,MAAM,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,MAAM,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,GAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,gEAAgE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,MAAM,UAAU,MAAM,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,WAAW,CAAC,OAAM,EAAM,MAAK,EAAK,SAAS,QAAS,EAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,IAAe,EAAe,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,+BAA+B,kBAAiB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,+BAA+B,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,EAAS,CAAC,MAAM,aAAa,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,mBAAkB,CAAK,EAAC,MAAK,EAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,aAAY,EAAM,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAC,UAAU,EAAG,EAAC,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,+BAA+B,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,gBAAe,EAAM,aAAa,GAAG,WAAW,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,kBAAiB,EAAM,eAAc,CAAM,EAAC,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAO,EAAC,MAAM,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,YAAY,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,YAAY,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,YAAY,UAAU;EAAU,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,QAAQ,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,UAAU,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,UAAU,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,UAAU,EAAY,CAAC,IAAI,sEAAuE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,UAAU,UAAU,UAAU,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,QAAQ,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,QAAQ,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,QAAQ,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,QAAQ,UAAU,MAAM,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,+BAA+B,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,+BAA+B,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAqB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,+BAA+B,UAAU,KAAK,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,GAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,GAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,iEAAiE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,MAAM,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,MAAM,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,GAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,gEAAgE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,MAAM,UAAU,MAAM,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,WAAW,CAAC,OAAM,EAAM,MAAK,EAAK,SAAS,QAAS,EAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,IAAe,EAAe,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,2BAA2B,kBAAiB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,2BAA2B,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,EAAS,CAAC,MAAM,aAAa,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,mBAAkB,CAAK,EAAC,MAAK,EAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,aAAY,EAAM,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAC,UAAU,EAAG,EAAC,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,2BAA2B,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,gBAAe,EAAM,aAAa,GAAG,WAAW,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,kBAAiB,EAAM,eAAc,CAAM,EAAC,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAO,EAAC,MAAM,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,YAAY,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,YAAY,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,YAAY,UAAU;EAAU,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,QAAQ,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,UAAU,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,UAAU,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,UAAU,EAAY,CAAC,IAAI,sEAAuE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,UAAU,UAAU,UAAU,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,QAAQ,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,QAAQ,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,QAAQ,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,QAAQ,UAAU,MAAM,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,GAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,KAAK,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,2BAA2B,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,2BAA2B,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAqB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,2BAA2B,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,GAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,iEAAiE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,MAAM,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,MAAM,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,GAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,gEAAgE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,MAAM,UAAU,MAAM,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,WAAW,CAAC,OAAM,EAAM,MAAK,EAAK,SAAS,QAAS,EAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,IAAe,EAAe,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,2BAA2B,kBAAiB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,2BAA2B,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,EAAS,CAAC,MAAM,aAAa,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,mBAAkB,CAAK,EAAC,MAAK,EAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,aAAY,EAAM,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAC,UAAU,EAAG,EAAC,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,2BAA2B,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,gBAAe,EAAM,aAAa,GAAG,WAAW,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,kBAAiB,EAAM,eAAc,CAAM,EAAC,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAO,EAAC,MAAM,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,YAAY,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,YAAY,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,YAAY,UAAU;EAAU,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,QAAQ,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,UAAU,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,UAAU,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,UAAU,EAAY,CAAC,IAAI,sEAAuE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,UAAU,UAAU,UAAU,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,QAAQ,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,QAAQ,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,QAAQ,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,QAAQ,UAAU,MAAM,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,GAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,KAAK,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,GAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,2BAA2B,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,2BAA2B,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAqB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,iEAAiE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,2BAA2B,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,MAAM,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,MAAM,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,GAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,gEAAgE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,MAAM,UAAU,MAAM,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,WAAW,CAAC,OAAM,EAAM,MAAK,EAAK,SAAS,QAAS,EAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,IAAe,EAAe,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,2BAA2B,kBAAiB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,2BAA2B,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,EAAS,CAAC,MAAM,aAAa,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,mBAAkB,CAAK,EAAC,MAAK,EAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,aAAY,EAAM,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAC,UAAU,EAAG,EAAC,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,2BAA2B,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,gBAAe,EAAM,aAAa,GAAG,WAAW,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,kBAAiB,EAAM,eAAc,CAAM,EAAC,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAO,EAAC,MAAM,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,YAAY,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,YAAY,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,YAAY,UAAU;EAAU,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,QAAQ,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,UAAU,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,UAAU,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,UAAU,EAAY,CAAC,IAAI,sEAAuE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,UAAU,UAAU,UAAU,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,QAAQ,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,QAAQ,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,QAAQ,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,EAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,QAAQ,UAAU,MAAM,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,WAAW,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,GAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,UAAU,EAAY,CAAC,IAAI,qEAAsE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,WAAW,UAAU,KAAK,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,8CAA8C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAmE,CAAC,UAAU,GAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,oEAAoE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,OAAO,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAkE,CAAC,UAAU,GAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,iEAAiE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,OAAO,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO,SAAsB,EAAK,EAA8B,CAAC,UAAU,6CAA6C,0BAA0B,iBAAgB,EAAsB,mBAAiB,SAAS,sBAAsB,KAAK,0BAA0B,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAqB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,gEAAgE,UAAU,EAAY,CAAC,IAAI,oEAAqE,EAAC,GAAG,CAAC,SAAS,YAAY,KAAK,0BAA0B,UAAU,MAAM,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,WAAW,CAAC,OAAM,EAAK,MAAK,EAAK,SAAS,QAAS,EAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,IAAa,EAAe,EAAKmF,EAAM,CAAC,WAAW,CAAC,IAAI,QAAQ,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,YAAY,KAAK,WAAW,KAAK,IAAI,qEAAsE,EAAC,UAAU,oCAAoC,qBAAsC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAG,EAAC,GAAG,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,MAAM,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,YAAY,KAAK,WAAW,KAAK,IAAI,sEAAuE,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,OAAO,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,YAAY,KAAK,WAAW,KAAK,IAAI,sEAAuE,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,UAAU,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,YAAY,KAAK,WAAW,KAAK,IAAI,sEAAuE,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,QAAQ,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,YAAY,KAAK,WAAW,KAAK,IAAI,sEAAuE,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,KAAK,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,YAAY,KAAK,WAAW,KAAK,IAAI,qEAAsE,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,MAAM,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,YAAY,KAAK,WAAW,KAAK,IAAI,qEAAsE,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,SAAS,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,YAAY,KAAK,WAAW,KAAK,IAAI,qEAAsE,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,QAAQ,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,YAAY,KAAK,WAAW,KAAK,IAAI,qEAAsE,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,WAAW,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,GAAG,CAAC,YAAY,KAAK,WAAW,KAAK,IAAI,oEAAqE,CAAC,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,GAAG,EAAqB,CAAC,UAAU,CAAC,kBAAkBzE,EAAmB,CAAC,EAAC,EAAY,EAAe,CAAC,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK2E,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,GAAG,CAAC,UAAU,mDAAmD,YAAY,SAAS,eAAgB,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,OAAQ,EAAkB,mBAAiB,SAAS,YAAY,kBAAkB,MAAM,oBAAmB,EAAK,GAAG,EAAqB,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,GAAG,CAAC,UAAU,mDAAmD,YAAY,SAAS,yBAA0B,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,GAAG,CAAC,UAAU,mDAAmD,YAAY,SAAsB,EAAK,EAAO,OAAO,CAAC,SAAS,gBAAiB,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,MAAM,CAAC,QAAQ,YAAa,CAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,GAAG,CAAC,UAAU,mDAAmD,YAAY,SAAS,4BAA6B,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,GAAG,CAAC,UAAU,mDAAmD,YAAY,SAAS,wBAAyB,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,GAAG,CAAC,UAAU,mDAAmD,YAAY,SAAS,iBAAkB,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,GAAG,CAAC,UAAU,mDAAmD,YAAY,SAAS,YAAa,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,GAAG,CAAC,UAAU,mDAAmD,YAAY,SAAS,iBAAkB,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,GAAG,CAAC,UAAU,mDAAmD,YAAY,SAAS,eAAgB,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,GAAG,CAAC,UAAU,mDAAmD,YAAY,SAAS,4BAA6B,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,GAAG,GAAG,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,GAAG,EAAqB,CAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAG,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,2BAA4C,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAA+D,CAAC,UAAU,WAAW,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,SAAS,YAAY,UAAU,WAAW,QAAQ,YAAY,MAAM,OAAO,GAAG,EAAqB,CAAC,UAAU,CAAC,UAAU,+DAAgE,EAAC,UAAU,CAAC,UAAU,gEAAiE,EAAC,UAAU,CAAC,UAAU,mEAAoE,EAAC,UAAU,CAAC,UAAU,qEAAsE,EAAC,UAAU,CAAC,UAAU,oEAAqE,EAAC,UAAU,CAAC,UAAU,iEAAkE,EAAC,UAAU,CAAC,UAAU,oEAAqE,EAAC,UAAU,CAAC,UAAU,iEAAkE,EAAC,UAAU,CAAC,UAAU,gEAAiE,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,GAAG,GAAG,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,GAAG,EAAqB,CAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,KAAK,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,GAAG,GAAG,EAAE,EAAE,EAAG,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,2BAA4C,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAgE,CAAC,UAAU,WAAW,OAAO,OAAO,GAAG,YAAY,UAAU,uKAAuK,SAAS,YAAY,UAAU,WAAW,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAKA,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,mDAAmD,YAAY,SAAS,8DAA+D,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,OAAQ,EAAkB,mBAAiB,SAAS,YAAY,kBAAkB,MAAM,oBAAmB,EAAK,GAAG,EAAqB,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,mDAAmD,YAAY,SAAS,uDAAwD,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,mDAAmD,YAAY,SAAS,wDAAyD,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,mDAAmD,YAAY,SAAS,8EAA+E,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,mDAAmD,YAAY,SAAS,kDAAmD,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,mDAAmD,YAAY,SAAS,uDAAwD,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,mDAAmD,YAAY,SAAS,gGAAiG,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,mDAAmD,YAAY,SAAS,8GAA+G,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,mDAAmD,YAAY,SAAS,sEAAuE,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,mDAAmD,YAAY,SAAS,4EAA6E,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,CAAC,IAAe,EAAe,EAAK,EAAO,IAAI,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,OAAO,gQAAiQ,EAAC,UAAU,oCAAoC,kBAAmC,mBAAiB,SAAS,YAAY,GAAG,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,GAAmB,OAAO,QAAQ,IAAI,qEAAqE,OAAO,gQAAiQ,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,GAAmB,OAAO,QAAQ,IAAI,qEAAqE,OAAO,gQAAiQ,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,GAAmB,OAAO,QAAQ,IAAI,qEAAqE,OAAO,gQAAiQ,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,GAAmB,OAAO,QAAQ,IAAI,qEAAqE,OAAO,gQAAiQ,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,GAAmB,OAAO,QAAQ,IAAI,qEAAqE,OAAO,gQAAiQ,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,GAAmB,OAAO,QAAQ,IAAI,qEAAqE,OAAO,gQAAiQ,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,GAAmB,OAAO,QAAQ,IAAI,qEAAqE,OAAO,gQAAiQ,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,GAAmB,OAAO,QAAQ,IAAI,qEAAqE,OAAO,gQAAiQ,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,GAAmB,OAAO,QAAQ,IAAI,qEAAqE,OAAO,gQAAiQ,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,GAAmB,OAAO,QAAQ,IAAI,qEAAqE,OAAO,gQAAiQ,CAAC,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAKA,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,kDAAkD,8BAA8B,6BAA6B,kCAAkC,MAAO,EAAC,SAAS,cAAe,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,qBAAsB,EAAkB,mBAAiB,SAAS,YAAY,kBAAkB,MAAM,oBAAmB,EAAK,GAAG,EAAqB,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAqB,CAAC,SAAS,CAAc,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,kDAAkD,8BAA8B,6BAA6B,kCAAkC,MAAO,EAAC,SAAS,SAAU,EAAC,CAAc,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,kDAAkD,8BAA8B,6BAA6B,kCAAkC,MAAO,EAAC,SAAS,oBAAqB,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAqB,CAAC,SAAS,CAAc,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,kDAAkD,8BAA8B,6BAA6B,kCAAkC,MAAO,EAAC,SAAS,aAAc,EAAC,CAAc,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,kDAAkD,8BAA8B,6BAA6B,kCAAkC,MAAO,EAAC,SAAS,cAAe,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,kDAAkD,8BAA8B,6BAA6B,kCAAkC,MAAO,EAAC,SAAsB,EAAM,EAAO,OAAO,CAAC,SAAS,CAAC,YAAyB,EAAK,EAAO,GAAG,CAAE,EAAC,CAAC,MAAO,CAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAqB,CAAC,SAAS,CAAc,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,kDAAkD,8BAA8B,6BAA6B,kCAAkC,MAAO,EAAC,SAAS,aAAc,EAAC,CAAc,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,kDAAkD,8BAA8B,6BAA6B,kCAAkC,MAAO,EAAC,SAAS,KAAM,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAqB,CAAC,SAAS,CAAc,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,kDAAkD,8BAA8B,6BAA6B,kCAAkC,MAAO,EAAC,SAAS,QAAS,EAAC,CAAc,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,kDAAkD,8BAA8B,6BAA6B,kCAAkC,MAAO,EAAC,SAAS,aAAc,EAAC,CAAc,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,kDAAkD,8BAA8B,6BAA6B,kCAAkC,MAAO,EAAC,SAAS,SAAU,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAqB,CAAC,SAAS,CAAc,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,kDAAkD,8BAA8B,6BAA6B,kCAAkC,MAAO,EAAC,SAAS,SAAU,EAAC,CAAc,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,kDAAkD,8BAA8B,6BAA6B,kCAAkC,MAAO,EAAC,SAAS,OAAQ,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,kDAAkD,8BAA8B,6BAA6B,kCAAkC,MAAO,EAAC,SAAS,YAAa,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAqB,CAAC,SAAS,CAAc,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,kDAAkD,8BAA8B,6BAA6B,kCAAkC,MAAO,EAAC,SAAS,aAAc,EAAC,CAAc,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,kDAAkD,8BAA8B,6BAA6B,kCAAkC,MAAO,EAAC,SAAS,aAAc,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAqB,CAAC,SAAS,CAAc,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,kDAAkD,8BAA8B,6BAA6B,kCAAkC,MAAO,EAAC,SAAS,UAAW,EAAC,CAAc,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,kDAAkD,8BAA8B,6BAA6B,kCAAkC,MAAO,EAAC,SAAS,SAAU,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,GAAG,GAAG,EAAqB,CAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,EAAE,EAAG,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,EAAE,EAAG,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,EAAE,EAAG,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,EAAE,EAAG,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,EAAE,EAAG,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,EAAE,EAAG,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,EAAE,EAAG,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,EAAE,EAAG,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,EAAE,EAAG,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,EAAE,EAAG,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,0BAA2C,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAA8D,CAAC,UAAU,WAAW,OAAO,OAAO,GAAG,YAAY,UAAU,qEAAqE,SAAS,YAAY,UAAU,WAAW,QAAQ,YAAY,MAAM,OAAO,GAAG,EAAqB,CAAC,UAAU,CAAC,UAAU,mEAAoE,EAAC,UAAU,CAAC,UAAU,+DAAgE,EAAC,UAAU,CAAC,UAAU,gEAAiE,EAAC,UAAU,CAAC,UAAU,oEAAqE,EAAC,UAAU,CAAC,UAAU,gEAAiE,EAAC,UAAU,CAAC,UAAU,iEAAkE,EAAC,UAAU,CAAC,UAAU,iEAAkE,EAAC,UAAU,CAAC,UAAU,qEAAsE,EAAC,UAAU,CAAC,UAAU,oEAAqE,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAsB,EAAKA,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,0DAA0D,gFAAgF,kCAAkC,MAAO,EAAC,SAAS,4DAA6D,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,yBAA0B,EAAkB,mBAAiB,SAAS,YAAY,KAAK,EAAU,kBAAkB,MAAM,oBAAmB,EAAK,GAAG,EAAqB,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,0DAA0D,8EAA8E,8BAA8B,kCAAkC,MAAO,EAAC,SAAS,8EAA+E,EAAC,AAAC,EAAC,CAAC,SAAA,EAAe,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,0DAA0D,8EAA8E,8BAA8B,kCAAkC,MAAO,EAAC,SAAS,uDAAwD,EAAC,AAAC,EAAC,CAAC,SAAA,EAAe,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,0DAA0D,8EAA8E,8BAA8B,kCAAkC,MAAO,EAAC,SAAS,wDAAyD,EAAC,AAAC,EAAC,CAAC,SAAA,EAAe,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,0DAA0D,8EAA8E,8BAA8B,kCAAkC,MAAO,EAAC,SAAS,uDAAwD,EAAC,AAAC,EAAC,CAAC,SAAA,EAAe,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,0DAA0D,8EAA8E,8BAA8B,kCAAkC,MAAO,EAAC,SAAS,4EAA6E,EAAC,AAAC,EAAC,CAAC,SAAA,EAAe,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,0DAA0D,8EAA8E,8BAA8B,kCAAkC,MAAO,EAAC,SAAS,sEAAuE,EAAC,AAAC,EAAC,CAAC,SAAA,EAAe,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,0DAA0D,8EAA8E,8BAA8B,kCAAkC,MAAO,EAAC,SAAS,gGAAiG,EAAC,AAAC,EAAC,CAAC,SAAA,EAAe,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,0DAA0D,8EAA8E,8BAA8B,kCAAkC,MAAO,EAAC,SAAS,kDAAmD,EAAC,AAAC,EAAC,CAAC,SAAA,EAAe,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,0DAA0D,8EAA8E,8BAA8B,kCAAkC,MAAO,EAAC,SAAS,8DAA+D,EAAC,AAAC,EAAC,CAAC,SAAA,EAAe,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,0DAA0D,8EAA8E,8BAA8B,kCAAkC,MAAO,EAAC,SAAS,8GAA+G,EAAC,AAAC,EAAC,CAAC,SAAA,EAAe,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAsB,EAAK,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAG,EAAqB,CAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,IAAI,EAAE,CAAE,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,IAAI,EAAE,CAAE,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,IAAI,EAAE,CAAE,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,IAAI,EAAE,CAAE,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,IAAI,EAAE,CAAE,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,IAAI,EAAE,CAAE,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,IAAI,EAAE,CAAE,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,IAAI,EAAE,CAAE,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,IAAI,EAAE,CAAE,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,IAAI,EAAE,CAAE,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,2BAA4C,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAgE,CAAC,UAAU,WAAW,OAAO,OAAO,GAAG,YAAY,UAAU,qKAAqK,SAAS,YAAY,UAAU,WAAW,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,QAAQ,YAAY,MAAM,OAAO,GAAG,EAAqB,CAAC,UAAU,CAAC,UAAU,sKAAuK,EAAC,UAAU,CAAC,UAAU,sKAAuK,EAAC,UAAU,CAAC,UAAU,sKAAuK,EAAC,UAAU,CAAC,UAAU,sKAAuK,EAAC,UAAU,CAAC,UAAU,sKAAuK,EAAC,UAAU,CAAC,UAAU,sKAAuK,EAAC,UAAU,CAAC,UAAU,sKAAuK,EAAC,UAAU,CAAC,UAAU,sKAAuK,EAAC,UAAU,CAAC,UAAU,sKAAuK,EAAC,UAAU,CAAC,UAAU,sKAAuK,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,CAAC,IAAe,EAAe,EAAKF,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,GAAG,GAAkB,GAAU,CAAC,GAAG,CAAC,UAAU,SAAS,UAAU,QAAS,CAAC,EAAC,UAAU,mCAAmC,qBAAsC,mBAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,SAAS,CAAC,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,CAAC,EAAC,GAAG,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,gWAAiW,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,gWAAiW,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,oWAAqW,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,sQAAuQ,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,gWAAiW,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,kcAAmc,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,mQAAoQ,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,gWAAiW,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,oWAAqW,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,gWAAiW,CAAC,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAE,EAAC,CAAOG,GAAI,CAAC,kFAAkF,kFAAkF,oQAAoQ,0QAA0Q,+iBAA+iB,4aAA4a,mdAAmd,kaAAka,oOAAoO,+aAA+a,2LAA2L,qzBAAqzB,oTAAoT,8FAA8F,2GAA2G,uVAAuV,yRAAyR,sRAAsR,mSAAmS,sKAAsK,oKAAoK,6RAA6R,2SAA2S,kQAAkQ,sQAAsQ,sKAAsK,qQAAqQ,0GAA0G,iLAAiL,6/GAA6/G,igBAAigB,0bAA0b,gqBAAgqB,0IAA0I,+KAA+K,ibAAib,0EAA0E,+DAA+D,oZAAoZ,oZAAoZ,oZAAoZ,6bAA6b,yMAAyM,2PAA2P,iZAAiZ,+YAA+Y,4cAA4c,gEAAgE,gGAAgG,8cAA8c,6IAA6I,oiBAAoiB,6jBAA6jB,qbAAqb,yZAAyZ,oZAAoZ,2VAA2V,qbAAqb,wFAAwF,qbAAqb,qKAAqK,yEAAyE,ibAAib,wEAAwE,ibAAib,wEAAwE,ibAAib,0EAA0E,qbAAqb,uFAAuF,qbAAqb,2GAA2G,6FAA6F,6UAA6U,ibAAib,GAAA,GAAmB,GAAA,EAAoB,EAS/vzM,GAAgB,EAAQZ,GAAUY,GAAI,eAAe,IAAgB,GAAgB,GAAgB,YAAY,eAAe,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAK,EAAC,EAAoB,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAY,EAAC,aAAa,CAAC,WAAW,oBAAoB,YAAY,qBAAqB,OAAO,gBAAgB,UAAU,mBAAmB,UAAU,mBAAmB,QAAQ,iBAAiB,WAAW,oBAAoB,OAAO,gBAAgB,OAAO,gBAAgB,MAAM,cAAe,EAAC,MAAM,UAAU,KAAK,EAAY,IAAK,EAAC,UAAU,CAAC,aAAa,6DAA6D,iBAAgB,EAAM,MAAM,QAAQ,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,wBAAwB,qHAAqH,MAAM,QAAQ,KAAK,EAAY,eAAgB,CAAC,EAAC,CAAC,EAAS,GAAgB,CAAC,CAAC,eAAc,EAAK,MAAM,CAAC,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAM,EAAC,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAM,EAAC,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAM,CAAC,CAAC,EAAC,GAAG,GAA0B,GAAG,GAAc,GAAG3C,GAAmB,GAAG,EAAA,GAA0C,CAAC,GAAG,EAAA,GAA2C,AAAC,EAAC,CAAC,8BAA6B,CAAK,EAAC,sBCT15CyC,AAAnjH,GAA8B,GAAU,UAAU,CAAC,0BAA0B,qBAAsB,EAAC,CAAcN,GAAM,CAAC,CAAC,eAAc,EAAK,MAAM,CAAC,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAM,EAAC,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAO,CAAA,CAAE,CAAA,EAAcQ,GAAI,CAAC,guBAAguB,sxBAAsxB,qxBAAqxB,kxBAAmxB,EAAcF,GAAU,iBCAvzF,SAASrB,GAAqB,EAAU,GAAG,EAAS,CAAC,IAAM,EAAc,CAAE,EAAsF,MAArF,IAAU,QAAQ,GAAS,GAAS,OAAO,OAAO,EAAc,EAAU,GAAS,CAAC,CAAQ,CAAe,yDAS5B,AATj6B,GAAyD,IAA4L,IAAkE,IAA4B,CAA0B,IAA0H,IAAyH,CAAMC,GAAW,CAAC,YAAY,WAAY,EAAOC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAmB,EAA8LC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAOC,GAAkB,UAAkB,GAAQ,UAAU,UAAqB,EAAM,KAAM,SAAiB,SAAqB,GAAQ,SAAS,CAAC,IAAI,CAAM,MAAA,GAAmBC,GAAW,CAAC,CAAC,QAAM,WAAS,GAAG,CAA8F,IAAvF,EAAO,EAAiB,EAAoB,CAAO,EAAW,GAAO,EAAO,WAAiB,EAAa,EAAc,KAAK,CAAC,GAAG,EAAO,YAAW,GAAE,CAAC,KAAK,UAAU,EAAW,AAAC,EAAC,CAAC,MAAoB,GAAK,EAAoB,SAAS,CAAC,MAAM,EAAsB,UAAS,EAAC,AAAE,EAAOC,GAAS,EAAO,OAAA,EAAsB,CAAOC,GAAwB,CAAC,OAAO,YAAY,GAAG,WAAY,EAAOC,GAAS,CAAC,CAAC,UAAQ,SAAO,KAAG,QAAM,MAAI,aAAW,QAAM,QAAM,GAAG,EAAM,IAAU,CAAC,GAAG,EAAM,UAAU,GAAO,EAAM,WAAW,SAAS,UAAU,GAAY,EAAM,YAAW,EAAK,UAAU,GAAS,EAAM,WAAW;gBAA0B,QAAQD,GAAwB,EAAM,UAAU,EAAM,SAAS,YAAY,UAAU,GAAO,EAAM,WAAW,CAAC,IAAI,qEAAsE,EAAC,UAAU,GAAK,EAAM,WAAW,SAAU,GAASE,GAAuB,CAAC,EAAM,IAAe,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAAC,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAASC,GAAuB,EAAiB,SAAS,EAAM,EAAI,CAAoqB,IAA7pB,EAAY,EAAO,KAAK,CAAO,EAAW,GAAK,EAAkB,EAAgB,GAAa,CAAM,CAAC,eAAa,YAAU,CAAC,IAAe,CAAO,EAAkB,IAAsB,CAAM,CAAC,QAAM,UAAA,EAAU,WAAS,UAAQ,YAAU,aAAU,aAAU,YAAU,YAAU,GAAG,EAAU,CAAC,GAAS,EAAM,CAAM,CAAC,cAAY,aAAW,sBAAoB,kBAAgB,iBAAe,YAAU,mBAAgB,aAAW,WAAS,CAAC,GAAgB,CAAC,WAAA,GAAW,eAAe,YAAY,IAAI,EAAW,UAAQ,kBAAA,EAAkB,EAAC,CAAO,EAAiB,GAAuB,EAAM,EAAS,CAAO,EAAsB,CAAA,GAAA,EAA8C,EAAO,EAAkB,EAAGT,GAAkB,GAAG,EAAsB,CAAC,MAAoB,GAAK,GAAY,CAAC,GAAG,GAAU,EAAgB,SAAsB,EAAKK,GAAS,CAAC,QAAQ,EAAS,SAAQ,EAAM,SAAsB,EAAKD,GAAW,CAAC,MAAMF,GAAY,SAAsB,EAAM,EAAO,IAAI,CAAC,GAAG,EAAU,GAAG,EAAgB,UAAU,EAAG,EAAkB,iBAAiBiB,EAAU,EAAW,oBAAoB,KAAsB,mBAAiB,SAAS,YAAY,IAAI,EAAW,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAG,CAAM,EAAC,GAAG,GAAqB,CAAC,UAAU,oBAAoB,QAAS,CAAC,EAAC,EAAY,EAAe,CAAC,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAKC,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,mDAAmD,YAAY,MAAM,uBAAuB,6FAA8F,EAAC,SAAS,QAAS,EAAC,AAAC,EAAC,CAAC,UAAU,oCAAoC,sBAAsB,MAAM,CAAC,OAAQ,EAAkB,mBAAiB,SAAS,YAAY,MAAM,sBAAsB,oEAAqE,EAAC,KAAK,EAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAC,GAAwB,EAAK,EAAO,IAAI,CAAC,UAAU,mCAAmC,MAAuB,mBAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,0BAA0B,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,SAAsB,EAAKA,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,8EAA8E,8BAA8B,6BAA6B,kCAAkC,6BAA6B,+FAAgG,EAAC,SAAS,SAAU,EAAC,AAAC,EAAC,CAAC,UAAU,mCAAmC,gEAAgE,MAAM,CAAC,qBAAsB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,sBAAsB,sEAAuE,EAAC,KAAK,EAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAKF,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,GAAG,eAAe,GAAG,QAAQ,GAA2B,GAAmB,GAAG,GAAG,MAAM,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,CAAC,YAAY,GAAG,WAAW,GAAG,MAAM,OAAO,GAAG,GAAkB,GAAU,CAAC,GAAG,CAAC,UAAU,SAAS,UAAU,QAAS,CAAC,EAAC,UAAU,oCAAoC,MAAuB,mBAAiB,SAAS,YAAY,GAAG,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,GAAG,eAAe,GAAG,QAAQ,GAA2B,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,EAAE,CAAC,YAAY,GAAG,WAAW,GAAG,MAAM,OAAO,GAAG,GAAkB,GAAU,CAAC,GAAG,CAAC,UAAU,SAAS,UAAU,QAAS,CAAC,CAAC,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAKE,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAM,EAAO,EAAE,CAAC,UAAU,mDAAmD,YAAY,SAAS,CAAC,UAAuB,EAAK,EAAO,GAAG,CAAE,EAAC,CAAC,gBAAiB,CAAC,EAAC,AAAC,EAAC,CAAC,UAAU,oCAAoC,gEAAgE,MAAM,CAAC,OAAQ,EAAkB,mBAAiB,SAAS,YAAY,KAAK,GAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAE,EAAC,CAAOC,GAAI,CAAC,kFAAkF,kFAAkF,yUAAyU,iRAAiR,iRAAiR,uLAAuL,2VAA2V,mIAAmI,iHAAiH,uLAAuL,k2BAAk2B,0JAA0J,qHAAqH,4GAA4G,mHAAmH,qJAAqJ,wpBAAwpB,GAAA,GAAmB,GAAA,EAAoB,EASxmW,GAAgB,EAAQZ,GAAUY,GAAI,eAAe,IAAgB,GAAgB,GAAgB,YAAY,mBAAmB,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAI,EAAC,EAAoB,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAY,EAAC,aAAa,CAAC,KAAK,QAAS,EAAC,MAAM,UAAU,KAAK,EAAY,IAAK,EAAC,UAAU,CAAC,aAAa,SAAS,iBAAgB,EAAK,MAAM,QAAQ,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,wBAAwB,kIAAkI,MAAM,QAAQ,KAAK,EAAY,eAAgB,EAAC,UAAU,CAAC,aAAa;gBAA0B,iBAAgB,EAAK,MAAM,UAAU,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,aAAa,UAAU,iBAAgB,EAAM,MAAM,MAAM,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,cAAa,EAAK,MAAM,cAAc,KAAK,EAAY,OAAQ,CAAC,EAAC,CAAC,EAAS,GAAgB,CAAC,CAAC,eAAc,EAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAM,CAAC,CAAC,EAAC,GAAG,EAAA,GAA0C,CAAC,GAAG,EAAA,GAA2C,AAAC,EAAC,CAAC,8BAA6B,CAAK,EAAC,0DCT5mC,SAASvB,GAAqB,EAAU,GAAG,EAAS,CAAC,IAAM,EAAc,CAAE,EAAsF,MAArF,IAAU,QAAQ,GAAS,GAAS,OAAO,OAAO,EAAc,EAAU,GAAS,CAAC,CAAQ,CAAe,8EAUv2DD,AAVb,GAAyD,IAA4R,IAAkE,IAA4B,CAA0B,GAA0H,KAAkI,KAA8I,CAAM,GAAc,EAASpB,EAAS,CAAOC,GAAmB,EAASsC,EAAc,CAAO,GAAgE,EAAqB,EAA6BA,EAAc,CAAC,OAAO,YAAY,SAAS,GAAkB,QAAQ,WAAY,EAAC,CAACC,EAAkB,CAAO,GAA+D,EAAqB,EAA6BD,EAAc,CAAC,OAAO,YAAY,SAAS,GAAkB,QAAQ,WAAY,EAAC,CAACC,EAAkB,CAAOpC,GAAgB,CAAC,UAAU,CAAC,OAAM,CAAK,EAAC,UAAU,CAAC,OAAM,CAAK,EAAC,UAAU,CAAC,OAAM,CAAK,CAAC,EAAOkB,GAAW,CAAC,YAAY,YAAY,YAAY,WAAY,EAAOC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAmB,EAA8LC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAO,GAAY,CAAC,SAAS,EAAE,KAAK,OAAQ,EAAOC,GAAkB,UAAkB,GAAQ,UAAU,UAAqB,EAAM,KAAM,SAAiB,SAAqB,GAAQ,SAAS,CAAC,IAAI,CAAM,MAAA,GAAmBC,GAAW,CAAC,CAAC,QAAM,WAAS,GAAG,CAA8F,IAAvF,EAAO,EAAiB,EAAoB,CAAO,EAAW,GAAO,EAAO,WAAiB,EAAa,EAAc,KAAK,CAAC,GAAG,EAAO,YAAW,GAAE,CAAC,KAAK,UAAU,EAAW,AAAC,EAAC,CAAC,MAAoB,GAAK,EAAoB,SAAS,CAAC,MAAM,EAAsB,UAAS,EAAC,AAAE,EAAOC,GAAS,EAAO,OAAA,EAAsB,CAAOC,GAAwB,aAAa,wBAAwB,YAAY,GAAG,YAAY,OAAO,WAAY,EAAOC,GAAS,CAAC,CAAC,SAAO,KAAG,QAAM,uBAAqB,uBAAqB,uBAAqB,sBAAoB,gBAAc,OAAK,QAAM,GAAG,EAAM,IAAU,CAAC,GAAG,EAAM,UAAU,GAAsB,EAAM,WAAW,YAAY,UAAU,GAAM,EAAM,UAAU,UAAU,GAAe,EAAM,WAAW,KAAK,UAAU,GAAsB,EAAM,WAAW,aAAa,UAAU,GAAqB,EAAM,WAAW,0BAA0B,UAAU,GAAO,EAAM,WAAW,CAAC,IAAI,yFAAyF,OAAO,sQAAuQ,EAAC,QAAQD,GAAwB,EAAM,UAAU,EAAM,SAAS,YAAY,UAAU,GAAsB,EAAM,WAAW,aAAc,GAASE,GAAuB,CAAC,EAAM,IAAe,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAAC,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAASC,GAAuB,EAAiB,SAAS,EAAM,EAAI,CAAm9C,IAA58C,EAAY,EAAO,KAAK,CAAO,EAAW,GAAK,EAAkB,EAAgB,GAAa,CAAM,CAAC,eAAa,YAAU,CAAC,IAAe,CAAO,EAAkB,IAAsB,CAAM,CAAC,QAAM,UAAA,EAAU,WAAS,UAAQ,YAAU,aAAU,aAAU,YAAU,YAAU,YAAU,YAAU,GAAG,EAAU,CAAC,GAAS,EAAM,CAAM,CAAC,cAAY,aAAW,uBAAoB,kBAAgB,iBAAe,YAAU,kBAAgB,aAAW,WAAS,CAAC,GAAgB,CAAC,WAAA,GAAW,eAAe,YAAY,gBAAA,GAAgB,IAAI,EAAW,UAAQ,kBAAA,EAAkB,EAAC,CAAO,EAAiB,GAAuB,EAAM,EAAS,CAAO,EAAsB,CAAE,EAAO,EAAkB,EAAGT,GAAkB,GAAG,EAAsB,CAAO,EAAY,KAAQ,CAAC,kBAAkB,kBAAkB,iBAAkB,EAAC,SAAS,EAAe,CAAkC,GAAa,IAAQ,IAAiB,kBAAmD,GAAa,KAAQ,CAAC,kBAAkB,iBAAkB,EAAC,SAAS,EAAe,CAAkC,EAAa,IAAQ,IAAc,YAA6C,GAAa,MAAQ,CAAC,kBAAkB,kBAAkB,iBAAkB,EAAC,SAAS,EAAe,CAAkC,EAAa,MAAQ,CAAC,kBAAkB,iBAAkB,EAAC,SAAS,EAAe,CAAkC,EAAa,IAAQ,IAAc,YAA6C,EAAa,IAAQ,IAAiB,kBAA6C,MAAoB,GAAK,GAAY,CAAC,GAAG,GAAU,EAAgB,SAAsB,EAAKK,GAAS,CAAC,QAAQ,EAAS,SAAQ,EAAM,SAAsB,EAAKD,GAAW,CAAC,MAAMF,GAAY,GAAG,GAAqB,CAAC,UAAU,CAAC,MAAM,EAAY,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAKgB,EAAM,CAAC,GAAG,EAAU,GAAG,EAAgB,UAAU,EAAG,EAAkB,iBAAiBC,EAAU,EAAW,oBAAoB,YAA6B,mBAAiB,SAAS,YAAY,IAAI,EAAW,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAG,CAAM,EAAC,SAAS,mBAAmB,CAAC,gBAAgB,kBAAmB,oBAAmB,CAAC,gBAAgB,kBAAmB,CAAC,EAAC,GAAG,GAAqB,mBAAmB,2BAA8B,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,EAA0B,GAAmB,GAAG,EAAE,CAAC,YAAY,KAAK,WAAW,KAAK,MAAM,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,yKAA0K,CAAC,oBAAmB,2BAA8B,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ,EAA0B,GAAmB,GAAG,EAAE,CAAC,YAAY,KAAK,WAAW,KAAK,MAAM,GAAmB,OAAO,QAAQ,IAAI,oEAAoE,OAAO,mKAAoK,CAAC,oBAAmB,wBAAA,EAA8B,EAAC,UAAU,oBAAoB,IAAK,EAAC,UAAU,oBAAoB,QAAS,EAAC,UAAU,oBAAoB,WAAY,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAAK,CAAC,KAAK,EAAU,aAAY,EAAK,OAAO,YAAY,cAAa,EAAK,QAAQ,YAAY,SAAsB,EAAM,EAAO,EAAE,CAAC,UAAU,+BAAgD,mBAAiB,SAAS,YAAY,SAAS,CAAC,GAAa,EAAe,EAAK,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAsB,EAAKD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,GAAG,GAAkB,EAAU,AAAC,EAAC,UAAU,oCAAoC,QAAyB,mBAAiB,SAAS,YAAY,GAAG,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,MAAM,EAAE,CAAC,YAAY,IAAI,WAAW,KAAK,MAAM,GAAmB,OAAO,QAAQ,GAAG,GAAkB,EAAU,CAAC,GAAG,CAAC,UAAU,QAAQ,UAAU,QAAS,CAAC,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,IAAI,IAAI,GAAmB,QAAQ,KAAK,EAAE,KAAK,GAAG,EAAE,IAAI,CAAC,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,GAAG,GAAkB,EAAU,CAAC,GAAG,CAAC,UAAU,SAAS,UAAU,KAAM,CAAC,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,YAAY,IAAI,WAAW,KAAK,MAAM,GAAmB,OAAO,QAAQ,GAAG,GAAkB,EAAU,CAAC,GAAG,CAAC,UAAU,SAAS,UAAU,KAAM,CAAC,CAAC,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAC,UAAU,CAAC,WAAW,wHAAyH,CAAC,EAAC,SAAS,CAAC,IAAc,EAAe,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAKE,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,8EAA8E,8BAA8B,KAAM,EAAC,SAAS,IAAK,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,qBAAsB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,4BAA4B,mDAAmD,WAAY,EAAC,KAAK,GAAU,kBAAkB,MAAM,oBAAmB,EAAK,GAAG,GAAqB,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,8EAA8E,8BAA8B,KAAM,EAAC,SAAS,IAAK,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,CAAC,IAAc,EAAe,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,2BAA2B,kBAAiB,EAAK,kBAAiB,EAAsB,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK3C,EAAS,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,OAAO,cAAc,eAAe,YAAY,SAAS,WAAW,SAAS,WAAW,SAAS,GAAG,YAAY,SAAS,YAAY,UAAS,EAAM,cAAa,EAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAC,GAAc,EAAe,EAAK2C,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,0DAA0D,gFAAgF,+BAA+B,6CAA8C,EAAC,SAAS,yBAA0B,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,yBAA0B,EAAkB,mBAAiB,SAAS,YAAY,MAAM,sBAAsB,gDAAgD,mDAAmD,WAAY,EAAC,KAAK,GAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAC,IAAc,EAAe,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAC,IAAc,EAAe,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAC,IAAc,EAAe,EAAKA,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,0DAA0D,gFAAgF,+BAA+B,6FAA8F,EAAC,SAAS,WAAY,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,yBAA0B,EAAkB,mBAAiB,SAAS,YAAY,MAAM,sBAAsB,gGAAgG,mDAAmD,WAAY,EAAC,KAAK,EAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,0BAA0B,kBAAiB,EAAK,kBAAiB,EAAsB,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK3C,EAAS,CAAC,MAAM,oBAAoB,OAAO,OAAO,WAAW,OAAO,cAAc,QAAQ,YAAY,SAAS,WAAW,SAAS,WAAW,SAAS,GAAG,YAAY,SAAS,YAAY,UAAS,EAAM,cAAa,EAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAC,IAAc,EAAe,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK2C,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,0DAA0D,gFAAgF,+BAA+B,6FAA8F,EAAC,SAAS,YAAa,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,yBAA0B,EAAkB,mBAAiB,SAAS,YAAY,MAAM,sBAAsB,gGAAgG,mDAAmD,WAAY,EAAC,KAAK,EAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,0BAA0B,kBAAiB,EAAK,kBAAiB,EAAsB,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK3C,EAAS,CAAC,MAAM,oBAAoB,OAAO,OAAO,WAAW,OAAO,cAAc,QAAQ,YAAY,SAAS,WAAW,SAAS,WAAW,SAAS,GAAG,YAAY,SAAS,YAAY,UAAS,EAAM,cAAa,EAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK2C,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,0DAA0D,gFAAgF,+BAA+B,6FAA8F,EAAC,SAAS,aAAc,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,yBAA0B,EAAkB,mBAAiB,SAAS,YAAY,MAAM,sBAAsB,gGAAgG,mDAAmD,WAAY,EAAC,KAAK,EAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,2BAA2B,kBAAiB,EAAK,kBAAiB,EAAsB,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK3C,EAAS,CAAC,MAAM,oBAAoB,OAAO,OAAO,WAAW,OAAO,cAAc,QAAQ,YAAY,SAAS,WAAW,SAAS,WAAW,SAAS,GAAG,YAAY,SAAS,YAAY,UAAS,EAAM,cAAa,EAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,CAAC,GAAc,EAAe,EAAK,EAA0B,CAAC,GAAG,GAAqB,mBAAmB,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAG,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,EAAE,MAAO,oBAAmB,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAG,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,IAAI,KAAK,IAAI,KAAK,GAAmB,QAAQ,KAAK,GAAG,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,oBAAoB,EAAE,OAAO,GAAI,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,2BAA4C,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAAgE,CAAC,UAAU,WAAW,OAAO,OAAO,GAAG,YAAY,UAAU,EAAU,SAAS,YAAY,UAAU,QAAQ,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,IAAc,EAAe,EAAK,EAAO,IAAI,CAAC,UAAU,mCAAmC,UAA2B,mBAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,6GAA6G,QAAQ,EAAG,CAAC,EAAC,CAAC,GAAc,EAAe,EAAK2C,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,0DAA0D,gFAAgF,+BAA+B,6CAA8C,EAAC,SAAS,yBAA0B,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,yBAA0B,EAAkB,mBAAiB,SAAS,YAAY,MAAM,sBAAsB,gDAAgD,mDAAmD,WAAY,EAAC,KAAK,GAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAC,GAAc,EAAe,EAAK,EAA0B,CAAC,GAAG,GAAqB,mBAAmB,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAG,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,GAAG,MAAO,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,0BAA2C,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAA+D,CAAC,UAAU,WAAW,OAAO,OAAO,GAAG,YAAY,UAAU,EAAU,SAAS,YAAY,UAAU,QAAQ,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAE,EAAC,CAAOC,GAAI,CAAC,kFAAkF,kFAAkF,uVAAuV,2SAA2S,mHAAmH,mJAAmJ,uRAAuR,0QAA0Q,2MAA2M,yGAAyG,mMAAmM,mSAAmS,gVAAgV,yLAAyL,kJAAkJ,gHAAgH,iwDAAiwD,8DAA8D,wFAAwF,yFAAyF,+FAA+F,yEAAyE,iEAAiE,utBAAutB,6JAA6J,kHAAkH,4NAA4N,6IAA6I,iKAAiK,+MAA+M,onBAAonB,8oBAA8oB,wKAAwK,mjDAAmjD,mEAAmE,oIAAoI,6FAA6F,qEAAqE,2GAA2G,4EAA4E,oqBAAoqB,wEAAwE,0JAA0J,wHAAwH,6FAA6F,2fAA2f,8EAA8E,mxBAAmxB,oEAAoE,mHAAmH,4FAA4F,8EAA8E,mEAAmE,uwBAAuwB,oFAAoF,oHAAoH,0HAA0H,+EAA+E,8cAA+c,EAS5hkC,GAAgB,EAAQZ,GAAUY,GAAI,eAAe,IAAgB,GAAgB,GAAgB,YAAY,gBAAgB,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAI,EAAC,EAAoB,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAY,EAAC,aAAa,CAAC,YAAY,KAAK,SAAS,WAAY,EAAC,MAAM,UAAU,KAAK,EAAY,IAAK,EAAC,UAAU,CAAC,wBAAwB,qHAAqH,MAAM,QAAQ,KAAK,EAAY,eAAgB,EAAC,UAAU,CAAC,aAAa,KAAK,iBAAgB,EAAM,MAAM,iBAAiB,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,aAAa,0BAA0B,iBAAgB,EAAM,MAAM,uBAAuB,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,aAAa,YAAY,iBAAgB,EAAM,MAAM,0BAA0B,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,aAAa,aAAa,iBAAgB,EAAM,MAAM,0BAA0B,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,aAAa,cAAc,iBAAgB,EAAM,MAAM,0BAA0B,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,MAAM,OAAO,KAAK,EAAY,IAAK,CAAC,EAAC,CAAC,EAAS,GAAgB,CAAC,CAAC,eAAc,EAAK,MAAM,CAAC,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAM,EAAC,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAO,CAAA,CAAC,EAAC,GAAG,GAAc,GAAG3C,EAAmB,EAAC,CAAC,8BAA6B,CAAK,EAAC,CAC5oDmB,GAAqB,CAAA,QAAW,OAAS,MAAQ,qBAAuB,CAAA,sBAAyB,GAAI,CAAC,UAAW,MAAQ,sBAAwB,wBAA0B,CAAE,cAAe,uBAAyB,0CAA4C,yVAAyZ,iCAAmC,uBAAyB,uOAAqQ,+BAAiC,gCAAkC,OAAQ,CAAC,qBAAsB,CAAA,KAAQ,UAAW,CAAC,CAAC,ICVxkB,SAASC,GAAqB,EAAU,GAAG,EAAS,CAAC,IAAM,EAAc,CAAE,EAAsF,MAArF,IAAU,QAAQ,GAAS,GAAS,OAAO,OAAO,EAAc,EAAU,GAAS,CAAC,CAAQ,CAAe,4DAStI,AATxkB,GAA2C,IAAgK,IAAkE,IAA4B,CAAgC,GAAgB,CAAC,UAAU,CAAC,OAAM,CAAK,CAAC,EAAOC,GAAW,CAAC,YAAY,WAAY,EAAOC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,iBAAkB,EAA8LC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAOC,GAAkB,UAAkB,GAAQ,UAAU,UAAqB,EAAM,KAAM,SAAiB,SAAqB,GAAQ,SAAS,CAAC,IAAI,CAAM,MAAA,GAAmBC,GAAW,CAAC,CAAC,QAAM,WAAS,GAAG,CAA8F,IAAvF,EAAO,EAAiB,EAAoB,CAAO,EAAW,GAAO,EAAO,WAAiB,EAAa,EAAc,KAAK,CAAC,GAAG,EAAO,YAAW,GAAE,CAAC,KAAK,UAAU,EAAW,AAAC,EAAC,CAAC,MAAoB,GAAK,EAAoB,SAAS,CAAC,MAAM,EAAsB,UAAS,EAAC,AAAE,EAAOC,GAAS,EAAO,OAAA,EAAsB,CAAOC,GAAwB,aAAa,uBAAuB,WAAY,EAAOC,GAAS,CAAC,CAAC,SAAO,KAAG,OAAK,OAAK,QAAM,GAAG,EAAM,IAAU,CAAC,GAAG,EAAM,UAAU,GAAM,EAAM,UAAU,UAAU,GAAM,EAAM,WAAW,CAAC,IAAI,sEAAuE,EAAC,QAAQD,GAAwB,EAAM,UAAU,EAAM,SAAS,WAAY,GAASE,GAAuB,CAAC,EAAM,IAAe,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAAC,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAASC,GAAuB,EAAiB,SAAS,EAAM,EAAI,CAA0mB,IAAnmB,EAAY,EAAO,KAAK,CAAO,EAAW,GAAK,EAAkB,EAAgB,GAAa,CAAM,CAAC,eAAa,YAAU,CAAC,IAAe,CAAO,EAAkB,IAAsB,CAAM,CAAC,QAAM,UAAA,EAAU,WAAS,UAAQ,YAAU,YAAU,GAAG,GAAU,CAAC,GAAS,EAAM,CAAM,CAAC,cAAY,cAAW,sBAAoB,kBAAgB,iBAAe,YAAU,kBAAgB,aAAW,WAAS,CAAC,GAAgB,CAAC,WAAA,GAAW,eAAe,YAAY,mBAAgB,IAAI,EAAW,UAAQ,kBAAA,EAAkB,EAAC,CAAO,EAAiB,GAAuB,EAAM,EAAS,CAAO,GAAsB,CAAE,EAAO,EAAkB,EAAGT,GAAkB,GAAG,GAAsB,CAAC,MAAoB,GAAK,GAAY,CAAC,GAAG,GAAU,EAAgB,SAAsB,EAAKK,GAAS,CAAC,QAAQ,EAAS,SAAQ,EAAM,SAAsB,EAAKD,GAAW,CAAC,MAAMF,GAAY,SAAsB,EAAK,EAAK,CAAC,KAAK,EAAU,aAAY,EAAK,OAAO,YAAY,cAAa,EAAK,QAAQ,YAAY,GAAG,GAAqB,CAAC,UAAU,CAAC,SAAA,EAAe,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,GAAG,GAAU,GAAG,EAAgB,WAAW,EAAE,EAAG,EAAkB,gBAAgBiB,EAAU,GAAW,CAAC,oCAAoC,YAA6B,mBAAiB,SAAS,YAAY,IAAI,EAAW,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,OAAO,GAAG,CAAM,EAAC,SAAS,mBAAmB,CAAC,UAAU,sMAAuM,CAAC,EAAC,GAAG,GAAqB,mBAAmB,wBAAA,EAA8B,EAAC,UAAU,oBAAoB,UAAW,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAKD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,GAAG,eAAe,IAAI,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,CAAC,YAAY,GAAG,WAAW,IAAI,OAAO,OAAO,GAAmB,OAAO,QAAQ,UAAU,GAAG,GAAkB,EAAU,CAAC,GAAG,CAAC,UAAU,SAAS,UAAU,QAAS,CAAC,EAAC,UAAU,gBAAiC,mBAAiB,SAAS,WAAY,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAE,EAAC,CAAOG,GAAI,CAAC,kFAAkF,kFAAkF,wMAAwM,mHAAmH,iEAAkE,EAS7qJ,GAAgB,EAAQZ,GAAUY,GAAI,eAAe,IAAgB,GAAgB,GAAgB,YAAY,eAAe,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAI,EAAC,EAAoB,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAY,EAAC,aAAa,CAAC,YAAY,UAAW,EAAC,MAAM,UAAU,KAAK,EAAY,IAAK,EAAC,UAAU,CAAC,wBAAwB,4GAA4G,MAAM,OAAO,KAAK,EAAY,eAAgB,EAAC,UAAU,CAAC,MAAM,OAAO,KAAK,EAAY,IAAK,CAAC,EAAC,CAAC,EAAS,GAAgB,CAAC,CAAC,eAAc,EAAK,MAAM,CAAE,CAAE,CAAA,EAAC,CAAC,8BAA6B,CAAK,EAAC,sBCV8sFF,AAAn3G,GAA8B,GAAU,UAAU,CAAC,sBAAsB,qBAAsB,EAAC,CAAcN,GAAM,CAAC,CAAC,eAAc,EAAK,MAAM,CAAC,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAM,EAAC,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAO,CAAA,CAAE,CAAA,EAAcQ,GAAI,CAAC,irBAAirB,uuBAAuuB,suBAAsuB,muBAAouB,EAAcF,GAAU,wECCr2C,SAAS,GAAqB,EAAU,GAAG,EAAS,CAAC,IAAM,EAAc,CAAE,EAAsF,MAArF,IAAU,QAAQ,GAAS,GAAS,OAAO,OAAO,EAAc,EAAU,GAAS,CAAC,CAAQ,CAAe,2EAUlsE,AAVb,GAAyD,IAA+S,IAAkE,IAA4B,CAA0B,IAAqJ,KAA0H,KAAyH,KAA8I,CAAM,GAAmB,EAASH,EAAc,CAAO,GAA+D,EAAqB,EAA6BA,EAAc,CAAC,OAAO,YAAY,SAAS,EAAiB,QAAQ,WAAY,EAAC,CAACC,EAAkB,CAAO,GAA+D,EAAqB,EAA6BD,EAAc,CAAC,OAAO,YAAY,SAAS,GAAkB,QAAQ,WAAY,EAAC,CAACC,EAAkB,CAAO,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAY,EAAO,GAAkB,eAAqB,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAkB,EAA8L,GAAkB,UAAkB,GAAQ,UAAU,UAAqB,EAAM,KAAM,SAAiB,SAAqB,GAAQ,SAAS,CAAC,IAAI,CAAM,MAAA,GAAmB,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAO,GAAmB,CAAC,EAAE,KAAK,mBAAmB,EAAE,EAAQ,GAAmB,CAAC,EAAE,KAAK,wBAAwB,EAAE,EAAQ,GAAW,CAAC,CAAC,QAAM,WAAS,GAAG,CAA8F,IAAvF,EAAO,EAAiB,EAAoB,CAAO,EAAW,GAAO,EAAO,WAAiB,EAAa,EAAc,KAAK,CAAC,GAAG,EAAO,YAAW,GAAE,CAAC,KAAK,UAAU,EAAW,AAAC,EAAC,CAAC,MAAoB,GAAK,EAAoB,SAAS,CAAC,MAAM,EAAsB,UAAS,EAAC,AAAE,EAAO,GAAS,EAAO,OAAA,EAAsB,CAAO,GAAwB,yBAAyB,kCAAkC,yBAAyB,qCAAqC,mCAAmC,0BAA0B,2CAA2C,6BAA6B,8BAA8B,yBAAyB,YAAY,MAAM,YAAY,OAAO,WAAY,EAAO,GAAS,CAAC,CAAC,gBAAc,UAAQ,aAAW,SAAO,KAAG,QAAM,UAAQ,gBAAc,qBAAmB,OAAK,KAAG,kBAAgB,QAAM,QAAM,GAAG,EAAM,IAAU,CAAC,GAAG,EAAM,UAAU,GAAY,EAAM,YAAW,EAAK,UAAU,GAAI,EAAM,WAAW,MAAM,UAAU,GAAO,EAAM,WAAW,CAAC,IAAI,0FAA0F,OAAO,sQAAuQ,EAAC,UAAU,GAAO,EAAM,WAAW,WAAW,UAAU,GAAM,EAAM,UAAU,UAAU,GAAe,EAAM,WAAW,CAAC,IAAI,sEAAsE,OAAO,qKAAsK,EAAC,UAAU,GAAe,EAAM,WAAW,WAAW,UAAU,GAAiB,EAAM,YAAW,EAAK,UAAU,GAAoB,EAAM,WAAW,CAAC,IAAI,uEAAuE,OAAO,uKAAwK,EAAC,QAAQ,GAAwB,EAAM,UAAU,EAAM,SAAS,YAAY,UAAU,GAAS,EAAM,WAAW,CAAC,IAAI,0FAA0F,OAAO,oWAAqW,EAAC,UAAU,GAAS,EAAM,WAAW,wBAAyB,GAAS,GAAuB,CAAC,EAAM,IAAe,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAAC,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAAS,GAAuB,EAAiB,SAAS,EAAM,EAAI,CAA+pC,IAAxpC,EAAY,EAAO,KAAK,CAAO,EAAW,GAAK,EAAkB,EAAgB,GAAa,CAAM,CAAC,eAAa,YAAU,CAAC,IAAe,CAAO,EAAkB,IAAsB,CAAM,CAAC,QAAM,UAAA,EAAU,WAAS,UAAQ,YAAU,aAAU,aAAU,YAAU,YAAU,YAAU,YAAU,YAAU,YAAU,YAAU,YAAU,GAAG,GAAU,CAAC,GAAS,EAAM,CAAM,CAAC,cAAY,aAAW,sBAAoB,kBAAgB,iBAAe,YAAU,kBAAgB,aAAW,WAAS,CAAC,GAAgB,CAAC,cAAW,eAAe,YAAY,IAAI,EAAW,UAAQ,oBAAkB,EAAC,CAAO,EAAiB,GAAuB,EAAM,EAAS,CAAO,GAAsB,CAAA,GAAA,EAA8C,EAAO,GAAkB,EAAG,GAAkB,GAAG,GAAsB,CAAO,EAAY,MAAQ,CAAC,YAAY,WAAY,EAAC,SAAS,EAAY,CAAkC,GAAa,GAAW,IAAc,YAAmB,IAAS,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAY,EAAC,SAAS,EAAY,CAAkC,EAAa,IAAQ,IAAc,YAA6C,EAAa,MAAQ,CAAC,YAAY,YAAY,WAAY,EAAC,SAAS,EAAY,CAA4B,MAAoB,GAAK,GAAY,CAAC,GAAG,GAAU,EAAgB,SAAsB,EAAK,GAAS,CAAC,QAAQ,EAAS,SAAQ,EAAM,SAAsB,EAAK,GAAW,CAAC,MAAM,GAAY,SAAsB,EAAMC,EAAM,CAAC,GAAG,GAAU,GAAG,EAAgB,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQ,EAA0B,GAAmB,GAAG,EAAE,CAAC,YAAY,IAAI,WAAW,KAAK,MAAM,GAAmB,OAAO,QAAQ,GAAG,GAAkB,EAAU,CAAC,GAAG,CAAC,UAAU,SAAS,UAAU,QAAS,CAAC,EAAC,UAAU,EAAG,GAAkB,iBAAiBC,EAAU,EAAW,oBAAoB,SAA0B,mBAAiB,SAAS,YAAY,IAAI,EAAW,MAAM,yBAAyB,uBAAuB,yCAAyC,6BAA6B,uBAAuB,6BAA6B,MAAM,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,GAAG,CAAM,EAAC,SAAS,CAAC,UAAU,yBAAyB,4BAA4B,6BAA6B,2BAA2B,MAAM,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,UAAU,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAG,EAAC,UAAU,yBAAyB,4BAA4B,6BAA6B,2BAA2B,MAAM,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAG,EAAC,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,UAAU,yBAAyB,4BAA4B,6BAA6B,2BAA2B,MAAM,gBAAgB,mBAAmB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAG,EAAC,UAAU,yBAAyB,uBAAuB,0CAA0C,6BAA6B,uBAAuB,6BAA6B,MAAM,gBAAgB,yBAAyB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAG,EAAC,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAG,EAAC,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,UAAU,CAAC,gBAAgB,mBAAmB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAG,CAAC,EAAC,GAAG,GAAqB,CAAC,UAAU,oBAAoB,aAAa,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ,EAA0B,GAAmB,GAAG,EAAE,CAAC,YAAY,KAAK,WAAW,KAAK,MAAM,GAAmB,OAAO,QAAQ,GAAG,GAAkB,EAAU,CAAC,GAAG,CAAC,UAAU,SAAS,UAAU,QAAS,CAAC,CAAC,EAAC,UAAU,oBAAoB,iBAAiB,eAAA,EAAqB,EAAC,UAAU,oBAAoB,+BAA+B,eAAA,EAAqB,EAAC,UAAU,oBAAoB,sBAAsB,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ,EAA0B,GAAmB,GAAG,EAAE,CAAC,YAAY,KAAK,WAAW,KAAK,MAAM,GAAmB,OAAO,QAAQ,GAAG,GAAkB,EAAU,CAAC,GAAG,CAAC,UAAU,SAAS,UAAU,QAAS,CAAC,CAAC,EAAC,UAAU,oBAAoB,yBAAyB,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ,EAA0B,GAAmB,GAAG,EAAE,CAAC,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,2EAA4E,CAAC,EAAC,UAAU,gBAAe,qBAAwB,wBAAwB,eAAA,EAAqB,EAAC,UAAU,oBAAoB,iBAAkB,EAAC,UAAU,oBAAoB,cAAc,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ,EAA0B,GAAmB,GAAG,EAAE,CAAC,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,2EAA4E,CAAC,EAAC,UAAU,oBAAoB,aAAa,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ,EAA0B,GAAmB,GAAG,EAAE,CAAC,YAAY,KAAK,WAAW,KAAK,MAAM,GAAmB,OAAO,QAAQ,GAAG,GAAkB,EAAU,CAAC,GAAG,CAAC,UAAU,SAAS,UAAU,QAAS,CAAC,CAAC,EAAC,UAAU,oBAAoB,OAAQ,EAAC,UAAU,oBAAoB,uBAAuB,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ,EAA0B,GAAmB,GAAG,EAAE,CAAC,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,2EAA4E,CAAC,CAAC,EAAC,EAAY,EAAe,CAAC,SAAS,CAAC,GAAa,EAAe,EAAKD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,GAAG,GAAkB,EAAU,CAAC,GAAG,CAAC,UAAU,SAAS,UAAU,QAAS,CAAC,EAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,GAAG,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,CAAC,YAAY,IAAI,WAAW,IAAI,OAAO,OAAO,GAAmB,OAAO,QAAQ,UAAU,GAAG,GAAkB,EAAU,CAAC,GAAG,CAAC,UAAU,SAAS,UAAU,QAAS,CAAC,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,CAAC,YAAY,IAAI,WAAW,IAAI,OAAO,OAAO,GAAmB,OAAO,QAAQ,UAAU,GAAG,GAAkB,EAAU,CAAC,GAAG,CAAC,UAAU,SAAS,UAAU,QAAS,CAAC,CAAC,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAKE,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,kDAAkD,8BAA8B,6BAA6B,kCAAkC,6BAA6B,6FAA8F,EAAC,SAAS,UAAW,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,qBAAsB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,sBAAsB,oEAAqE,EAAC,KAAK,GAAU,kBAAkB,MAAM,oBAAmB,EAAK,GAAG,GAAqB,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,GAAG,CAAC,UAAU,oDAAoD,YAAY,SAAS,UAAW,EAAC,AAAC,EAAC,CAAC,MAAM,CAAC,OAAQ,CAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,oDAAoD,6BAA6B,kCAAkC,6BAA6B,6FAA8F,EAAC,SAAS,UAAW,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,oDAAoD,6BAA6B,kCAAkC,6BAA6B,6FAA8F,EAAC,SAAS,UAAW,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,oDAAoD,6BAA6B,kCAAkC,6BAA6B,6FAA8F,EAAC,SAAS,UAAW,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,oDAAoD,6BAA6B,kCAAkC,6BAA6B,6FAA8F,EAAC,SAAS,UAAW,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,oDAAoD,6BAA6B,kCAAkC,6BAA6B,6FAA8F,EAAC,SAAS,UAAW,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,oDAAoD,6BAA6B,kCAAkC,6BAA6B,6FAA8F,EAAC,SAAS,UAAW,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,GAAG,CAAC,UAAU,oDAAoD,YAAY,SAAS,UAAW,EAAC,AAAC,EAAC,CAAC,MAAM,CAAC,OAAQ,CAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,GAAG,CAAC,UAAU,oDAAoD,YAAY,SAAS,UAAW,EAAC,AAAC,EAAC,CAAC,MAAM,CAAC,OAAQ,CAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,oDAAoD,6BAA6B,kCAAkC,6BAA6B,6FAA8F,EAAC,SAAS,UAAW,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,CAAC,GAAa,EAAU,EAAe,EAAK,EAA0B,CAAC,GAAG,GAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,GAAG,GAAmB,GAAG,IAAI,GAAmB,QAAQ,KAAK,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,EAAG,EAAC,UAAU,CAAC,OAAO,GAAG,GAAG,GAAmB,GAAG,IAAI,GAAmB,QAAQ,KAAK,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,GAAI,EAAC,UAAU,CAAC,OAAO,GAAG,GAAG,GAAmB,GAAG,IAAI,GAAmB,QAAQ,KAAK,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,GAAI,EAAC,UAAU,CAAC,OAAO,GAAG,GAAG,GAAmB,GAAG,IAAI,GAAmB,QAAQ,KAAK,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,GAAI,EAAC,UAAU,CAAC,OAAO,GAAG,GAAG,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,GAAI,EAAC,UAAU,CAAC,OAAO,GAAG,GAAG,GAAmB,GAAG,IAAI,GAAmB,QAAQ,KAAK,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,EAAG,EAAC,UAAU,CAAC,OAAO,GAAG,GAAG,GAAmB,GAAG,IAAI,GAAmB,QAAQ,KAAK,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,EAAG,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,2BAA4C,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAA+D,CAAC,UAAU,WAAW,OAAO,OAAO,GAAG,YAAY,UAAU,EAAU,SAAS,YAAY,UAAU,EAAU,QAAQ,YAAY,MAAM,OAAO,GAAG,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAY,EAAC,UAAU,CAAC,QAAQ,WAAY,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAKA,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,gFAAgF,6BAA6B,kCAAkC,6BAA6B,gGAAiG,EAAC,SAAS,wBAAyB,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,qBAAsB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,sBAAsB,uEAAwE,EAAC,KAAK,GAAU,SAAS,CAAC,UAAU,sBAAsB,oEAAqE,EAAC,UAAU,sBAAsB,oEAAqE,EAAC,UAAU,sBAAsB,oEAAqE,EAAC,UAAU,sBAAsB,oEAAqE,EAAC,UAAU,sBAAsB,oEAAqE,EAAC,UAAU,sBAAsB,oEAAqE,EAAC,UAAU,sBAAsB,oEAAqE,CAAC,EAAC,kBAAkB,MAAM,oBAAmB,EAAK,GAAG,GAAqB,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,8EAA8E,8BAA8B,6BAA6B,kCAAkC,6BAA6B,6FAA8F,EAAC,SAAS,wBAAyB,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,8EAA8E,8BAA8B,6BAA6B,kCAAkC,6BAA6B,6FAA8F,EAAC,SAAS,wBAAyB,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,8EAA8E,8BAA8B,6BAA6B,kCAAkC,6BAA6B,6FAA8F,EAAC,SAAS,wBAAyB,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,8EAA8E,8BAA8B,6BAA6B,kCAAkC,6BAA6B,6FAA8F,EAAC,SAAS,wBAAyB,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,8EAA8E,8BAA8B,6BAA6B,kCAAkC,6BAA6B,gGAAiG,EAAC,SAAS,wBAAyB,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,8EAA8E,8BAA8B,6BAA6B,kCAAkC,6BAA6B,6FAA8F,EAAC,SAAS,wBAAyB,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,8EAA8E,8BAA8B,6BAA6B,kCAAkC,6BAA6B,gGAAiG,EAAC,SAAS,wBAAyB,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,mDAAmD,YAAY,MAAM,uBAAuB,6FAA8F,EAAC,SAAS,wBAAyB,EAAC,AAAC,EAAC,CAAC,MAAM,CAAC,OAAQ,CAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,mDAAmD,YAAY,MAAM,uBAAuB,6FAA8F,EAAC,SAAS,wBAAyB,EAAC,AAAC,EAAC,CAAC,MAAM,CAAC,OAAQ,CAAC,EAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,8EAA8E,8BAA8B,6BAA6B,kCAAkC,6BAA6B,gGAAiG,EAAC,SAAS,wBAAyB,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,CAAC,EAAC,CAAC,GAAa,EAAU,EAAe,EAAK,EAA0B,CAAC,GAAG,GAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,GAAG,GAAmB,GAAG,IAAI,GAAmB,QAAQ,KAAK,IAAI,EAAE,GAAI,EAAC,UAAU,CAAC,OAAO,GAAG,GAAG,GAAmB,GAAG,IAAI,GAAmB,QAAQ,KAAK,IAAI,EAAE,GAAI,EAAC,UAAU,CAAC,OAAO,GAAG,GAAG,GAAmB,GAAG,IAAI,GAAmB,QAAQ,KAAK,IAAI,EAAE,GAAI,EAAC,UAAU,CAAC,OAAO,GAAG,GAAG,GAAmB,GAAG,IAAI,GAAmB,QAAQ,KAAK,IAAI,EAAE,GAAI,EAAC,UAAU,CAAC,OAAO,GAAG,GAAG,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,GAAI,EAAC,UAAU,CAAC,OAAO,GAAG,GAAG,GAAmB,GAAG,IAAI,GAAmB,QAAQ,KAAK,IAAI,EAAE,GAAI,EAAC,UAAU,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAG,GAAmB,GAAG,IAAI,GAAmB,QAAQ,KAAK,IAAI,EAAE,GAAI,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,0BAA2C,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAK,GAA+D,CAAC,UAAU,WAAW,OAAO,OAAO,GAAG,YAAY,UAAU,qKAAqK,SAAS,YAAY,UAAU,WAAW,QAAQ,YAAY,MAAM,OAAO,GAAG,GAAqB,CAAC,UAAU,CAAC,UAAU,sKAAuK,EAAC,UAAU,CAAC,UAAU,uKAAuK,QAAQ,WAAY,EAAC,UAAU,CAAC,UAAU,uKAAuK,QAAQ,WAAY,EAAC,UAAU,CAAC,UAAU,uKAAuK,QAAQ,WAAY,EAAC,UAAU,CAAC,UAAU,uKAAuK,QAAQ,WAAY,EAAC,UAAU,CAAC,UAAU,sKAAuK,EAAC,UAAU,CAAC,UAAU,uKAAuK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,CAAC,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,GAAc,EAAe,EAAK,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,GAAc,EAAe,EAAKF,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,GAAG,GAAkB,EAAU,CAAC,GAAG,CAAC,UAAU,SAAS,UAAU,QAAS,CAAC,EAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,kBAAkB,GAAmB,GAAG,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ,GAA2B,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,CAAC,YAAY,IAAI,WAAW,IAAI,OAAO,QAAQ,GAAmB,OAAO,QAAQ,iBAAiB,GAAG,GAAkB,EAAU,CAAC,GAAG,CAAC,UAAU,SAAS,UAAU,QAAS,CAAC,CAAC,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAC,GAAc,EAAe,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,+BAA8B,EAAsB,mBAAiB,SAAS,YAAY,MAAM,yBAAyB,uBAAuB,2FAA2F,6BAA6B,uBAAuB,6BAA6B,MAAM,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAI,EAAC,kBAAkB,GAAmB,GAAG,GAAqB,CAAC,UAAU,CAAC,sBAAA,EAA4B,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,CAAc,EAAKE,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,8EAA8E,8BAA8B,4BAA4B,gGAAiG,EAAC,SAAsB,EAAK,EAAO,KAAK,kBAAkB,OAAO,MAAM,CAAC,gBAAgB,yPAA0P,EAAC,SAAS,KAAM,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,qBAAsB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,sBAAsB,mGAAmG,mDAAmD,WAAY,EAAC,KAAK,EAAU,kBAAkB,GAAmB,kBAAkB,MAAM,oBAAmB,EAAK,GAAG,GAAqB,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,mBAAmB,sDAAsD,8EAA8E,8BAA8B,4BAA4B,gGAAiG,EAAC,SAAsB,EAAK,EAAO,KAAK,kBAAkB,OAAO,MAAM,CAAC,gBAAgB,yPAA0P,EAAC,SAAS,KAAM,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,kBAAkB,EAAmB,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAE,EAAC,CAAOC,GAAI,CAAC,kFAAkF,kFAAkF,sGAAsG,gMAAgM,uTAAuT,uRAAuR,oSAAoS,gHAAgH,iJAAiJ,qKAAqK,6LAA6L,gMAAgM,yIAAyI,2PAA2P,sIAAsI,yzBAAyzB,0FAA0F,+HAA+H,8DAA8D,yFAAyF,ibAAib,0LAA0L,kEAAkE,kEAAkE,8EAA8E,+JAA+J,gFAAgF,wLAAwL,qGAAqG,kRAAkR,gKAAgK,6tBAA6tB,gFAAgF,qGAAqG,gKAAgK,6aAA6a,2LAA2L,qKAAqK,+aAA+a,+DAA+D,uIAAuI,8EAA8E,4EAA4E,6GAA6G,kRAAkR,y/BAAy/B,+SAA+S,gHAAgH,y/BAAy/B,4RAA4R,yHAAyH,qIAAqI,iIAAiI,0EAA0E,yUAAyU,gFAAgF,gEAAgE,mbAAmb,GAAA,GAAmB,GAAA,GAAoB,+bAAgc,EASj05C,GAAgB,EAAQ,GAAUA,GAAI,eAAe,IAAgB,GAAgB,GAAgB,YAAY,YAAY,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAI,EAAC,EAAoB,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAY,EAAC,aAAa,CAAC,SAAS,QAAQ,cAAc,aAAa,kBAAkB,iBAAiB,uBAAuB,sBAAsB,wBAAwB,yBAAyB,aAAa,8BAA+B,EAAC,MAAM,UAAU,KAAK,EAAY,IAAK,EAAC,UAAU,CAAC,wBAAwB,8GAA8G,MAAM,QAAQ,KAAK,EAAY,eAAgB,EAAC,UAAU,CAAC,aAAa,WAAW,iBAAgB,EAAM,MAAM,QAAQ,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,aAAa,yBAAyB,iBAAgB,EAAK,MAAM,UAAU,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,aAAa,MAAM,iBAAgB,EAAM,MAAM,MAAM,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,wBAAwB,+GAA+G,MAAM,aAAa,KAAK,EAAY,eAAgB,EAAC,UAAU,CAAC,wBAAwB,2GAA2G,MAAM,sBAAsB,KAAK,EAAY,eAAgB,EAAC,UAAU,CAAC,wBAAwB,uHAAuH,MAAM,8BAA8B,KAAK,EAAY,eAAgB,EAAC,UAAU,CAAC,aAAa,WAAW,iBAAgB,EAAM,MAAM,iBAAiB,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,MAAM,OAAO,KAAK,EAAY,IAAK,EAAC,UAAU,CAAC,cAAa,EAAK,MAAM,oBAAoB,KAAK,EAAY,OAAQ,EAAC,UAAU,CAAC,cAAa,EAAK,MAAM,cAAc,KAAK,EAAY,OAAQ,CAAC,EAAC,CAAC,EAAS,GAAgB,CAAC,CAAC,eAAc,EAAK,MAAM,CAAC,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,eAAe,OAAO,SAAS,MAAM,SAAS,IAAI,uGAAuG,OAAO,KAAM,CAAC,CAAC,EAAC,GAAG,GAAmB,GAAG,EAAA,GAA0C,CAAC,GAAG,EAAA,GAA2C,AAAC,EAAC,CAAC,8BAA6B,CAAK,EAAC,CACnmI,GAAqB,CAAA,QAAW,OAAS,MAAQ,qBAAuB,CAAA,sBAAyB,GAAI,CAAC,UAAW,MAAQ,sBAAwB,wBAA0B,CAAE,cAAe,0BAA4B,6BAA+B,0CAA4C,4iBAAopB,6BAA+B,4BAA8B,oBAAsB,qSAAmV,MAAO,CAAC,qBAAsB,CAAA,KAAQ,UAAW,CAAC,CAAC"}