{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/lodash.js@0.3.0", "ssg:https://framerusercontent.com/modules/AHY1z1xp5QsxaZBkEL9H/7Qvf2RhlgA8L1UHMchaV/Slider.js", "ssg:https://framerusercontent.com/modules/NRKVbMFYrBaqL0rx532t/o1XmI0MqgEIlgDIKXNDR/Audio.js", "ssg:https://framerusercontent.com/modules/4VBNNembYDuO23ewMPIh/95udzv137VO02ZvRDPup/tUrCKYgrf.js", "ssg:https://framerusercontent.com/modules/ScWCYljhqGK2Hy403ikt/Os0VBxVYctoTVSZDcloh/ipNn7BHMZ.js"],
  "sourcesContent": ["/** Error message constants. */ var FUNC_ERROR_TEXT = \"Expected a function\";\n/* Built-in method references for those with the same name as other `lodash` methods. */ var nativeMax = Math.max, nativeMin = Math.min;\n/** Used as references for various `Number` constants. */ var NAN = 0 / 0;\n/** Used to match leading and trailing whitespace. */ var reTrim = /^\\s+|\\s+$/g;\n/** Used to detect bad signed hexadecimal string values. */ var reIsBadHex = /^[-+]0x[0-9a-f]+$/i;\n/** Used to detect binary string values. */ var reIsBinary = /^0b[01]+$/i;\n/** Used to detect octal string values. */ var reIsOctal = /^0o[0-7]+$/i;\n/** Built-in method references without a dependency on `root`. */ var freeParseInt = parseInt;\nvar now = function() {\n    return Date.now();\n};\nfunction isObject(value) {\n    var type = typeof value;\n    return value != null && (type == \"object\" || type == \"function\");\n}\nfunction isObjectLike(value) {\n    return value != null && typeof value == \"object\";\n}\nfunction toNumber(value) {\n    if (typeof value == \"number\") {\n        return value;\n    }\n    if (typeof value == \"symbol\") {\n        return NAN;\n    }\n    if (isObject(value)) {\n        var other = typeof value.valueOf == \"function\" ? value.valueOf() : value;\n        value = isObject(other) ? other + \"\" : other;\n    }\n    if (typeof value != \"string\") {\n        return value === 0 ? value : +value;\n    }\n    value = value.replace(reTrim, \"\");\n    var isBinary = reIsBinary.test(value);\n    return isBinary || reIsOctal.test(value) ? freeParseInt(value.slice(2), isBinary ? 2 : 8) : reIsBadHex.test(value) ? NAN : +value;\n}\nexport function debounce(func, wait, options) {\n    var lastArgs, lastThis, maxWait, result, timerId, lastCallTime, lastInvokeTime = 0, leading = false, maxing = false, trailing = true;\n    if (typeof func != \"function\") {\n        throw new TypeError(FUNC_ERROR_TEXT);\n    }\n    wait = toNumber(wait) || 0;\n    if (isObject(options)) {\n        leading = !!options.leading;\n        maxing = \"maxWait\" in options;\n        maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait;\n        trailing = \"trailing\" in options ? !!options.trailing : trailing;\n    }\n    function invokeFunc(time) {\n        var args = lastArgs, thisArg = lastThis;\n        lastArgs = lastThis = undefined;\n        lastInvokeTime = time;\n        result = func.apply(thisArg, args);\n        return result;\n    }\n    function leadingEdge(time) {\n        // Reset any `maxWait` timer.\n        lastInvokeTime = time;\n        // Start the timer for the trailing edge.\n        timerId = setTimeout(timerExpired, wait);\n        // Invoke the leading edge.\n        return leading ? invokeFunc(time) : result;\n    }\n    function remainingWait(time) {\n        var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime, timeWaiting = wait - timeSinceLastCall;\n        return maxing ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke) : timeWaiting;\n    }\n    function shouldInvoke(time) {\n        var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime;\n        // Either this is the first call, activity has stopped and we're at the\n        // trailing edge, the system time has gone backwards and we're treating\n        // it as the trailing edge, or we've hit the `maxWait` limit.\n        return lastCallTime === undefined || timeSinceLastCall >= wait || timeSinceLastCall < 0 || maxing && timeSinceLastInvoke >= maxWait;\n    }\n    function timerExpired() {\n        var time = now();\n        if (shouldInvoke(time)) {\n            return trailingEdge(time);\n        }\n        // Restart the timer.\n        timerId = setTimeout(timerExpired, remainingWait(time));\n    }\n    function trailingEdge(time) {\n        timerId = undefined;\n        // Only invoke if we have `lastArgs` which means `func` has been\n        // debounced at least once.\n        if (trailing && lastArgs) {\n            return invokeFunc(time);\n        }\n        lastArgs = lastThis = undefined;\n        return result;\n    }\n    function cancel() {\n        if (timerId !== undefined) {\n            clearTimeout(timerId);\n        }\n        lastInvokeTime = 0;\n        lastArgs = lastCallTime = lastThis = timerId = undefined;\n    }\n    function flush() {\n        return timerId === undefined ? result : trailingEdge(now());\n    }\n    function debounced() {\n        var time = now(), isInvoking = shouldInvoke(time);\n        lastArgs = arguments;\n        lastThis = this;\n        lastCallTime = time;\n        if (isInvoking) {\n            if (timerId === undefined) {\n                return leadingEdge(lastCallTime);\n            }\n            if (maxing) {\n                // Handle invocations in a tight loop.\n                clearTimeout(timerId);\n                timerId = setTimeout(timerExpired, wait);\n                return invokeFunc(lastCallTime);\n            }\n        }\n        if (timerId === undefined) {\n            timerId = setTimeout(timerExpired, wait);\n        }\n        return result;\n    }\n    debounced.cancel = cancel;\n    debounced.flush = flush;\n    return debounced;\n}\nexport function throttle(func, wait, options) {\n    var leading = true, trailing = true;\n    if (typeof func != \"function\") {\n        throw new TypeError(FUNC_ERROR_TEXT);\n    }\n    if (isObject(options)) {\n        leading = \"leading\" in options ? !!options.leading : leading;\n        trailing = \"trailing\" in options ? !!options.trailing : trailing;\n    }\n    return debounce(func, wait, {\n        leading: leading,\n        maxWait: wait,\n        trailing: trailing\n    });\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"throttle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"debounce\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./lodash.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{animate,transform,motion,useTransform}from\"framer-motion\";import{useRef,useState,useCallback}from\"react\";import{isMotionValue,useOnChange,useAutoMotionValue}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{throttle}from\"https://framer.com/m/framer/lodash.js@0.3.0\";var KnobOptions;(function(KnobOptions){KnobOptions[\"Hide\"]=\"Hide\";KnobOptions[\"Hover\"]=\"Hover\";KnobOptions[\"Show\"]=\"Show\";})(KnobOptions||(KnobOptions={}));/**\n * SLIDER\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 20\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */ export const Slider=withCSS(function Slider(props){const{value:valueProp,trackHeight,fillColor,focusColor,min,max,onChange,onChangeLive,onMax,onMin,trackColor,trackRadius,knobSize,knobColor,constrainKnob,shadow,shouldAnimateChange,transition,overdrag,knobSetting,style}=props;const[hovered,setHovered]=useState(false);const[focused,setFocused]=useState(false);const onCanvas=RenderTarget.current()===RenderTarget.canvas;const shouldAnimate=shouldAnimateChange&&!onCanvas;const isConstrained=constrainKnob&&knobSetting===KnobOptions.Show;const showKnob=knobSetting!==KnobOptions.Hide;const input=useRef();const knobPadding=8;// Main setting function\nconst updateValue=useCallback((newVal,target)=>{throttledInputUpdate(newVal);if(onChange)onChange(newVal);if(shouldAnimate)animate(target,newVal,transition);else requestAnimationFrame(()=>target.set(newVal));},[transition,shouldAnimate,onChange]);// \"value\" is the source of truth\n// It can be controlled via props with a motionvalue or number 0.0 - 1.0\n// Local changes are always allowed and are reported back up using \"onChange\" callback\nconst value=useAutoMotionValue(valueProp,{onChange:updateValue,transform:value=>transform(value,[0,100],[min,max])});const knobX=useTransform(value,[min,max],[\"0%\",\"100%\"]);const normalizedValue=useTransform(value,[min,max],[0,1]);const throttledInputUpdate=useCallback(throttle(val=>{var ref;if((ref=input.current)===null||ref===void 0?void 0:ref.value)input.current.value=val;},100),[input]);// Live updating callback\nuseOnChange(value,val=>{if(isMotionValue(valueProp))throttledInputUpdate(val);if(onMax&&val>=max)onMax();if(onMin&&val<=min)onMin();if(onChangeLive)onChangeLive(val);});// Read changes from input element\nconst handleInputChange=e=>{updateValue(parseFloat(e.target.value),value);};// Handle tapping on the know to trigger update\nconst handleMouseDown=e=>{if(parseFloat(e.target.value)!==0)updateValue(parseFloat(e.target.value),value);};const handleMouseUp=()=>{};const totalKnobWidth=showKnob?knobSize+knobPadding:knobPadding;const totalHeight=Math.max(knobSize+knobPadding,trackHeight);return /*#__PURE__*/ _jsxs(\"div\",{className:\"framer-default-slider\",onMouseEnter:()=>setHovered(true),onMouseLeave:()=>setHovered(false),style:{position:\"relative\",...style,alignItems:\"center\",justifyContent:\"flex-start\",border:`0px solid ${focusColor}`,\"--framer-default-slider-height\":totalHeight,\"--framer-default-slider-width\":totalKnobWidth},children:[/*#__PURE__*/ _jsx(\"input\",{ref:input,style:{flexShrink:0,minHeight:totalHeight,opacity:0,margin:0,display:\"flex\",...style,WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",...!isConstrained&&{width:`calc(100% + ${totalKnobWidth}px)`,marginLeft:-totalKnobWidth/2}},onFocus:()=>setFocused(true),onBlur:()=>setFocused(false),type:\"range\",min:min,max:max,defaultValue:-1,step:\"any\",onChange:handleInputChange,onMouseDown:handleMouseDown,onMouseUp:handleMouseUp}),/*#__PURE__*/ _jsx(\"div\",{style:{background:trackColor,position:\"absolute\",top:`calc(50% - ${Math.ceil(trackHeight/2)}px)`,borderRadius:trackRadius,display:\"flex\",height:trackHeight,width:\"100%\",transformOrigin:\"left\",pointerEvents:\"none\",overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(motion.div,{style:{height:trackHeight,width:\"100%\",background:fillColor,scaleX:normalizedValue,position:\"absolute\",top:`calc(50% - ${Math.ceil(trackHeight/2)}px)`,transformOrigin:\"left\",pointerEvents:\"none\"}})}),/*#__PURE__*/ _jsx(motion.div,{style:{x:knobX,position:\"absolute\",display:\"flex\",top:`calc(50% - ${Math.floor(knobSize/2)}px)`,pointerEvents:\"none\",...isConstrained?{width:`calc(100% - ${knobSize}px`,left:0}:{width:`100%`,left:-knobSize/2}},children:/*#__PURE__*/ _jsx(motion.div,{initial:false,animate:{scale:hovered&&knobSetting===KnobOptions.Hover||knobSetting===KnobOptions.Show?1:0},transition:{type:\"spring\",stiffness:900,damping:40},style:{transformOrigin:\"50% 50%\",width:knobSize,height:knobSize,borderRadius:\"50%\",background:knobColor,pointerEvents:\"none\",boxShadow:`0px 1px 2px 0px ${shadow}, \n                                0px 2px 4px 0px ${shadow}, \n                                0px 4px 8px 0px ${shadow}`}})})]});},[\".framer-default-slider input[type=range] {  width: 100%; height: 100% background:transparent margin: 0;}\",\".framer-default-slider input[type=range]:focus { outline: none; }\",\".framer-default-slider input[type=range]::-ms-track { width: 100%; cursor: pointer; background: transparent; border-color: transparent; color: transparent; }\",\".framer-default-slider input[type=range]::-webkit-slider-thumb { height: var(--framer-default-slider-height, 0px); width: var(--framer-default-slider-width, 0px); border-radius: 0;  background: none; }\",\".framer-default-slider input[type=range]::-moz-range-thumb { height: var(--framer-default-slider-height, 0px); width: var(--framer-default-slider-width, 0px); border-radius: 0;  background: none; }\",\".framer-default-slider input[type=range]::-ms-thumb  { height: var(--framer-default-slider-height, 0px); width: var(--framer-default-slider-width, 0px); border-radius: 0;  background: none; }\",]);Slider.displayName=\"Slider\";Slider.defaultProps={height:20,width:200,trackHeight:4,fillColor:\"#09F\",trackColor:\"#DDD\",knobColor:\"#FFF\",focusColor:\"rgba(0, 153, 255,0)\",shadow:\"rgba(0,0,0,0.1)\",knobSize:20,overdrag:true,min:0,max:100,value:50,trackRadius:5,knobSetting:KnobOptions.Show,constrainKnob:false,transition:{type:\"spring\",delay:0,stiffness:750,damping:50},shouldAnimateChange:true};addPropertyControls(Slider,{fillColor:{title:\"Tint\",type:ControlType.Color},trackColor:{title:\"Track\",type:ControlType.Color},knobColor:{title:\"Knob\",type:ControlType.Color},shadow:{type:ControlType.Color,title:\"Shadow\"},// focusColor: {\n//     title: \"Focus\",\n//     type: ControlType.Color,\n// },\nshouldAnimateChange:{type:ControlType.Boolean,title:\"Changes\",enabledTitle:\"Animate\",disabledTitle:\"Instant\"},transition:{type:ControlType.Transition,defaultValue:Slider.defaultProps.transition},knobSetting:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Knob\",options:[\"Hide\",\"Hover\",\"Show\"]},constrainKnob:{type:ControlType.Boolean,title:\"Constrain\",enabledTitle:\"Yes\",disabledTitle:\"No\",hidden:({knobSetting})=>knobSetting!==KnobOptions.Show},knobSize:{type:ControlType.Number,title:\"Knob\",min:10,max:100,hidden:({knobSetting})=>knobSetting===KnobOptions.Hide},value:{type:ControlType.Number,title:\"Value\",min:0,max:100,unit:\"%\"},trackHeight:{title:\"Height\",type:ControlType.Number,min:0},min:{title:\"Min\",type:ControlType.Number,displayStepper:true},trackRadius:{type:ControlType.Number,displayStepper:true,min:0,max:200,title:\"Radius\"},max:{title:\"Max\",type:ControlType.Number,displayStepper:true},onChange:{type:ControlType.EventHandler},onMax:{type:ControlType.EventHandler},onMin:{type:ControlType.EventHandler}});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Slider\":{\"type\":\"reactComponent\",\"name\":\"Slider\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"20\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Slider.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useRef,useState,useEffect,useCallback}from\"react\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{MotionValue,motion,animate,useMotionValueEvent}from\"framer-motion\";import{useOnEnter,usePadding,useRadius,paddingControl,borderRadiusControl,useOnChange,containerStyles,secondsToMinutes,useAutoMotionValue,useOnExit,fontStack,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{Slider}from\"https://framerusercontent.com/modules/AHY1z1xp5QsxaZBkEL9H/7Qvf2RhlgA8L1UHMchaV/Slider.js\";const isMotionValue=v=>v instanceof MotionValue;var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));function PlayTime(props){const{currentTime,startTime}=props;const[playTime,setPlayTime]=useState(\"0:00\");useEffect(()=>{setPlayTime(secondsToMinutes(startTime));},[startTime]);useOnChange(currentTime,latest=>{setPlayTime(secondsToMinutes(latest));});return /*#__PURE__*/_jsx(_Fragment,{children:playTime});}const checkIfPlaying=player=>player.current&&!player.current.paused&&!player.current.ended&&player.current.readyState>2;/**\n * AUDIO\n *\n * Audio player component optimized for smart components.\n *\n * @framerIntrinsicWidth 240\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export const Audio=withCSS(function Audio(props){var _props_style;const{playing,background,progressColor,trackHeight,gap,trackColor,srcUrl,srcType,srcFile,loop,font,autoPlay,progress,volume,showTime,showTrack,playPauseCursor,showPlayPause,onTimeUpdate,onMetadata,onPlay,onPause,onEnd,pauseOnExit,onPlayGlobalPauseOption}=props;let iconCursor=\"pointer\";if(!!playPauseCursor){iconCursor=playPauseCursor;}else if(props===null||props===void 0?void 0:(_props_style=props.style)===null||_props_style===void 0?void 0:_props_style.cursor){iconCursor=props.style.cursor;}// Defaults to false, only switches to play if possible\nconst[isPlaying,setIsPlaying]=useState(false);const[duration,setDuration]=useState(0);// Audio element ref and non-state info\nconst player=useRef();const playerInfo=useRef({ready:false,animation:null});// Track progress in ms, always in sync with audio element\nconst trackProgress=useAutoMotionValue(progress,{transform:value=>value*.01,onChange:(newValue,value)=>{if(player.current.duration){player.current.currentTime=newValue*player.current.duration;handlePlayStateUpdate(\"motionHook\");}}});const padding=usePadding(props);const borderRadius=useRadius(props);const{fontSize}=useFontControls(props);const shouldPlay=RenderTarget.current()===RenderTarget.preview;const shouldPausePlayers=onPlayGlobalPauseOption===\"pause\";const url=srcType===\"URL\"?srcUrl:srcFile;const shouldAutoPlay=shouldPlay&&playing;// Sync UI with state of the audio element\n// TODO look into better more performant ways of doing this\nconst handlePlayStateUpdate=useCallback(_=>{var _playerInfo_current_animation,_playerInfo_current;const currentDuration=player.current.duration;const currentTime=player.current.currentTime;(_playerInfo_current=playerInfo.current)===null||_playerInfo_current===void 0?void 0:(_playerInfo_current_animation=_playerInfo_current.animation)===null||_playerInfo_current_animation===void 0?void 0:_playerInfo_current_animation.stop();if(Math.abs(currentTime-trackProgress.get())>.5){trackProgress.set(currentTime);}if(!shouldPlay)return;const isNowPlaying=checkIfPlaying(player);if(isPlaying!==isNowPlaying)setIsPlaying(isNowPlaying);if(isNowPlaying&&shouldPlay){playerInfo.current.animation=animate(trackProgress,currentDuration,{type:\"tween\",ease:\"linear\",duration:currentDuration-currentTime});}},[shouldPlay,isPlaying]);const pauseAllAudioPlayers=()=>{const audioPlayerElements=document.querySelectorAll(\".framer-audio\");audioPlayerElements.forEach(el=>{el.pause();});};// Always use this for playing audio\n// No logic in here as it is async & can fail\nconst playAudio=()=>{if(shouldPlay)player.current.play().catch(e=>{})// It's likely fine, swallow error\n;};const pauseAudio=()=>{var _playerInfo_current_animation,_playerInfo_current;player.current.pause();(_playerInfo_current=playerInfo.current)===null||_playerInfo_current===void 0?void 0:(_playerInfo_current_animation=_playerInfo_current.animation)===null||_playerInfo_current_animation===void 0?void 0:_playerInfo_current_animation.stop();};const handleMetadata=()=>{if(onMetadata)onMetadata({duration:player.current.duration});setDuration(player.current.duration);};const initProgress=()=>{if(!isMotionValue(progress)){player.current.currentTime=progress*.01*player.current.duration;}};const handleReady=()=>{// This tries to run on every pause\n// We use playerInfo.ready to only call on initial load of a source\nif(!playerInfo.current.ready){if(shouldAutoPlay)playAudio();playerInfo.current.ready=true;initProgress();}};// Handle seek event from slider\nconst handleSeek=val=>{if(player.current.currentTime){player.current.currentTime=val;handlePlayStateUpdate(\"handleSeek\");}};const handleEnd=()=>{if(onEnd)onEnd();};const handlePlayClick=()=>{if(shouldPausePlayers)pauseAllAudioPlayers();playAudio();};// Control audio via props\nuseEffect(()=>{if(shouldPlay){// In preview when prop changes, pause/play\nif(playing===true)playAudio();else pauseAudio();}else{// Only set the state for canvas use\nif(playing===true)setIsPlaying(true);else setIsPlaying(false);}},[playing]);useEffect(()=>{var _player_current;// Do this in an effect to correct on optimised sites\nif((_player_current=player.current)===null||_player_current===void 0?void 0:_player_current.duration)setDuration(player.current.duration);},[]);// Call event callbacks\nuseEffect(()=>{if(playerInfo.current.ready&&isPlaying&&onPlay)onPlay();else if(playerInfo.current.ready&&onPause)onPause();},[isPlaying]);// Volume Control\nuseEffect(()=>{player.current.volume=volume/100;},[volume]);// Reset ready state when src changes\nuseEffect(()=>{playerInfo.current.ready=false;},[srcFile,srcType,srcUrl]);// Play on navigation\nuseOnEnter(()=>{if(shouldAutoPlay)playAudio();});useOnExit(()=>{if(pauseOnExit)player.current.pause();});useMotionValueEvent(trackProgress,\"change\",val=>{var _player_current;const progressPercent=((_player_current=player.current)===null||_player_current===void 0?void 0:_player_current.duration)?val/player.current.duration*100:null;if(onTimeUpdate){onTimeUpdate(val,progressPercent,secondsToMinutes(val));}});const iconStyles={marginRight:showTime||showTrack?gap:0,flexShrink:0,cursor:iconCursor};return /*#__PURE__*/_jsxs(\"div\",{style:{...containerStyles,position:\"relative\",overflow:\"hidden\",background,padding,borderRadius},children:[/*#__PURE__*/_jsx(\"audio\",{src:url,loop:loop,className:\"framer-audio\",ref:player,preload:\"metadata\",autoPlay:shouldAutoPlay,onLoadedMetadata:handleMetadata,onCanPlayThrough:handleReady,// Listen to all events for status changes\nonPlaying:()=>handlePlayStateUpdate(\"playingEvent\"),onPlay:()=>handlePlayStateUpdate(\"playEvent\"),onSeeked:()=>handlePlayStateUpdate(\"seekEvent\"),onPause:()=>handlePlayStateUpdate(\"pauseEvent\"),onEnded:()=>handleEnd()}),showPlayPause&&/*#__PURE__*/_jsx(_Fragment,{children:isPlaying?/*#__PURE__*/_jsx(PauseIcon,{width:16,whileTap:{scale:.9},onClick:()=>pauseAudio(),style:iconStyles,\"aria-label\":\"pause audio\"}):/*#__PURE__*/_jsx(PlayIcon,{width:16,whileTap:{scale:.9},onClick:handlePlayClick,style:iconStyles,\"aria-label\":\"play audio\"})}),showTime&&/*#__PURE__*/_jsxs(\"p\",{style:{userSelect:\"none\",color:\"#333\",fontWeight:500,letterSpacing:-.25,margin:0,flexShrink:0,fontFamily:fontStack,fontVariantNumeric:\"tabular-nums\",marginRight:showTrack?gap:0,...font},children:[/*#__PURE__*/_jsx(PlayTime,{startTime:duration*(isMotionValue(progress)?progress.get():progress*.01),currentTime:trackProgress}),/*#__PURE__*/_jsx(\"span\",{style:{padding:\"0 2px\"},children:\"/\"}),duration>0?secondsToMinutes(duration):\"1:34\"]}),showTrack&&/*#__PURE__*/_jsx(Slider,{style:{width:\"100%\"},value:trackProgress,fillColor:progressColor,knobSetting:\"Hover\",shadow:`rgba(0,0,0,0)`,knobSize:10,knobColor:progressColor,onChange:handleSeek,shouldAnimateChange:false,min:0,max:duration,trackColor:trackColor})]});},[\".framer-audio-icon { outline: none; }\",\".framer-audio-icons:focus-visible { outline: auto; }\"]);Audio.defaultProps={background:\"#EBEBEB\",trackColor:\"#FFFFFF\",font:{fontSize:12},progressColor:\"#333333\",srcUrl:\"https://assets.mixkit.co/music/preview/mixkit-tech-house-vibes-130.mp3\",srcType:\"URL\",pauseOnExit:true,borderRadius:8,padding:15,progress:0,volume:25,loop:false,playing:true,autoPlay:true,showTime:true,showTrack:true,showPlayPause:true,onPlayGlobalPauseOption:\"continue\",trackHeight:4,gap:15,height:50,width:240};addPropertyControls(Audio,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\".../example.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\",\"mp3\",\"wav\",\"m4a\"],hidden(props){return props.srcType===\"URL\";}},playing:{title:\"Playing\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},loop:{title:\"Loop\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},// autoPlay: {\n//     type: ControlType.Boolean,\n//     title: \"Autoplay\",\n//     enabledTitle: \"Yes\",\n//     disabledTitle: \"No\",\n// },\nprogress:{title:\"Progress\",type:ControlType.Number,max:100,min:0,unit:\"%\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\"},progressColor:{title:\"Progress\",type:ControlType.Color,defaultValue:Audio.defaultProps.progressColor},trackColor:{title:\"Track\",type:ControlType.Color,defaultValue:Audio.defaultProps.trackColor},background:{title:\"Player\",type:ControlType.Color,defaultValue:Audio.defaultProps.background},font:{title:\"Font\",// @ts-ignore \u2013 Internal\ntype:ControlType.Font,displayFontSize:true},...paddingControl,...borderRadiusControl,gap:{type:ControlType.Number,min:0,max:100,displayStepper:true},showPlayPause:{type:ControlType.Boolean,title:\"Play/Pause\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},showTrack:{type:ControlType.Boolean,title:\"Track\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},showTime:{type:ControlType.Boolean,title:\"Time\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},pauseOnExit:{type:ControlType.Boolean,title:\"On Leave\",enabledTitle:\"Pause\",disabledTitle:\"Continue\"},onPlayGlobalPauseOption:{type:ControlType.Enum,title:\"On Play\",options:[\"continue\",\"pause\"],optionTitles:[\"Continue All\",\"Pause All\"]},onPlay:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onEnd:{type:ControlType.EventHandler},onTimeUpdate:{type:ControlType.EventHandler}});const trackStyle={borderRadius:10,width:\"100%\",overflow:\"hidden\"};const trackParentStyle={position:\"relative\",border:\"1px solid red\",display:\"flex\",alignItems:\"center\",height:\"100%\",width:\"100%\"};function PlayIcon(props){return /*#__PURE__*/_jsx(motion.svg,{...props,className:\"framer-audio-icon\",xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 16 16\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M 5.379 1.292 C 4.968 1.033 4.449 1.017 4.023 1.251 C 3.598 1.486 3.334 1.933 3.333 2.419 L 3.333 13.581 C 3.334 14.067 3.598 14.514 4.023 14.749 C 4.449 14.983 4.968 14.967 5.379 14.708 L 14.215 9.127 C 14.602 8.883 14.836 8.457 14.836 8 C 14.836 7.543 14.602 7.117 14.215 6.873 Z\",fill:\"#333\"})});}function PauseIcon(props){return /*#__PURE__*/_jsxs(motion.svg,{...props,className:\"framer-audio-icon\",xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 16 16\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M 3 3 C 3 2.448 3.448 2 4 2 L 6 2 C 6.552 2 7 2.448 7 3 L 7 13 C 7 13.552 6.552 14 6 14 L 4 14 C 3.448 14 3 13.552 3 13 Z\",fill:\"#343434\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M 9 3 C 9 2.448 9.448 2 10 2 L 12 2 C 12.552 2 13 2.448 13 3 L 13 13 C 13 13.552 12.552 14 12 14 L 10 14 C 9.448 14 9 13.552 9 13 Z\",fill:\"#343434\"})]});}\nexport const __FramerMetadata__ = {\"exports\":{\"Audio\":{\"type\":\"reactComponent\",\"name\":\"Audio\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"240\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"50\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Audio.map", "// Generated by Framer (508aa67)\nvar _componentPresets_fonts,_componentPresets_fonts1,_componentPresets_fonts2,_componentPresets_fonts3,_componentPresets_fonts4,_componentPresets_fonts5;import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ControlType,cx,getFontsFromComponentPreset,getFontsFromSharedStyle,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as componentPresets from\"https://framerusercontent.com/modules/bGIb3kfzf7mZTpwlZm2N/1OHbmYUfVkbCNsDzgYfJ/componentPresets.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/rvxNqsIGQPONscdlPdZZ/7ncZ7MxJQbAoh3ECD2Vn/dAhlW4PlA.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/CM6i70lFSosN1Mh3GJJ6/hjWI093HD2HgDKOwWmgk/etr1gJbwU.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/DBpZbH1SxarXJCfaKtGL/qDR5f0x6KRij6d5JmHyX/flfOKc9fd.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/VRXhcCfUa4cRVhtEnT4p/3lkE4zKHBmpTphElnBy4/HL973KUy0.js\";import*as sharedStyle9 from\"https://framerusercontent.com/modules/wK4fZDCC34l7GWXmJEEk/IqZJ9W9OTWq5HEhSZyab/mNgGv_6u5.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/UMVa3p3i5MwBeJQ7kIw0/AncXTFSwu9WVrbw65APi/pqDoA3gZf.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/a3XgistHQf0rAtfkGnch/hkyaFWR0DZFoteoytnbt/sS7LJm4Am.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/LQBD8DIibedMldo4EOtq/4d7BkCZsN0AJPMINnggh/Y46rr78WW.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/Lk3qxI3cJ2PHwASNamVr/InY3nOwN4Y5RkQKtS1Lj/YPU4dVail.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/4V01CTpNjBK0dCzDXz18/IXlv6l8DVvNL8heeVLV9/yV7wbrb1V.js\";const cycleOrder=[\"YzhUzSgw9\",\"pQbCh30lL\",\"sGs_WQP5S\",\"jwbDiDjlT\",\"L1dVsPXwU\",\"mnmgD2dWk\",\"KXl9BnXfJ\",\"dNNho_MUD\",\"fjMn_7bap\",\"CuVQ0Y62B\",\"vXh_9n2dp\",\"P_tYVfCP4\"];const serializationHash=\"framer-w7MMY\";const variantClassNames={CuVQ0Y62B:\"framer-v-lvnn96\",dNNho_MUD:\"framer-v-e9s6m5\",fjMn_7bap:\"framer-v-165mhia\",jwbDiDjlT:\"framer-v-hxjb9k\",KXl9BnXfJ:\"framer-v-e3lwlu\",L1dVsPXwU:\"framer-v-b665hp\",mnmgD2dWk:\"framer-v-1yjfhvr\",P_tYVfCP4:\"framer-v-1agr1wi\",pQbCh30lL:\"framer-v-2uom67\",sGs_WQP5S:\"framer-v-1lfd5v7\",vXh_9n2dp:\"framer-v-1l225we\",YzhUzSgw9:\"framer-v-1aa4w6m\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const isSet=value=>{return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"1000\":\"dNNho_MUD\",BIG_1_1000:\"fjMn_7bap\",BIG_1:\"pQbCh30lL\",BIG_2_1000:\"CuVQ0Y62B\",BIG_2:\"sGs_WQP5S\",BIG_3_1000:\"vXh_9n2dp\",BIG_3:\"jwbDiDjlT\",BIG_4_1000:\"P_tYVfCP4\",BIG_4:\"L1dVsPXwU\",Events:\"mnmgD2dWk\",mobile:\"KXl9BnXfJ\",NO_images:\"YzhUzSgw9\"};const getProps=({cursorItems,description,height,id,image1,image2,image3,image4,textContent,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,Aiu63IVgj:image3!==null&&image3!==void 0?image3:props.Aiu63IVgj,g8coZYPtr:(_ref=title!==null&&title!==void 0?title:props.g8coZYPtr)!==null&&_ref!==void 0?_ref:\"Dreaming the Environmental Crisis by Anna Henry\",GTraObjRZ:(_ref1=textContent!==null&&textContent!==void 0?textContent:props.GTraObjRZ)!==null&&_ref1!==void 0?_ref1:\"ANTH 408 [2022]\",Jc_C7hAzP:image2!==null&&image2!==void 0?image2:props.Jc_C7hAzP,kcPJnhtwL:image4!==null&&image4!==void 0?image4:props.kcPJnhtwL,variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"YzhUzSgw9\",VVmmgUjpE:image1!==null&&image1!==void 0?image1:props.VVmmgUjpE,Xz9eGCrz4:(_ref3=description!==null&&description!==void 0?description:props.Xz9eGCrz4)!==null&&_ref3!==void 0?_ref3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Content\"})}),zTKx7YN5b:cursorItems!==null&&cursorItems!==void 0?cursorItems:props.zTKx7YN5b};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,GTraObjRZ,g8coZYPtr,Xz9eGCrz4,VVmmgUjpE,Jc_C7hAzP,Aiu63IVgj,kcPJnhtwL,zTKx7YN5b,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YzhUzSgw9\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1ffk8ot=activeVariantCallback(async(...args)=>{setVariant(\"pQbCh30lL\");});const onMouseLeave1w38m0k=activeVariantCallback(async(...args)=>{setVariant(\"YzhUzSgw9\");});const onTap1ffk8ot=activeVariantCallback(async(...args)=>{setVariant(\"pQbCh30lL\");});const onMouseLeave175pabg=activeVariantCallback(async(...args)=>{setVariant(\"sGs_WQP5S\");});const onMouseLeave1e48jf5=activeVariantCallback(async(...args)=>{setVariant(\"jwbDiDjlT\");});const onMouseLeave86w1ui=activeVariantCallback(async(...args)=>{setVariant(\"L1dVsPXwU\");});const onMouseEnter1xh6rva=activeVariantCallback(async(...args)=>{setVariant(\"fjMn_7bap\");});const onMouseLeaveqqexlg=activeVariantCallback(async(...args)=>{setVariant(\"dNNho_MUD\");});const onTap1xh6rva=activeVariantCallback(async(...args)=>{setVariant(\"fjMn_7bap\");});const onMouseLeave1jp3w9a=activeVariantCallback(async(...args)=>{setVariant(\"CuVQ0Y62B\");});const onMouseLeave1cobl1h=activeVariantCallback(async(...args)=>{setVariant(\"vXh_9n2dp\");});const onMouseLeave17k9u0k=activeVariantCallback(async(...args)=>{setVariant(\"P_tYVfCP4\");});const onMouseEnter175pabg=activeVariantCallback(async(...args)=>{setVariant(\"sGs_WQP5S\");});const onMouseEnter1jp3w9a=activeVariantCallback(async(...args)=>{setVariant(\"CuVQ0Y62B\");});const onMouseEnter1e48jf5=activeVariantCallback(async(...args)=>{setVariant(\"jwbDiDjlT\");});const onMouseEnter86w1ui=activeVariantCallback(async(...args)=>{setVariant(\"L1dVsPXwU\");});const onMouseEnter1cobl1h=activeVariantCallback(async(...args)=>{setVariant(\"vXh_9n2dp\");});const onMouseEnter17k9u0k=activeVariantCallback(async(...args)=>{setVariant(\"P_tYVfCP4\");});const ref1=React.useRef(null);const visible=isSet(VVmmgUjpE);const isDisplayed=value=>{if(baseVariant===\"mnmgD2dWk\")return false;return value;};const visible1=isSet(Jc_C7hAzP);const visible2=isSet(Aiu63IVgj);const visible3=isSet(kcPJnhtwL);const isDisplayed1=()=>{if([\"pQbCh30lL\",\"fjMn_7bap\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"sGs_WQP5S\",\"CuVQ0Y62B\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"jwbDiDjlT\",\"vXh_9n2dp\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if([\"L1dVsPXwU\",\"P_tYVfCP4\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1aa4w6m\",className,classNames),\"data-framer-name\":\"NO_images\",layoutDependency:layoutDependency,layoutId:\"YzhUzSgw9\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({CuVQ0Y62B:{\"data-framer-name\":\"BIG_2_1000\"},dNNho_MUD:{\"data-framer-name\":\"1000\"},fjMn_7bap:{\"data-framer-name\":\"BIG_1_1000\"},jwbDiDjlT:{\"data-framer-name\":\"BIG_3\"},KXl9BnXfJ:{\"data-framer-name\":\"mobile\"},L1dVsPXwU:{\"data-framer-name\":\"BIG_4\"},mnmgD2dWk:{\"data-framer-name\":\"Events\"},P_tYVfCP4:{\"data-framer-name\":\"BIG_4_1000\"},pQbCh30lL:{\"data-framer-name\":\"BIG_1\"},sGs_WQP5S:{\"data-framer-name\":\"BIG_2\"},vXh_9n2dp:{\"data-framer-name\":\"BIG_3_1000\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-88kpoo\",layoutDependency:layoutDependency,layoutId:\"GPEey7bvj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1jft4ie\",\"data-styles-preset\":\"HL973KUy0\",children:\"ANTH 408 [2022]\"})}),className:\"framer-m3kwhl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sN9WVTKXG\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:1},text:GTraObjRZ,variants:{CuVQ0Y62B:{opacity:.2},fjMn_7bap:{opacity:.2},jwbDiDjlT:{opacity:.2},L1dVsPXwU:{opacity:.2},P_tYVfCP4:{opacity:.2},pQbCh30lL:{opacity:.2},sGs_WQP5S:{opacity:.2},vXh_9n2dp:{opacity:.2}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({KXl9BnXfJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1JlZGFjdGlvbiBSZWd1bGFy\",\"--framer-font-family\":'\"Redaction Regular\", \"Redaction Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.1em\"},children:\"ANTH 408 [2022]\"})}),fonts:[\"CUSTOM;Redaction Regular\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N5bmUgUmVndWxhcg==\",\"--framer-font-family\":'\"Syne Regular\", \"Syne Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-text-alignment\":\"left\"},children:\"The Critical Media Lab supports students in ANTH 408 and ANTH 555 with practical workshops in video, film and sound, as well as screenings and artists talks, all of which are essential resources for students to produce their own films and soundscapes.\"})}),className:\"framer-1b0rkm8\",\"data-framer-name\":\"Content\",fonts:[\"CUSTOM;Syne Regular\"],layoutDependency:layoutDependency,layoutId:\"uYw3x90Gi\",style:{\"--framer-paragraph-spacing\":\"32px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zhajoj\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"ptrkmXwKa\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1jft4ie\",\"data-styles-preset\":\"HL973KUy0\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(0, 0, 0))\"},children:\"Dreaming the Environmental Crisis by Anna Henry\"})}),className:\"framer-1pqdybp\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lly8cVjYU\",style:{\"--extracted-gdpscs\":\"rgb(0, 0, 0)\",opacity:1},text:g8coZYPtr,variants:{CuVQ0Y62B:{opacity:.2},fjMn_7bap:{opacity:.2},jwbDiDjlT:{opacity:.2},L1dVsPXwU:{opacity:.2},P_tYVfCP4:{opacity:.2},pQbCh30lL:{opacity:.2},sGs_WQP5S:{opacity:.2},vXh_9n2dp:{opacity:.2}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({KXl9BnXfJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-bv38mv\",\"data-styles-preset\":\"etr1gJbwU\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(0, 0, 0))\"},children:\"Dreaming the Environmental Crisis by Anna Henry\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"LER7Hzh9L\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"t3N9g9enQ\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"tAd_lKx0i\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:Xz9eGCrz4,className:\"framer-e9a25o\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kCjcj1YVc\",style:{\"--framer-paragraph-spacing\":\"32px\",opacity:1},stylesPresetsClassNames:{a:\"framer-styles-preset-an5i7m\",code:\"framer-styles-preset-1anvqka\",h1:\"framer-styles-preset-1jft4ie\",h2:\"framer-styles-preset-1a9c5kz\",h3:\"framer-styles-preset-7yi4c1\",h4:\"framer-styles-preset-2raezv\",h5:\"framer-styles-preset-v0q6lu\",p:\"framer-styles-preset-s8isxl\"},variants:{CuVQ0Y62B:{opacity:.2},fjMn_7bap:{opacity:.2},jwbDiDjlT:{opacity:.2},L1dVsPXwU:{opacity:.2},P_tYVfCP4:{opacity:.2},pQbCh30lL:{opacity:.2},sGs_WQP5S:{opacity:.2},vXh_9n2dp:{opacity:.2}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({KXl9BnXfJ:{stylesPresetsClassNames:{a:\"framer-styles-preset-an5i7m\",code:\"framer-styles-preset-1anvqka\",h1:\"framer-styles-preset-1jft4ie\",h2:\"framer-styles-preset-1a9c5kz\",h3:\"framer-styles-preset-7yi4c1\",h4:\"framer-styles-preset-2raezv\",h5:\"framer-styles-preset-v0q6lu\",p:\"framer-styles-preset-15cwby2\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z5lhw4\",\"data-framer-name\":\"Gallery\",layoutDependency:layoutDependency,layoutId:\"x9OpEiIBp\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-a1z0np\",layoutDependency:layoutDependency,layoutId:\"ng6JfyldA\",children:isDisplayed(visible)&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`calc((min((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 140px) * 0.6867, 925px) - 40px) * 0.2391)`,...toResponsiveImage(VVmmgUjpE)},className:\"framer-14bx1lh\",\"data-framer-cursor\":zTKx7YN5b,\"data-framer-name\":\"Banner\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"DfOusRuDj\",onMouseEnter:onMouseEnter1ffk8ot,style:{opacity:1},variants:{CuVQ0Y62B:{opacity:.2},jwbDiDjlT:{opacity:.2},L1dVsPXwU:{opacity:.2},P_tYVfCP4:{opacity:.2},sGs_WQP5S:{opacity:.2},vXh_9n2dp:{opacity:.2}},...addPropertyOverrides({CuVQ0Y62B:{background:{alt:\"\",fit:\"fill\",sizes:`calc((min((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.72, 925px) - 40px) * 0.2391)`,...toResponsiveImage(VVmmgUjpE)},onMouseEnter:onMouseEnter1xh6rva,onMouseLeave:onMouseLeave1jp3w9a,onTap:onTap1xh6rva},dNNho_MUD:{background:{alt:\"\",fit:\"fill\",sizes:`calc((min((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.7239, 925px) - 40px) * 0.2391)`,...toResponsiveImage(VVmmgUjpE)},onMouseEnter:onMouseEnter1xh6rva},fjMn_7bap:{background:{alt:\"\",fit:\"fill\",sizes:`calc((min((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.72, 925px) - 40px) * 0.2391)`,...toResponsiveImage(VVmmgUjpE)},onMouseEnter:onMouseEnter1xh6rva,onMouseLeave:onMouseLeaveqqexlg},jwbDiDjlT:{onMouseLeave:onMouseLeave1e48jf5,onTap:onTap1ffk8ot},KXl9BnXfJ:{\"data-highlight\":undefined,background:{alt:\"\",fit:\"fill\",sizes:\"315px\",...toResponsiveImage(VVmmgUjpE)},onMouseEnter:undefined},L1dVsPXwU:{onMouseLeave:onMouseLeave86w1ui,onTap:onTap1ffk8ot},P_tYVfCP4:{background:{alt:\"\",fit:\"fill\",sizes:`calc((min((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.72, 925px) - 40px) * 0.2391)`,...toResponsiveImage(VVmmgUjpE)},onMouseEnter:onMouseEnter1xh6rva,onMouseLeave:onMouseLeave17k9u0k,onTap:onTap1xh6rva},pQbCh30lL:{onMouseLeave:onMouseLeave1w38m0k},sGs_WQP5S:{onMouseLeave:onMouseLeave175pabg,onTap:onTap1ffk8ot},vXh_9n2dp:{background:{alt:\"\",fit:\"fill\",sizes:`calc((min((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.72, 925px) - 40px) * 0.2391)`,...toResponsiveImage(VVmmgUjpE)},onMouseEnter:onMouseEnter1xh6rva,onMouseLeave:onMouseLeave1cobl1h,onTap:onTap1xh6rva}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6uxotj\",layoutDependency:layoutDependency,layoutId:\"Rq06MUmsm\",children:isDisplayed(visible1)&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`calc((min((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 140px) * 0.6867, 925px) - 40px) * 0.2391)`,...toResponsiveImage(Jc_C7hAzP)},className:\"framer-1251ig6\",\"data-framer-cursor\":zTKx7YN5b,\"data-framer-name\":\"Banner\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"gnxmTq4M2\",onMouseEnter:onMouseEnter175pabg,style:{opacity:1},variants:{fjMn_7bap:{opacity:.2},jwbDiDjlT:{opacity:.2},L1dVsPXwU:{opacity:.2},P_tYVfCP4:{opacity:.2},pQbCh30lL:{opacity:.2},vXh_9n2dp:{opacity:.2}},...addPropertyOverrides({CuVQ0Y62B:{background:{alt:\"\",fit:\"fill\",sizes:`calc((min((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.72, 925px) - 40px) * 0.2391)`,...toResponsiveImage(Jc_C7hAzP)},onMouseEnter:onMouseEnter1jp3w9a,onMouseLeave:onMouseLeaveqqexlg},dNNho_MUD:{background:{alt:\"\",fit:\"fill\",sizes:`calc((min((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.7239, 925px) - 40px) * 0.2391)`,...toResponsiveImage(Jc_C7hAzP)},onMouseEnter:onMouseEnter1jp3w9a},fjMn_7bap:{background:{alt:\"\",fit:\"fill\",sizes:`calc((min((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.72, 925px) - 40px) * 0.2391)`,...toResponsiveImage(Jc_C7hAzP)},onMouseEnter:onMouseEnter1jp3w9a},KXl9BnXfJ:{\"data-highlight\":undefined,background:{alt:\"\",fit:\"fill\",sizes:\"315px\",...toResponsiveImage(Jc_C7hAzP)},onMouseEnter:undefined},P_tYVfCP4:{background:{alt:\"\",fit:\"fill\",sizes:`calc((min((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.72, 925px) - 40px) * 0.2391)`,...toResponsiveImage(Jc_C7hAzP)},onMouseEnter:onMouseEnter1jp3w9a},sGs_WQP5S:{onMouseLeave:onMouseLeave1w38m0k},vXh_9n2dp:{background:{alt:\"\",fit:\"fill\",sizes:`calc((min((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.72, 925px) - 40px) * 0.2391)`,...toResponsiveImage(Jc_C7hAzP)},onMouseEnter:onMouseEnter1jp3w9a}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cwmjvy\",layoutDependency:layoutDependency,layoutId:\"o94GLkj1g\",children:isDisplayed(visible2)&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`calc((min((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 140px) * 0.6867, 925px) - 40px) * 0.2391)`,...toResponsiveImage(Aiu63IVgj)},className:\"framer-1e24s8i\",\"data-framer-cursor\":zTKx7YN5b,\"data-framer-name\":\"Banner\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"DKT1agFM2\",onMouseEnter:onMouseEnter1e48jf5,style:{opacity:1},variants:{CuVQ0Y62B:{opacity:.2},fjMn_7bap:{opacity:.2},L1dVsPXwU:{opacity:.2},P_tYVfCP4:{opacity:.2},pQbCh30lL:{opacity:.2},sGs_WQP5S:{opacity:.2}},...addPropertyOverrides({CuVQ0Y62B:{background:{alt:\"\",fit:\"fill\",sizes:`calc((min((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.72, 925px) - 40px) * 0.2391)`,...toResponsiveImage(Aiu63IVgj)},onMouseEnter:onMouseEnter1cobl1h},dNNho_MUD:{background:{alt:\"\",fit:\"fill\",sizes:`calc((min((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.7239, 925px) - 40px) * 0.2391)`,...toResponsiveImage(Aiu63IVgj)},onMouseEnter:onMouseEnter1cobl1h},fjMn_7bap:{background:{alt:\"\",fit:\"fill\",sizes:`calc((min((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.72, 925px) - 40px) * 0.2391)`,...toResponsiveImage(Aiu63IVgj)},onMouseEnter:onMouseEnter1cobl1h},jwbDiDjlT:{onMouseLeave:onMouseLeave1w38m0k},KXl9BnXfJ:{\"data-highlight\":undefined,background:{alt:\"\",fit:\"fill\",sizes:\"315px\",...toResponsiveImage(Aiu63IVgj)},onMouseEnter:undefined},L1dVsPXwU:{onMouseEnter:onMouseEnter86w1ui,onMouseLeave:onMouseLeave86w1ui},P_tYVfCP4:{background:{alt:\"\",fit:\"fill\",sizes:`calc((min((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.72, 925px) - 40px) * 0.2391)`,...toResponsiveImage(Aiu63IVgj)},onMouseEnter:onMouseEnter1cobl1h,onMouseLeave:onMouseLeave1cobl1h},pQbCh30lL:{\"data-highlight\":undefined,onMouseEnter:undefined},sGs_WQP5S:{\"data-highlight\":undefined,onMouseEnter:undefined},vXh_9n2dp:{background:{alt:\"\",fit:\"fill\",sizes:`calc((min((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.72, 925px) - 40px) * 0.2391)`,...toResponsiveImage(Aiu63IVgj)},onMouseEnter:onMouseEnter1cobl1h,onMouseLeave:onMouseLeaveqqexlg}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r6ibng\",layoutDependency:layoutDependency,layoutId:\"fcfta7zsA\",children:isDisplayed(visible3)&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`calc((min((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 140px) * 0.6867, 925px) - 40px) * 0.2391)`,...toResponsiveImage(kcPJnhtwL)},className:\"framer-17g164g\",\"data-framer-cursor\":zTKx7YN5b,\"data-framer-name\":\"Banner\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"czRMQzqcJ\",onMouseEnter:onMouseEnter86w1ui,style:{opacity:1},variants:{CuVQ0Y62B:{opacity:.2},fjMn_7bap:{opacity:.2},jwbDiDjlT:{opacity:.2},pQbCh30lL:{opacity:.2},sGs_WQP5S:{opacity:.2},vXh_9n2dp:{opacity:.2}},...addPropertyOverrides({CuVQ0Y62B:{background:{alt:\"\",fit:\"fill\",sizes:`calc((min((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.72, 925px) - 40px) * 0.2391)`,...toResponsiveImage(kcPJnhtwL)},onMouseEnter:onMouseEnter17k9u0k},dNNho_MUD:{background:{alt:\"\",fit:\"fill\",sizes:`calc((min((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.7239, 925px) - 40px) * 0.2391)`,...toResponsiveImage(kcPJnhtwL)},onMouseEnter:onMouseEnter17k9u0k},fjMn_7bap:{background:{alt:\"\",fit:\"fill\",sizes:`calc((min((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.72, 925px) - 40px) * 0.2391)`,...toResponsiveImage(kcPJnhtwL)},onMouseEnter:onMouseEnter17k9u0k},jwbDiDjlT:{\"data-highlight\":undefined,onMouseEnter:undefined},KXl9BnXfJ:{\"data-highlight\":undefined,background:{alt:\"\",fit:\"fill\",sizes:\"315px\",...toResponsiveImage(kcPJnhtwL)},onMouseEnter:undefined},L1dVsPXwU:{onMouseEnter:undefined,onMouseLeave:onMouseLeave1w38m0k},P_tYVfCP4:{background:{alt:\"\",fit:\"fill\",sizes:`calc((min((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.72, 925px) - 40px) * 0.2391)`,...toResponsiveImage(kcPJnhtwL)},onMouseEnter:onMouseEnter17k9u0k,onMouseLeave:onMouseLeaveqqexlg},pQbCh30lL:{\"data-highlight\":undefined,onMouseEnter:undefined},sGs_WQP5S:{\"data-highlight\":undefined,onMouseEnter:undefined},vXh_9n2dp:{background:{alt:\"\",fit:\"fill\",sizes:`calc((min((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) * 0.72, 925px) - 40px) * 0.2391)`,...toResponsiveImage(kcPJnhtwL)},onMouseEnter:onMouseEnter17k9u0k}},baseVariant,gestureVariant)})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",...toResponsiveImage(VVmmgUjpE)},className:\"framer-1k7e9p8\",\"data-framer-name\":\"big_1\",layoutDependency:layoutDependency,layoutId:\"Qzs3B3LTA\",style:{opacity:0},variants:{fjMn_7bap:{opacity:1},pQbCh30lL:{opacity:1}},...addPropertyOverrides({fjMn_7bap:{background:{alt:\"\",fit:\"fill\",sizes:\"1203px\",...toResponsiveImage(VVmmgUjpE)}},pQbCh30lL:{background:{alt:\"\",fit:\"fill\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 140px)`,...toResponsiveImage(VVmmgUjpE)}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",...toResponsiveImage(Jc_C7hAzP)},className:\"framer-ul1sy6\",\"data-framer-name\":\"big_2\",layoutDependency:layoutDependency,layoutId:\"UiE7nBwbK\",style:{opacity:0},variants:{CuVQ0Y62B:{opacity:1},sGs_WQP5S:{opacity:1}},...addPropertyOverrides({CuVQ0Y62B:{background:{alt:\"\",fit:\"fill\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px)`,...toResponsiveImage(Jc_C7hAzP)}},sGs_WQP5S:{background:{alt:\"\",fit:\"fill\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 140px)`,...toResponsiveImage(Jc_C7hAzP)}}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",...toResponsiveImage(VVmmgUjpE)},className:\"framer-1r7v8av\",\"data-framer-name\":\"big_3\",layoutDependency:layoutDependency,layoutId:\"YWKGc14fI\",style:{opacity:0},variants:{jwbDiDjlT:{opacity:1},vXh_9n2dp:{opacity:1}},...addPropertyOverrides({jwbDiDjlT:{background:{alt:\"\",fit:\"fill\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 140px)`,...toResponsiveImage(Aiu63IVgj)}},vXh_9n2dp:{background:{alt:\"\",fit:\"fill\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px)`,...toResponsiveImage(Aiu63IVgj)}}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",...toResponsiveImage(kcPJnhtwL)},className:\"framer-1cmdhft\",\"data-framer-name\":\"big_4\",layoutDependency:layoutDependency,layoutId:\"f0jHFKMef\",...addPropertyOverrides({L1dVsPXwU:{background:{alt:\"\",fit:\"fill\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 140px)`,...toResponsiveImage(kcPJnhtwL)}},P_tYVfCP4:{background:{alt:\"\",fit:\"fill\",sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px)`,...toResponsiveImage(kcPJnhtwL)}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-w7MMY.framer-1vkzule, .framer-w7MMY .framer-1vkzule { display: block; }\",\".framer-w7MMY.framer-1aa4w6m { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 110px; height: auto; justify-content: flex-start; overflow: visible; padding: 25px 0px 0px 140px; position: relative; width: 1203px; }\",\".framer-w7MMY .framer-88kpoo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-w7MMY .framer-m3kwhl { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-w7MMY .framer-1b0rkm8, .framer-w7MMY .framer-1pqdybp, .framer-w7MMY .framer-e9a25o { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-w7MMY .framer-zhajoj { 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; max-width: 925px; padding: 0px 20px 0px 20px; position: relative; width: 69%; z-index: 1; }\",\".framer-w7MMY .framer-z5lhw4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: visible; padding: 90px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-w7MMY .framer-a1z0np, .framer-w7MMY .framer-6uxotj, .framer-w7MMY .framer-1cwmjvy, .framer-w7MMY .framer-1r6ibng { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 93px; padding: 0px; position: relative; width: 24%; }\",\".framer-w7MMY .framer-14bx1lh, .framer-w7MMY .framer-1251ig6, .framer-w7MMY .framer-1e24s8i, .framer-w7MMY .framer-17g164g { flex: none; height: 93px; position: relative; width: 100%; }\",\".framer-w7MMY .framer-1k7e9p8, .framer-w7MMY .framer-1r7v8av, .framer-w7MMY .framer-1cmdhft { bottom: 0px; flex: none; left: 0px; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-w7MMY .framer-ul1sy6 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; padding: 0px; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-w7MMY.framer-1aa4w6m, .framer-w7MMY .framer-88kpoo, .framer-w7MMY .framer-zhajoj, .framer-w7MMY .framer-z5lhw4, .framer-w7MMY .framer-a1z0np, .framer-w7MMY .framer-6uxotj, .framer-w7MMY .framer-1cwmjvy, .framer-w7MMY .framer-1r6ibng, .framer-w7MMY .framer-ul1sy6 { gap: 0px; } .framer-w7MMY.framer-1aa4w6m > * { margin: 0px; margin-left: calc(110px / 2); margin-right: calc(110px / 2); } .framer-w7MMY.framer-1aa4w6m > :first-child, .framer-w7MMY .framer-z5lhw4 > :first-child, .framer-w7MMY .framer-ul1sy6 > :first-child { margin-left: 0px; } .framer-w7MMY.framer-1aa4w6m > :last-child, .framer-w7MMY .framer-z5lhw4 > :last-child, .framer-w7MMY .framer-ul1sy6 > :last-child { margin-right: 0px; } .framer-w7MMY .framer-88kpoo > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-w7MMY .framer-88kpoo > :first-child, .framer-w7MMY .framer-zhajoj > :first-child, .framer-w7MMY .framer-a1z0np > :first-child, .framer-w7MMY .framer-6uxotj > :first-child, .framer-w7MMY .framer-1cwmjvy > :first-child, .framer-w7MMY .framer-1r6ibng > :first-child { margin-top: 0px; } .framer-w7MMY .framer-88kpoo > :last-child, .framer-w7MMY .framer-zhajoj > :last-child, .framer-w7MMY .framer-a1z0np > :last-child, .framer-w7MMY .framer-6uxotj > :last-child, .framer-w7MMY .framer-1cwmjvy > :last-child, .framer-w7MMY .framer-1r6ibng > :last-child { margin-bottom: 0px; } .framer-w7MMY .framer-zhajoj > *, .framer-w7MMY .framer-a1z0np > *, .framer-w7MMY .framer-6uxotj > *, .framer-w7MMY .framer-1cwmjvy > *, .framer-w7MMY .framer-1r6ibng > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-w7MMY .framer-z5lhw4 > *, .framer-w7MMY .framer-ul1sy6 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-w7MMY.framer-v-1lfd5v7.framer-1aa4w6m, .framer-w7MMY.framer-v-hxjb9k.framer-1aa4w6m, .framer-w7MMY.framer-v-b665hp.framer-1aa4w6m, .framer-w7MMY.framer-v-1yjfhvr.framer-1aa4w6m { width: auto; }\",\".framer-w7MMY.framer-v-1lfd5v7 .framer-14bx1lh, .framer-w7MMY.framer-v-hxjb9k .framer-14bx1lh, .framer-w7MMY.framer-v-b665hp .framer-14bx1lh, .framer-w7MMY.framer-v-lvnn96 .framer-14bx1lh, .framer-w7MMY.framer-v-1l225we .framer-14bx1lh, .framer-w7MMY.framer-v-1agr1wi .framer-14bx1lh { cursor: pointer; }\",\".framer-w7MMY.framer-v-e3lwlu.framer-1aa4w6m { flex-direction: column; gap: 0px; padding: 20px 0px 0px 20px; width: 360px; }\",\".framer-w7MMY.framer-v-e3lwlu .framer-88kpoo { align-content: flex-start; align-items: flex-start; order: 1; width: 315px; }\",\".framer-w7MMY.framer-v-e3lwlu .framer-zhajoj { order: 0; padding: 0px; width: 315px; }\",\".framer-w7MMY.framer-v-e3lwlu .framer-1pqdybp, .framer-w7MMY.framer-v-e3lwlu .framer-e9a25o { width: 315px; }\",\".framer-w7MMY.framer-v-e3lwlu .framer-z5lhw4 { flex-wrap: wrap; gap: 15px; padding: 30px 0px 0px 0px; width: 315px; }\",\".framer-w7MMY.framer-v-e3lwlu .framer-a1z0np { min-width: 145px; width: min-content; }\",\".framer-w7MMY.framer-v-e3lwlu .framer-14bx1lh, .framer-w7MMY.framer-v-e3lwlu .framer-1251ig6, .framer-w7MMY.framer-v-e3lwlu .framer-1e24s8i, .framer-w7MMY.framer-v-e3lwlu .framer-17g164g { height: 153px; width: 315px; }\",\".framer-w7MMY.framer-v-e3lwlu .framer-6uxotj, .framer-w7MMY.framer-v-e3lwlu .framer-1cwmjvy { min-width: 135px; width: min-content; }\",\".framer-w7MMY.framer-v-e3lwlu .framer-1r6ibng { gap: 0px; min-width: 135px; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-w7MMY.framer-v-e3lwlu.framer-1aa4w6m, .framer-w7MMY.framer-v-e3lwlu .framer-z5lhw4, .framer-w7MMY.framer-v-e3lwlu .framer-1r6ibng { gap: 0px; } .framer-w7MMY.framer-v-e3lwlu.framer-1aa4w6m > *, .framer-w7MMY.framer-v-e3lwlu .framer-1r6ibng > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-w7MMY.framer-v-e3lwlu.framer-1aa4w6m > :first-child, .framer-w7MMY.framer-v-e3lwlu .framer-1r6ibng > :first-child { margin-top: 0px; } .framer-w7MMY.framer-v-e3lwlu.framer-1aa4w6m > :last-child, .framer-w7MMY.framer-v-e3lwlu .framer-1r6ibng > :last-child { margin-bottom: 0px; } .framer-w7MMY.framer-v-e3lwlu .framer-z5lhw4 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-w7MMY.framer-v-e3lwlu .framer-z5lhw4 > :first-child { margin-left: 0px; } .framer-w7MMY.framer-v-e3lwlu .framer-z5lhw4 > :last-child { margin-right: 0px; } }\",\".framer-w7MMY.framer-v-e9s6m5.framer-1aa4w6m, .framer-w7MMY.framer-v-165mhia.framer-1aa4w6m { gap: 50px; padding: 25px 0px 0px 20px; width: 998px; }\",\".framer-w7MMY.framer-v-e9s6m5 .framer-88kpoo { order: 6; }\",\".framer-w7MMY.framer-v-e9s6m5 .framer-zhajoj { order: 0; width: 72%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-w7MMY.framer-v-e9s6m5.framer-1aa4w6m { gap: 0px; } .framer-w7MMY.framer-v-e9s6m5.framer-1aa4w6m > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-w7MMY.framer-v-e9s6m5.framer-1aa4w6m > :first-child { margin-left: 0px; } .framer-w7MMY.framer-v-e9s6m5.framer-1aa4w6m > :last-child { margin-right: 0px; } }\",\".framer-w7MMY.framer-v-165mhia .framer-zhajoj, .framer-w7MMY.framer-v-lvnn96 .framer-zhajoj, .framer-w7MMY.framer-v-1l225we .framer-zhajoj, .framer-w7MMY.framer-v-1agr1wi .framer-zhajoj { width: 72%; }\",\".framer-w7MMY.framer-v-165mhia .framer-1k7e9p8 { width: 1203px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-w7MMY.framer-v-165mhia.framer-1aa4w6m { gap: 0px; } .framer-w7MMY.framer-v-165mhia.framer-1aa4w6m > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-w7MMY.framer-v-165mhia.framer-1aa4w6m > :first-child { margin-left: 0px; } .framer-w7MMY.framer-v-165mhia.framer-1aa4w6m > :last-child { margin-right: 0px; } }\",\".framer-w7MMY.framer-v-lvnn96.framer-1aa4w6m, .framer-w7MMY.framer-v-1l225we.framer-1aa4w6m, .framer-w7MMY.framer-v-1agr1wi.framer-1aa4w6m { gap: 50px; padding: 25px 0px 0px 20px; width: 965px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-w7MMY.framer-v-lvnn96.framer-1aa4w6m { gap: 0px; } .framer-w7MMY.framer-v-lvnn96.framer-1aa4w6m > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-w7MMY.framer-v-lvnn96.framer-1aa4w6m > :first-child { margin-left: 0px; } .framer-w7MMY.framer-v-lvnn96.framer-1aa4w6m > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-w7MMY.framer-v-1l225we.framer-1aa4w6m { gap: 0px; } .framer-w7MMY.framer-v-1l225we.framer-1aa4w6m > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-w7MMY.framer-v-1l225we.framer-1aa4w6m > :first-child { margin-left: 0px; } .framer-w7MMY.framer-v-1l225we.framer-1aa4w6m > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-w7MMY.framer-v-1agr1wi.framer-1aa4w6m { gap: 0px; } .framer-w7MMY.framer-v-1agr1wi.framer-1aa4w6m > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-w7MMY.framer-v-1agr1wi.framer-1aa4w6m > :first-child { margin-left: 0px; } .framer-w7MMY.framer-v-1agr1wi.framer-1aa4w6m > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 281\n * @framerIntrinsicWidth 1203\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"pQbCh30lL\":{\"layout\":[\"fixed\",\"auto\"]},\"sGs_WQP5S\":{\"layout\":[\"auto\",\"auto\"]},\"jwbDiDjlT\":{\"layout\":[\"auto\",\"auto\"]},\"L1dVsPXwU\":{\"layout\":[\"auto\",\"auto\"]},\"mnmgD2dWk\":{\"layout\":[\"auto\",\"auto\"]},\"KXl9BnXfJ\":{\"layout\":[\"fixed\",\"auto\"]},\"dNNho_MUD\":{\"layout\":[\"fixed\",\"auto\"]},\"fjMn_7bap\":{\"layout\":[\"fixed\",\"auto\"]},\"CuVQ0Y62B\":{\"layout\":[\"fixed\",\"auto\"]},\"vXh_9n2dp\":{\"layout\":[\"fixed\",\"auto\"]},\"P_tYVfCP4\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"GTraObjRZ\":\"textContent\",\"g8coZYPtr\":\"title\",\"Xz9eGCrz4\":\"description\",\"VVmmgUjpE\":\"image1\",\"Jc_C7hAzP\":\"image2\",\"Aiu63IVgj\":\"image3\",\"kcPJnhtwL\":\"image4\",\"zTKx7YN5b\":\"cursorItems\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertUrCKYgrf=withCSS(Component,css,\"framer-w7MMY\");export default FramertUrCKYgrf;FramertUrCKYgrf.displayName=\"Project_Content_Desktop\";FramertUrCKYgrf.defaultProps={height:281,width:1203};addPropertyControls(FramertUrCKYgrf,{variant:{options:[\"YzhUzSgw9\",\"pQbCh30lL\",\"sGs_WQP5S\",\"jwbDiDjlT\",\"L1dVsPXwU\",\"mnmgD2dWk\",\"KXl9BnXfJ\",\"dNNho_MUD\",\"fjMn_7bap\",\"CuVQ0Y62B\",\"vXh_9n2dp\",\"P_tYVfCP4\"],optionTitles:[\"NO_images\",\"BIG_1\",\"BIG_2\",\"BIG_3\",\"BIG_4\",\"Events\",\"mobile\",\"1000\",\"BIG_1_1000\",\"BIG_2_1000\",\"BIG_3_1000\",\"BIG_4_1000\"],title:\"Variant\",type:ControlType.Enum},GTraObjRZ:{defaultValue:\"ANTH 408 [2022]\",title:\"Text Content\",type:ControlType.String},g8coZYPtr:{defaultValue:\"Dreaming the Environmental Crisis by Anna Henry\",title:\"Title\",type:ControlType.String},Xz9eGCrz4:{defaultValue:\"<p>Content</p>\",title:\"Description\",type:ControlType.RichText},VVmmgUjpE:{title:\"Image 1\",type:ControlType.ResponsiveImage},Jc_C7hAzP:{title:\"Image 2\",type:ControlType.ResponsiveImage},Aiu63IVgj:{title:\"Image 3\",type:ControlType.ResponsiveImage},kcPJnhtwL:{title:\"Image 4\",type:ControlType.ResponsiveImage},zTKx7YN5b:{title:\"Cursor_Items\",type:ControlType.CustomCursor}});addFonts(FramertUrCKYgrf,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"Redaction Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/xEgvb9pjlkhKrTIv5mPXP7stI.otf\"},{family:\"Syne Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/nqpImnaM3ZmjuSSO1OJ3YkTO0bo.ttf\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...((_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"t3N9g9enQ\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"t3N9g9enQ\"]):[],...((_componentPresets_fonts2=componentPresets.fonts)===null||_componentPresets_fonts2===void 0?void 0:_componentPresets_fonts2[\"tAd_lKx0i\"])?getFontsFromComponentPreset((_componentPresets_fonts3=componentPresets.fonts)===null||_componentPresets_fonts3===void 0?void 0:_componentPresets_fonts3[\"tAd_lKx0i\"]):[],...((_componentPresets_fonts4=componentPresets.fonts)===null||_componentPresets_fonts4===void 0?void 0:_componentPresets_fonts4[\"LER7Hzh9L\"])?getFontsFromComponentPreset((_componentPresets_fonts5=componentPresets.fonts)===null||_componentPresets_fonts5===void 0?void 0:_componentPresets_fonts5[\"LER7Hzh9L\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertUrCKYgrf\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"281\",\"framerIntrinsicWidth\":\"1203\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"GTraObjRZ\\\":\\\"textContent\\\",\\\"g8coZYPtr\\\":\\\"title\\\",\\\"Xz9eGCrz4\\\":\\\"description\\\",\\\"VVmmgUjpE\\\":\\\"image1\\\",\\\"Jc_C7hAzP\\\":\\\"image2\\\",\\\"Aiu63IVgj\\\":\\\"image3\\\",\\\"kcPJnhtwL\\\":\\\"image4\\\",\\\"zTKx7YN5b\\\":\\\"cursorItems\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pQbCh30lL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sGs_WQP5S\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"jwbDiDjlT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"L1dVsPXwU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"mnmgD2dWk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"KXl9BnXfJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dNNho_MUD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fjMn_7bap\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CuVQ0Y62B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vXh_9n2dp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"P_tYVfCP4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (92f3d02)\nvar _componentPresets_fonts,_componentPresets_fonts1;import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,RichText,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Audio}from\"https://framerusercontent.com/modules/NRKVbMFYrBaqL0rx532t/o1XmI0MqgEIlgDIKXNDR/Audio.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/ALzPzo9ZL7qsyNt6jnNi/Smooth_Scroll.js\";import NAV from\"#framer/local/canvasComponent/cCtYyip1h/cCtYyip1h.js\";import Footer from\"#framer/local/canvasComponent/fuzHGJT75/fuzHGJT75.js\";import Cursor from\"#framer/local/canvasComponent/TEz6EI06k/TEz6EI06k.js\";import Project_Content_Desktop from\"#framer/local/canvasComponent/tUrCKYgrf/tUrCKYgrf.js\";import Projects,{enumToDisplayNameFunctions}from\"#framer/local/collection/ohIJusC0T/ohIJusC0T.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle3 from\"#framer/local/css/dAhlW4PlA/dAhlW4PlA.js\";import*as sharedStyle from\"#framer/local/css/flfOKc9fd/flfOKc9fd.js\";import*as sharedStyle4 from\"#framer/local/css/HL973KUy0/HL973KUy0.js\";import*as sharedStyle1 from\"#framer/local/css/sS7LJm4Am/sS7LJm4Am.js\";import*as sharedStyle2 from\"#framer/local/css/yV7wbrb1V/yV7wbrb1V.js\";import metadataProvider from\"#framer/local/webPageMetadata/ipNn7BHMZ/ipNn7BHMZ.js\";const AudioFonts=getFonts(Audio);const NAVFonts=getFonts(NAV);const Project_Content_DesktopFonts=getFonts(Project_Content_Desktop);const FooterFonts=getFonts(Footer);const SmoothScrollFonts=getFonts(SmoothScroll);const CursorFonts=getFonts(Cursor);const cycleOrder=[\"M5NpJKRJ1\",\"c5NY0gUhB\",\"yHI6McdUd\"];const breakpoints={c5NY0gUhB:\"(max-width: 999px)\",M5NpJKRJ1:\"(min-width: 1440px)\",yHI6McdUd:\"(min-width: 1000px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-fx5xV\";const variantClassNames={c5NY0gUhB:\"framer-v-1ntaofr\",M5NpJKRJ1:\"framer-v-3yglpn\",yHI6McdUd:\"framer-v-zx7ole\"};const isSet=value=>{return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={damping:40,delay:0,mass:.6,stiffness:600,type:\"spring\"};const transition2={damping:60,delay:0,mass:.3,stiffness:500,type:\"spring\"};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition3={damping:40,delay:0,mass:.6,stiffness:330,type:\"spring\"};const metadata=metadataProvider();const humanReadableVariantMap={\"Small desktop\":\"yHI6McdUd\",Desktop:\"M5NpJKRJ1\",Phone:\"c5NY0gUhB\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"M5NpJKRJ1\"};};const cursor={component:Cursor,transition:transition1,variant:\"w0KTOZnDz\"};const cursor1={component:Cursor,variant:\"w0KTOZnDz\"};const cursor2={component:Cursor,variant:\"mKCpwFPm6\"};const cursor3={component:Cursor,transition:transition2,variant:\"w0KTOZnDz\"};const cursor4={component:Cursor,transition:transition3,variant:\"mKCpwFPm6\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){var _enumToDisplayNameFunctions_uHmK4jjyc;const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"default\",data:Projects,type:\"Collection\"},select:[{collection:\"default\",name:\"uHmK4jjyc\",type:\"Identifier\"},{collection:\"default\",name:\"lZ6qRJUPB\",type:\"Identifier\"},{collection:\"default\",name:\"LudSRK6q0\",type:\"Identifier\"},{collection:\"default\",name:\"G1OXsTZyh\",type:\"Identifier\"},{collection:\"default\",name:\"eNSiq0uY6\",type:\"Identifier\"},{collection:\"default\",name:\"xS0yljP39\",type:\"Identifier\"},{collection:\"default\",name:\"SFXv1YROs\",type:\"Identifier\"},{collection:\"default\",name:\"cMpeUJ5gS\",type:\"Identifier\"},{collection:\"default\",name:\"w10m9HmUI\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables)});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,cMpeUJ5gS=getFromCurrentRouteData(\"cMpeUJ5gS\"),LudSRK6q0=getFromCurrentRouteData(\"LudSRK6q0\"),SFXv1YROs=getFromCurrentRouteData(\"SFXv1YROs\"),uHmK4jjyc=getFromCurrentRouteData(\"uHmK4jjyc\"),lZ6qRJUPB=getFromCurrentRouteData(\"lZ6qRJUPB\"),w10m9HmUI=getFromCurrentRouteData(\"w10m9HmUI\"),G1OXsTZyh=getFromCurrentRouteData(\"G1OXsTZyh\"),eNSiq0uY6=getFromCurrentRouteData(\"eNSiq0uY6\"),xS0yljP39=getFromCurrentRouteData(\"xS0yljP39\"),yrryN_v1Drfq7UojG3,lZ6qRJUPBrfq7UojG3,LudSRK6q0rfq7UojG3,idrfq7UojG3,yrryN_v1Dn4LTH2Mb8,lZ6qRJUPBn4LTH2Mb8,LudSRK6q0n4LTH2Mb8,idn4LTH2Mb8,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-fx5xV`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-fx5xV`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const visible=isSet(cMpeUJ5gS);const visible1=isSet(SFXv1YROs);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];useCustomCursors({\"2h6yjt\":cursor2,\"490bs\":cursor1,hltagh:cursor3,owgy2r:cursor,xlkgf2:cursor4});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"M5NpJKRJ1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-3yglpn\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c5NY0gUhB:{background:{alt:\"\",fit:\"fill\",sizes:\"100vw\",...toResponsiveImage(LudSRK6q0),...{positionX:\"left\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"100vw\",...toResponsiveImage(LudSRK6q0)},className:\"framer-18q2bb9\"})}),visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tumt6-container\",children:/*#__PURE__*/_jsx(Audio,{background:\"rgb(235, 235, 235)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,font:{},gap:15,height:\"100%\",id:\"MYvd_3tBw\",isMixedBorderRadius:false,layoutId:\"MYvd_3tBw\",loop:false,onPlayGlobalPauseOption:\"pause\",padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,pauseOnExit:true,playing:false,progress:0,progressColor:\"rgb(51, 51, 51)\",showPlayPause:true,showTime:true,showTrack:true,srcFile:cMpeUJ5gS,srcType:\"Upload\",srcUrl:\"\",style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,trackColor:\"rgb(255, 255, 255)\",volume:100,width:\"100%\"})})}),visible1&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"LER7Hzh9L\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:SFXv1YROs,className:\"framer-oydsd7\",\"data-framer-name\":\"Video\",fonts:[\"Inter\"],name:\"Video\",stylesPresetsClassNames:{a:\"framer-styles-preset-an5i7m\",code:\"framer-styles-preset-1anvqka\",h4:\"framer-styles-preset-2raezv\",h5:\"framer-styles-preset-v0q6lu\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iskj9b-container\",\"data-framer-cursor\":\"owgy2r\",layoutScroll:true,children:/*#__PURE__*/_jsx(NAV,{height:\"100%\",id:\"v34C6yo58\",layoutId:\"v34C6yo58\",variant:\"mBtLd24Ra\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16icfex-container\",\"data-framer-cursor\":\"490bs\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c5NY0gUhB:{style:{width:\"100%\"},variant:\"KXl9BnXfJ\"},yHI6McdUd:{variant:\"dNNho_MUD\"}},children:/*#__PURE__*/_jsx(Project_Content_Desktop,{Aiu63IVgj:toResponsiveImage(eNSiq0uY6),g8coZYPtr:lZ6qRJUPB,GTraObjRZ:(_enumToDisplayNameFunctions_uHmK4jjyc=enumToDisplayNameFunctions[\"uHmK4jjyc\"])===null||_enumToDisplayNameFunctions_uHmK4jjyc===void 0?void 0:_enumToDisplayNameFunctions_uHmK4jjyc.call(enumToDisplayNameFunctions,uHmK4jjyc,activeLocale),height:\"100%\",id:\"Hlo11RTlA\",Jc_C7hAzP:toResponsiveImage(G1OXsTZyh),kcPJnhtwL:toResponsiveImage(xS0yljP39),layoutId:\"Hlo11RTlA\",style:{height:\"100%\",width:\"100%\"},variant:\"YzhUzSgw9\",VVmmgUjpE:toResponsiveImage(LudSRK6q0),width:\"100%\",Xz9eGCrz4:w10m9HmUI,zTKx7YN5b:\"2h6yjt\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6s5kxj\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-s1ni19\",\"data-framer-cursor\":\"hltagh\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"default\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"default\",name:\"yrryN_v1D\",type:\"Identifier\"},{collection:\"default\",name:\"lZ6qRJUPB\",type:\"Identifier\"},{collection:\"default\",name:\"LudSRK6q0\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{operator:\"not\",type:\"UnaryOperation\",value:{arguments:[{collection:\"default\",name:\"lZ6qRJUPB\",type:\"Identifier\"},{type:\"LiteralValue\",value:lZ6qRJUPB}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},operator:\"and\",right:{left:{collection:\"default\",name:\"uHmK4jjyc\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"CsvqJ_lzb\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"and\",right:{operator:\"not\",type:\"UnaryOperation\",value:{arguments:[{collection:\"default\",name:\"lZ6qRJUPB\",type:\"Identifier\"},{type:\"LiteralValue\",value:\"borrowing\"}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"yrryN_v1D\":yrryN_v1Drfq7UojG3,\"lZ6qRJUPB\":lZ6qRJUPBrfq7UojG3,\"LudSRK6q0\":LudSRK6q0rfq7UojG3,\"id\":idrfq7UojG3},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`rfq7UojG3-${idrfq7UojG3}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{yrryN_v1D:yrryN_v1Drfq7UojG3},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{yrryN_v1D:yrryN_v1Drfq7UojG3},webPageId:\"ipNn7BHMZ\"},children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1q0e16f framer-8qukb8\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1701isq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1jft4ie\",\"data-styles-preset\":\"HL973KUy0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Title\"})}),className:\"framer-uo62fg\",\"data-framer-cursor\":\"2h6yjt\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:lZ6qRJUPBrfq7UojG3,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c5NY0gUhB:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"100vw\",...toResponsiveImage(LudSRK6q0rfq7UojG3)}},yHI6McdUd:{background:{alt:\"\",fit:\"fill\",sizes:\"50vw\",...toResponsiveImage(LudSRK6q0rfq7UojG3)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"50vw\",...toResponsiveImage(LudSRK6q0rfq7UojG3)},className:\"framer-16pryjj\"})})]})})})})},idrfq7UojG3);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cjiqgb\",\"data-framer-cursor\":\"hltagh\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"default\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{direction:\"desc\",name:\"index\",type:\"Identifier\"}],select:[{collection:\"default\",name:\"yrryN_v1D\",type:\"Identifier\"},{collection:\"default\",name:\"lZ6qRJUPB\",type:\"Identifier\"},{collection:\"default\",name:\"LudSRK6q0\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}],where:{left:{operator:\"not\",type:\"UnaryOperation\",value:{arguments:[{collection:\"default\",name:\"lZ6qRJUPB\",type:\"Identifier\"},{type:\"LiteralValue\",value:lZ6qRJUPB}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},operator:\"and\",right:{left:{collection:\"default\",name:\"uHmK4jjyc\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"CsvqJ_lzb\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"yrryN_v1D\":yrryN_v1Dn4LTH2Mb8,\"lZ6qRJUPB\":lZ6qRJUPBn4LTH2Mb8,\"LudSRK6q0\":LudSRK6q0n4LTH2Mb8,\"id\":idn4LTH2Mb8},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`n4LTH2Mb8-${idn4LTH2Mb8}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{yrryN_v1D:yrryN_v1Dn4LTH2Mb8},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{yrryN_v1D:yrryN_v1Dn4LTH2Mb8},webPageId:\"ipNn7BHMZ\"},children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-13uml9z framer-8qukb8\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d8qqf2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1jft4ie\",\"data-styles-preset\":\"HL973KUy0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Title\"})}),className:\"framer-vmt50e\",\"data-framer-cursor\":\"2h6yjt\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",text:lZ6qRJUPBn4LTH2Mb8,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c5NY0gUhB:{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"100vw\",...toResponsiveImage(LudSRK6q0n4LTH2Mb8)}},yHI6McdUd:{background:{alt:\"\",fit:\"fill\",sizes:\"50vw\",...toResponsiveImage(LudSRK6q0n4LTH2Mb8)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:\"lazy\",sizes:\"50vw\",...toResponsiveImage(LudSRK6q0n4LTH2Mb8)},className:\"framer-e8bb0q\"})})]})})})})},idn4LTH2Mb8);})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ezneqw-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c5NY0gUhB:{variant:\"xxhB5hW1e\"},yHI6McdUd:{variant:\"rmMt8rLKQ\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"owHvv0aKT\",layoutId:\"owHvv0aKT\",p_EBjeaNT:\"owgy2r\",style:{height:\"100%\",width:\"100%\"},variant:\"GuWHhGNvh\",wCfQ1bdzX:\"xlkgf2\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tr82ne-container\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"cHW9FgRNf\",intensity:10,layoutId:\"cHW9FgRNf\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-fx5xV { background: white; }`,\".framer-fx5xV.framer-8qukb8, .framer-fx5xV .framer-8qukb8 { display: block; }\",\".framer-fx5xV.framer-3yglpn { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-fx5xV .framer-18q2bb9 { flex: none; height: 400px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-fx5xV .framer-tumt6-container { flex: none; height: 400px; mix-blend-mode: exclusion; position: relative; width: 100%; z-index: 1; }\",\".framer-fx5xV .framer-oydsd7 { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-fx5xV .framer-1iskj9b-container { flex: none; height: auto; left: 0px; mix-blend-mode: difference; position: fixed; top: 0px; width: auto; z-index: 2; }\",\".framer-fx5xV .framer-16icfex-container { flex: none; height: 100vh; position: relative; width: 100%; z-index: 1; }\",\".framer-fx5xV .framer-6s5kxj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fx5xV .framer-s1ni19, .framer-fx5xV .framer-cjiqgb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 50%; }\",\".framer-fx5xV .framer-1q0e16f, .framer-fx5xV .framer-13uml9z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-fx5xV .framer-1701isq, .framer-fx5xV .framer-1d8qqf2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 415px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-fx5xV .framer-uo62fg { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 272px; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-fx5xV .framer-16pryjj, .framer-fx5xV .framer-e8bb0q { bottom: 0px; flex: none; left: 0px; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-fx5xV .framer-vmt50e { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 272px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-fx5xV .framer-1ezneqw-container { flex: none; height: 100vh; position: relative; width: 100%; }\",\".framer-fx5xV .framer-1tr82ne-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fx5xV.framer-3yglpn, .framer-fx5xV .framer-6s5kxj, .framer-fx5xV .framer-s1ni19, .framer-fx5xV .framer-1q0e16f, .framer-fx5xV .framer-1701isq, .framer-fx5xV .framer-cjiqgb, .framer-fx5xV .framer-13uml9z, .framer-fx5xV .framer-1d8qqf2 { gap: 0px; } .framer-fx5xV.framer-3yglpn > *, .framer-fx5xV .framer-s1ni19 > *, .framer-fx5xV .framer-1q0e16f > *, .framer-fx5xV .framer-cjiqgb > *, .framer-fx5xV .framer-13uml9z > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-fx5xV.framer-3yglpn > :first-child, .framer-fx5xV .framer-s1ni19 > :first-child, .framer-fx5xV .framer-1q0e16f > :first-child, .framer-fx5xV .framer-cjiqgb > :first-child, .framer-fx5xV .framer-13uml9z > :first-child { margin-top: 0px; } .framer-fx5xV.framer-3yglpn > :last-child, .framer-fx5xV .framer-s1ni19 > :last-child, .framer-fx5xV .framer-1q0e16f > :last-child, .framer-fx5xV .framer-cjiqgb > :last-child, .framer-fx5xV .framer-13uml9z > :last-child { margin-bottom: 0px; } .framer-fx5xV .framer-6s5kxj > *, .framer-fx5xV .framer-1701isq > *, .framer-fx5xV .framer-1d8qqf2 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-fx5xV .framer-6s5kxj > :first-child, .framer-fx5xV .framer-1701isq > :first-child, .framer-fx5xV .framer-1d8qqf2 > :first-child { margin-left: 0px; } .framer-fx5xV .framer-6s5kxj > :last-child, .framer-fx5xV .framer-1701isq > :last-child, .framer-fx5xV .framer-1d8qqf2 > :last-child { margin-right: 0px; } }\",\"@media (min-width: 1440px) { .framer-fx5xV .hidden-3yglpn { display: none !important; } }\",`@media (max-width: 999px) { .framer-fx5xV .hidden-1ntaofr { display: none !important; } .${metadata.bodyClassName}-framer-fx5xV { background: white; } .framer-fx5xV.framer-3yglpn { width: 360px; } .framer-fx5xV .framer-tumt6-container { width: 362px; } .framer-fx5xV .framer-oydsd7 { min-height: 170px; } .framer-fx5xV .framer-16icfex-container { height: auto; } .framer-fx5xV .framer-6s5kxj { flex-direction: column; padding: 130px 0px 0px 0px; } .framer-fx5xV .framer-s1ni19 { width: 100%; } .framer-fx5xV .framer-1701isq, .framer-fx5xV .framer-1d8qqf2 { height: 200px; } .framer-fx5xV .framer-cjiqgb { height: 200px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fx5xV .framer-6s5kxj { gap: 0px; } .framer-fx5xV .framer-6s5kxj > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-fx5xV .framer-6s5kxj > :first-child { margin-top: 0px; } .framer-fx5xV .framer-6s5kxj > :last-child { margin-bottom: 0px; } }}`,`@media (min-width: 1000px) and (max-width: 1439px) { .framer-fx5xV .hidden-zx7ole { display: none !important; } .${metadata.bodyClassName}-framer-fx5xV { background: white; } .framer-fx5xV.framer-3yglpn { width: 1000px; }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2415\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"c5NY0gUhB\":{\"layout\":[\"fixed\",\"auto\"]},\"yHI6McdUd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameripNn7BHMZ=withCSS(Component,css,\"framer-fx5xV\");export default FrameripNn7BHMZ;FrameripNn7BHMZ.displayName=\"Blog Detail\";FrameripNn7BHMZ.defaultProps={height:2415,width:1440};addFonts(FrameripNn7BHMZ,[{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\"}]},...AudioFonts,...NAVFonts,...Project_Content_DesktopFonts,...FooterFonts,...SmoothScrollFonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...((_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"LER7Hzh9L\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"LER7Hzh9L\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameripNn7BHMZ\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"c5NY0gUhB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yHI6McdUd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"2415\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "+yCAAgC,IAAIA,GAAkB,sBACuCC,GAAY,KAAK,IAAKC,GAAY,KAAK,IACtEC,GAAM,EAAI,EACdC,GAAS,aACHC,GAAa,qBAC7BC,GAAa,aACdC,GAAY,cACWC,GAAe,SACjFC,GAAM,UAAW,CACjB,OAAO,KAAK,IAAI,CACpB,EACA,SAASC,GAASC,EAAO,CACrB,IAAIC,EAAO,OAAOD,EAClB,OAAOA,GAAS,OAASC,GAAQ,UAAYA,GAAQ,WACzD,CAIA,SAASC,GAASC,EAAO,CACrB,GAAI,OAAOA,GAAS,SAChB,OAAOA,EAEX,GAAI,OAAOA,GAAS,SAChB,OAAOC,GAEX,GAAIC,GAASF,CAAK,EAAG,CACjB,IAAIG,EAAQ,OAAOH,EAAM,SAAW,WAAaA,EAAM,QAAQ,EAAIA,EACnEA,EAAQE,GAASC,CAAK,EAAIA,EAAQ,GAAKA,EAE3C,GAAI,OAAOH,GAAS,SAChB,OAAOA,IAAU,EAAIA,EAAQ,CAACA,EAElCA,EAAQA,EAAM,QAAQI,GAAQ,EAAE,EAChC,IAAIC,EAAWC,GAAW,KAAKN,CAAK,EACpC,OAAOK,GAAYE,GAAU,KAAKP,CAAK,EAAIQ,GAAaR,EAAM,MAAM,CAAC,EAAGK,EAAW,EAAI,CAAC,EAAII,GAAW,KAAKT,CAAK,EAAIC,GAAM,CAACD,CAChI,CACO,SAASU,GAASC,EAAMC,EAAMC,EAAS,CAC1C,IAAIC,EAAUC,EAAUC,EAASC,EAAQC,EAASC,EAAcC,EAAiB,EAAGC,EAAU,GAAOC,EAAS,GAAOC,EAAW,GAChI,GAAI,OAAOZ,GAAQ,WACf,MAAM,IAAI,UAAUa,EAAe,EAEvCZ,EAAOb,GAASa,CAAI,GAAK,EACrBV,GAASW,CAAO,IAChBQ,EAAU,CAAC,CAACR,EAAQ,QACpBS,EAAS,YAAaT,EACtBG,EAAUM,EAASG,GAAU1B,GAASc,EAAQ,OAAO,GAAK,EAAGD,CAAI,EAAII,EACrEO,EAAW,aAAcV,EAAU,CAAC,CAACA,EAAQ,SAAWU,GAE5D,SAASG,EAAWC,EAAM,CACtB,IAAIC,EAAOd,EAAUe,EAAUd,EAC/B,OAAAD,EAAWC,EAAW,OACtBK,EAAiBO,EACjBV,EAASN,EAAK,MAAMkB,EAASD,CAAI,EAC1BX,CACX,CACA,SAASa,EAAYH,EAAM,CAEvB,OAAAP,EAAiBO,EAEjBT,EAAU,WAAWa,EAAcnB,CAAI,EAEhCS,EAAUK,EAAWC,CAAI,EAAIV,CACxC,CACA,SAASe,EAAcL,EAAM,CACzB,IAAIM,EAAoBN,EAAOR,EAAce,EAAsBP,EAAOP,EAAgBe,GAAcvB,EAAOqB,EAC/G,OAAOX,EAASc,GAAUD,GAAanB,EAAUkB,CAAmB,EAAIC,EAC5E,CACA,SAASE,EAAaV,EAAM,CACxB,IAAIM,EAAoBN,EAAOR,EAAce,EAAsBP,EAAOP,EAI1E,OAAOD,IAAiB,QAAac,GAAqBrB,GAAQqB,EAAoB,GAAKX,GAAUY,GAAuBlB,CAChI,CACA,SAASe,GAAe,CACpB,IAAIJ,EAAOW,GAAI,EACf,GAAID,EAAaV,CAAI,EACjB,OAAOY,EAAaZ,CAAI,EAG5BT,EAAU,WAAWa,EAAcC,EAAcL,CAAI,CAAC,CAC1D,CACA,SAASY,EAAaZ,EAAM,CAIxB,OAHAT,EAAU,OAGNK,GAAYT,EACLY,EAAWC,CAAI,GAE1Bb,EAAWC,EAAW,OACfE,EACX,CACA,SAASuB,GAAS,CACVtB,IAAY,QACZ,aAAaA,CAAO,EAExBE,EAAiB,EACjBN,EAAWK,EAAeJ,EAAWG,EAAU,MACnD,CACA,SAASuB,GAAQ,CACb,OAAOvB,IAAY,OAAYD,EAASsB,EAAaD,GAAI,CAAC,CAC9D,CACA,SAASI,GAAY,CACjB,IAAIf,EAAOW,GAAI,EAAGK,EAAaN,EAAaV,CAAI,EAIhD,GAHAb,EAAW,UACXC,EAAW,KACXI,EAAeQ,EACXgB,EAAY,CACZ,GAAIzB,IAAY,OACZ,OAAOY,EAAYX,CAAY,EAEnC,GAAIG,EAEA,oBAAaJ,CAAO,EACpBA,EAAU,WAAWa,EAAcnB,CAAI,EAChCc,EAAWP,CAAY,EAGtC,OAAID,IAAY,SACZA,EAAU,WAAWa,EAAcnB,CAAI,GAEpCK,CACX,CACA,OAAAyB,EAAU,OAASF,EACnBE,EAAU,MAAQD,EACXC,CACX,CACO,SAASE,GAASjC,EAAMC,EAAMC,EAAS,CAC1C,IAAIQ,EAAU,GAAME,EAAW,GAC/B,GAAI,OAAOZ,GAAQ,WACf,MAAM,IAAI,UAAUa,EAAe,EAEvC,OAAItB,GAASW,CAAO,IAChBQ,EAAU,YAAaR,EAAU,CAAC,CAACA,EAAQ,QAAUQ,EACrDE,EAAW,aAAcV,EAAU,CAAC,CAACA,EAAQ,SAAWU,GAErDb,GAASC,EAAMC,EAAM,CACxB,QAASS,EACT,QAAST,EACT,SAAUW,CACd,CAAC,CACL,CC7Ima,IAAIsB,IAAa,SAASA,EAAY,CAACA,EAAY,KAAQ,OAAOA,EAAY,MAAS,QAAQA,EAAY,KAAQ,MAAO,GAAGA,KAAcA,GAAY,CAAC,EAAE,EAQljB,IAAMC,GAAOC,GAAQ,SAAgBC,EAAM,CAAC,GAAK,CAAC,MAAMC,EAAU,YAAAC,EAAY,UAAAC,EAAU,WAAAC,EAAW,IAAAC,EAAI,IAAAC,EAAI,SAAAC,EAAS,aAAAC,EAAa,MAAAC,EAAM,MAAAC,EAAM,WAAAC,EAAW,YAAAC,EAAY,SAAAC,EAAS,UAAAC,EAAU,cAAAC,EAAc,OAAAC,EAAO,oBAAAC,EAAoB,WAAAC,EAAW,SAAAC,EAAS,YAAAC,EAAY,MAAAC,CAAK,EAAErB,EAAW,CAACsB,EAAQC,CAAU,EAAEC,GAAS,EAAK,EAAO,CAACC,GAAQC,EAAU,EAAEF,GAAS,EAAK,EAAQG,GAASC,GAAa,QAAQ,IAAIA,GAAa,OAAaC,EAAcZ,GAAqB,CAACU,GAAeG,EAAcf,GAAeK,IAAcvB,GAAY,KAAWkC,EAASX,IAAcvB,GAAY,KAAWmC,EAAMC,GAAO,EAAQC,EAAY,EAC5mBC,EAAYC,GAAY,CAACC,EAAOC,IAAS,CAACC,GAAqBF,CAAM,EAAK9B,GAASA,EAAS8B,CAAM,EAAKR,EAAcW,GAAQF,EAAOD,EAAOnB,CAAU,EAAO,sBAAsB,IAAIoB,EAAO,IAAID,CAAM,CAAC,CAAE,EAAE,CAACnB,EAAWW,EAActB,CAAQ,CAAC,EAG/OkC,EAAMC,GAAmBzC,EAAU,CAAC,SAASkC,EAAY,UAAUM,GAAOE,GAAUF,EAAM,CAAC,EAAE,GAAG,EAAE,CAACpC,EAAIC,CAAG,CAAC,CAAC,CAAC,EAAQsC,EAAMC,GAAaJ,EAAM,CAACpC,EAAIC,CAAG,EAAE,CAAC,KAAK,MAAM,CAAC,EAAQwC,GAAgBD,GAAaJ,EAAM,CAACpC,EAAIC,CAAG,EAAE,CAAC,EAAE,CAAC,CAAC,EAAQiC,GAAqBH,GAAYW,GAASC,GAAK,CAAC,IAAIC,EAAQ,GAAAA,EAAIjB,EAAM,WAAW,MAAMiB,IAAM,SAAcA,EAAI,QAAMjB,EAAM,QAAQ,MAAMgB,EAAI,EAAE,GAAG,EAAE,CAAChB,CAAK,CAAC,EACxYkB,GAAYT,EAAMO,GAAK,CAAIG,GAAclD,CAAS,GAAEsC,GAAqBS,CAAG,EAAKvC,GAAOuC,GAAK1C,GAAIG,EAAM,EAAKC,GAAOsC,GAAK3C,GAAIK,EAAM,EAAKF,GAAaA,EAAawC,CAAG,CAAE,CAAC,EACvK,IAAMI,EAAkBC,GAAG,CAAClB,EAAY,WAAWkB,EAAE,OAAO,KAAK,EAAEZ,CAAK,CAAE,EACpEa,EAAgBD,GAAG,CAAI,WAAWA,EAAE,OAAO,KAAK,IAAI,GAAElB,EAAY,WAAWkB,EAAE,OAAO,KAAK,EAAEZ,CAAK,CAAE,EAAQc,EAAc,IAAI,CAAC,EAAQC,EAAezB,EAASlB,EAASqB,EAAYA,EAAkBuB,EAAY,KAAK,IAAI5C,EAASqB,EAAYhC,CAAW,EAAE,OAAqBwD,EAAM,MAAM,CAAC,UAAU,wBAAwB,aAAa,IAAInC,EAAW,EAAI,EAAE,aAAa,IAAIA,EAAW,EAAK,EAAE,MAAM,CAAC,SAAS,WAAW,GAAGF,EAAM,WAAW,SAAS,eAAe,aAAa,OAAO,aAAajB,IAAa,iCAAiCqD,EAAY,gCAAgCD,CAAc,EAAE,SAAS,CAAeG,EAAK,QAAQ,CAAC,IAAI3B,EAAM,MAAM,CAAC,WAAW,EAAE,UAAUyB,EAAY,QAAQ,EAAE,OAAO,EAAE,QAAQ,OAAO,GAAGpC,EAAM,wBAAwB,mBAAmB,GAAG,CAACS,GAAe,CAAC,MAAM,eAAe0B,OAAoB,WAAW,CAACA,EAAe,CAAC,CAAC,EAAE,QAAQ,IAAI9B,GAAW,EAAI,EAAE,OAAO,IAAIA,GAAW,EAAK,EAAE,KAAK,QAAQ,IAAIrB,EAAI,IAAIC,EAAI,aAAa,GAAG,KAAK,MAAM,SAAS8C,EAAkB,YAAYE,EAAgB,UAAUC,CAAa,CAAC,EAAgBI,EAAK,MAAM,CAAC,MAAM,CAAC,WAAWhD,EAAW,SAAS,WAAW,IAAI,cAAc,KAAK,KAAKT,EAAY,CAAC,OAAO,aAAaU,EAAY,QAAQ,OAAO,OAAOV,EAAY,MAAM,OAAO,gBAAgB,OAAO,cAAc,OAAO,SAAS,QAAQ,EAAE,SAAuByD,EAAKC,EAAO,IAAI,CAAC,MAAM,CAAC,OAAO1D,EAAY,MAAM,OAAO,WAAWC,EAAU,OAAO2C,GAAgB,SAAS,WAAW,IAAI,cAAc,KAAK,KAAK5C,EAAY,CAAC,OAAO,gBAAgB,OAAO,cAAc,MAAM,CAAC,CAAC,CAAC,CAAC,EAAgByD,EAAKC,EAAO,IAAI,CAAC,MAAM,CAAC,EAAEhB,EAAM,SAAS,WAAW,QAAQ,OAAO,IAAI,cAAc,KAAK,MAAM/B,EAAS,CAAC,OAAO,cAAc,OAAO,GAAGiB,EAAc,CAAC,MAAM,eAAejB,MAAa,KAAK,CAAC,EAAE,CAAC,MAAM,OAAO,KAAK,CAACA,EAAS,CAAC,CAAC,EAAE,SAAuB8C,EAAKC,EAAO,IAAI,CAAC,QAAQ,GAAM,QAAQ,CAAC,MAAMtC,GAASF,IAAcvB,GAAY,OAAOuB,IAAcvB,GAAY,KAAK,EAAE,CAAC,EAAE,WAAW,CAAC,KAAK,SAAS,UAAU,IAAI,QAAQ,EAAE,EAAE,MAAM,CAAC,gBAAgB,UAAU,MAAMgB,EAAS,OAAOA,EAAS,aAAa,MAAM,WAAWC,EAAU,cAAc,OAAO,UAAU,mBAAmBE;AAAA,kDAC/jEA;AAAA,kDACAA,GAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,EAAE,CAAC,2GAA2G,oEAAoE,gKAAgK,4MAA4M,wMAAwM,iMAAkM,CAAC,EAAElB,GAAO,YAAY,SAASA,GAAO,aAAa,CAAC,OAAO,GAAG,MAAM,IAAI,YAAY,EAAE,UAAU,OAAO,WAAW,OAAO,UAAU,OAAO,WAAW,sBAAsB,OAAO,kBAAkB,SAAS,GAAG,SAAS,GAAK,IAAI,EAAE,IAAI,IAAI,MAAM,GAAG,YAAY,EAAE,YAAYD,GAAY,KAAK,cAAc,GAAM,WAAW,CAAC,KAAK,SAAS,MAAM,EAAE,UAAU,IAAI,QAAQ,EAAE,EAAE,oBAAoB,EAAI,EAAEgE,GAAoB/D,GAAO,CAAC,UAAU,CAAC,MAAM,OAAO,KAAKgE,EAAY,KAAK,EAAE,WAAW,CAAC,MAAM,QAAQ,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,KAAK,EAAE,OAAO,CAAC,KAAKA,EAAY,MAAM,MAAM,QAAQ,EAIhlD,oBAAoB,CAAC,KAAKA,EAAY,QAAQ,MAAM,UAAU,aAAa,UAAU,cAAc,SAAS,EAAE,WAAW,CAAC,KAAKA,EAAY,WAAW,aAAahE,GAAO,aAAa,UAAU,EAAE,YAAY,CAAC,KAAKgE,EAAY,KAAK,wBAAwB,GAAK,MAAM,OAAO,QAAQ,CAAC,OAAO,QAAQ,MAAM,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAY,QAAQ,MAAM,YAAY,aAAa,MAAM,cAAc,KAAK,OAAO,CAAC,CAAC,YAAA1C,CAAW,IAAIA,IAAcvB,GAAY,IAAI,EAAE,SAAS,CAAC,KAAKiE,EAAY,OAAO,MAAM,OAAO,IAAI,GAAG,IAAI,IAAI,OAAO,CAAC,CAAC,YAAA1C,CAAW,IAAIA,IAAcvB,GAAY,IAAI,EAAE,MAAM,CAAC,KAAKiE,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,KAAK,GAAG,EAAE,YAAY,CAAC,MAAM,SAAS,KAAKA,EAAY,OAAO,IAAI,CAAC,EAAE,IAAI,CAAC,MAAM,MAAM,KAAKA,EAAY,OAAO,eAAe,EAAI,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,eAAe,GAAK,IAAI,EAAE,IAAI,IAAI,MAAM,QAAQ,EAAE,IAAI,CAAC,MAAM,MAAM,KAAKA,EAAY,OAAO,eAAe,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,YAAY,EAAE,MAAM,CAAC,KAAKA,EAAY,YAAY,EAAE,MAAM,CAAC,KAAKA,EAAY,YAAY,CAAC,CAAC,ECrBrZ,IAAMC,GAAcC,GAAGA,aAAaC,GAAgBC,IAAS,SAASA,EAAQ,CAACA,EAAQ,MAAS,SAASA,EAAQ,IAAO,KAAM,GAAGA,KAAUA,GAAQ,CAAC,EAAE,EAAE,SAASC,GAASC,EAAM,CAAC,GAAK,CAAC,YAAAC,EAAY,UAAAC,CAAS,EAAEF,EAAW,CAACG,EAASC,CAAW,EAAEC,GAAS,MAAM,EAAE,OAAAC,GAAU,IAAI,CAACF,EAAYG,GAAiBL,CAAS,CAAC,CAAE,EAAE,CAACA,CAAS,CAAC,EAAEM,GAAYP,EAAYQ,GAAQ,CAACL,EAAYG,GAAiBE,CAAM,CAAC,CAAE,CAAC,EAAsBC,EAAKC,GAAU,CAAC,SAASR,CAAQ,CAAC,CAAE,CAAC,IAAMS,GAAeC,GAAQA,EAAO,SAAS,CAACA,EAAO,QAAQ,QAAQ,CAACA,EAAO,QAAQ,OAAOA,EAAO,QAAQ,WAAW,EAUnqCC,GAAMC,GAAQ,SAAef,EAAM,CAAC,IAAIgB,EAAa,GAAK,CAAC,QAAAC,EAAQ,WAAAC,EAAW,cAAAC,EAAc,YAAAC,EAAY,IAAAC,EAAI,WAAAC,EAAW,OAAAC,EAAO,QAAAC,EAAQ,QAAAC,EAAQ,KAAAC,EAAK,KAAAC,EAAK,SAAAC,EAAS,SAAAC,EAAS,OAAAC,EAAO,SAAAC,EAAS,UAAAC,EAAU,gBAAAC,EAAgB,cAAAC,EAAc,aAAAC,EAAa,WAAAC,EAAW,OAAAC,EAAO,QAAAC,EAAQ,MAAAC,GAAM,YAAAC,GAAY,wBAAAC,EAAuB,EAAEzC,EAAU0C,EAAW,UAAeT,EAAiBS,EAAWT,EAAyB,EAAAjC,GAAQ,OAA6BgB,EAAahB,EAAM,SAAS,MAAMgB,IAAe,SAAcA,EAAa,SAAQ0B,EAAW1C,EAAM,MAAM,QAC7iB,GAAK,CAAC2C,EAAUC,CAAY,EAAEvC,GAAS,EAAK,EAAO,CAACwC,EAASC,CAAW,EAAEzC,GAAS,CAAC,EAC9EQ,EAAOkC,GAAO,EAAQC,EAAWD,GAAO,CAAC,MAAM,GAAM,UAAU,IAAI,CAAC,EACpEE,EAAcC,GAAmBrB,EAAS,CAAC,UAAUsB,GAAOA,EAAM,IAAI,SAAS,CAACC,EAASD,IAAQ,CAAItC,EAAO,QAAQ,WAAUA,EAAO,QAAQ,YAAYuC,EAASvC,EAAO,QAAQ,SAASwC,EAAsB,YAAY,EAAG,CAAC,CAAC,EAAQC,GAAQC,GAAWvD,CAAK,EAAQwD,GAAaC,GAAUzD,CAAK,EAAO,CAAC,SAAA0D,CAAQ,EAAEC,GAAgB3D,CAAK,EAAQ4D,EAAWC,GAAa,QAAQ,IAAIA,GAAa,QAAcC,EAAmBrB,KAA0B,QAAcsB,EAAIvC,IAAU,MAAMD,EAAOE,EAAcuC,EAAeJ,GAAY3C,EAElhBoC,EAAsBY,GAAYC,GAAG,CAAC,IAAIC,EAA8BC,EAAoB,IAAMC,EAAgBxD,EAAO,QAAQ,SAAeZ,GAAYY,EAAO,QAAQ,YAA2U,IAA9TuD,EAAoBpB,EAAW,WAAW,MAAMoB,IAAsB,SAAeD,EAA8BC,EAAoB,aAAa,MAAMD,IAAgC,QAAcA,EAA8B,KAAK,EAAK,KAAK,IAAIlE,GAAYgD,EAAc,IAAI,CAAC,EAAE,IAAIA,EAAc,IAAIhD,EAAW,EAAM,CAAC2D,EAAW,OAAO,IAAMU,GAAa1D,GAAeC,CAAM,EAAK8B,IAAY2B,IAAa1B,EAAa0B,EAAY,EAAKA,IAAcV,IAAYZ,EAAW,QAAQ,UAAUuB,GAAQtB,EAAcoB,EAAgB,CAAC,KAAK,QAAQ,KAAK,SAAS,SAASA,EAAgBpE,EAAW,CAAC,EAAG,EAAE,CAAC2D,EAAWjB,CAAS,CAAC,EAAQ6B,EAAqB,IAAI,CAA2B,SAAS,iBAAiB,eAAe,EAAsB,QAAQC,GAAI,CAACA,EAAG,MAAM,CAAE,CAAC,CAAE,EAE/7BC,GAAU,IAAI,CAAId,GAAW/C,EAAO,QAAQ,KAAK,EAAE,MAAM8D,GAAG,CAAC,CAAC,CACnE,EAAQC,GAAW,IAAI,CAAC,IAAIT,EAA8BC,EAAoBvD,EAAO,QAAQ,MAAM,GAAGuD,EAAoBpB,EAAW,WAAW,MAAMoB,IAAsB,SAAeD,EAA8BC,EAAoB,aAAa,MAAMD,IAAgC,QAAcA,EAA8B,KAAK,CAAE,EAAQU,GAAe,IAAI,CAAIzC,GAAWA,EAAW,CAAC,SAASvB,EAAO,QAAQ,QAAQ,CAAC,EAAEiC,EAAYjC,EAAO,QAAQ,QAAQ,CAAE,EAAQiE,GAAa,IAAI,CAAKnF,GAAckC,CAAQ,IAAGhB,EAAO,QAAQ,YAAYgB,EAAS,IAAIhB,EAAO,QAAQ,SAAU,EAAQkE,GAAY,IAAI,CAE9lB/B,EAAW,QAAQ,QAAUgB,GAAeU,GAAU,EAAE1B,EAAW,QAAQ,MAAM,GAAK8B,GAAa,EAAG,EACpGE,GAAWC,GAAK,CAAIpE,EAAO,QAAQ,cAAaA,EAAO,QAAQ,YAAYoE,EAAI5B,EAAsB,YAAY,EAAG,EAAQ6B,GAAU,IAAI,CAAI3C,IAAMA,GAAM,CAAE,EAAQ4C,GAAgB,IAAI,CAAIrB,GAAmBU,EAAqB,EAAEE,GAAU,CAAE,EACxPpE,GAAU,IAAI,CAAIsD,EACf3C,IAAU,GAAKyD,GAAU,EAAOE,GAAW,EAC5BhC,EAAf3B,IAAU,EAAsB,CAA4B,EAAE,CAACA,CAAO,CAAC,EAAEX,GAAU,IAAI,CAAC,IAAI8E,EAC3F,GAAAA,EAAgBvE,EAAO,WAAW,MAAMuE,IAAkB,SAAcA,EAAgB,UAAStC,EAAYjC,EAAO,QAAQ,QAAQ,CAAE,EAAE,CAAC,CAAC,EAC9IP,GAAU,IAAI,CAAI0C,EAAW,QAAQ,OAAOL,GAAWN,EAAOA,EAAO,EAAUW,EAAW,QAAQ,OAAOV,GAAQA,EAAQ,CAAE,EAAE,CAACK,CAAS,CAAC,EACxIrC,GAAU,IAAI,CAACO,EAAO,QAAQ,OAAOiB,EAAO,GAAI,EAAE,CAACA,CAAM,CAAC,EAC1DxB,GAAU,IAAI,CAAC0C,EAAW,QAAQ,MAAM,EAAM,EAAE,CAACvB,EAAQD,EAAQD,CAAM,CAAC,EACxE8D,GAAW,IAAI,CAAIrB,GAAeU,GAAU,CAAE,CAAC,EAAEY,GAAU,IAAI,CAAI9C,IAAY3B,EAAO,QAAQ,MAAM,CAAE,CAAC,EAAE0E,GAAoBtC,EAAc,SAASgC,GAAK,CAAC,IAAIG,EAAgB,IAAMI,EAAkB,GAAAJ,EAAgBvE,EAAO,WAAW,MAAMuE,IAAkB,SAAcA,EAAgB,SAAUH,EAAIpE,EAAO,QAAQ,SAAS,IAAI,KAAQsB,GAAcA,EAAa8C,EAAIO,EAAgBjF,GAAiB0E,CAAG,CAAC,CAAG,CAAC,EAAE,IAAMQ,GAAW,CAAC,YAAY1D,GAAUC,EAAUX,EAAI,EAAE,WAAW,EAAE,OAAOqB,CAAU,EAAE,OAAoBgD,EAAM,MAAM,CAAC,MAAM,CAAC,GAAGC,GAAgB,SAAS,WAAW,SAAS,SAAS,WAAAzE,EAAW,QAAAoC,GAAQ,aAAAE,EAAY,EAAE,SAAS,CAAc9C,EAAK,QAAQ,CAAC,IAAIqD,EAAI,KAAKrC,EAAK,UAAU,eAAe,IAAIb,EAAO,QAAQ,WAAW,SAASmD,EAAe,iBAAiBa,GAAe,iBAAiBE,GAC3yB,UAAU,IAAI1B,EAAsB,cAAc,EAAE,OAAO,IAAIA,EAAsB,WAAW,EAAE,SAAS,IAAIA,EAAsB,WAAW,EAAE,QAAQ,IAAIA,EAAsB,YAAY,EAAE,QAAQ,IAAI6B,GAAU,CAAC,CAAC,EAAEhD,GAA4BxB,EAAKC,GAAU,CAAC,SAASgC,EAAuBjC,EAAKkF,GAAU,CAAC,MAAM,GAAG,SAAS,CAAC,MAAM,EAAE,EAAE,QAAQ,IAAIhB,GAAW,EAAE,MAAMa,GAAW,aAAa,aAAa,CAAC,EAAe/E,EAAKmF,GAAS,CAAC,MAAM,GAAG,SAAS,CAAC,MAAM,EAAE,EAAE,QAAQV,GAAgB,MAAMM,GAAW,aAAa,YAAY,CAAC,CAAC,CAAC,EAAE1D,GAAuB2D,EAAM,IAAI,CAAC,MAAM,CAAC,WAAW,OAAO,MAAM,OAAO,WAAW,IAAI,cAAc,KAAK,OAAO,EAAE,WAAW,EAAE,WAAWI,GAAU,mBAAmB,eAAe,YAAY9D,EAAUX,EAAI,EAAE,GAAGM,CAAI,EAAE,SAAS,CAAcjB,EAAKX,GAAS,CAAC,UAAU8C,GAAUlD,GAAckC,CAAQ,EAAEA,EAAS,IAAI,EAAEA,EAAS,KAAK,YAAYoB,CAAa,CAAC,EAAevC,EAAK,OAAO,CAAC,MAAM,CAAC,QAAQ,OAAO,EAAE,SAAS,GAAG,CAAC,EAAEmC,EAAS,EAAEtC,GAAiBsC,CAAQ,EAAE,MAAM,CAAC,CAAC,EAAEb,GAAwBtB,EAAKqF,GAAO,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM9C,EAAc,UAAU9B,EAAc,YAAY,QAAQ,OAAO,gBAAgB,SAAS,GAAG,UAAUA,EAAc,SAAS6D,GAAW,oBAAoB,GAAM,IAAI,EAAE,IAAInC,EAAS,WAAWvB,CAAU,CAAC,CAAC,CAAC,CAAC,CAAE,EAAE,CAAC,wCAAwC,sDAAsD,CAAC,EAAER,GAAM,aAAa,CAAC,WAAW,UAAU,WAAW,UAAU,KAAK,CAAC,SAAS,EAAE,EAAE,cAAc,UAAU,OAAO,yEAAyE,QAAQ,MAAM,YAAY,GAAK,aAAa,EAAE,QAAQ,GAAG,SAAS,EAAE,OAAO,GAAG,KAAK,GAAM,QAAQ,GAAK,SAAS,GAAK,SAAS,GAAK,UAAU,GAAK,cAAc,GAAK,wBAAwB,WAAW,YAAY,EAAE,IAAI,GAAG,OAAO,GAAG,MAAM,GAAG,EAAEkF,GAAoBlF,GAAM,CAAC,QAAQ,CAAC,KAAKmF,EAAY,KAAK,wBAAwB,GAAK,MAAM,SAAS,QAAQ,CAAC,MAAM,QAAQ,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,IAAI,YAAY,kBAAkB,OAAOjG,EAAM,CAAC,OAAOA,EAAM,UAAU,QAAS,CAAC,EAAE,QAAQ,CAAC,KAAKiG,EAAY,KAAK,MAAM,IAAI,iBAAiB,CAAC,MAAM,MAAM,MAAM,KAAK,EAAE,OAAOjG,EAAM,CAAC,OAAOA,EAAM,UAAU,KAAM,CAAC,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKiG,EAAY,QAAQ,aAAa,MAAM,cAAc,IAAI,EAAE,KAAK,CAAC,MAAM,OAAO,KAAKA,EAAY,QAAQ,aAAa,MAAM,cAAc,IAAI,EAMxzE,SAAS,CAAC,MAAM,WAAW,KAAKA,EAAY,OAAO,IAAI,IAAI,IAAI,EAAE,KAAK,GAAG,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,IAAI,IAAI,IAAI,EAAE,KAAK,GAAG,EAAE,cAAc,CAAC,MAAM,WAAW,KAAKA,EAAY,MAAM,aAAanF,GAAM,aAAa,aAAa,EAAE,WAAW,CAAC,MAAM,QAAQ,KAAKmF,EAAY,MAAM,aAAanF,GAAM,aAAa,UAAU,EAAE,WAAW,CAAC,MAAM,SAAS,KAAKmF,EAAY,MAAM,aAAanF,GAAM,aAAa,UAAU,EAAE,KAAK,CAAC,MAAM,OAChb,KAAKmF,EAAY,KAAK,gBAAgB,EAAI,EAAE,GAAGC,GAAe,GAAGC,GAAoB,IAAI,CAAC,KAAKF,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,eAAe,EAAI,EAAE,cAAc,CAAC,KAAKA,EAAY,QAAQ,MAAM,aAAa,aAAa,OAAO,cAAc,MAAM,EAAE,UAAU,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,OAAO,cAAc,MAAM,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,OAAO,cAAc,MAAM,EAAE,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,QAAQ,cAAc,UAAU,EAAE,wBAAwB,CAAC,KAAKA,EAAY,KAAK,MAAM,UAAU,QAAQ,CAAC,WAAW,OAAO,EAAE,aAAa,CAAC,eAAe,WAAW,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,YAAY,EAAE,QAAQ,CAAC,KAAKA,EAAY,YAAY,EAAE,MAAM,CAAC,KAAKA,EAAY,YAAY,EAAE,aAAa,CAAC,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAsM,SAASG,GAASC,EAAM,CAAC,OAAoBC,EAAKC,EAAO,IAAI,CAAC,GAAGF,EAAM,UAAU,oBAAoB,MAAM,6BAA6B,QAAQ,YAAY,SAAsBC,EAAK,OAAO,CAAC,EAAE,4RAA4R,KAAK,MAAM,CAAC,CAAC,CAAC,CAAE,CAAC,SAASE,GAAUH,EAAM,CAAC,OAAoBI,EAAMF,EAAO,IAAI,CAAC,GAAGF,EAAM,UAAU,oBAAoB,MAAM,6BAA6B,QAAQ,YAAY,SAAS,CAAcC,EAAK,OAAO,CAAC,EAAE,4HAA4H,KAAK,SAAS,CAAC,EAAeA,EAAK,OAAO,CAAC,EAAE,sIAAsI,KAAK,SAAS,CAAC,CAAC,CAAC,CAAC,CAAE,CCpC1/D,IAAII,GAAwBC,GAAyBC,GAAyBC,GAAyBC,GAAyBC,GAA8uDC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAMC,GAAkCA,GAAQ,MAAMA,IAAQ,GAAWC,EAAkBD,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBE,GAAW,CAAC,CAAC,MAAAF,EAAM,SAAAG,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWP,GAAmCI,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,IAAO,YAAY,WAAW,YAAY,MAAM,YAAY,WAAW,YAAY,MAAM,YAAY,WAAW,YAAY,MAAM,YAAY,WAAW,YAAY,MAAM,YAAY,OAAO,YAAY,OAAO,YAAY,UAAU,WAAW,EAAQC,GAAS,CAAC,CAAC,YAAAC,EAAY,YAAAC,EAAY,OAAAC,EAAO,GAAAC,EAAG,OAAAC,EAAO,OAAAC,EAAO,OAAAC,EAAO,OAAAC,EAAO,YAAAC,EAAY,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAuCC,EAAMC,EAAM,MAAM,CAAC,GAAGL,EAAM,UAAUL,GAAsCK,EAAM,UAAU,WAAWC,EAAKH,GAAmCE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,kDAAkD,WAAWC,EAAML,GAAqDG,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,kBAAkB,UAAUR,GAAsCM,EAAM,UAAU,UAAUJ,GAAsCI,EAAM,UAAU,SAASI,GAAOD,EAAuChB,GAAwBa,EAAM,OAAO,KAAK,MAAMG,IAAyC,OAAOA,EAAuCH,EAAM,WAAW,MAAMI,IAAQ,OAAOA,EAAM,YAAY,UAAUX,GAAsCO,EAAM,UAAU,WAAWK,EAAMf,GAAqDU,EAAM,aAAa,MAAMK,IAAQ,OAAOA,EAAmBtB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAUI,GAAqDW,EAAM,SAAS,CAAE,EAAQM,GAAuB,CAACN,EAAMhC,IAAWA,EAAS,KAAK,GAAG,EAAEgC,EAAM,iBAAuBO,GAA6BC,GAAW,SAASR,EAAMS,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA7C,EAAQ,UAAA8C,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEpC,GAASY,CAAK,EAAO,CAAC,YAAAyB,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAA7D,CAAQ,EAAE8D,GAAgB,CAAC,WAAAnE,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQkE,EAAiBzB,GAAuBN,EAAMhC,CAAQ,EAAO,CAAC,sBAAAgE,EAAsB,MAAAC,EAAK,EAAEC,GAAyBT,CAAW,EAAQU,GAAoBH,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,GAAoBL,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAaN,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQU,EAAoBP,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQW,EAAoBR,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQY,EAAmBT,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQa,EAAoBV,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQc,EAAmBX,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQe,EAAaZ,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQgB,EAAoBb,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQiB,GAAoBd,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQkB,GAAoBf,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQmB,EAAoBhB,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQoB,EAAoBjB,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQqB,EAAoBlB,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQsB,EAAmBnB,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQuB,EAAoBpB,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQwB,EAAoBrB,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQyB,EAAWC,GAAO,IAAI,EAAQC,GAAQpF,GAAM+C,CAAS,EAAQsC,GAAYpF,GAAWoD,IAAc,YAAmB,GAAapD,EAAcqF,GAAStF,GAAMgD,CAAS,EAAQuC,GAASvF,GAAMiD,CAAS,EAAQuC,GAASxF,GAAMkD,CAAS,EAAQuC,GAAa,IAAQ,GAAC,YAAY,WAAW,EAAE,SAASpC,CAAW,EAAmCqC,GAAa,IAAQ,GAAC,YAAY,WAAW,EAAE,SAASrC,CAAW,EAAmCsC,GAAa,IAAQ,GAAC,YAAY,WAAW,EAAE,SAAStC,CAAW,EAAmCuC,GAAa,IAAQ,GAAC,YAAY,WAAW,EAAE,SAASvC,CAAW,EAAmCwC,EAAsBC,GAAM,EAAQC,EAAsB,CAAarD,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,EAAQsD,EAAkBC,GAAqB,EAAE,OAAoBtF,EAAKuF,GAAY,CAAC,GAAGvD,GAA4CkD,EAAgB,SAAsBlF,EAAKC,GAAS,CAAC,QAAQhB,EAAS,QAAQ,GAAM,SAAsBe,EAAKR,GAAW,CAAC,MAAMJ,GAAY,SAAsBoG,EAAMtF,EAAO,IAAI,CAAC,GAAGuC,EAAU,UAAUgD,GAAG5G,GAAkB,GAAGuG,EAAsB,iBAAiBrD,EAAUY,CAAU,EAAE,mBAAmB,YAAY,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAInB,GAA6B6C,EAAK,MAAM,CAAC,GAAGzC,CAAK,EAAE,GAAG/C,EAAqB,CAAC,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,YAAY,CAAC,EAAE2D,EAAYE,CAAc,EAAE,SAAS,CAAc4C,EAAMtF,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8C,EAAiB,SAAS,YAAY,SAAS,CAAchD,EAAK0F,GAAS,CAAC,sBAAsB,GAAK,SAAsB1F,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,YAAY,QAAQ,CAAC,EAAE,KAAKf,EAAU,SAAS,CAAC,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGlD,EAAqB,CAAC,UAAU,CAAC,SAAsBiB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,uBAAuB,OAAO,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,0BAA0B,CAAC,CAAC,EAAEwC,EAAYE,CAAc,CAAC,CAAC,EAAe5C,EAAK0F,GAAS,CAAC,sBAAsB,GAAK,SAAsB1F,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,0BAA0B,MAAM,EAAE,SAAS,6PAA6P,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,MAAM,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAMtF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB8C,EAAiB,SAAS,YAAY,SAAS,CAAchD,EAAK0F,GAAS,CAAC,sBAAsB,GAAK,SAAsB1F,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uCAAuC,EAAE,SAAS,iDAAiD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,eAAe,QAAQ,CAAC,EAAE,KAAKd,EAAU,SAAS,CAAC,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGnD,EAAqB,CAAC,UAAU,CAAC,SAAsBiB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uCAAuC,EAAE,SAAS,iDAAiD,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwC,EAAYE,CAAc,CAAC,CAAC,EAAe5C,EAAK2F,GAAyB,CAAC,QAAQ,CAAC,oEAAqF1E,GAAM,UAAa,sEAAuFA,GAAM,UAAa,wEAAyFA,GAAM,SAAY,EAAE,SAAsBjB,EAAK0F,GAAS,CAAC,sBAAsB,GAAK,SAASvD,EAAU,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiBa,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,OAAO,QAAQ,CAAC,EAAE,wBAAwB,CAAC,EAAE,8BAA8B,KAAK,+BAA+B,GAAG,+BAA+B,GAAG,+BAA+B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,EAAE,6BAA6B,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGjE,EAAqB,CAAC,UAAU,CAAC,wBAAwB,CAAC,EAAE,8BAA8B,KAAK,+BAA+B,GAAG,+BAA+B,GAAG,+BAA+B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,EAAE,8BAA8B,CAAC,CAAC,EAAE2D,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAe4C,EAAMtF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB8C,EAAiB,SAAS,YAAY,SAAS,CAAchD,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8C,EAAiB,SAAS,YAAY,SAAS0B,GAAYD,EAAO,GAAgBzE,EAAK4F,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,cAA2EP,GAAkB,OAAQ,sDAAsD,GAAG9F,EAAkB6C,CAAS,CAAC,EAAE,UAAU,iBAAiB,qBAAqBI,EAAU,mBAAmB,SAAS,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,aAAaI,GAAoB,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,CAAC,EAAE,GAAGrE,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,cAA2EsG,GAAkB,OAAQ,mDAAmD,GAAG9F,EAAkB6C,CAAS,CAAC,EAAE,aAAauB,EAAoB,aAAaG,EAAoB,MAAMD,CAAY,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,cAA2EwB,GAAkB,OAAQ,qDAAqD,GAAG9F,EAAkB6C,CAAS,CAAC,EAAE,aAAauB,CAAmB,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,cAA2E0B,GAAkB,OAAQ,mDAAmD,GAAG9F,EAAkB6C,CAAS,CAAC,EAAE,aAAauB,EAAoB,aAAaC,CAAkB,EAAE,UAAU,CAAC,aAAaH,EAAoB,MAAMF,CAAY,EAAE,UAAU,CAAC,iBAAiB,OAAU,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAGhE,EAAkB6C,CAAS,CAAC,EAAE,aAAa,MAAS,EAAE,UAAU,CAAC,aAAasB,EAAmB,MAAMH,CAAY,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,cAA2E8B,GAAkB,OAAQ,mDAAmD,GAAG9F,EAAkB6C,CAAS,CAAC,EAAE,aAAauB,EAAoB,aAAaK,GAAoB,MAAMH,CAAY,EAAE,UAAU,CAAC,aAAaP,EAAmB,EAAE,UAAU,CAAC,aAAaE,EAAoB,MAAMD,CAAY,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,cAA2E8B,GAAkB,OAAQ,mDAAmD,GAAG9F,EAAkB6C,CAAS,CAAC,EAAE,aAAauB,EAAoB,aAAaI,GAAoB,MAAMF,CAAY,CAAC,EAAEnB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8C,EAAiB,SAAS,YAAY,SAAS0B,GAAYC,EAAQ,GAAgB3E,EAAK4F,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,cAA2EP,GAAkB,OAAQ,sDAAsD,GAAG9F,EAAkB8C,CAAS,CAAC,EAAE,UAAU,iBAAiB,qBAAqBG,EAAU,mBAAmB,SAAS,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,aAAaiB,EAAoB,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,CAAC,EAAE,GAAGlF,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,cAA2EsG,GAAkB,OAAQ,mDAAmD,GAAG9F,EAAkB8C,CAAS,CAAC,EAAE,aAAa6B,EAAoB,aAAaN,CAAkB,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,cAA2EyB,GAAkB,OAAQ,qDAAqD,GAAG9F,EAAkB8C,CAAS,CAAC,EAAE,aAAa6B,CAAmB,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,cAA2EmB,GAAkB,OAAQ,mDAAmD,GAAG9F,EAAkB8C,CAAS,CAAC,EAAE,aAAa6B,CAAmB,EAAE,UAAU,CAAC,iBAAiB,OAAU,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAG3E,EAAkB8C,CAAS,CAAC,EAAE,aAAa,MAAS,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,cAA2EgD,GAAkB,OAAQ,mDAAmD,GAAG9F,EAAkB8C,CAAS,CAAC,EAAE,aAAa6B,CAAmB,EAAE,UAAU,CAAC,aAAaZ,EAAmB,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,cAA2E+B,GAAkB,OAAQ,mDAAmD,GAAG9F,EAAkB8C,CAAS,CAAC,EAAE,aAAa6B,CAAmB,CAAC,EAAExB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8C,EAAiB,SAAS,YAAY,SAAS0B,GAAYE,EAAQ,GAAgB5E,EAAK4F,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,cAA2EP,GAAkB,OAAQ,sDAAsD,GAAG9F,EAAkB+C,CAAS,CAAC,EAAE,UAAU,iBAAiB,qBAAqBE,EAAU,mBAAmB,SAAS,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,aAAamB,EAAoB,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,CAAC,EAAE,GAAGpF,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,cAA2EsG,GAAkB,OAAQ,mDAAmD,GAAG9F,EAAkB+C,CAAS,CAAC,EAAE,aAAa+B,CAAmB,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,cAA2EgB,GAAkB,OAAQ,qDAAqD,GAAG9F,EAAkB+C,CAAS,CAAC,EAAE,aAAa+B,CAAmB,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,cAA2EgB,GAAkB,OAAQ,mDAAmD,GAAG9F,EAAkB+C,CAAS,CAAC,EAAE,aAAa+B,CAAmB,EAAE,UAAU,CAAC,aAAaf,EAAmB,EAAE,UAAU,CAAC,iBAAiB,OAAU,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAG/D,EAAkB+C,CAAS,CAAC,EAAE,aAAa,MAAS,EAAE,UAAU,CAAC,aAAa8B,EAAmB,aAAaV,CAAkB,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,cAA2E2B,GAAkB,OAAQ,mDAAmD,GAAG9F,EAAkB+C,CAAS,CAAC,EAAE,aAAa+B,EAAoB,aAAaN,EAAmB,EAAE,UAAU,CAAC,iBAAiB,OAAU,aAAa,MAAS,EAAE,UAAU,CAAC,iBAAiB,OAAU,aAAa,MAAS,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,cAA2EsB,GAAkB,OAAQ,mDAAmD,GAAG9F,EAAkB+C,CAAS,CAAC,EAAE,aAAa+B,EAAoB,aAAaT,CAAkB,CAAC,EAAElB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8C,EAAiB,SAAS,YAAY,SAAS0B,GAAYG,EAAQ,GAAgB7E,EAAK4F,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,cAA2EP,GAAkB,OAAQ,sDAAsD,GAAG9F,EAAkBgD,CAAS,CAAC,EAAE,UAAU,iBAAiB,qBAAqBC,EAAU,mBAAmB,SAAS,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,aAAaoB,EAAmB,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,EAAE,CAAC,EAAE,GAAGrF,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,cAA2EsG,GAAkB,OAAQ,mDAAmD,GAAG9F,EAAkBgD,CAAS,CAAC,EAAE,aAAa+B,CAAmB,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,cAA2Ee,GAAkB,OAAQ,qDAAqD,GAAG9F,EAAkBgD,CAAS,CAAC,EAAE,aAAa+B,CAAmB,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,cAA2Ee,GAAkB,OAAQ,mDAAmD,GAAG9F,EAAkBgD,CAAS,CAAC,EAAE,aAAa+B,CAAmB,EAAE,UAAU,CAAC,iBAAiB,OAAU,aAAa,MAAS,EAAE,UAAU,CAAC,iBAAiB,OAAU,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAG/E,EAAkBgD,CAAS,CAAC,EAAE,aAAa,MAAS,EAAE,UAAU,CAAC,aAAa,OAAU,aAAae,EAAmB,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,cAA2E+B,GAAkB,OAAQ,mDAAmD,GAAG9F,EAAkBgD,CAAS,CAAC,EAAE,aAAa+B,EAAoB,aAAaV,CAAkB,EAAE,UAAU,CAAC,iBAAiB,OAAU,aAAa,MAAS,EAAE,UAAU,CAAC,iBAAiB,OAAU,aAAa,MAAS,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,cAA2EyB,GAAkB,OAAQ,mDAAmD,GAAG9F,EAAkBgD,CAAS,CAAC,EAAE,aAAa+B,CAAmB,CAAC,EAAE5B,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkC,GAAa,GAAgB9E,EAAK4F,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,GAAGrG,EAAkB6C,CAAS,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBY,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAGjE,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,SAAS,GAAGQ,EAAkB6C,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAqEiD,GAAkB,OAAQ,mBAAmB,GAAG9F,EAAkB6C,CAAS,CAAC,CAAC,CAAC,EAAEM,EAAYE,CAAc,CAAC,CAAC,EAAEmC,GAAa,GAAgB/E,EAAK4F,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,GAAGrG,EAAkB8C,CAAS,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBW,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAGjE,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAqEsG,GAAkB,OAAQ,kBAAkB,GAAG9F,EAAkB8C,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAqEgD,GAAkB,OAAQ,mBAAmB,GAAG9F,EAAkB8C,CAAS,CAAC,CAAC,CAAC,EAAEK,EAAYE,CAAc,CAAC,CAAC,EAAEoC,GAAa,GAAgBhF,EAAK4F,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,GAAGrG,EAAkB6C,CAAS,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBY,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,GAAGjE,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAqEsG,GAAkB,OAAQ,mBAAmB,GAAG9F,EAAkB+C,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAqE+C,GAAkB,OAAQ,kBAAkB,GAAG9F,EAAkB+C,CAAS,CAAC,CAAC,CAAC,EAAEI,EAAYE,CAAc,CAAC,CAAC,EAAEqC,GAAa,GAAgBjF,EAAK4F,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,GAAGrG,EAAkBgD,CAAS,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBS,EAAiB,SAAS,YAAY,GAAGjE,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAqEsG,GAAkB,OAAQ,mBAAmB,GAAG9F,EAAkBgD,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAqE8C,GAAkB,OAAQ,kBAAkB,GAAG9F,EAAkBgD,CAAS,CAAC,CAAC,CAAC,EAAEG,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiD,GAAI,CAAC,kFAAkF,kFAAkF,wRAAwR,uRAAuR,4HAA4H,kOAAkO,oTAAoT,+RAA+R,8WAA8W,4LAA4L,6LAA6L,mRAAmR,60DAA60D,4MAA4M,mTAAmT,+HAA+H,+HAA+H,yFAAyF,gHAAgH,wHAAwH,yFAAyF,8NAA8N,wIAAwI,oGAAoG,y9BAAy9B,uJAAuJ,6DAA6D,yEAAyE,+aAA+a,4MAA4M,oEAAoE,mbAAmb,sMAAsM,+aAA+a,mbAAmb,mbAAmb,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,EAAG,EASv7pCC,GAAgBC,GAAQvE,GAAUqE,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,0BAA0BA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,QAAQ,QAAQ,QAAQ,QAAQ,SAAS,SAAS,OAAO,aAAa,aAAa,aAAa,YAAY,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,kBAAkB,MAAM,eAAe,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,kDAAkD,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,iBAAiB,MAAM,cAAc,KAAKA,EAAY,QAAQ,EAAE,UAAU,CAAC,MAAM,UAAU,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,UAAU,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,UAAU,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,UAAU,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,eAAe,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,oBAAoB,OAAO,SAAS,IAAI,oEAAoE,EAAE,CAAC,OAAO,eAAe,OAAO,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,GAAGM,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAK,GAAA/H,GAAyC+H,MAAS,MAAM/H,KAA0B,SAAcA,GAAwB,UAAcgI,IAA6B/H,GAA0C8H,MAAS,MAAM9H,KAA2B,OAAO,OAAOA,GAAyB,SAAY,EAAE,CAAC,EAAE,GAAK,GAAAC,GAA0C6H,MAAS,MAAM7H,KAA2B,SAAcA,GAAyB,UAAc8H,IAA6B7H,GAA0C4H,MAAS,MAAM5H,KAA2B,OAAO,OAAOA,GAAyB,SAAY,EAAE,CAAC,EAAE,GAAK,GAAAC,GAA0C2H,MAAS,MAAM3H,KAA2B,SAAcA,GAAyB,UAAc4H,IAA6B3H,GAA0C0H,MAAS,MAAM1H,KAA2B,OAAO,OAAOA,GAAyB,SAAY,EAAE,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT91I,IAAI4H,GAAwBC,GAAsuDC,GAAWC,GAASC,EAAK,EAAQC,GAASF,GAASG,EAAG,EAAQC,GAA6BJ,GAASK,EAAuB,EAAQC,GAAYN,GAASO,EAAM,EAAQC,GAAkBR,GAASS,EAAY,EAAQC,GAAYV,GAASW,EAAM,EAAyD,IAAMC,GAAY,CAAC,UAAU,qBAAqB,UAAU,sBAAsB,UAAU,6CAA6C,EAAoD,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAMC,GAAkCA,GAAQ,MAAMA,IAAQ,GAAWC,EAAkBD,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBE,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,GAAG,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,GAAG,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,CAAC,MAAAC,EAAM,SAAAC,EAAS,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAKC,GAAaJ,CAAK,EAAE,OAAOE,EAASC,CAAI,CAAE,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,GAAG,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAASA,GAAiB,EAAQC,GAAwB,CAAC,gBAAgB,YAAY,QAAQ,YAAY,MAAM,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAO,CAAC,UAAUC,GAAO,WAAWnB,GAAY,QAAQ,WAAW,EAAQoB,GAAQ,CAAC,UAAUD,GAAO,QAAQ,WAAW,EAAQE,GAAQ,CAAC,UAAUF,GAAO,QAAQ,WAAW,EAAQG,GAAQ,CAAC,UAAUH,GAAO,WAAWlB,GAAY,QAAQ,WAAW,EAAQsB,GAAQ,CAAC,UAAUJ,GAAO,WAAWX,GAAY,QAAQ,WAAW,EAAQgB,GAA6BC,GAAW,SAASV,EAAMW,EAAI,CAAC,IAAIC,EAAsC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAqBC,GAAwB,EAAO,CAACC,CAAgB,EAAE1B,GAAa,CAAC,KAAK,CAAC,MAAM,UAAU,KAAK2B,GAAS,KAAK,YAAY,EAAE,OAAO,CAAC,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,CAAC,EAAE,MAAMC,GAAoCJ,CAAoB,CAAC,CAAC,EAAQK,EAAwBC,GAAK,CAAC,GAAG,CAACJ,EAAiB,MAAM,IAAIK,GAAc,mCAAmC,KAAK,UAAUP,CAAoB,GAAG,EAAE,OAAOE,EAAiBI,CAAG,CAAE,EAAO,CAAC,MAAAE,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAUP,EAAwB,WAAW,EAAE,UAAAQ,EAAUR,EAAwB,WAAW,EAAE,UAAAS,EAAUT,EAAwB,WAAW,EAAE,UAAAU,EAAUV,EAAwB,WAAW,EAAE,UAAAW,EAAUX,EAAwB,WAAW,EAAE,UAAAY,EAAUZ,EAAwB,WAAW,EAAE,UAAAa,EAAUb,EAAwB,WAAW,EAAE,UAAAc,EAAUd,EAAwB,WAAW,EAAE,UAAAe,EAAUf,EAAwB,WAAW,EAAE,mBAAAgB,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,EAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,EAAY,GAAGC,CAAS,EAAEjD,GAASI,CAAK,EAAQ8C,GAAU,IAAI,CAAC,IAAMC,EAAUrD,GAAiBwB,EAAiBL,CAAY,EAAE,GAAGkC,EAAU,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAU,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAU,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,GAAI,EAAE,CAAC9B,EAAiBL,CAAY,CAAC,EAAQoC,GAAmB,IAAI,CAAC,IAAMF,EAAUrD,GAAiBwB,EAAiBL,CAAY,EAAqC,GAAnC,SAAS,MAAMkC,EAAU,OAAO,GAAMA,EAAU,SAAS,CAAC,IAAIG,GAAyBA,EAAwB,SAAS,cAAc,uBAAuB,KAAK,MAAMA,IAA0B,QAAcA,EAAwB,aAAa,UAAUH,EAAU,QAAQ,EAAG,IAAMI,EAAQJ,EAAU,cAAc,GAAGI,EAAQ,CAAC,IAAMC,EAAK,SAAS,KAAKA,EAAK,UAAU,QAAQC,GAAGA,EAAE,WAAW,cAAc,GAAGD,EAAK,UAAU,OAAOC,CAAC,CAAC,EAAED,EAAK,UAAU,IAAI,GAAGL,EAAU,4BAA4B,EAAG,MAAM,IAAI,CAAII,GAAQ,SAAS,KAAK,UAAU,OAAO,GAAGJ,EAAU,4BAA4B,CAAE,CAAE,EAAE,CAAC7B,EAAiBL,CAAY,CAAC,EAAE,GAAK,CAACyC,EAAYC,CAAmB,EAAEC,GAA8B7B,EAAQ8B,GAAY,EAAK,EAAQC,EAAe,OAAgBC,EAAWC,GAAO,IAAI,EAAQC,EAAQ/E,GAAM8C,CAAS,EAAQkC,EAAShF,GAAMgD,CAAS,EAAQiC,GAAsBC,GAAM,EAAQC,GAAsB,CAAaxC,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,EAAE,OAAAyC,GAAiB,CAAC,SAAS5D,GAAQ,QAAQD,GAAQ,OAAOE,GAAQ,OAAOJ,GAAO,OAAOK,EAAO,CAAC,EAAsB2D,EAAKC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAvF,EAAiB,EAAE,SAAsBwF,EAAMC,GAAY,CAAC,GAAG5C,GAA4CqC,GAAgB,SAAS,CAAcM,EAAME,EAAO,IAAI,CAAC,GAAG1B,EAAU,UAAU2B,GAAG5F,GAAkB,GAAGqF,GAAsB,gBAAgBxC,CAAS,EAAE,IAAId,GAA6BgD,EAAK,MAAM,CAAC,GAAGnC,CAAK,EAAE,SAAS,CAACqC,GAAsBM,EAAKM,GAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAGtE,EAAkB6C,CAAS,EAAM,UAAU,OAAO,UAAU,QAAS,CAAC,CAAC,EAAE,SAAsBsC,EAAKO,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAG1F,EAAkB6C,CAAS,CAAC,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAEgC,GAAsBM,EAAKQ,GAA0B,CAAC,SAAsBR,EAAKS,GAAU,CAAC,UAAU,yBAAyB,SAAsBT,EAAKU,GAAM,CAAC,WAAW,qBAAqB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,KAAK,CAAC,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAM,wBAAwB,QAAQ,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,YAAY,GAAK,QAAQ,GAAM,SAAS,EAAE,cAAc,kBAAkB,cAAc,GAAK,SAAS,GAAK,UAAU,GAAK,QAAQjD,EAAU,QAAQ,SAAS,OAAO,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,WAAW,qBAAqB,OAAO,IAAI,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkC,GAAuBK,EAAKW,GAAyB,CAAC,QAAQ,CAAC,oEAAqF9E,GAAM,SAAY,EAAE,SAAsBmE,EAAKY,GAAS,CAAC,sBAAsB,GAAK,SAASjD,EAAU,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,KAAK,QAAQ,wBAAwB,CAAC,EAAE,8BAA8B,KAAK,+BAA+B,GAAG,8BAA8B,GAAG,6BAA6B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeqC,EAAKQ,GAA0B,CAAC,SAAsBR,EAAKS,GAAU,CAAC,UAAU,2BAA2B,qBAAqB,SAAS,aAAa,GAAK,SAAsBT,EAAKa,GAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeb,EAAKQ,GAA0B,CAAC,MAAM,QAAQ,SAAsBR,EAAKS,GAAU,CAAC,UAAU,2BAA2B,qBAAqB,QAAQ,SAAsBT,EAAKM,GAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBa,EAAKc,GAAwB,CAAC,UAAUjG,EAAkBmD,CAAS,EAAE,UAAUH,EAAU,WAAWpB,EAAsCsE,GAA2B,aAAgB,MAAMtE,IAAwC,OAAO,OAAOA,EAAsC,KAAKsE,GAA2BnD,EAAUlB,CAAY,EAAE,OAAO,OAAO,GAAG,YAAY,UAAU7B,EAAkBkD,CAAS,EAAE,UAAUlD,EAAkBoD,CAAS,EAAE,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAUpD,EAAkB6C,CAAS,EAAE,MAAM,OAAO,UAAUI,EAAU,UAAU,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoC,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,gBAAgB,qBAAqB,SAAS,SAAsBA,EAAKgB,GAAmB,CAAC,SAAsBhB,EAAKhF,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,UAAU,KAAKgC,GAAS,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,SAAS,MAAM,KAAK,iBAAiB,MAAM,CAAC,UAAU,CAAC,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,eAAe,MAAMa,CAAS,CAAC,EAAE,aAAa,WAAW,KAAK,cAAc,CAAC,EAAE,SAAS,MAAM,MAAM,CAAC,KAAK,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,WAAW,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,EAAE,SAAS,MAAM,MAAM,CAAC,SAAS,MAAM,KAAK,iBAAiB,MAAM,CAAC,UAAU,CAAC,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,eAAe,MAAM,WAAW,CAAC,EAAE,aAAa,WAAW,KAAK,cAAc,CAAC,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACoD,EAAWC,EAAeC,IAAwBnB,EAAKoB,GAAU,CAAC,SAASH,EAAW,IAAI,CAAC,CAAC,UAAY/C,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,GAAKC,CAAW,EAAEgD,KAAyBrB,EAAKG,GAAY,CAAC,GAAG,aAAa9B,IAAc,SAAsB2B,EAAKsB,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUpD,CAAkB,EAAE,SAAsB8B,EAAKuB,GAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUrD,CAAkB,EAAE,UAAU,WAAW,EAAE,SAAsB8B,EAAK,IAAI,CAAC,UAAU,+BAA+B,SAAsBE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKY,GAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAWwB,EAAS,CAAC,SAAsBxB,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,qBAAqB,SAAS,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,KAAK,QAAQ,KAAK7B,EAAmB,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAe6B,EAAKM,GAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ,OAAO,MAAM,QAAQ,GAAGtE,EAAkBuD,CAAkB,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,OAAO,GAAGvD,EAAkBuD,CAAkB,CAAC,CAAC,CAAC,EAAE,SAAsB4B,EAAKO,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ,OAAO,MAAM,OAAO,GAAG1F,EAAkBuD,CAAkB,CAAC,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEC,CAAW,CAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2B,EAAK,MAAM,CAAC,UAAU,gBAAgB,qBAAqB,SAAS,SAAsBA,EAAKgB,GAAmB,CAAC,SAAsBhB,EAAKhF,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,UAAU,KAAKgC,GAAS,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,QAAQ,CAAC,CAAC,UAAU,OAAO,KAAK,QAAQ,KAAK,YAAY,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,UAAU,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,SAAS,MAAM,KAAK,iBAAiB,MAAM,CAAC,UAAU,CAAC,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,eAAe,MAAMa,CAAS,CAAC,EAAE,aAAa,WAAW,KAAK,cAAc,CAAC,EAAE,SAAS,MAAM,MAAM,CAAC,KAAK,CAAC,WAAW,UAAU,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,WAAW,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAAC4D,EAAYC,EAAgBC,IAAyB3B,EAAKoB,GAAU,CAAC,SAASK,EAAY,IAAI,CAAC,CAAC,UAAYnD,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,GAAKC,CAAW,EAAE4C,KAAyBrB,EAAKG,GAAY,CAAC,GAAG,aAAa1B,IAAc,SAAsBuB,EAAKsB,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUhD,CAAkB,EAAE,SAAsB0B,EAAKuB,GAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUjD,CAAkB,EAAE,UAAU,WAAW,EAAE,SAAsB0B,EAAK,IAAI,CAAC,UAAU,+BAA+B,SAAsBE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKY,GAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAWwB,EAAS,CAAC,SAAsBxB,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,qBAAqB,SAAS,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,KAAK,QAAQ,KAAKzB,EAAmB,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeyB,EAAKM,GAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ,OAAO,MAAM,QAAQ,GAAGtE,EAAkB2D,CAAkB,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,OAAO,GAAG3D,EAAkB2D,CAAkB,CAAC,CAAC,CAAC,EAAE,SAAsBwB,EAAKO,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ,OAAO,MAAM,OAAO,GAAG1F,EAAkB2D,CAAkB,CAAC,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEC,CAAW,CAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKQ,GAA0B,CAAC,MAAM,QAAQ,SAAsBR,EAAKS,GAAU,CAAC,UAAU,2BAA2B,SAAsBT,EAAKM,GAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBa,EAAK4B,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,SAAS,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,SAAS,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5B,EAAKQ,GAA0B,CAAC,SAAsBR,EAAKS,GAAU,CAAC,UAAU,2BAA2B,SAAsBT,EAAK6B,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,GAAG,SAAS,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7B,EAAK,MAAM,CAAC,UAAUK,GAAG5F,GAAkB,GAAGqF,EAAqB,EAAE,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQgC,GAAI,CAAC,kFAAkF,IAAIvG,GAAS,oDAAoD,gFAAgF,kSAAkS,kJAAkJ,+IAA+I,sMAAsM,mKAAmK,sHAAsH,uRAAuR,qSAAqS,iTAAiT,iTAAiT,iLAAiL,6JAA6J,iLAAiL,0GAA0G,yGAAyG,khDAAkhD,4FAA4F,4FAA4FA,GAAS,03BAA03B,oHAAoHA,GAAS,oGAAoG,GAAeuG,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,EAAG,EASr8sBC,GAAgBC,GAAQ1F,GAAUwF,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,cAAcA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGI,GAAW,GAAGC,GAAS,GAAGC,GAA6B,GAAGC,GAAY,GAAGC,GAAkB,GAAGC,GAAY,GAAGC,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAK,GAAAC,GAAyCD,MAAS,MAAMC,KAA0B,SAAcA,GAAwB,UAAcC,IAA6BC,GAA0CH,MAAS,MAAMG,KAA2B,OAAO,OAAOA,GAAyB,SAAY,EAAE,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC77E,IAAMC,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,oCAAsC,4JAA0L,qBAAuB,OAAO,sBAAwB,OAAO,yBAA2B,OAAO,6BAA+B,OAAO,yBAA2B,QAAQ,uBAAyB,GAAG,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["FUNC_ERROR_TEXT", "nativeMax", "nativeMin", "NAN", "reTrim", "reIsBadHex", "reIsBinary", "reIsOctal", "freeParseInt", "now", "isObject", "value", "type", "toNumber", "value", "NAN", "isObject", "other", "reTrim", "isBinary", "reIsBinary", "reIsOctal", "freeParseInt", "reIsBadHex", "debounce", "func", "wait", "options", "lastArgs", "lastThis", "maxWait", "result", "timerId", "lastCallTime", "lastInvokeTime", "leading", "maxing", "trailing", "FUNC_ERROR_TEXT", "nativeMax", "invokeFunc", "time", "args", "thisArg", "leadingEdge", "timerExpired", "remainingWait", "timeSinceLastCall", "timeSinceLastInvoke", "timeWaiting", "nativeMin", "shouldInvoke", "now", "trailingEdge", "cancel", "flush", "debounced", "isInvoking", "throttle", "KnobOptions", "Slider", "withCSS", "props", "valueProp", "trackHeight", "fillColor", "focusColor", "min", "max", "onChange", "onChangeLive", "onMax", "onMin", "trackColor", "trackRadius", "knobSize", "knobColor", "constrainKnob", "shadow", "shouldAnimateChange", "transition", "overdrag", "knobSetting", "style", "hovered", "setHovered", "ye", "focused", "setFocused", "onCanvas", "RenderTarget", "shouldAnimate", "isConstrained", "showKnob", "input", "pe", "knobPadding", "updateValue", "te", "newVal", "target", "throttledInputUpdate", "animate", "value", "useAutoMotionValue", "transform", "knobX", "useTransform", "normalizedValue", "throttle", "val", "ref", "useOnChange", "isMotionValue", "handleInputChange", "e", "handleMouseDown", "handleMouseUp", "totalKnobWidth", "totalHeight", "u", "p", "motion", "addPropertyControls", "ControlType", "isMotionValue", "v", "MotionValue", "SrcType", "PlayTime", "props", "currentTime", "startTime", "playTime", "setPlayTime", "ye", "ue", "secondsToMinutes", "useOnChange", "latest", "p", "l", "checkIfPlaying", "player", "Audio", "withCSS", "_props_style", "playing", "background", "progressColor", "trackHeight", "gap", "trackColor", "srcUrl", "srcType", "srcFile", "loop", "font", "autoPlay", "progress", "volume", "showTime", "showTrack", "playPauseCursor", "showPlayPause", "onTimeUpdate", "onMetadata", "onPlay", "onPause", "onEnd", "pauseOnExit", "onPlayGlobalPauseOption", "iconCursor", "isPlaying", "setIsPlaying", "duration", "setDuration", "pe", "playerInfo", "trackProgress", "useAutoMotionValue", "value", "newValue", "handlePlayStateUpdate", "padding", "usePadding", "borderRadius", "useRadius", "fontSize", "useFontControls", "shouldPlay", "RenderTarget", "shouldPausePlayers", "url", "shouldAutoPlay", "te", "_", "_playerInfo_current_animation", "_playerInfo_current", "currentDuration", "isNowPlaying", "animate", "pauseAllAudioPlayers", "el", "playAudio", "e", "pauseAudio", "handleMetadata", "initProgress", "handleReady", "handleSeek", "val", "handleEnd", "handlePlayClick", "_player_current", "useOnEnter", "useOnExit", "useMotionValueEvent", "progressPercent", "iconStyles", "u", "containerStyles", "PauseIcon", "PlayIcon", "fontStack", "Slider", "addPropertyControls", "ControlType", "paddingControl", "borderRadiusControl", "PlayIcon", "props", "p", "motion", "PauseIcon", "u", "_componentPresets_fonts", "_componentPresets_fonts1", "_componentPresets_fonts2", "_componentPresets_fonts3", "_componentPresets_fonts4", "_componentPresets_fonts5", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "isSet", "value", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "cursorItems", "description", "height", "id", "image1", "image2", "image3", "image4", "textContent", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "GTraObjRZ", "g8coZYPtr", "Xz9eGCrz4", "VVmmgUjpE", "Jc_C7hAzP", "Aiu63IVgj", "kcPJnhtwL", "zTKx7YN5b", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1ffk8ot", "args", "onMouseLeave1w38m0k", "onTap1ffk8ot", "onMouseLeave175pabg", "onMouseLeave1e48jf5", "onMouseLeave86w1ui", "onMouseEnter1xh6rva", "onMouseLeaveqqexlg", "onTap1xh6rva", "onMouseLeave1jp3w9a", "onMouseLeave1cobl1h", "onMouseLeave17k9u0k", "onMouseEnter175pabg", "onMouseEnter1jp3w9a", "onMouseEnter1e48jf5", "onMouseEnter86w1ui", "onMouseEnter1cobl1h", "onMouseEnter17k9u0k", "ref1", "pe", "visible", "isDisplayed", "visible1", "visible2", "visible3", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentPresetsProvider", "Image2", "css", "FramertUrCKYgrf", "withCSS", "tUrCKYgrf_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "_componentPresets_fonts", "_componentPresets_fonts1", "AudioFonts", "getFonts", "Audio", "NAVFonts", "cCtYyip1h_default", "Project_Content_DesktopFonts", "tUrCKYgrf_default", "FooterFonts", "fuzHGJT75_default", "SmoothScrollFonts", "SmoothScroll", "CursorFonts", "TEz6EI06k_default", "breakpoints", "serializationHash", "variantClassNames", "isSet", "value", "toResponsiveImage", "transition1", "transition2", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition3", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "cursor", "TEz6EI06k_default", "cursor1", "cursor2", "cursor3", "cursor4", "Component", "Y", "ref", "_enumToDisplayNameFunctions_uHmK4jjyc", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "ohIJusC0T_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "cMpeUJ5gS", "LudSRK6q0", "SFXv1YROs", "uHmK4jjyc", "lZ6qRJUPB", "w10m9HmUI", "G1OXsTZyh", "eNSiq0uY6", "xS0yljP39", "yrryN_v1Drfq7UojG3", "lZ6qRJUPBrfq7UojG3", "LudSRK6q0rfq7UojG3", "idrfq7UojG3", "yrryN_v1Dn4LTH2Mb8", "lZ6qRJUPBn4LTH2Mb8", "LudSRK6q0n4LTH2Mb8", "idn4LTH2Mb8", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "visible", "visible1", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides2", "Image2", "ComponentViewportProvider", "Container", "Audio", "ComponentPresetsProvider", "RichText2", "cCtYyip1h_default", "tUrCKYgrf_default", "enumToDisplayNameFunctions", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "Link", "x", "collection1", "paginationInfo1", "loadMore1", "fuzHGJT75_default", "SmoothScroll", "css", "FrameripNn7BHMZ", "withCSS", "ipNn7BHMZ_default", "addFonts", "AudioFonts", "NAVFonts", "Project_Content_DesktopFonts", "FooterFonts", "SmoothScrollFonts", "CursorFonts", "getFontsFromSharedStyle", "fonts", "_componentPresets_fonts", "getFontsFromComponentPreset", "_componentPresets_fonts1", "__FramerMetadata__"]
}
