diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a547bf3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/README.md b/README.md index b889066..7059a96 100644 --- a/README.md +++ b/README.md @@ -1,197 +1,12 @@ -# Jeffrey Epstein Prison Video Forensic Analysis +# React + Vite -A comprehensive computational analysis of the DOJ's "raw" surveillance video that reveals definitive evidence of professional video editing using Adobe software. +This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. -## ๐จ Key Findings +Currently, two official plugins are available: -This analysis provides **computational proof** that the DOJ's "raw" surveillance video: -- Was processed through **Adobe Media Encoder 2024.0** -- Contains metadata from **multiple source video files** -- Shows evidence of **professional video editing and splicing** -- Has a **splice point at 6 hours 36 minutes** into the video -- Contradicts claims of being "raw" surveillance footage +- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Babel](https://babeljs.io/) for Fast Refresh +- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh -## ๐ Live Analysis Report - -**[๐ View Interactive Analysis Report](https://codegen-sh.github.io/forensic-analysis/)** - -The live report includes: -- Step-by-step computational analysis -- Visual frame comparisons showing splice evidence -- Complete metadata breakdown -- Technical methodology details - -## ๐ฌ Technical Evidence Summary - -### Adobe Editing Signatures -- **Software**: Adobe Media Encoder 2024.0 (Windows) -- **User Account**: `MJCOLE~1` -- **Project File**: `mcc_4.prproj` -- **XMP Metadata**: Extensive Adobe-specific editing data - -### Source Clips Identified -- **File 1**: `2025-05-22 21-12-48.mp4` (23.76 seconds) -- **File 2**: `2025-05-22 16-35-21.mp4` (15.56 seconds) -- **Total spliced content**: ~39 seconds - -### Splice Point Evidence -- **Location**: 23,760.47 seconds (6h 36m 0s) into the video -- **Visual Evidence**: 5.0% file size change between consecutive frames -- **Timing Accuracy**: Metadata prediction confirmed by frame analysis - -## ๐ Quick Start - -### Prerequisites - -#### System Requirements -- Python 3.6 or higher -- At least 25 GB free disk space -- Internet connection for video download - -#### Required Tools - -**Ubuntu/Debian:** -```bash -sudo apt update -sudo apt install ffmpeg exiftool python3 python3-pip -``` - -**macOS (with Homebrew):** -```bash -brew install ffmpeg exiftool python3 -``` - -**Windows:** -1. Install Python from https://python.org -2. Download ffmpeg from https://ffmpeg.org/download.html and add to PATH -3. Download exiftool from https://exiftool.org and add to PATH - -### Installation & Usage - -```bash -# Clone the repository -git clone https://github.com/codegen-sh/forensic-analysis.git -cd forensic-analysis - -# Install Python dependencies (none required - uses standard library) -pip install -r requirements.txt - -# Run the complete analysis -python epstein_video_analyzer.py -``` - -### What the Analysis Does - -1. **Downloads** the 19.5 GB DOJ video automatically -2. **Extracts** comprehensive metadata using industry-standard tools -3. **Identifies** Adobe editing signatures and splice points -4. **Analyzes** frame discontinuities around the splice location -5. **Generates** professional HTML forensic reports -6. **Creates** visual evidence of the splice point - -## ๐ Output Files - -After running the analysis, you'll find: - -- **`analysis_report.html`** - Main forensic report (open in browser) -- **`raw_video.mp4`** - Downloaded DOJ video file (19.5 GB) -- **`metadata.json`** - Complete extracted metadata -- **`xmp_metadata.xml`** - Adobe XMP editing metadata -- **`splice_frames/`** - Extracted frames around splice points -- **`splice_evidence_visualization.html`** - Interactive frame comparison - -## ๐ Key Evidence Commands - -### Extract Adobe Editing Metadata -```bash -exiftool -CreatorTool -WindowsAtomUncProjectPath raw_video.mp4 -# Output: Adobe Media Encoder 2024.0 (Windows) -``` - -### Calculate Splice Point Location -```bash -python3 -c "print(6035539564454400 / 254016000000)" -# Output: 23760.47 seconds = 6h 36m 0s -``` - -### Extract Frames Around Splice Point -```bash -ffmpeg -ss 23759 -t 4 -vf "fps=1" -q:v 2 splice_frames/frame_%03d.png raw_video.mp4 -``` - -### Analyze Frame Size Discontinuities -```bash -ls -la splice_frames/frame_*.png | awk '{print $9, $5}' -# Shows 5.0% size jump between frames 2 and 3 -``` - -## ๐ Evidence Summary - -### Definitive Proof of Editing -- โ **Adobe software signatures** embedded in metadata -- โ **Multiple source files** identified and documented -- โ **Professional editing timeline** with 5 save operations -- โ **Splice point location** calculated and visually confirmed -- โ **Frame discontinuities** showing 5.0% compression change - -### Chain of Custody Issues -- โ **Not raw footage** - processed through professional editing software -- โ **Multiple sources** - assembled from separate video files -- โ **Content substitution** - 39 seconds replaced at critical time point -- โ **Deceptive labeling** - calling edited footage "raw" surveillance - -## ๐ Related Resources - -- [Original Wired Article](https://www.wired.com/story/metadata-shows-the-dojs-raw-jeffrey-epstein-prison-video-was-likely-modified/) -- [DOJ Video Release](https://www.justice.gov/opa/media/1407001/dl?inline) -- [ExifTool Documentation](https://exiftool.org/) -- [FFmpeg Documentation](https://ffmpeg.org/documentation.html) - -## ๐ ๏ธ Troubleshooting - -### Common Issues - -**"Tool not found" errors:** -- Ensure ffmpeg and exiftool are installed and in your PATH -- On Windows, restart command prompt after installation - -**Download fails:** -- Check internet connection and disk space (25+ GB required) -- Download may take 10-60 minutes depending on connection speed - -**Memory issues:** -- Ensure at least 4 GB RAM available -- Close other applications during analysis - -**Permission errors:** -- Ensure write permissions in the analysis directory -- Try running from a different location - -## โ๏ธ Legal and Ethical Considerations - -This analysis is provided for: -- **Digital forensics research and education** -- **Transparency in government evidence presentation** -- **Academic investigation of metadata analysis techniques** -- **Public interest in evidence integrity** - -The analysis: -- Does not modify the original video file -- Focuses solely on technical metadata examination -- Uses standard digital forensics methodologies -- Makes no claims about the events depicted in the video - -## โ ๏ธ Disclaimer - -This tool is provided for educational and research purposes. The analysis is based on technical metadata examination using standard digital forensics practices. Users should verify findings independently and consult with qualified digital forensics experts for legal or evidentiary purposes. - -## ๐ License - -This project is released under the MIT License. See LICENSE file for details. - ---- - -**Generated by**: Computational forensics analysis -**Last Updated**: January 2025 -**Analysis Version**: 1.0 +## Expanding the ESLint configuration +If you are developing a production application, we recommend using TypeScript with type-aware lint rules enabled. Check out the [TS template](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-react-ts) for information on how to integrate TypeScript and [`typescript-eslint`](https://typescript-eslint.io) in your project. diff --git a/docs-backup/index.html b/docs-backup/index.html new file mode 100644 index 0000000..7f97b16 --- /dev/null +++ b/docs-backup/index.html @@ -0,0 +1,720 @@ + + +
+ + +Computational evidence revealing professional video editing in DOJ's "raw" surveillance footage
+Definitive proof of professional video editing software usage:
+Command used:
+Adobe timing metadata reveals exact splice location:
+Command used:
+Frame analysis confirms splice point with compression discontinuity:
+Use the slider below to examine frames around the splice point and observe the discontinuity:
+ +
+ ๐ What to look for:
+Commands used:
+Multiple source files found in Adobe XMP metadata:
+These clips were spliced into the surveillance video at the 6h 36m mark, replacing original footage.
+This analysis used industry-standard digital forensics tools and techniques:
+ +Used ExifTool to extract all embedded metadata, including Adobe's proprietary XMP editing data.
+Parsed Adobe's internal editing metadata to identify software signatures and timing information.
+Decoded Adobe's proprietary timing format to locate exact splice points in the video.
+Extracted frames around predicted splice points and analyzed file sizes for compression discontinuities.
+Verify these findings yourself using our open-source forensic analysis tools
+ ๐ View on GitHub + โฌ๏ธ Download Tools +This computational analysis reveals several concerning issues:
+Note: This analysis focuses solely on technical metadata examination and makes no claims about the events depicted in the video.
+>>1;nlQ(_,q))R Q($,_)?(b[nl]=$,b[R]=q,nl=R):(b[nl]=_,b[M]=q,nl=M);else if(RQ($,q))b[nl]=$,b[R]=q,nl=R;else break l}}return O}function Q(b,O){var q=b.sortIndex-O.sortIndex;return q!==0?q:b.id-O.id}if(p.unstable_now=void 0,typeof performance=="object"&&typeof performance.now=="function"){var J=performance;p.unstable_now=function(){return J.now()}}else{var fl=Date,_l=fl.now();p.unstable_now=function(){return fl.now()-_l}}var x=[],A=[],N=1,F=null,tl=3,Tl=!1,ql=!1,ot=!1,Bl=!1,oa=typeof setTimeout=="function"?setTimeout:null,zt=typeof clearTimeout=="function"?clearTimeout:null,Ul=typeof setImmediate<"u"?setImmediate:null;function ht(b){for(var O=C(A);O!==null;){if(O.callback===null)y(A);else if(O.startTime<=b)y(A),O.sortIndex=O.expirationTime,B(x,O);else break;O=C(A)}}function W(b){if(ot=!1,ht(b),!ql)if(C(x)!==null)ql=!0,Vl||(Vl=!0,Nl());else{var O=C(A);O!==null&&xl(W,O.startTime-b)}}var Vl=!1,Ll=-1,Kl=5,yt=-1;function Ra(){return Bl?!0:!(p.unstable_now()-ytb&&Ra());){var nl=F.callback;if(typeof nl=="function"){F.callback=null,tl=F.priorityLevel;var s=nl(F.expirationTime<=b);if(b=p.unstable_now(),typeof s=="function"){F.callback=s,ht(b),O=!0;break t}F===C(x)&&y(x),ht(b)}else y(x);F=C(x)}if(F!==null)O=!0;else{var z=C(A);z!==null&&xl(W,z.startTime-b),O=!1}}break l}finally{F=null,tl=q,Tl=!1}O=void 0}}finally{O?Nl():Vl=!1}}}var Nl;if(typeof Ul=="function")Nl=function(){Ul(pt)};else if(typeof MessageChannel<"u"){var ha=new MessageChannel,ra=ha.port2;ha.port1.onmessage=pt,Nl=function(){ra.postMessage(null)}}else Nl=function(){oa(pt,0)};function xl(b,O){Ll=oa(function(){b(p.unstable_now())},O)}p.unstable_IdlePriority=5,p.unstable_ImmediatePriority=1,p.unstable_LowPriority=4,p.unstable_NormalPriority=3,p.unstable_Profiling=null,p.unstable_UserBlockingPriority=2,p.unstable_cancelCallback=function(b){b.callback=null},p.unstable_forceFrameRate=function(b){0>b||125nl?(b.sortIndex=q,B(A,b),C(x)===null&&b===C(A)&&(ot?(zt(Ll),Ll=-1):ot=!0,xl(W,q-nl))):(b.sortIndex=s,B(x,b),ql||Tl||(ql=!0,Vl||(Vl=!0,Nl()))),b},p.unstable_shouldYield=Ra,p.unstable_wrapCallback=function(b){var O=tl;return function(){var q=tl;tl=O;try{return b.apply(this,arguments)}finally{tl=q}}}}(Pc)),Pc}var lo;function Rr(){return lo||(lo=1,Ic.exports=xr()),Ic.exports}var lf={exports:{}},Hl={};/** + * @license React + * react-dom.production.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var to;function jr(){if(to)return Hl;to=1;var p=tf();function B(x){var A="https://react.dev/errors/"+x;if(1 "u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(p)}catch(B){console.error(B)}}return p(),lf.exports=jr(),lf.exports}/** + * @license React + * react-dom-client.production.js + * + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */var uo;function qr(){if(uo)return ye;uo=1;var p=Rr(),B=tf(),C=Hr();function y(l){var t="https://react.dev/errors/"+l;if(1 s||(l.current=nl[s],nl[s]=null,s--)}function _(l,t){s++,nl[s]=l.current,l.current=t}var R=z(null),$=z(null),G=z(null),Jl=z(null);function sl(l,t){switch(_(G,t),_($,l),_(R,null),t.nodeType){case 9:case 11:l=(l=t.documentElement)&&(l=l.namespaceURI)?z0(l):0;break;default:if(l=t.tagName,t=t.namespaceURI)t=z0(t),l=p0(t,l);else switch(l){case"svg":l=1;break;case"math":l=2;break;default:l=0}}M(R),_(R,l)}function Ct(){M(R),M($),M(G)}function Hn(l){l.memoizedState!==null&&_(Jl,l);var t=R.current,a=p0(t,l.type);t!==a&&(_($,l),_(R,a))}function ge(l){$.current===l&&(M(R),M($)),Jl.current===l&&(M(Jl),de._currentValue=q)}var qn=Object.prototype.hasOwnProperty,Yn=p.unstable_scheduleCallback,Bn=p.unstable_cancelCallback,no=p.unstable_shouldYield,io=p.unstable_requestPaint,gt=p.unstable_now,co=p.unstable_getCurrentPriorityLevel,af=p.unstable_ImmediatePriority,uf=p.unstable_UserBlockingPriority,Se=p.unstable_NormalPriority,fo=p.unstable_LowPriority,ef=p.unstable_IdlePriority,so=p.log,oo=p.unstable_setDisableYieldValue,Su=null,wl=null;function Qt(l){if(typeof so=="function"&&oo(l),wl&&typeof wl.setStrictMode=="function")try{wl.setStrictMode(Su,l)}catch{}}var Wl=Math.clz32?Math.clz32:vo,ho=Math.log,ro=Math.LN2;function vo(l){return l>>>=0,l===0?32:31-(ho(l)/ro|0)|0}var be=256,Te=4194304;function va(l){var t=l&42;if(t!==0)return t;switch(l&-l){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:return 64;case 128:return 128;case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return l&4194048;case 4194304:case 8388608:case 16777216:case 33554432:return l&62914560;case 67108864:return 67108864;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 0;default:return l}}function Ee(l,t,a){var u=l.pendingLanes;if(u===0)return 0;var e=0,n=l.suspendedLanes,i=l.pingedLanes;l=l.warmLanes;var c=u&134217727;return c!==0?(u=c&~n,u!==0?e=va(u):(i&=c,i!==0?e=va(i):a||(a=c&~l,a!==0&&(e=va(a))))):(c=u&~n,c!==0?e=va(c):i!==0?e=va(i):a||(a=u&~l,a!==0&&(e=va(a)))),e===0?0:t!==0&&t!==e&&(t&n)===0&&(n=e&-e,a=t&-t,n>=a||n===32&&(a&4194048)!==0)?t:e}function bu(l,t){return(l.pendingLanes&~(l.suspendedLanes&~l.pingedLanes)&t)===0}function mo(l,t){switch(l){case 1:case 2:case 4:case 8:case 64:return t+250;case 16:case 32:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return t+5e3;case 4194304:case 8388608:case 16777216:case 33554432:return-1;case 67108864:case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function nf(){var l=be;return be<<=1,(be&4194048)===0&&(be=256),l}function cf(){var l=Te;return Te<<=1,(Te&62914560)===0&&(Te=4194304),l}function Gn(l){for(var t=[],a=0;31>a;a++)t.push(l);return t}function Tu(l,t){l.pendingLanes|=t,t!==268435456&&(l.suspendedLanes=0,l.pingedLanes=0,l.warmLanes=0)}function yo(l,t,a,u,e,n){var i=l.pendingLanes;l.pendingLanes=a,l.suspendedLanes=0,l.pingedLanes=0,l.warmLanes=0,l.expiredLanes&=a,l.entangledLanes&=a,l.errorRecoveryDisabledLanes&=a,l.shellSuspendCounter=0;var c=l.entanglements,f=l.expirationTimes,r=l.hiddenUpdates;for(a=i&~a;0)":-1 e||f[u]!==r[e]){var S=` +`+f[u].replace(" at new "," at ");return l.displayName&&S.includes(" ")&&(S=S.replace(" ",l.displayName)),S}while(1<=u&&0<=e);break}}}finally{Ln=!1,Error.prepareStackTrace=a}return(a=l?l.displayName||l.name:"")?Ga(a):""}function Ao(l){switch(l.tag){case 26:case 27:case 5:return Ga(l.type);case 16:return Ga("Lazy");case 13:return Ga("Suspense");case 19:return Ga("SuspenseList");case 0:case 15:return Kn(l.type,!1);case 11:return Kn(l.type.render,!1);case 1:return Kn(l.type,!0);case 31:return Ga("Activity");default:return""}}function gf(l){try{var t="";do t+=Ao(l),l=l.return;while(l);return t}catch(a){return` +Error generating stack: `+a.message+` +`+a.stack}}function at(l){switch(typeof l){case"bigint":case"boolean":case"number":case"string":case"undefined":return l;case"object":return l;default:return""}}function Sf(l){var t=l.type;return(l=l.nodeName)&&l.toLowerCase()==="input"&&(t==="checkbox"||t==="radio")}function zo(l){var t=Sf(l)?"checked":"value",a=Object.getOwnPropertyDescriptor(l.constructor.prototype,t),u=""+l[t];if(!l.hasOwnProperty(t)&&typeof a<"u"&&typeof a.get=="function"&&typeof a.set=="function"){var e=a.get,n=a.set;return Object.defineProperty(l,t,{configurable:!0,get:function(){return e.call(this)},set:function(i){u=""+i,n.call(this,i)}}),Object.defineProperty(l,t,{enumerable:a.enumerable}),{getValue:function(){return u},setValue:function(i){u=""+i},stopTracking:function(){l._valueTracker=null,delete l[t]}}}}function pe(l){l._valueTracker||(l._valueTracker=zo(l))}function bf(l){if(!l)return!1;var t=l._valueTracker;if(!t)return!0;var a=t.getValue(),u="";return l&&(u=Sf(l)?l.checked?"true":"false":l.value),l=u,l!==a?(t.setValue(l),!0):!1}function _e(l){if(l=l||(typeof document<"u"?document:void 0),typeof l>"u")return null;try{return l.activeElement||l.body}catch{return l.body}}var po=/[\n"\\]/g;function ut(l){return l.replace(po,function(t){return"\\"+t.charCodeAt(0).toString(16)+" "})}function Jn(l,t,a,u,e,n,i,c){l.name="",i!=null&&typeof i!="function"&&typeof i!="symbol"&&typeof i!="boolean"?l.type=i:l.removeAttribute("type"),t!=null?i==="number"?(t===0&&l.value===""||l.value!=t)&&(l.value=""+at(t)):l.value!==""+at(t)&&(l.value=""+at(t)):i!=="submit"&&i!=="reset"||l.removeAttribute("value"),t!=null?wn(l,i,at(t)):a!=null?wn(l,i,at(a)):u!=null&&l.removeAttribute("value"),e==null&&n!=null&&(l.defaultChecked=!!n),e!=null&&(l.checked=e&&typeof e!="function"&&typeof e!="symbol"),c!=null&&typeof c!="function"&&typeof c!="symbol"&&typeof c!="boolean"?l.name=""+at(c):l.removeAttribute("name")}function Tf(l,t,a,u,e,n,i,c){if(n!=null&&typeof n!="function"&&typeof n!="symbol"&&typeof n!="boolean"&&(l.type=n),t!=null||a!=null){if(!(n!=="submit"&&n!=="reset"||t!=null))return;a=a!=null?""+at(a):"",t=t!=null?""+at(t):a,c||t===l.value||(l.value=t),l.defaultValue=t}u=u??e,u=typeof u!="function"&&typeof u!="symbol"&&!!u,l.checked=c?l.checked:!!u,l.defaultChecked=!!u,i!=null&&typeof i!="function"&&typeof i!="symbol"&&typeof i!="boolean"&&(l.name=i)}function wn(l,t,a){t==="number"&&_e(l.ownerDocument)===l||l.defaultValue===""+a||(l.defaultValue=""+a)}function Xa(l,t,a,u){if(l=l.options,t){t={};for(var e=0;e "u"||typeof window.document>"u"||typeof window.document.createElement>"u"),In=!1;if(Ot)try{var pu={};Object.defineProperty(pu,"passive",{get:function(){In=!0}}),window.addEventListener("test",pu,pu),window.removeEventListener("test",pu,pu)}catch{In=!1}var Vt=null,Pn=null,Me=null;function Mf(){if(Me)return Me;var l,t=Pn,a=t.length,u,e="value"in Vt?Vt.value:Vt.textContent,n=e.length;for(l=0;l=Mu),jf=" ",Hf=!1;function qf(l,t){switch(l){case"keyup":return Io.indexOf(t.keyCode)!==-1;case"keydown":return t.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function Yf(l){return l=l.detail,typeof l=="object"&&"data"in l?l.data:null}var Va=!1;function lh(l,t){switch(l){case"compositionend":return Yf(t);case"keypress":return t.which!==32?null:(Hf=!0,jf);case"textInput":return l=t.data,l===jf&&Hf?null:l;default:return null}}function th(l,t){if(Va)return l==="compositionend"||!ei&&qf(l,t)?(l=Mf(),Me=Pn=Vt=null,Va=!1,l):null;switch(l){case"paste":return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1 =t)return{node:a,offset:t-l};l=u}l:{for(;a;){if(a.nextSibling){a=a.nextSibling;break l}a=a.parentNode}a=void 0}a=Lf(a)}}function Jf(l,t){return l&&t?l===t?!0:l&&l.nodeType===3?!1:t&&t.nodeType===3?Jf(l,t.parentNode):"contains"in l?l.contains(t):l.compareDocumentPosition?!!(l.compareDocumentPosition(t)&16):!1:!1}function wf(l){l=l!=null&&l.ownerDocument!=null&&l.ownerDocument.defaultView!=null?l.ownerDocument.defaultView:window;for(var t=_e(l.document);t instanceof l.HTMLIFrameElement;){try{var a=typeof t.contentWindow.location.href=="string"}catch{a=!1}if(a)l=t.contentWindow;else break;t=_e(l.document)}return t}function ci(l){var t=l&&l.nodeName&&l.nodeName.toLowerCase();return t&&(t==="input"&&(l.type==="text"||l.type==="search"||l.type==="tel"||l.type==="url"||l.type==="password")||t==="textarea"||l.contentEditable==="true")}var sh=Ot&&"documentMode"in document&&11>=document.documentMode,La=null,fi=null,xu=null,si=!1;function Wf(l,t,a){var u=a.window===a?a.document:a.nodeType===9?a:a.ownerDocument;si||La==null||La!==_e(u)||(u=La,"selectionStart"in u&&ci(u)?u={start:u.selectionStart,end:u.selectionEnd}:(u=(u.ownerDocument&&u.ownerDocument.defaultView||window).getSelection(),u={anchorNode:u.anchorNode,anchorOffset:u.anchorOffset,focusNode:u.focusNode,focusOffset:u.focusOffset}),xu&&Nu(xu,u)||(xu=u,u=Sn(fi,"onSelect"),0 >=i,e-=i,Dt=1<<32-Wl(t)+e|a< n?n:8;var i=b.T,c={};b.T=c,Wi(l,!1,t,a);try{var f=e(),r=b.S;if(r!==null&&r(c,f),f!==null&&typeof f=="object"&&typeof f.then=="function"){var S=Sh(f,u);Ju(l,t,S,lt(l))}else Ju(l,t,u,lt(l))}catch(E){Ju(l,t,{then:function(){},status:"rejected",reason:E},lt())}finally{O.p=n,b.T=i}}function zh(){}function Ji(l,t,a,u){if(l.tag!==5)throw Error(y(476));var e=$s(l).queue;Ws(l,e,t,q,a===null?zh:function(){return ks(l),a(u)})}function $s(l){var t=l.memoizedState;if(t!==null)return t;t={memoizedState:q,baseState:q,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:Rt,lastRenderedState:q},next:null};var a={};return t.next={memoizedState:a,baseState:a,baseQueue:null,queue:{pending:null,lanes:0,dispatch:null,lastRenderedReducer:Rt,lastRenderedState:a},next:null},l.memoizedState=t,l=l.alternate,l!==null&&(l.memoizedState=t),t}function ks(l){var t=$s(l).next.queue;Ju(l,t,{},lt())}function wi(){return jl(de)}function Fs(){return gl().memoizedState}function Is(){return gl().memoizedState}function ph(l){for(var t=l.return;t!==null;){switch(t.tag){case 24:case 3:var a=lt();l=Jt(a);var u=wt(t,l,a);u!==null&&(tt(u,t,a),Cu(u,t,a)),t={cache:zi()},l.payload=t;return}t=t.return}}function _h(l,t,a){var u=lt();a={lane:u,revertLane:0,action:a,hasEagerState:!1,eagerState:null,next:null},Fe(l)?ld(t,a):(a=ri(l,t,a,u),a!==null&&(tt(a,l,u),td(a,t,u)))}function Ps(l,t,a){var u=lt();Ju(l,t,a,u)}function Ju(l,t,a,u){var e={lane:u,revertLane:0,action:a,hasEagerState:!1,eagerState:null,next:null};if(Fe(l))ld(t,e);else{var n=l.alternate;if(l.lanes===0&&(n===null||n.lanes===0)&&(n=t.lastRenderedReducer,n!==null))try{var i=t.lastRenderedState,c=n(i,a);if(e.hasEagerState=!0,e.eagerState=c,$l(c,i))return He(l,t,e,0),cl===null&&je(),!1}catch{}finally{}if(a=ri(l,t,e,u),a!==null)return tt(a,l,u),td(a,t,u),!0}return!1}function Wi(l,t,a,u){if(u={lane:2,revertLane:Oc(),action:u,hasEagerState:!1,eagerState:null,next:null},Fe(l)){if(t)throw Error(y(479))}else t=ri(l,a,u,2),t!==null&&tt(t,l,2)}function Fe(l){var t=l.alternate;return l===Z||t!==null&&t===Z}function ld(l,t){lu=Ke=!0;var a=l.pending;a===null?t.next=t:(t.next=a.next,a.next=t),l.pending=t}function td(l,t,a){if((a&4194048)!==0){var u=t.lanes;u&=l.pendingLanes,a|=u,t.lanes=a,sf(l,a)}}var Ie={readContext:jl,use:we,useCallback:vl,useContext:vl,useEffect:vl,useImperativeHandle:vl,useLayoutEffect:vl,useInsertionEffect:vl,useMemo:vl,useReducer:vl,useRef:vl,useState:vl,useDebugValue:vl,useDeferredValue:vl,useTransition:vl,useSyncExternalStore:vl,useId:vl,useHostTransitionStatus:vl,useFormState:vl,useActionState:vl,useOptimistic:vl,useMemoCache:vl,useCacheRefresh:vl},ad={readContext:jl,use:we,useCallback:function(l,t){return Cl().memoizedState=[l,t===void 0?null:t],l},useContext:jl,useEffect:Xs,useImperativeHandle:function(l,t,a){a=a!=null?a.concat([l]):null,ke(4194308,4,Vs.bind(null,t,l),a)},useLayoutEffect:function(l,t){return ke(4194308,4,l,t)},useInsertionEffect:function(l,t){ke(4,2,l,t)},useMemo:function(l,t){var a=Cl();t=t===void 0?null:t;var u=l();if(Ma){Qt(!0);try{l()}finally{Qt(!1)}}return a.memoizedState=[u,t],u},useReducer:function(l,t,a){var u=Cl();if(a!==void 0){var e=a(t);if(Ma){Qt(!0);try{a(t)}finally{Qt(!1)}}}else e=t;return u.memoizedState=u.baseState=e,l={pending:null,lanes:0,dispatch:null,lastRenderedReducer:l,lastRenderedState:e},u.queue=l,l=l.dispatch=_h.bind(null,Z,l),[u.memoizedState,l]},useRef:function(l){var t=Cl();return l={current:l},t.memoizedState=l},useState:function(l){l=Zi(l);var t=l.queue,a=Ps.bind(null,Z,t);return t.dispatch=a,[l.memoizedState,a]},useDebugValue:Li,useDeferredValue:function(l,t){var a=Cl();return Ki(a,l,t)},useTransition:function(){var l=Zi(!1);return l=Ws.bind(null,Z,l.queue,!0,!1),Cl().memoizedState=l,[!1,l]},useSyncExternalStore:function(l,t,a){var u=Z,e=Cl();if(I){if(a===void 0)throw Error(y(407));a=a()}else{if(a=t(),cl===null)throw Error(y(349));(w&124)!==0||zs(u,t,a)}e.memoizedState=a;var n={value:a,getSnapshot:t};return e.queue=n,Xs(_s.bind(null,u,n,l),[l]),u.flags|=2048,au(9,$e(),ps.bind(null,u,n,a,t),null),a},useId:function(){var l=Cl(),t=cl.identifierPrefix;if(I){var a=Ut,u=Dt;a=(u&~(1<<32-Wl(u)-1)).toString(32)+a,t="ยซ"+t+"R"+a,a=Je++,0H?(pl=U,U=null):pl=U.sibling;var k=v(o,U,h[H],T);if(k===null){U===null&&(U=pl);break}l&&U&&k.alternate===null&&t(o,U),d=n(k,d,H),V===null?D=k:V.sibling=k,V=k,U=pl}if(H===h.length)return a(o,U),I&&Ea(o,H),D;if(U===null){for(;H H?(pl=U,U=null):pl=U.sibling;var da=v(o,U,k.value,T);if(da===null){U===null&&(U=pl);break}l&&U&&da.alternate===null&&t(o,U),d=n(da,d,H),V===null?D=da:V.sibling=da,V=da,U=pl}if(k.done)return a(o,U),I&&Ea(o,H),D;if(U===null){for(;!k.done;H++,k=h.next())k=E(o,k.value,T),k!==null&&(d=n(k,d,H),V===null?D=k:V.sibling=k,V=k);return I&&Ea(o,H),D}for(U=u(U);!k.done;H++,k=h.next())k=m(U,o,H,k.value,T),k!==null&&(l&&k.alternate!==null&&U.delete(k.key===null?H:k.key),d=n(k,d,H),V===null?D=k:V.sibling=k,V=k);return l&&U.forEach(function(Mr){return t(o,Mr)}),I&&Ea(o,H),D}function el(o,d,h,T){if(typeof h=="object"&&h!==null&&h.type===ql&&h.key===null&&(h=h.props.children),typeof h=="object"&&h!==null){switch(h.$$typeof){case tl:l:{for(var D=h.key;d!==null;){if(d.key===D){if(D=h.type,D===ql){if(d.tag===7){a(o,d.sibling),T=e(d,h.props.children),T.return=o,o=T;break l}}else if(d.elementType===D||typeof D=="object"&&D!==null&&D.$$typeof===Kl&&ed(D)===d.type){a(o,d.sibling),T=e(d,h.props),Wu(T,h),T.return=o,o=T;break l}a(o,d);break}else t(o,d);d=d.sibling}h.type===ql?(T=ba(h.props.children,o.mode,T,h.key),T.return=o,o=T):(T=Ye(h.type,h.key,h.props,null,o.mode,T),Wu(T,h),T.return=o,o=T)}return i(o);case Tl:l:{for(D=h.key;d!==null;){if(d.key===D)if(d.tag===4&&d.stateNode.containerInfo===h.containerInfo&&d.stateNode.implementation===h.implementation){a(o,d.sibling),T=e(d,h.children||[]),T.return=o,o=T;break l}else{a(o,d);break}else t(o,d);d=d.sibling}T=yi(h,o.mode,T),T.return=o,o=T}return i(o);case Kl:return D=h._init,h=D(h._payload),el(o,d,h,T)}if(xl(h))return Y(o,d,h,T);if(Nl(h)){if(D=Nl(h),typeof D!="function")throw Error(y(150));return h=D.call(h),j(o,d,h,T)}if(typeof h.then=="function")return el(o,d,Pe(h),T);if(h.$$typeof===Ul)return el(o,d,Ce(o,h),T);ln(o,h)}return typeof h=="string"&&h!==""||typeof h=="number"||typeof h=="bigint"?(h=""+h,d!==null&&d.tag===6?(a(o,d.sibling),T=e(d,h),T.return=o,o=T):(a(o,d),T=mi(h,o.mode,T),T.return=o,o=T),i(o)):a(o,d)}return function(o,d,h,T){try{wu=0;var D=el(o,d,h,T);return uu=null,D}catch(U){if(U===Gu||U===Ze)throw U;var V=kl(29,U,null,o.mode);return V.lanes=T,V.return=o,V}finally{}}}var eu=nd(!0),id=nd(!1),ft=z(null),bt=null;function $t(l){var t=l.alternate;_(bl,bl.current&1),_(ft,l),bt===null&&(t===null||Pa.current!==null||t.memoizedState!==null)&&(bt=l)}function cd(l){if(l.tag===22){if(_(bl,bl.current),_(ft,l),bt===null){var t=l.alternate;t!==null&&t.memoizedState!==null&&(bt=l)}}else kt()}function kt(){_(bl,bl.current),_(ft,ft.current)}function jt(l){M(ft),bt===l&&(bt=null),M(bl)}var bl=z(0);function tn(l){for(var t=l;t!==null;){if(t.tag===13){var a=t.memoizedState;if(a!==null&&(a=a.dehydrated,a===null||a.data==="$?"||Gc(a)))return t}else if(t.tag===19&&t.memoizedProps.revealOrder!==void 0){if((t.flags&128)!==0)return t}else if(t.child!==null){t.child.return=t,t=t.child;continue}if(t===l)break;for(;t.sibling===null;){if(t.return===null||t.return===l)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}function $i(l,t,a,u){t=l.memoizedState,a=a(u,t),a=a==null?t:N({},t,a),l.memoizedState=a,l.lanes===0&&(l.updateQueue.baseState=a)}var ki={enqueueSetState:function(l,t,a){l=l._reactInternals;var u=lt(),e=Jt(u);e.payload=t,a!=null&&(e.callback=a),t=wt(l,e,u),t!==null&&(tt(t,l,u),Cu(t,l,u))},enqueueReplaceState:function(l,t,a){l=l._reactInternals;var u=lt(),e=Jt(u);e.tag=1,e.payload=t,a!=null&&(e.callback=a),t=wt(l,e,u),t!==null&&(tt(t,l,u),Cu(t,l,u))},enqueueForceUpdate:function(l,t){l=l._reactInternals;var a=lt(),u=Jt(a);u.tag=2,t!=null&&(u.callback=t),t=wt(l,u,a),t!==null&&(tt(t,l,a),Cu(t,l,a))}};function fd(l,t,a,u,e,n,i){return l=l.stateNode,typeof l.shouldComponentUpdate=="function"?l.shouldComponentUpdate(u,n,i):t.prototype&&t.prototype.isPureReactComponent?!Nu(a,u)||!Nu(e,n):!0}function sd(l,t,a,u){l=t.state,typeof t.componentWillReceiveProps=="function"&&t.componentWillReceiveProps(a,u),typeof t.UNSAFE_componentWillReceiveProps=="function"&&t.UNSAFE_componentWillReceiveProps(a,u),t.state!==l&&ki.enqueueReplaceState(t,t.state,null)}function Da(l,t){var a=t;if("ref"in t){a={};for(var u in t)u!=="ref"&&(a[u]=t[u])}if(l=l.defaultProps){a===t&&(a=N({},a));for(var e in l)a[e]===void 0&&(a[e]=l[e])}return a}var an=typeof reportError=="function"?reportError:function(l){if(typeof window=="object"&&typeof window.ErrorEvent=="function"){var t=new window.ErrorEvent("error",{bubbles:!0,cancelable:!0,message:typeof l=="object"&&l!==null&&typeof l.message=="string"?String(l.message):String(l),error:l});if(!window.dispatchEvent(t))return}else if(typeof process=="object"&&typeof process.emit=="function"){process.emit("uncaughtException",l);return}console.error(l)};function dd(l){an(l)}function od(l){console.error(l)}function hd(l){an(l)}function un(l,t){try{var a=l.onUncaughtError;a(t.value,{componentStack:t.stack})}catch(u){setTimeout(function(){throw u})}}function rd(l,t,a){try{var u=l.onCaughtError;u(a.value,{componentStack:a.stack,errorBoundary:t.tag===1?t.stateNode:null})}catch(e){setTimeout(function(){throw e})}}function Fi(l,t,a){return a=Jt(a),a.tag=3,a.payload={element:null},a.callback=function(){un(l,t)},a}function vd(l){return l=Jt(l),l.tag=3,l}function md(l,t,a,u){var e=a.type.getDerivedStateFromError;if(typeof e=="function"){var n=u.value;l.payload=function(){return e(n)},l.callback=function(){rd(t,a,u)}}var i=a.stateNode;i!==null&&typeof i.componentDidCatch=="function"&&(l.callback=function(){rd(t,a,u),typeof e!="function"&&(aa===null?aa=new Set([this]):aa.add(this));var c=u.stack;this.componentDidCatch(u.value,{componentStack:c!==null?c:""})})}function Mh(l,t,a,u,e){if(a.flags|=32768,u!==null&&typeof u=="object"&&typeof u.then=="function"){if(t=a.alternate,t!==null&&qu(t,a,e,!0),a=ft.current,a!==null){switch(a.tag){case 13:return bt===null?Ec():a.alternate===null&&rl===0&&(rl=3),a.flags&=-257,a.flags|=65536,a.lanes=e,u===Oi?a.flags|=16384:(t=a.updateQueue,t===null?a.updateQueue=new Set([u]):t.add(u),zc(l,u,e)),!1;case 22:return a.flags|=65536,u===Oi?a.flags|=16384:(t=a.updateQueue,t===null?(t={transitions:null,markerInstances:null,retryQueue:new Set([u])},a.updateQueue=t):(a=t.retryQueue,a===null?t.retryQueue=new Set([u]):a.add(u)),zc(l,u,e)),!1}throw Error(y(435,a.tag))}return zc(l,u,e),Ec(),!1}if(I)return t=ft.current,t!==null?((t.flags&65536)===0&&(t.flags|=256),t.flags|=65536,t.lanes=e,u!==bi&&(l=Error(y(422),{cause:u}),Hu(et(l,a)))):(u!==bi&&(t=Error(y(423),{cause:u}),Hu(et(t,a))),l=l.current.alternate,l.flags|=65536,e&=-e,l.lanes|=e,u=et(u,a),e=Fi(l.stateNode,u,e),Ui(l,e),rl!==4&&(rl=2)),!1;var n=Error(y(520),{cause:u});if(n=et(n,a),te===null?te=[n]:te.push(n),rl!==4&&(rl=2),t===null)return!0;u=et(u,a),a=t;do{switch(a.tag){case 3:return a.flags|=65536,l=e&-e,a.lanes|=l,l=Fi(a.stateNode,u,l),Ui(a,l),!1;case 1:if(t=a.type,n=a.stateNode,(a.flags&128)===0&&(typeof t.getDerivedStateFromError=="function"||n!==null&&typeof n.componentDidCatch=="function"&&(aa===null||!aa.has(n))))return a.flags|=65536,e&=-e,a.lanes|=e,e=vd(e),md(e,l,a,u),Ui(a,e),!1}a=a.return}while(a!==null);return!1}var yd=Error(y(461)),Al=!1;function Ol(l,t,a,u){t.child=l===null?id(t,null,a,u):eu(t,l.child,a,u)}function gd(l,t,a,u,e){a=a.render;var n=t.ref;if("ref"in u){var i={};for(var c in u)c!=="ref"&&(i[c]=u[c])}else i=u;return _a(t),u=Hi(l,t,a,i,n,e),c=qi(),l!==null&&!Al?(Yi(l,t,e),Ht(l,t,e)):(I&&c&&gi(t),t.flags|=1,Ol(l,t,u,e),t.child)}function Sd(l,t,a,u,e){if(l===null){var n=a.type;return typeof n=="function"&&!vi(n)&&n.defaultProps===void 0&&a.compare===null?(t.tag=15,t.type=n,bd(l,t,n,u,e)):(l=Ye(a.type,null,u,t,t.mode,e),l.ref=t.ref,l.return=t,t.child=l)}if(n=l.child,!nc(l,e)){var i=n.memoizedProps;if(a=a.compare,a=a!==null?a:Nu,a(i,u)&&l.ref===t.ref)return Ht(l,t,e)}return t.flags|=1,l=Mt(n,u),l.ref=t.ref,l.return=t,t.child=l}function bd(l,t,a,u,e){if(l!==null){var n=l.memoizedProps;if(Nu(n,u)&&l.ref===t.ref)if(Al=!1,t.pendingProps=u=n,nc(l,e))(l.flags&131072)!==0&&(Al=!0);else return t.lanes=l.lanes,Ht(l,t,e)}return Ii(l,t,a,u,e)}function Td(l,t,a){var u=t.pendingProps,e=u.children,n=l!==null?l.memoizedState:null;if(u.mode==="hidden"){if((t.flags&128)!==0){if(u=n!==null?n.baseLanes|a:a,l!==null){for(e=t.child=l.child,n=0;e!==null;)n=n|e.lanes|e.childLanes,e=e.sibling;t.childLanes=n&~u}else t.childLanes=0,t.child=null;return Ed(l,t,u,a)}if((a&536870912)!==0)t.memoizedState={baseLanes:0,cachePool:null},l!==null&&Qe(t,n!==null?n.cachePool:null),n!==null?bs(t,n):xi(),cd(t);else return t.lanes=t.childLanes=536870912,Ed(l,t,n!==null?n.baseLanes|a:a,a)}else n!==null?(Qe(t,n.cachePool),bs(t,n),kt(),t.memoizedState=null):(l!==null&&Qe(t,null),xi(),kt());return Ol(l,t,e,a),t.child}function Ed(l,t,a,u){var e=_i();return e=e===null?null:{parent:Sl._currentValue,pool:e},t.memoizedState={baseLanes:a,cachePool:e},l!==null&&Qe(t,null),xi(),cd(t),l!==null&&qu(l,t,u,!0),null}function en(l,t){var a=t.ref;if(a===null)l!==null&&l.ref!==null&&(t.flags|=4194816);else{if(typeof a!="function"&&typeof a!="object")throw Error(y(284));(l===null||l.ref!==a)&&(t.flags|=4194816)}}function Ii(l,t,a,u,e){return _a(t),a=Hi(l,t,a,u,void 0,e),u=qi(),l!==null&&!Al?(Yi(l,t,e),Ht(l,t,e)):(I&&u&&gi(t),t.flags|=1,Ol(l,t,a,e),t.child)}function Ad(l,t,a,u,e,n){return _a(t),t.updateQueue=null,a=Es(t,u,a,e),Ts(l),u=qi(),l!==null&&!Al?(Yi(l,t,n),Ht(l,t,n)):(I&&u&&gi(t),t.flags|=1,Ol(l,t,a,n),t.child)}function zd(l,t,a,u,e){if(_a(t),t.stateNode===null){var n=Wa,i=a.contextType;typeof i=="object"&&i!==null&&(n=jl(i)),n=new a(u,n),t.memoizedState=n.state!==null&&n.state!==void 0?n.state:null,n.updater=ki,t.stateNode=n,n._reactInternals=t,n=t.stateNode,n.props=u,n.state=t.memoizedState,n.refs={},Mi(t),i=a.contextType,n.context=typeof i=="object"&&i!==null?jl(i):Wa,n.state=t.memoizedState,i=a.getDerivedStateFromProps,typeof i=="function"&&($i(t,a,i,u),n.state=t.memoizedState),typeof a.getDerivedStateFromProps=="function"||typeof n.getSnapshotBeforeUpdate=="function"||typeof n.UNSAFE_componentWillMount!="function"&&typeof n.componentWillMount!="function"||(i=n.state,typeof n.componentWillMount=="function"&&n.componentWillMount(),typeof n.UNSAFE_componentWillMount=="function"&&n.UNSAFE_componentWillMount(),i!==n.state&&ki.enqueueReplaceState(n,n.state,null),Zu(t,u,n,e),Qu(),n.state=t.memoizedState),typeof n.componentDidMount=="function"&&(t.flags|=4194308),u=!0}else if(l===null){n=t.stateNode;var c=t.memoizedProps,f=Da(a,c);n.props=f;var r=n.context,S=a.contextType;i=Wa,typeof S=="object"&&S!==null&&(i=jl(S));var E=a.getDerivedStateFromProps;S=typeof E=="function"||typeof n.getSnapshotBeforeUpdate=="function",c=t.pendingProps!==c,S||typeof n.UNSAFE_componentWillReceiveProps!="function"&&typeof n.componentWillReceiveProps!="function"||(c||r!==i)&&sd(t,n,u,i),Kt=!1;var v=t.memoizedState;n.state=v,Zu(t,u,n,e),Qu(),r=t.memoizedState,c||v!==r||Kt?(typeof E=="function"&&($i(t,a,E,u),r=t.memoizedState),(f=Kt||fd(t,a,f,u,v,r,i))?(S||typeof n.UNSAFE_componentWillMount!="function"&&typeof n.componentWillMount!="function"||(typeof n.componentWillMount=="function"&&n.componentWillMount(),typeof n.UNSAFE_componentWillMount=="function"&&n.UNSAFE_componentWillMount()),typeof n.componentDidMount=="function"&&(t.flags|=4194308)):(typeof n.componentDidMount=="function"&&(t.flags|=4194308),t.memoizedProps=u,t.memoizedState=r),n.props=u,n.state=r,n.context=i,u=f):(typeof n.componentDidMount=="function"&&(t.flags|=4194308),u=!1)}else{n=t.stateNode,Di(l,t),i=t.memoizedProps,S=Da(a,i),n.props=S,E=t.pendingProps,v=n.context,r=a.contextType,f=Wa,typeof r=="object"&&r!==null&&(f=jl(r)),c=a.getDerivedStateFromProps,(r=typeof c=="function"||typeof n.getSnapshotBeforeUpdate=="function")||typeof n.UNSAFE_componentWillReceiveProps!="function"&&typeof n.componentWillReceiveProps!="function"||(i!==E||v!==f)&&sd(t,n,u,f),Kt=!1,v=t.memoizedState,n.state=v,Zu(t,u,n,e),Qu();var m=t.memoizedState;i!==E||v!==m||Kt||l!==null&&l.dependencies!==null&&Xe(l.dependencies)?(typeof c=="function"&&($i(t,a,c,u),m=t.memoizedState),(S=Kt||fd(t,a,S,u,v,m,f)||l!==null&&l.dependencies!==null&&Xe(l.dependencies))?(r||typeof n.UNSAFE_componentWillUpdate!="function"&&typeof n.componentWillUpdate!="function"||(typeof n.componentWillUpdate=="function"&&n.componentWillUpdate(u,m,f),typeof n.UNSAFE_componentWillUpdate=="function"&&n.UNSAFE_componentWillUpdate(u,m,f)),typeof n.componentDidUpdate=="function"&&(t.flags|=4),typeof n.getSnapshotBeforeUpdate=="function"&&(t.flags|=1024)):(typeof n.componentDidUpdate!="function"||i===l.memoizedProps&&v===l.memoizedState||(t.flags|=4),typeof n.getSnapshotBeforeUpdate!="function"||i===l.memoizedProps&&v===l.memoizedState||(t.flags|=1024),t.memoizedProps=u,t.memoizedState=m),n.props=u,n.state=m,n.context=f,u=S):(typeof n.componentDidUpdate!="function"||i===l.memoizedProps&&v===l.memoizedState||(t.flags|=4),typeof n.getSnapshotBeforeUpdate!="function"||i===l.memoizedProps&&v===l.memoizedState||(t.flags|=1024),u=!1)}return n=u,en(l,t),u=(t.flags&128)!==0,n||u?(n=t.stateNode,a=u&&typeof a.getDerivedStateFromError!="function"?null:n.render(),t.flags|=1,l!==null&&u?(t.child=eu(t,l.child,null,e),t.child=eu(t,null,a,e)):Ol(l,t,a,e),t.memoizedState=n.state,l=t.child):l=Ht(l,t,e),l}function pd(l,t,a,u){return ju(),t.flags|=256,Ol(l,t,a,u),t.child}var Pi={dehydrated:null,treeContext:null,retryLane:0,hydrationErrors:null};function lc(l){return{baseLanes:l,cachePool:os()}}function tc(l,t,a){return l=l!==null?l.childLanes&~a:0,t&&(l|=st),l}function _d(l,t,a){var u=t.pendingProps,e=!1,n=(t.flags&128)!==0,i;if((i=n)||(i=l!==null&&l.memoizedState===null?!1:(bl.current&2)!==0),i&&(e=!0,t.flags&=-129),i=(t.flags&32)!==0,t.flags&=-33,l===null){if(I){if(e?$t(t):kt(),I){var c=hl,f;if(f=c){l:{for(f=c,c=St;f.nodeType!==8;){if(!c){c=null;break l}if(f=mt(f.nextSibling),f===null){c=null;break l}}c=f}c!==null?(t.memoizedState={dehydrated:c,treeContext:Ta!==null?{id:Dt,overflow:Ut}:null,retryLane:536870912,hydrationErrors:null},f=kl(18,null,null,0),f.stateNode=c,f.return=t,t.child=f,Yl=t,hl=null,f=!0):f=!1}f||za(t)}if(c=t.memoizedState,c!==null&&(c=c.dehydrated,c!==null))return Gc(c)?t.lanes=32:t.lanes=536870912,null;jt(t)}return c=u.children,u=u.fallback,e?(kt(),e=t.mode,c=nn({mode:"hidden",children:c},e),u=ba(u,e,a,null),c.return=t,u.return=t,c.sibling=u,t.child=c,e=t.child,e.memoizedState=lc(a),e.childLanes=tc(l,i,a),t.memoizedState=Pi,u):($t(t),ac(t,c))}if(f=l.memoizedState,f!==null&&(c=f.dehydrated,c!==null)){if(n)t.flags&256?($t(t),t.flags&=-257,t=uc(l,t,a)):t.memoizedState!==null?(kt(),t.child=l.child,t.flags|=128,t=null):(kt(),e=u.fallback,c=t.mode,u=nn({mode:"visible",children:u.children},c),e=ba(e,c,a,null),e.flags|=2,u.return=t,e.return=t,u.sibling=e,t.child=u,eu(t,l.child,null,a),u=t.child,u.memoizedState=lc(a),u.childLanes=tc(l,i,a),t.memoizedState=Pi,t=e);else if($t(t),Gc(c)){if(i=c.nextSibling&&c.nextSibling.dataset,i)var r=i.dgst;i=r,u=Error(y(419)),u.stack="",u.digest=i,Hu({value:u,source:null,stack:null}),t=uc(l,t,a)}else if(Al||qu(l,t,a,!1),i=(a&l.childLanes)!==0,Al||i){if(i=cl,i!==null&&(u=a&-a,u=(u&42)!==0?1:Xn(u),u=(u&(i.suspendedLanes|a))!==0?0:u,u!==0&&u!==f.retryLane))throw f.retryLane=u,wa(l,u),tt(i,l,u),yd;c.data==="$?"||Ec(),t=uc(l,t,a)}else c.data==="$?"?(t.flags|=192,t.child=l.child,t=null):(l=f.treeContext,hl=mt(c.nextSibling),Yl=t,I=!0,Aa=null,St=!1,l!==null&&(it[ct++]=Dt,it[ct++]=Ut,it[ct++]=Ta,Dt=l.id,Ut=l.overflow,Ta=t),t=ac(t,u.children),t.flags|=4096);return t}return e?(kt(),e=u.fallback,c=t.mode,f=l.child,r=f.sibling,u=Mt(f,{mode:"hidden",children:u.children}),u.subtreeFlags=f.subtreeFlags&65011712,r!==null?e=Mt(r,e):(e=ba(e,c,a,null),e.flags|=2),e.return=t,u.return=t,u.sibling=e,t.child=u,u=e,e=t.child,c=l.child.memoizedState,c===null?c=lc(a):(f=c.cachePool,f!==null?(r=Sl._currentValue,f=f.parent!==r?{parent:r,pool:r}:f):f=os(),c={baseLanes:c.baseLanes|a,cachePool:f}),e.memoizedState=c,e.childLanes=tc(l,i,a),t.memoizedState=Pi,u):($t(t),a=l.child,l=a.sibling,a=Mt(a,{mode:"visible",children:u.children}),a.return=t,a.sibling=null,l!==null&&(i=t.deletions,i===null?(t.deletions=[l],t.flags|=16):i.push(l)),t.child=a,t.memoizedState=null,a)}function ac(l,t){return t=nn({mode:"visible",children:t},l.mode),t.return=l,l.child=t}function nn(l,t){return l=kl(22,l,null,t),l.lanes=0,l.stateNode={_visibility:1,_pendingMarkers:null,_retryCache:null,_transitions:null},l}function uc(l,t,a){return eu(t,l.child,null,a),l=ac(t,t.pendingProps.children),l.flags|=2,t.memoizedState=null,l}function Od(l,t,a){l.lanes|=t;var u=l.alternate;u!==null&&(u.lanes|=t),Ei(l.return,t,a)}function ec(l,t,a,u,e){var n=l.memoizedState;n===null?l.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:u,tail:a,tailMode:e}:(n.isBackwards=t,n.rendering=null,n.renderingStartTime=0,n.last=u,n.tail=a,n.tailMode=e)}function Md(l,t,a){var u=t.pendingProps,e=u.revealOrder,n=u.tail;if(Ol(l,t,u.children,a),u=bl.current,(u&2)!==0)u=u&1|2,t.flags|=128;else{if(l!==null&&(l.flags&128)!==0)l:for(l=t.child;l!==null;){if(l.tag===13)l.memoizedState!==null&&Od(l,a,t);else if(l.tag===19)Od(l,a,t);else if(l.child!==null){l.child.return=l,l=l.child;continue}if(l===t)break l;for(;l.sibling===null;){if(l.return===null||l.return===t)break l;l=l.return}l.sibling.return=l.return,l=l.sibling}u&=1}switch(_(bl,u),e){case"forwards":for(a=t.child,e=null;a!==null;)l=a.alternate,l!==null&&tn(l)===null&&(e=a),a=a.sibling;a=e,a===null?(e=t.child,t.child=null):(e=a.sibling,a.sibling=null),ec(t,!1,e,a,n);break;case"backwards":for(a=null,e=t.child,t.child=null;e!==null;){if(l=e.alternate,l!==null&&tn(l)===null){t.child=e;break}l=e.sibling,e.sibling=a,a=e,e=l}ec(t,!0,a,null,n);break;case"together":ec(t,!1,null,null,void 0);break;default:t.memoizedState=null}return t.child}function Ht(l,t,a){if(l!==null&&(t.dependencies=l.dependencies),ta|=t.lanes,(a&t.childLanes)===0)if(l!==null){if(qu(l,t,a,!1),(a&t.childLanes)===0)return null}else return null;if(l!==null&&t.child!==l.child)throw Error(y(153));if(t.child!==null){for(l=t.child,a=Mt(l,l.pendingProps),t.child=a,a.return=t;l.sibling!==null;)l=l.sibling,a=a.sibling=Mt(l,l.pendingProps),a.return=t;a.sibling=null}return t.child}function nc(l,t){return(l.lanes&t)!==0?!0:(l=l.dependencies,!!(l!==null&&Xe(l)))}function Dh(l,t,a){switch(t.tag){case 3:sl(t,t.stateNode.containerInfo),Lt(t,Sl,l.memoizedState.cache),ju();break;case 27:case 5:Hn(t);break;case 4:sl(t,t.stateNode.containerInfo);break;case 10:Lt(t,t.type,t.memoizedProps.value);break;case 13:var u=t.memoizedState;if(u!==null)return u.dehydrated!==null?($t(t),t.flags|=128,null):(a&t.child.childLanes)!==0?_d(l,t,a):($t(t),l=Ht(l,t,a),l!==null?l.sibling:null);$t(t);break;case 19:var e=(l.flags&128)!==0;if(u=(a&t.childLanes)!==0,u||(qu(l,t,a,!1),u=(a&t.childLanes)!==0),e){if(u)return Md(l,t,a);t.flags|=128}if(e=t.memoizedState,e!==null&&(e.rendering=null,e.tail=null,e.lastEffect=null),_(bl,bl.current),u)break;return null;case 22:case 23:return t.lanes=0,Td(l,t,a);case 24:Lt(t,Sl,l.memoizedState.cache)}return Ht(l,t,a)}function Dd(l,t,a){if(l!==null)if(l.memoizedProps!==t.pendingProps)Al=!0;else{if(!nc(l,a)&&(t.flags&128)===0)return Al=!1,Dh(l,t,a);Al=(l.flags&131072)!==0}else Al=!1,I&&(t.flags&1048576)!==0&&es(t,Ge,t.index);switch(t.lanes=0,t.tag){case 16:l:{l=t.pendingProps;var u=t.elementType,e=u._init;if(u=e(u._payload),t.type=u,typeof u=="function")vi(u)?(l=Da(u,l),t.tag=1,t=zd(null,t,u,l,a)):(t.tag=0,t=Ii(null,t,u,l,a));else{if(u!=null){if(e=u.$$typeof,e===ht){t.tag=11,t=gd(null,t,u,l,a);break l}else if(e===Ll){t.tag=14,t=Sd(null,t,u,l,a);break l}}throw t=ra(u)||u,Error(y(306,t,""))}}return t;case 0:return Ii(l,t,t.type,t.pendingProps,a);case 1:return u=t.type,e=Da(u,t.pendingProps),zd(l,t,u,e,a);case 3:l:{if(sl(t,t.stateNode.containerInfo),l===null)throw Error(y(387));u=t.pendingProps;var n=t.memoizedState;e=n.element,Di(l,t),Zu(t,u,null,a);var i=t.memoizedState;if(u=i.cache,Lt(t,Sl,u),u!==n.cache&&Ai(t,[Sl],a,!0),Qu(),u=i.element,n.isDehydrated)if(n={element:u,isDehydrated:!1,cache:i.cache},t.updateQueue.baseState=n,t.memoizedState=n,t.flags&256){t=pd(l,t,u,a);break l}else if(u!==e){e=et(Error(y(424)),t),Hu(e),t=pd(l,t,u,a);break l}else{switch(l=t.stateNode.containerInfo,l.nodeType){case 9:l=l.body;break;default:l=l.nodeName==="HTML"?l.ownerDocument.body:l}for(hl=mt(l.firstChild),Yl=t,I=!0,Aa=null,St=!0,a=id(t,null,u,a),t.child=a;a;)a.flags=a.flags&-3|4096,a=a.sibling}else{if(ju(),u===e){t=Ht(l,t,a);break l}Ol(l,t,u,a)}t=t.child}return t;case 26:return en(l,t),l===null?(a=R0(t.type,null,t.pendingProps,null))?t.memoizedState=a:I||(a=t.type,l=t.pendingProps,u=Tn(G.current).createElement(a),u[Rl]=t,u[Gl]=l,Dl(u,a,l),El(u),t.stateNode=u):t.memoizedState=R0(t.type,l.memoizedProps,t.pendingProps,l.memoizedState),null;case 27:return Hn(t),l===null&&I&&(u=t.stateNode=U0(t.type,t.pendingProps,G.current),Yl=t,St=!0,e=hl,na(t.type)?(Xc=e,hl=mt(u.firstChild)):hl=e),Ol(l,t,t.pendingProps.children,a),en(l,t),l===null&&(t.flags|=4194304),t.child;case 5:return l===null&&I&&((e=u=hl)&&(u=ar(u,t.type,t.pendingProps,St),u!==null?(t.stateNode=u,Yl=t,hl=mt(u.firstChild),St=!1,e=!0):e=!1),e||za(t)),Hn(t),e=t.type,n=t.pendingProps,i=l!==null?l.memoizedProps:null,u=n.children,qc(e,n)?u=null:i!==null&&qc(e,i)&&(t.flags|=32),t.memoizedState!==null&&(e=Hi(l,t,Th,null,null,a),de._currentValue=e),en(l,t),Ol(l,t,u,a),t.child;case 6:return l===null&&I&&((l=a=hl)&&(a=ur(a,t.pendingProps,St),a!==null?(t.stateNode=a,Yl=t,hl=null,l=!0):l=!1),l||za(t)),null;case 13:return _d(l,t,a);case 4:return sl(t,t.stateNode.containerInfo),u=t.pendingProps,l===null?t.child=eu(t,null,u,a):Ol(l,t,u,a),t.child;case 11:return gd(l,t,t.type,t.pendingProps,a);case 7:return Ol(l,t,t.pendingProps,a),t.child;case 8:return Ol(l,t,t.pendingProps.children,a),t.child;case 12:return Ol(l,t,t.pendingProps.children,a),t.child;case 10:return u=t.pendingProps,Lt(t,t.type,u.value),Ol(l,t,u.children,a),t.child;case 9:return e=t.type._context,u=t.pendingProps.children,_a(t),e=jl(e),u=u(e),t.flags|=1,Ol(l,t,u,a),t.child;case 14:return Sd(l,t,t.type,t.pendingProps,a);case 15:return bd(l,t,t.type,t.pendingProps,a);case 19:return Md(l,t,a);case 31:return u=t.pendingProps,a=t.mode,u={mode:u.mode,children:u.children},l===null?(a=nn(u,a),a.ref=t.ref,t.child=a,a.return=t,t=a):(a=Mt(l.child,u),a.ref=t.ref,t.child=a,a.return=t,t=a),t;case 22:return Td(l,t,a);case 24:return _a(t),u=jl(Sl),l===null?(e=_i(),e===null&&(e=cl,n=zi(),e.pooledCache=n,n.refCount++,n!==null&&(e.pooledCacheLanes|=a),e=n),t.memoizedState={parent:u,cache:e},Mi(t),Lt(t,Sl,e)):((l.lanes&a)!==0&&(Di(l,t),Zu(t,null,null,a),Qu()),e=l.memoizedState,n=t.memoizedState,e.parent!==u?(e={parent:u,cache:u},t.memoizedState=e,t.lanes===0&&(t.memoizedState=t.updateQueue.baseState=e),Lt(t,Sl,u)):(u=n.cache,Lt(t,Sl,u),u!==e.cache&&Ai(t,[Sl],a,!0))),Ol(l,t,t.pendingProps.children,a),t.child;case 29:throw t.pendingProps}throw Error(y(156,t.tag))}function qt(l){l.flags|=4}function Ud(l,t){if(t.type!=="stylesheet"||(t.state.loading&4)!==0)l.flags&=-16777217;else if(l.flags|=16777216,!B0(t)){if(t=ft.current,t!==null&&((w&4194048)===w?bt!==null:(w&62914560)!==w&&(w&536870912)===0||t!==bt))throw Xu=Oi,hs;l.flags|=8192}}function cn(l,t){t!==null&&(l.flags|=4),l.flags&16384&&(t=l.tag!==22?cf():536870912,l.lanes|=t,fu|=t)}function $u(l,t){if(!I)switch(l.tailMode){case"hidden":t=l.tail;for(var a=null;t!==null;)t.alternate!==null&&(a=t),t=t.sibling;a===null?l.tail=null:a.sibling=null;break;case"collapsed":a=l.tail;for(var u=null;a!==null;)a.alternate!==null&&(u=a),a=a.sibling;u===null?t||l.tail===null?l.tail=null:l.tail.sibling=null:u.sibling=null}}function ol(l){var t=l.alternate!==null&&l.alternate.child===l.child,a=0,u=0;if(t)for(var e=l.child;e!==null;)a|=e.lanes|e.childLanes,u|=e.subtreeFlags&65011712,u|=e.flags&65011712,e.return=l,e=e.sibling;else for(e=l.child;e!==null;)a|=e.lanes|e.childLanes,u|=e.subtreeFlags,u|=e.flags,e.return=l,e=e.sibling;return l.subtreeFlags|=u,l.childLanes=a,t}function Uh(l,t,a){var u=t.pendingProps;switch(Si(t),t.tag){case 31:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return ol(t),null;case 1:return ol(t),null;case 3:return a=t.stateNode,u=null,l!==null&&(u=l.memoizedState.cache),t.memoizedState.cache!==u&&(t.flags|=2048),xt(Sl),Ct(),a.pendingContext&&(a.context=a.pendingContext,a.pendingContext=null),(l===null||l.child===null)&&(Ru(t)?qt(t):l===null||l.memoizedState.isDehydrated&&(t.flags&256)===0||(t.flags|=1024,cs())),ol(t),null;case 26:return a=t.memoizedState,l===null?(qt(t),a!==null?(ol(t),Ud(t,a)):(ol(t),t.flags&=-16777217)):a?a!==l.memoizedState?(qt(t),ol(t),Ud(t,a)):(ol(t),t.flags&=-16777217):(l.memoizedProps!==u&&qt(t),ol(t),t.flags&=-16777217),null;case 27:ge(t),a=G.current;var e=t.type;if(l!==null&&t.stateNode!=null)l.memoizedProps!==u&&qt(t);else{if(!u){if(t.stateNode===null)throw Error(y(166));return ol(t),null}l=R.current,Ru(t)?ns(t):(l=U0(e,u,a),t.stateNode=l,qt(t))}return ol(t),null;case 5:if(ge(t),a=t.type,l!==null&&t.stateNode!=null)l.memoizedProps!==u&&qt(t);else{if(!u){if(t.stateNode===null)throw Error(y(166));return ol(t),null}if(l=R.current,Ru(t))ns(t);else{switch(e=Tn(G.current),l){case 1:l=e.createElementNS("http://www.w3.org/2000/svg",a);break;case 2:l=e.createElementNS("http://www.w3.org/1998/Math/MathML",a);break;default:switch(a){case"svg":l=e.createElementNS("http://www.w3.org/2000/svg",a);break;case"math":l=e.createElementNS("http://www.w3.org/1998/Math/MathML",a);break;case"script":l=e.createElement("div"),l.innerHTML=" -