@alignui/cli 0.0.14 → 0.0.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1,12 +1,12 @@
1
1
  #!/usr/bin/env node
2
- import{a as ss}from"./chunk-4C666HHU.js";import{existsSync as as,promises as Du}from"fs";import hu from"path";var Xn=`/** @type {import('tailwindcss').Config} */
2
+ import{a as cs}from"./chunk-4C666HHU.js";import{existsSync as os,promises as fu}from"fs";import du from"path";var Qn=`/** @type {import('tailwindcss').Config} */
3
3
  // Tailwind v4.1 - Minimal config (most configuration is now in CSS)
4
4
  export default {
5
5
  darkMode: ["class"],
6
6
  // Content detection is automatic in v4, but you can override if needed
7
7
  // content: ["./app/**/*.{js,ts,jsx,tsx,mdx}", "./components/**/*.{js,ts,jsx,tsx,mdx}"],
8
8
  plugins: ["@tailwindcss/postcss"],
9
- };`,Jn=`import type { Config } from "tailwindcss";
9
+ };`,Zn=`import type { Config } from "tailwindcss";
10
10
 
11
11
  // Tailwind v4.1 - Minimal config (most configuration is now in CSS)
12
12
  const config = {
@@ -16,7 +16,7 @@ const config = {
16
16
  plugins: ["@tailwindcss/postcss"],
17
17
  } satisfies Config;
18
18
 
19
- export default config;`,Qn=`const config = {
19
+ export default config;`,ea=`const config = {
20
20
  plugins: {
21
21
  "@tailwindcss/postcss": {
22
22
  sources: {
@@ -26,7 +26,7 @@ export default config;`,Qn=`const config = {
26
26
  },
27
27
  };
28
28
 
29
- export default config;`,Zn=`<% if (config.tailwind.prefix) { %>@import "tailwindcss" prefix(<%= config.tailwind.prefix %>);<% } else { %>@import "tailwindcss";<% } %>
29
+ export default config;`,ta=`<% if (config.tailwind.prefix) { %>@import "tailwindcss" prefix(<%= config.tailwind.prefix %>);<% } else { %>@import "tailwindcss";<% } %>
30
30
 
31
31
  @theme {
32
32
  /* AlignUI Raw Colors */
@@ -330,6 +330,11 @@ export default config;`,Zn=`<% if (config.tailwind.prefix) { %>@import "tailwind
330
330
  --shadow-<%- key %>: <%- Array.isArray(value) ? value.join(', ') : value %>;
331
331
  <% }); %>
332
332
 
333
+ /* AlignUI Block Shadow System */
334
+ <% Object.entries(JSON.parse(blockShadows)).forEach(([key, value]) => { %>
335
+ --shadow-<%- key %>: <%- Array.isArray(value) ? value.join(',\\n ') : value %>;
336
+ <% }); %>
337
+
333
338
  /* AlignUI Border Radius System - Dynamic from tokens.ts */
334
339
  <% Object.entries(JSON.parse(borderRadii)).forEach(([key, value]) => { %>
335
340
  --radius-<%- key %>: <%- value %>;
@@ -423,11 +428,15 @@ export default config;`,Zn=`<% if (config.tailwind.prefix) { %>@import "tailwind
423
428
  --color-social-tidal: <%- social['tidal-dark'] %>;
424
429
  --color-social-amazon: <%- social['amazon-dark'] %>;
425
430
  --color-social-zendesk: <%- social['zendesk-dark'] %>;
431
+
432
+ <% Object.entries(JSON.parse(darkBlockShadows)).forEach(([key, value]) => { %>
433
+ --shadow-<%- key %>: <%- Array.isArray(value) ? value.join(',\\n ') : value %>;
434
+ <% }); %>
426
435
  }
427
436
  }
428
437
 
429
438
  /* Class-based Dark Mode Support */
430
- .dark {
439
+ .dark {
431
440
  --color-bg-strong-950: var(--color-neutral-0);
432
441
  --color-bg-surface-800: var(--color-neutral-200);
433
442
  --color-bg-sub-300: var(--color-neutral-600);
@@ -507,6 +516,10 @@ export default config;`,Zn=`<% if (config.tailwind.prefix) { %>@import "tailwind
507
516
  --color-social-tidal: <%- social['tidal-dark'] %>;
508
517
  --color-social-amazon: <%- social['amazon-dark'] %>;
509
518
  --color-social-zendesk: <%- social['zendesk-dark'] %>;
519
+
520
+ <% Object.entries(JSON.parse(darkBlockShadows)).forEach(([key, value]) => { %>
521
+ --shadow-<%- key %>: <%- Array.isArray(value) ? value.join(',\\n ') : value %>;
522
+ <% }); %>
510
523
  }
511
524
 
512
525
  /* Keyframe Animations - AlignUI System */
@@ -517,7 +530,8 @@ export default config;`,Zn=`<% if (config.tailwind.prefix) { %>@import "tailwind
517
530
  }
518
531
 
519
532
  @keyframes ping {
520
- 75%, 100% {
533
+ 75%,
534
+ 100% {
521
535
  transform: scale(2);
522
536
  opacity: 0;
523
537
  }
@@ -525,18 +539,19 @@ export default config;`,Zn=`<% if (config.tailwind.prefix) { %>@import "tailwind
525
539
 
526
540
  @keyframes pulse {
527
541
  50% {
528
- opacity: .5;
542
+ opacity: 0.5;
529
543
  }
530
544
  }
531
545
 
532
546
  @keyframes bounce {
533
- 0%, 100% {
547
+ 0%,
548
+ 100% {
534
549
  transform: translateY(-25%);
535
- animation-timing-function: cubic-bezier(0.8,0,1,1);
550
+ animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
536
551
  }
537
552
  50% {
538
553
  transform: none;
539
- animation-timing-function: cubic-bezier(0,0,0.2,1);
554
+ animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
540
555
  }
541
556
  }
542
557
 
@@ -576,116 +591,116 @@ body {
576
591
  margin: 0;
577
592
  padding: 0;
578
593
  }
579
- `;import{Command as xF}from"commander";import{execa as jF}from"execa";import $F from"lodash.template";import{z as rs}from"zod";import{intro as MF,outro as HF,text as Yn,select as fu,isCancel as ir,spinner as us}from"@clack/prompts";import Fu from"path";import{z as Te}from"zod";var ea="app/globals.css",ta="tailwind.config.js",cs="postcss.config.mjs",gu=Te.object({tailwind:Te.object({config:Te.string().optional(),css:Te.string(),primaryColor:Te.enum(["blue","purple","orange","sky"]),neutralColor:Te.enum(["gray","slate"]),colorFormat:Te.enum(["hex","rgb","hsl","oklch"]),prefix:Te.string().default("").optional()})}).strict(),Ds=gu.extend({resolvedPaths:Te.object({tailwindConfig:Te.string().optional(),tailwindCss:Te.string(),postcssConfig:Te.string()})});async function Sr(e,t){return Ds.parse({...t,resolvedPaths:{tailwindConfig:t.tailwind.config?Fu.resolve(e,t.tailwind.config):void 0,tailwindCss:Fu.resolve(e,t.tailwind.css),postcssConfig:Fu.resolve(e,cs)}})}import{detect as fs}from"@antfu/ni";async function ra(e){let t=await fs({programmatic:!0,cwd:e});return t==="yarn@berry"?"yarn":t==="pnpm@6"?"pnpm":t==="bun"?"bun":t??"npm"}import ua from"path";import ds from"fast-glob";import hs,{pathExists as ps}from"fs-extra";var Fs=["**/node_modules/**",".next","public","dist","build"];async function na(e){let t=await aa(e);if(!t)throw new Error("No CSS file found with Tailwind directives. Check your setup and follow the Tailwind installation instructions here: https://tailwindcss.com/docs/installation");let u={tailwind:{config:await gs(e)?"tailwind.config.ts":"tailwind.config.js",primaryColor:"blue",neutralColor:"gray",colorFormat:"oklch",css:t,prefix:""}};return await Sr(e,u)}async function aa(e){let t=await ds.glob("**/*.css",{cwd:e,deep:3,ignore:Fs});if(!t.length)return null;for(let r of t){let u=await hs.readFile(ua.resolve(e,r),"utf8");if(u.includes("@tailwind base")||u.includes('@import "tailwindcss"'))return r}return null}async function gs(e){return ps(ua.resolve(e,"tsconfig.json"))}async function ia(e){if(!await aa(e))throw new Error(`No CSS file found with Tailwind directives. Create a CSS file with "@import 'tailwindcss';" or "@tailwind base;" to get started.`);return!0}var oa={gray:{950:"#171717",900:"#1c1c1c",800:"#292929",700:"#333333",600:"#5c5c5c",500:"#7b7b7b",400:"#a3a3a3",300:"#d1d1d1",200:"#ebebeb",100:"#f5f5f5",50:"#f7f7f7",0:"#ffffff","alpha-24":"#a3a3a33d","alpha-16":"#a3a3a329","alpha-10":"#a3a3a31a"},slate:{950:"#0e121b",900:"#181b25",800:"#222530",700:"#2b303b",600:"#525866",500:"#717784",400:"#99a0ae",300:"#cacfd8",200:"#e1e4ea",100:"#f2f5f8",50:"#f5f7fa",0:"#ffffff","alpha-24":"#99a0ae3d","alpha-16":"#99a0ae29","alpha-10":"#99a0ae1a"},blue:{950:"#122368",900:"#182f8b",800:"#1f3bad",700:"#2547d0",600:"#3559e9",500:"#335cff",400:"#6895ff",300:"#97baff",200:"#c0d5ff",100:"#d5e2ff",50:"#ebf1ff","alpha-24":"#476cff3d","alpha-16":"#476cff29","alpha-10":"#476cff1a"},orange:{950:"#71330a",900:"#96440d",800:"#b75310",700:"#ce5e12",600:"#e16614",500:"#fa7319",400:"#ffa468",300:"#ffc197",200:"#ffd9c0",100:"#ffe6d5",50:"#fff3eb","alpha-24":"#ff91473d","alpha-16":"#ff914729","alpha-10":"#ff91471a"},red:{950:"#681219",900:"#8b1822",800:"#ad1f2b",700:"#d02533",600:"#e93544",500:"#fb3748",400:"#ff6875",300:"#ff97a0",200:"#ffc0c5",100:"#ffd5d8",50:"#ffebec","alpha-24":"#fb37483d","alpha-16":"#fb374829","alpha-10":"#fb37481a"},green:{950:"#0b4627",900:"#16643b",800:"#1a7544",700:"#178c4e",600:"#1daf61",500:"#1fc16b",400:"#3ee089",300:"#84ebb4",200:"#c2f5da",100:"#d0fbe9",50:"#e0faec","alpha-24":"#1fc16b3d","alpha-16":"#1fc16b29","alpha-10":"#1fc16b1a"},yellow:{950:"#624c18",900:"#86661d",800:"#a78025",700:"#c99a2c",600:"#e6a819",500:"#f6b51e",400:"#ffd268",300:"#ffe097",200:"#ffecc0",100:"#ffefcc",50:"#fff4d6","alpha-24":"#fbc64b3d","alpha-16":"#fbc64b29","alpha-10":"#fbc64b1a"},purple:{950:"#351a75",900:"#3d1d86",800:"#4c25a7",700:"#5b2cc9",600:"#693ee0",500:"#7d52f4",400:"#8c71f6",300:"#a897ff",200:"#cac0ff",100:"#dcd5ff",50:"#efebff","alpha-24":"#784def3d","alpha-16":"#784def29","alpha-10":"#784def1a"},sky:{950:"#124b68",900:"#18658b",800:"#1f7ead",700:"#2597d0",600:"#35ade9",500:"#47c2ff",400:"#68cdff",300:"#97dcff",200:"#c0eaff",100:"#d5f1ff",50:"#ebf8ff","alpha-24":"#47c2ff3d","alpha-16":"#47c2ff29","alpha-10":"#47c2ff1a"},pink:{950:"#68123d",900:"#8b1852",800:"#ad1f66",700:"#d0257a",600:"#e9358f",500:"#fb4ba3",400:"#ff68b3",300:"#ff97cb",200:"#ffc0df",100:"#ffd5ea",50:"#ffebf4","alpha-24":"#fb4ba33d","alpha-16":"#fb4ba329","alpha-10":"#fb4ba31a"},teal:{950:"#0b463e",900:"#16645a",800:"#1a7569",700:"#178c7d",600:"#1daf9c",500:"#22d3bb",400:"#3fdec9",300:"#84ebdd",200:"#c2f5ee",100:"#d0fbf5",50:"#e4fbf8","alpha-24":"#22d3bb3d","alpha-16":"#22d3bb29","alpha-10":"#22d3bb1a"},white:{"alpha-24":"#ffffff3d","alpha-16":"#ffffff29","alpha-10":"#ffffff1a"},black:{"alpha-24":"#0000003d","alpha-16":"#00000029","alpha-10":"#0000001a"},static:{black:"#000",white:"#fff"},social:{"apple-light":"#000","apple-dark":"#fff","twitter-light":"#010101","twitter-dark":"#fff","github-light":"#24292f","github-dark":"#fff","notion-light":"#1e2226","notion-dark":"#fff","tidal-light":"#000","tidal-dark":"#fff","amazon-light":"#353e47","amazon-dark":"#fff","zendesk-light":"#16140d","zendesk-dark":"#fff"},overlay:{"gray-light":"#3333333d","gray-dark":"#3333338f","slate-light":"#2b303b3d","slate-dark":"#2b303b8f"}},sa={gray:{950:"var(--gray-950)",900:"var(--gray-900)",800:"var(--gray-800)",700:"var(--gray-700)",600:"var(--gray-600)",500:"var(--gray-500)",400:"var(--gray-400)",300:"var(--gray-300)",200:"var(--gray-200)",100:"var(--gray-100)",50:"var(--gray-50)",0:"var(--gray-0)","alpha-24":"var(--gray-alpha-24)","alpha-16":"var(--gray-alpha-16)","alpha-10":"var(--gray-alpha-10)"},slate:{950:"var(--slate-950)",900:"var(--slate-900)",800:"var(--slate-800)",700:"var(--slate-700)",600:"var(--slate-600)",500:"var(--slate-500)",400:"var(--slate-400)",300:"var(--slate-300)",200:"var(--slate-200)",100:"var(--slate-100)",50:"var(--slate-50)",0:"var(--slate-0)","alpha-24":"var(--slate-alpha-24)","alpha-16":"var(--slate-alpha-16)","alpha-10":"var(--slate-alpha-10)"},neutral:{950:"var(--neutral-950)",900:"var(--neutral-900)",800:"var(--neutral-800)",700:"var(--neutral-700)",600:"var(--neutral-600)",500:"var(--neutral-500)",400:"var(--neutral-400)",300:"var(--neutral-300)",200:"var(--neutral-200)",100:"var(--neutral-100)",50:"var(--neutral-50)",0:"var(--neutral-0)","alpha-24":"var(--neutral-alpha-24)","alpha-16":"var(--neutral-alpha-16)","alpha-10":"var(--neutral-alpha-10)"},blue:{950:"var(--blue-950)",900:"var(--blue-900)",800:"var(--blue-800)",700:"var(--blue-700)",600:"var(--blue-600)",500:"var(--blue-500)",400:"var(--blue-400)",300:"var(--blue-300)",200:"var(--blue-200)",100:"var(--blue-100)",50:"var(--blue-50)","alpha-24":"var(--blue-alpha-24)","alpha-16":"var(--blue-alpha-16)","alpha-10":"var(--blue-alpha-10)"},orange:{950:"var(--orange-950)",900:"var(--orange-900)",800:"var(--orange-800)",700:"var(--orange-700)",600:"var(--orange-600)",500:"var(--orange-500)",400:"var(--orange-400)",300:"var(--orange-300)",200:"var(--orange-200)",100:"var(--orange-100)",50:"var(--orange-50)","alpha-24":"var(--orange-alpha-24)","alpha-16":"var(--orange-alpha-16)","alpha-10":"var(--orange-alpha-10)"},red:{950:"var(--red-950)",900:"var(--red-900)",800:"var(--red-800)",700:"var(--red-700)",600:"var(--red-600)",500:"var(--red-500)",400:"var(--red-400)",300:"var(--red-300)",200:"var(--red-200)",100:"var(--red-100)",50:"var(--red-50)","alpha-24":"var(--red-alpha-24)","alpha-16":"var(--red-alpha-16)","alpha-10":"var(--red-alpha-10)"},green:{950:"var(--green-950)",900:"var(--green-900)",800:"var(--green-800)",700:"var(--green-700)",600:"var(--green-600)",500:"var(--green-500)",400:"var(--green-400)",300:"var(--green-300)",200:"var(--green-200)",100:"var(--green-100)",50:"var(--green-50)","alpha-24":"var(--green-alpha-24)","alpha-16":"var(--green-alpha-16)","alpha-10":"var(--green-alpha-10)"},yellow:{950:"var(--yellow-950)",900:"var(--yellow-900)",800:"var(--yellow-800)",700:"var(--yellow-700)",600:"var(--yellow-600)",500:"var(--yellow-500)",400:"var(--yellow-400)",300:"var(--yellow-300)",200:"var(--yellow-200)",100:"var(--yellow-100)",50:"var(--yellow-50)","alpha-24":"var(--yellow-alpha-24)","alpha-16":"var(--yellow-alpha-16)","alpha-10":"var(--yellow-alpha-10)"},purple:{950:"var(--purple-950)",900:"var(--purple-900)",800:"var(--purple-800)",700:"var(--purple-700)",600:"var(--purple-600)",500:"var(--purple-500)",400:"var(--purple-400)",300:"var(--purple-300)",200:"var(--purple-200)",100:"var(--purple-100)",50:"var(--purple-50)","alpha-24":"var(--purple-alpha-24)","alpha-16":"var(--purple-alpha-16)","alpha-10":"var(--purple-alpha-10)"},sky:{950:"var(--sky-950)",900:"var(--sky-900)",800:"var(--sky-800)",700:"var(--sky-700)",600:"var(--sky-600)",500:"var(--sky-500)",400:"var(--sky-400)",300:"var(--sky-300)",200:"var(--sky-200)",100:"var(--sky-100)",50:"var(--sky-50)","alpha-24":"var(--sky-alpha-24)","alpha-16":"var(--sky-alpha-16)","alpha-10":"var(--sky-alpha-10)"},pink:{950:"var(--pink-950)",900:"var(--pink-900)",800:"var(--pink-800)",700:"var(--pink-700)",600:"var(--pink-600)",500:"var(--pink-500)",400:"var(--pink-400)",300:"var(--pink-300)",200:"var(--pink-200)",100:"var(--pink-100)",50:"var(--pink-50)","alpha-24":"var(--pink-alpha-24)","alpha-16":"var(--pink-alpha-16)","alpha-10":"var(--pink-alpha-10)"},teal:{950:"var(--teal-950)",900:"var(--teal-900)",800:"var(--teal-800)",700:"var(--teal-700)",600:"var(--teal-600)",500:"var(--teal-500)",400:"var(--teal-400)",300:"var(--teal-300)",200:"var(--teal-200)",100:"var(--teal-100)",50:"var(--teal-50)","alpha-24":"var(--teal-alpha-24)","alpha-16":"var(--teal-alpha-16)","alpha-10":"var(--teal-alpha-10)"},white:{DEFAULT:"#fff","alpha-24":"var(--white-alpha-24)","alpha-16":"var(--white-alpha-16)","alpha-10":"var(--white-alpha-10)"},black:{DEFAULT:"#000","alpha-24":"var(--black-alpha-24)","alpha-16":"var(--black-alpha-16)","alpha-10":"var(--black-alpha-10)"},primary:{dark:"var(--primary-dark)",darker:"var(--primary-darker)",base:"var(--primary-base)","alpha-24":"var(--primary-alpha-24)","alpha-16":"var(--primary-alpha-16)","alpha-10":"var(--primary-alpha-10)"},static:{black:"var(--static-black)",white:"var(--static-white)"},bg:{"strong-950":"var(--bg-strong-950)","surface-800":"var(--bg-surface-800)","sub-300":"var(--bg-sub-300)","soft-200":"var(--bg-soft-200)","weak-50":"var(--bg-weak-50)","white-0":"var(--bg-white-0)"},text:{"strong-950":"var(--text-strong-950)","sub-600":"var(--text-sub-600)","soft-400":"var(--text-soft-400)","disabled-300":"var(--text-disabled-300)","white-0":"var(--text-white-0)"},stroke:{"strong-950":"var(--stroke-strong-950)","sub-300":"var(--stroke-sub-300)","soft-200":"var(--stroke-soft-200)","white-0":"var(--stroke-white-0)"},faded:{dark:"var(--faded-dark)",base:"var(--faded-base)",light:"var(--faded-light)",lighter:"var(--faded-lighter)"},information:{dark:"var(--information-dark)",base:"var(--information-base)",light:"var(--information-light)",lighter:"var(--information-lighter)"},warning:{dark:"var(--warning-dark)",base:"var(--warning-base)",light:"var(--warning-light)",lighter:"var(--warning-lighter)"},error:{dark:"var(--error-dark)",base:"var(--error-base)",light:"var(--error-light)",lighter:"var(--error-lighter)"},success:{dark:"var(--success-dark)",base:"var(--success-base)",light:"var(--success-light)",lighter:"var(--success-lighter)"},away:{dark:"var(--away-dark)",base:"var(--away-base)",light:"var(--away-light)",lighter:"var(--away-lighter)"},feature:{dark:"var(--feature-dark)",base:"var(--feature-base)",light:"var(--feature-light)",lighter:"var(--feature-lighter)"},verified:{dark:"var(--verified-dark)",base:"var(--verified-base)",light:"var(--verified-light)",lighter:"var(--verified-lighter)"},highlighted:{dark:"var(--highlighted-dark)",base:"var(--highlighted-base)",light:"var(--highlighted-light)",lighter:"var(--highlighted-lighter)"},stable:{dark:"var(--stable-dark)",base:"var(--stable-base)",light:"var(--stable-light)",lighter:"var(--stable-lighter)"},social:{apple:"var(--social-apple)",twitter:"var(--social-twitter)",github:"var(--social-github)",notion:"var(--social-notion)",tidal:"var(--social-tidal)",amazon:"var(--social-amazon)",zendesk:"var(--social-zendesk)"},overlay:{DEFAULT:"var(--overlay)"},transparent:"transparent",current:"currentColor"},og=Object.fromEntries(Object.entries(sa).map(([e,t])=>[e,typeof t=="object"?Object.fromEntries(Object.entries(t).map(([r,u])=>[r,u.startsWith("var(")?`rgb(${u})`:u])):t])),sg=Object.fromEntries(Object.entries(sa).map(([e,t])=>[e,typeof t=="object"?Object.fromEntries(Object.entries(t).map(([r,u])=>[r,u.startsWith("var(")?`hsl(${u})`:u])):t])),Eu={10:".625rem",20:"1.25rem"},mu={"title-h1":["3.5rem",{lineHeight:"4rem",letterSpacing:"-0.01em",fontWeight:"500"}],"title-h2":["3rem",{lineHeight:"3.5rem",letterSpacing:"-0.01em",fontWeight:"500"}],"title-h3":["2.5rem",{lineHeight:"3rem",letterSpacing:"-0.01em",fontWeight:"500"}],"title-h4":["2rem",{lineHeight:"2.5rem",letterSpacing:"-0.005em",fontWeight:"500"}],"title-h5":["1.5rem",{lineHeight:"2rem",letterSpacing:"0em",fontWeight:"500"}],"title-h6":["1.25rem",{lineHeight:"1.75rem",letterSpacing:"0em",fontWeight:"500"}],"label-xl":["1.5rem",{lineHeight:"2rem",letterSpacing:"-0.015em",fontWeight:"500"}],"label-lg":["1.125rem",{lineHeight:"1.5rem",letterSpacing:"-0.015em",fontWeight:"500"}],"label-md":["1rem",{lineHeight:"1.5rem",letterSpacing:"-0.011em",fontWeight:"500"}],"label-sm":[".875rem",{lineHeight:"1.25rem",letterSpacing:"-0.006em",fontWeight:"500"}],"label-xs":[".75rem",{lineHeight:"1rem",letterSpacing:"0em",fontWeight:"500"}],"paragraph-xl":["1.5rem",{lineHeight:"2rem",letterSpacing:"-0.015em",fontWeight:"400"}],"paragraph-lg":["1.125rem",{lineHeight:"1.5rem",letterSpacing:"-0.015em",fontWeight:"400"}],"paragraph-md":["1rem",{lineHeight:"1.5rem",letterSpacing:"-0.011em",fontWeight:"400"}],"paragraph-sm":[".875rem",{lineHeight:"1.25rem",letterSpacing:"-0.006em",fontWeight:"400"}],"paragraph-xs":[".75rem",{lineHeight:"1rem",letterSpacing:"0em",fontWeight:"400"}],"subheading-md":["1rem",{lineHeight:"1.5rem",letterSpacing:"0.06em",fontWeight:"500"}],"subheading-sm":[".875rem",{lineHeight:"1.25rem",letterSpacing:"0.06em",fontWeight:"500"}],"subheading-xs":[".75rem",{lineHeight:"1rem",letterSpacing:"0.04em",fontWeight:"500"}],"subheading-2xs":[".6875rem",{lineHeight:".75rem",letterSpacing:"0.02em",fontWeight:"500"}],"doc-label":["1.125rem",{lineHeight:"2rem",letterSpacing:"-0.015em",fontWeight:"500"}],"doc-paragraph":["1.125rem",{lineHeight:"2rem",letterSpacing:"-0.015em",fontWeight:"400"}]},Cu={"regular-xs":"0 1px 2px 0 #0a0d1408","regular-sm":"0 2px 4px #1b1c1d0a","regular-md":"0 16px 32px -12px #0e121b1a","button-primary-focus":["0 0 0 2px var(--color-bg-white-0)","0 0 0 4px var(--color-primary-alpha-10)"],"button-important-focus":["0 0 0 2px var(--color-bg-white-0)","0 0 0 4px var(--color-neutral-alpha-16)"],"button-error-focus":["0 0 0 2px var(--color-bg-white-0)","0 0 0 4px var(--color-red-alpha-10)"],"fancy-buttons-neutral":["0 1px 2px 0 #1b1c1d7a","0 0 0 1px #242628"],"fancy-buttons-primary":["0 1px 2px 0 #0e121b3d","0 0 0 1px var(--color-primary-base)"],"fancy-buttons-error":["0 1px 2px 0 #0e121b3d","0 0 0 1px var(--color-error-base)"],"fancy-buttons-stroke":["0 1px 3px 0 #0e121b1f","0 0 0 1px var(--color-stroke-soft-200)"],"toggle-switch":["0 6px 10px 0 #0e121b0f","0 2px 4px 0 #0e121b08"],"switch-thumb":["0 4px 8px 0 #1b1c1d0f","0 2px 4px 0 #0e121b14"],tooltip:["0 12px 24px 0 #0e121b0f","0 1px 2px 0 #0e121b08"],"custom-xs":["0 0 0 1px rgba(51, 51, 51, 0.04)","0 4px 8px -2px rgba(51, 51, 51, 0.06)","0 2px 4px rgba(51, 51, 51, 0.04)","0 1px 2px rgba(51, 51, 51, 0.04)","inset 0 -1px 1px -0.5px rgba(51, 51, 51, 0.06)"],"custom-sm":["0 0 0 1px rgba(51, 51, 51, 0.04)","0 16px 8px -8px rgba(51, 51, 51, 0.01)","0 12px 6px -6px rgba(51, 51, 51, 0.02)","0 5px 5px -2.5px rgba(51, 51, 51, 0.08)","0 1px 3px -1.5px rgba(51, 51, 51, 0.16)","inset 0 -0.5px 0.5px rgba(51, 51, 51, 0.08)"],"custom-md":["0 0 0 1px rgba(51, 51, 51, 0.04)","0 1px 1px 0.5px rgba(51, 51, 51, 0.04)","0 3px 3px -1.5px rgba(51, 51, 51, 0.02)","0 6px 6px -3px rgba(51, 51, 51, 0.04)","0 12px 12px -6px rgba(51, 51, 51, 0.04)","0 24px 24px -12px rgba(51, 51, 51, 0.04)","0 48px 48px -24px rgba(51, 51, 51, 0.04)","inset 0 -1px 1px -0.5px rgba(51, 51, 51, 0.06)"],"custom-lg":["0 0 0 1px rgba(51, 51, 51, 0.04)","0 1px 1px 0.5px rgba(51, 51, 51, 0.04)","0 3px 3px -1.5px rgba(51, 51, 51, 0.02)","0 6px 6px -3px rgba(51, 51, 51, 0.04)","0 12px 12px -6px rgba(51, 51, 51, 0.04)","0 24px 24px -12px rgba(51, 51, 51, 0.04)","0 48px 48px -24px rgba(51, 51, 51, 0.04)","0 96px 96px -32px rgba(51, 51, 51, 0.06)","inset 0 -1px 1px -0.5px rgba(51, 51, 51, 0.06)"]},vu={"accordion-down":"accordion-down 0.2s ease-out","accordion-up":"accordion-up 0.2s ease-out"};import{createRequire as hl}from"module";import{fileURLToPath as pl}from"url";import{dirname as Fl}from"path";import vt from"path";import*as Ui from"path";import*as vn from"url";import Vi from"path";import*as Ki from"path";import*as au from"fs/promises";import*as zi from"path";import I0 from"process";import*as nr from"path";import M0 from"process";import An from"path";import{pathToFileURL as eD}from"url";import ND from"fs/promises";import VD from"path";import{pathToFileURL as KD}from"url";import ao from"assert";import{statSync as io,realpathSync as zD}from"fs";import Ht from"process";import{URL as he,fileURLToPath as se,pathToFileURL as wn}from"url";import oo from"path";import{builtinModules as Sn}from"module";import{fileURLToPath as YD}from"url";import XD from"fs";import JD from"path";import{fileURLToPath as tn}from"url";import QD from"v8";import Wt from"assert";import{format as ZD,inspect as rn}from"util";import{createRequire as zf}from"module";import ii from"assert";import{fileURLToPath as gh}from"url";import Hh from"assert";import gi from"path";import{pathToFileURL as Ei}from"url";import Ip from"path";import zr from"path";import Gp from"url";var Ru={};ss(Ru,{builders:()=>va,default:()=>dl,printer:()=>Aa,utils:()=>ya});var Es=Object.defineProperty,ms=(e,t)=>{for(var r in t)Es(e,r,{get:t[r],enumerable:!0})},fa={};ms(fa,{builders:()=>va,printer:()=>Aa,utils:()=>ya});var Pt="string",ze="array",Ot="cursor",lt="indent",ct="align",Dt="trim",Ie="group",ft="fill",je="if-break",dt="indent-if-break",ht="line-suffix",pt="line-suffix-boundary",Be="line",Ft="label",qe="break-parent",da=new Set([Ot,lt,ct,Dt,Ie,ft,je,dt,ht,pt,Be,Ft,qe]),Cs=(e,t,r)=>{if(!(e&&t==null))return Array.isArray(t)||typeof t=="string"?t[r<0?t.length+r:r]:t.at(r)},st=Cs;function vs(e){let t=e.length;for(;t>0&&(e[t-1]==="\r"||e[t-1]===`
580
- `);)t--;return t<e.length?e.slice(0,t):e}function As(e){if(typeof e=="string")return Pt;if(Array.isArray(e))return ze;if(!e)return;let{type:t}=e;if(da.has(t))return t}var Tt=As,ys=e=>new Intl.ListFormat("en-US",{type:"disjunction"}).format(e);function _s(e){let t=e===null?"null":typeof e;if(t!=="string"&&t!=="object")return`Unexpected doc '${t}',
581
- Expected it to be 'string' or 'object'.`;if(Tt(e))throw new Error("doc is valid.");let r=Object.prototype.toString.call(e);if(r!=="[object Object]")return`Unexpected doc '${r}'.`;let u=ys([...da].map(n=>`'${n}'`));return`Unexpected doc.type '${e.type}'.
582
- Expected it to be ${u}.`}var bs=class extends Error{name="InvalidDocError";constructor(e){super(_s(e)),this.doc=e}},Kt=bs,la={};function Bs(e,t,r,u){let n=[e];for(;n.length>0;){let a=n.pop();if(a===la){r(n.pop());continue}r&&n.push(a,la);let i=Tt(a);if(!i)throw new Kt(a);if(t?.(a)!==!1)switch(i){case ze:case ft:{let o=i===ze?a:a.parts;for(let s=o.length,c=s-1;c>=0;--c)n.push(o[c]);break}case je:n.push(a.flatContents,a.breakContents);break;case Ie:if(u&&a.expandedStates)for(let o=a.expandedStates.length,s=o-1;s>=0;--s)n.push(a.expandedStates[s]);else n.push(a.contents);break;case ct:case lt:case dt:case Ft:case ht:n.push(a.contents);break;case Pt:case Ot:case Dt:case pt:case Be:case qe:break;default:throw new Kt(a)}}}var bu=Bs;function Pr(e,t){if(typeof e=="string")return t(e);let r=new Map;return u(e);function u(a){if(r.has(a))return r.get(a);let i=n(a);return r.set(a,i),i}function n(a){switch(Tt(a)){case ze:return t(a.map(u));case ft:return t({...a,parts:a.parts.map(u)});case je:return t({...a,breakContents:u(a.breakContents),flatContents:u(a.flatContents)});case Ie:{let{expandedStates:i,contents:o}=a;return i?(i=i.map(u),o=i[0]):o=u(o),t({...a,contents:o,expandedStates:i})}case ct:case lt:case dt:case Ft:case ht:return t({...a,contents:u(a.contents)});case Pt:case Ot:case Dt:case pt:case Be:case qe:return t(a);default:throw new Kt(a)}}}function Bu(e,t,r){let u=r,n=!1;function a(i){if(n)return!1;let o=t(i);o!==void 0&&(n=!0,u=o)}return bu(e,a),u}function ws(e){if(e.type===Ie&&e.break||e.type===Be&&e.hard||e.type===qe)return!0}function Ss(e){return Bu(e,ws,!1)}function ca(e){if(e.length>0){let t=st(!1,e,-1);!t.expandedStates&&!t.break&&(t.break="propagated")}return null}function ks(e){let t=new Set,r=[];function u(a){if(a.type===qe&&ca(r),a.type===Ie){if(r.push(a),t.has(a))return!1;t.add(a)}}function n(a){a.type===Ie&&r.pop().break&&ca(r)}bu(e,u,n,!0)}function Rs(e){return e.type===Be&&!e.hard?e.soft?"":" ":e.type===je?e.flatContents:e}function Ps(e){return Pr(e,Rs)}function Da(e){for(e=[...e];e.length>=2&&st(!1,e,-2).type===Be&&st(!1,e,-1).type===qe;)e.length-=2;if(e.length>0){let t=or(st(!1,e,-1));e[e.length-1]=t}return e}function or(e){switch(Tt(e)){case lt:case dt:case Ie:case ht:case Ft:{let t=or(e.contents);return{...e,contents:t}}case je:return{...e,breakContents:or(e.breakContents),flatContents:or(e.flatContents)};case ft:return{...e,parts:Da(e.parts)};case ze:return Da(e);case Pt:return vs(e);case ct:case Ot:case Dt:case pt:case Be:case qe:break;default:throw new Kt(e)}return e}function Os(e){return or(Is(e))}function Ts(e){switch(Tt(e)){case ft:if(e.parts.every(t=>t===""))return"";break;case Ie:if(!e.contents&&!e.id&&!e.break&&!e.expandedStates)return"";if(e.contents.type===Ie&&e.contents.id===e.id&&e.contents.break===e.break&&e.contents.expandedStates===e.expandedStates)return e.contents;break;case ct:case lt:case dt:case ht:if(!e.contents)return"";break;case je:if(!e.flatContents&&!e.breakContents)return"";break;case ze:{let t=[];for(let r of e){if(!r)continue;let[u,...n]=Array.isArray(r)?r:[r];typeof u=="string"&&typeof st(!1,t,-1)=="string"?t[t.length-1]+=u:t.push(u),t.push(...n)}return t.length===0?"":t.length===1?t[0]:t}case Pt:case Ot:case Dt:case pt:case Be:case Ft:case qe:break;default:throw new Kt(e)}return e}function Is(e){return Pr(e,t=>Ts(t))}function Ns(e,t=ga){return Pr(e,r=>typeof r=="string"?Ea(t,r.split(`
583
- `)):r)}function Ls(e){if(e.type===Be)return!0}function xs(e){return Bu(e,Ls,!1)}var wu=()=>{},Ue=wu,ha=wu,js=wu;function Rr(e){return Ue(e),{type:lt,contents:e}}function zt(e,t){return Ue(t),{type:ct,contents:t,n:e}}function pa(e,t={}){return Ue(e),ha(t.expandedStates,!0),{type:Ie,id:t.id,contents:e,break:!!t.shouldBreak,expandedStates:t.expandedStates}}function $s(e){return zt(Number.NEGATIVE_INFINITY,e)}function Ms(e){return zt({type:"root"},e)}function Hs(e){return zt(-1,e)}function Ws(e,t){return pa(e[0],{...t,expandedStates:e})}function Gs(e){return js(e),{type:ft,parts:e}}function Us(e,t="",r={}){return Ue(e),t!==""&&Ue(t),{type:je,breakContents:e,flatContents:t,groupId:r.groupId}}function qs(e,t){return Ue(e),{type:dt,contents:e,groupId:t.groupId,negate:t.negate}}function Vs(e){return Ue(e),{type:ht,contents:e}}var Ks={type:pt},Su={type:qe},zs={type:Dt},ku={type:Be,hard:!0},Fa={type:Be,hard:!0,literal:!0},Ys={type:Be},Xs={type:Be,soft:!0},Js=[ku,Su],ga=[Fa,Su],Qs={type:Ot};function Ea(e,t){Ue(e),ha(t);let r=[];for(let u=0;u<t.length;u++)u!==0&&r.push(e),r.push(t[u]);return r}function Zs(e,t,r){Ue(e);let u=e;if(t>0){for(let n=0;n<Math.floor(t/r);++n)u=Rr(u);u=zt(t%r,u),u=zt(Number.NEGATIVE_INFINITY,u)}return u}function el(e,t){return Ue(t),e?{type:Ft,label:e,contents:t}:t}var tl=(e,t,r,u)=>{if(!(e&&t==null))return t.replaceAll?t.replaceAll(r,u):r.global?t.replace(r,u):t.split(r).join(u)},rl=tl;function ul(e){switch(e){case"cr":return"\r";case"crlf":return`\r
594
+ `;import{Command as $g}from"commander";import{execa as Mg}from"execa";import Hg from"lodash.template";import{z as ns}from"zod";import{intro as Wg,outro as Gg,text as Jn,select as pu,isCancel as ir,spinner as as}from"@clack/prompts";import gu from"path";import{z as Oe}from"zod";var ra="app/globals.css",ua="tailwind.config.js",fs="postcss.config.mjs",Fu=Oe.object({tailwind:Oe.object({config:Oe.string().optional(),css:Oe.string(),primaryColor:Oe.enum(["blue","purple","orange","sky"]),neutralColor:Oe.enum(["gray","slate"]),colorFormat:Oe.enum(["hex","rgb","hsl","oklch"]),prefix:Oe.string().default("").optional()})}).strict(),ps=Fu.extend({resolvedPaths:Oe.object({tailwindConfig:Oe.string().optional(),tailwindCss:Oe.string(),postcssConfig:Oe.string()})});async function kr(e,t){return ps.parse({...t,resolvedPaths:{tailwindConfig:t.tailwind.config?gu.resolve(e,t.tailwind.config):void 0,tailwindCss:gu.resolve(e,t.tailwind.css),postcssConfig:gu.resolve(e,fs)}})}import{detect as ds}from"@antfu/ni";async function na(e){let t=await ds({programmatic:!0,cwd:e});return t==="yarn@berry"?"yarn":t==="pnpm@6"?"pnpm":t==="bun"?"bun":t??"npm"}import aa from"path";import hs from"fast-glob";import gs,{pathExists as Fs}from"fs-extra";var ms=["**/node_modules/**",".next","public","dist","build"];async function ia(e){let t=await oa(e);if(!t)throw new Error("No CSS file found with Tailwind directives. Check your setup and follow the Tailwind installation instructions here: https://tailwindcss.com/docs/installation");let u={tailwind:{config:await Es(e)?"tailwind.config.ts":"tailwind.config.js",primaryColor:"blue",neutralColor:"gray",colorFormat:"oklch",css:t,prefix:""}};return await kr(e,u)}async function oa(e){let t=await hs.glob("**/*.css",{cwd:e,deep:3,ignore:ms});if(!t.length)return null;for(let r of t){let u=await gs.readFile(aa.resolve(e,r),"utf8");if(u.includes("@tailwind base")||u.includes('@import "tailwindcss"'))return r}return null}async function Es(e){return Fs(aa.resolve(e,"tsconfig.json"))}async function sa(e){if(!await oa(e))throw new Error(`No CSS file found with Tailwind directives. Create a CSS file with "@import 'tailwindcss';" or "@tailwind base;" to get started.`);return!0}var la={gray:{950:"#171717",900:"#1c1c1c",800:"#292929",700:"#333333",600:"#5c5c5c",500:"#7b7b7b",400:"#a3a3a3",300:"#d1d1d1",200:"#ebebeb",100:"#f5f5f5",50:"#f7f7f7",0:"#ffffff","alpha-24":"#a3a3a33d","alpha-16":"#a3a3a329","alpha-10":"#a3a3a31a"},slate:{950:"#0e121b",900:"#181b25",800:"#222530",700:"#2b303b",600:"#525866",500:"#717784",400:"#99a0ae",300:"#cacfd8",200:"#e1e4ea",100:"#f2f5f8",50:"#f5f7fa",0:"#ffffff","alpha-24":"#99a0ae3d","alpha-16":"#99a0ae29","alpha-10":"#99a0ae1a"},blue:{950:"#122368",900:"#182f8b",800:"#1f3bad",700:"#2547d0",600:"#3559e9",500:"#335cff",400:"#6895ff",300:"#97baff",200:"#c0d5ff",100:"#d5e2ff",50:"#ebf1ff","alpha-24":"#476cff3d","alpha-16":"#476cff29","alpha-10":"#476cff1a"},orange:{950:"#71330a",900:"#96440d",800:"#b75310",700:"#ce5e12",600:"#e16614",500:"#fa7319",400:"#ffa468",300:"#ffc197",200:"#ffd9c0",100:"#ffe6d5",50:"#fff3eb","alpha-24":"#ff91473d","alpha-16":"#ff914729","alpha-10":"#ff91471a"},red:{950:"#681219",900:"#8b1822",800:"#ad1f2b",700:"#d02533",600:"#e93544",500:"#fb3748",400:"#ff6875",300:"#ff97a0",200:"#ffc0c5",100:"#ffd5d8",50:"#ffebec","alpha-24":"#fb37483d","alpha-16":"#fb374829","alpha-10":"#fb37481a"},green:{950:"#0b4627",900:"#16643b",800:"#1a7544",700:"#178c4e",600:"#1daf61",500:"#1fc16b",400:"#3ee089",300:"#84ebb4",200:"#c2f5da",100:"#d0fbe9",50:"#e0faec","alpha-24":"#1fc16b3d","alpha-16":"#1fc16b29","alpha-10":"#1fc16b1a"},yellow:{950:"#624c18",900:"#86661d",800:"#a78025",700:"#c99a2c",600:"#e6a819",500:"#f6b51e",400:"#ffd268",300:"#ffe097",200:"#ffecc0",100:"#ffefcc",50:"#fff4d6","alpha-24":"#fbc64b3d","alpha-16":"#fbc64b29","alpha-10":"#fbc64b1a"},purple:{950:"#351a75",900:"#3d1d86",800:"#4c25a7",700:"#5b2cc9",600:"#693ee0",500:"#7d52f4",400:"#8c71f6",300:"#a897ff",200:"#cac0ff",100:"#dcd5ff",50:"#efebff","alpha-24":"#784def3d","alpha-16":"#784def29","alpha-10":"#784def1a"},sky:{950:"#124b68",900:"#18658b",800:"#1f7ead",700:"#2597d0",600:"#35ade9",500:"#47c2ff",400:"#68cdff",300:"#97dcff",200:"#c0eaff",100:"#d5f1ff",50:"#ebf8ff","alpha-24":"#47c2ff3d","alpha-16":"#47c2ff29","alpha-10":"#47c2ff1a"},pink:{950:"#68123d",900:"#8b1852",800:"#ad1f66",700:"#d0257a",600:"#e9358f",500:"#fb4ba3",400:"#ff68b3",300:"#ff97cb",200:"#ffc0df",100:"#ffd5ea",50:"#ffebf4","alpha-24":"#fb4ba33d","alpha-16":"#fb4ba329","alpha-10":"#fb4ba31a"},teal:{950:"#0b463e",900:"#16645a",800:"#1a7569",700:"#178c7d",600:"#1daf9c",500:"#22d3bb",400:"#3fdec9",300:"#84ebdd",200:"#c2f5ee",100:"#d0fbf5",50:"#e4fbf8","alpha-24":"#22d3bb3d","alpha-16":"#22d3bb29","alpha-10":"#22d3bb1a"},white:{"alpha-24":"#ffffff3d","alpha-16":"#ffffff29","alpha-10":"#ffffff1a"},black:{"alpha-24":"#0000003d","alpha-16":"#00000029","alpha-10":"#0000001a"},static:{black:"#000",white:"#fff"},social:{"apple-light":"#000","apple-dark":"#fff","twitter-light":"#010101","twitter-dark":"#fff","github-light":"#24292f","github-dark":"#fff","notion-light":"#1e2226","notion-dark":"#fff","tidal-light":"#000","tidal-dark":"#fff","amazon-light":"#353e47","amazon-dark":"#fff","zendesk-light":"#16140d","zendesk-dark":"#fff"},overlay:{"gray-light":"#3333333d","gray-dark":"#3333338f","slate-light":"#2b303b3d","slate-dark":"#2b303b8f"}},ca={gray:{950:"var(--gray-950)",900:"var(--gray-900)",800:"var(--gray-800)",700:"var(--gray-700)",600:"var(--gray-600)",500:"var(--gray-500)",400:"var(--gray-400)",300:"var(--gray-300)",200:"var(--gray-200)",100:"var(--gray-100)",50:"var(--gray-50)",0:"var(--gray-0)","alpha-24":"var(--gray-alpha-24)","alpha-16":"var(--gray-alpha-16)","alpha-10":"var(--gray-alpha-10)"},slate:{950:"var(--slate-950)",900:"var(--slate-900)",800:"var(--slate-800)",700:"var(--slate-700)",600:"var(--slate-600)",500:"var(--slate-500)",400:"var(--slate-400)",300:"var(--slate-300)",200:"var(--slate-200)",100:"var(--slate-100)",50:"var(--slate-50)",0:"var(--slate-0)","alpha-24":"var(--slate-alpha-24)","alpha-16":"var(--slate-alpha-16)","alpha-10":"var(--slate-alpha-10)"},neutral:{950:"var(--neutral-950)",900:"var(--neutral-900)",800:"var(--neutral-800)",700:"var(--neutral-700)",600:"var(--neutral-600)",500:"var(--neutral-500)",400:"var(--neutral-400)",300:"var(--neutral-300)",200:"var(--neutral-200)",100:"var(--neutral-100)",50:"var(--neutral-50)",0:"var(--neutral-0)","alpha-24":"var(--neutral-alpha-24)","alpha-16":"var(--neutral-alpha-16)","alpha-10":"var(--neutral-alpha-10)"},blue:{950:"var(--blue-950)",900:"var(--blue-900)",800:"var(--blue-800)",700:"var(--blue-700)",600:"var(--blue-600)",500:"var(--blue-500)",400:"var(--blue-400)",300:"var(--blue-300)",200:"var(--blue-200)",100:"var(--blue-100)",50:"var(--blue-50)","alpha-24":"var(--blue-alpha-24)","alpha-16":"var(--blue-alpha-16)","alpha-10":"var(--blue-alpha-10)"},orange:{950:"var(--orange-950)",900:"var(--orange-900)",800:"var(--orange-800)",700:"var(--orange-700)",600:"var(--orange-600)",500:"var(--orange-500)",400:"var(--orange-400)",300:"var(--orange-300)",200:"var(--orange-200)",100:"var(--orange-100)",50:"var(--orange-50)","alpha-24":"var(--orange-alpha-24)","alpha-16":"var(--orange-alpha-16)","alpha-10":"var(--orange-alpha-10)"},red:{950:"var(--red-950)",900:"var(--red-900)",800:"var(--red-800)",700:"var(--red-700)",600:"var(--red-600)",500:"var(--red-500)",400:"var(--red-400)",300:"var(--red-300)",200:"var(--red-200)",100:"var(--red-100)",50:"var(--red-50)","alpha-24":"var(--red-alpha-24)","alpha-16":"var(--red-alpha-16)","alpha-10":"var(--red-alpha-10)"},green:{950:"var(--green-950)",900:"var(--green-900)",800:"var(--green-800)",700:"var(--green-700)",600:"var(--green-600)",500:"var(--green-500)",400:"var(--green-400)",300:"var(--green-300)",200:"var(--green-200)",100:"var(--green-100)",50:"var(--green-50)","alpha-24":"var(--green-alpha-24)","alpha-16":"var(--green-alpha-16)","alpha-10":"var(--green-alpha-10)"},yellow:{950:"var(--yellow-950)",900:"var(--yellow-900)",800:"var(--yellow-800)",700:"var(--yellow-700)",600:"var(--yellow-600)",500:"var(--yellow-500)",400:"var(--yellow-400)",300:"var(--yellow-300)",200:"var(--yellow-200)",100:"var(--yellow-100)",50:"var(--yellow-50)","alpha-24":"var(--yellow-alpha-24)","alpha-16":"var(--yellow-alpha-16)","alpha-10":"var(--yellow-alpha-10)"},purple:{950:"var(--purple-950)",900:"var(--purple-900)",800:"var(--purple-800)",700:"var(--purple-700)",600:"var(--purple-600)",500:"var(--purple-500)",400:"var(--purple-400)",300:"var(--purple-300)",200:"var(--purple-200)",100:"var(--purple-100)",50:"var(--purple-50)","alpha-24":"var(--purple-alpha-24)","alpha-16":"var(--purple-alpha-16)","alpha-10":"var(--purple-alpha-10)"},sky:{950:"var(--sky-950)",900:"var(--sky-900)",800:"var(--sky-800)",700:"var(--sky-700)",600:"var(--sky-600)",500:"var(--sky-500)",400:"var(--sky-400)",300:"var(--sky-300)",200:"var(--sky-200)",100:"var(--sky-100)",50:"var(--sky-50)","alpha-24":"var(--sky-alpha-24)","alpha-16":"var(--sky-alpha-16)","alpha-10":"var(--sky-alpha-10)"},pink:{950:"var(--pink-950)",900:"var(--pink-900)",800:"var(--pink-800)",700:"var(--pink-700)",600:"var(--pink-600)",500:"var(--pink-500)",400:"var(--pink-400)",300:"var(--pink-300)",200:"var(--pink-200)",100:"var(--pink-100)",50:"var(--pink-50)","alpha-24":"var(--pink-alpha-24)","alpha-16":"var(--pink-alpha-16)","alpha-10":"var(--pink-alpha-10)"},teal:{950:"var(--teal-950)",900:"var(--teal-900)",800:"var(--teal-800)",700:"var(--teal-700)",600:"var(--teal-600)",500:"var(--teal-500)",400:"var(--teal-400)",300:"var(--teal-300)",200:"var(--teal-200)",100:"var(--teal-100)",50:"var(--teal-50)","alpha-24":"var(--teal-alpha-24)","alpha-16":"var(--teal-alpha-16)","alpha-10":"var(--teal-alpha-10)"},white:{DEFAULT:"#fff","alpha-24":"var(--white-alpha-24)","alpha-16":"var(--white-alpha-16)","alpha-10":"var(--white-alpha-10)"},black:{DEFAULT:"#000","alpha-24":"var(--black-alpha-24)","alpha-16":"var(--black-alpha-16)","alpha-10":"var(--black-alpha-10)"},primary:{dark:"var(--primary-dark)",darker:"var(--primary-darker)",base:"var(--primary-base)","alpha-24":"var(--primary-alpha-24)","alpha-16":"var(--primary-alpha-16)","alpha-10":"var(--primary-alpha-10)"},static:{black:"var(--static-black)",white:"var(--static-white)"},bg:{"strong-950":"var(--bg-strong-950)","surface-800":"var(--bg-surface-800)","sub-300":"var(--bg-sub-300)","soft-200":"var(--bg-soft-200)","weak-50":"var(--bg-weak-50)","white-0":"var(--bg-white-0)"},text:{"strong-950":"var(--text-strong-950)","sub-600":"var(--text-sub-600)","soft-400":"var(--text-soft-400)","disabled-300":"var(--text-disabled-300)","white-0":"var(--text-white-0)"},stroke:{"strong-950":"var(--stroke-strong-950)","sub-300":"var(--stroke-sub-300)","soft-200":"var(--stroke-soft-200)","white-0":"var(--stroke-white-0)"},faded:{dark:"var(--faded-dark)",base:"var(--faded-base)",light:"var(--faded-light)",lighter:"var(--faded-lighter)"},information:{dark:"var(--information-dark)",base:"var(--information-base)",light:"var(--information-light)",lighter:"var(--information-lighter)"},warning:{dark:"var(--warning-dark)",base:"var(--warning-base)",light:"var(--warning-light)",lighter:"var(--warning-lighter)"},error:{dark:"var(--error-dark)",base:"var(--error-base)",light:"var(--error-light)",lighter:"var(--error-lighter)"},success:{dark:"var(--success-dark)",base:"var(--success-base)",light:"var(--success-light)",lighter:"var(--success-lighter)"},away:{dark:"var(--away-dark)",base:"var(--away-base)",light:"var(--away-light)",lighter:"var(--away-lighter)"},feature:{dark:"var(--feature-dark)",base:"var(--feature-base)",light:"var(--feature-light)",lighter:"var(--feature-lighter)"},verified:{dark:"var(--verified-dark)",base:"var(--verified-base)",light:"var(--verified-light)",lighter:"var(--verified-lighter)"},highlighted:{dark:"var(--highlighted-dark)",base:"var(--highlighted-base)",light:"var(--highlighted-light)",lighter:"var(--highlighted-lighter)"},stable:{dark:"var(--stable-dark)",base:"var(--stable-base)",light:"var(--stable-light)",lighter:"var(--stable-lighter)"},social:{apple:"var(--social-apple)",twitter:"var(--social-twitter)",github:"var(--social-github)",notion:"var(--social-notion)",tidal:"var(--social-tidal)",amazon:"var(--social-amazon)",zendesk:"var(--social-zendesk)"},overlay:{DEFAULT:"var(--overlay)"},transparent:"transparent",current:"currentColor"},l1=Object.fromEntries(Object.entries(ca).map(([e,t])=>[e,typeof t=="object"?Object.fromEntries(Object.entries(t).map(([r,u])=>[r,u.startsWith("var(")?`rgb(${u})`:u])):t])),c1=Object.fromEntries(Object.entries(ca).map(([e,t])=>[e,typeof t=="object"?Object.fromEntries(Object.entries(t).map(([r,u])=>[r,u.startsWith("var(")?`hsl(${u})`:u])):t])),mu={10:".625rem",20:"1.25rem"},Eu={"title-h1":["3.5rem",{lineHeight:"4rem",letterSpacing:"-0.01em",fontWeight:"500"}],"title-h2":["3rem",{lineHeight:"3.5rem",letterSpacing:"-0.01em",fontWeight:"500"}],"title-h3":["2.5rem",{lineHeight:"3rem",letterSpacing:"-0.01em",fontWeight:"500"}],"title-h4":["2rem",{lineHeight:"2.5rem",letterSpacing:"-0.005em",fontWeight:"500"}],"title-h5":["1.5rem",{lineHeight:"2rem",letterSpacing:"0em",fontWeight:"500"}],"title-h6":["1.25rem",{lineHeight:"1.75rem",letterSpacing:"0em",fontWeight:"500"}],"label-xl":["1.5rem",{lineHeight:"2rem",letterSpacing:"-0.015em",fontWeight:"500"}],"label-lg":["1.125rem",{lineHeight:"1.5rem",letterSpacing:"-0.015em",fontWeight:"500"}],"label-md":["1rem",{lineHeight:"1.5rem",letterSpacing:"-0.011em",fontWeight:"500"}],"label-sm":[".875rem",{lineHeight:"1.25rem",letterSpacing:"-0.006em",fontWeight:"500"}],"label-xs":[".75rem",{lineHeight:"1rem",letterSpacing:"0em",fontWeight:"500"}],"label-2xs":[".6875rem",{lineHeight:"1rem",letterSpacing:"0em",fontWeight:"500"}],"paragraph-xl":["1.5rem",{lineHeight:"2rem",letterSpacing:"-0.015em",fontWeight:"400"}],"paragraph-lg":["1.125rem",{lineHeight:"1.5rem",letterSpacing:"-0.015em",fontWeight:"400"}],"paragraph-md":["1rem",{lineHeight:"1.5rem",letterSpacing:"-0.011em",fontWeight:"400"}],"paragraph-sm":[".875rem",{lineHeight:"1.25rem",letterSpacing:"-0.006em",fontWeight:"400"}],"paragraph-xs":[".75rem",{lineHeight:"1rem",letterSpacing:"0em",fontWeight:"400"}],"subheading-md":["1rem",{lineHeight:"1.5rem",letterSpacing:"0.06em",fontWeight:"500"}],"subheading-sm":[".875rem",{lineHeight:"1.25rem",letterSpacing:"0.06em",fontWeight:"500"}],"subheading-xs":[".75rem",{lineHeight:"1rem",letterSpacing:"0.04em",fontWeight:"500"}],"subheading-2xs":[".6875rem",{lineHeight:".75rem",letterSpacing:"0.02em",fontWeight:"500"}],"doc-label":["1.125rem",{lineHeight:"2rem",letterSpacing:"-0.015em",fontWeight:"500"}],"doc-paragraph":["1.125rem",{lineHeight:"2rem",letterSpacing:"-0.015em",fontWeight:"400"}]},Cu={"regular-xs":"0 1px 2px 0 #0a0d1408","regular-sm":"0 2px 4px #1b1c1d0a","regular-md":"0 16px 32px -12px #0e121b1a","button-primary-focus":["0 0 0 2px var(--color-bg-white-0)","0 0 0 4px var(--color-primary-alpha-10)"],"button-important-focus":["0 0 0 2px var(--color-bg-white-0)","0 0 0 4px var(--color-neutral-alpha-16)"],"button-error-focus":["0 0 0 2px var(--color-bg-white-0)","0 0 0 4px var(--color-red-alpha-10)"],"fancy-buttons-neutral":["0 1px 2px 0 #1b1c1d7a","0 0 0 1px #242628"],"fancy-buttons-primary":["0 1px 2px 0 #0e121b3d","0 0 0 1px var(--color-primary-base)"],"fancy-buttons-error":["0 1px 2px 0 #0e121b3d","0 0 0 1px var(--color-error-base)"],"fancy-buttons-stroke":["0 1px 3px 0 #0e121b1f","0 0 0 1px var(--color-stroke-soft-200)"],"toggle-switch":["0 6px 10px 0 #0e121b0f","0 2px 4px 0 #0e121b08"],"switch-thumb":["0 4px 8px 0 #1b1c1d0f","0 2px 4px 0 #0e121b14"],tooltip:["0 12px 24px 0 #0e121b0f","0 1px 2px 0 #0e121b08"],"custom-xs":["0 0 0 1px rgba(51, 51, 51, 0.04)","0 4px 8px -2px rgba(51, 51, 51, 0.06)","0 2px 4px rgba(51, 51, 51, 0.04)","0 1px 2px rgba(51, 51, 51, 0.04)","inset 0 -1px 1px -0.5px rgba(51, 51, 51, 0.06)"],"custom-sm":["0 0 0 1px rgba(51, 51, 51, 0.04)","0 16px 8px -8px rgba(51, 51, 51, 0.01)","0 12px 6px -6px rgba(51, 51, 51, 0.02)","0 5px 5px -2.5px rgba(51, 51, 51, 0.08)","0 1px 3px -1.5px rgba(51, 51, 51, 0.16)","inset 0 -0.5px 0.5px rgba(51, 51, 51, 0.08)"],"custom-md":["0 0 0 1px rgba(51, 51, 51, 0.04)","0 1px 1px 0.5px rgba(51, 51, 51, 0.04)","0 3px 3px -1.5px rgba(51, 51, 51, 0.02)","0 6px 6px -3px rgba(51, 51, 51, 0.04)","0 12px 12px -6px rgba(51, 51, 51, 0.04)","0 24px 24px -12px rgba(51, 51, 51, 0.04)","0 48px 48px -24px rgba(51, 51, 51, 0.04)","inset 0 -1px 1px -0.5px rgba(51, 51, 51, 0.06)"],"custom-lg":["0 0 0 1px rgba(51, 51, 51, 0.04)","0 1px 1px 0.5px rgba(51, 51, 51, 0.04)","0 3px 3px -1.5px rgba(51, 51, 51, 0.02)","0 6px 6px -3px rgba(51, 51, 51, 0.04)","0 12px 12px -6px rgba(51, 51, 51, 0.04)","0 24px 24px -12px rgba(51, 51, 51, 0.04)","0 48px 48px -24px rgba(51, 51, 51, 0.04)","0 96px 96px -32px rgba(51, 51, 51, 0.06)","inset 0 -1px 1px -0.5px rgba(51, 51, 51, 0.06)"]},vu={"complex-12":["0 80px 80px -40px rgba(23, 23, 23, 0.04)","0 48px 48px -24px rgba(23, 23, 23, 0.04)"],complex:["0 20px 20px -10px rgba(23, 23, 23, 0.04)","0 10px 10px -5px rgba(23, 23, 23, 0.04)","0 6px 6px -3px rgba(23, 23, 23, 0.04)","0 3px 3px -1.5px rgba(23, 23, 23, 0.04)","0 1px 1px -0.5px rgba(23, 23, 23, 0.04)","0 0 0 1px rgba(23, 23, 23, 0.08)","0 -1px 1px -0.5px rgba(23, 23, 23, 0.06) inset"],"complex-2":["0 10px 10px -5px rgba(23, 23, 23, 0.02)","0 6px 6px -3px rgba(23, 23, 23, 0.04)","0 3px 3px -1.5px rgba(23, 23, 23, 0.04)","0 1px 1px -0.5px rgba(23, 23, 23, 0.04)","0 0 0 1px rgba(23, 23, 23, 0.02)"],"complex-4":["0 3px 3px -1.5px rgba(23, 23, 23, 0.04)","0 1px 1px -0.5px rgba(23, 23, 23, 0.04)","0 0 0 1px rgba(23, 23, 23, 0.02)"],"complex-5":["0 0 6px 0 rgba(255, 255, 255, 0.24) inset","0 40px 40px -20px rgba(23, 23, 23, 0.06)","0 10px 10px -5px rgba(23, 23, 23, 0.06)","0 6px 6px -3px rgba(23, 23, 23, 0.04)","0 3px 3px -1.5px rgba(23, 23, 23, 0.04)","0 1px 1px -0.5px rgba(23, 23, 23, 0.04)"],"complex-6":["0 40px 40px -20px rgba(23, 23, 23, 0.06)","0 10px 10px -5px rgba(23, 23, 23, 0.06)","0 6px 6px -3px rgba(23, 23, 23, 0.04)","0 3px 3px -1.5px rgba(23, 23, 23, 0.04)","0 1px 1px -0.5px rgba(23, 23, 23, 0.04)","0 0 6px 0 rgba(255, 255, 255, 0.24) inset"],"complex-7":["0 1px 2px 0 rgba(14, 18, 27, 0.24)","0 0 0 1px #335cff"],"complex-8":["0 20px 20px -10px rgba(23, 23, 23, 0)","0 10px 10px -5px rgba(23, 23, 23, 0)","0 6px 6px -3px rgba(23, 23, 23, 0)","0 3px 3px -1.5px rgba(23, 23, 23, 0)","0 1px 1px -0.5px rgba(23, 23, 23, 0)","0 0 0 1px rgba(23, 23, 23, 0.08)","0 -1px 1px -0.5px rgba(23, 23, 23, 0.06) inset"],"complex-9":["0 80px 40px -20px rgba(23, 23, 23, 0.06)","0 40px 40px -20px rgba(23, 23, 23, 0.06)","0 10px 10px -5px rgba(23, 23, 23, 0.06)","0 6px 6px -3px rgba(23, 23, 23, 0.04)","0 3px 3px -1.5px rgba(23, 23, 23, 0.04)","0 1px 1px -0.5px rgba(23, 23, 23, 0.04)","0 0 6px 0 rgba(255, 255, 255, 0.04) inset"],"complex-10":["0 3px 3px -1.5px rgba(23, 23, 23, 0.04)","0 1px 1px -0.5px rgba(23, 23, 23, 0.04)"],"complex-11":["0 -1px 1px -0.5px rgba(23, 23, 23, 0.06) inset","0 20px 20px -10px rgba(23, 23, 23, 0.04)","0 10px 10px -5px rgba(23, 23, 23, 0.04)","0 6px 6px -3px rgba(23, 23, 23, 0.04)","0 3px 3px -1.5px rgba(23, 23, 23, 0.04)","0 1px 1px -0.5px rgba(23, 23, 23, 0.04)","0 0 0 1px rgba(23, 23, 23, 0.04)"],"custom-input":["0 3px 3px -1.5px rgba(23, 23, 23, 0.04)","0 1px 1px -0.5px rgba(23, 23, 23, 0.04)","0 0 0 1px rgba(23, 23, 23, 0.08)"],"custom-input-2":["0 3px 3px -1.5px rgba(23, 23, 23, 0.04)","0 1px 1px -0.5px rgba(23, 23, 23, 0.04)","0 0 0 1px var(--color-bg-soft-200)"],"custom-input-4":["0 3px 3px -1.5px rgba(23, 23, 23, 0.06)","0 1px 1px -0.5px rgba(23, 23, 23, 0.06)","0 0 0 1px rgba(23, 23, 23, 0.02)"],"custom-input-active":["0 6px 6px -3px rgba(23, 23, 23, 0.02)","0 3px 3px -1.5px rgba(23, 23, 23, 0.04)","0 1px 1px -0.5px rgba(23, 23, 23, 0.04)","0 0 0 1.4px #335cff"],"gray-shadow":"0 0 0 1px rgba(23, 23, 23, 0.08)"},Au={"complex-12":["0 80px 80px -40px rgba(23, 23, 23, 0)","0 48px 48px -24px rgba(23, 23, 23, 0)"],complex:["0 20px 20px -10px rgba(23, 23, 23, 0)","0 10px 10px -5px rgba(23, 23, 23, 0)","0 6px 6px -3px rgba(23, 23, 23, 0)","0 3px 3px -1.5px rgba(23, 23, 23, 0)","0 1px 1px -0.5px rgba(23, 23, 23, 0)","0 0 0 1px #262626","0 -1px 1px -0.5px rgba(23, 23, 23, 0.04) inset"],"complex-2":["0 10px 10px -5px rgba(23, 23, 23, 0)","0 6px 6px -3px rgba(23, 23, 23, 0)","0 3px 3px -1.5px rgba(23, 23, 23, 0)","0 1px 1px -0.5px rgba(23, 23, 23, 0)","0 0 0 1px rgba(23, 23, 23, 0)"],"complex-4":["0 3px 3px -1.5px rgba(23, 23, 23, 0.04)","0 1px 1px -0.5px rgba(23, 23, 23, 0.04)","0 0 0 1px rgba(23, 23, 23, 0.02)"],"complex-5":["0 0 6px 0 rgba(255, 255, 255, 0.24) inset","0 40px 40px -20px rgba(23, 23, 23, 0.04)","0 10px 10px -5px rgba(23, 23, 23, 0.04)","0 6px 6px -3px rgba(23, 23, 23, 0)","0 3px 3px -1.5px rgba(23, 23, 23, 0)","0 1px 1px -0.5px rgba(23, 23, 23, 0)"],"complex-6":["0 40px 40px -20px rgba(23, 23, 23, 0.04)","0 10px 10px -5px rgba(23, 23, 23, 0.04)","0 6px 6px -3px rgba(23, 23, 23, 0)","0 3px 3px -1.5px rgba(23, 23, 23, 0)","0 1px 1px -0.5px rgba(23, 23, 23, 0)","0 0 6px 0 rgba(255, 255, 255, 0.24) inset"],"complex-7":["0 1px 2px 0 rgba(14, 18, 27, 0.24)","0 0 0 1px #4d82ff"],"complex-8":["0 20px 20px -10px rgba(23, 23, 23, 0.04)","0 10px 10px -5px rgba(23, 23, 23, 0.04)","0 6px 6px -3px rgba(23, 23, 23, 0.04)","0 3px 3px -1.5px rgba(23, 23, 23, 0.04)","0 1px 1px -0.5px rgba(23, 23, 23, 0.04)","0 0 0 1px rgba(23, 23, 23, 0.08)","0 -1px 1px -0.5px rgba(23, 23, 23, 0.06) inset"],"complex-9":["0 80px 40px -20px rgba(23, 23, 23, 0.04)","0 40px 40px -20px rgba(23, 23, 23, 0.04)","0 10px 10px -5px rgba(23, 23, 23, 0.04)","0 6px 6px -3px rgba(23, 23, 23, 0)","0 3px 3px -1.5px rgba(23, 23, 23, 0)","0 1px 1px -0.5px rgba(23, 23, 23, 0)","0 0 6px 0 rgba(255, 255, 255, 0.04) inset"],"complex-10":["0 3px 3px -1.5px rgba(23, 23, 23, 0)","0 1px 1px -0.5px rgba(23, 23, 23, 0)"],"complex-11":["0 -1px 1px -0.5px rgba(23, 23, 23, 0.04) inset","0 20px 20px -10px rgba(23, 23, 23, 0)","0 10px 10px -5px rgba(23, 23, 23, 0)","0 6px 6px -3px rgba(23, 23, 23, 0)","0 3px 3px -1.5px rgba(23, 23, 23, 0)","0 1px 1px -0.5px rgba(23, 23, 23, 0)","0 0 0 1px rgba(23, 23, 23, 0)"],"custom-input":["0 3px 3px -1.5px rgba(23, 23, 23, 0)","0 1px 1px -0.5px rgba(23, 23, 23, 0)","0 0 0 1px #262626"],"custom-input-2":["0 3px 3px -1.5px rgba(23, 23, 23, 0)","0 1px 1px -0.5px rgba(23, 23, 23, 0)","0 0 0 1px #262626"],"custom-input-4":["0 3px 3px -1.5px rgba(23, 23, 23, 0.04)","0 1px 1px -0.5px rgba(23, 23, 23, 0.04)","0 0 0 1px rgba(23, 23, 23, 0)"],"custom-input-active":["0 6px 6px -3px rgba(23, 23, 23, 0.02)","0 3px 3px -1.5px rgba(23, 23, 23, 0.04)","0 1px 1px -0.5px rgba(23, 23, 23, 0.04)","0 0 0 1.4px #335cff"],"gray-shadow":"0 0 0 1px #262626"},yu={"accordion-down":"accordion-down 0.2s ease-out","accordion-up":"accordion-up 0.2s ease-out"};import{createRequire as gl}from"module";import{fileURLToPath as Fl}from"url";import{dirname as ml}from"path";import vt from"path";import*as Vi from"path";import*as yn from"url";import zi from"path";import*as Yi from"path";import*as iu from"fs/promises";import*as Xi from"path";import N0 from"process";import*as nr from"path";import W0 from"process";import _n from"path";import{pathToFileURL as rD}from"url";import LD from"fs/promises";import zD from"path";import{pathToFileURL as YD}from"url";import oo from"assert";import{statSync as so,realpathSync as XD}from"fs";import Ht from"process";import{URL as de,fileURLToPath as se,pathToFileURL as kn}from"url";import lo from"path";import{builtinModules as Rn}from"module";import{fileURLToPath as JD}from"url";import QD from"fs";import ZD from"path";import{fileURLToPath as un}from"url";import ef from"v8";import Wt from"assert";import{format as tf,inspect as nn}from"util";import{createRequire as Xf}from"module";import si from"assert";import{fileURLToPath as Ed}from"url";import Gd from"assert";import Ei from"path";import{pathToFileURL as Ci}from"url";import Nh from"path";import Yr from"path";import qh from"url";var Pu={};cs(Pu,{builders:()=>ya,default:()=>hl,printer:()=>_a,utils:()=>ba});var Cs=Object.defineProperty,vs=(e,t)=>{for(var r in t)Cs(e,r,{get:t[r],enumerable:!0})},da={};vs(da,{builders:()=>ya,printer:()=>_a,utils:()=>ba});var xt="string",ze="array",Pt="cursor",lt="indent",ct="align",Dt="trim",Te="group",ft="fill",je="if-break",pt="indent-if-break",dt="line-suffix",ht="line-suffix-boundary",Be="line",gt="label",qe="break-parent",ha=new Set([Pt,lt,ct,Dt,Te,ft,je,pt,dt,ht,Be,gt,qe]),As=(e,t,r)=>{if(!(e&&t==null))return Array.isArray(t)||typeof t=="string"?t[r<0?t.length+r:r]:t.at(r)},st=As;function ys(e){let t=e.length;for(;t>0&&(e[t-1]==="\r"||e[t-1]===`
595
+ `);)t--;return t<e.length?e.slice(0,t):e}function _s(e){if(typeof e=="string")return xt;if(Array.isArray(e))return ze;if(!e)return;let{type:t}=e;if(ha.has(t))return t}var Ot=_s,bs=e=>new Intl.ListFormat("en-US",{type:"disjunction"}).format(e);function Bs(e){let t=e===null?"null":typeof e;if(t!=="string"&&t!=="object")return`Unexpected doc '${t}',
596
+ Expected it to be 'string' or 'object'.`;if(Ot(e))throw new Error("doc is valid.");let r=Object.prototype.toString.call(e);if(r!=="[object Object]")return`Unexpected doc '${r}'.`;let u=bs([...ha].map(n=>`'${n}'`));return`Unexpected doc.type '${e.type}'.
597
+ Expected it to be ${u}.`}var ws=class extends Error{name="InvalidDocError";constructor(e){super(Bs(e)),this.doc=e}},Kt=ws,Da={};function Ss(e,t,r,u){let n=[e];for(;n.length>0;){let a=n.pop();if(a===Da){r(n.pop());continue}r&&n.push(a,Da);let i=Ot(a);if(!i)throw new Kt(a);if(t?.(a)!==!1)switch(i){case ze:case ft:{let o=i===ze?a:a.parts;for(let s=o.length,c=s-1;c>=0;--c)n.push(o[c]);break}case je:n.push(a.flatContents,a.breakContents);break;case Te:if(u&&a.expandedStates)for(let o=a.expandedStates.length,s=o-1;s>=0;--s)n.push(a.expandedStates[s]);else n.push(a.contents);break;case ct:case lt:case pt:case gt:case dt:n.push(a.contents);break;case xt:case Pt:case Dt:case ht:case Be:case qe:break;default:throw new Kt(a)}}}var wu=Ss;function Pr(e,t){if(typeof e=="string")return t(e);let r=new Map;return u(e);function u(a){if(r.has(a))return r.get(a);let i=n(a);return r.set(a,i),i}function n(a){switch(Ot(a)){case ze:return t(a.map(u));case ft:return t({...a,parts:a.parts.map(u)});case je:return t({...a,breakContents:u(a.breakContents),flatContents:u(a.flatContents)});case Te:{let{expandedStates:i,contents:o}=a;return i?(i=i.map(u),o=i[0]):o=u(o),t({...a,contents:o,expandedStates:i})}case ct:case lt:case pt:case gt:case dt:return t({...a,contents:u(a.contents)});case xt:case Pt:case Dt:case ht:case Be:case qe:return t(a);default:throw new Kt(a)}}}function Su(e,t,r){let u=r,n=!1;function a(i){if(n)return!1;let o=t(i);o!==void 0&&(n=!0,u=o)}return wu(e,a),u}function ks(e){if(e.type===Te&&e.break||e.type===Be&&e.hard||e.type===qe)return!0}function Rs(e){return Su(e,ks,!1)}function fa(e){if(e.length>0){let t=st(!1,e,-1);!t.expandedStates&&!t.break&&(t.break="propagated")}return null}function xs(e){let t=new Set,r=[];function u(a){if(a.type===qe&&fa(r),a.type===Te){if(r.push(a),t.has(a))return!1;t.add(a)}}function n(a){a.type===Te&&r.pop().break&&fa(r)}wu(e,u,n,!0)}function Ps(e){return e.type===Be&&!e.hard?e.soft?"":" ":e.type===je?e.flatContents:e}function Os(e){return Pr(e,Ps)}function pa(e){for(e=[...e];e.length>=2&&st(!1,e,-2).type===Be&&st(!1,e,-1).type===qe;)e.length-=2;if(e.length>0){let t=sr(st(!1,e,-1));e[e.length-1]=t}return e}function sr(e){switch(Ot(e)){case lt:case pt:case Te:case dt:case gt:{let t=sr(e.contents);return{...e,contents:t}}case je:return{...e,breakContents:sr(e.breakContents),flatContents:sr(e.flatContents)};case ft:return{...e,parts:pa(e.parts)};case ze:return pa(e);case xt:return ys(e);case ct:case Pt:case Dt:case ht:case Be:case qe:break;default:throw new Kt(e)}return e}function Ts(e){return sr(Ns(e))}function Is(e){switch(Ot(e)){case ft:if(e.parts.every(t=>t===""))return"";break;case Te:if(!e.contents&&!e.id&&!e.break&&!e.expandedStates)return"";if(e.contents.type===Te&&e.contents.id===e.id&&e.contents.break===e.break&&e.contents.expandedStates===e.expandedStates)return e.contents;break;case ct:case lt:case pt:case dt:if(!e.contents)return"";break;case je:if(!e.flatContents&&!e.breakContents)return"";break;case ze:{let t=[];for(let r of e){if(!r)continue;let[u,...n]=Array.isArray(r)?r:[r];typeof u=="string"&&typeof st(!1,t,-1)=="string"?t[t.length-1]+=u:t.push(u),t.push(...n)}return t.length===0?"":t.length===1?t[0]:t}case xt:case Pt:case Dt:case ht:case Be:case gt:case qe:break;default:throw new Kt(e)}return e}function Ns(e){return Pr(e,t=>Is(t))}function Ls(e,t=Ea){return Pr(e,r=>typeof r=="string"?Ca(t,r.split(`
598
+ `)):r)}function js(e){if(e.type===Be)return!0}function $s(e){return Su(e,js,!1)}var ku=()=>{},Ue=ku,ga=ku,Ms=ku;function xr(e){return Ue(e),{type:lt,contents:e}}function zt(e,t){return Ue(t),{type:ct,contents:t,n:e}}function Fa(e,t={}){return Ue(e),ga(t.expandedStates,!0),{type:Te,id:t.id,contents:e,break:!!t.shouldBreak,expandedStates:t.expandedStates}}function Hs(e){return zt(Number.NEGATIVE_INFINITY,e)}function Ws(e){return zt({type:"root"},e)}function Gs(e){return zt(-1,e)}function Us(e,t){return Fa(e[0],{...t,expandedStates:e})}function qs(e){return Ms(e),{type:ft,parts:e}}function Vs(e,t="",r={}){return Ue(e),t!==""&&Ue(t),{type:je,breakContents:e,flatContents:t,groupId:r.groupId}}function Ks(e,t){return Ue(e),{type:pt,contents:e,groupId:t.groupId,negate:t.negate}}function zs(e){return Ue(e),{type:dt,contents:e}}var Ys={type:ht},Ru={type:qe},Xs={type:Dt},xu={type:Be,hard:!0},ma={type:Be,hard:!0,literal:!0},Js={type:Be},Qs={type:Be,soft:!0},Zs=[xu,Ru],Ea=[ma,Ru],el={type:Pt};function Ca(e,t){Ue(e),ga(t);let r=[];for(let u=0;u<t.length;u++)u!==0&&r.push(e),r.push(t[u]);return r}function tl(e,t,r){Ue(e);let u=e;if(t>0){for(let n=0;n<Math.floor(t/r);++n)u=xr(u);u=zt(t%r,u),u=zt(Number.NEGATIVE_INFINITY,u)}return u}function rl(e,t){return Ue(t),e?{type:gt,label:e,contents:t}:t}var ul=(e,t,r,u)=>{if(!(e&&t==null))return t.replaceAll?t.replaceAll(r,u):r.global?t.replace(r,u):t.split(r).join(u)},nl=ul;function al(e){switch(e){case"cr":return"\r";case"crlf":return`\r
584
599
  `;default:return`
585
- `}}var nl=()=>/[#*0-9]\uFE0F?\u20E3|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26AA\u26B0\u26B1\u26BD\u26BE\u26C4\u26C8\u26CF\u26D1\u26E9\u26F0-\u26F5\u26F7\u26F8\u26FA\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B55\u3030\u303D\u3297\u3299]\uFE0F?|[\u261D\u270C\u270D](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\u270A\u270B](?:\uD83C[\uDFFB-\uDFFF])?|[\u23E9-\u23EC\u23F0\u23F3\u25FD\u2693\u26A1\u26AB\u26C5\u26CE\u26D4\u26EA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2795-\u2797\u27B0\u27BF\u2B50]|\u26D3\uFE0F?(?:\u200D\uD83D\uDCA5)?|\u26F9(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\u2764\uFE0F?(?:\u200D(?:\uD83D\uDD25|\uD83E\uDE79))?|\uD83C(?:[\uDC04\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]\uFE0F?|[\uDF85\uDFC2\uDFC7](?:\uD83C[\uDFFB-\uDFFF])?|[\uDFC4\uDFCA](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDFCB\uDFCC](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF43\uDF45-\uDF4A\uDF4C-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uDDE6\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF]|\uDDE7\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF]|\uDDE8\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF7\uDDFA-\uDDFF]|\uDDE9\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF]|\uDDEA\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA]|\uDDEB\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7]|\uDDEC\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE]|\uDDED\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA]|\uDDEE\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9]|\uDDEF\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5]|\uDDF0\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF]|\uDDF1\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE]|\uDDF2\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF]|\uDDF3\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF]|\uDDF4\uD83C\uDDF2|\uDDF5\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE]|\uDDF6\uD83C\uDDE6|\uDDF7\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC]|\uDDF8\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF]|\uDDF9\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF]|\uDDFA\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF]|\uDDFB\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA]|\uDDFC\uD83C[\uDDEB\uDDF8]|\uDDFD\uD83C\uDDF0|\uDDFE\uD83C[\uDDEA\uDDF9]|\uDDFF\uD83C[\uDDE6\uDDF2\uDDFC]|\uDF44(?:\u200D\uD83D\uDFEB)?|\uDF4B(?:\u200D\uD83D\uDFE9)?|\uDFC3(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDFF3\uFE0F?(?:\u200D(?:\u26A7\uFE0F?|\uD83C\uDF08))?|\uDFF4(?:\u200D\u2620\uFE0F?|\uDB40\uDC67\uDB40\uDC62\uDB40(?:\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDC73\uDB40\uDC63\uDB40\uDC74|\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F)?)|\uD83D(?:[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3]\uFE0F?|[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC](?:\uD83C[\uDFFB-\uDFFF])?|[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4\uDEB5](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD74\uDD90](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC25\uDC27-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE41\uDE43\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEDC-\uDEDF\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB\uDFF0]|\uDC08(?:\u200D\u2B1B)?|\uDC15(?:\u200D\uD83E\uDDBA)?|\uDC26(?:\u200D(?:\u2B1B|\uD83D\uDD25))?|\uDC3B(?:\u200D\u2744\uFE0F?)?|\uDC41\uFE0F?(?:\u200D\uD83D\uDDE8\uFE0F?)?|\uDC68(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDC68\uDC69]\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE])))?))?|\uDC69(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?[\uDC68\uDC69]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?|\uDC69\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?))|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFE])))?))?|\uDC6F(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDD75(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDE2E(?:\u200D\uD83D\uDCA8)?|\uDE35(?:\u200D\uD83D\uDCAB)?|\uDE36(?:\u200D\uD83C\uDF2B\uFE0F?)?|\uDE42(?:\u200D[\u2194\u2195]\uFE0F?)?|\uDEB6(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?)|\uD83E(?:[\uDD0C\uDD0F\uDD18-\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5\uDEC3-\uDEC5\uDEF0\uDEF2-\uDEF8](?:\uD83C[\uDFFB-\uDFFF])?|[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD\uDDCF\uDDD4\uDDD6-\uDDDD](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDDDE\uDDDF](?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD0D\uDD0E\uDD10-\uDD17\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCC\uDDD0\uDDE0-\uDDFF\uDE70-\uDE7C\uDE80-\uDE89\uDE8F-\uDEC2\uDEC6\uDECE-\uDEDC\uDEDF-\uDEE9]|\uDD3C(?:\u200D[\u2640\u2642]\uFE0F?|\uD83C[\uDFFB-\uDFFF])?|\uDDCE(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDDD1(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1|\uDDD1\u200D\uD83E\uDDD2(?:\u200D\uD83E\uDDD2)?|\uDDD2(?:\u200D\uD83E\uDDD2)?))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?))?|\uDEF1(?:\uD83C(?:\uDFFB(?:\u200D\uD83E\uDEF2\uD83C[\uDFFC-\uDFFF])?|\uDFFC(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFD-\uDFFF])?|\uDFFD(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])?|\uDFFE(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFD\uDFFF])?|\uDFFF(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFE])?))?)/g;function al(e){return e===12288||e>=65281&&e<=65376||e>=65504&&e<=65510}function il(e){return e>=4352&&e<=4447||e===8986||e===8987||e===9001||e===9002||e>=9193&&e<=9196||e===9200||e===9203||e===9725||e===9726||e===9748||e===9749||e>=9776&&e<=9783||e>=9800&&e<=9811||e===9855||e>=9866&&e<=9871||e===9875||e===9889||e===9898||e===9899||e===9917||e===9918||e===9924||e===9925||e===9934||e===9940||e===9962||e===9970||e===9971||e===9973||e===9978||e===9981||e===9989||e===9994||e===9995||e===10024||e===10060||e===10062||e>=10067&&e<=10069||e===10071||e>=10133&&e<=10135||e===10160||e===10175||e===11035||e===11036||e===11088||e===11093||e>=11904&&e<=11929||e>=11931&&e<=12019||e>=12032&&e<=12245||e>=12272&&e<=12287||e>=12289&&e<=12350||e>=12353&&e<=12438||e>=12441&&e<=12543||e>=12549&&e<=12591||e>=12593&&e<=12686||e>=12688&&e<=12773||e>=12783&&e<=12830||e>=12832&&e<=12871||e>=12880&&e<=42124||e>=42128&&e<=42182||e>=43360&&e<=43388||e>=44032&&e<=55203||e>=63744&&e<=64255||e>=65040&&e<=65049||e>=65072&&e<=65106||e>=65108&&e<=65126||e>=65128&&e<=65131||e>=94176&&e<=94180||e===94192||e===94193||e>=94208&&e<=100343||e>=100352&&e<=101589||e>=101631&&e<=101640||e>=110576&&e<=110579||e>=110581&&e<=110587||e===110589||e===110590||e>=110592&&e<=110882||e===110898||e>=110928&&e<=110930||e===110933||e>=110948&&e<=110951||e>=110960&&e<=111355||e>=119552&&e<=119638||e>=119648&&e<=119670||e===126980||e===127183||e===127374||e>=127377&&e<=127386||e>=127488&&e<=127490||e>=127504&&e<=127547||e>=127552&&e<=127560||e===127568||e===127569||e>=127584&&e<=127589||e>=127744&&e<=127776||e>=127789&&e<=127797||e>=127799&&e<=127868||e>=127870&&e<=127891||e>=127904&&e<=127946||e>=127951&&e<=127955||e>=127968&&e<=127984||e===127988||e>=127992&&e<=128062||e===128064||e>=128066&&e<=128252||e>=128255&&e<=128317||e>=128331&&e<=128334||e>=128336&&e<=128359||e===128378||e===128405||e===128406||e===128420||e>=128507&&e<=128591||e>=128640&&e<=128709||e===128716||e>=128720&&e<=128722||e>=128725&&e<=128727||e>=128732&&e<=128735||e===128747||e===128748||e>=128756&&e<=128764||e>=128992&&e<=129003||e===129008||e>=129292&&e<=129338||e>=129340&&e<=129349||e>=129351&&e<=129535||e>=129648&&e<=129660||e>=129664&&e<=129673||e>=129679&&e<=129734||e>=129742&&e<=129756||e>=129759&&e<=129769||e>=129776&&e<=129784||e>=131072&&e<=196605||e>=196608&&e<=262141}var ol=e=>!(al(e)||il(e)),sl=/[^\x20-\x7F]/u;function ll(e){if(!e)return 0;if(!sl.test(e))return e.length;e=e.replace(nl()," ");let t=0;for(let r of e){let u=r.codePointAt(0);u<=31||u>=127&&u<=159||u>=768&&u<=879||(t+=ol(u)?1:2)}return t}var ma=ll,ke=Symbol("MODE_BREAK"),Ge=Symbol("MODE_FLAT"),Vt=Symbol("cursor"),Au=Symbol("DOC_FILL_PRINTED_LENGTH");function Ca(){return{value:"",length:0,queue:[]}}function cl(e,t){return yu(e,{type:"indent"},t)}function Dl(e,t,r){return t===Number.NEGATIVE_INFINITY?e.root||Ca():t<0?yu(e,{type:"dedent"},r):t?t.type==="root"?{...e,root:e}:yu(e,{type:typeof t=="string"?"stringAlign":"numberAlign",n:t},r):e}function yu(e,t,r){let u=t.type==="dedent"?e.queue.slice(0,-1):[...e.queue,t],n="",a=0,i=0,o=0;for(let d of u)switch(d.type){case"indent":l(),r.useTabs?s(1):c(r.tabWidth);break;case"stringAlign":l(),n+=d.n,a+=d.n.length;break;case"numberAlign":i+=1,o+=d.n;break;default:throw new Error(`Unexpected type '${d.type}'`)}return f(),{...e,value:n,length:a,queue:u};function s(d){n+=" ".repeat(d),a+=r.tabWidth*d}function c(d){n+=" ".repeat(d),a+=d}function l(){r.useTabs?D():f()}function D(){i>0&&s(i),h()}function f(){o>0&&c(o),h()}function h(){i=0,o=0}}function _u(e){let t=0,r=0,u=e.length;e:for(;u--;){let n=e[u];if(n===Vt){r++;continue}for(let a=n.length-1;a>=0;a--){let i=n[a];if(i===" "||i===" ")t++;else{e[u]=n.slice(0,a+1);break e}}}if(t>0||r>0)for(e.length=u+1;r-- >0;)e.push(Vt);return t}function kr(e,t,r,u,n,a){if(r===Number.POSITIVE_INFINITY)return!0;let i=t.length,o=[e],s=[];for(;r>=0;){if(o.length===0){if(i===0)return!0;o.push(t[--i]);continue}let{mode:c,doc:l}=o.pop(),D=Tt(l);switch(D){case Pt:s.push(l),r-=ma(l);break;case ze:case ft:{let f=D===ze?l:l.parts,h=l[Au]??0;for(let d=f.length-1;d>=h;d--)o.push({mode:c,doc:f[d]});break}case lt:case ct:case dt:case Ft:o.push({mode:c,doc:l.contents});break;case Dt:r+=_u(s);break;case Ie:{if(a&&l.break)return!1;let f=l.break?ke:c,h=l.expandedStates&&f===ke?st(!1,l.expandedStates,-1):l.contents;o.push({mode:f,doc:h});break}case je:{let h=(l.groupId?n[l.groupId]||Ge:c)===ke?l.breakContents:l.flatContents;h&&o.push({mode:c,doc:h});break}case Be:if(c===ke||l.hard)return!0;l.soft||(s.push(" "),r--);break;case ht:u=!0;break;case pt:if(u)return!1;break}}return!1}function fl(e,t){let r={},u=t.printWidth,n=ul(t.endOfLine),a=0,i=[{ind:Ca(),mode:ke,doc:e}],o=[],s=!1,c=[],l=0;for(ks(e);i.length>0;){let{ind:f,mode:h,doc:d}=i.pop();switch(Tt(d)){case Pt:{let p=n!==`
586
- `?rl(!1,d,`
587
- `,n):d;o.push(p),i.length>0&&(a+=ma(p));break}case ze:for(let p=d.length-1;p>=0;p--)i.push({ind:f,mode:h,doc:d[p]});break;case Ot:if(l>=2)throw new Error("There are too many 'cursor' in doc.");o.push(Vt),l++;break;case lt:i.push({ind:cl(f,t),mode:h,doc:d.contents});break;case ct:i.push({ind:Dl(f,d.n,t),mode:h,doc:d.contents});break;case Dt:a-=_u(o);break;case Ie:switch(h){case Ge:if(!s){i.push({ind:f,mode:d.break?ke:Ge,doc:d.contents});break}case ke:{s=!1;let p={ind:f,mode:Ge,doc:d.contents},v=u-a,y=c.length>0;if(!d.break&&kr(p,i,v,y,r))i.push(p);else if(d.expandedStates){let m=st(!1,d.expandedStates,-1);if(d.break){i.push({ind:f,mode:ke,doc:m});break}else for(let C=1;C<d.expandedStates.length+1;C++)if(C>=d.expandedStates.length){i.push({ind:f,mode:ke,doc:m});break}else{let S=d.expandedStates[C],F={ind:f,mode:Ge,doc:S};if(kr(F,i,v,y,r)){i.push(F);break}}}else i.push({ind:f,mode:ke,doc:d.contents});break}}d.id&&(r[d.id]=st(!1,i,-1).mode);break;case ft:{let p=u-a,v=d[Au]??0,{parts:y}=d,m=y.length-v;if(m===0)break;let C=y[v+0],S=y[v+1],F={ind:f,mode:Ge,doc:C},B={ind:f,mode:ke,doc:C},P=kr(F,[],p,c.length>0,r,!0);if(m===1){P?i.push(F):i.push(B);break}let E={ind:f,mode:Ge,doc:S},R={ind:f,mode:ke,doc:S};if(m===2){P?i.push(E,F):i.push(R,B);break}let L=y[v+2],w={ind:f,mode:h,doc:{...d,[Au]:v+2}};kr({ind:f,mode:Ge,doc:[C,S,L]},[],p,c.length>0,r,!0)?i.push(w,E,F):P?i.push(w,R,F):i.push(w,R,B);break}case je:case dt:{let p=d.groupId?r[d.groupId]:h;if(p===ke){let v=d.type===je?d.breakContents:d.negate?d.contents:Rr(d.contents);v&&i.push({ind:f,mode:h,doc:v})}if(p===Ge){let v=d.type===je?d.flatContents:d.negate?Rr(d.contents):d.contents;v&&i.push({ind:f,mode:h,doc:v})}break}case ht:c.push({ind:f,mode:h,doc:d.contents});break;case pt:c.length>0&&i.push({ind:f,mode:h,doc:ku});break;case Be:switch(h){case Ge:if(d.hard)s=!0;else{d.soft||(o.push(" "),a+=1);break}case ke:if(c.length>0){i.push({ind:f,mode:h,doc:d},...c.reverse()),c.length=0;break}d.literal?f.root?(o.push(n,f.root.value),a=f.root.length):(o.push(n),a=0):(a-=_u(o),o.push(n+f.value),a=f.length);break}break;case Ft:i.push({ind:f,mode:h,doc:d.contents});break;case qe:break;default:throw new Kt(d)}i.length===0&&c.length>0&&(i.push(...c.reverse()),c.length=0)}let D=o.indexOf(Vt);if(D!==-1){let f=o.indexOf(Vt,D+1);if(f===-1)return{formatted:o.filter(v=>v!==Vt).join("")};let h=o.slice(0,D).join(""),d=o.slice(D+1,f).join(""),p=o.slice(f+1).join("");return{formatted:h+d+p,cursorNodeStart:h.length,cursorNodeText:d}}return{formatted:o.join("")}}var va={join:Ea,line:Ys,softline:Xs,hardline:Js,literalline:ga,group:pa,conditionalGroup:Ws,fill:Gs,lineSuffix:Vs,lineSuffixBoundary:Ks,cursor:Qs,breakParent:Su,ifBreak:Us,trim:zs,indent:Rr,indentIfBreak:qs,align:zt,addAlignmentToDoc:Zs,markAsRoot:Ms,dedentToRoot:$s,dedent:Hs,hardlineWithoutBreakParent:ku,literallineWithoutBreakParent:Fa,label:el,concat:e=>e},Aa={printDocToString:fl},ya={willBreak:Ss,traverseDoc:bu,findInDoc:Bu,mapDoc:Pr,removeLines:Ps,stripTrailingHardline:Os,replaceEndOfLine:Ns,canBreak:xs},dl=fa;var Yt=hl(import.meta.url),gl=pl(import.meta.url),hg=Fl(gl),El=Object.create,eu=Object.defineProperty,ml=Object.getOwnPropertyDescriptor,Ci=Object.getOwnPropertyNames,Cl=Object.getPrototypeOf,vl=Object.prototype.hasOwnProperty,vi=e=>{throw TypeError(e)},Al=(e,t,r)=>t in e?eu(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,oe=(e=>typeof Yt<"u"?Yt:typeof Proxy<"u"?new Proxy(e,{get:(t,r)=>(typeof Yt<"u"?Yt:t)[r]}):e)(function(e){if(typeof Yt<"u")return Yt.apply(this,arguments);throw Error('Dynamic require of "'+e+'" is not supported')}),G=(e,t)=>function(){return t||(0,e[Ci(e)[0]])((t={exports:{}}).exports,t),t.exports},Cr=(e,t)=>{for(var r in t)eu(e,r,{get:t[r],enumerable:!0})},yl=(e,t,r,u)=>{if(t&&typeof t=="object"||typeof t=="function")for(let n of Ci(t))!vl.call(e,n)&&n!==r&&eu(e,n,{get:()=>t[n],enumerable:!(u=ml(t,n))||u.enumerable});return e},We=(e,t,r)=>(r=e!=null?El(Cl(e)):{},yl(t||!e||!e.__esModule?eu(r,"default",{value:e,enumerable:!0}):r,e)),Uu=(e,t,r)=>Al(e,typeof t!="symbol"?t+"":t,r),fn=(e,t,r)=>t.has(e)||vi("Cannot "+r),ue=(e,t,r)=>(fn(e,t,"read from private field"),r?r.call(e):t.get(e)),we=(e,t,r)=>t.has(e)?vi("Cannot add the same private member more than once"):t instanceof WeakSet?t.add(e):t.set(e,r),Ee=(e,t,r,u)=>(fn(e,t,"write to private field"),u?u.call(e,r):t.set(e,r),r),Et=(e,t,r)=>(fn(e,t,"access private method"),r),_l=G({"node_modules/fast-glob/out/utils/array.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.splitWhen=e.flatten=void 0;function t(u){return u.reduce((n,a)=>[].concat(n,a),[])}e.flatten=t;function r(u,n){let a=[[]],i=0;for(let o of u)n(o)?(i++,a[i]=[]):a[i].push(o);return a}e.splitWhen=r}}),bl=G({"node_modules/fast-glob/out/utils/errno.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.isEnoentCodeError=void 0;function t(r){return r.code==="ENOENT"}e.isEnoentCodeError=t}}),Bl=G({"node_modules/fast-glob/out/utils/fs.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.createDirentFromStats=void 0;var t=class{constructor(u,n){this.name=u,this.isBlockDevice=n.isBlockDevice.bind(n),this.isCharacterDevice=n.isCharacterDevice.bind(n),this.isDirectory=n.isDirectory.bind(n),this.isFIFO=n.isFIFO.bind(n),this.isFile=n.isFile.bind(n),this.isSocket=n.isSocket.bind(n),this.isSymbolicLink=n.isSymbolicLink.bind(n)}};function r(u,n){return new t(u,n)}e.createDirentFromStats=r}}),wl=G({"node_modules/fast-glob/out/utils/path.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.convertPosixPathToPattern=e.convertWindowsPathToPattern=e.convertPathToPattern=e.escapePosixPath=e.escapeWindowsPath=e.escape=e.removeLeadingDotSegment=e.makeAbsolute=e.unixify=void 0;var t=oe("os"),r=oe("path"),u=t.platform()==="win32",n=2,a=/(\\?)([()*?[\]{|}]|^!|[!+@](?=\()|\\(?![!()*+?@[\]{|}]))/g,i=/(\\?)([()[\]{}]|^!|[!+@](?=\())/g,o=/^\\\\([.?])/,s=/\\(?![!()+@[\]{}])/g;function c(v){return v.replace(/\\/g,"/")}e.unixify=c;function l(v,y){return r.resolve(v,y)}e.makeAbsolute=l;function D(v){if(v.charAt(0)==="."){let y=v.charAt(1);if(y==="/"||y==="\\")return v.slice(n)}return v}e.removeLeadingDotSegment=D,e.escape=u?f:h;function f(v){return v.replace(i,"\\$2")}e.escapeWindowsPath=f;function h(v){return v.replace(a,"\\$2")}e.escapePosixPath=h,e.convertPathToPattern=u?d:p;function d(v){return f(v).replace(o,"//$1").replace(s,"/")}e.convertWindowsPathToPattern=d;function p(v){return h(v)}e.convertPosixPathToPattern=p}}),Sl=G({"node_modules/is-extglob/index.js"(e,t){t.exports=function(u){if(typeof u!="string"||u==="")return!1;for(var n;n=/(\\).|([@?!+*]\(.*\))/g.exec(u);){if(n[2])return!0;u=u.slice(n.index+n[0].length)}return!1}}}),kl=G({"node_modules/is-glob/index.js"(e,t){var r=Sl(),u={"{":"}","(":")","[":"]"},n=function(i){if(i[0]==="!")return!0;for(var o=0,s=-2,c=-2,l=-2,D=-2,f=-2;o<i.length;){if(i[o]==="*"||i[o+1]==="?"&&/[\].+)]/.test(i[o])||c!==-1&&i[o]==="["&&i[o+1]!=="]"&&(c<o&&(c=i.indexOf("]",o)),c>o&&(f===-1||f>c||(f=i.indexOf("\\",o),f===-1||f>c)))||l!==-1&&i[o]==="{"&&i[o+1]!=="}"&&(l=i.indexOf("}",o),l>o&&(f=i.indexOf("\\",o),f===-1||f>l))||D!==-1&&i[o]==="("&&i[o+1]==="?"&&/[:!=]/.test(i[o+2])&&i[o+3]!==")"&&(D=i.indexOf(")",o),D>o&&(f=i.indexOf("\\",o),f===-1||f>D))||s!==-1&&i[o]==="("&&i[o+1]!=="|"&&(s<o&&(s=i.indexOf("|",o)),s!==-1&&i[s+1]!==")"&&(D=i.indexOf(")",s),D>s&&(f=i.indexOf("\\",s),f===-1||f>D))))return!0;if(i[o]==="\\"){var h=i[o+1];o+=2;var d=u[h];if(d){var p=i.indexOf(d,o);p!==-1&&(o=p+1)}if(i[o]==="!")return!0}else o++}return!1},a=function(i){if(i[0]==="!")return!0;for(var o=0;o<i.length;){if(/[*?{}()[\]]/.test(i[o]))return!0;if(i[o]==="\\"){var s=i[o+1];o+=2;var c=u[s];if(c){var l=i.indexOf(c,o);l!==-1&&(o=l+1)}if(i[o]==="!")return!0}else o++}return!1};t.exports=function(o,s){if(typeof o!="string"||o==="")return!1;if(r(o))return!0;var c=n;return s&&s.strict===!1&&(c=a),c(o)}}}),Rl=G({"node_modules/glob-parent/index.js"(e,t){"use strict";var r=kl(),u=oe("path").posix.dirname,n=oe("os").platform()==="win32",a="/",i=/\\/g,o=/[\{\[].*[\}\]]$/,s=/(^|[^\\])([\{\[]|\([^\)]+$)/,c=/\\([\!\*\?\|\[\]\(\)\{\}])/g;t.exports=function(D,f){var h=Object.assign({flipBackslashes:!0},f);h.flipBackslashes&&n&&D.indexOf(a)<0&&(D=D.replace(i,a)),o.test(D)&&(D+=a),D+="a";do D=u(D);while(r(D)||s.test(D));return D.replace(c,"$1")}}}),dn=G({"node_modules/braces/lib/utils.js"(e){"use strict";e.isInteger=t=>typeof t=="number"?Number.isInteger(t):typeof t=="string"&&t.trim()!==""?Number.isInteger(Number(t)):!1,e.find=(t,r)=>t.nodes.find(u=>u.type===r),e.exceedsLimit=(t,r,u=1,n)=>n===!1||!e.isInteger(t)||!e.isInteger(r)?!1:(Number(r)-Number(t))/Number(u)>=n,e.escapeNode=(t,r=0,u)=>{let n=t.nodes[r];n&&(u&&n.type===u||n.type==="open"||n.type==="close")&&n.escaped!==!0&&(n.value="\\"+n.value,n.escaped=!0)},e.encloseBrace=t=>t.type!=="brace"?!1:t.commas>>0+t.ranges>>0===0?(t.invalid=!0,!0):!1,e.isInvalidBrace=t=>t.type!=="brace"?!1:t.invalid===!0||t.dollar?!0:t.commas>>0+t.ranges>>0===0||t.open!==!0||t.close!==!0?(t.invalid=!0,!0):!1,e.isOpenOrClose=t=>t.type==="open"||t.type==="close"?!0:t.open===!0||t.close===!0,e.reduce=t=>t.reduce((r,u)=>(u.type==="text"&&r.push(u.value),u.type==="range"&&(u.type="text"),r),[]),e.flatten=(...t)=>{let r=[],u=n=>{for(let a=0;a<n.length;a++){let i=n[a];if(Array.isArray(i)){u(i);continue}i!==void 0&&r.push(i)}return r};return u(t),r}}}),hn=G({"node_modules/braces/lib/stringify.js"(e,t){"use strict";var r=dn();t.exports=(u,n={})=>{let a=(i,o={})=>{let s=n.escapeInvalid&&r.isInvalidBrace(o),c=i.invalid===!0&&n.escapeInvalid===!0,l="";if(i.value)return(s||c)&&r.isOpenOrClose(i)?"\\"+i.value:i.value;if(i.value)return i.value;if(i.nodes)for(let D of i.nodes)l+=a(D);return l};return a(u)}}}),Pl=G({"node_modules/is-number/index.js"(e,t){"use strict";t.exports=function(r){return typeof r=="number"?r-r===0:typeof r=="string"&&r.trim()!==""?Number.isFinite?Number.isFinite(+r):isFinite(+r):!1}}}),Ol=G({"node_modules/to-regex-range/index.js"(e,t){"use strict";var r=Pl(),u=(m,C,S)=>{if(r(m)===!1)throw new TypeError("toRegexRange: expected the first argument to be a number");if(C===void 0||m===C)return String(m);if(r(C)===!1)throw new TypeError("toRegexRange: expected the second argument to be a number.");let F={relaxZeros:!0,...S};typeof F.strictZeros=="boolean"&&(F.relaxZeros=F.strictZeros===!1);let B=String(F.relaxZeros),P=String(F.shorthand),E=String(F.capture),R=String(F.wrap),L=m+":"+C+"="+B+P+E+R;if(u.cache.hasOwnProperty(L))return u.cache[L].result;let w=Math.min(m,C),T=Math.max(m,C);if(Math.abs(w-T)===1){let x=m+"|"+C;return F.capture?`(${x})`:F.wrap===!1?x:`(?:${x})`}let g=v(m)||v(C),A={min:m,max:C,a:w,b:T},_=[],k=[];if(g&&(A.isPadded=g,A.maxLen=String(A.max).length),w<0){let x=T<0?Math.abs(T):1;k=o(x,Math.abs(w),A,F),w=A.a=0}return T>=0&&(_=o(w,T,A,F)),A.negatives=k,A.positives=_,A.result=n(k,_,F),F.capture===!0?A.result=`(${A.result})`:F.wrap!==!1&&_.length+k.length>1&&(A.result=`(?:${A.result})`),u.cache[L]=A,A.result};function n(m,C,S){let F=s(m,C,"-",!1,S)||[],B=s(C,m,"",!1,S)||[],P=s(m,C,"-?",!0,S)||[];return F.concat(P).concat(B).join("|")}function a(m,C){let S=1,F=1,B=f(m,S),P=new Set([C]);for(;m<=B&&B<=C;)P.add(B),S+=1,B=f(m,S);for(B=h(C+1,F)-1;m<B&&B<=C;)P.add(B),F+=1,B=h(C+1,F)-1;return P=[...P],P.sort(l),P}function i(m,C,S){if(m===C)return{pattern:m,count:[],digits:0};let F=c(m,C),B=F.length,P="",E=0;for(let R=0;R<B;R++){let[L,w]=F[R];L===w?P+=L:L!=="0"||w!=="9"?P+=p(L,w,S):E++}return E&&(P+=S.shorthand===!0?"\\d":"[0-9]"),{pattern:P,count:[E],digits:B}}function o(m,C,S,F){let B=a(m,C),P=[],E=m,R;for(let L=0;L<B.length;L++){let w=B[L],T=i(String(E),String(w),F),g="";if(!S.isPadded&&R&&R.pattern===T.pattern){R.count.length>1&&R.count.pop(),R.count.push(T.count[0]),R.string=R.pattern+d(R.count),E=w+1;continue}S.isPadded&&(g=y(w,S,F)),T.string=g+T.pattern+d(T.count),P.push(T),E=w+1,R=T}return P}function s(m,C,S,F,B){let P=[];for(let E of m){let{string:R}=E;!F&&!D(C,"string",R)&&P.push(S+R),F&&D(C,"string",R)&&P.push(S+R)}return P}function c(m,C){let S=[];for(let F=0;F<m.length;F++)S.push([m[F],C[F]]);return S}function l(m,C){return m>C?1:C>m?-1:0}function D(m,C,S){return m.some(F=>F[C]===S)}function f(m,C){return Number(String(m).slice(0,-C)+"9".repeat(C))}function h(m,C){return m-m%Math.pow(10,C)}function d(m){let[C=0,S=""]=m;return S||C>1?`{${C+(S?","+S:"")}}`:""}function p(m,C,S){return`[${m}${C-m===1?"":"-"}${C}]`}function v(m){return/^-?(0+)\d/.test(m)}function y(m,C,S){if(!C.isPadded)return m;let F=Math.abs(C.maxLen-String(m).length),B=S.relaxZeros!==!1;switch(F){case 0:return"";case 1:return B?"0?":"0";case 2:return B?"0{0,2}":"00";default:return B?`0{0,${F}}`:`0{${F}}`}}u.cache={},u.clearCache=()=>u.cache={},t.exports=u}}),Ai=G({"node_modules/fill-range/index.js"(e,t){"use strict";var r=oe("util"),u=Ol(),n=F=>F!==null&&typeof F=="object"&&!Array.isArray(F),a=F=>B=>F===!0?Number(B):String(B),i=F=>typeof F=="number"||typeof F=="string"&&F!=="",o=F=>Number.isInteger(+F),s=F=>{let B=`${F}`,P=-1;if(B[0]==="-"&&(B=B.slice(1)),B==="0")return!1;for(;B[++P]==="0";);return P>0},c=(F,B,P)=>typeof F=="string"||typeof B=="string"?!0:P.stringify===!0,l=(F,B,P)=>{if(B>0){let E=F[0]==="-"?"-":"";E&&(F=F.slice(1)),F=E+F.padStart(E?B-1:B,"0")}return P===!1?String(F):F},D=(F,B)=>{let P=F[0]==="-"?"-":"";for(P&&(F=F.slice(1),B--);F.length<B;)F="0"+F;return P?"-"+F:F},f=(F,B,P)=>{F.negatives.sort((T,g)=>T<g?-1:T>g?1:0),F.positives.sort((T,g)=>T<g?-1:T>g?1:0);let E=B.capture?"":"?:",R="",L="",w;return F.positives.length&&(R=F.positives.map(T=>D(String(T),P)).join("|")),F.negatives.length&&(L=`-(${E}${F.negatives.map(T=>D(String(T),P)).join("|")})`),R&&L?w=`${R}|${L}`:w=R||L,B.wrap?`(${E}${w})`:w},h=(F,B,P,E)=>{if(P)return u(F,B,{wrap:!1,...E});let R=String.fromCharCode(F);if(F===B)return R;let L=String.fromCharCode(B);return`[${R}-${L}]`},d=(F,B,P)=>{if(Array.isArray(F)){let E=P.wrap===!0,R=P.capture?"":"?:";return E?`(${R}${F.join("|")})`:F.join("|")}return u(F,B,P)},p=(...F)=>new RangeError("Invalid range arguments: "+r.inspect(...F)),v=(F,B,P)=>{if(P.strictRanges===!0)throw p([F,B]);return[]},y=(F,B)=>{if(B.strictRanges===!0)throw new TypeError(`Expected step "${F}" to be a number`);return[]},m=(F,B,P=1,E={})=>{let R=Number(F),L=Number(B);if(!Number.isInteger(R)||!Number.isInteger(L)){if(E.strictRanges===!0)throw p([F,B]);return[]}R===0&&(R=0),L===0&&(L=0);let w=R>L,T=String(F),g=String(B),A=String(P);P=Math.max(Math.abs(P),1);let _=s(T)||s(g)||s(A),k=_?Math.max(T.length,g.length,A.length):0,x=_===!1&&c(F,B,E)===!1,W=E.transform||a(x);if(E.toRegex&&P===1)return h(D(F,k),D(B,k),!0,E);let M={negatives:[],positives:[]},H=I=>M[I<0?"negatives":"positives"].push(Math.abs(I)),j=[],q=0;for(;w?R>=L:R<=L;)E.toRegex===!0&&P>1?H(R):j.push(l(W(R,q),k,x)),R=w?R-P:R+P,q++;return E.toRegex===!0?P>1?f(M,E,k):d(j,null,{wrap:!1,...E}):j},C=(F,B,P=1,E={})=>{if(!o(F)&&F.length>1||!o(B)&&B.length>1)return v(F,B,E);let R=E.transform||(x=>String.fromCharCode(x)),L=`${F}`.charCodeAt(0),w=`${B}`.charCodeAt(0),T=L>w,g=Math.min(L,w),A=Math.max(L,w);if(E.toRegex&&P===1)return h(g,A,!1,E);let _=[],k=0;for(;T?L>=w:L<=w;)_.push(R(L,k)),L=T?L-P:L+P,k++;return E.toRegex===!0?d(_,null,{wrap:!1,options:E}):_},S=(F,B,P,E={})=>{if(B==null&&i(F))return[F];if(!i(F)||!i(B))return v(F,B,E);if(typeof P=="function")return S(F,B,1,{transform:P});if(n(P))return S(F,B,0,P);let R={...E};return R.capture===!0&&(R.wrap=!0),P=P||R.step||1,o(P)?o(F)&&o(B)?m(F,B,P,R):C(F,B,Math.max(Math.abs(P),1),R):P!=null&&!n(P)?y(P,R):S(F,B,1,P)};t.exports=S}}),Tl=G({"node_modules/braces/lib/compile.js"(e,t){"use strict";var r=Ai(),u=dn(),n=(a,i={})=>{let o=(s,c={})=>{let l=u.isInvalidBrace(c),D=s.invalid===!0&&i.escapeInvalid===!0,f=l===!0||D===!0,h=i.escapeInvalid===!0?"\\":"",d="";if(s.isOpen===!0)return h+s.value;if(s.isClose===!0)return console.log("node.isClose",h,s.value),h+s.value;if(s.type==="open")return f?h+s.value:"(";if(s.type==="close")return f?h+s.value:")";if(s.type==="comma")return s.prev.type==="comma"?"":f?s.value:"|";if(s.value)return s.value;if(s.nodes&&s.ranges>0){let p=u.reduce(s.nodes),v=r(...p,{...i,wrap:!1,toRegex:!0,strictZeros:!0});if(v.length!==0)return p.length>1&&v.length>1?`(${v})`:v}if(s.nodes)for(let p of s.nodes)d+=o(p,s);return d};return o(a)};t.exports=n}}),Il=G({"node_modules/braces/lib/expand.js"(e,t){"use strict";var r=Ai(),u=hn(),n=dn(),a=(o="",s="",c=!1)=>{let l=[];if(o=[].concat(o),s=[].concat(s),!s.length)return o;if(!o.length)return c?n.flatten(s).map(D=>`{${D}}`):s;for(let D of o)if(Array.isArray(D))for(let f of D)l.push(a(f,s,c));else for(let f of s)c===!0&&typeof f=="string"&&(f=`{${f}}`),l.push(Array.isArray(f)?a(D,f,c):D+f);return n.flatten(l)},i=(o,s={})=>{let c=s.rangeLimit===void 0?1e3:s.rangeLimit,l=(D,f={})=>{D.queue=[];let h=f,d=f.queue;for(;h.type!=="brace"&&h.type!=="root"&&h.parent;)h=h.parent,d=h.queue;if(D.invalid||D.dollar){d.push(a(d.pop(),u(D,s)));return}if(D.type==="brace"&&D.invalid!==!0&&D.nodes.length===2){d.push(a(d.pop(),["{}"]));return}if(D.nodes&&D.ranges>0){let m=n.reduce(D.nodes);if(n.exceedsLimit(...m,s.step,c))throw new RangeError("expanded array length exceeds range limit. Use options.rangeLimit to increase or disable the limit.");let C=r(...m,s);C.length===0&&(C=u(D,s)),d.push(a(d.pop(),C)),D.nodes=[];return}let p=n.encloseBrace(D),v=D.queue,y=D;for(;y.type!=="brace"&&y.type!=="root"&&y.parent;)y=y.parent,v=y.queue;for(let m=0;m<D.nodes.length;m++){let C=D.nodes[m];if(C.type==="comma"&&D.type==="brace"){m===1&&v.push(""),v.push("");continue}if(C.type==="close"){d.push(a(d.pop(),v,p));continue}if(C.value&&C.type!=="open"){v.push(a(v.pop(),C.value));continue}C.nodes&&l(C,D)}return v};return n.flatten(l(o))};t.exports=i}}),Nl=G({"node_modules/braces/lib/constants.js"(e,t){"use strict";t.exports={MAX_LENGTH:1e4,CHAR_0:"0",CHAR_9:"9",CHAR_UPPERCASE_A:"A",CHAR_LOWERCASE_A:"a",CHAR_UPPERCASE_Z:"Z",CHAR_LOWERCASE_Z:"z",CHAR_LEFT_PARENTHESES:"(",CHAR_RIGHT_PARENTHESES:")",CHAR_ASTERISK:"*",CHAR_AMPERSAND:"&",CHAR_AT:"@",CHAR_BACKSLASH:"\\",CHAR_BACKTICK:"`",CHAR_CARRIAGE_RETURN:"\r",CHAR_CIRCUMFLEX_ACCENT:"^",CHAR_COLON:":",CHAR_COMMA:",",CHAR_DOLLAR:"$",CHAR_DOT:".",CHAR_DOUBLE_QUOTE:'"',CHAR_EQUAL:"=",CHAR_EXCLAMATION_MARK:"!",CHAR_FORM_FEED:"\f",CHAR_FORWARD_SLASH:"/",CHAR_HASH:"#",CHAR_HYPHEN_MINUS:"-",CHAR_LEFT_ANGLE_BRACKET:"<",CHAR_LEFT_CURLY_BRACE:"{",CHAR_LEFT_SQUARE_BRACKET:"[",CHAR_LINE_FEED:`
588
- `,CHAR_NO_BREAK_SPACE:"\xA0",CHAR_PERCENT:"%",CHAR_PLUS:"+",CHAR_QUESTION_MARK:"?",CHAR_RIGHT_ANGLE_BRACKET:">",CHAR_RIGHT_CURLY_BRACE:"}",CHAR_RIGHT_SQUARE_BRACKET:"]",CHAR_SEMICOLON:";",CHAR_SINGLE_QUOTE:"'",CHAR_SPACE:" ",CHAR_TAB:" ",CHAR_UNDERSCORE:"_",CHAR_VERTICAL_LINE:"|",CHAR_ZERO_WIDTH_NOBREAK_SPACE:"\uFEFF"}}}),Ll=G({"node_modules/braces/lib/parse.js"(e,t){"use strict";var r=hn(),{MAX_LENGTH:u,CHAR_BACKSLASH:n,CHAR_BACKTICK:a,CHAR_COMMA:i,CHAR_DOT:o,CHAR_LEFT_PARENTHESES:s,CHAR_RIGHT_PARENTHESES:c,CHAR_LEFT_CURLY_BRACE:l,CHAR_RIGHT_CURLY_BRACE:D,CHAR_LEFT_SQUARE_BRACKET:f,CHAR_RIGHT_SQUARE_BRACKET:h,CHAR_DOUBLE_QUOTE:d,CHAR_SINGLE_QUOTE:p,CHAR_NO_BREAK_SPACE:v,CHAR_ZERO_WIDTH_NOBREAK_SPACE:y}=Nl(),m=(C,S={})=>{if(typeof C!="string")throw new TypeError("Expected a string");let F=S||{},B=typeof F.maxLength=="number"?Math.min(u,F.maxLength):u;if(C.length>B)throw new SyntaxError(`Input length (${C.length}), exceeds max characters (${B})`);let P={type:"root",input:C,nodes:[]},E=[P],R=P,L=P,w=0,T=C.length,g=0,A=0,_,k=()=>C[g++],x=W=>{if(W.type==="text"&&L.type==="dot"&&(L.type="text"),L&&L.type==="text"&&W.type==="text"){L.value+=W.value;return}return R.nodes.push(W),W.parent=R,W.prev=L,L=W,W};for(x({type:"bos"});g<T;)if(R=E[E.length-1],_=k(),!(_===y||_===v)){if(_===n){x({type:"text",value:(S.keepEscaping?_:"")+k()});continue}if(_===h){x({type:"text",value:"\\"+_});continue}if(_===f){w++;let W;for(;g<T&&(W=k());){if(_+=W,W===f){w++;continue}if(W===n){_+=k();continue}if(W===h&&(w--,w===0))break}x({type:"text",value:_});continue}if(_===s){R=x({type:"paren",nodes:[]}),E.push(R),x({type:"text",value:_});continue}if(_===c){if(R.type!=="paren"){x({type:"text",value:_});continue}R=E.pop(),x({type:"text",value:_}),R=E[E.length-1];continue}if(_===d||_===p||_===a){let W=_,M;for(S.keepQuotes!==!0&&(_="");g<T&&(M=k());){if(M===n){_+=M+k();continue}if(M===W){S.keepQuotes===!0&&(_+=M);break}_+=M}x({type:"text",value:_});continue}if(_===l){A++;let M={type:"brace",open:!0,close:!1,dollar:L.value&&L.value.slice(-1)==="$"||R.dollar===!0,depth:A,commas:0,ranges:0,nodes:[]};R=x(M),E.push(R),x({type:"open",value:_});continue}if(_===D){if(R.type!=="brace"){x({type:"text",value:_});continue}let W="close";R=E.pop(),R.close=!0,x({type:W,value:_}),A--,R=E[E.length-1];continue}if(_===i&&A>0){if(R.ranges>0){R.ranges=0;let W=R.nodes.shift();R.nodes=[W,{type:"text",value:r(R)}]}x({type:"comma",value:_}),R.commas++;continue}if(_===o&&A>0&&R.commas===0){let W=R.nodes;if(A===0||W.length===0){x({type:"text",value:_});continue}if(L.type==="dot"){if(R.range=[],L.value+=_,L.type="range",R.nodes.length!==3&&R.nodes.length!==5){R.invalid=!0,R.ranges=0,L.type="text";continue}R.ranges++,R.args=[];continue}if(L.type==="range"){W.pop();let M=W[W.length-1];M.value+=L.value+_,L=M,R.ranges--;continue}x({type:"dot",value:_});continue}x({type:"text",value:_})}do if(R=E.pop(),R.type!=="root"){R.nodes.forEach(H=>{H.nodes||(H.type==="open"&&(H.isOpen=!0),H.type==="close"&&(H.isClose=!0),H.nodes||(H.type="text"),H.invalid=!0)});let W=E[E.length-1],M=W.nodes.indexOf(R);W.nodes.splice(M,1,...R.nodes)}while(E.length>0);return x({type:"eos"}),P};t.exports=m}}),xl=G({"node_modules/braces/index.js"(e,t){"use strict";var r=hn(),u=Tl(),n=Il(),a=Ll(),i=(o,s={})=>{let c=[];if(Array.isArray(o))for(let l of o){let D=i.create(l,s);Array.isArray(D)?c.push(...D):c.push(D)}else c=[].concat(i.create(o,s));return s&&s.expand===!0&&s.nodupes===!0&&(c=[...new Set(c)]),c};i.parse=(o,s={})=>a(o,s),i.stringify=(o,s={})=>r(typeof o=="string"?i.parse(o,s):o,s),i.compile=(o,s={})=>(typeof o=="string"&&(o=i.parse(o,s)),u(o,s)),i.expand=(o,s={})=>{typeof o=="string"&&(o=i.parse(o,s));let c=n(o,s);return s.noempty===!0&&(c=c.filter(Boolean)),s.nodupes===!0&&(c=[...new Set(c)]),c},i.create=(o,s={})=>o===""||o.length<3?[o]:s.expand!==!0?i.compile(o,s):i.expand(o,s),t.exports=i}}),tu=G({"node_modules/micromatch/node_modules/picomatch/lib/constants.js"(e,t){"use strict";var r=oe("path"),u="\\\\/",n=`[^${u}]`,a="\\.",i="\\+",o="\\?",s="\\/",c="(?=.)",l="[^/]",D=`(?:${s}|$)`,f=`(?:^|${s})`,h=`${a}{1,2}${D}`,d=`(?!${a})`,p=`(?!${f}${h})`,v=`(?!${a}{0,1}${D})`,y=`(?!${h})`,m=`[^.${s}]`,C=`${l}*?`,S={DOT_LITERAL:a,PLUS_LITERAL:i,QMARK_LITERAL:o,SLASH_LITERAL:s,ONE_CHAR:c,QMARK:l,END_ANCHOR:D,DOTS_SLASH:h,NO_DOT:d,NO_DOTS:p,NO_DOT_SLASH:v,NO_DOTS_SLASH:y,QMARK_NO_DOT:m,STAR:C,START_ANCHOR:f},F={...S,SLASH_LITERAL:`[${u}]`,QMARK:n,STAR:`${n}*?`,DOTS_SLASH:`${a}{1,2}(?:[${u}]|$)`,NO_DOT:`(?!${a})`,NO_DOTS:`(?!(?:^|[${u}])${a}{1,2}(?:[${u}]|$))`,NO_DOT_SLASH:`(?!${a}{0,1}(?:[${u}]|$))`,NO_DOTS_SLASH:`(?!${a}{1,2}(?:[${u}]|$))`,QMARK_NO_DOT:`[^.${u}]`,START_ANCHOR:`(?:^|[${u}])`,END_ANCHOR:`(?:[${u}]|$)`},B={alnum:"a-zA-Z0-9",alpha:"a-zA-Z",ascii:"\\x00-\\x7F",blank:" \\t",cntrl:"\\x00-\\x1F\\x7F",digit:"0-9",graph:"\\x21-\\x7E",lower:"a-z",print:"\\x20-\\x7E ",punct:"\\-!\"#$%&'()\\*+,./:;<=>?@[\\]^_`{|}~",space:" \\t\\r\\n\\v\\f",upper:"A-Z",word:"A-Za-z0-9_",xdigit:"A-Fa-f0-9"};t.exports={MAX_LENGTH:1024*64,POSIX_REGEX_SOURCE:B,REGEX_BACKSLASH:/\\(?![*+?^${}(|)[\]])/g,REGEX_NON_SPECIAL_CHARS:/^[^@![\].,$*+?^{}()|\\/]+/,REGEX_SPECIAL_CHARS:/[-*+?.^${}(|)[\]]/,REGEX_SPECIAL_CHARS_BACKREF:/(\\?)((\W)(\3*))/g,REGEX_SPECIAL_CHARS_GLOBAL:/([-*+?.^${}(|)[\]])/g,REGEX_REMOVE_BACKSLASH:/(?:\[.*?[^\\]\]|\\(?=.))/g,REPLACEMENTS:{"***":"*","**/**":"**","**/**/**":"**"},CHAR_0:48,CHAR_9:57,CHAR_UPPERCASE_A:65,CHAR_LOWERCASE_A:97,CHAR_UPPERCASE_Z:90,CHAR_LOWERCASE_Z:122,CHAR_LEFT_PARENTHESES:40,CHAR_RIGHT_PARENTHESES:41,CHAR_ASTERISK:42,CHAR_AMPERSAND:38,CHAR_AT:64,CHAR_BACKWARD_SLASH:92,CHAR_CARRIAGE_RETURN:13,CHAR_CIRCUMFLEX_ACCENT:94,CHAR_COLON:58,CHAR_COMMA:44,CHAR_DOT:46,CHAR_DOUBLE_QUOTE:34,CHAR_EQUAL:61,CHAR_EXCLAMATION_MARK:33,CHAR_FORM_FEED:12,CHAR_FORWARD_SLASH:47,CHAR_GRAVE_ACCENT:96,CHAR_HASH:35,CHAR_HYPHEN_MINUS:45,CHAR_LEFT_ANGLE_BRACKET:60,CHAR_LEFT_CURLY_BRACE:123,CHAR_LEFT_SQUARE_BRACKET:91,CHAR_LINE_FEED:10,CHAR_NO_BREAK_SPACE:160,CHAR_PERCENT:37,CHAR_PLUS:43,CHAR_QUESTION_MARK:63,CHAR_RIGHT_ANGLE_BRACKET:62,CHAR_RIGHT_CURLY_BRACE:125,CHAR_RIGHT_SQUARE_BRACKET:93,CHAR_SEMICOLON:59,CHAR_SINGLE_QUOTE:39,CHAR_SPACE:32,CHAR_TAB:9,CHAR_UNDERSCORE:95,CHAR_VERTICAL_LINE:124,CHAR_ZERO_WIDTH_NOBREAK_SPACE:65279,SEP:r.sep,extglobChars(P){return{"!":{type:"negate",open:"(?:(?!(?:",close:`))${P.STAR})`},"?":{type:"qmark",open:"(?:",close:")?"},"+":{type:"plus",open:"(?:",close:")+"},"*":{type:"star",open:"(?:",close:")*"},"@":{type:"at",open:"(?:",close:")"}}},globChars(P){return P===!0?F:S}}}}),ru=G({"node_modules/micromatch/node_modules/picomatch/lib/utils.js"(e){"use strict";var t=oe("path"),r=process.platform==="win32",{REGEX_BACKSLASH:u,REGEX_REMOVE_BACKSLASH:n,REGEX_SPECIAL_CHARS:a,REGEX_SPECIAL_CHARS_GLOBAL:i}=tu();e.isObject=o=>o!==null&&typeof o=="object"&&!Array.isArray(o),e.hasRegexChars=o=>a.test(o),e.isRegexChar=o=>o.length===1&&e.hasRegexChars(o),e.escapeRegex=o=>o.replace(i,"\\$1"),e.toPosixSlashes=o=>o.replace(u,"/"),e.removeBackslashes=o=>o.replace(n,s=>s==="\\"?"":s),e.supportsLookbehinds=()=>{let o=process.version.slice(1).split(".").map(Number);return o.length===3&&o[0]>=9||o[0]===8&&o[1]>=10},e.isWindows=o=>o&&typeof o.windows=="boolean"?o.windows:r===!0||t.sep==="\\",e.escapeLast=(o,s,c)=>{let l=o.lastIndexOf(s,c);return l===-1?o:o[l-1]==="\\"?e.escapeLast(o,s,l-1):`${o.slice(0,l)}\\${o.slice(l)}`},e.removePrefix=(o,s={})=>{let c=o;return c.startsWith("./")&&(c=c.slice(2),s.prefix="./"),c},e.wrapOutput=(o,s={},c={})=>{let l=c.contains?"":"^",D=c.contains?"":"$",f=`${l}(?:${o})${D}`;return s.negated===!0&&(f=`(?:^(?!${f}).*$)`),f}}}),jl=G({"node_modules/micromatch/node_modules/picomatch/lib/scan.js"(e,t){"use strict";var r=ru(),{CHAR_ASTERISK:u,CHAR_AT:n,CHAR_BACKWARD_SLASH:a,CHAR_COMMA:i,CHAR_DOT:o,CHAR_EXCLAMATION_MARK:s,CHAR_FORWARD_SLASH:c,CHAR_LEFT_CURLY_BRACE:l,CHAR_LEFT_PARENTHESES:D,CHAR_LEFT_SQUARE_BRACKET:f,CHAR_PLUS:h,CHAR_QUESTION_MARK:d,CHAR_RIGHT_CURLY_BRACE:p,CHAR_RIGHT_PARENTHESES:v,CHAR_RIGHT_SQUARE_BRACKET:y}=tu(),m=F=>F===c||F===a,C=F=>{F.isPrefix!==!0&&(F.depth=F.isGlobstar?1/0:1)},S=(F,B)=>{let P=B||{},E=F.length-1,R=P.parts===!0||P.scanToEnd===!0,L=[],w=[],T=[],g=F,A=-1,_=0,k=0,x=!1,W=!1,M=!1,H=!1,j=!1,q=!1,I=!1,J=!1,X=!1,N=!1,b=0,O,U,K={value:"",depth:0,isGlob:!1},le=()=>A>=E,ce=()=>g.charCodeAt(A+1),ae=()=>(O=U,g.charCodeAt(++A));for(;A<E;){U=ae();let Y;if(U===a){I=K.backslashes=!0,U=ae(),U===l&&(q=!0);continue}if(q===!0||U===l){for(b++;le()!==!0&&(U=ae());){if(U===a){I=K.backslashes=!0,ae();continue}if(U===l){b++;continue}if(q!==!0&&U===o&&(U=ae())===o){if(x=K.isBrace=!0,M=K.isGlob=!0,N=!0,R===!0)continue;break}if(q!==!0&&U===i){if(x=K.isBrace=!0,M=K.isGlob=!0,N=!0,R===!0)continue;break}if(U===p&&(b--,b===0)){q=!1,x=K.isBrace=!0,N=!0;break}}if(R===!0)continue;break}if(U===c){if(L.push(A),w.push(K),K={value:"",depth:0,isGlob:!1},N===!0)continue;if(O===o&&A===_+1){_+=2;continue}k=A+1;continue}if(P.noext!==!0&&(U===h||U===n||U===u||U===d||U===s)===!0&&ce()===D){if(M=K.isGlob=!0,H=K.isExtglob=!0,N=!0,U===s&&A===_&&(X=!0),R===!0){for(;le()!==!0&&(U=ae());){if(U===a){I=K.backslashes=!0,U=ae();continue}if(U===v){M=K.isGlob=!0,N=!0;break}}continue}break}if(U===u){if(O===u&&(j=K.isGlobstar=!0),M=K.isGlob=!0,N=!0,R===!0)continue;break}if(U===d){if(M=K.isGlob=!0,N=!0,R===!0)continue;break}if(U===f){for(;le()!==!0&&(Y=ae());){if(Y===a){I=K.backslashes=!0,ae();continue}if(Y===y){W=K.isBracket=!0,M=K.isGlob=!0,N=!0;break}}if(R===!0)continue;break}if(P.nonegate!==!0&&U===s&&A===_){J=K.negated=!0,_++;continue}if(P.noparen!==!0&&U===D){if(M=K.isGlob=!0,R===!0){for(;le()!==!0&&(U=ae());){if(U===D){I=K.backslashes=!0,U=ae();continue}if(U===v){N=!0;break}}continue}break}if(M===!0){if(N=!0,R===!0)continue;break}}P.noext===!0&&(H=!1,M=!1);let ne=g,Ae="",_e="";_>0&&(Ae=g.slice(0,_),g=g.slice(_),k-=_),ne&&M===!0&&k>0?(ne=g.slice(0,k),_e=g.slice(k)):M===!0?(ne="",_e=g):ne=g,ne&&ne!==""&&ne!=="/"&&ne!==g&&m(ne.charCodeAt(ne.length-1))&&(ne=ne.slice(0,-1)),P.unescape===!0&&(_e&&(_e=r.removeBackslashes(_e)),ne&&I===!0&&(ne=r.removeBackslashes(ne)));let Fe={prefix:Ae,input:F,start:_,base:ne,glob:_e,isBrace:x,isBracket:W,isGlob:M,isExtglob:H,isGlobstar:j,negated:J,negatedExtglob:X};if(P.tokens===!0&&(Fe.maxDepth=0,m(U)||w.push(K),Fe.tokens=w),P.parts===!0||P.tokens===!0){let Y;for(let pe=0;pe<L.length;pe++){let Rt=Y?Y+1:_,z=L[pe],ie=F.slice(Rt,z);P.tokens&&(pe===0&&_!==0?(w[pe].isPrefix=!0,w[pe].value=Ae):w[pe].value=ie,C(w[pe]),Fe.maxDepth+=w[pe].depth),(pe!==0||ie!=="")&&T.push(ie),Y=z}if(Y&&Y+1<F.length){let pe=F.slice(Y+1);T.push(pe),P.tokens&&(w[w.length-1].value=pe,C(w[w.length-1]),Fe.maxDepth+=w[w.length-1].depth)}Fe.slashes=L,Fe.parts=T}return Fe};t.exports=S}}),$l=G({"node_modules/micromatch/node_modules/picomatch/lib/parse.js"(e,t){"use strict";var r=tu(),u=ru(),{MAX_LENGTH:n,POSIX_REGEX_SOURCE:a,REGEX_NON_SPECIAL_CHARS:i,REGEX_SPECIAL_CHARS_BACKREF:o,REPLACEMENTS:s}=r,c=(f,h)=>{if(typeof h.expandRange=="function")return h.expandRange(...f,h);f.sort();let d=`[${f.join("-")}]`;try{new RegExp(d)}catch{return f.map(v=>u.escapeRegex(v)).join("..")}return d},l=(f,h)=>`Missing ${f}: "${h}" - use "\\\\${h}" to match literal characters`,D=(f,h)=>{if(typeof f!="string")throw new TypeError("Expected a string");f=s[f]||f;let d={...h},p=typeof d.maxLength=="number"?Math.min(n,d.maxLength):n,v=f.length;if(v>p)throw new SyntaxError(`Input length: ${v}, exceeds maximum allowed length: ${p}`);let y={type:"bos",value:"",output:d.prepend||""},m=[y],C=d.capture?"":"?:",S=u.isWindows(h),F=r.globChars(S),B=r.extglobChars(F),{DOT_LITERAL:P,PLUS_LITERAL:E,SLASH_LITERAL:R,ONE_CHAR:L,DOTS_SLASH:w,NO_DOT:T,NO_DOT_SLASH:g,NO_DOTS_SLASH:A,QMARK:_,QMARK_NO_DOT:k,STAR:x,START_ANCHOR:W}=F,M=z=>`(${C}(?:(?!${W}${z.dot?w:P}).)*?)`,H=d.dot?"":T,j=d.dot?_:k,q=d.bash===!0?M(d):x;d.capture&&(q=`(${q})`),typeof d.noext=="boolean"&&(d.noextglob=d.noext);let I={input:f,index:-1,start:0,dot:d.dot===!0,consumed:"",output:"",prefix:"",backtrack:!1,negated:!1,brackets:0,braces:0,parens:0,quotes:0,globstar:!1,tokens:m};f=u.removePrefix(f,I),v=f.length;let J=[],X=[],N=[],b=y,O,U=()=>I.index===v-1,K=I.peek=(z=1)=>f[I.index+z],le=I.advance=()=>f[++I.index]||"",ce=()=>f.slice(I.index+1),ae=(z="",ie=0)=>{I.consumed+=z,I.index+=ie},ne=z=>{I.output+=z.output!=null?z.output:z.value,ae(z.value)},Ae=()=>{let z=1;for(;K()==="!"&&(K(2)!=="("||K(3)==="?");)le(),I.start++,z++;return z%2===0?!1:(I.negated=!0,I.start++,!0)},_e=z=>{I[z]++,N.push(z)},Fe=z=>{I[z]--,N.pop()},Y=z=>{if(b.type==="globstar"){let ie=I.braces>0&&(z.type==="comma"||z.type==="brace"),V=z.extglob===!0||J.length&&(z.type==="pipe"||z.type==="paren");z.type!=="slash"&&z.type!=="paren"&&!ie&&!V&&(I.output=I.output.slice(0,-b.output.length),b.type="star",b.value="*",b.output=q,I.output+=b.output)}if(J.length&&z.type!=="paren"&&(J[J.length-1].inner+=z.value),(z.value||z.output)&&ne(z),b&&b.type==="text"&&z.type==="text"){b.value+=z.value,b.output=(b.output||"")+z.value;return}z.prev=b,m.push(z),b=z},pe=(z,ie)=>{let V={...B[ie],conditions:1,inner:""};V.prev=b,V.parens=I.parens,V.output=I.output;let ee=(d.capture?"(":"")+V.open;_e("parens"),Y({type:z,value:ie,output:I.output?"":L}),Y({type:"paren",extglob:!0,value:le(),output:ee}),J.push(V)},Rt=z=>{let ie=z.close+(d.capture?")":""),V;if(z.type==="negate"){let ee=q;if(z.inner&&z.inner.length>1&&z.inner.includes("/")&&(ee=M(d)),(ee!==q||U()||/^\)+$/.test(ce()))&&(ie=z.close=`)$))${ee}`),z.inner.includes("*")&&(V=ce())&&/^\.[^\\/.]+$/.test(V)){let de=D(V,{...h,fastpaths:!1}).output;ie=z.close=`)${de})${ee})`}z.prev.type==="bos"&&(I.negatedExtglob=!0)}Y({type:"paren",extglob:!0,value:O,output:ie}),Fe("parens")};if(d.fastpaths!==!1&&!/(^[*!]|[/()[\]{}"])/.test(f)){let z=!1,ie=f.replace(o,(V,ee,de,be,ge,pu)=>be==="\\"?(z=!0,V):be==="?"?ee?ee+be+(ge?_.repeat(ge.length):""):pu===0?j+(ge?_.repeat(ge.length):""):_.repeat(de.length):be==="."?P.repeat(de.length):be==="*"?ee?ee+be+(ge?q:""):q:ee?V:`\\${V}`);return z===!0&&(d.unescape===!0?ie=ie.replace(/\\/g,""):ie=ie.replace(/\\+/g,V=>V.length%2===0?"\\\\":V?"\\":"")),ie===f&&d.contains===!0?(I.output=f,I):(I.output=u.wrapOutput(ie,I,h),I)}for(;!U();){if(O=le(),O==="\0")continue;if(O==="\\"){let V=K();if(V==="/"&&d.bash!==!0||V==="."||V===";")continue;if(!V){O+="\\",Y({type:"text",value:O});continue}let ee=/^\\+/.exec(ce()),de=0;if(ee&&ee[0].length>2&&(de=ee[0].length,I.index+=de,de%2!==0&&(O+="\\")),d.unescape===!0?O=le():O+=le(),I.brackets===0){Y({type:"text",value:O});continue}}if(I.brackets>0&&(O!=="]"||b.value==="["||b.value==="[^")){if(d.posix!==!1&&O===":"){let V=b.value.slice(1);if(V.includes("[")&&(b.posix=!0,V.includes(":"))){let ee=b.value.lastIndexOf("["),de=b.value.slice(0,ee),be=b.value.slice(ee+2),ge=a[be];if(ge){b.value=de+ge,I.backtrack=!0,le(),!y.output&&m.indexOf(b)===1&&(y.output=L);continue}}}(O==="["&&K()!==":"||O==="-"&&K()==="]")&&(O=`\\${O}`),O==="]"&&(b.value==="["||b.value==="[^")&&(O=`\\${O}`),d.posix===!0&&O==="!"&&b.value==="["&&(O="^"),b.value+=O,ne({value:O});continue}if(I.quotes===1&&O!=='"'){O=u.escapeRegex(O),b.value+=O,ne({value:O});continue}if(O==='"'){I.quotes=I.quotes===1?0:1,d.keepQuotes===!0&&Y({type:"text",value:O});continue}if(O==="("){_e("parens"),Y({type:"paren",value:O});continue}if(O===")"){if(I.parens===0&&d.strictBrackets===!0)throw new SyntaxError(l("opening","("));let V=J[J.length-1];if(V&&I.parens===V.parens+1){Rt(J.pop());continue}Y({type:"paren",value:O,output:I.parens?")":"\\)"}),Fe("parens");continue}if(O==="["){if(d.nobracket===!0||!ce().includes("]")){if(d.nobracket!==!0&&d.strictBrackets===!0)throw new SyntaxError(l("closing","]"));O=`\\${O}`}else _e("brackets");Y({type:"bracket",value:O});continue}if(O==="]"){if(d.nobracket===!0||b&&b.type==="bracket"&&b.value.length===1){Y({type:"text",value:O,output:`\\${O}`});continue}if(I.brackets===0){if(d.strictBrackets===!0)throw new SyntaxError(l("opening","["));Y({type:"text",value:O,output:`\\${O}`});continue}Fe("brackets");let V=b.value.slice(1);if(b.posix!==!0&&V[0]==="^"&&!V.includes("/")&&(O=`/${O}`),b.value+=O,ne({value:O}),d.literalBrackets===!1||u.hasRegexChars(V))continue;let ee=u.escapeRegex(b.value);if(I.output=I.output.slice(0,-b.value.length),d.literalBrackets===!0){I.output+=ee,b.value=ee;continue}b.value=`(${C}${ee}|${b.value})`,I.output+=b.value;continue}if(O==="{"&&d.nobrace!==!0){_e("braces");let V={type:"brace",value:O,output:"(",outputIndex:I.output.length,tokensIndex:I.tokens.length};X.push(V),Y(V);continue}if(O==="}"){let V=X[X.length-1];if(d.nobrace===!0||!V){Y({type:"text",value:O,output:O});continue}let ee=")";if(V.dots===!0){let de=m.slice(),be=[];for(let ge=de.length-1;ge>=0&&(m.pop(),de[ge].type!=="brace");ge--)de[ge].type!=="dots"&&be.unshift(de[ge].value);ee=c(be,d),I.backtrack=!0}if(V.comma!==!0&&V.dots!==!0){let de=I.output.slice(0,V.outputIndex),be=I.tokens.slice(V.tokensIndex);V.value=V.output="\\{",O=ee="\\}",I.output=de;for(let ge of be)I.output+=ge.output||ge.value}Y({type:"brace",value:O,output:ee}),Fe("braces"),X.pop();continue}if(O==="|"){J.length>0&&J[J.length-1].conditions++,Y({type:"text",value:O});continue}if(O===","){let V=O,ee=X[X.length-1];ee&&N[N.length-1]==="braces"&&(ee.comma=!0,V="|"),Y({type:"comma",value:O,output:V});continue}if(O==="/"){if(b.type==="dot"&&I.index===I.start+1){I.start=I.index+1,I.consumed="",I.output="",m.pop(),b=y;continue}Y({type:"slash",value:O,output:R});continue}if(O==="."){if(I.braces>0&&b.type==="dot"){b.value==="."&&(b.output=P);let V=X[X.length-1];b.type="dots",b.output+=O,b.value+=O,V.dots=!0;continue}if(I.braces+I.parens===0&&b.type!=="bos"&&b.type!=="slash"){Y({type:"text",value:O,output:P});continue}Y({type:"dot",value:O,output:P});continue}if(O==="?"){if(!(b&&b.value==="(")&&d.noextglob!==!0&&K()==="("&&K(2)!=="?"){pe("qmark",O);continue}if(b&&b.type==="paren"){let ee=K(),de=O;if(ee==="<"&&!u.supportsLookbehinds())throw new Error("Node.js v10 or higher is required for regex lookbehinds");(b.value==="("&&!/[!=<:]/.test(ee)||ee==="<"&&!/<([!=]|\w+>)/.test(ce()))&&(de=`\\${O}`),Y({type:"text",value:O,output:de});continue}if(d.dot!==!0&&(b.type==="slash"||b.type==="bos")){Y({type:"qmark",value:O,output:k});continue}Y({type:"qmark",value:O,output:_});continue}if(O==="!"){if(d.noextglob!==!0&&K()==="("&&(K(2)!=="?"||!/[!=<:]/.test(K(3)))){pe("negate",O);continue}if(d.nonegate!==!0&&I.index===0){Ae();continue}}if(O==="+"){if(d.noextglob!==!0&&K()==="("&&K(2)!=="?"){pe("plus",O);continue}if(b&&b.value==="("||d.regex===!1){Y({type:"plus",value:O,output:E});continue}if(b&&(b.type==="bracket"||b.type==="paren"||b.type==="brace")||I.parens>0){Y({type:"plus",value:O});continue}Y({type:"plus",value:E});continue}if(O==="@"){if(d.noextglob!==!0&&K()==="("&&K(2)!=="?"){Y({type:"at",extglob:!0,value:O,output:""});continue}Y({type:"text",value:O});continue}if(O!=="*"){(O==="$"||O==="^")&&(O=`\\${O}`);let V=i.exec(ce());V&&(O+=V[0],I.index+=V[0].length),Y({type:"text",value:O});continue}if(b&&(b.type==="globstar"||b.star===!0)){b.type="star",b.star=!0,b.value+=O,b.output=q,I.backtrack=!0,I.globstar=!0,ae(O);continue}let z=ce();if(d.noextglob!==!0&&/^\([^?]/.test(z)){pe("star",O);continue}if(b.type==="star"){if(d.noglobstar===!0){ae(O);continue}let V=b.prev,ee=V.prev,de=V.type==="slash"||V.type==="bos",be=ee&&(ee.type==="star"||ee.type==="globstar");if(d.bash===!0&&(!de||z[0]&&z[0]!=="/")){Y({type:"star",value:O,output:""});continue}let ge=I.braces>0&&(V.type==="comma"||V.type==="brace"),pu=J.length&&(V.type==="pipe"||V.type==="paren");if(!de&&V.type!=="paren"&&!ge&&!pu){Y({type:"star",value:O,output:""});continue}for(;z.slice(0,3)==="/**";){let wr=f[I.index+4];if(wr&&wr!=="/")break;z=z.slice(3),ae("/**",3)}if(V.type==="bos"&&U()){b.type="globstar",b.value+=O,b.output=M(d),I.output=b.output,I.globstar=!0,ae(O);continue}if(V.type==="slash"&&V.prev.type!=="bos"&&!be&&U()){I.output=I.output.slice(0,-(V.output+b.output).length),V.output=`(?:${V.output}`,b.type="globstar",b.output=M(d)+(d.strictSlashes?")":"|$)"),b.value+=O,I.globstar=!0,I.output+=V.output+b.output,ae(O);continue}if(V.type==="slash"&&V.prev.type!=="bos"&&z[0]==="/"){let wr=z[1]!==void 0?"|$":"";I.output=I.output.slice(0,-(V.output+b.output).length),V.output=`(?:${V.output}`,b.type="globstar",b.output=`${M(d)}${R}|${R}${wr})`,b.value+=O,I.output+=V.output+b.output,I.globstar=!0,ae(O+le()),Y({type:"slash",value:"/",output:""});continue}if(V.type==="bos"&&z[0]==="/"){b.type="globstar",b.value+=O,b.output=`(?:^|${R}|${M(d)}${R})`,I.output=b.output,I.globstar=!0,ae(O+le()),Y({type:"slash",value:"/",output:""});continue}I.output=I.output.slice(0,-b.output.length),b.type="globstar",b.output=M(d),b.value+=O,I.output+=b.output,I.globstar=!0,ae(O);continue}let ie={type:"star",value:O,output:q};if(d.bash===!0){ie.output=".*?",(b.type==="bos"||b.type==="slash")&&(ie.output=H+ie.output),Y(ie);continue}if(b&&(b.type==="bracket"||b.type==="paren")&&d.regex===!0){ie.output=O,Y(ie);continue}(I.index===I.start||b.type==="slash"||b.type==="dot")&&(b.type==="dot"?(I.output+=g,b.output+=g):d.dot===!0?(I.output+=A,b.output+=A):(I.output+=H,b.output+=H),K()!=="*"&&(I.output+=L,b.output+=L)),Y(ie)}for(;I.brackets>0;){if(d.strictBrackets===!0)throw new SyntaxError(l("closing","]"));I.output=u.escapeLast(I.output,"["),Fe("brackets")}for(;I.parens>0;){if(d.strictBrackets===!0)throw new SyntaxError(l("closing",")"));I.output=u.escapeLast(I.output,"("),Fe("parens")}for(;I.braces>0;){if(d.strictBrackets===!0)throw new SyntaxError(l("closing","}"));I.output=u.escapeLast(I.output,"{"),Fe("braces")}if(d.strictSlashes!==!0&&(b.type==="star"||b.type==="bracket")&&Y({type:"maybe_slash",value:"",output:`${R}?`}),I.backtrack===!0){I.output="";for(let z of I.tokens)I.output+=z.output!=null?z.output:z.value,z.suffix&&(I.output+=z.suffix)}return I};D.fastpaths=(f,h)=>{let d={...h},p=typeof d.maxLength=="number"?Math.min(n,d.maxLength):n,v=f.length;if(v>p)throw new SyntaxError(`Input length: ${v}, exceeds maximum allowed length: ${p}`);f=s[f]||f;let y=u.isWindows(h),{DOT_LITERAL:m,SLASH_LITERAL:C,ONE_CHAR:S,DOTS_SLASH:F,NO_DOT:B,NO_DOTS:P,NO_DOTS_SLASH:E,STAR:R,START_ANCHOR:L}=r.globChars(y),w=d.dot?P:B,T=d.dot?E:B,g=d.capture?"":"?:",A={negated:!1,prefix:""},_=d.bash===!0?".*?":R;d.capture&&(_=`(${_})`);let k=H=>H.noglobstar===!0?_:`(${g}(?:(?!${L}${H.dot?F:m}).)*?)`,x=H=>{switch(H){case"*":return`${w}${S}${_}`;case".*":return`${m}${S}${_}`;case"*.*":return`${w}${_}${m}${S}${_}`;case"*/*":return`${w}${_}${C}${S}${T}${_}`;case"**":return w+k(d);case"**/*":return`(?:${w}${k(d)}${C})?${T}${S}${_}`;case"**/*.*":return`(?:${w}${k(d)}${C})?${T}${_}${m}${S}${_}`;case"**/.*":return`(?:${w}${k(d)}${C})?${m}${S}${_}`;default:{let j=/^(.*?)\.(\w+)$/.exec(H);if(!j)return;let q=x(j[1]);return q?q+m+j[2]:void 0}}},W=u.removePrefix(f,A),M=x(W);return M&&d.strictSlashes!==!0&&(M+=`${C}?`),M},t.exports=D}}),Ml=G({"node_modules/micromatch/node_modules/picomatch/lib/picomatch.js"(e,t){"use strict";var r=oe("path"),u=jl(),n=$l(),a=ru(),i=tu(),o=c=>c&&typeof c=="object"&&!Array.isArray(c),s=(c,l,D=!1)=>{if(Array.isArray(c)){let C=c.map(F=>s(F,l,D));return F=>{for(let B of C){let P=B(F);if(P)return P}return!1}}let f=o(c)&&c.tokens&&c.input;if(c===""||typeof c!="string"&&!f)throw new TypeError("Expected pattern to be a non-empty string");let h=l||{},d=a.isWindows(l),p=f?s.compileRe(c,l):s.makeRe(c,l,!1,!0),v=p.state;delete p.state;let y=()=>!1;if(h.ignore){let C={...l,ignore:null,onMatch:null,onResult:null};y=s(h.ignore,C,D)}let m=(C,S=!1)=>{let{isMatch:F,match:B,output:P}=s.test(C,p,l,{glob:c,posix:d}),E={glob:c,state:v,regex:p,posix:d,input:C,output:P,match:B,isMatch:F};return typeof h.onResult=="function"&&h.onResult(E),F===!1?(E.isMatch=!1,S?E:!1):y(C)?(typeof h.onIgnore=="function"&&h.onIgnore(E),E.isMatch=!1,S?E:!1):(typeof h.onMatch=="function"&&h.onMatch(E),S?E:!0)};return D&&(m.state=v),m};s.test=(c,l,D,{glob:f,posix:h}={})=>{if(typeof c!="string")throw new TypeError("Expected input to be a string");if(c==="")return{isMatch:!1,output:""};let d=D||{},p=d.format||(h?a.toPosixSlashes:null),v=c===f,y=v&&p?p(c):c;return v===!1&&(y=p?p(c):c,v=y===f),(v===!1||d.capture===!0)&&(d.matchBase===!0||d.basename===!0?v=s.matchBase(c,l,D,h):v=l.exec(y)),{isMatch:!!v,match:v,output:y}},s.matchBase=(c,l,D,f=a.isWindows(D))=>(l instanceof RegExp?l:s.makeRe(l,D)).test(r.basename(c)),s.isMatch=(c,l,D)=>s(l,D)(c),s.parse=(c,l)=>Array.isArray(c)?c.map(D=>s.parse(D,l)):n(c,{...l,fastpaths:!1}),s.scan=(c,l)=>u(c,l),s.compileRe=(c,l,D=!1,f=!1)=>{if(D===!0)return c.output;let h=l||{},d=h.contains?"":"^",p=h.contains?"":"$",v=`${d}(?:${c.output})${p}`;c&&c.negated===!0&&(v=`^(?!${v}).*$`);let y=s.toRegex(v,l);return f===!0&&(y.state=c),y},s.makeRe=(c,l={},D=!1,f=!1)=>{if(!c||typeof c!="string")throw new TypeError("Expected a non-empty string");let h={negated:!1,fastpaths:!0};return l.fastpaths!==!1&&(c[0]==="."||c[0]==="*")&&(h.output=n.fastpaths(c,l)),h.output||(h=n(c,l)),s.compileRe(h,l,D,f)},s.toRegex=(c,l)=>{try{let D=l||{};return new RegExp(c,D.flags||(D.nocase?"i":""))}catch(D){if(l&&l.debug===!0)throw D;return/$^/}},s.constants=i,t.exports=s}}),Hl=G({"node_modules/micromatch/node_modules/picomatch/index.js"(e,t){"use strict";t.exports=Ml()}}),yi=G({"node_modules/micromatch/index.js"(e,t){"use strict";var r=oe("util"),u=xl(),n=Hl(),a=ru(),i=c=>c===""||c==="./",o=c=>{let l=c.indexOf("{");return l>-1&&c.indexOf("}",l)>-1},s=(c,l,D)=>{l=[].concat(l),c=[].concat(c);let f=new Set,h=new Set,d=new Set,p=0,v=C=>{d.add(C.output),D&&D.onResult&&D.onResult(C)};for(let C=0;C<l.length;C++){let S=n(String(l[C]),{...D,onResult:v},!0),F=S.state.negated||S.state.negatedExtglob;F&&p++;for(let B of c){let P=S(B,!0);(F?!P.isMatch:P.isMatch)&&(F?f.add(P.output):(f.delete(P.output),h.add(P.output)))}}let m=(p===l.length?[...d]:[...h]).filter(C=>!f.has(C));if(D&&m.length===0){if(D.failglob===!0)throw new Error(`No matches found for "${l.join(", ")}"`);if(D.nonull===!0||D.nullglob===!0)return D.unescape?l.map(C=>C.replace(/\\/g,"")):l}return m};s.match=s,s.matcher=(c,l)=>n(c,l),s.isMatch=(c,l,D)=>n(l,D)(c),s.any=s.isMatch,s.not=(c,l,D={})=>{l=[].concat(l).map(String);let f=new Set,h=[],d=v=>{D.onResult&&D.onResult(v),h.push(v.output)},p=new Set(s(c,l,{...D,onResult:d}));for(let v of h)p.has(v)||f.add(v);return[...f]},s.contains=(c,l,D)=>{if(typeof c!="string")throw new TypeError(`Expected a string: "${r.inspect(c)}"`);if(Array.isArray(l))return l.some(f=>s.contains(c,f,D));if(typeof l=="string"){if(i(c)||i(l))return!1;if(c.includes(l)||c.startsWith("./")&&c.slice(2).includes(l))return!0}return s.isMatch(c,l,{...D,contains:!0})},s.matchKeys=(c,l,D)=>{if(!a.isObject(c))throw new TypeError("Expected the first argument to be an object");let f=s(Object.keys(c),l,D),h={};for(let d of f)h[d]=c[d];return h},s.some=(c,l,D)=>{let f=[].concat(c);for(let h of[].concat(l)){let d=n(String(h),D);if(f.some(p=>d(p)))return!0}return!1},s.every=(c,l,D)=>{let f=[].concat(c);for(let h of[].concat(l)){let d=n(String(h),D);if(!f.every(p=>d(p)))return!1}return!0},s.all=(c,l,D)=>{if(typeof c!="string")throw new TypeError(`Expected a string: "${r.inspect(c)}"`);return[].concat(l).every(f=>n(f,D)(c))},s.capture=(c,l,D)=>{let f=a.isWindows(D),d=n.makeRe(String(c),{...D,capture:!0}).exec(f?a.toPosixSlashes(l):l);if(d)return d.slice(1).map(p=>p===void 0?"":p)},s.makeRe=(...c)=>n.makeRe(...c),s.scan=(...c)=>n.scan(...c),s.parse=(c,l)=>{let D=[];for(let f of[].concat(c||[]))for(let h of u(String(f),l))D.push(n.parse(h,l));return D},s.braces=(c,l)=>{if(typeof c!="string")throw new TypeError("Expected a string");return l&&l.nobrace===!0||!o(c)?[c]:u(c,l)},s.braceExpand=(c,l)=>{if(typeof c!="string")throw new TypeError("Expected a string");return s.braces(c,{...l,expand:!0})},s.hasBraces=o,t.exports=s}}),Wl=G({"node_modules/fast-glob/out/utils/pattern.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.isAbsolute=e.partitionAbsoluteAndRelative=e.removeDuplicateSlashes=e.matchAny=e.convertPatternsToRe=e.makeRe=e.getPatternParts=e.expandBraceExpansion=e.expandPatternsWithBraceExpansion=e.isAffectDepthOfReadingPattern=e.endsWithSlashGlobStar=e.hasGlobStar=e.getBaseDirectory=e.isPatternRelatedToParentDirectory=e.getPatternsOutsideCurrentDirectory=e.getPatternsInsideCurrentDirectory=e.getPositivePatterns=e.getNegativePatterns=e.isPositivePattern=e.isNegativePattern=e.convertToNegativePattern=e.convertToPositivePattern=e.isDynamicPattern=e.isStaticPattern=void 0;var t=oe("path"),r=Rl(),u=yi(),n="**",a="\\",i=/[*?]|^!/,o=/\[[^[]*]/,s=/(?:^|[^!*+?@])\([^(]*\|[^|]*\)/,c=/[!*+?@]\([^(]*\)/,l=/,|\.\./,D=/(?!^)\/{2,}/g;function f(j,q={}){return!h(j,q)}e.isStaticPattern=f;function h(j,q={}){return j===""?!1:!!(q.caseSensitiveMatch===!1||j.includes(a)||i.test(j)||o.test(j)||s.test(j)||q.extglob!==!1&&c.test(j)||q.braceExpansion!==!1&&d(j))}e.isDynamicPattern=h;function d(j){let q=j.indexOf("{");if(q===-1)return!1;let I=j.indexOf("}",q+1);if(I===-1)return!1;let J=j.slice(q,I);return l.test(J)}function p(j){return y(j)?j.slice(1):j}e.convertToPositivePattern=p;function v(j){return"!"+j}e.convertToNegativePattern=v;function y(j){return j.startsWith("!")&&j[1]!=="("}e.isNegativePattern=y;function m(j){return!y(j)}e.isPositivePattern=m;function C(j){return j.filter(y)}e.getNegativePatterns=C;function S(j){return j.filter(m)}e.getPositivePatterns=S;function F(j){return j.filter(q=>!P(q))}e.getPatternsInsideCurrentDirectory=F;function B(j){return j.filter(P)}e.getPatternsOutsideCurrentDirectory=B;function P(j){return j.startsWith("..")||j.startsWith("./..")}e.isPatternRelatedToParentDirectory=P;function E(j){return r(j,{flipBackslashes:!1})}e.getBaseDirectory=E;function R(j){return j.includes(n)}e.hasGlobStar=R;function L(j){return j.endsWith("/"+n)}e.endsWithSlashGlobStar=L;function w(j){let q=t.basename(j);return L(j)||f(q)}e.isAffectDepthOfReadingPattern=w;function T(j){return j.reduce((q,I)=>q.concat(g(I)),[])}e.expandPatternsWithBraceExpansion=T;function g(j){let q=u.braces(j,{expand:!0,nodupes:!0,keepEscaping:!0});return q.sort((I,J)=>I.length-J.length),q.filter(I=>I!=="")}e.expandBraceExpansion=g;function A(j,q){let{parts:I}=u.scan(j,Object.assign(Object.assign({},q),{parts:!0}));return I.length===0&&(I=[j]),I[0].startsWith("/")&&(I[0]=I[0].slice(1),I.unshift("")),I}e.getPatternParts=A;function _(j,q){return u.makeRe(j,q)}e.makeRe=_;function k(j,q){return j.map(I=>_(I,q))}e.convertPatternsToRe=k;function x(j,q){return q.some(I=>I.test(j))}e.matchAny=x;function W(j){return j.replace(D,"/")}e.removeDuplicateSlashes=W;function M(j){let q=[],I=[];for(let J of j)H(J)?q.push(J):I.push(J);return[q,I]}e.partitionAbsoluteAndRelative=M;function H(j){return t.isAbsolute(j)}e.isAbsolute=H}}),Gl=G({"node_modules/merge2/index.js"(e,t){"use strict";var r=oe("stream"),u=r.PassThrough,n=Array.prototype.slice;t.exports=a;function a(){let o=[],s=n.call(arguments),c=!1,l=s[s.length-1];l&&!Array.isArray(l)&&l.pipe==null?s.pop():l={};let D=l.end!==!1,f=l.pipeError===!0;l.objectMode==null&&(l.objectMode=!0),l.highWaterMark==null&&(l.highWaterMark=64*1024);let h=u(l);function d(){for(let y=0,m=arguments.length;y<m;y++)o.push(i(arguments[y],l));return p(),this}function p(){if(c)return;c=!0;let y=o.shift();if(!y){process.nextTick(v);return}Array.isArray(y)||(y=[y]);let m=y.length+1;function C(){--m>0||(c=!1,p())}function S(F){function B(){F.removeListener("merge2UnpipeEnd",B),F.removeListener("end",B),f&&F.removeListener("error",P),C()}function P(E){h.emit("error",E)}if(F._readableState.endEmitted)return C();F.on("merge2UnpipeEnd",B),F.on("end",B),f&&F.on("error",P),F.pipe(h,{end:!1}),F.resume()}for(let F=0;F<y.length;F++)S(y[F]);C()}function v(){c=!1,h.emit("queueDrain"),D&&h.end()}return h.setMaxListeners(0),h.add=d,h.on("unpipe",function(y){y.emit("merge2UnpipeEnd")}),s.length&&d.apply(null,s),h}function i(o,s){if(Array.isArray(o))for(let c=0,l=o.length;c<l;c++)o[c]=i(o[c],s);else{if(!o._readableState&&o.pipe&&(o=o.pipe(u(s))),!o._readableState||!o.pause||!o.pipe)throw new Error("Only readable stream can be merged.");o.pause()}return o}}}),Ul=G({"node_modules/fast-glob/out/utils/stream.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.merge=void 0;var t=Gl();function r(n){let a=t(n);return n.forEach(i=>{i.once("error",o=>a.emit("error",o))}),a.once("close",()=>u(n)),a.once("end",()=>u(n)),a}e.merge=r;function u(n){n.forEach(a=>a.emit("close"))}}}),ql=G({"node_modules/fast-glob/out/utils/string.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.isEmpty=e.isString=void 0;function t(u){return typeof u=="string"}e.isString=t;function r(u){return u===""}e.isEmpty=r}}),_t=G({"node_modules/fast-glob/out/utils/index.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.string=e.stream=e.pattern=e.path=e.fs=e.errno=e.array=void 0;var t=_l();e.array=t;var r=bl();e.errno=r;var u=Bl();e.fs=u;var n=wl();e.path=n;var a=Wl();e.pattern=a;var i=Ul();e.stream=i;var o=ql();e.string=o}}),Vl=G({"node_modules/fast-glob/out/managers/tasks.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.convertPatternGroupToTask=e.convertPatternGroupsToTasks=e.groupPatternsByBaseDirectory=e.getNegativePatternsAsPositive=e.getPositivePatterns=e.convertPatternsToTasks=e.generate=void 0;var t=_t();function r(l,D){let f=u(l,D),h=u(D.ignore,D),d=a(f),p=i(f,h),v=d.filter(S=>t.pattern.isStaticPattern(S,D)),y=d.filter(S=>t.pattern.isDynamicPattern(S,D)),m=n(v,p,!1),C=n(y,p,!0);return m.concat(C)}e.generate=r;function u(l,D){let f=l;return D.braceExpansion&&(f=t.pattern.expandPatternsWithBraceExpansion(f)),D.baseNameMatch&&(f=f.map(h=>h.includes("/")?h:`**/${h}`)),f.map(h=>t.pattern.removeDuplicateSlashes(h))}function n(l,D,f){let h=[],d=t.pattern.getPatternsOutsideCurrentDirectory(l),p=t.pattern.getPatternsInsideCurrentDirectory(l),v=o(d),y=o(p);return h.push(...s(v,D,f)),"."in y?h.push(c(".",p,D,f)):h.push(...s(y,D,f)),h}e.convertPatternsToTasks=n;function a(l){return t.pattern.getPositivePatterns(l)}e.getPositivePatterns=a;function i(l,D){return t.pattern.getNegativePatterns(l).concat(D).map(t.pattern.convertToPositivePattern)}e.getNegativePatternsAsPositive=i;function o(l){let D={};return l.reduce((f,h)=>{let d=t.pattern.getBaseDirectory(h);return d in f?f[d].push(h):f[d]=[h],f},D)}e.groupPatternsByBaseDirectory=o;function s(l,D,f){return Object.keys(l).map(h=>c(h,l[h],D,f))}e.convertPatternGroupsToTasks=s;function c(l,D,f,h){return{dynamic:h,positive:D,negative:f,base:l,patterns:[].concat(D,f.map(t.pattern.convertToNegativePattern))}}e.convertPatternGroupToTask=c}}),Kl=G({"node_modules/@nodelib/fs.stat/out/providers/async.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.read=void 0;function t(n,a,i){a.fs.lstat(n,(o,s)=>{if(o!==null){r(i,o);return}if(!s.isSymbolicLink()||!a.followSymbolicLink){u(i,s);return}a.fs.stat(n,(c,l)=>{if(c!==null){if(a.throwErrorOnBrokenSymbolicLink){r(i,c);return}u(i,s);return}a.markSymbolicLink&&(l.isSymbolicLink=()=>!0),u(i,l)})})}e.read=t;function r(n,a){n(a)}function u(n,a){n(null,a)}}}),zl=G({"node_modules/@nodelib/fs.stat/out/providers/sync.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.read=void 0;function t(r,u){let n=u.fs.lstatSync(r);if(!n.isSymbolicLink()||!u.followSymbolicLink)return n;try{let a=u.fs.statSync(r);return u.markSymbolicLink&&(a.isSymbolicLink=()=>!0),a}catch(a){if(!u.throwErrorOnBrokenSymbolicLink)return n;throw a}}e.read=t}}),Yl=G({"node_modules/@nodelib/fs.stat/out/adapters/fs.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.createFileSystemAdapter=e.FILE_SYSTEM_ADAPTER=void 0;var t=oe("fs");e.FILE_SYSTEM_ADAPTER={lstat:t.lstat,stat:t.stat,lstatSync:t.lstatSync,statSync:t.statSync};function r(u){return u===void 0?e.FILE_SYSTEM_ADAPTER:Object.assign(Object.assign({},e.FILE_SYSTEM_ADAPTER),u)}e.createFileSystemAdapter=r}}),Xl=G({"node_modules/@nodelib/fs.stat/out/settings.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=Yl(),r=class{constructor(u={}){this._options=u,this.followSymbolicLink=this._getValue(this._options.followSymbolicLink,!0),this.fs=t.createFileSystemAdapter(this._options.fs),this.markSymbolicLink=this._getValue(this._options.markSymbolicLink,!1),this.throwErrorOnBrokenSymbolicLink=this._getValue(this._options.throwErrorOnBrokenSymbolicLink,!0)}_getValue(u,n){return u??n}};e.default=r}}),ur=G({"node_modules/@nodelib/fs.stat/out/index.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.statSync=e.stat=e.Settings=void 0;var t=Kl(),r=zl(),u=Xl();e.Settings=u.default;function n(o,s,c){if(typeof s=="function"){t.read(o,i(),s);return}t.read(o,i(s),c)}e.stat=n;function a(o,s){let c=i(s);return r.read(o,c)}e.statSync=a;function i(o={}){return o instanceof u.default?o:new u.default(o)}}}),Jl=G({"node_modules/queue-microtask/index.js"(e,t){var r;t.exports=typeof queueMicrotask=="function"?queueMicrotask.bind(typeof window<"u"?window:global):u=>(r||(r=Promise.resolve())).then(u).catch(n=>setTimeout(()=>{throw n},0))}}),Ql=G({"node_modules/run-parallel/index.js"(e,t){t.exports=u;var r=Jl();function u(n,a){let i,o,s,c=!0;Array.isArray(n)?(i=[],o=n.length):(s=Object.keys(n),i={},o=s.length);function l(f){function h(){a&&a(f,i),a=null}c?r(h):h()}function D(f,h,d){i[f]=d,(--o===0||h)&&l(h)}o?s?s.forEach(function(f){n[f](function(h,d){D(f,h,d)})}):n.forEach(function(f,h){f(function(d,p){D(h,d,p)})}):l(null),c=!1}}}),_i=G({"node_modules/@nodelib/fs.scandir/out/constants.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.IS_SUPPORT_READDIR_WITH_FILE_TYPES=void 0;var t=process.versions.node.split(".");if(t[0]===void 0||t[1]===void 0)throw new Error(`Unexpected behavior. The 'process.versions.node' variable has invalid value: ${process.versions.node}`);var r=Number.parseInt(t[0],10),u=Number.parseInt(t[1],10),n=10,a=10,i=r>n,o=r===n&&u>=a;e.IS_SUPPORT_READDIR_WITH_FILE_TYPES=i||o}}),Zl=G({"node_modules/@nodelib/fs.scandir/out/utils/fs.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.createDirentFromStats=void 0;var t=class{constructor(u,n){this.name=u,this.isBlockDevice=n.isBlockDevice.bind(n),this.isCharacterDevice=n.isCharacterDevice.bind(n),this.isDirectory=n.isDirectory.bind(n),this.isFIFO=n.isFIFO.bind(n),this.isFile=n.isFile.bind(n),this.isSocket=n.isSocket.bind(n),this.isSymbolicLink=n.isSymbolicLink.bind(n)}};function r(u,n){return new t(u,n)}e.createDirentFromStats=r}}),bi=G({"node_modules/@nodelib/fs.scandir/out/utils/index.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.fs=void 0;var t=Zl();e.fs=t}}),Bi=G({"node_modules/@nodelib/fs.scandir/out/providers/common.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.joinPathSegments=void 0;function t(r,u,n){return r.endsWith(n)?r+u:r+n+u}e.joinPathSegments=t}}),ec=G({"node_modules/@nodelib/fs.scandir/out/providers/async.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.readdir=e.readdirWithFileTypes=e.read=void 0;var t=ur(),r=Ql(),u=_i(),n=bi(),a=Bi();function i(f,h,d){if(!h.stats&&u.IS_SUPPORT_READDIR_WITH_FILE_TYPES){o(f,h,d);return}c(f,h,d)}e.read=i;function o(f,h,d){h.fs.readdir(f,{withFileTypes:!0},(p,v)=>{if(p!==null){l(d,p);return}let y=v.map(C=>({dirent:C,name:C.name,path:a.joinPathSegments(f,C.name,h.pathSegmentSeparator)}));if(!h.followSymbolicLinks){D(d,y);return}let m=y.map(C=>s(C,h));r(m,(C,S)=>{if(C!==null){l(d,C);return}D(d,S)})})}e.readdirWithFileTypes=o;function s(f,h){return d=>{if(!f.dirent.isSymbolicLink()){d(null,f);return}h.fs.stat(f.path,(p,v)=>{if(p!==null){if(h.throwErrorOnBrokenSymbolicLink){d(p);return}d(null,f);return}f.dirent=n.fs.createDirentFromStats(f.name,v),d(null,f)})}}function c(f,h,d){h.fs.readdir(f,(p,v)=>{if(p!==null){l(d,p);return}let y=v.map(m=>{let C=a.joinPathSegments(f,m,h.pathSegmentSeparator);return S=>{t.stat(C,h.fsStatSettings,(F,B)=>{if(F!==null){S(F);return}let P={name:m,path:C,dirent:n.fs.createDirentFromStats(m,B)};h.stats&&(P.stats=B),S(null,P)})}});r(y,(m,C)=>{if(m!==null){l(d,m);return}D(d,C)})})}e.readdir=c;function l(f,h){f(h)}function D(f,h){f(null,h)}}}),tc=G({"node_modules/@nodelib/fs.scandir/out/providers/sync.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.readdir=e.readdirWithFileTypes=e.read=void 0;var t=ur(),r=_i(),u=bi(),n=Bi();function a(s,c){return!c.stats&&r.IS_SUPPORT_READDIR_WITH_FILE_TYPES?i(s,c):o(s,c)}e.read=a;function i(s,c){return c.fs.readdirSync(s,{withFileTypes:!0}).map(D=>{let f={dirent:D,name:D.name,path:n.joinPathSegments(s,D.name,c.pathSegmentSeparator)};if(f.dirent.isSymbolicLink()&&c.followSymbolicLinks)try{let h=c.fs.statSync(f.path);f.dirent=u.fs.createDirentFromStats(f.name,h)}catch(h){if(c.throwErrorOnBrokenSymbolicLink)throw h}return f})}e.readdirWithFileTypes=i;function o(s,c){return c.fs.readdirSync(s).map(D=>{let f=n.joinPathSegments(s,D,c.pathSegmentSeparator),h=t.statSync(f,c.fsStatSettings),d={name:D,path:f,dirent:u.fs.createDirentFromStats(D,h)};return c.stats&&(d.stats=h),d})}e.readdir=o}}),rc=G({"node_modules/@nodelib/fs.scandir/out/adapters/fs.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.createFileSystemAdapter=e.FILE_SYSTEM_ADAPTER=void 0;var t=oe("fs");e.FILE_SYSTEM_ADAPTER={lstat:t.lstat,stat:t.stat,lstatSync:t.lstatSync,statSync:t.statSync,readdir:t.readdir,readdirSync:t.readdirSync};function r(u){return u===void 0?e.FILE_SYSTEM_ADAPTER:Object.assign(Object.assign({},e.FILE_SYSTEM_ADAPTER),u)}e.createFileSystemAdapter=r}}),uc=G({"node_modules/@nodelib/fs.scandir/out/settings.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=oe("path"),r=ur(),u=rc(),n=class{constructor(a={}){this._options=a,this.followSymbolicLinks=this._getValue(this._options.followSymbolicLinks,!1),this.fs=u.createFileSystemAdapter(this._options.fs),this.pathSegmentSeparator=this._getValue(this._options.pathSegmentSeparator,t.sep),this.stats=this._getValue(this._options.stats,!1),this.throwErrorOnBrokenSymbolicLink=this._getValue(this._options.throwErrorOnBrokenSymbolicLink,!0),this.fsStatSettings=new r.Settings({followSymbolicLink:this.followSymbolicLinks,fs:this.fs,throwErrorOnBrokenSymbolicLink:this.throwErrorOnBrokenSymbolicLink})}_getValue(a,i){return a??i}};e.default=n}}),pn=G({"node_modules/@nodelib/fs.scandir/out/index.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.Settings=e.scandirSync=e.scandir=void 0;var t=ec(),r=tc(),u=uc();e.Settings=u.default;function n(o,s,c){if(typeof s=="function"){t.read(o,i(),s);return}t.read(o,i(s),c)}e.scandir=n;function a(o,s){let c=i(s);return r.read(o,c)}e.scandirSync=a;function i(o={}){return o instanceof u.default?o:new u.default(o)}}}),nc=G({"node_modules/reusify/reusify.js"(e,t){"use strict";function r(u){var n=new u,a=n;function i(){var s=n;return s.next?n=s.next:(n=new u,a=n),s.next=null,s}function o(s){a.next=s,a=s}return{get:i,release:o}}t.exports=r}}),ac=G({"node_modules/fastq/queue.js"(e,t){"use strict";var r=nc();function u(o,s,c){if(typeof o=="function"&&(c=s,s=o,o=null),!(c>=1))throw new Error("fastqueue concurrency must be equal to or greater than 1");var l=r(a),D=null,f=null,h=0,d=null,p={push:B,drain:n,saturated:n,pause:y,paused:!1,get concurrency(){return c},set concurrency(T){if(!(T>=1))throw new Error("fastqueue concurrency must be equal to or greater than 1");if(c=T,!p.paused)for(;D&&h<c;)h++,E()},running:v,resume:S,idle:F,length:m,getQueue:C,unshift:P,empty:n,kill:R,killAndDrain:L,error:w};return p;function v(){return h}function y(){p.paused=!0}function m(){for(var T=D,g=0;T;)T=T.next,g++;return g}function C(){for(var T=D,g=[];T;)g.push(T.value),T=T.next;return g}function S(){if(p.paused){if(p.paused=!1,D===null){h++,E();return}for(;D&&h<c;)h++,E()}}function F(){return h===0&&p.length()===0}function B(T,g){var A=l.get();A.context=o,A.release=E,A.value=T,A.callback=g||n,A.errorHandler=d,h>=c||p.paused?f?(f.next=A,f=A):(D=A,f=A,p.saturated()):(h++,s.call(o,A.value,A.worked))}function P(T,g){var A=l.get();A.context=o,A.release=E,A.value=T,A.callback=g||n,A.errorHandler=d,h>=c||p.paused?D?(A.next=D,D=A):(D=A,f=A,p.saturated()):(h++,s.call(o,A.value,A.worked))}function E(T){T&&l.release(T);var g=D;g&&h<=c?p.paused?h--:(f===D&&(f=null),D=g.next,g.next=null,s.call(o,g.value,g.worked),f===null&&p.empty()):--h===0&&p.drain()}function R(){D=null,f=null,p.drain=n}function L(){D=null,f=null,p.drain(),p.drain=n}function w(T){d=T}}function n(){}function a(){this.value=null,this.callback=n,this.next=null,this.release=n,this.context=null,this.errorHandler=null;var o=this;this.worked=function(c,l){var D=o.callback,f=o.errorHandler,h=o.value;o.value=null,o.callback=n,o.errorHandler&&f(c,h),D.call(o.context,c,l),o.release(o)}}function i(o,s,c){typeof o=="function"&&(c=s,s=o,o=null);function l(y,m){s.call(this,y).then(function(C){m(null,C)},m)}var D=u(o,l,c),f=D.push,h=D.unshift;return D.push=d,D.unshift=p,D.drained=v,D;function d(y){var m=new Promise(function(C,S){f(y,function(F,B){if(F){S(F);return}C(B)})});return m.catch(n),m}function p(y){var m=new Promise(function(C,S){h(y,function(F,B){if(F){S(F);return}C(B)})});return m.catch(n),m}function v(){var y=new Promise(function(m){process.nextTick(function(){if(D.idle())m();else{var C=D.drain;D.drain=function(){typeof C=="function"&&C(),m(),D.drain=C}}})});return y}}t.exports=u,t.exports.promise=i}}),Fn=G({"node_modules/@nodelib/fs.walk/out/readers/common.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.joinPathSegments=e.replacePathSegmentSeparator=e.isAppliedFilter=e.isFatalError=void 0;function t(a,i){return a.errorFilter===null?!0:!a.errorFilter(i)}e.isFatalError=t;function r(a,i){return a===null||a(i)}e.isAppliedFilter=r;function u(a,i){return a.split(/[/\\]/).join(i)}e.replacePathSegmentSeparator=u;function n(a,i,o){return a===""?i:a.endsWith(o)?a+i:a+o+i}e.joinPathSegments=n}}),wi=G({"node_modules/@nodelib/fs.walk/out/readers/reader.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=Fn(),r=class{constructor(u,n){this._root=u,this._settings=n,this._root=t.replacePathSegmentSeparator(u,n.pathSegmentSeparator)}};e.default=r}}),Si=G({"node_modules/@nodelib/fs.walk/out/readers/async.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=oe("events"),r=pn(),u=ac(),n=Fn(),a=wi(),i=class extends a.default{constructor(o,s){super(o,s),this._settings=s,this._scandir=r.scandir,this._emitter=new t.EventEmitter,this._queue=u(this._worker.bind(this),this._settings.concurrency),this._isFatalError=!1,this._isDestroyed=!1,this._queue.drain=()=>{this._isFatalError||this._emitter.emit("end")}}read(){return this._isFatalError=!1,this._isDestroyed=!1,setImmediate(()=>{this._pushToQueue(this._root,this._settings.basePath)}),this._emitter}get isDestroyed(){return this._isDestroyed}destroy(){if(this._isDestroyed)throw new Error("The reader is already destroyed");this._isDestroyed=!0,this._queue.killAndDrain()}onEntry(o){this._emitter.on("entry",o)}onError(o){this._emitter.once("error",o)}onEnd(o){this._emitter.once("end",o)}_pushToQueue(o,s){let c={directory:o,base:s};this._queue.push(c,l=>{l!==null&&this._handleError(l)})}_worker(o,s){this._scandir(o.directory,this._settings.fsScandirSettings,(c,l)=>{if(c!==null){s(c,void 0);return}for(let D of l)this._handleEntry(D,o.base);s(null,void 0)})}_handleError(o){this._isDestroyed||!n.isFatalError(this._settings,o)||(this._isFatalError=!0,this._isDestroyed=!0,this._emitter.emit("error",o))}_handleEntry(o,s){if(this._isDestroyed||this._isFatalError)return;let c=o.path;s!==void 0&&(o.path=n.joinPathSegments(s,o.name,this._settings.pathSegmentSeparator)),n.isAppliedFilter(this._settings.entryFilter,o)&&this._emitEntry(o),o.dirent.isDirectory()&&n.isAppliedFilter(this._settings.deepFilter,o)&&this._pushToQueue(c,s===void 0?void 0:o.path)}_emitEntry(o){this._emitter.emit("entry",o)}};e.default=i}}),ic=G({"node_modules/@nodelib/fs.walk/out/providers/async.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=Si(),r=class{constructor(a,i){this._root=a,this._settings=i,this._reader=new t.default(this._root,this._settings),this._storage=[]}read(a){this._reader.onError(i=>{u(a,i)}),this._reader.onEntry(i=>{this._storage.push(i)}),this._reader.onEnd(()=>{n(a,this._storage)}),this._reader.read()}};e.default=r;function u(a,i){a(i)}function n(a,i){a(null,i)}}}),oc=G({"node_modules/@nodelib/fs.walk/out/providers/stream.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=oe("stream"),r=Si(),u=class{constructor(n,a){this._root=n,this._settings=a,this._reader=new r.default(this._root,this._settings),this._stream=new t.Readable({objectMode:!0,read:()=>{},destroy:()=>{this._reader.isDestroyed||this._reader.destroy()}})}read(){return this._reader.onError(n=>{this._stream.emit("error",n)}),this._reader.onEntry(n=>{this._stream.push(n)}),this._reader.onEnd(()=>{this._stream.push(null)}),this._reader.read(),this._stream}};e.default=u}}),sc=G({"node_modules/@nodelib/fs.walk/out/readers/sync.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=pn(),r=Fn(),u=wi(),n=class extends u.default{constructor(){super(...arguments),this._scandir=t.scandirSync,this._storage=[],this._queue=new Set}read(){return this._pushToQueue(this._root,this._settings.basePath),this._handleQueue(),this._storage}_pushToQueue(a,i){this._queue.add({directory:a,base:i})}_handleQueue(){for(let a of this._queue.values())this._handleDirectory(a.directory,a.base)}_handleDirectory(a,i){try{let o=this._scandir(a,this._settings.fsScandirSettings);for(let s of o)this._handleEntry(s,i)}catch(o){this._handleError(o)}}_handleError(a){if(r.isFatalError(this._settings,a))throw a}_handleEntry(a,i){let o=a.path;i!==void 0&&(a.path=r.joinPathSegments(i,a.name,this._settings.pathSegmentSeparator)),r.isAppliedFilter(this._settings.entryFilter,a)&&this._pushToStorage(a),a.dirent.isDirectory()&&r.isAppliedFilter(this._settings.deepFilter,a)&&this._pushToQueue(o,i===void 0?void 0:a.path)}_pushToStorage(a){this._storage.push(a)}};e.default=n}}),lc=G({"node_modules/@nodelib/fs.walk/out/providers/sync.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=sc(),r=class{constructor(u,n){this._root=u,this._settings=n,this._reader=new t.default(this._root,this._settings)}read(){return this._reader.read()}};e.default=r}}),cc=G({"node_modules/@nodelib/fs.walk/out/settings.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=oe("path"),r=pn(),u=class{constructor(n={}){this._options=n,this.basePath=this._getValue(this._options.basePath,void 0),this.concurrency=this._getValue(this._options.concurrency,Number.POSITIVE_INFINITY),this.deepFilter=this._getValue(this._options.deepFilter,null),this.entryFilter=this._getValue(this._options.entryFilter,null),this.errorFilter=this._getValue(this._options.errorFilter,null),this.pathSegmentSeparator=this._getValue(this._options.pathSegmentSeparator,t.sep),this.fsScandirSettings=new r.Settings({followSymbolicLinks:this._options.followSymbolicLinks,fs:this._options.fs,pathSegmentSeparator:this._options.pathSegmentSeparator,stats:this._options.stats,throwErrorOnBrokenSymbolicLink:this._options.throwErrorOnBrokenSymbolicLink})}_getValue(n,a){return n??a}};e.default=u}}),gn=G({"node_modules/@nodelib/fs.walk/out/index.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.Settings=e.walkStream=e.walkSync=e.walk=void 0;var t=ic(),r=oc(),u=lc(),n=cc();e.Settings=n.default;function a(c,l,D){if(typeof l=="function"){new t.default(c,s()).read(l);return}new t.default(c,s(l)).read(D)}e.walk=a;function i(c,l){let D=s(l);return new u.default(c,D).read()}e.walkSync=i;function o(c,l){let D=s(l);return new r.default(c,D).read()}e.walkStream=o;function s(c={}){return c instanceof n.default?c:new n.default(c)}}}),En=G({"node_modules/fast-glob/out/readers/reader.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=oe("path"),r=ur(),u=_t(),n=class{constructor(a){this._settings=a,this._fsStatSettings=new r.Settings({followSymbolicLink:this._settings.followSymbolicLinks,fs:this._settings.fs,throwErrorOnBrokenSymbolicLink:this._settings.followSymbolicLinks})}_getFullEntryPath(a){return t.resolve(this._settings.cwd,a)}_makeEntry(a,i){let o={name:i,path:i,dirent:u.fs.createDirentFromStats(i,a)};return this._settings.stats&&(o.stats=a),o}_isFatalError(a){return!u.errno.isEnoentCodeError(a)&&!this._settings.suppressErrors}};e.default=n}}),ki=G({"node_modules/fast-glob/out/readers/stream.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=oe("stream"),r=ur(),u=gn(),n=En(),a=class extends n.default{constructor(){super(...arguments),this._walkStream=u.walkStream,this._stat=r.stat}dynamic(i,o){return this._walkStream(i,o)}static(i,o){let s=i.map(this._getFullEntryPath,this),c=new t.PassThrough({objectMode:!0});c._write=(l,D,f)=>this._getEntry(s[l],i[l],o).then(h=>{h!==null&&o.entryFilter(h)&&c.push(h),l===s.length-1&&c.end(),f()}).catch(f);for(let l=0;l<s.length;l++)c.write(l);return c}_getEntry(i,o,s){return this._getStat(i).then(c=>this._makeEntry(c,o)).catch(c=>{if(s.errorFilter(c))return null;throw c})}_getStat(i){return new Promise((o,s)=>{this._stat(i,this._fsStatSettings,(c,l)=>c===null?o(l):s(c))})}};e.default=a}}),Dc=G({"node_modules/fast-glob/out/readers/async.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=gn(),r=En(),u=ki(),n=class extends r.default{constructor(){super(...arguments),this._walkAsync=t.walk,this._readerStream=new u.default(this._settings)}dynamic(a,i){return new Promise((o,s)=>{this._walkAsync(a,i,(c,l)=>{c===null?o(l):s(c)})})}async static(a,i){let o=[],s=this._readerStream.static(a,i);return new Promise((c,l)=>{s.once("error",l),s.on("data",D=>o.push(D)),s.once("end",()=>c(o))})}};e.default=n}}),fc=G({"node_modules/fast-glob/out/providers/matchers/matcher.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=_t(),r=class{constructor(u,n,a){this._patterns=u,this._settings=n,this._micromatchOptions=a,this._storage=[],this._fillStorage()}_fillStorage(){for(let u of this._patterns){let n=this._getPatternSegments(u),a=this._splitSegmentsIntoSections(n);this._storage.push({complete:a.length<=1,pattern:u,segments:n,sections:a})}}_getPatternSegments(u){return t.pattern.getPatternParts(u,this._micromatchOptions).map(a=>t.pattern.isDynamicPattern(a,this._settings)?{dynamic:!0,pattern:a,patternRe:t.pattern.makeRe(a,this._micromatchOptions)}:{dynamic:!1,pattern:a})}_splitSegmentsIntoSections(u){return t.array.splitWhen(u,n=>n.dynamic&&t.pattern.hasGlobStar(n.pattern))}};e.default=r}}),dc=G({"node_modules/fast-glob/out/providers/matchers/partial.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=fc(),r=class extends t.default{match(u){let n=u.split("/"),a=n.length,i=this._storage.filter(o=>!o.complete||o.segments.length>a);for(let o of i){let s=o.sections[0];if(!o.complete&&a>s.length||n.every((l,D)=>{let f=o.segments[D];return!!(f.dynamic&&f.patternRe.test(l)||!f.dynamic&&f.pattern===l)}))return!0}return!1}};e.default=r}}),hc=G({"node_modules/fast-glob/out/providers/filters/deep.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=_t(),r=dc(),u=class{constructor(n,a){this._settings=n,this._micromatchOptions=a}getFilter(n,a,i){let o=this._getMatcher(a),s=this._getNegativePatternsRe(i);return c=>this._filter(n,c,o,s)}_getMatcher(n){return new r.default(n,this._settings,this._micromatchOptions)}_getNegativePatternsRe(n){let a=n.filter(t.pattern.isAffectDepthOfReadingPattern);return t.pattern.convertPatternsToRe(a,this._micromatchOptions)}_filter(n,a,i,o){if(this._isSkippedByDeep(n,a.path)||this._isSkippedSymbolicLink(a))return!1;let s=t.path.removeLeadingDotSegment(a.path);return this._isSkippedByPositivePatterns(s,i)?!1:this._isSkippedByNegativePatterns(s,o)}_isSkippedByDeep(n,a){return this._settings.deep===1/0?!1:this._getEntryLevel(n,a)>=this._settings.deep}_getEntryLevel(n,a){let i=a.split("/").length;if(n==="")return i;let o=n.split("/").length;return i-o}_isSkippedSymbolicLink(n){return!this._settings.followSymbolicLinks&&n.dirent.isSymbolicLink()}_isSkippedByPositivePatterns(n,a){return!this._settings.baseNameMatch&&!a.match(n)}_isSkippedByNegativePatterns(n,a){return!t.pattern.matchAny(n,a)}};e.default=u}}),pc=G({"node_modules/fast-glob/out/providers/filters/entry.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=_t(),r=class{constructor(u,n){this._settings=u,this._micromatchOptions=n,this.index=new Map}getFilter(u,n){let[a,i]=t.pattern.partitionAbsoluteAndRelative(n),o={positive:{all:t.pattern.convertPatternsToRe(u,this._micromatchOptions)},negative:{absolute:t.pattern.convertPatternsToRe(a,Object.assign(Object.assign({},this._micromatchOptions),{dot:!0})),relative:t.pattern.convertPatternsToRe(i,Object.assign(Object.assign({},this._micromatchOptions),{dot:!0}))}};return s=>this._filter(s,o)}_filter(u,n){let a=t.path.removeLeadingDotSegment(u.path);if(this._settings.unique&&this._isDuplicateEntry(a)||this._onlyFileFilter(u)||this._onlyDirectoryFilter(u))return!1;let i=this._isMatchToPatternsSet(a,n,u.dirent.isDirectory());return this._settings.unique&&i&&this._createIndexRecord(a),i}_isDuplicateEntry(u){return this.index.has(u)}_createIndexRecord(u){this.index.set(u,void 0)}_onlyFileFilter(u){return this._settings.onlyFiles&&!u.dirent.isFile()}_onlyDirectoryFilter(u){return this._settings.onlyDirectories&&!u.dirent.isDirectory()}_isMatchToPatternsSet(u,n,a){return!(!this._isMatchToPatterns(u,n.positive.all,a)||this._isMatchToPatterns(u,n.negative.relative,a)||this._isMatchToAbsoluteNegative(u,n.negative.absolute,a))}_isMatchToAbsoluteNegative(u,n,a){if(n.length===0)return!1;let i=t.path.makeAbsolute(this._settings.cwd,u);return this._isMatchToPatterns(i,n,a)}_isMatchToPatterns(u,n,a){if(n.length===0)return!1;let i=t.pattern.matchAny(u,n);return!i&&a?t.pattern.matchAny(u+"/",n):i}};e.default=r}}),Fc=G({"node_modules/fast-glob/out/providers/filters/error.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=_t(),r=class{constructor(u){this._settings=u}getFilter(){return u=>this._isNonFatalError(u)}_isNonFatalError(u){return t.errno.isEnoentCodeError(u)||this._settings.suppressErrors}};e.default=r}}),gc=G({"node_modules/fast-glob/out/providers/transformers/entry.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=_t(),r=class{constructor(u){this._settings=u}getTransformer(){return u=>this._transform(u)}_transform(u){let n=u.path;return this._settings.absolute&&(n=t.path.makeAbsolute(this._settings.cwd,n),n=t.path.unixify(n)),this._settings.markDirectories&&u.dirent.isDirectory()&&(n+="/"),this._settings.objectMode?Object.assign(Object.assign({},u),{path:n}):n}};e.default=r}}),mn=G({"node_modules/fast-glob/out/providers/provider.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=oe("path"),r=hc(),u=pc(),n=Fc(),a=gc(),i=class{constructor(o){this._settings=o,this.errorFilter=new n.default(this._settings),this.entryFilter=new u.default(this._settings,this._getMicromatchOptions()),this.deepFilter=new r.default(this._settings,this._getMicromatchOptions()),this.entryTransformer=new a.default(this._settings)}_getRootDirectory(o){return t.resolve(this._settings.cwd,o.base)}_getReaderOptions(o){let s=o.base==="."?"":o.base;return{basePath:s,pathSegmentSeparator:"/",concurrency:this._settings.concurrency,deepFilter:this.deepFilter.getFilter(s,o.positive,o.negative),entryFilter:this.entryFilter.getFilter(o.positive,o.negative),errorFilter:this.errorFilter.getFilter(),followSymbolicLinks:this._settings.followSymbolicLinks,fs:this._settings.fs,stats:this._settings.stats,throwErrorOnBrokenSymbolicLink:this._settings.throwErrorOnBrokenSymbolicLink,transform:this.entryTransformer.getTransformer()}}_getMicromatchOptions(){return{dot:this._settings.dot,matchBase:this._settings.baseNameMatch,nobrace:!this._settings.braceExpansion,nocase:!this._settings.caseSensitiveMatch,noext:!this._settings.extglob,noglobstar:!this._settings.globstar,posix:!0,strictSlashes:!1}}};e.default=i}}),Ec=G({"node_modules/fast-glob/out/providers/async.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=Dc(),r=mn(),u=class extends r.default{constructor(){super(...arguments),this._reader=new t.default(this._settings)}async read(n){let a=this._getRootDirectory(n),i=this._getReaderOptions(n);return(await this.api(a,n,i)).map(s=>i.transform(s))}api(n,a,i){return a.dynamic?this._reader.dynamic(n,i):this._reader.static(a.patterns,i)}};e.default=u}}),mc=G({"node_modules/fast-glob/out/providers/stream.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=oe("stream"),r=ki(),u=mn(),n=class extends u.default{constructor(){super(...arguments),this._reader=new r.default(this._settings)}read(a){let i=this._getRootDirectory(a),o=this._getReaderOptions(a),s=this.api(i,a,o),c=new t.Readable({objectMode:!0,read:()=>{}});return s.once("error",l=>c.emit("error",l)).on("data",l=>c.emit("data",o.transform(l))).once("end",()=>c.emit("end")),c.once("close",()=>s.destroy()),c}api(a,i,o){return i.dynamic?this._reader.dynamic(a,o):this._reader.static(i.patterns,o)}};e.default=n}}),Cc=G({"node_modules/fast-glob/out/readers/sync.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=ur(),r=gn(),u=En(),n=class extends u.default{constructor(){super(...arguments),this._walkSync=r.walkSync,this._statSync=t.statSync}dynamic(a,i){return this._walkSync(a,i)}static(a,i){let o=[];for(let s of a){let c=this._getFullEntryPath(s),l=this._getEntry(c,s,i);l===null||!i.entryFilter(l)||o.push(l)}return o}_getEntry(a,i,o){try{let s=this._getStat(a);return this._makeEntry(s,i)}catch(s){if(o.errorFilter(s))return null;throw s}}_getStat(a){return this._statSync(a,this._fsStatSettings)}};e.default=n}}),vc=G({"node_modules/fast-glob/out/providers/sync.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=Cc(),r=mn(),u=class extends r.default{constructor(){super(...arguments),this._reader=new t.default(this._settings)}read(n){let a=this._getRootDirectory(n),i=this._getReaderOptions(n);return this.api(a,n,i).map(i.transform)}api(n,a,i){return a.dynamic?this._reader.dynamic(n,i):this._reader.static(a.patterns,i)}};e.default=u}}),Ac=G({"node_modules/fast-glob/out/settings.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.DEFAULT_FILE_SYSTEM_ADAPTER=void 0;var t=oe("fs"),r=oe("os"),u=Math.max(r.cpus().length,1);e.DEFAULT_FILE_SYSTEM_ADAPTER={lstat:t.lstat,lstatSync:t.lstatSync,stat:t.stat,statSync:t.statSync,readdir:t.readdir,readdirSync:t.readdirSync};var n=class{constructor(a={}){this._options=a,this.absolute=this._getValue(this._options.absolute,!1),this.baseNameMatch=this._getValue(this._options.baseNameMatch,!1),this.braceExpansion=this._getValue(this._options.braceExpansion,!0),this.caseSensitiveMatch=this._getValue(this._options.caseSensitiveMatch,!0),this.concurrency=this._getValue(this._options.concurrency,u),this.cwd=this._getValue(this._options.cwd,process.cwd()),this.deep=this._getValue(this._options.deep,1/0),this.dot=this._getValue(this._options.dot,!1),this.extglob=this._getValue(this._options.extglob,!0),this.followSymbolicLinks=this._getValue(this._options.followSymbolicLinks,!0),this.fs=this._getFileSystemMethods(this._options.fs),this.globstar=this._getValue(this._options.globstar,!0),this.ignore=this._getValue(this._options.ignore,[]),this.markDirectories=this._getValue(this._options.markDirectories,!1),this.objectMode=this._getValue(this._options.objectMode,!1),this.onlyDirectories=this._getValue(this._options.onlyDirectories,!1),this.onlyFiles=this._getValue(this._options.onlyFiles,!0),this.stats=this._getValue(this._options.stats,!1),this.suppressErrors=this._getValue(this._options.suppressErrors,!1),this.throwErrorOnBrokenSymbolicLink=this._getValue(this._options.throwErrorOnBrokenSymbolicLink,!1),this.unique=this._getValue(this._options.unique,!0),this.onlyDirectories&&(this.onlyFiles=!1),this.stats&&(this.objectMode=!0),this.ignore=[].concat(this.ignore)}_getValue(a,i){return a===void 0?i:a}_getFileSystemMethods(a={}){return Object.assign(Object.assign({},e.DEFAULT_FILE_SYSTEM_ADAPTER),a)}};e.default=n}}),yc=G({"node_modules/fast-glob/out/index.js"(e,t){"use strict";var r=Vl(),u=Ec(),n=mc(),a=vc(),i=Ac(),o=_t();async function s(D,f){l(D);let h=c(D,u.default,f),d=await Promise.all(h);return o.array.flatten(d)}(function(D){D.glob=D,D.globSync=f,D.globStream=h,D.async=D;function f(S,F){l(S);let B=c(S,a.default,F);return o.array.flatten(B)}D.sync=f;function h(S,F){l(S);let B=c(S,n.default,F);return o.stream.merge(B)}D.stream=h;function d(S,F){l(S);let B=[].concat(S),P=new i.default(F);return r.generate(B,P)}D.generateTasks=d;function p(S,F){l(S);let B=new i.default(F);return o.pattern.isDynamicPattern(S,B)}D.isDynamicPattern=p;function v(S){return l(S),o.path.escape(S)}D.escapePath=v;function y(S){return l(S),o.path.convertPathToPattern(S)}D.convertPathToPattern=y;let m;(function(S){function F(P){return l(P),o.path.escapePosixPath(P)}S.escapePath=F;function B(P){return l(P),o.path.convertPosixPathToPattern(P)}S.convertPathToPattern=B})(m=D.posix||(D.posix={}));let C;(function(S){function F(P){return l(P),o.path.escapeWindowsPath(P)}S.escapePath=F;function B(P){return l(P),o.path.convertWindowsPathToPattern(P)}S.convertPathToPattern=B})(C=D.win32||(D.win32={}))})(s||(s={}));function c(D,f,h){let d=[].concat(D),p=new i.default(h),v=r.generate(d,p),y=new f(p);return v.map(y.read,y)}function l(D){if(![].concat(D).every(d=>o.string.isString(d)&&!o.string.isEmpty(d)))throw new TypeError("Patterns must be a string (non empty) or an array of strings")}t.exports=s}}),vr=G({"node_modules/picocolors/picocolors.js"(e,t){var r=process||{},u=r.argv||[],n=r.env||{},a=!(n.NO_COLOR||u.includes("--no-color"))&&(!!n.FORCE_COLOR||u.includes("--color")||r.platform==="win32"||(r.stdout||{}).isTTY&&n.TERM!=="dumb"||!!n.CI),i=(c,l,D=c)=>f=>{let h=""+f,d=h.indexOf(l,c.length);return~d?c+o(h,l,D,d)+l:c+h+l},o=(c,l,D,f)=>{let h="",d=0;do h+=c.substring(d,f)+D,d=f+l.length,f=c.indexOf(l,d);while(~f);return h+c.substring(d)},s=(c=a)=>{let l=c?i:()=>String;return{isColorSupported:c,reset:l("\x1B[0m","\x1B[0m"),bold:l("\x1B[1m","\x1B[22m","\x1B[22m\x1B[1m"),dim:l("\x1B[2m","\x1B[22m","\x1B[22m\x1B[2m"),italic:l("\x1B[3m","\x1B[23m"),underline:l("\x1B[4m","\x1B[24m"),inverse:l("\x1B[7m","\x1B[27m"),hidden:l("\x1B[8m","\x1B[28m"),strikethrough:l("\x1B[9m","\x1B[29m"),black:l("\x1B[30m","\x1B[39m"),red:l("\x1B[31m","\x1B[39m"),green:l("\x1B[32m","\x1B[39m"),yellow:l("\x1B[33m","\x1B[39m"),blue:l("\x1B[34m","\x1B[39m"),magenta:l("\x1B[35m","\x1B[39m"),cyan:l("\x1B[36m","\x1B[39m"),white:l("\x1B[37m","\x1B[39m"),gray:l("\x1B[90m","\x1B[39m"),bgBlack:l("\x1B[40m","\x1B[49m"),bgRed:l("\x1B[41m","\x1B[49m"),bgGreen:l("\x1B[42m","\x1B[49m"),bgYellow:l("\x1B[43m","\x1B[49m"),bgBlue:l("\x1B[44m","\x1B[49m"),bgMagenta:l("\x1B[45m","\x1B[49m"),bgCyan:l("\x1B[46m","\x1B[49m"),bgWhite:l("\x1B[47m","\x1B[49m"),blackBright:l("\x1B[90m","\x1B[39m"),redBright:l("\x1B[91m","\x1B[39m"),greenBright:l("\x1B[92m","\x1B[39m"),yellowBright:l("\x1B[93m","\x1B[39m"),blueBright:l("\x1B[94m","\x1B[39m"),magentaBright:l("\x1B[95m","\x1B[39m"),cyanBright:l("\x1B[96m","\x1B[39m"),whiteBright:l("\x1B[97m","\x1B[39m"),bgBlackBright:l("\x1B[100m","\x1B[49m"),bgRedBright:l("\x1B[101m","\x1B[49m"),bgGreenBright:l("\x1B[102m","\x1B[49m"),bgYellowBright:l("\x1B[103m","\x1B[49m"),bgBlueBright:l("\x1B[104m","\x1B[49m"),bgMagentaBright:l("\x1B[105m","\x1B[49m"),bgCyanBright:l("\x1B[106m","\x1B[49m"),bgWhiteBright:l("\x1B[107m","\x1B[49m")}};t.exports=s(),t.exports.createColors=s}}),Ri=G({"node_modules/semver/internal/debug.js"(e,t){"use strict";var r=typeof process=="object"&&process.env&&process.env.NODE_DEBUG&&/\bsemver\b/i.test(process.env.NODE_DEBUG)?(...u)=>console.error("SEMVER",...u):()=>{};t.exports=r}}),Pi=G({"node_modules/semver/internal/constants.js"(e,t){"use strict";var r="2.0.0",u=256,n=Number.MAX_SAFE_INTEGER||9007199254740991,a=16,i=u-6,o=["major","premajor","minor","preminor","patch","prepatch","prerelease"];t.exports={MAX_LENGTH:u,MAX_SAFE_COMPONENT_LENGTH:a,MAX_SAFE_BUILD_LENGTH:i,MAX_SAFE_INTEGER:n,RELEASE_TYPES:o,SEMVER_SPEC_VERSION:r,FLAG_INCLUDE_PRERELEASE:1,FLAG_LOOSE:2}}}),_c=G({"node_modules/semver/internal/re.js"(e,t){"use strict";var{MAX_SAFE_COMPONENT_LENGTH:r,MAX_SAFE_BUILD_LENGTH:u,MAX_LENGTH:n}=Pi(),a=Ri();e=t.exports={};var i=e.re=[],o=e.safeRe=[],s=e.src=[],c=e.safeSrc=[],l=e.t={},D=0,f="[a-zA-Z0-9-]",h=[["\\s",1],["\\d",n],[f,u]],d=v=>{for(let[y,m]of h)v=v.split(`${y}*`).join(`${y}{0,${m}}`).split(`${y}+`).join(`${y}{1,${m}}`);return v},p=(v,y,m)=>{let C=d(y),S=D++;a(v,S,y),l[v]=S,s[S]=y,c[S]=C,i[S]=new RegExp(y,m?"g":void 0),o[S]=new RegExp(C,m?"g":void 0)};p("NUMERICIDENTIFIER","0|[1-9]\\d*"),p("NUMERICIDENTIFIERLOOSE","\\d+"),p("NONNUMERICIDENTIFIER",`\\d*[a-zA-Z-]${f}*`),p("MAINVERSION",`(${s[l.NUMERICIDENTIFIER]})\\.(${s[l.NUMERICIDENTIFIER]})\\.(${s[l.NUMERICIDENTIFIER]})`),p("MAINVERSIONLOOSE",`(${s[l.NUMERICIDENTIFIERLOOSE]})\\.(${s[l.NUMERICIDENTIFIERLOOSE]})\\.(${s[l.NUMERICIDENTIFIERLOOSE]})`),p("PRERELEASEIDENTIFIER",`(?:${s[l.NONNUMERICIDENTIFIER]}|${s[l.NUMERICIDENTIFIER]})`),p("PRERELEASEIDENTIFIERLOOSE",`(?:${s[l.NONNUMERICIDENTIFIER]}|${s[l.NUMERICIDENTIFIERLOOSE]})`),p("PRERELEASE",`(?:-(${s[l.PRERELEASEIDENTIFIER]}(?:\\.${s[l.PRERELEASEIDENTIFIER]})*))`),p("PRERELEASELOOSE",`(?:-?(${s[l.PRERELEASEIDENTIFIERLOOSE]}(?:\\.${s[l.PRERELEASEIDENTIFIERLOOSE]})*))`),p("BUILDIDENTIFIER",`${f}+`),p("BUILD",`(?:\\+(${s[l.BUILDIDENTIFIER]}(?:\\.${s[l.BUILDIDENTIFIER]})*))`),p("FULLPLAIN",`v?${s[l.MAINVERSION]}${s[l.PRERELEASE]}?${s[l.BUILD]}?`),p("FULL",`^${s[l.FULLPLAIN]}$`),p("LOOSEPLAIN",`[v=\\s]*${s[l.MAINVERSIONLOOSE]}${s[l.PRERELEASELOOSE]}?${s[l.BUILD]}?`),p("LOOSE",`^${s[l.LOOSEPLAIN]}$`),p("GTLT","((?:<|>)?=?)"),p("XRANGEIDENTIFIERLOOSE",`${s[l.NUMERICIDENTIFIERLOOSE]}|x|X|\\*`),p("XRANGEIDENTIFIER",`${s[l.NUMERICIDENTIFIER]}|x|X|\\*`),p("XRANGEPLAIN",`[v=\\s]*(${s[l.XRANGEIDENTIFIER]})(?:\\.(${s[l.XRANGEIDENTIFIER]})(?:\\.(${s[l.XRANGEIDENTIFIER]})(?:${s[l.PRERELEASE]})?${s[l.BUILD]}?)?)?`),p("XRANGEPLAINLOOSE",`[v=\\s]*(${s[l.XRANGEIDENTIFIERLOOSE]})(?:\\.(${s[l.XRANGEIDENTIFIERLOOSE]})(?:\\.(${s[l.XRANGEIDENTIFIERLOOSE]})(?:${s[l.PRERELEASELOOSE]})?${s[l.BUILD]}?)?)?`),p("XRANGE",`^${s[l.GTLT]}\\s*${s[l.XRANGEPLAIN]}$`),p("XRANGELOOSE",`^${s[l.GTLT]}\\s*${s[l.XRANGEPLAINLOOSE]}$`),p("COERCEPLAIN",`(^|[^\\d])(\\d{1,${r}})(?:\\.(\\d{1,${r}}))?(?:\\.(\\d{1,${r}}))?`),p("COERCE",`${s[l.COERCEPLAIN]}(?:$|[^\\d])`),p("COERCEFULL",s[l.COERCEPLAIN]+`(?:${s[l.PRERELEASE]})?(?:${s[l.BUILD]})?(?:$|[^\\d])`),p("COERCERTL",s[l.COERCE],!0),p("COERCERTLFULL",s[l.COERCEFULL],!0),p("LONETILDE","(?:~>?)"),p("TILDETRIM",`(\\s*)${s[l.LONETILDE]}\\s+`,!0),e.tildeTrimReplace="$1~",p("TILDE",`^${s[l.LONETILDE]}${s[l.XRANGEPLAIN]}$`),p("TILDELOOSE",`^${s[l.LONETILDE]}${s[l.XRANGEPLAINLOOSE]}$`),p("LONECARET","(?:\\^)"),p("CARETTRIM",`(\\s*)${s[l.LONECARET]}\\s+`,!0),e.caretTrimReplace="$1^",p("CARET",`^${s[l.LONECARET]}${s[l.XRANGEPLAIN]}$`),p("CARETLOOSE",`^${s[l.LONECARET]}${s[l.XRANGEPLAINLOOSE]}$`),p("COMPARATORLOOSE",`^${s[l.GTLT]}\\s*(${s[l.LOOSEPLAIN]})$|^$`),p("COMPARATOR",`^${s[l.GTLT]}\\s*(${s[l.FULLPLAIN]})$|^$`),p("COMPARATORTRIM",`(\\s*)${s[l.GTLT]}\\s*(${s[l.LOOSEPLAIN]}|${s[l.XRANGEPLAIN]})`,!0),e.comparatorTrimReplace="$1$2$3",p("HYPHENRANGE",`^\\s*(${s[l.XRANGEPLAIN]})\\s+-\\s+(${s[l.XRANGEPLAIN]})\\s*$`),p("HYPHENRANGELOOSE",`^\\s*(${s[l.XRANGEPLAINLOOSE]})\\s+-\\s+(${s[l.XRANGEPLAINLOOSE]})\\s*$`),p("STAR","(<|>)?=?\\s*\\*"),p("GTE0","^\\s*>=\\s*0\\.0\\.0\\s*$"),p("GTE0PRE","^\\s*>=\\s*0\\.0\\.0-0\\s*$")}}),bc=G({"node_modules/semver/internal/parse-options.js"(e,t){"use strict";var r=Object.freeze({loose:!0}),u=Object.freeze({}),n=a=>a?typeof a!="object"?r:a:u;t.exports=n}}),Bc=G({"node_modules/semver/internal/identifiers.js"(e,t){"use strict";var r=/^[0-9]+$/,u=(a,i)=>{let o=r.test(a),s=r.test(i);return o&&s&&(a=+a,i=+i),a===i?0:o&&!s?-1:s&&!o?1:a<i?-1:1},n=(a,i)=>u(i,a);t.exports={compareIdentifiers:u,rcompareIdentifiers:n}}}),wc=G({"node_modules/semver/classes/semver.js"(e,t){"use strict";var r=Ri(),{MAX_LENGTH:u,MAX_SAFE_INTEGER:n}=Pi(),{safeRe:a,t:i}=_c(),o=bc(),{compareIdentifiers:s}=Bc(),c=class Ve{constructor(D,f){if(f=o(f),D instanceof Ve){if(D.loose===!!f.loose&&D.includePrerelease===!!f.includePrerelease)return D;D=D.version}else if(typeof D!="string")throw new TypeError(`Invalid version. Must be a string. Got type "${typeof D}".`);if(D.length>u)throw new TypeError(`version is longer than ${u} characters`);r("SemVer",D,f),this.options=f,this.loose=!!f.loose,this.includePrerelease=!!f.includePrerelease;let h=D.trim().match(f.loose?a[i.LOOSE]:a[i.FULL]);if(!h)throw new TypeError(`Invalid Version: ${D}`);if(this.raw=D,this.major=+h[1],this.minor=+h[2],this.patch=+h[3],this.major>n||this.major<0)throw new TypeError("Invalid major version");if(this.minor>n||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>n||this.patch<0)throw new TypeError("Invalid patch version");h[4]?this.prerelease=h[4].split(".").map(d=>{if(/^[0-9]+$/.test(d)){let p=+d;if(p>=0&&p<n)return p}return d}):this.prerelease=[],this.build=h[5]?h[5].split("."):[],this.format()}format(){return this.version=`${this.major}.${this.minor}.${this.patch}`,this.prerelease.length&&(this.version+=`-${this.prerelease.join(".")}`),this.version}toString(){return this.version}compare(D){if(r("SemVer.compare",this.version,this.options,D),!(D instanceof Ve)){if(typeof D=="string"&&D===this.version)return 0;D=new Ve(D,this.options)}return D.version===this.version?0:this.compareMain(D)||this.comparePre(D)}compareMain(D){return D instanceof Ve||(D=new Ve(D,this.options)),s(this.major,D.major)||s(this.minor,D.minor)||s(this.patch,D.patch)}comparePre(D){if(D instanceof Ve||(D=new Ve(D,this.options)),this.prerelease.length&&!D.prerelease.length)return-1;if(!this.prerelease.length&&D.prerelease.length)return 1;if(!this.prerelease.length&&!D.prerelease.length)return 0;let f=0;do{let h=this.prerelease[f],d=D.prerelease[f];if(r("prerelease compare",f,h,d),h===void 0&&d===void 0)return 0;if(d===void 0)return 1;if(h===void 0)return-1;if(h===d)continue;return s(h,d)}while(++f)}compareBuild(D){D instanceof Ve||(D=new Ve(D,this.options));let f=0;do{let h=this.build[f],d=D.build[f];if(r("build compare",f,h,d),h===void 0&&d===void 0)return 0;if(d===void 0)return 1;if(h===void 0)return-1;if(h===d)continue;return s(h,d)}while(++f)}inc(D,f,h){if(D.startsWith("pre")){if(!f&&h===!1)throw new Error("invalid increment argument: identifier is empty");if(f){let d=`-${f}`.match(this.options.loose?a[i.PRERELEASELOOSE]:a[i.PRERELEASE]);if(!d||d[1]!==f)throw new Error(`invalid identifier: ${f}`)}}switch(D){case"premajor":this.prerelease.length=0,this.patch=0,this.minor=0,this.major++,this.inc("pre",f,h);break;case"preminor":this.prerelease.length=0,this.patch=0,this.minor++,this.inc("pre",f,h);break;case"prepatch":this.prerelease.length=0,this.inc("patch",f,h),this.inc("pre",f,h);break;case"prerelease":this.prerelease.length===0&&this.inc("patch",f,h),this.inc("pre",f,h);break;case"release":if(this.prerelease.length===0)throw new Error(`version ${this.raw} is not a prerelease`);this.prerelease.length=0;break;case"major":(this.minor!==0||this.patch!==0||this.prerelease.length===0)&&this.major++,this.minor=0,this.patch=0,this.prerelease=[];break;case"minor":(this.patch!==0||this.prerelease.length===0)&&this.minor++,this.patch=0,this.prerelease=[];break;case"patch":this.prerelease.length===0&&this.patch++,this.prerelease=[];break;case"pre":{let d=Number(h)?1:0;if(this.prerelease.length===0)this.prerelease=[d];else{let p=this.prerelease.length;for(;--p>=0;)typeof this.prerelease[p]=="number"&&(this.prerelease[p]++,p=-2);if(p===-1){if(f===this.prerelease.join(".")&&h===!1)throw new Error("invalid increment argument: identifier already exists");this.prerelease.push(d)}}if(f){let p=[f,d];h===!1&&(p=[f]),s(this.prerelease[0],f)===0?isNaN(this.prerelease[1])&&(this.prerelease=p):this.prerelease=p}break}default:throw new Error(`invalid increment argument: ${D}`)}return this.raw=this.format(),this.build.length&&(this.raw+=`+${this.build.join(".")}`),this}};t.exports=c}}),Sc=G({"node_modules/semver/functions/compare.js"(e,t){"use strict";var r=wc(),u=(n,a,i)=>new r(n,i).compare(new r(a,i));t.exports=u}}),kc=G({"node_modules/semver/functions/gte.js"(e,t){"use strict";var r=Sc(),u=(n,a,i)=>r(n,a,i)>=0;t.exports=u}}),Rc=G({"node_modules/pseudomap/pseudomap.js"(e,t){var r=Object.prototype.hasOwnProperty;t.exports=u;function u(s){if(!(this instanceof u))throw new TypeError("Constructor PseudoMap requires 'new'");if(this.clear(),s)if(s instanceof u||typeof Map=="function"&&s instanceof Map)s.forEach(function(c,l){this.set(l,c)},this);else if(Array.isArray(s))s.forEach(function(c){this.set(c[0],c[1])},this);else throw new TypeError("invalid argument")}u.prototype.forEach=function(s,c){c=c||this,Object.keys(this._data).forEach(function(l){l!=="size"&&s.call(c,this._data[l].value,this._data[l].key)},this)},u.prototype.has=function(s){return!!i(this._data,s)},u.prototype.get=function(s){var c=i(this._data,s);return c&&c.value},u.prototype.set=function(s,c){o(this._data,s,c)},u.prototype.delete=function(s){var c=i(this._data,s);c&&(delete this._data[c._index],this._data.size--)},u.prototype.clear=function(){var s=Object.create(null);s.size=0,Object.defineProperty(this,"_data",{value:s,enumerable:!1,configurable:!0,writable:!1})},Object.defineProperty(u.prototype,"size",{get:function(){return this._data.size},set:function(s){},enumerable:!0,configurable:!0}),u.prototype.values=u.prototype.keys=u.prototype.entries=function(){throw new Error("iterators are not implemented in this version")};function n(s,c){return s===c||s!==s&&c!==c}function a(s,c,l){this.key=s,this.value=c,this._index=l}function i(s,c){for(var l=0,D="_"+c,f=D;r.call(s,f);f=D+l++)if(n(s[f].key,c))return s[f]}function o(s,c,l){for(var D=0,f="_"+c,h=f;r.call(s,h);h=f+D++)if(n(s[h].key,c)){s[h].value=l;return}s.size++,s[h]=new a(c,l,h)}}}),Pc=G({"node_modules/pseudomap/map.js"(e,t){process.env.npm_package_name==="pseudomap"&&process.env.npm_lifecycle_script==="test"&&(process.env.TEST_PSEUDOMAP="true"),typeof Map=="function"&&!process.env.TEST_PSEUDOMAP?t.exports=Map:t.exports=Rc()}}),Oc=G({"node_modules/yallist/yallist.js"(e,t){t.exports=r,r.Node=a,r.create=r;function r(i){var o=this;if(o instanceof r||(o=new r),o.tail=null,o.head=null,o.length=0,i&&typeof i.forEach=="function")i.forEach(function(l){o.push(l)});else if(arguments.length>0)for(var s=0,c=arguments.length;s<c;s++)o.push(arguments[s]);return o}r.prototype.removeNode=function(i){if(i.list!==this)throw new Error("removing node which does not belong to this list");var o=i.next,s=i.prev;o&&(o.prev=s),s&&(s.next=o),i===this.head&&(this.head=o),i===this.tail&&(this.tail=s),i.list.length--,i.next=null,i.prev=null,i.list=null},r.prototype.unshiftNode=function(i){if(i!==this.head){i.list&&i.list.removeNode(i);var o=this.head;i.list=this,i.next=o,o&&(o.prev=i),this.head=i,this.tail||(this.tail=i),this.length++}},r.prototype.pushNode=function(i){if(i!==this.tail){i.list&&i.list.removeNode(i);var o=this.tail;i.list=this,i.prev=o,o&&(o.next=i),this.tail=i,this.head||(this.head=i),this.length++}},r.prototype.push=function(){for(var i=0,o=arguments.length;i<o;i++)u(this,arguments[i]);return this.length},r.prototype.unshift=function(){for(var i=0,o=arguments.length;i<o;i++)n(this,arguments[i]);return this.length},r.prototype.pop=function(){if(this.tail){var i=this.tail.value;return this.tail=this.tail.prev,this.tail?this.tail.next=null:this.head=null,this.length--,i}},r.prototype.shift=function(){if(this.head){var i=this.head.value;return this.head=this.head.next,this.head?this.head.prev=null:this.tail=null,this.length--,i}},r.prototype.forEach=function(i,o){o=o||this;for(var s=this.head,c=0;s!==null;c++)i.call(o,s.value,c,this),s=s.next},r.prototype.forEachReverse=function(i,o){o=o||this;for(var s=this.tail,c=this.length-1;s!==null;c--)i.call(o,s.value,c,this),s=s.prev},r.prototype.get=function(i){for(var o=0,s=this.head;s!==null&&o<i;o++)s=s.next;if(o===i&&s!==null)return s.value},r.prototype.getReverse=function(i){for(var o=0,s=this.tail;s!==null&&o<i;o++)s=s.prev;if(o===i&&s!==null)return s.value},r.prototype.map=function(i,o){o=o||this;for(var s=new r,c=this.head;c!==null;)s.push(i.call(o,c.value,this)),c=c.next;return s},r.prototype.mapReverse=function(i,o){o=o||this;for(var s=new r,c=this.tail;c!==null;)s.push(i.call(o,c.value,this)),c=c.prev;return s},r.prototype.reduce=function(i,o){var s,c=this.head;if(arguments.length>1)s=o;else if(this.head)c=this.head.next,s=this.head.value;else throw new TypeError("Reduce of empty list with no initial value");for(var l=0;c!==null;l++)s=i(s,c.value,l),c=c.next;return s},r.prototype.reduceReverse=function(i,o){var s,c=this.tail;if(arguments.length>1)s=o;else if(this.tail)c=this.tail.prev,s=this.tail.value;else throw new TypeError("Reduce of empty list with no initial value");for(var l=this.length-1;c!==null;l--)s=i(s,c.value,l),c=c.prev;return s},r.prototype.toArray=function(){for(var i=new Array(this.length),o=0,s=this.head;s!==null;o++)i[o]=s.value,s=s.next;return i},r.prototype.toArrayReverse=function(){for(var i=new Array(this.length),o=0,s=this.tail;s!==null;o++)i[o]=s.value,s=s.prev;return i},r.prototype.slice=function(i,o){o=o||this.length,o<0&&(o+=this.length),i=i||0,i<0&&(i+=this.length);var s=new r;if(o<i||o<0)return s;i<0&&(i=0),o>this.length&&(o=this.length);for(var c=0,l=this.head;l!==null&&c<i;c++)l=l.next;for(;l!==null&&c<o;c++,l=l.next)s.push(l.value);return s},r.prototype.sliceReverse=function(i,o){o=o||this.length,o<0&&(o+=this.length),i=i||0,i<0&&(i+=this.length);var s=new r;if(o<i||o<0)return s;i<0&&(i=0),o>this.length&&(o=this.length);for(var c=this.length,l=this.tail;l!==null&&c>o;c--)l=l.prev;for(;l!==null&&c>i;c--,l=l.prev)s.push(l.value);return s},r.prototype.reverse=function(){for(var i=this.head,o=this.tail,s=i;s!==null;s=s.prev){var c=s.prev;s.prev=s.next,s.next=c}return this.head=o,this.tail=i,this};function u(i,o){i.tail=new a(o,i.tail,null,i),i.head||(i.head=i.tail),i.length++}function n(i,o){i.head=new a(o,null,i.head,i),i.tail||(i.tail=i.head),i.length++}function a(i,o,s,c){if(!(this instanceof a))return new a(i,o,s,c);this.list=c,this.value=i,o?(o.next=this,this.prev=o):this.prev=null,s?(s.prev=this,this.next=s):this.next=null}}}),Tc=G({"node_modules/editorconfig/node_modules/lru-cache/index.js"(e,t){"use strict";t.exports=y;var r=Pc(),u=oe("util"),n=Oc(),a=typeof Symbol=="function"&&process.env._nodeLRUCacheForceNoSymbol!=="1",i;a?i=function(E){return Symbol(E)}:i=function(E){return"_"+E};var o=i("max"),s=i("length"),c=i("lengthCalculator"),l=i("allowStale"),D=i("maxAge"),f=i("dispose"),h=i("noDisposeOnSet"),d=i("lruList"),p=i("cache");function v(){return 1}function y(E){if(!(this instanceof y))return new y(E);typeof E=="number"&&(E={max:E}),E||(E={});var R=this[o]=E.max;(!R||typeof R!="number"||R<=0)&&(this[o]=1/0);var L=E.length||v;typeof L!="function"&&(L=v),this[c]=L,this[l]=E.stale||!1,this[D]=E.maxAge||0,this[f]=E.dispose,this[h]=E.noDisposeOnSet||!1,this.reset()}Object.defineProperty(y.prototype,"max",{set:function(E){(!E||typeof E!="number"||E<=0)&&(E=1/0),this[o]=E,F(this)},get:function(){return this[o]},enumerable:!0}),Object.defineProperty(y.prototype,"allowStale",{set:function(E){this[l]=!!E},get:function(){return this[l]},enumerable:!0}),Object.defineProperty(y.prototype,"maxAge",{set:function(E){(!E||typeof E!="number"||E<0)&&(E=0),this[D]=E,F(this)},get:function(){return this[D]},enumerable:!0}),Object.defineProperty(y.prototype,"lengthCalculator",{set:function(E){typeof E!="function"&&(E=v),E!==this[c]&&(this[c]=E,this[s]=0,this[d].forEach(function(R){R.length=this[c](R.value,R.key),this[s]+=R.length},this)),F(this)},get:function(){return this[c]},enumerable:!0}),Object.defineProperty(y.prototype,"length",{get:function(){return this[s]},enumerable:!0}),Object.defineProperty(y.prototype,"itemCount",{get:function(){return this[d].length},enumerable:!0}),y.prototype.rforEach=function(E,R){R=R||this;for(var L=this[d].tail;L!==null;){var w=L.prev;m(this,E,L,R),L=w}};function m(E,R,L,w){var T=L.value;S(E,T)&&(B(E,L),E[l]||(T=void 0)),T&&R.call(w,T.value,T.key,E)}y.prototype.forEach=function(E,R){R=R||this;for(var L=this[d].head;L!==null;){var w=L.next;m(this,E,L,R),L=w}},y.prototype.keys=function(){return this[d].toArray().map(function(E){return E.key},this)},y.prototype.values=function(){return this[d].toArray().map(function(E){return E.value},this)},y.prototype.reset=function(){this[f]&&this[d]&&this[d].length&&this[d].forEach(function(E){this[f](E.key,E.value)},this),this[p]=new r,this[d]=new n,this[s]=0},y.prototype.dump=function(){return this[d].map(function(E){if(!S(this,E))return{k:E.key,v:E.value,e:E.now+(E.maxAge||0)}},this).toArray().filter(function(E){return E})},y.prototype.dumpLru=function(){return this[d]},y.prototype.inspect=function(E,R){var L="LRUCache {",w=!1,T=this[l];T&&(L+=`
589
- allowStale: true`,w=!0);var g=this[o];g&&g!==1/0&&(w&&(L+=","),L+=`
590
- max: `+u.inspect(g,R),w=!0);var A=this[D];A&&(w&&(L+=","),L+=`
591
- maxAge: `+u.inspect(A,R),w=!0);var _=this[c];_&&_!==v&&(w&&(L+=","),L+=`
592
- length: `+u.inspect(this[s],R),w=!0);var k=!1;return this[d].forEach(function(x){k?L+=`,
593
- `:(w&&(L+=`,
594
- `),k=!0,L+=`
595
- `);var W=u.inspect(x.key).split(`
600
+ `}}var il=()=>/[#*0-9]\uFE0F?\u20E3|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26AA\u26B0\u26B1\u26BD\u26BE\u26C4\u26C8\u26CF\u26D1\u26E9\u26F0-\u26F5\u26F7\u26F8\u26FA\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B55\u3030\u303D\u3297\u3299]\uFE0F?|[\u261D\u270C\u270D](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\u270A\u270B](?:\uD83C[\uDFFB-\uDFFF])?|[\u23E9-\u23EC\u23F0\u23F3\u25FD\u2693\u26A1\u26AB\u26C5\u26CE\u26D4\u26EA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2795-\u2797\u27B0\u27BF\u2B50]|\u26D3\uFE0F?(?:\u200D\uD83D\uDCA5)?|\u26F9(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\u2764\uFE0F?(?:\u200D(?:\uD83D\uDD25|\uD83E\uDE79))?|\uD83C(?:[\uDC04\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]\uFE0F?|[\uDF85\uDFC2\uDFC7](?:\uD83C[\uDFFB-\uDFFF])?|[\uDFC4\uDFCA](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDFCB\uDFCC](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF43\uDF45-\uDF4A\uDF4C-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uDDE6\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF]|\uDDE7\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF]|\uDDE8\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF7\uDDFA-\uDDFF]|\uDDE9\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF]|\uDDEA\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA]|\uDDEB\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7]|\uDDEC\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE]|\uDDED\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA]|\uDDEE\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9]|\uDDEF\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5]|\uDDF0\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF]|\uDDF1\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE]|\uDDF2\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF]|\uDDF3\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF]|\uDDF4\uD83C\uDDF2|\uDDF5\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE]|\uDDF6\uD83C\uDDE6|\uDDF7\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC]|\uDDF8\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF]|\uDDF9\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF]|\uDDFA\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF]|\uDDFB\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA]|\uDDFC\uD83C[\uDDEB\uDDF8]|\uDDFD\uD83C\uDDF0|\uDDFE\uD83C[\uDDEA\uDDF9]|\uDDFF\uD83C[\uDDE6\uDDF2\uDDFC]|\uDF44(?:\u200D\uD83D\uDFEB)?|\uDF4B(?:\u200D\uD83D\uDFE9)?|\uDFC3(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDFF3\uFE0F?(?:\u200D(?:\u26A7\uFE0F?|\uD83C\uDF08))?|\uDFF4(?:\u200D\u2620\uFE0F?|\uDB40\uDC67\uDB40\uDC62\uDB40(?:\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDC73\uDB40\uDC63\uDB40\uDC74|\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F)?)|\uD83D(?:[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3]\uFE0F?|[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC](?:\uD83C[\uDFFB-\uDFFF])?|[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4\uDEB5](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD74\uDD90](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC25\uDC27-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE41\uDE43\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEDC-\uDEDF\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB\uDFF0]|\uDC08(?:\u200D\u2B1B)?|\uDC15(?:\u200D\uD83E\uDDBA)?|\uDC26(?:\u200D(?:\u2B1B|\uD83D\uDD25))?|\uDC3B(?:\u200D\u2744\uFE0F?)?|\uDC41\uFE0F?(?:\u200D\uD83D\uDDE8\uFE0F?)?|\uDC68(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDC68\uDC69]\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE])))?))?|\uDC69(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?[\uDC68\uDC69]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?|\uDC69\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?))|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFE])))?))?|\uDC6F(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDD75(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDE2E(?:\u200D\uD83D\uDCA8)?|\uDE35(?:\u200D\uD83D\uDCAB)?|\uDE36(?:\u200D\uD83C\uDF2B\uFE0F?)?|\uDE42(?:\u200D[\u2194\u2195]\uFE0F?)?|\uDEB6(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?)|\uD83E(?:[\uDD0C\uDD0F\uDD18-\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5\uDEC3-\uDEC5\uDEF0\uDEF2-\uDEF8](?:\uD83C[\uDFFB-\uDFFF])?|[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD\uDDCF\uDDD4\uDDD6-\uDDDD](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDDDE\uDDDF](?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD0D\uDD0E\uDD10-\uDD17\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCC\uDDD0\uDDE0-\uDDFF\uDE70-\uDE7C\uDE80-\uDE89\uDE8F-\uDEC2\uDEC6\uDECE-\uDEDC\uDEDF-\uDEE9]|\uDD3C(?:\u200D[\u2640\u2642]\uFE0F?|\uD83C[\uDFFB-\uDFFF])?|\uDDCE(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDDD1(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1|\uDDD1\u200D\uD83E\uDDD2(?:\u200D\uD83E\uDDD2)?|\uDDD2(?:\u200D\uD83E\uDDD2)?))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?))?|\uDEF1(?:\uD83C(?:\uDFFB(?:\u200D\uD83E\uDEF2\uD83C[\uDFFC-\uDFFF])?|\uDFFC(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFD-\uDFFF])?|\uDFFD(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])?|\uDFFE(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFD\uDFFF])?|\uDFFF(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFE])?))?)/g;function ol(e){return e===12288||e>=65281&&e<=65376||e>=65504&&e<=65510}function sl(e){return e>=4352&&e<=4447||e===8986||e===8987||e===9001||e===9002||e>=9193&&e<=9196||e===9200||e===9203||e===9725||e===9726||e===9748||e===9749||e>=9776&&e<=9783||e>=9800&&e<=9811||e===9855||e>=9866&&e<=9871||e===9875||e===9889||e===9898||e===9899||e===9917||e===9918||e===9924||e===9925||e===9934||e===9940||e===9962||e===9970||e===9971||e===9973||e===9978||e===9981||e===9989||e===9994||e===9995||e===10024||e===10060||e===10062||e>=10067&&e<=10069||e===10071||e>=10133&&e<=10135||e===10160||e===10175||e===11035||e===11036||e===11088||e===11093||e>=11904&&e<=11929||e>=11931&&e<=12019||e>=12032&&e<=12245||e>=12272&&e<=12287||e>=12289&&e<=12350||e>=12353&&e<=12438||e>=12441&&e<=12543||e>=12549&&e<=12591||e>=12593&&e<=12686||e>=12688&&e<=12773||e>=12783&&e<=12830||e>=12832&&e<=12871||e>=12880&&e<=42124||e>=42128&&e<=42182||e>=43360&&e<=43388||e>=44032&&e<=55203||e>=63744&&e<=64255||e>=65040&&e<=65049||e>=65072&&e<=65106||e>=65108&&e<=65126||e>=65128&&e<=65131||e>=94176&&e<=94180||e===94192||e===94193||e>=94208&&e<=100343||e>=100352&&e<=101589||e>=101631&&e<=101640||e>=110576&&e<=110579||e>=110581&&e<=110587||e===110589||e===110590||e>=110592&&e<=110882||e===110898||e>=110928&&e<=110930||e===110933||e>=110948&&e<=110951||e>=110960&&e<=111355||e>=119552&&e<=119638||e>=119648&&e<=119670||e===126980||e===127183||e===127374||e>=127377&&e<=127386||e>=127488&&e<=127490||e>=127504&&e<=127547||e>=127552&&e<=127560||e===127568||e===127569||e>=127584&&e<=127589||e>=127744&&e<=127776||e>=127789&&e<=127797||e>=127799&&e<=127868||e>=127870&&e<=127891||e>=127904&&e<=127946||e>=127951&&e<=127955||e>=127968&&e<=127984||e===127988||e>=127992&&e<=128062||e===128064||e>=128066&&e<=128252||e>=128255&&e<=128317||e>=128331&&e<=128334||e>=128336&&e<=128359||e===128378||e===128405||e===128406||e===128420||e>=128507&&e<=128591||e>=128640&&e<=128709||e===128716||e>=128720&&e<=128722||e>=128725&&e<=128727||e>=128732&&e<=128735||e===128747||e===128748||e>=128756&&e<=128764||e>=128992&&e<=129003||e===129008||e>=129292&&e<=129338||e>=129340&&e<=129349||e>=129351&&e<=129535||e>=129648&&e<=129660||e>=129664&&e<=129673||e>=129679&&e<=129734||e>=129742&&e<=129756||e>=129759&&e<=129769||e>=129776&&e<=129784||e>=131072&&e<=196605||e>=196608&&e<=262141}var ll=e=>!(ol(e)||sl(e)),cl=/[^\x20-\x7F]/u;function Dl(e){if(!e)return 0;if(!cl.test(e))return e.length;e=e.replace(il()," ");let t=0;for(let r of e){let u=r.codePointAt(0);u<=31||u>=127&&u<=159||u>=768&&u<=879||(t+=ll(u)?1:2)}return t}var va=Dl,ke=Symbol("MODE_BREAK"),Ge=Symbol("MODE_FLAT"),Vt=Symbol("cursor"),_u=Symbol("DOC_FILL_PRINTED_LENGTH");function Aa(){return{value:"",length:0,queue:[]}}function fl(e,t){return bu(e,{type:"indent"},t)}function pl(e,t,r){return t===Number.NEGATIVE_INFINITY?e.root||Aa():t<0?bu(e,{type:"dedent"},r):t?t.type==="root"?{...e,root:e}:bu(e,{type:typeof t=="string"?"stringAlign":"numberAlign",n:t},r):e}function bu(e,t,r){let u=t.type==="dedent"?e.queue.slice(0,-1):[...e.queue,t],n="",a=0,i=0,o=0;for(let p of u)switch(p.type){case"indent":l(),r.useTabs?s(1):c(r.tabWidth);break;case"stringAlign":l(),n+=p.n,a+=p.n.length;break;case"numberAlign":i+=1,o+=p.n;break;default:throw new Error(`Unexpected type '${p.type}'`)}return f(),{...e,value:n,length:a,queue:u};function s(p){n+=" ".repeat(p),a+=r.tabWidth*p}function c(p){n+=" ".repeat(p),a+=p}function l(){r.useTabs?D():f()}function D(){i>0&&s(i),d()}function f(){o>0&&c(o),d()}function d(){i=0,o=0}}function Bu(e){let t=0,r=0,u=e.length;e:for(;u--;){let n=e[u];if(n===Vt){r++;continue}for(let a=n.length-1;a>=0;a--){let i=n[a];if(i===" "||i===" ")t++;else{e[u]=n.slice(0,a+1);break e}}}if(t>0||r>0)for(e.length=u+1;r-- >0;)e.push(Vt);return t}function Rr(e,t,r,u,n,a){if(r===Number.POSITIVE_INFINITY)return!0;let i=t.length,o=[e],s=[];for(;r>=0;){if(o.length===0){if(i===0)return!0;o.push(t[--i]);continue}let{mode:c,doc:l}=o.pop(),D=Ot(l);switch(D){case xt:s.push(l),r-=va(l);break;case ze:case ft:{let f=D===ze?l:l.parts,d=l[_u]??0;for(let p=f.length-1;p>=d;p--)o.push({mode:c,doc:f[p]});break}case lt:case ct:case pt:case gt:o.push({mode:c,doc:l.contents});break;case Dt:r+=Bu(s);break;case Te:{if(a&&l.break)return!1;let f=l.break?ke:c,d=l.expandedStates&&f===ke?st(!1,l.expandedStates,-1):l.contents;o.push({mode:f,doc:d});break}case je:{let d=(l.groupId?n[l.groupId]||Ge:c)===ke?l.breakContents:l.flatContents;d&&o.push({mode:c,doc:d});break}case Be:if(c===ke||l.hard)return!0;l.soft||(s.push(" "),r--);break;case dt:u=!0;break;case ht:if(u)return!1;break}}return!1}function dl(e,t){let r={},u=t.printWidth,n=al(t.endOfLine),a=0,i=[{ind:Aa(),mode:ke,doc:e}],o=[],s=!1,c=[],l=0;for(xs(e);i.length>0;){let{ind:f,mode:d,doc:p}=i.pop();switch(Ot(p)){case xt:{let h=n!==`
601
+ `?nl(!1,p,`
602
+ `,n):p;o.push(h),i.length>0&&(a+=va(h));break}case ze:for(let h=p.length-1;h>=0;h--)i.push({ind:f,mode:d,doc:p[h]});break;case Pt:if(l>=2)throw new Error("There are too many 'cursor' in doc.");o.push(Vt),l++;break;case lt:i.push({ind:fl(f,t),mode:d,doc:p.contents});break;case ct:i.push({ind:pl(f,p.n,t),mode:d,doc:p.contents});break;case Dt:a-=Bu(o);break;case Te:switch(d){case Ge:if(!s){i.push({ind:f,mode:p.break?ke:Ge,doc:p.contents});break}case ke:{s=!1;let h={ind:f,mode:Ge,doc:p.contents},v=u-a,y=c.length>0;if(!p.break&&Rr(h,i,v,y,r))i.push(h);else if(p.expandedStates){let E=st(!1,p.expandedStates,-1);if(p.break){i.push({ind:f,mode:ke,doc:E});break}else for(let C=1;C<p.expandedStates.length+1;C++)if(C>=p.expandedStates.length){i.push({ind:f,mode:ke,doc:E});break}else{let S=p.expandedStates[C],g={ind:f,mode:Ge,doc:S};if(Rr(g,i,v,y,r)){i.push(g);break}}}else i.push({ind:f,mode:ke,doc:p.contents});break}}p.id&&(r[p.id]=st(!1,i,-1).mode);break;case ft:{let h=u-a,v=p[_u]??0,{parts:y}=p,E=y.length-v;if(E===0)break;let C=y[v+0],S=y[v+1],g={ind:f,mode:Ge,doc:C},B={ind:f,mode:ke,doc:C},x=Rr(g,[],h,c.length>0,r,!0);if(E===1){x?i.push(g):i.push(B);break}let m={ind:f,mode:Ge,doc:S},R={ind:f,mode:ke,doc:S};if(E===2){x?i.push(m,g):i.push(R,B);break}let N=y[v+2],w={ind:f,mode:d,doc:{...p,[_u]:v+2}};Rr({ind:f,mode:Ge,doc:[C,S,N]},[],h,c.length>0,r,!0)?i.push(w,m,g):x?i.push(w,R,g):i.push(w,R,B);break}case je:case pt:{let h=p.groupId?r[p.groupId]:d;if(h===ke){let v=p.type===je?p.breakContents:p.negate?p.contents:xr(p.contents);v&&i.push({ind:f,mode:d,doc:v})}if(h===Ge){let v=p.type===je?p.flatContents:p.negate?xr(p.contents):p.contents;v&&i.push({ind:f,mode:d,doc:v})}break}case dt:c.push({ind:f,mode:d,doc:p.contents});break;case ht:c.length>0&&i.push({ind:f,mode:d,doc:xu});break;case Be:switch(d){case Ge:if(p.hard)s=!0;else{p.soft||(o.push(" "),a+=1);break}case ke:if(c.length>0){i.push({ind:f,mode:d,doc:p},...c.reverse()),c.length=0;break}p.literal?f.root?(o.push(n,f.root.value),a=f.root.length):(o.push(n),a=0):(a-=Bu(o),o.push(n+f.value),a=f.length);break}break;case gt:i.push({ind:f,mode:d,doc:p.contents});break;case qe:break;default:throw new Kt(p)}i.length===0&&c.length>0&&(i.push(...c.reverse()),c.length=0)}let D=o.indexOf(Vt);if(D!==-1){let f=o.indexOf(Vt,D+1);if(f===-1)return{formatted:o.filter(v=>v!==Vt).join("")};let d=o.slice(0,D).join(""),p=o.slice(D+1,f).join(""),h=o.slice(f+1).join("");return{formatted:d+p+h,cursorNodeStart:d.length,cursorNodeText:p}}return{formatted:o.join("")}}var ya={join:Ca,line:Js,softline:Qs,hardline:Zs,literalline:Ea,group:Fa,conditionalGroup:Us,fill:qs,lineSuffix:zs,lineSuffixBoundary:Ys,cursor:el,breakParent:Ru,ifBreak:Vs,trim:Xs,indent:xr,indentIfBreak:Ks,align:zt,addAlignmentToDoc:tl,markAsRoot:Ws,dedentToRoot:Hs,dedent:Gs,hardlineWithoutBreakParent:xu,literallineWithoutBreakParent:ma,label:rl,concat:e=>e},_a={printDocToString:dl},ba={willBreak:Rs,traverseDoc:wu,findInDoc:Su,mapDoc:Pr,removeLines:Os,stripTrailingHardline:Ts,replaceEndOfLine:Ls,canBreak:$s},hl=da;var Yt=gl(import.meta.url),El=Fl(import.meta.url),g1=ml(El),Cl=Object.create,tu=Object.defineProperty,vl=Object.getOwnPropertyDescriptor,Ai=Object.getOwnPropertyNames,Al=Object.getPrototypeOf,yl=Object.prototype.hasOwnProperty,yi=e=>{throw TypeError(e)},_l=(e,t,r)=>t in e?tu(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,oe=(e=>typeof Yt<"u"?Yt:typeof Proxy<"u"?new Proxy(e,{get:(t,r)=>(typeof Yt<"u"?Yt:t)[r]}):e)(function(e){if(typeof Yt<"u")return Yt.apply(this,arguments);throw Error('Dynamic require of "'+e+'" is not supported')}),G=(e,t)=>function(){return t||(0,e[Ai(e)[0]])((t={exports:{}}).exports,t),t.exports},vr=(e,t)=>{for(var r in t)tu(e,r,{get:t[r],enumerable:!0})},bl=(e,t,r,u)=>{if(t&&typeof t=="object"||typeof t=="function")for(let n of Ai(t))!yl.call(e,n)&&n!==r&&tu(e,n,{get:()=>t[n],enumerable:!(u=vl(t,n))||u.enumerable});return e},We=(e,t,r)=>(r=e!=null?Cl(Al(e)):{},bl(t||!e||!e.__esModule?tu(r,"default",{value:e,enumerable:!0}):r,e)),Vu=(e,t,r)=>_l(e,typeof t!="symbol"?t+"":t,r),dn=(e,t,r)=>t.has(e)||yi("Cannot "+r),ue=(e,t,r)=>(dn(e,t,"read from private field"),r?r.call(e):t.get(e)),we=(e,t,r)=>t.has(e)?yi("Cannot add the same private member more than once"):t instanceof WeakSet?t.add(e):t.set(e,r),me=(e,t,r,u)=>(dn(e,t,"write to private field"),u?u.call(e,r):t.set(e,r),r),mt=(e,t,r)=>(dn(e,t,"access private method"),r),Bl=G({"node_modules/fast-glob/out/utils/array.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.splitWhen=e.flatten=void 0;function t(u){return u.reduce((n,a)=>[].concat(n,a),[])}e.flatten=t;function r(u,n){let a=[[]],i=0;for(let o of u)n(o)?(i++,a[i]=[]):a[i].push(o);return a}e.splitWhen=r}}),wl=G({"node_modules/fast-glob/out/utils/errno.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.isEnoentCodeError=void 0;function t(r){return r.code==="ENOENT"}e.isEnoentCodeError=t}}),Sl=G({"node_modules/fast-glob/out/utils/fs.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.createDirentFromStats=void 0;var t=class{constructor(u,n){this.name=u,this.isBlockDevice=n.isBlockDevice.bind(n),this.isCharacterDevice=n.isCharacterDevice.bind(n),this.isDirectory=n.isDirectory.bind(n),this.isFIFO=n.isFIFO.bind(n),this.isFile=n.isFile.bind(n),this.isSocket=n.isSocket.bind(n),this.isSymbolicLink=n.isSymbolicLink.bind(n)}};function r(u,n){return new t(u,n)}e.createDirentFromStats=r}}),kl=G({"node_modules/fast-glob/out/utils/path.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.convertPosixPathToPattern=e.convertWindowsPathToPattern=e.convertPathToPattern=e.escapePosixPath=e.escapeWindowsPath=e.escape=e.removeLeadingDotSegment=e.makeAbsolute=e.unixify=void 0;var t=oe("os"),r=oe("path"),u=t.platform()==="win32",n=2,a=/(\\?)([()*?[\]{|}]|^!|[!+@](?=\()|\\(?![!()*+?@[\]{|}]))/g,i=/(\\?)([()[\]{}]|^!|[!+@](?=\())/g,o=/^\\\\([.?])/,s=/\\(?![!()+@[\]{}])/g;function c(v){return v.replace(/\\/g,"/")}e.unixify=c;function l(v,y){return r.resolve(v,y)}e.makeAbsolute=l;function D(v){if(v.charAt(0)==="."){let y=v.charAt(1);if(y==="/"||y==="\\")return v.slice(n)}return v}e.removeLeadingDotSegment=D,e.escape=u?f:d;function f(v){return v.replace(i,"\\$2")}e.escapeWindowsPath=f;function d(v){return v.replace(a,"\\$2")}e.escapePosixPath=d,e.convertPathToPattern=u?p:h;function p(v){return f(v).replace(o,"//$1").replace(s,"/")}e.convertWindowsPathToPattern=p;function h(v){return d(v)}e.convertPosixPathToPattern=h}}),Rl=G({"node_modules/is-extglob/index.js"(e,t){t.exports=function(u){if(typeof u!="string"||u==="")return!1;for(var n;n=/(\\).|([@?!+*]\(.*\))/g.exec(u);){if(n[2])return!0;u=u.slice(n.index+n[0].length)}return!1}}}),xl=G({"node_modules/is-glob/index.js"(e,t){var r=Rl(),u={"{":"}","(":")","[":"]"},n=function(i){if(i[0]==="!")return!0;for(var o=0,s=-2,c=-2,l=-2,D=-2,f=-2;o<i.length;){if(i[o]==="*"||i[o+1]==="?"&&/[\].+)]/.test(i[o])||c!==-1&&i[o]==="["&&i[o+1]!=="]"&&(c<o&&(c=i.indexOf("]",o)),c>o&&(f===-1||f>c||(f=i.indexOf("\\",o),f===-1||f>c)))||l!==-1&&i[o]==="{"&&i[o+1]!=="}"&&(l=i.indexOf("}",o),l>o&&(f=i.indexOf("\\",o),f===-1||f>l))||D!==-1&&i[o]==="("&&i[o+1]==="?"&&/[:!=]/.test(i[o+2])&&i[o+3]!==")"&&(D=i.indexOf(")",o),D>o&&(f=i.indexOf("\\",o),f===-1||f>D))||s!==-1&&i[o]==="("&&i[o+1]!=="|"&&(s<o&&(s=i.indexOf("|",o)),s!==-1&&i[s+1]!==")"&&(D=i.indexOf(")",s),D>s&&(f=i.indexOf("\\",s),f===-1||f>D))))return!0;if(i[o]==="\\"){var d=i[o+1];o+=2;var p=u[d];if(p){var h=i.indexOf(p,o);h!==-1&&(o=h+1)}if(i[o]==="!")return!0}else o++}return!1},a=function(i){if(i[0]==="!")return!0;for(var o=0;o<i.length;){if(/[*?{}()[\]]/.test(i[o]))return!0;if(i[o]==="\\"){var s=i[o+1];o+=2;var c=u[s];if(c){var l=i.indexOf(c,o);l!==-1&&(o=l+1)}if(i[o]==="!")return!0}else o++}return!1};t.exports=function(o,s){if(typeof o!="string"||o==="")return!1;if(r(o))return!0;var c=n;return s&&s.strict===!1&&(c=a),c(o)}}}),Pl=G({"node_modules/glob-parent/index.js"(e,t){"use strict";var r=xl(),u=oe("path").posix.dirname,n=oe("os").platform()==="win32",a="/",i=/\\/g,o=/[\{\[].*[\}\]]$/,s=/(^|[^\\])([\{\[]|\([^\)]+$)/,c=/\\([\!\*\?\|\[\]\(\)\{\}])/g;t.exports=function(D,f){var d=Object.assign({flipBackslashes:!0},f);d.flipBackslashes&&n&&D.indexOf(a)<0&&(D=D.replace(i,a)),o.test(D)&&(D+=a),D+="a";do D=u(D);while(r(D)||s.test(D));return D.replace(c,"$1")}}}),hn=G({"node_modules/braces/lib/utils.js"(e){"use strict";e.isInteger=t=>typeof t=="number"?Number.isInteger(t):typeof t=="string"&&t.trim()!==""?Number.isInteger(Number(t)):!1,e.find=(t,r)=>t.nodes.find(u=>u.type===r),e.exceedsLimit=(t,r,u=1,n)=>n===!1||!e.isInteger(t)||!e.isInteger(r)?!1:(Number(r)-Number(t))/Number(u)>=n,e.escapeNode=(t,r=0,u)=>{let n=t.nodes[r];n&&(u&&n.type===u||n.type==="open"||n.type==="close")&&n.escaped!==!0&&(n.value="\\"+n.value,n.escaped=!0)},e.encloseBrace=t=>t.type!=="brace"?!1:t.commas>>0+t.ranges>>0===0?(t.invalid=!0,!0):!1,e.isInvalidBrace=t=>t.type!=="brace"?!1:t.invalid===!0||t.dollar?!0:t.commas>>0+t.ranges>>0===0||t.open!==!0||t.close!==!0?(t.invalid=!0,!0):!1,e.isOpenOrClose=t=>t.type==="open"||t.type==="close"?!0:t.open===!0||t.close===!0,e.reduce=t=>t.reduce((r,u)=>(u.type==="text"&&r.push(u.value),u.type==="range"&&(u.type="text"),r),[]),e.flatten=(...t)=>{let r=[],u=n=>{for(let a=0;a<n.length;a++){let i=n[a];if(Array.isArray(i)){u(i);continue}i!==void 0&&r.push(i)}return r};return u(t),r}}}),gn=G({"node_modules/braces/lib/stringify.js"(e,t){"use strict";var r=hn();t.exports=(u,n={})=>{let a=(i,o={})=>{let s=n.escapeInvalid&&r.isInvalidBrace(o),c=i.invalid===!0&&n.escapeInvalid===!0,l="";if(i.value)return(s||c)&&r.isOpenOrClose(i)?"\\"+i.value:i.value;if(i.value)return i.value;if(i.nodes)for(let D of i.nodes)l+=a(D);return l};return a(u)}}}),Ol=G({"node_modules/is-number/index.js"(e,t){"use strict";t.exports=function(r){return typeof r=="number"?r-r===0:typeof r=="string"&&r.trim()!==""?Number.isFinite?Number.isFinite(+r):isFinite(+r):!1}}}),Tl=G({"node_modules/to-regex-range/index.js"(e,t){"use strict";var r=Ol(),u=(E,C,S)=>{if(r(E)===!1)throw new TypeError("toRegexRange: expected the first argument to be a number");if(C===void 0||E===C)return String(E);if(r(C)===!1)throw new TypeError("toRegexRange: expected the second argument to be a number.");let g={relaxZeros:!0,...S};typeof g.strictZeros=="boolean"&&(g.relaxZeros=g.strictZeros===!1);let B=String(g.relaxZeros),x=String(g.shorthand),m=String(g.capture),R=String(g.wrap),N=E+":"+C+"="+B+x+m+R;if(u.cache.hasOwnProperty(N))return u.cache[N].result;let w=Math.min(E,C),O=Math.max(E,C);if(Math.abs(w-O)===1){let L=E+"|"+C;return g.capture?`(${L})`:g.wrap===!1?L:`(?:${L})`}let F=v(E)||v(C),A={min:E,max:C,a:w,b:O},_=[],k=[];if(F&&(A.isPadded=F,A.maxLen=String(A.max).length),w<0){let L=O<0?Math.abs(O):1;k=o(L,Math.abs(w),A,g),w=A.a=0}return O>=0&&(_=o(w,O,A,g)),A.negatives=k,A.positives=_,A.result=n(k,_,g),g.capture===!0?A.result=`(${A.result})`:g.wrap!==!1&&_.length+k.length>1&&(A.result=`(?:${A.result})`),u.cache[N]=A,A.result};function n(E,C,S){let g=s(E,C,"-",!1,S)||[],B=s(C,E,"",!1,S)||[],x=s(E,C,"-?",!0,S)||[];return g.concat(x).concat(B).join("|")}function a(E,C){let S=1,g=1,B=f(E,S),x=new Set([C]);for(;E<=B&&B<=C;)x.add(B),S+=1,B=f(E,S);for(B=d(C+1,g)-1;E<B&&B<=C;)x.add(B),g+=1,B=d(C+1,g)-1;return x=[...x],x.sort(l),x}function i(E,C,S){if(E===C)return{pattern:E,count:[],digits:0};let g=c(E,C),B=g.length,x="",m=0;for(let R=0;R<B;R++){let[N,w]=g[R];N===w?x+=N:N!=="0"||w!=="9"?x+=h(N,w,S):m++}return m&&(x+=S.shorthand===!0?"\\d":"[0-9]"),{pattern:x,count:[m],digits:B}}function o(E,C,S,g){let B=a(E,C),x=[],m=E,R;for(let N=0;N<B.length;N++){let w=B[N],O=i(String(m),String(w),g),F="";if(!S.isPadded&&R&&R.pattern===O.pattern){R.count.length>1&&R.count.pop(),R.count.push(O.count[0]),R.string=R.pattern+p(R.count),m=w+1;continue}S.isPadded&&(F=y(w,S,g)),O.string=F+O.pattern+p(O.count),x.push(O),m=w+1,R=O}return x}function s(E,C,S,g,B){let x=[];for(let m of E){let{string:R}=m;!g&&!D(C,"string",R)&&x.push(S+R),g&&D(C,"string",R)&&x.push(S+R)}return x}function c(E,C){let S=[];for(let g=0;g<E.length;g++)S.push([E[g],C[g]]);return S}function l(E,C){return E>C?1:C>E?-1:0}function D(E,C,S){return E.some(g=>g[C]===S)}function f(E,C){return Number(String(E).slice(0,-C)+"9".repeat(C))}function d(E,C){return E-E%Math.pow(10,C)}function p(E){let[C=0,S=""]=E;return S||C>1?`{${C+(S?","+S:"")}}`:""}function h(E,C,S){return`[${E}${C-E===1?"":"-"}${C}]`}function v(E){return/^-?(0+)\d/.test(E)}function y(E,C,S){if(!C.isPadded)return E;let g=Math.abs(C.maxLen-String(E).length),B=S.relaxZeros!==!1;switch(g){case 0:return"";case 1:return B?"0?":"0";case 2:return B?"0{0,2}":"00";default:return B?`0{0,${g}}`:`0{${g}}`}}u.cache={},u.clearCache=()=>u.cache={},t.exports=u}}),_i=G({"node_modules/fill-range/index.js"(e,t){"use strict";var r=oe("util"),u=Tl(),n=g=>g!==null&&typeof g=="object"&&!Array.isArray(g),a=g=>B=>g===!0?Number(B):String(B),i=g=>typeof g=="number"||typeof g=="string"&&g!=="",o=g=>Number.isInteger(+g),s=g=>{let B=`${g}`,x=-1;if(B[0]==="-"&&(B=B.slice(1)),B==="0")return!1;for(;B[++x]==="0";);return x>0},c=(g,B,x)=>typeof g=="string"||typeof B=="string"?!0:x.stringify===!0,l=(g,B,x)=>{if(B>0){let m=g[0]==="-"?"-":"";m&&(g=g.slice(1)),g=m+g.padStart(m?B-1:B,"0")}return x===!1?String(g):g},D=(g,B)=>{let x=g[0]==="-"?"-":"";for(x&&(g=g.slice(1),B--);g.length<B;)g="0"+g;return x?"-"+g:g},f=(g,B,x)=>{g.negatives.sort((O,F)=>O<F?-1:O>F?1:0),g.positives.sort((O,F)=>O<F?-1:O>F?1:0);let m=B.capture?"":"?:",R="",N="",w;return g.positives.length&&(R=g.positives.map(O=>D(String(O),x)).join("|")),g.negatives.length&&(N=`-(${m}${g.negatives.map(O=>D(String(O),x)).join("|")})`),R&&N?w=`${R}|${N}`:w=R||N,B.wrap?`(${m}${w})`:w},d=(g,B,x,m)=>{if(x)return u(g,B,{wrap:!1,...m});let R=String.fromCharCode(g);if(g===B)return R;let N=String.fromCharCode(B);return`[${R}-${N}]`},p=(g,B,x)=>{if(Array.isArray(g)){let m=x.wrap===!0,R=x.capture?"":"?:";return m?`(${R}${g.join("|")})`:g.join("|")}return u(g,B,x)},h=(...g)=>new RangeError("Invalid range arguments: "+r.inspect(...g)),v=(g,B,x)=>{if(x.strictRanges===!0)throw h([g,B]);return[]},y=(g,B)=>{if(B.strictRanges===!0)throw new TypeError(`Expected step "${g}" to be a number`);return[]},E=(g,B,x=1,m={})=>{let R=Number(g),N=Number(B);if(!Number.isInteger(R)||!Number.isInteger(N)){if(m.strictRanges===!0)throw h([g,B]);return[]}R===0&&(R=0),N===0&&(N=0);let w=R>N,O=String(g),F=String(B),A=String(x);x=Math.max(Math.abs(x),1);let _=s(O)||s(F)||s(A),k=_?Math.max(O.length,F.length,A.length):0,L=_===!1&&c(g,B,m)===!1,W=m.transform||a(L);if(m.toRegex&&x===1)return d(D(g,k),D(B,k),!0,m);let M={negatives:[],positives:[]},H=T=>M[T<0?"negatives":"positives"].push(Math.abs(T)),j=[],q=0;for(;w?R>=N:R<=N;)m.toRegex===!0&&x>1?H(R):j.push(l(W(R,q),k,L)),R=w?R-x:R+x,q++;return m.toRegex===!0?x>1?f(M,m,k):p(j,null,{wrap:!1,...m}):j},C=(g,B,x=1,m={})=>{if(!o(g)&&g.length>1||!o(B)&&B.length>1)return v(g,B,m);let R=m.transform||(L=>String.fromCharCode(L)),N=`${g}`.charCodeAt(0),w=`${B}`.charCodeAt(0),O=N>w,F=Math.min(N,w),A=Math.max(N,w);if(m.toRegex&&x===1)return d(F,A,!1,m);let _=[],k=0;for(;O?N>=w:N<=w;)_.push(R(N,k)),N=O?N-x:N+x,k++;return m.toRegex===!0?p(_,null,{wrap:!1,options:m}):_},S=(g,B,x,m={})=>{if(B==null&&i(g))return[g];if(!i(g)||!i(B))return v(g,B,m);if(typeof x=="function")return S(g,B,1,{transform:x});if(n(x))return S(g,B,0,x);let R={...m};return R.capture===!0&&(R.wrap=!0),x=x||R.step||1,o(x)?o(g)&&o(B)?E(g,B,x,R):C(g,B,Math.max(Math.abs(x),1),R):x!=null&&!n(x)?y(x,R):S(g,B,1,x)};t.exports=S}}),Il=G({"node_modules/braces/lib/compile.js"(e,t){"use strict";var r=_i(),u=hn(),n=(a,i={})=>{let o=(s,c={})=>{let l=u.isInvalidBrace(c),D=s.invalid===!0&&i.escapeInvalid===!0,f=l===!0||D===!0,d=i.escapeInvalid===!0?"\\":"",p="";if(s.isOpen===!0)return d+s.value;if(s.isClose===!0)return console.log("node.isClose",d,s.value),d+s.value;if(s.type==="open")return f?d+s.value:"(";if(s.type==="close")return f?d+s.value:")";if(s.type==="comma")return s.prev.type==="comma"?"":f?s.value:"|";if(s.value)return s.value;if(s.nodes&&s.ranges>0){let h=u.reduce(s.nodes),v=r(...h,{...i,wrap:!1,toRegex:!0,strictZeros:!0});if(v.length!==0)return h.length>1&&v.length>1?`(${v})`:v}if(s.nodes)for(let h of s.nodes)p+=o(h,s);return p};return o(a)};t.exports=n}}),Nl=G({"node_modules/braces/lib/expand.js"(e,t){"use strict";var r=_i(),u=gn(),n=hn(),a=(o="",s="",c=!1)=>{let l=[];if(o=[].concat(o),s=[].concat(s),!s.length)return o;if(!o.length)return c?n.flatten(s).map(D=>`{${D}}`):s;for(let D of o)if(Array.isArray(D))for(let f of D)l.push(a(f,s,c));else for(let f of s)c===!0&&typeof f=="string"&&(f=`{${f}}`),l.push(Array.isArray(f)?a(D,f,c):D+f);return n.flatten(l)},i=(o,s={})=>{let c=s.rangeLimit===void 0?1e3:s.rangeLimit,l=(D,f={})=>{D.queue=[];let d=f,p=f.queue;for(;d.type!=="brace"&&d.type!=="root"&&d.parent;)d=d.parent,p=d.queue;if(D.invalid||D.dollar){p.push(a(p.pop(),u(D,s)));return}if(D.type==="brace"&&D.invalid!==!0&&D.nodes.length===2){p.push(a(p.pop(),["{}"]));return}if(D.nodes&&D.ranges>0){let E=n.reduce(D.nodes);if(n.exceedsLimit(...E,s.step,c))throw new RangeError("expanded array length exceeds range limit. Use options.rangeLimit to increase or disable the limit.");let C=r(...E,s);C.length===0&&(C=u(D,s)),p.push(a(p.pop(),C)),D.nodes=[];return}let h=n.encloseBrace(D),v=D.queue,y=D;for(;y.type!=="brace"&&y.type!=="root"&&y.parent;)y=y.parent,v=y.queue;for(let E=0;E<D.nodes.length;E++){let C=D.nodes[E];if(C.type==="comma"&&D.type==="brace"){E===1&&v.push(""),v.push("");continue}if(C.type==="close"){p.push(a(p.pop(),v,h));continue}if(C.value&&C.type!=="open"){v.push(a(v.pop(),C.value));continue}C.nodes&&l(C,D)}return v};return n.flatten(l(o))};t.exports=i}}),Ll=G({"node_modules/braces/lib/constants.js"(e,t){"use strict";t.exports={MAX_LENGTH:1e4,CHAR_0:"0",CHAR_9:"9",CHAR_UPPERCASE_A:"A",CHAR_LOWERCASE_A:"a",CHAR_UPPERCASE_Z:"Z",CHAR_LOWERCASE_Z:"z",CHAR_LEFT_PARENTHESES:"(",CHAR_RIGHT_PARENTHESES:")",CHAR_ASTERISK:"*",CHAR_AMPERSAND:"&",CHAR_AT:"@",CHAR_BACKSLASH:"\\",CHAR_BACKTICK:"`",CHAR_CARRIAGE_RETURN:"\r",CHAR_CIRCUMFLEX_ACCENT:"^",CHAR_COLON:":",CHAR_COMMA:",",CHAR_DOLLAR:"$",CHAR_DOT:".",CHAR_DOUBLE_QUOTE:'"',CHAR_EQUAL:"=",CHAR_EXCLAMATION_MARK:"!",CHAR_FORM_FEED:"\f",CHAR_FORWARD_SLASH:"/",CHAR_HASH:"#",CHAR_HYPHEN_MINUS:"-",CHAR_LEFT_ANGLE_BRACKET:"<",CHAR_LEFT_CURLY_BRACE:"{",CHAR_LEFT_SQUARE_BRACKET:"[",CHAR_LINE_FEED:`
603
+ `,CHAR_NO_BREAK_SPACE:"\xA0",CHAR_PERCENT:"%",CHAR_PLUS:"+",CHAR_QUESTION_MARK:"?",CHAR_RIGHT_ANGLE_BRACKET:">",CHAR_RIGHT_CURLY_BRACE:"}",CHAR_RIGHT_SQUARE_BRACKET:"]",CHAR_SEMICOLON:";",CHAR_SINGLE_QUOTE:"'",CHAR_SPACE:" ",CHAR_TAB:" ",CHAR_UNDERSCORE:"_",CHAR_VERTICAL_LINE:"|",CHAR_ZERO_WIDTH_NOBREAK_SPACE:"\uFEFF"}}}),jl=G({"node_modules/braces/lib/parse.js"(e,t){"use strict";var r=gn(),{MAX_LENGTH:u,CHAR_BACKSLASH:n,CHAR_BACKTICK:a,CHAR_COMMA:i,CHAR_DOT:o,CHAR_LEFT_PARENTHESES:s,CHAR_RIGHT_PARENTHESES:c,CHAR_LEFT_CURLY_BRACE:l,CHAR_RIGHT_CURLY_BRACE:D,CHAR_LEFT_SQUARE_BRACKET:f,CHAR_RIGHT_SQUARE_BRACKET:d,CHAR_DOUBLE_QUOTE:p,CHAR_SINGLE_QUOTE:h,CHAR_NO_BREAK_SPACE:v,CHAR_ZERO_WIDTH_NOBREAK_SPACE:y}=Ll(),E=(C,S={})=>{if(typeof C!="string")throw new TypeError("Expected a string");let g=S||{},B=typeof g.maxLength=="number"?Math.min(u,g.maxLength):u;if(C.length>B)throw new SyntaxError(`Input length (${C.length}), exceeds max characters (${B})`);let x={type:"root",input:C,nodes:[]},m=[x],R=x,N=x,w=0,O=C.length,F=0,A=0,_,k=()=>C[F++],L=W=>{if(W.type==="text"&&N.type==="dot"&&(N.type="text"),N&&N.type==="text"&&W.type==="text"){N.value+=W.value;return}return R.nodes.push(W),W.parent=R,W.prev=N,N=W,W};for(L({type:"bos"});F<O;)if(R=m[m.length-1],_=k(),!(_===y||_===v)){if(_===n){L({type:"text",value:(S.keepEscaping?_:"")+k()});continue}if(_===d){L({type:"text",value:"\\"+_});continue}if(_===f){w++;let W;for(;F<O&&(W=k());){if(_+=W,W===f){w++;continue}if(W===n){_+=k();continue}if(W===d&&(w--,w===0))break}L({type:"text",value:_});continue}if(_===s){R=L({type:"paren",nodes:[]}),m.push(R),L({type:"text",value:_});continue}if(_===c){if(R.type!=="paren"){L({type:"text",value:_});continue}R=m.pop(),L({type:"text",value:_}),R=m[m.length-1];continue}if(_===p||_===h||_===a){let W=_,M;for(S.keepQuotes!==!0&&(_="");F<O&&(M=k());){if(M===n){_+=M+k();continue}if(M===W){S.keepQuotes===!0&&(_+=M);break}_+=M}L({type:"text",value:_});continue}if(_===l){A++;let M={type:"brace",open:!0,close:!1,dollar:N.value&&N.value.slice(-1)==="$"||R.dollar===!0,depth:A,commas:0,ranges:0,nodes:[]};R=L(M),m.push(R),L({type:"open",value:_});continue}if(_===D){if(R.type!=="brace"){L({type:"text",value:_});continue}let W="close";R=m.pop(),R.close=!0,L({type:W,value:_}),A--,R=m[m.length-1];continue}if(_===i&&A>0){if(R.ranges>0){R.ranges=0;let W=R.nodes.shift();R.nodes=[W,{type:"text",value:r(R)}]}L({type:"comma",value:_}),R.commas++;continue}if(_===o&&A>0&&R.commas===0){let W=R.nodes;if(A===0||W.length===0){L({type:"text",value:_});continue}if(N.type==="dot"){if(R.range=[],N.value+=_,N.type="range",R.nodes.length!==3&&R.nodes.length!==5){R.invalid=!0,R.ranges=0,N.type="text";continue}R.ranges++,R.args=[];continue}if(N.type==="range"){W.pop();let M=W[W.length-1];M.value+=N.value+_,N=M,R.ranges--;continue}L({type:"dot",value:_});continue}L({type:"text",value:_})}do if(R=m.pop(),R.type!=="root"){R.nodes.forEach(H=>{H.nodes||(H.type==="open"&&(H.isOpen=!0),H.type==="close"&&(H.isClose=!0),H.nodes||(H.type="text"),H.invalid=!0)});let W=m[m.length-1],M=W.nodes.indexOf(R);W.nodes.splice(M,1,...R.nodes)}while(m.length>0);return L({type:"eos"}),x};t.exports=E}}),$l=G({"node_modules/braces/index.js"(e,t){"use strict";var r=gn(),u=Il(),n=Nl(),a=jl(),i=(o,s={})=>{let c=[];if(Array.isArray(o))for(let l of o){let D=i.create(l,s);Array.isArray(D)?c.push(...D):c.push(D)}else c=[].concat(i.create(o,s));return s&&s.expand===!0&&s.nodupes===!0&&(c=[...new Set(c)]),c};i.parse=(o,s={})=>a(o,s),i.stringify=(o,s={})=>r(typeof o=="string"?i.parse(o,s):o,s),i.compile=(o,s={})=>(typeof o=="string"&&(o=i.parse(o,s)),u(o,s)),i.expand=(o,s={})=>{typeof o=="string"&&(o=i.parse(o,s));let c=n(o,s);return s.noempty===!0&&(c=c.filter(Boolean)),s.nodupes===!0&&(c=[...new Set(c)]),c},i.create=(o,s={})=>o===""||o.length<3?[o]:s.expand!==!0?i.compile(o,s):i.expand(o,s),t.exports=i}}),ru=G({"node_modules/micromatch/node_modules/picomatch/lib/constants.js"(e,t){"use strict";var r=oe("path"),u="\\\\/",n=`[^${u}]`,a="\\.",i="\\+",o="\\?",s="\\/",c="(?=.)",l="[^/]",D=`(?:${s}|$)`,f=`(?:^|${s})`,d=`${a}{1,2}${D}`,p=`(?!${a})`,h=`(?!${f}${d})`,v=`(?!${a}{0,1}${D})`,y=`(?!${d})`,E=`[^.${s}]`,C=`${l}*?`,S={DOT_LITERAL:a,PLUS_LITERAL:i,QMARK_LITERAL:o,SLASH_LITERAL:s,ONE_CHAR:c,QMARK:l,END_ANCHOR:D,DOTS_SLASH:d,NO_DOT:p,NO_DOTS:h,NO_DOT_SLASH:v,NO_DOTS_SLASH:y,QMARK_NO_DOT:E,STAR:C,START_ANCHOR:f},g={...S,SLASH_LITERAL:`[${u}]`,QMARK:n,STAR:`${n}*?`,DOTS_SLASH:`${a}{1,2}(?:[${u}]|$)`,NO_DOT:`(?!${a})`,NO_DOTS:`(?!(?:^|[${u}])${a}{1,2}(?:[${u}]|$))`,NO_DOT_SLASH:`(?!${a}{0,1}(?:[${u}]|$))`,NO_DOTS_SLASH:`(?!${a}{1,2}(?:[${u}]|$))`,QMARK_NO_DOT:`[^.${u}]`,START_ANCHOR:`(?:^|[${u}])`,END_ANCHOR:`(?:[${u}]|$)`},B={alnum:"a-zA-Z0-9",alpha:"a-zA-Z",ascii:"\\x00-\\x7F",blank:" \\t",cntrl:"\\x00-\\x1F\\x7F",digit:"0-9",graph:"\\x21-\\x7E",lower:"a-z",print:"\\x20-\\x7E ",punct:"\\-!\"#$%&'()\\*+,./:;<=>?@[\\]^_`{|}~",space:" \\t\\r\\n\\v\\f",upper:"A-Z",word:"A-Za-z0-9_",xdigit:"A-Fa-f0-9"};t.exports={MAX_LENGTH:1024*64,POSIX_REGEX_SOURCE:B,REGEX_BACKSLASH:/\\(?![*+?^${}(|)[\]])/g,REGEX_NON_SPECIAL_CHARS:/^[^@![\].,$*+?^{}()|\\/]+/,REGEX_SPECIAL_CHARS:/[-*+?.^${}(|)[\]]/,REGEX_SPECIAL_CHARS_BACKREF:/(\\?)((\W)(\3*))/g,REGEX_SPECIAL_CHARS_GLOBAL:/([-*+?.^${}(|)[\]])/g,REGEX_REMOVE_BACKSLASH:/(?:\[.*?[^\\]\]|\\(?=.))/g,REPLACEMENTS:{"***":"*","**/**":"**","**/**/**":"**"},CHAR_0:48,CHAR_9:57,CHAR_UPPERCASE_A:65,CHAR_LOWERCASE_A:97,CHAR_UPPERCASE_Z:90,CHAR_LOWERCASE_Z:122,CHAR_LEFT_PARENTHESES:40,CHAR_RIGHT_PARENTHESES:41,CHAR_ASTERISK:42,CHAR_AMPERSAND:38,CHAR_AT:64,CHAR_BACKWARD_SLASH:92,CHAR_CARRIAGE_RETURN:13,CHAR_CIRCUMFLEX_ACCENT:94,CHAR_COLON:58,CHAR_COMMA:44,CHAR_DOT:46,CHAR_DOUBLE_QUOTE:34,CHAR_EQUAL:61,CHAR_EXCLAMATION_MARK:33,CHAR_FORM_FEED:12,CHAR_FORWARD_SLASH:47,CHAR_GRAVE_ACCENT:96,CHAR_HASH:35,CHAR_HYPHEN_MINUS:45,CHAR_LEFT_ANGLE_BRACKET:60,CHAR_LEFT_CURLY_BRACE:123,CHAR_LEFT_SQUARE_BRACKET:91,CHAR_LINE_FEED:10,CHAR_NO_BREAK_SPACE:160,CHAR_PERCENT:37,CHAR_PLUS:43,CHAR_QUESTION_MARK:63,CHAR_RIGHT_ANGLE_BRACKET:62,CHAR_RIGHT_CURLY_BRACE:125,CHAR_RIGHT_SQUARE_BRACKET:93,CHAR_SEMICOLON:59,CHAR_SINGLE_QUOTE:39,CHAR_SPACE:32,CHAR_TAB:9,CHAR_UNDERSCORE:95,CHAR_VERTICAL_LINE:124,CHAR_ZERO_WIDTH_NOBREAK_SPACE:65279,SEP:r.sep,extglobChars(x){return{"!":{type:"negate",open:"(?:(?!(?:",close:`))${x.STAR})`},"?":{type:"qmark",open:"(?:",close:")?"},"+":{type:"plus",open:"(?:",close:")+"},"*":{type:"star",open:"(?:",close:")*"},"@":{type:"at",open:"(?:",close:")"}}},globChars(x){return x===!0?g:S}}}}),uu=G({"node_modules/micromatch/node_modules/picomatch/lib/utils.js"(e){"use strict";var t=oe("path"),r=process.platform==="win32",{REGEX_BACKSLASH:u,REGEX_REMOVE_BACKSLASH:n,REGEX_SPECIAL_CHARS:a,REGEX_SPECIAL_CHARS_GLOBAL:i}=ru();e.isObject=o=>o!==null&&typeof o=="object"&&!Array.isArray(o),e.hasRegexChars=o=>a.test(o),e.isRegexChar=o=>o.length===1&&e.hasRegexChars(o),e.escapeRegex=o=>o.replace(i,"\\$1"),e.toPosixSlashes=o=>o.replace(u,"/"),e.removeBackslashes=o=>o.replace(n,s=>s==="\\"?"":s),e.supportsLookbehinds=()=>{let o=process.version.slice(1).split(".").map(Number);return o.length===3&&o[0]>=9||o[0]===8&&o[1]>=10},e.isWindows=o=>o&&typeof o.windows=="boolean"?o.windows:r===!0||t.sep==="\\",e.escapeLast=(o,s,c)=>{let l=o.lastIndexOf(s,c);return l===-1?o:o[l-1]==="\\"?e.escapeLast(o,s,l-1):`${o.slice(0,l)}\\${o.slice(l)}`},e.removePrefix=(o,s={})=>{let c=o;return c.startsWith("./")&&(c=c.slice(2),s.prefix="./"),c},e.wrapOutput=(o,s={},c={})=>{let l=c.contains?"":"^",D=c.contains?"":"$",f=`${l}(?:${o})${D}`;return s.negated===!0&&(f=`(?:^(?!${f}).*$)`),f}}}),Ml=G({"node_modules/micromatch/node_modules/picomatch/lib/scan.js"(e,t){"use strict";var r=uu(),{CHAR_ASTERISK:u,CHAR_AT:n,CHAR_BACKWARD_SLASH:a,CHAR_COMMA:i,CHAR_DOT:o,CHAR_EXCLAMATION_MARK:s,CHAR_FORWARD_SLASH:c,CHAR_LEFT_CURLY_BRACE:l,CHAR_LEFT_PARENTHESES:D,CHAR_LEFT_SQUARE_BRACKET:f,CHAR_PLUS:d,CHAR_QUESTION_MARK:p,CHAR_RIGHT_CURLY_BRACE:h,CHAR_RIGHT_PARENTHESES:v,CHAR_RIGHT_SQUARE_BRACKET:y}=ru(),E=g=>g===c||g===a,C=g=>{g.isPrefix!==!0&&(g.depth=g.isGlobstar?1/0:1)},S=(g,B)=>{let x=B||{},m=g.length-1,R=x.parts===!0||x.scanToEnd===!0,N=[],w=[],O=[],F=g,A=-1,_=0,k=0,L=!1,W=!1,M=!1,H=!1,j=!1,q=!1,T=!1,J=!1,X=!1,I=!1,b=0,P,U,K={value:"",depth:0,isGlob:!1},le=()=>A>=m,ce=()=>F.charCodeAt(A+1),ae=()=>(P=U,F.charCodeAt(++A));for(;A<m;){U=ae();let Y;if(U===a){T=K.backslashes=!0,U=ae(),U===l&&(q=!0);continue}if(q===!0||U===l){for(b++;le()!==!0&&(U=ae());){if(U===a){T=K.backslashes=!0,ae();continue}if(U===l){b++;continue}if(q!==!0&&U===o&&(U=ae())===o){if(L=K.isBrace=!0,M=K.isGlob=!0,I=!0,R===!0)continue;break}if(q!==!0&&U===i){if(L=K.isBrace=!0,M=K.isGlob=!0,I=!0,R===!0)continue;break}if(U===h&&(b--,b===0)){q=!1,L=K.isBrace=!0,I=!0;break}}if(R===!0)continue;break}if(U===c){if(N.push(A),w.push(K),K={value:"",depth:0,isGlob:!1},I===!0)continue;if(P===o&&A===_+1){_+=2;continue}k=A+1;continue}if(x.noext!==!0&&(U===d||U===n||U===u||U===p||U===s)===!0&&ce()===D){if(M=K.isGlob=!0,H=K.isExtglob=!0,I=!0,U===s&&A===_&&(X=!0),R===!0){for(;le()!==!0&&(U=ae());){if(U===a){T=K.backslashes=!0,U=ae();continue}if(U===v){M=K.isGlob=!0,I=!0;break}}continue}break}if(U===u){if(P===u&&(j=K.isGlobstar=!0),M=K.isGlob=!0,I=!0,R===!0)continue;break}if(U===p){if(M=K.isGlob=!0,I=!0,R===!0)continue;break}if(U===f){for(;le()!==!0&&(Y=ae());){if(Y===a){T=K.backslashes=!0,ae();continue}if(Y===y){W=K.isBracket=!0,M=K.isGlob=!0,I=!0;break}}if(R===!0)continue;break}if(x.nonegate!==!0&&U===s&&A===_){J=K.negated=!0,_++;continue}if(x.noparen!==!0&&U===D){if(M=K.isGlob=!0,R===!0){for(;le()!==!0&&(U=ae());){if(U===D){T=K.backslashes=!0,U=ae();continue}if(U===v){I=!0;break}}continue}break}if(M===!0){if(I=!0,R===!0)continue;break}}x.noext===!0&&(H=!1,M=!1);let ne=F,Ae="",_e="";_>0&&(Ae=F.slice(0,_),F=F.slice(_),k-=_),ne&&M===!0&&k>0?(ne=F.slice(0,k),_e=F.slice(k)):M===!0?(ne="",_e=F):ne=F,ne&&ne!==""&&ne!=="/"&&ne!==F&&E(ne.charCodeAt(ne.length-1))&&(ne=ne.slice(0,-1)),x.unescape===!0&&(_e&&(_e=r.removeBackslashes(_e)),ne&&T===!0&&(ne=r.removeBackslashes(ne)));let ge={prefix:Ae,input:g,start:_,base:ne,glob:_e,isBrace:L,isBracket:W,isGlob:M,isExtglob:H,isGlobstar:j,negated:J,negatedExtglob:X};if(x.tokens===!0&&(ge.maxDepth=0,E(U)||w.push(K),ge.tokens=w),x.parts===!0||x.tokens===!0){let Y;for(let he=0;he<N.length;he++){let Rt=Y?Y+1:_,z=N[he],ie=g.slice(Rt,z);x.tokens&&(he===0&&_!==0?(w[he].isPrefix=!0,w[he].value=Ae):w[he].value=ie,C(w[he]),ge.maxDepth+=w[he].depth),(he!==0||ie!=="")&&O.push(ie),Y=z}if(Y&&Y+1<g.length){let he=g.slice(Y+1);O.push(he),x.tokens&&(w[w.length-1].value=he,C(w[w.length-1]),ge.maxDepth+=w[w.length-1].depth)}ge.slashes=N,ge.parts=O}return ge};t.exports=S}}),Hl=G({"node_modules/micromatch/node_modules/picomatch/lib/parse.js"(e,t){"use strict";var r=ru(),u=uu(),{MAX_LENGTH:n,POSIX_REGEX_SOURCE:a,REGEX_NON_SPECIAL_CHARS:i,REGEX_SPECIAL_CHARS_BACKREF:o,REPLACEMENTS:s}=r,c=(f,d)=>{if(typeof d.expandRange=="function")return d.expandRange(...f,d);f.sort();let p=`[${f.join("-")}]`;try{new RegExp(p)}catch{return f.map(v=>u.escapeRegex(v)).join("..")}return p},l=(f,d)=>`Missing ${f}: "${d}" - use "\\\\${d}" to match literal characters`,D=(f,d)=>{if(typeof f!="string")throw new TypeError("Expected a string");f=s[f]||f;let p={...d},h=typeof p.maxLength=="number"?Math.min(n,p.maxLength):n,v=f.length;if(v>h)throw new SyntaxError(`Input length: ${v}, exceeds maximum allowed length: ${h}`);let y={type:"bos",value:"",output:p.prepend||""},E=[y],C=p.capture?"":"?:",S=u.isWindows(d),g=r.globChars(S),B=r.extglobChars(g),{DOT_LITERAL:x,PLUS_LITERAL:m,SLASH_LITERAL:R,ONE_CHAR:N,DOTS_SLASH:w,NO_DOT:O,NO_DOT_SLASH:F,NO_DOTS_SLASH:A,QMARK:_,QMARK_NO_DOT:k,STAR:L,START_ANCHOR:W}=g,M=z=>`(${C}(?:(?!${W}${z.dot?w:x}).)*?)`,H=p.dot?"":O,j=p.dot?_:k,q=p.bash===!0?M(p):L;p.capture&&(q=`(${q})`),typeof p.noext=="boolean"&&(p.noextglob=p.noext);let T={input:f,index:-1,start:0,dot:p.dot===!0,consumed:"",output:"",prefix:"",backtrack:!1,negated:!1,brackets:0,braces:0,parens:0,quotes:0,globstar:!1,tokens:E};f=u.removePrefix(f,T),v=f.length;let J=[],X=[],I=[],b=y,P,U=()=>T.index===v-1,K=T.peek=(z=1)=>f[T.index+z],le=T.advance=()=>f[++T.index]||"",ce=()=>f.slice(T.index+1),ae=(z="",ie=0)=>{T.consumed+=z,T.index+=ie},ne=z=>{T.output+=z.output!=null?z.output:z.value,ae(z.value)},Ae=()=>{let z=1;for(;K()==="!"&&(K(2)!=="("||K(3)==="?");)le(),T.start++,z++;return z%2===0?!1:(T.negated=!0,T.start++,!0)},_e=z=>{T[z]++,I.push(z)},ge=z=>{T[z]--,I.pop()},Y=z=>{if(b.type==="globstar"){let ie=T.braces>0&&(z.type==="comma"||z.type==="brace"),V=z.extglob===!0||J.length&&(z.type==="pipe"||z.type==="paren");z.type!=="slash"&&z.type!=="paren"&&!ie&&!V&&(T.output=T.output.slice(0,-b.output.length),b.type="star",b.value="*",b.output=q,T.output+=b.output)}if(J.length&&z.type!=="paren"&&(J[J.length-1].inner+=z.value),(z.value||z.output)&&ne(z),b&&b.type==="text"&&z.type==="text"){b.value+=z.value,b.output=(b.output||"")+z.value;return}z.prev=b,E.push(z),b=z},he=(z,ie)=>{let V={...B[ie],conditions:1,inner:""};V.prev=b,V.parens=T.parens,V.output=T.output;let ee=(p.capture?"(":"")+V.open;_e("parens"),Y({type:z,value:ie,output:T.output?"":N}),Y({type:"paren",extglob:!0,value:le(),output:ee}),J.push(V)},Rt=z=>{let ie=z.close+(p.capture?")":""),V;if(z.type==="negate"){let ee=q;if(z.inner&&z.inner.length>1&&z.inner.includes("/")&&(ee=M(p)),(ee!==q||U()||/^\)+$/.test(ce()))&&(ie=z.close=`)$))${ee}`),z.inner.includes("*")&&(V=ce())&&/^\.[^\\/.]+$/.test(V)){let pe=D(V,{...d,fastpaths:!1}).output;ie=z.close=`)${pe})${ee})`}z.prev.type==="bos"&&(T.negatedExtglob=!0)}Y({type:"paren",extglob:!0,value:P,output:ie}),ge("parens")};if(p.fastpaths!==!1&&!/(^[*!]|[/()[\]{}"])/.test(f)){let z=!1,ie=f.replace(o,(V,ee,pe,be,Fe,hu)=>be==="\\"?(z=!0,V):be==="?"?ee?ee+be+(Fe?_.repeat(Fe.length):""):hu===0?j+(Fe?_.repeat(Fe.length):""):_.repeat(pe.length):be==="."?x.repeat(pe.length):be==="*"?ee?ee+be+(Fe?q:""):q:ee?V:`\\${V}`);return z===!0&&(p.unescape===!0?ie=ie.replace(/\\/g,""):ie=ie.replace(/\\+/g,V=>V.length%2===0?"\\\\":V?"\\":"")),ie===f&&p.contains===!0?(T.output=f,T):(T.output=u.wrapOutput(ie,T,d),T)}for(;!U();){if(P=le(),P==="\0")continue;if(P==="\\"){let V=K();if(V==="/"&&p.bash!==!0||V==="."||V===";")continue;if(!V){P+="\\",Y({type:"text",value:P});continue}let ee=/^\\+/.exec(ce()),pe=0;if(ee&&ee[0].length>2&&(pe=ee[0].length,T.index+=pe,pe%2!==0&&(P+="\\")),p.unescape===!0?P=le():P+=le(),T.brackets===0){Y({type:"text",value:P});continue}}if(T.brackets>0&&(P!=="]"||b.value==="["||b.value==="[^")){if(p.posix!==!1&&P===":"){let V=b.value.slice(1);if(V.includes("[")&&(b.posix=!0,V.includes(":"))){let ee=b.value.lastIndexOf("["),pe=b.value.slice(0,ee),be=b.value.slice(ee+2),Fe=a[be];if(Fe){b.value=pe+Fe,T.backtrack=!0,le(),!y.output&&E.indexOf(b)===1&&(y.output=N);continue}}}(P==="["&&K()!==":"||P==="-"&&K()==="]")&&(P=`\\${P}`),P==="]"&&(b.value==="["||b.value==="[^")&&(P=`\\${P}`),p.posix===!0&&P==="!"&&b.value==="["&&(P="^"),b.value+=P,ne({value:P});continue}if(T.quotes===1&&P!=='"'){P=u.escapeRegex(P),b.value+=P,ne({value:P});continue}if(P==='"'){T.quotes=T.quotes===1?0:1,p.keepQuotes===!0&&Y({type:"text",value:P});continue}if(P==="("){_e("parens"),Y({type:"paren",value:P});continue}if(P===")"){if(T.parens===0&&p.strictBrackets===!0)throw new SyntaxError(l("opening","("));let V=J[J.length-1];if(V&&T.parens===V.parens+1){Rt(J.pop());continue}Y({type:"paren",value:P,output:T.parens?")":"\\)"}),ge("parens");continue}if(P==="["){if(p.nobracket===!0||!ce().includes("]")){if(p.nobracket!==!0&&p.strictBrackets===!0)throw new SyntaxError(l("closing","]"));P=`\\${P}`}else _e("brackets");Y({type:"bracket",value:P});continue}if(P==="]"){if(p.nobracket===!0||b&&b.type==="bracket"&&b.value.length===1){Y({type:"text",value:P,output:`\\${P}`});continue}if(T.brackets===0){if(p.strictBrackets===!0)throw new SyntaxError(l("opening","["));Y({type:"text",value:P,output:`\\${P}`});continue}ge("brackets");let V=b.value.slice(1);if(b.posix!==!0&&V[0]==="^"&&!V.includes("/")&&(P=`/${P}`),b.value+=P,ne({value:P}),p.literalBrackets===!1||u.hasRegexChars(V))continue;let ee=u.escapeRegex(b.value);if(T.output=T.output.slice(0,-b.value.length),p.literalBrackets===!0){T.output+=ee,b.value=ee;continue}b.value=`(${C}${ee}|${b.value})`,T.output+=b.value;continue}if(P==="{"&&p.nobrace!==!0){_e("braces");let V={type:"brace",value:P,output:"(",outputIndex:T.output.length,tokensIndex:T.tokens.length};X.push(V),Y(V);continue}if(P==="}"){let V=X[X.length-1];if(p.nobrace===!0||!V){Y({type:"text",value:P,output:P});continue}let ee=")";if(V.dots===!0){let pe=E.slice(),be=[];for(let Fe=pe.length-1;Fe>=0&&(E.pop(),pe[Fe].type!=="brace");Fe--)pe[Fe].type!=="dots"&&be.unshift(pe[Fe].value);ee=c(be,p),T.backtrack=!0}if(V.comma!==!0&&V.dots!==!0){let pe=T.output.slice(0,V.outputIndex),be=T.tokens.slice(V.tokensIndex);V.value=V.output="\\{",P=ee="\\}",T.output=pe;for(let Fe of be)T.output+=Fe.output||Fe.value}Y({type:"brace",value:P,output:ee}),ge("braces"),X.pop();continue}if(P==="|"){J.length>0&&J[J.length-1].conditions++,Y({type:"text",value:P});continue}if(P===","){let V=P,ee=X[X.length-1];ee&&I[I.length-1]==="braces"&&(ee.comma=!0,V="|"),Y({type:"comma",value:P,output:V});continue}if(P==="/"){if(b.type==="dot"&&T.index===T.start+1){T.start=T.index+1,T.consumed="",T.output="",E.pop(),b=y;continue}Y({type:"slash",value:P,output:R});continue}if(P==="."){if(T.braces>0&&b.type==="dot"){b.value==="."&&(b.output=x);let V=X[X.length-1];b.type="dots",b.output+=P,b.value+=P,V.dots=!0;continue}if(T.braces+T.parens===0&&b.type!=="bos"&&b.type!=="slash"){Y({type:"text",value:P,output:x});continue}Y({type:"dot",value:P,output:x});continue}if(P==="?"){if(!(b&&b.value==="(")&&p.noextglob!==!0&&K()==="("&&K(2)!=="?"){he("qmark",P);continue}if(b&&b.type==="paren"){let ee=K(),pe=P;if(ee==="<"&&!u.supportsLookbehinds())throw new Error("Node.js v10 or higher is required for regex lookbehinds");(b.value==="("&&!/[!=<:]/.test(ee)||ee==="<"&&!/<([!=]|\w+>)/.test(ce()))&&(pe=`\\${P}`),Y({type:"text",value:P,output:pe});continue}if(p.dot!==!0&&(b.type==="slash"||b.type==="bos")){Y({type:"qmark",value:P,output:k});continue}Y({type:"qmark",value:P,output:_});continue}if(P==="!"){if(p.noextglob!==!0&&K()==="("&&(K(2)!=="?"||!/[!=<:]/.test(K(3)))){he("negate",P);continue}if(p.nonegate!==!0&&T.index===0){Ae();continue}}if(P==="+"){if(p.noextglob!==!0&&K()==="("&&K(2)!=="?"){he("plus",P);continue}if(b&&b.value==="("||p.regex===!1){Y({type:"plus",value:P,output:m});continue}if(b&&(b.type==="bracket"||b.type==="paren"||b.type==="brace")||T.parens>0){Y({type:"plus",value:P});continue}Y({type:"plus",value:m});continue}if(P==="@"){if(p.noextglob!==!0&&K()==="("&&K(2)!=="?"){Y({type:"at",extglob:!0,value:P,output:""});continue}Y({type:"text",value:P});continue}if(P!=="*"){(P==="$"||P==="^")&&(P=`\\${P}`);let V=i.exec(ce());V&&(P+=V[0],T.index+=V[0].length),Y({type:"text",value:P});continue}if(b&&(b.type==="globstar"||b.star===!0)){b.type="star",b.star=!0,b.value+=P,b.output=q,T.backtrack=!0,T.globstar=!0,ae(P);continue}let z=ce();if(p.noextglob!==!0&&/^\([^?]/.test(z)){he("star",P);continue}if(b.type==="star"){if(p.noglobstar===!0){ae(P);continue}let V=b.prev,ee=V.prev,pe=V.type==="slash"||V.type==="bos",be=ee&&(ee.type==="star"||ee.type==="globstar");if(p.bash===!0&&(!pe||z[0]&&z[0]!=="/")){Y({type:"star",value:P,output:""});continue}let Fe=T.braces>0&&(V.type==="comma"||V.type==="brace"),hu=J.length&&(V.type==="pipe"||V.type==="paren");if(!pe&&V.type!=="paren"&&!Fe&&!hu){Y({type:"star",value:P,output:""});continue}for(;z.slice(0,3)==="/**";){let Sr=f[T.index+4];if(Sr&&Sr!=="/")break;z=z.slice(3),ae("/**",3)}if(V.type==="bos"&&U()){b.type="globstar",b.value+=P,b.output=M(p),T.output=b.output,T.globstar=!0,ae(P);continue}if(V.type==="slash"&&V.prev.type!=="bos"&&!be&&U()){T.output=T.output.slice(0,-(V.output+b.output).length),V.output=`(?:${V.output}`,b.type="globstar",b.output=M(p)+(p.strictSlashes?")":"|$)"),b.value+=P,T.globstar=!0,T.output+=V.output+b.output,ae(P);continue}if(V.type==="slash"&&V.prev.type!=="bos"&&z[0]==="/"){let Sr=z[1]!==void 0?"|$":"";T.output=T.output.slice(0,-(V.output+b.output).length),V.output=`(?:${V.output}`,b.type="globstar",b.output=`${M(p)}${R}|${R}${Sr})`,b.value+=P,T.output+=V.output+b.output,T.globstar=!0,ae(P+le()),Y({type:"slash",value:"/",output:""});continue}if(V.type==="bos"&&z[0]==="/"){b.type="globstar",b.value+=P,b.output=`(?:^|${R}|${M(p)}${R})`,T.output=b.output,T.globstar=!0,ae(P+le()),Y({type:"slash",value:"/",output:""});continue}T.output=T.output.slice(0,-b.output.length),b.type="globstar",b.output=M(p),b.value+=P,T.output+=b.output,T.globstar=!0,ae(P);continue}let ie={type:"star",value:P,output:q};if(p.bash===!0){ie.output=".*?",(b.type==="bos"||b.type==="slash")&&(ie.output=H+ie.output),Y(ie);continue}if(b&&(b.type==="bracket"||b.type==="paren")&&p.regex===!0){ie.output=P,Y(ie);continue}(T.index===T.start||b.type==="slash"||b.type==="dot")&&(b.type==="dot"?(T.output+=F,b.output+=F):p.dot===!0?(T.output+=A,b.output+=A):(T.output+=H,b.output+=H),K()!=="*"&&(T.output+=N,b.output+=N)),Y(ie)}for(;T.brackets>0;){if(p.strictBrackets===!0)throw new SyntaxError(l("closing","]"));T.output=u.escapeLast(T.output,"["),ge("brackets")}for(;T.parens>0;){if(p.strictBrackets===!0)throw new SyntaxError(l("closing",")"));T.output=u.escapeLast(T.output,"("),ge("parens")}for(;T.braces>0;){if(p.strictBrackets===!0)throw new SyntaxError(l("closing","}"));T.output=u.escapeLast(T.output,"{"),ge("braces")}if(p.strictSlashes!==!0&&(b.type==="star"||b.type==="bracket")&&Y({type:"maybe_slash",value:"",output:`${R}?`}),T.backtrack===!0){T.output="";for(let z of T.tokens)T.output+=z.output!=null?z.output:z.value,z.suffix&&(T.output+=z.suffix)}return T};D.fastpaths=(f,d)=>{let p={...d},h=typeof p.maxLength=="number"?Math.min(n,p.maxLength):n,v=f.length;if(v>h)throw new SyntaxError(`Input length: ${v}, exceeds maximum allowed length: ${h}`);f=s[f]||f;let y=u.isWindows(d),{DOT_LITERAL:E,SLASH_LITERAL:C,ONE_CHAR:S,DOTS_SLASH:g,NO_DOT:B,NO_DOTS:x,NO_DOTS_SLASH:m,STAR:R,START_ANCHOR:N}=r.globChars(y),w=p.dot?x:B,O=p.dot?m:B,F=p.capture?"":"?:",A={negated:!1,prefix:""},_=p.bash===!0?".*?":R;p.capture&&(_=`(${_})`);let k=H=>H.noglobstar===!0?_:`(${F}(?:(?!${N}${H.dot?g:E}).)*?)`,L=H=>{switch(H){case"*":return`${w}${S}${_}`;case".*":return`${E}${S}${_}`;case"*.*":return`${w}${_}${E}${S}${_}`;case"*/*":return`${w}${_}${C}${S}${O}${_}`;case"**":return w+k(p);case"**/*":return`(?:${w}${k(p)}${C})?${O}${S}${_}`;case"**/*.*":return`(?:${w}${k(p)}${C})?${O}${_}${E}${S}${_}`;case"**/.*":return`(?:${w}${k(p)}${C})?${E}${S}${_}`;default:{let j=/^(.*?)\.(\w+)$/.exec(H);if(!j)return;let q=L(j[1]);return q?q+E+j[2]:void 0}}},W=u.removePrefix(f,A),M=L(W);return M&&p.strictSlashes!==!0&&(M+=`${C}?`),M},t.exports=D}}),Wl=G({"node_modules/micromatch/node_modules/picomatch/lib/picomatch.js"(e,t){"use strict";var r=oe("path"),u=Ml(),n=Hl(),a=uu(),i=ru(),o=c=>c&&typeof c=="object"&&!Array.isArray(c),s=(c,l,D=!1)=>{if(Array.isArray(c)){let C=c.map(g=>s(g,l,D));return g=>{for(let B of C){let x=B(g);if(x)return x}return!1}}let f=o(c)&&c.tokens&&c.input;if(c===""||typeof c!="string"&&!f)throw new TypeError("Expected pattern to be a non-empty string");let d=l||{},p=a.isWindows(l),h=f?s.compileRe(c,l):s.makeRe(c,l,!1,!0),v=h.state;delete h.state;let y=()=>!1;if(d.ignore){let C={...l,ignore:null,onMatch:null,onResult:null};y=s(d.ignore,C,D)}let E=(C,S=!1)=>{let{isMatch:g,match:B,output:x}=s.test(C,h,l,{glob:c,posix:p}),m={glob:c,state:v,regex:h,posix:p,input:C,output:x,match:B,isMatch:g};return typeof d.onResult=="function"&&d.onResult(m),g===!1?(m.isMatch=!1,S?m:!1):y(C)?(typeof d.onIgnore=="function"&&d.onIgnore(m),m.isMatch=!1,S?m:!1):(typeof d.onMatch=="function"&&d.onMatch(m),S?m:!0)};return D&&(E.state=v),E};s.test=(c,l,D,{glob:f,posix:d}={})=>{if(typeof c!="string")throw new TypeError("Expected input to be a string");if(c==="")return{isMatch:!1,output:""};let p=D||{},h=p.format||(d?a.toPosixSlashes:null),v=c===f,y=v&&h?h(c):c;return v===!1&&(y=h?h(c):c,v=y===f),(v===!1||p.capture===!0)&&(p.matchBase===!0||p.basename===!0?v=s.matchBase(c,l,D,d):v=l.exec(y)),{isMatch:!!v,match:v,output:y}},s.matchBase=(c,l,D,f=a.isWindows(D))=>(l instanceof RegExp?l:s.makeRe(l,D)).test(r.basename(c)),s.isMatch=(c,l,D)=>s(l,D)(c),s.parse=(c,l)=>Array.isArray(c)?c.map(D=>s.parse(D,l)):n(c,{...l,fastpaths:!1}),s.scan=(c,l)=>u(c,l),s.compileRe=(c,l,D=!1,f=!1)=>{if(D===!0)return c.output;let d=l||{},p=d.contains?"":"^",h=d.contains?"":"$",v=`${p}(?:${c.output})${h}`;c&&c.negated===!0&&(v=`^(?!${v}).*$`);let y=s.toRegex(v,l);return f===!0&&(y.state=c),y},s.makeRe=(c,l={},D=!1,f=!1)=>{if(!c||typeof c!="string")throw new TypeError("Expected a non-empty string");let d={negated:!1,fastpaths:!0};return l.fastpaths!==!1&&(c[0]==="."||c[0]==="*")&&(d.output=n.fastpaths(c,l)),d.output||(d=n(c,l)),s.compileRe(d,l,D,f)},s.toRegex=(c,l)=>{try{let D=l||{};return new RegExp(c,D.flags||(D.nocase?"i":""))}catch(D){if(l&&l.debug===!0)throw D;return/$^/}},s.constants=i,t.exports=s}}),Gl=G({"node_modules/micromatch/node_modules/picomatch/index.js"(e,t){"use strict";t.exports=Wl()}}),bi=G({"node_modules/micromatch/index.js"(e,t){"use strict";var r=oe("util"),u=$l(),n=Gl(),a=uu(),i=c=>c===""||c==="./",o=c=>{let l=c.indexOf("{");return l>-1&&c.indexOf("}",l)>-1},s=(c,l,D)=>{l=[].concat(l),c=[].concat(c);let f=new Set,d=new Set,p=new Set,h=0,v=C=>{p.add(C.output),D&&D.onResult&&D.onResult(C)};for(let C=0;C<l.length;C++){let S=n(String(l[C]),{...D,onResult:v},!0),g=S.state.negated||S.state.negatedExtglob;g&&h++;for(let B of c){let x=S(B,!0);(g?!x.isMatch:x.isMatch)&&(g?f.add(x.output):(f.delete(x.output),d.add(x.output)))}}let E=(h===l.length?[...p]:[...d]).filter(C=>!f.has(C));if(D&&E.length===0){if(D.failglob===!0)throw new Error(`No matches found for "${l.join(", ")}"`);if(D.nonull===!0||D.nullglob===!0)return D.unescape?l.map(C=>C.replace(/\\/g,"")):l}return E};s.match=s,s.matcher=(c,l)=>n(c,l),s.isMatch=(c,l,D)=>n(l,D)(c),s.any=s.isMatch,s.not=(c,l,D={})=>{l=[].concat(l).map(String);let f=new Set,d=[],p=v=>{D.onResult&&D.onResult(v),d.push(v.output)},h=new Set(s(c,l,{...D,onResult:p}));for(let v of d)h.has(v)||f.add(v);return[...f]},s.contains=(c,l,D)=>{if(typeof c!="string")throw new TypeError(`Expected a string: "${r.inspect(c)}"`);if(Array.isArray(l))return l.some(f=>s.contains(c,f,D));if(typeof l=="string"){if(i(c)||i(l))return!1;if(c.includes(l)||c.startsWith("./")&&c.slice(2).includes(l))return!0}return s.isMatch(c,l,{...D,contains:!0})},s.matchKeys=(c,l,D)=>{if(!a.isObject(c))throw new TypeError("Expected the first argument to be an object");let f=s(Object.keys(c),l,D),d={};for(let p of f)d[p]=c[p];return d},s.some=(c,l,D)=>{let f=[].concat(c);for(let d of[].concat(l)){let p=n(String(d),D);if(f.some(h=>p(h)))return!0}return!1},s.every=(c,l,D)=>{let f=[].concat(c);for(let d of[].concat(l)){let p=n(String(d),D);if(!f.every(h=>p(h)))return!1}return!0},s.all=(c,l,D)=>{if(typeof c!="string")throw new TypeError(`Expected a string: "${r.inspect(c)}"`);return[].concat(l).every(f=>n(f,D)(c))},s.capture=(c,l,D)=>{let f=a.isWindows(D),p=n.makeRe(String(c),{...D,capture:!0}).exec(f?a.toPosixSlashes(l):l);if(p)return p.slice(1).map(h=>h===void 0?"":h)},s.makeRe=(...c)=>n.makeRe(...c),s.scan=(...c)=>n.scan(...c),s.parse=(c,l)=>{let D=[];for(let f of[].concat(c||[]))for(let d of u(String(f),l))D.push(n.parse(d,l));return D},s.braces=(c,l)=>{if(typeof c!="string")throw new TypeError("Expected a string");return l&&l.nobrace===!0||!o(c)?[c]:u(c,l)},s.braceExpand=(c,l)=>{if(typeof c!="string")throw new TypeError("Expected a string");return s.braces(c,{...l,expand:!0})},s.hasBraces=o,t.exports=s}}),Ul=G({"node_modules/fast-glob/out/utils/pattern.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.isAbsolute=e.partitionAbsoluteAndRelative=e.removeDuplicateSlashes=e.matchAny=e.convertPatternsToRe=e.makeRe=e.getPatternParts=e.expandBraceExpansion=e.expandPatternsWithBraceExpansion=e.isAffectDepthOfReadingPattern=e.endsWithSlashGlobStar=e.hasGlobStar=e.getBaseDirectory=e.isPatternRelatedToParentDirectory=e.getPatternsOutsideCurrentDirectory=e.getPatternsInsideCurrentDirectory=e.getPositivePatterns=e.getNegativePatterns=e.isPositivePattern=e.isNegativePattern=e.convertToNegativePattern=e.convertToPositivePattern=e.isDynamicPattern=e.isStaticPattern=void 0;var t=oe("path"),r=Pl(),u=bi(),n="**",a="\\",i=/[*?]|^!/,o=/\[[^[]*]/,s=/(?:^|[^!*+?@])\([^(]*\|[^|]*\)/,c=/[!*+?@]\([^(]*\)/,l=/,|\.\./,D=/(?!^)\/{2,}/g;function f(j,q={}){return!d(j,q)}e.isStaticPattern=f;function d(j,q={}){return j===""?!1:!!(q.caseSensitiveMatch===!1||j.includes(a)||i.test(j)||o.test(j)||s.test(j)||q.extglob!==!1&&c.test(j)||q.braceExpansion!==!1&&p(j))}e.isDynamicPattern=d;function p(j){let q=j.indexOf("{");if(q===-1)return!1;let T=j.indexOf("}",q+1);if(T===-1)return!1;let J=j.slice(q,T);return l.test(J)}function h(j){return y(j)?j.slice(1):j}e.convertToPositivePattern=h;function v(j){return"!"+j}e.convertToNegativePattern=v;function y(j){return j.startsWith("!")&&j[1]!=="("}e.isNegativePattern=y;function E(j){return!y(j)}e.isPositivePattern=E;function C(j){return j.filter(y)}e.getNegativePatterns=C;function S(j){return j.filter(E)}e.getPositivePatterns=S;function g(j){return j.filter(q=>!x(q))}e.getPatternsInsideCurrentDirectory=g;function B(j){return j.filter(x)}e.getPatternsOutsideCurrentDirectory=B;function x(j){return j.startsWith("..")||j.startsWith("./..")}e.isPatternRelatedToParentDirectory=x;function m(j){return r(j,{flipBackslashes:!1})}e.getBaseDirectory=m;function R(j){return j.includes(n)}e.hasGlobStar=R;function N(j){return j.endsWith("/"+n)}e.endsWithSlashGlobStar=N;function w(j){let q=t.basename(j);return N(j)||f(q)}e.isAffectDepthOfReadingPattern=w;function O(j){return j.reduce((q,T)=>q.concat(F(T)),[])}e.expandPatternsWithBraceExpansion=O;function F(j){let q=u.braces(j,{expand:!0,nodupes:!0,keepEscaping:!0});return q.sort((T,J)=>T.length-J.length),q.filter(T=>T!=="")}e.expandBraceExpansion=F;function A(j,q){let{parts:T}=u.scan(j,Object.assign(Object.assign({},q),{parts:!0}));return T.length===0&&(T=[j]),T[0].startsWith("/")&&(T[0]=T[0].slice(1),T.unshift("")),T}e.getPatternParts=A;function _(j,q){return u.makeRe(j,q)}e.makeRe=_;function k(j,q){return j.map(T=>_(T,q))}e.convertPatternsToRe=k;function L(j,q){return q.some(T=>T.test(j))}e.matchAny=L;function W(j){return j.replace(D,"/")}e.removeDuplicateSlashes=W;function M(j){let q=[],T=[];for(let J of j)H(J)?q.push(J):T.push(J);return[q,T]}e.partitionAbsoluteAndRelative=M;function H(j){return t.isAbsolute(j)}e.isAbsolute=H}}),ql=G({"node_modules/merge2/index.js"(e,t){"use strict";var r=oe("stream"),u=r.PassThrough,n=Array.prototype.slice;t.exports=a;function a(){let o=[],s=n.call(arguments),c=!1,l=s[s.length-1];l&&!Array.isArray(l)&&l.pipe==null?s.pop():l={};let D=l.end!==!1,f=l.pipeError===!0;l.objectMode==null&&(l.objectMode=!0),l.highWaterMark==null&&(l.highWaterMark=64*1024);let d=u(l);function p(){for(let y=0,E=arguments.length;y<E;y++)o.push(i(arguments[y],l));return h(),this}function h(){if(c)return;c=!0;let y=o.shift();if(!y){process.nextTick(v);return}Array.isArray(y)||(y=[y]);let E=y.length+1;function C(){--E>0||(c=!1,h())}function S(g){function B(){g.removeListener("merge2UnpipeEnd",B),g.removeListener("end",B),f&&g.removeListener("error",x),C()}function x(m){d.emit("error",m)}if(g._readableState.endEmitted)return C();g.on("merge2UnpipeEnd",B),g.on("end",B),f&&g.on("error",x),g.pipe(d,{end:!1}),g.resume()}for(let g=0;g<y.length;g++)S(y[g]);C()}function v(){c=!1,d.emit("queueDrain"),D&&d.end()}return d.setMaxListeners(0),d.add=p,d.on("unpipe",function(y){y.emit("merge2UnpipeEnd")}),s.length&&p.apply(null,s),d}function i(o,s){if(Array.isArray(o))for(let c=0,l=o.length;c<l;c++)o[c]=i(o[c],s);else{if(!o._readableState&&o.pipe&&(o=o.pipe(u(s))),!o._readableState||!o.pause||!o.pipe)throw new Error("Only readable stream can be merged.");o.pause()}return o}}}),Vl=G({"node_modules/fast-glob/out/utils/stream.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.merge=void 0;var t=ql();function r(n){let a=t(n);return n.forEach(i=>{i.once("error",o=>a.emit("error",o))}),a.once("close",()=>u(n)),a.once("end",()=>u(n)),a}e.merge=r;function u(n){n.forEach(a=>a.emit("close"))}}}),Kl=G({"node_modules/fast-glob/out/utils/string.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.isEmpty=e.isString=void 0;function t(u){return typeof u=="string"}e.isString=t;function r(u){return u===""}e.isEmpty=r}}),_t=G({"node_modules/fast-glob/out/utils/index.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.string=e.stream=e.pattern=e.path=e.fs=e.errno=e.array=void 0;var t=Bl();e.array=t;var r=wl();e.errno=r;var u=Sl();e.fs=u;var n=kl();e.path=n;var a=Ul();e.pattern=a;var i=Vl();e.stream=i;var o=Kl();e.string=o}}),zl=G({"node_modules/fast-glob/out/managers/tasks.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.convertPatternGroupToTask=e.convertPatternGroupsToTasks=e.groupPatternsByBaseDirectory=e.getNegativePatternsAsPositive=e.getPositivePatterns=e.convertPatternsToTasks=e.generate=void 0;var t=_t();function r(l,D){let f=u(l,D),d=u(D.ignore,D),p=a(f),h=i(f,d),v=p.filter(S=>t.pattern.isStaticPattern(S,D)),y=p.filter(S=>t.pattern.isDynamicPattern(S,D)),E=n(v,h,!1),C=n(y,h,!0);return E.concat(C)}e.generate=r;function u(l,D){let f=l;return D.braceExpansion&&(f=t.pattern.expandPatternsWithBraceExpansion(f)),D.baseNameMatch&&(f=f.map(d=>d.includes("/")?d:`**/${d}`)),f.map(d=>t.pattern.removeDuplicateSlashes(d))}function n(l,D,f){let d=[],p=t.pattern.getPatternsOutsideCurrentDirectory(l),h=t.pattern.getPatternsInsideCurrentDirectory(l),v=o(p),y=o(h);return d.push(...s(v,D,f)),"."in y?d.push(c(".",h,D,f)):d.push(...s(y,D,f)),d}e.convertPatternsToTasks=n;function a(l){return t.pattern.getPositivePatterns(l)}e.getPositivePatterns=a;function i(l,D){return t.pattern.getNegativePatterns(l).concat(D).map(t.pattern.convertToPositivePattern)}e.getNegativePatternsAsPositive=i;function o(l){let D={};return l.reduce((f,d)=>{let p=t.pattern.getBaseDirectory(d);return p in f?f[p].push(d):f[p]=[d],f},D)}e.groupPatternsByBaseDirectory=o;function s(l,D,f){return Object.keys(l).map(d=>c(d,l[d],D,f))}e.convertPatternGroupsToTasks=s;function c(l,D,f,d){return{dynamic:d,positive:D,negative:f,base:l,patterns:[].concat(D,f.map(t.pattern.convertToNegativePattern))}}e.convertPatternGroupToTask=c}}),Yl=G({"node_modules/@nodelib/fs.stat/out/providers/async.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.read=void 0;function t(n,a,i){a.fs.lstat(n,(o,s)=>{if(o!==null){r(i,o);return}if(!s.isSymbolicLink()||!a.followSymbolicLink){u(i,s);return}a.fs.stat(n,(c,l)=>{if(c!==null){if(a.throwErrorOnBrokenSymbolicLink){r(i,c);return}u(i,s);return}a.markSymbolicLink&&(l.isSymbolicLink=()=>!0),u(i,l)})})}e.read=t;function r(n,a){n(a)}function u(n,a){n(null,a)}}}),Xl=G({"node_modules/@nodelib/fs.stat/out/providers/sync.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.read=void 0;function t(r,u){let n=u.fs.lstatSync(r);if(!n.isSymbolicLink()||!u.followSymbolicLink)return n;try{let a=u.fs.statSync(r);return u.markSymbolicLink&&(a.isSymbolicLink=()=>!0),a}catch(a){if(!u.throwErrorOnBrokenSymbolicLink)return n;throw a}}e.read=t}}),Jl=G({"node_modules/@nodelib/fs.stat/out/adapters/fs.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.createFileSystemAdapter=e.FILE_SYSTEM_ADAPTER=void 0;var t=oe("fs");e.FILE_SYSTEM_ADAPTER={lstat:t.lstat,stat:t.stat,lstatSync:t.lstatSync,statSync:t.statSync};function r(u){return u===void 0?e.FILE_SYSTEM_ADAPTER:Object.assign(Object.assign({},e.FILE_SYSTEM_ADAPTER),u)}e.createFileSystemAdapter=r}}),Ql=G({"node_modules/@nodelib/fs.stat/out/settings.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=Jl(),r=class{constructor(u={}){this._options=u,this.followSymbolicLink=this._getValue(this._options.followSymbolicLink,!0),this.fs=t.createFileSystemAdapter(this._options.fs),this.markSymbolicLink=this._getValue(this._options.markSymbolicLink,!1),this.throwErrorOnBrokenSymbolicLink=this._getValue(this._options.throwErrorOnBrokenSymbolicLink,!0)}_getValue(u,n){return u??n}};e.default=r}}),ur=G({"node_modules/@nodelib/fs.stat/out/index.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.statSync=e.stat=e.Settings=void 0;var t=Yl(),r=Xl(),u=Ql();e.Settings=u.default;function n(o,s,c){if(typeof s=="function"){t.read(o,i(),s);return}t.read(o,i(s),c)}e.stat=n;function a(o,s){let c=i(s);return r.read(o,c)}e.statSync=a;function i(o={}){return o instanceof u.default?o:new u.default(o)}}}),Zl=G({"node_modules/queue-microtask/index.js"(e,t){var r;t.exports=typeof queueMicrotask=="function"?queueMicrotask.bind(typeof window<"u"?window:global):u=>(r||(r=Promise.resolve())).then(u).catch(n=>setTimeout(()=>{throw n},0))}}),ec=G({"node_modules/run-parallel/index.js"(e,t){t.exports=u;var r=Zl();function u(n,a){let i,o,s,c=!0;Array.isArray(n)?(i=[],o=n.length):(s=Object.keys(n),i={},o=s.length);function l(f){function d(){a&&a(f,i),a=null}c?r(d):d()}function D(f,d,p){i[f]=p,(--o===0||d)&&l(d)}o?s?s.forEach(function(f){n[f](function(d,p){D(f,d,p)})}):n.forEach(function(f,d){f(function(p,h){D(d,p,h)})}):l(null),c=!1}}}),Bi=G({"node_modules/@nodelib/fs.scandir/out/constants.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.IS_SUPPORT_READDIR_WITH_FILE_TYPES=void 0;var t=process.versions.node.split(".");if(t[0]===void 0||t[1]===void 0)throw new Error(`Unexpected behavior. The 'process.versions.node' variable has invalid value: ${process.versions.node}`);var r=Number.parseInt(t[0],10),u=Number.parseInt(t[1],10),n=10,a=10,i=r>n,o=r===n&&u>=a;e.IS_SUPPORT_READDIR_WITH_FILE_TYPES=i||o}}),tc=G({"node_modules/@nodelib/fs.scandir/out/utils/fs.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.createDirentFromStats=void 0;var t=class{constructor(u,n){this.name=u,this.isBlockDevice=n.isBlockDevice.bind(n),this.isCharacterDevice=n.isCharacterDevice.bind(n),this.isDirectory=n.isDirectory.bind(n),this.isFIFO=n.isFIFO.bind(n),this.isFile=n.isFile.bind(n),this.isSocket=n.isSocket.bind(n),this.isSymbolicLink=n.isSymbolicLink.bind(n)}};function r(u,n){return new t(u,n)}e.createDirentFromStats=r}}),wi=G({"node_modules/@nodelib/fs.scandir/out/utils/index.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.fs=void 0;var t=tc();e.fs=t}}),Si=G({"node_modules/@nodelib/fs.scandir/out/providers/common.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.joinPathSegments=void 0;function t(r,u,n){return r.endsWith(n)?r+u:r+n+u}e.joinPathSegments=t}}),rc=G({"node_modules/@nodelib/fs.scandir/out/providers/async.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.readdir=e.readdirWithFileTypes=e.read=void 0;var t=ur(),r=ec(),u=Bi(),n=wi(),a=Si();function i(f,d,p){if(!d.stats&&u.IS_SUPPORT_READDIR_WITH_FILE_TYPES){o(f,d,p);return}c(f,d,p)}e.read=i;function o(f,d,p){d.fs.readdir(f,{withFileTypes:!0},(h,v)=>{if(h!==null){l(p,h);return}let y=v.map(C=>({dirent:C,name:C.name,path:a.joinPathSegments(f,C.name,d.pathSegmentSeparator)}));if(!d.followSymbolicLinks){D(p,y);return}let E=y.map(C=>s(C,d));r(E,(C,S)=>{if(C!==null){l(p,C);return}D(p,S)})})}e.readdirWithFileTypes=o;function s(f,d){return p=>{if(!f.dirent.isSymbolicLink()){p(null,f);return}d.fs.stat(f.path,(h,v)=>{if(h!==null){if(d.throwErrorOnBrokenSymbolicLink){p(h);return}p(null,f);return}f.dirent=n.fs.createDirentFromStats(f.name,v),p(null,f)})}}function c(f,d,p){d.fs.readdir(f,(h,v)=>{if(h!==null){l(p,h);return}let y=v.map(E=>{let C=a.joinPathSegments(f,E,d.pathSegmentSeparator);return S=>{t.stat(C,d.fsStatSettings,(g,B)=>{if(g!==null){S(g);return}let x={name:E,path:C,dirent:n.fs.createDirentFromStats(E,B)};d.stats&&(x.stats=B),S(null,x)})}});r(y,(E,C)=>{if(E!==null){l(p,E);return}D(p,C)})})}e.readdir=c;function l(f,d){f(d)}function D(f,d){f(null,d)}}}),uc=G({"node_modules/@nodelib/fs.scandir/out/providers/sync.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.readdir=e.readdirWithFileTypes=e.read=void 0;var t=ur(),r=Bi(),u=wi(),n=Si();function a(s,c){return!c.stats&&r.IS_SUPPORT_READDIR_WITH_FILE_TYPES?i(s,c):o(s,c)}e.read=a;function i(s,c){return c.fs.readdirSync(s,{withFileTypes:!0}).map(D=>{let f={dirent:D,name:D.name,path:n.joinPathSegments(s,D.name,c.pathSegmentSeparator)};if(f.dirent.isSymbolicLink()&&c.followSymbolicLinks)try{let d=c.fs.statSync(f.path);f.dirent=u.fs.createDirentFromStats(f.name,d)}catch(d){if(c.throwErrorOnBrokenSymbolicLink)throw d}return f})}e.readdirWithFileTypes=i;function o(s,c){return c.fs.readdirSync(s).map(D=>{let f=n.joinPathSegments(s,D,c.pathSegmentSeparator),d=t.statSync(f,c.fsStatSettings),p={name:D,path:f,dirent:u.fs.createDirentFromStats(D,d)};return c.stats&&(p.stats=d),p})}e.readdir=o}}),nc=G({"node_modules/@nodelib/fs.scandir/out/adapters/fs.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.createFileSystemAdapter=e.FILE_SYSTEM_ADAPTER=void 0;var t=oe("fs");e.FILE_SYSTEM_ADAPTER={lstat:t.lstat,stat:t.stat,lstatSync:t.lstatSync,statSync:t.statSync,readdir:t.readdir,readdirSync:t.readdirSync};function r(u){return u===void 0?e.FILE_SYSTEM_ADAPTER:Object.assign(Object.assign({},e.FILE_SYSTEM_ADAPTER),u)}e.createFileSystemAdapter=r}}),ac=G({"node_modules/@nodelib/fs.scandir/out/settings.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=oe("path"),r=ur(),u=nc(),n=class{constructor(a={}){this._options=a,this.followSymbolicLinks=this._getValue(this._options.followSymbolicLinks,!1),this.fs=u.createFileSystemAdapter(this._options.fs),this.pathSegmentSeparator=this._getValue(this._options.pathSegmentSeparator,t.sep),this.stats=this._getValue(this._options.stats,!1),this.throwErrorOnBrokenSymbolicLink=this._getValue(this._options.throwErrorOnBrokenSymbolicLink,!0),this.fsStatSettings=new r.Settings({followSymbolicLink:this.followSymbolicLinks,fs:this.fs,throwErrorOnBrokenSymbolicLink:this.throwErrorOnBrokenSymbolicLink})}_getValue(a,i){return a??i}};e.default=n}}),Fn=G({"node_modules/@nodelib/fs.scandir/out/index.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.Settings=e.scandirSync=e.scandir=void 0;var t=rc(),r=uc(),u=ac();e.Settings=u.default;function n(o,s,c){if(typeof s=="function"){t.read(o,i(),s);return}t.read(o,i(s),c)}e.scandir=n;function a(o,s){let c=i(s);return r.read(o,c)}e.scandirSync=a;function i(o={}){return o instanceof u.default?o:new u.default(o)}}}),ic=G({"node_modules/reusify/reusify.js"(e,t){"use strict";function r(u){var n=new u,a=n;function i(){var s=n;return s.next?n=s.next:(n=new u,a=n),s.next=null,s}function o(s){a.next=s,a=s}return{get:i,release:o}}t.exports=r}}),oc=G({"node_modules/fastq/queue.js"(e,t){"use strict";var r=ic();function u(o,s,c){if(typeof o=="function"&&(c=s,s=o,o=null),!(c>=1))throw new Error("fastqueue concurrency must be equal to or greater than 1");var l=r(a),D=null,f=null,d=0,p=null,h={push:B,drain:n,saturated:n,pause:y,paused:!1,get concurrency(){return c},set concurrency(O){if(!(O>=1))throw new Error("fastqueue concurrency must be equal to or greater than 1");if(c=O,!h.paused)for(;D&&d<c;)d++,m()},running:v,resume:S,idle:g,length:E,getQueue:C,unshift:x,empty:n,kill:R,killAndDrain:N,error:w};return h;function v(){return d}function y(){h.paused=!0}function E(){for(var O=D,F=0;O;)O=O.next,F++;return F}function C(){for(var O=D,F=[];O;)F.push(O.value),O=O.next;return F}function S(){if(h.paused){if(h.paused=!1,D===null){d++,m();return}for(;D&&d<c;)d++,m()}}function g(){return d===0&&h.length()===0}function B(O,F){var A=l.get();A.context=o,A.release=m,A.value=O,A.callback=F||n,A.errorHandler=p,d>=c||h.paused?f?(f.next=A,f=A):(D=A,f=A,h.saturated()):(d++,s.call(o,A.value,A.worked))}function x(O,F){var A=l.get();A.context=o,A.release=m,A.value=O,A.callback=F||n,A.errorHandler=p,d>=c||h.paused?D?(A.next=D,D=A):(D=A,f=A,h.saturated()):(d++,s.call(o,A.value,A.worked))}function m(O){O&&l.release(O);var F=D;F&&d<=c?h.paused?d--:(f===D&&(f=null),D=F.next,F.next=null,s.call(o,F.value,F.worked),f===null&&h.empty()):--d===0&&h.drain()}function R(){D=null,f=null,h.drain=n}function N(){D=null,f=null,h.drain(),h.drain=n}function w(O){p=O}}function n(){}function a(){this.value=null,this.callback=n,this.next=null,this.release=n,this.context=null,this.errorHandler=null;var o=this;this.worked=function(c,l){var D=o.callback,f=o.errorHandler,d=o.value;o.value=null,o.callback=n,o.errorHandler&&f(c,d),D.call(o.context,c,l),o.release(o)}}function i(o,s,c){typeof o=="function"&&(c=s,s=o,o=null);function l(y,E){s.call(this,y).then(function(C){E(null,C)},E)}var D=u(o,l,c),f=D.push,d=D.unshift;return D.push=p,D.unshift=h,D.drained=v,D;function p(y){var E=new Promise(function(C,S){f(y,function(g,B){if(g){S(g);return}C(B)})});return E.catch(n),E}function h(y){var E=new Promise(function(C,S){d(y,function(g,B){if(g){S(g);return}C(B)})});return E.catch(n),E}function v(){var y=new Promise(function(E){process.nextTick(function(){if(D.idle())E();else{var C=D.drain;D.drain=function(){typeof C=="function"&&C(),E(),D.drain=C}}})});return y}}t.exports=u,t.exports.promise=i}}),mn=G({"node_modules/@nodelib/fs.walk/out/readers/common.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.joinPathSegments=e.replacePathSegmentSeparator=e.isAppliedFilter=e.isFatalError=void 0;function t(a,i){return a.errorFilter===null?!0:!a.errorFilter(i)}e.isFatalError=t;function r(a,i){return a===null||a(i)}e.isAppliedFilter=r;function u(a,i){return a.split(/[/\\]/).join(i)}e.replacePathSegmentSeparator=u;function n(a,i,o){return a===""?i:a.endsWith(o)?a+i:a+o+i}e.joinPathSegments=n}}),ki=G({"node_modules/@nodelib/fs.walk/out/readers/reader.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=mn(),r=class{constructor(u,n){this._root=u,this._settings=n,this._root=t.replacePathSegmentSeparator(u,n.pathSegmentSeparator)}};e.default=r}}),Ri=G({"node_modules/@nodelib/fs.walk/out/readers/async.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=oe("events"),r=Fn(),u=oc(),n=mn(),a=ki(),i=class extends a.default{constructor(o,s){super(o,s),this._settings=s,this._scandir=r.scandir,this._emitter=new t.EventEmitter,this._queue=u(this._worker.bind(this),this._settings.concurrency),this._isFatalError=!1,this._isDestroyed=!1,this._queue.drain=()=>{this._isFatalError||this._emitter.emit("end")}}read(){return this._isFatalError=!1,this._isDestroyed=!1,setImmediate(()=>{this._pushToQueue(this._root,this._settings.basePath)}),this._emitter}get isDestroyed(){return this._isDestroyed}destroy(){if(this._isDestroyed)throw new Error("The reader is already destroyed");this._isDestroyed=!0,this._queue.killAndDrain()}onEntry(o){this._emitter.on("entry",o)}onError(o){this._emitter.once("error",o)}onEnd(o){this._emitter.once("end",o)}_pushToQueue(o,s){let c={directory:o,base:s};this._queue.push(c,l=>{l!==null&&this._handleError(l)})}_worker(o,s){this._scandir(o.directory,this._settings.fsScandirSettings,(c,l)=>{if(c!==null){s(c,void 0);return}for(let D of l)this._handleEntry(D,o.base);s(null,void 0)})}_handleError(o){this._isDestroyed||!n.isFatalError(this._settings,o)||(this._isFatalError=!0,this._isDestroyed=!0,this._emitter.emit("error",o))}_handleEntry(o,s){if(this._isDestroyed||this._isFatalError)return;let c=o.path;s!==void 0&&(o.path=n.joinPathSegments(s,o.name,this._settings.pathSegmentSeparator)),n.isAppliedFilter(this._settings.entryFilter,o)&&this._emitEntry(o),o.dirent.isDirectory()&&n.isAppliedFilter(this._settings.deepFilter,o)&&this._pushToQueue(c,s===void 0?void 0:o.path)}_emitEntry(o){this._emitter.emit("entry",o)}};e.default=i}}),sc=G({"node_modules/@nodelib/fs.walk/out/providers/async.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=Ri(),r=class{constructor(a,i){this._root=a,this._settings=i,this._reader=new t.default(this._root,this._settings),this._storage=[]}read(a){this._reader.onError(i=>{u(a,i)}),this._reader.onEntry(i=>{this._storage.push(i)}),this._reader.onEnd(()=>{n(a,this._storage)}),this._reader.read()}};e.default=r;function u(a,i){a(i)}function n(a,i){a(null,i)}}}),lc=G({"node_modules/@nodelib/fs.walk/out/providers/stream.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=oe("stream"),r=Ri(),u=class{constructor(n,a){this._root=n,this._settings=a,this._reader=new r.default(this._root,this._settings),this._stream=new t.Readable({objectMode:!0,read:()=>{},destroy:()=>{this._reader.isDestroyed||this._reader.destroy()}})}read(){return this._reader.onError(n=>{this._stream.emit("error",n)}),this._reader.onEntry(n=>{this._stream.push(n)}),this._reader.onEnd(()=>{this._stream.push(null)}),this._reader.read(),this._stream}};e.default=u}}),cc=G({"node_modules/@nodelib/fs.walk/out/readers/sync.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=Fn(),r=mn(),u=ki(),n=class extends u.default{constructor(){super(...arguments),this._scandir=t.scandirSync,this._storage=[],this._queue=new Set}read(){return this._pushToQueue(this._root,this._settings.basePath),this._handleQueue(),this._storage}_pushToQueue(a,i){this._queue.add({directory:a,base:i})}_handleQueue(){for(let a of this._queue.values())this._handleDirectory(a.directory,a.base)}_handleDirectory(a,i){try{let o=this._scandir(a,this._settings.fsScandirSettings);for(let s of o)this._handleEntry(s,i)}catch(o){this._handleError(o)}}_handleError(a){if(r.isFatalError(this._settings,a))throw a}_handleEntry(a,i){let o=a.path;i!==void 0&&(a.path=r.joinPathSegments(i,a.name,this._settings.pathSegmentSeparator)),r.isAppliedFilter(this._settings.entryFilter,a)&&this._pushToStorage(a),a.dirent.isDirectory()&&r.isAppliedFilter(this._settings.deepFilter,a)&&this._pushToQueue(o,i===void 0?void 0:a.path)}_pushToStorage(a){this._storage.push(a)}};e.default=n}}),Dc=G({"node_modules/@nodelib/fs.walk/out/providers/sync.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=cc(),r=class{constructor(u,n){this._root=u,this._settings=n,this._reader=new t.default(this._root,this._settings)}read(){return this._reader.read()}};e.default=r}}),fc=G({"node_modules/@nodelib/fs.walk/out/settings.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=oe("path"),r=Fn(),u=class{constructor(n={}){this._options=n,this.basePath=this._getValue(this._options.basePath,void 0),this.concurrency=this._getValue(this._options.concurrency,Number.POSITIVE_INFINITY),this.deepFilter=this._getValue(this._options.deepFilter,null),this.entryFilter=this._getValue(this._options.entryFilter,null),this.errorFilter=this._getValue(this._options.errorFilter,null),this.pathSegmentSeparator=this._getValue(this._options.pathSegmentSeparator,t.sep),this.fsScandirSettings=new r.Settings({followSymbolicLinks:this._options.followSymbolicLinks,fs:this._options.fs,pathSegmentSeparator:this._options.pathSegmentSeparator,stats:this._options.stats,throwErrorOnBrokenSymbolicLink:this._options.throwErrorOnBrokenSymbolicLink})}_getValue(n,a){return n??a}};e.default=u}}),En=G({"node_modules/@nodelib/fs.walk/out/index.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.Settings=e.walkStream=e.walkSync=e.walk=void 0;var t=sc(),r=lc(),u=Dc(),n=fc();e.Settings=n.default;function a(c,l,D){if(typeof l=="function"){new t.default(c,s()).read(l);return}new t.default(c,s(l)).read(D)}e.walk=a;function i(c,l){let D=s(l);return new u.default(c,D).read()}e.walkSync=i;function o(c,l){let D=s(l);return new r.default(c,D).read()}e.walkStream=o;function s(c={}){return c instanceof n.default?c:new n.default(c)}}}),Cn=G({"node_modules/fast-glob/out/readers/reader.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=oe("path"),r=ur(),u=_t(),n=class{constructor(a){this._settings=a,this._fsStatSettings=new r.Settings({followSymbolicLink:this._settings.followSymbolicLinks,fs:this._settings.fs,throwErrorOnBrokenSymbolicLink:this._settings.followSymbolicLinks})}_getFullEntryPath(a){return t.resolve(this._settings.cwd,a)}_makeEntry(a,i){let o={name:i,path:i,dirent:u.fs.createDirentFromStats(i,a)};return this._settings.stats&&(o.stats=a),o}_isFatalError(a){return!u.errno.isEnoentCodeError(a)&&!this._settings.suppressErrors}};e.default=n}}),xi=G({"node_modules/fast-glob/out/readers/stream.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=oe("stream"),r=ur(),u=En(),n=Cn(),a=class extends n.default{constructor(){super(...arguments),this._walkStream=u.walkStream,this._stat=r.stat}dynamic(i,o){return this._walkStream(i,o)}static(i,o){let s=i.map(this._getFullEntryPath,this),c=new t.PassThrough({objectMode:!0});c._write=(l,D,f)=>this._getEntry(s[l],i[l],o).then(d=>{d!==null&&o.entryFilter(d)&&c.push(d),l===s.length-1&&c.end(),f()}).catch(f);for(let l=0;l<s.length;l++)c.write(l);return c}_getEntry(i,o,s){return this._getStat(i).then(c=>this._makeEntry(c,o)).catch(c=>{if(s.errorFilter(c))return null;throw c})}_getStat(i){return new Promise((o,s)=>{this._stat(i,this._fsStatSettings,(c,l)=>c===null?o(l):s(c))})}};e.default=a}}),pc=G({"node_modules/fast-glob/out/readers/async.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=En(),r=Cn(),u=xi(),n=class extends r.default{constructor(){super(...arguments),this._walkAsync=t.walk,this._readerStream=new u.default(this._settings)}dynamic(a,i){return new Promise((o,s)=>{this._walkAsync(a,i,(c,l)=>{c===null?o(l):s(c)})})}async static(a,i){let o=[],s=this._readerStream.static(a,i);return new Promise((c,l)=>{s.once("error",l),s.on("data",D=>o.push(D)),s.once("end",()=>c(o))})}};e.default=n}}),dc=G({"node_modules/fast-glob/out/providers/matchers/matcher.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=_t(),r=class{constructor(u,n,a){this._patterns=u,this._settings=n,this._micromatchOptions=a,this._storage=[],this._fillStorage()}_fillStorage(){for(let u of this._patterns){let n=this._getPatternSegments(u),a=this._splitSegmentsIntoSections(n);this._storage.push({complete:a.length<=1,pattern:u,segments:n,sections:a})}}_getPatternSegments(u){return t.pattern.getPatternParts(u,this._micromatchOptions).map(a=>t.pattern.isDynamicPattern(a,this._settings)?{dynamic:!0,pattern:a,patternRe:t.pattern.makeRe(a,this._micromatchOptions)}:{dynamic:!1,pattern:a})}_splitSegmentsIntoSections(u){return t.array.splitWhen(u,n=>n.dynamic&&t.pattern.hasGlobStar(n.pattern))}};e.default=r}}),hc=G({"node_modules/fast-glob/out/providers/matchers/partial.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=dc(),r=class extends t.default{match(u){let n=u.split("/"),a=n.length,i=this._storage.filter(o=>!o.complete||o.segments.length>a);for(let o of i){let s=o.sections[0];if(!o.complete&&a>s.length||n.every((l,D)=>{let f=o.segments[D];return!!(f.dynamic&&f.patternRe.test(l)||!f.dynamic&&f.pattern===l)}))return!0}return!1}};e.default=r}}),gc=G({"node_modules/fast-glob/out/providers/filters/deep.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=_t(),r=hc(),u=class{constructor(n,a){this._settings=n,this._micromatchOptions=a}getFilter(n,a,i){let o=this._getMatcher(a),s=this._getNegativePatternsRe(i);return c=>this._filter(n,c,o,s)}_getMatcher(n){return new r.default(n,this._settings,this._micromatchOptions)}_getNegativePatternsRe(n){let a=n.filter(t.pattern.isAffectDepthOfReadingPattern);return t.pattern.convertPatternsToRe(a,this._micromatchOptions)}_filter(n,a,i,o){if(this._isSkippedByDeep(n,a.path)||this._isSkippedSymbolicLink(a))return!1;let s=t.path.removeLeadingDotSegment(a.path);return this._isSkippedByPositivePatterns(s,i)?!1:this._isSkippedByNegativePatterns(s,o)}_isSkippedByDeep(n,a){return this._settings.deep===1/0?!1:this._getEntryLevel(n,a)>=this._settings.deep}_getEntryLevel(n,a){let i=a.split("/").length;if(n==="")return i;let o=n.split("/").length;return i-o}_isSkippedSymbolicLink(n){return!this._settings.followSymbolicLinks&&n.dirent.isSymbolicLink()}_isSkippedByPositivePatterns(n,a){return!this._settings.baseNameMatch&&!a.match(n)}_isSkippedByNegativePatterns(n,a){return!t.pattern.matchAny(n,a)}};e.default=u}}),Fc=G({"node_modules/fast-glob/out/providers/filters/entry.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=_t(),r=class{constructor(u,n){this._settings=u,this._micromatchOptions=n,this.index=new Map}getFilter(u,n){let[a,i]=t.pattern.partitionAbsoluteAndRelative(n),o={positive:{all:t.pattern.convertPatternsToRe(u,this._micromatchOptions)},negative:{absolute:t.pattern.convertPatternsToRe(a,Object.assign(Object.assign({},this._micromatchOptions),{dot:!0})),relative:t.pattern.convertPatternsToRe(i,Object.assign(Object.assign({},this._micromatchOptions),{dot:!0}))}};return s=>this._filter(s,o)}_filter(u,n){let a=t.path.removeLeadingDotSegment(u.path);if(this._settings.unique&&this._isDuplicateEntry(a)||this._onlyFileFilter(u)||this._onlyDirectoryFilter(u))return!1;let i=this._isMatchToPatternsSet(a,n,u.dirent.isDirectory());return this._settings.unique&&i&&this._createIndexRecord(a),i}_isDuplicateEntry(u){return this.index.has(u)}_createIndexRecord(u){this.index.set(u,void 0)}_onlyFileFilter(u){return this._settings.onlyFiles&&!u.dirent.isFile()}_onlyDirectoryFilter(u){return this._settings.onlyDirectories&&!u.dirent.isDirectory()}_isMatchToPatternsSet(u,n,a){return!(!this._isMatchToPatterns(u,n.positive.all,a)||this._isMatchToPatterns(u,n.negative.relative,a)||this._isMatchToAbsoluteNegative(u,n.negative.absolute,a))}_isMatchToAbsoluteNegative(u,n,a){if(n.length===0)return!1;let i=t.path.makeAbsolute(this._settings.cwd,u);return this._isMatchToPatterns(i,n,a)}_isMatchToPatterns(u,n,a){if(n.length===0)return!1;let i=t.pattern.matchAny(u,n);return!i&&a?t.pattern.matchAny(u+"/",n):i}};e.default=r}}),mc=G({"node_modules/fast-glob/out/providers/filters/error.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=_t(),r=class{constructor(u){this._settings=u}getFilter(){return u=>this._isNonFatalError(u)}_isNonFatalError(u){return t.errno.isEnoentCodeError(u)||this._settings.suppressErrors}};e.default=r}}),Ec=G({"node_modules/fast-glob/out/providers/transformers/entry.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=_t(),r=class{constructor(u){this._settings=u}getTransformer(){return u=>this._transform(u)}_transform(u){let n=u.path;return this._settings.absolute&&(n=t.path.makeAbsolute(this._settings.cwd,n),n=t.path.unixify(n)),this._settings.markDirectories&&u.dirent.isDirectory()&&(n+="/"),this._settings.objectMode?Object.assign(Object.assign({},u),{path:n}):n}};e.default=r}}),vn=G({"node_modules/fast-glob/out/providers/provider.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=oe("path"),r=gc(),u=Fc(),n=mc(),a=Ec(),i=class{constructor(o){this._settings=o,this.errorFilter=new n.default(this._settings),this.entryFilter=new u.default(this._settings,this._getMicromatchOptions()),this.deepFilter=new r.default(this._settings,this._getMicromatchOptions()),this.entryTransformer=new a.default(this._settings)}_getRootDirectory(o){return t.resolve(this._settings.cwd,o.base)}_getReaderOptions(o){let s=o.base==="."?"":o.base;return{basePath:s,pathSegmentSeparator:"/",concurrency:this._settings.concurrency,deepFilter:this.deepFilter.getFilter(s,o.positive,o.negative),entryFilter:this.entryFilter.getFilter(o.positive,o.negative),errorFilter:this.errorFilter.getFilter(),followSymbolicLinks:this._settings.followSymbolicLinks,fs:this._settings.fs,stats:this._settings.stats,throwErrorOnBrokenSymbolicLink:this._settings.throwErrorOnBrokenSymbolicLink,transform:this.entryTransformer.getTransformer()}}_getMicromatchOptions(){return{dot:this._settings.dot,matchBase:this._settings.baseNameMatch,nobrace:!this._settings.braceExpansion,nocase:!this._settings.caseSensitiveMatch,noext:!this._settings.extglob,noglobstar:!this._settings.globstar,posix:!0,strictSlashes:!1}}};e.default=i}}),Cc=G({"node_modules/fast-glob/out/providers/async.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=pc(),r=vn(),u=class extends r.default{constructor(){super(...arguments),this._reader=new t.default(this._settings)}async read(n){let a=this._getRootDirectory(n),i=this._getReaderOptions(n);return(await this.api(a,n,i)).map(s=>i.transform(s))}api(n,a,i){return a.dynamic?this._reader.dynamic(n,i):this._reader.static(a.patterns,i)}};e.default=u}}),vc=G({"node_modules/fast-glob/out/providers/stream.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=oe("stream"),r=xi(),u=vn(),n=class extends u.default{constructor(){super(...arguments),this._reader=new r.default(this._settings)}read(a){let i=this._getRootDirectory(a),o=this._getReaderOptions(a),s=this.api(i,a,o),c=new t.Readable({objectMode:!0,read:()=>{}});return s.once("error",l=>c.emit("error",l)).on("data",l=>c.emit("data",o.transform(l))).once("end",()=>c.emit("end")),c.once("close",()=>s.destroy()),c}api(a,i,o){return i.dynamic?this._reader.dynamic(a,o):this._reader.static(i.patterns,o)}};e.default=n}}),Ac=G({"node_modules/fast-glob/out/readers/sync.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=ur(),r=En(),u=Cn(),n=class extends u.default{constructor(){super(...arguments),this._walkSync=r.walkSync,this._statSync=t.statSync}dynamic(a,i){return this._walkSync(a,i)}static(a,i){let o=[];for(let s of a){let c=this._getFullEntryPath(s),l=this._getEntry(c,s,i);l===null||!i.entryFilter(l)||o.push(l)}return o}_getEntry(a,i,o){try{let s=this._getStat(a);return this._makeEntry(s,i)}catch(s){if(o.errorFilter(s))return null;throw s}}_getStat(a){return this._statSync(a,this._fsStatSettings)}};e.default=n}}),yc=G({"node_modules/fast-glob/out/providers/sync.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=Ac(),r=vn(),u=class extends r.default{constructor(){super(...arguments),this._reader=new t.default(this._settings)}read(n){let a=this._getRootDirectory(n),i=this._getReaderOptions(n);return this.api(a,n,i).map(i.transform)}api(n,a,i){return a.dynamic?this._reader.dynamic(n,i):this._reader.static(a.patterns,i)}};e.default=u}}),_c=G({"node_modules/fast-glob/out/settings.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.DEFAULT_FILE_SYSTEM_ADAPTER=void 0;var t=oe("fs"),r=oe("os"),u=Math.max(r.cpus().length,1);e.DEFAULT_FILE_SYSTEM_ADAPTER={lstat:t.lstat,lstatSync:t.lstatSync,stat:t.stat,statSync:t.statSync,readdir:t.readdir,readdirSync:t.readdirSync};var n=class{constructor(a={}){this._options=a,this.absolute=this._getValue(this._options.absolute,!1),this.baseNameMatch=this._getValue(this._options.baseNameMatch,!1),this.braceExpansion=this._getValue(this._options.braceExpansion,!0),this.caseSensitiveMatch=this._getValue(this._options.caseSensitiveMatch,!0),this.concurrency=this._getValue(this._options.concurrency,u),this.cwd=this._getValue(this._options.cwd,process.cwd()),this.deep=this._getValue(this._options.deep,1/0),this.dot=this._getValue(this._options.dot,!1),this.extglob=this._getValue(this._options.extglob,!0),this.followSymbolicLinks=this._getValue(this._options.followSymbolicLinks,!0),this.fs=this._getFileSystemMethods(this._options.fs),this.globstar=this._getValue(this._options.globstar,!0),this.ignore=this._getValue(this._options.ignore,[]),this.markDirectories=this._getValue(this._options.markDirectories,!1),this.objectMode=this._getValue(this._options.objectMode,!1),this.onlyDirectories=this._getValue(this._options.onlyDirectories,!1),this.onlyFiles=this._getValue(this._options.onlyFiles,!0),this.stats=this._getValue(this._options.stats,!1),this.suppressErrors=this._getValue(this._options.suppressErrors,!1),this.throwErrorOnBrokenSymbolicLink=this._getValue(this._options.throwErrorOnBrokenSymbolicLink,!1),this.unique=this._getValue(this._options.unique,!0),this.onlyDirectories&&(this.onlyFiles=!1),this.stats&&(this.objectMode=!0),this.ignore=[].concat(this.ignore)}_getValue(a,i){return a===void 0?i:a}_getFileSystemMethods(a={}){return Object.assign(Object.assign({},e.DEFAULT_FILE_SYSTEM_ADAPTER),a)}};e.default=n}}),bc=G({"node_modules/fast-glob/out/index.js"(e,t){"use strict";var r=zl(),u=Cc(),n=vc(),a=yc(),i=_c(),o=_t();async function s(D,f){l(D);let d=c(D,u.default,f),p=await Promise.all(d);return o.array.flatten(p)}(function(D){D.glob=D,D.globSync=f,D.globStream=d,D.async=D;function f(S,g){l(S);let B=c(S,a.default,g);return o.array.flatten(B)}D.sync=f;function d(S,g){l(S);let B=c(S,n.default,g);return o.stream.merge(B)}D.stream=d;function p(S,g){l(S);let B=[].concat(S),x=new i.default(g);return r.generate(B,x)}D.generateTasks=p;function h(S,g){l(S);let B=new i.default(g);return o.pattern.isDynamicPattern(S,B)}D.isDynamicPattern=h;function v(S){return l(S),o.path.escape(S)}D.escapePath=v;function y(S){return l(S),o.path.convertPathToPattern(S)}D.convertPathToPattern=y;let E;(function(S){function g(x){return l(x),o.path.escapePosixPath(x)}S.escapePath=g;function B(x){return l(x),o.path.convertPosixPathToPattern(x)}S.convertPathToPattern=B})(E=D.posix||(D.posix={}));let C;(function(S){function g(x){return l(x),o.path.escapeWindowsPath(x)}S.escapePath=g;function B(x){return l(x),o.path.convertWindowsPathToPattern(x)}S.convertPathToPattern=B})(C=D.win32||(D.win32={}))})(s||(s={}));function c(D,f,d){let p=[].concat(D),h=new i.default(d),v=r.generate(p,h),y=new f(h);return v.map(y.read,y)}function l(D){if(![].concat(D).every(p=>o.string.isString(p)&&!o.string.isEmpty(p)))throw new TypeError("Patterns must be a string (non empty) or an array of strings")}t.exports=s}}),Ar=G({"node_modules/picocolors/picocolors.js"(e,t){var r=process||{},u=r.argv||[],n=r.env||{},a=!(n.NO_COLOR||u.includes("--no-color"))&&(!!n.FORCE_COLOR||u.includes("--color")||r.platform==="win32"||(r.stdout||{}).isTTY&&n.TERM!=="dumb"||!!n.CI),i=(c,l,D=c)=>f=>{let d=""+f,p=d.indexOf(l,c.length);return~p?c+o(d,l,D,p)+l:c+d+l},o=(c,l,D,f)=>{let d="",p=0;do d+=c.substring(p,f)+D,p=f+l.length,f=c.indexOf(l,p);while(~f);return d+c.substring(p)},s=(c=a)=>{let l=c?i:()=>String;return{isColorSupported:c,reset:l("\x1B[0m","\x1B[0m"),bold:l("\x1B[1m","\x1B[22m","\x1B[22m\x1B[1m"),dim:l("\x1B[2m","\x1B[22m","\x1B[22m\x1B[2m"),italic:l("\x1B[3m","\x1B[23m"),underline:l("\x1B[4m","\x1B[24m"),inverse:l("\x1B[7m","\x1B[27m"),hidden:l("\x1B[8m","\x1B[28m"),strikethrough:l("\x1B[9m","\x1B[29m"),black:l("\x1B[30m","\x1B[39m"),red:l("\x1B[31m","\x1B[39m"),green:l("\x1B[32m","\x1B[39m"),yellow:l("\x1B[33m","\x1B[39m"),blue:l("\x1B[34m","\x1B[39m"),magenta:l("\x1B[35m","\x1B[39m"),cyan:l("\x1B[36m","\x1B[39m"),white:l("\x1B[37m","\x1B[39m"),gray:l("\x1B[90m","\x1B[39m"),bgBlack:l("\x1B[40m","\x1B[49m"),bgRed:l("\x1B[41m","\x1B[49m"),bgGreen:l("\x1B[42m","\x1B[49m"),bgYellow:l("\x1B[43m","\x1B[49m"),bgBlue:l("\x1B[44m","\x1B[49m"),bgMagenta:l("\x1B[45m","\x1B[49m"),bgCyan:l("\x1B[46m","\x1B[49m"),bgWhite:l("\x1B[47m","\x1B[49m"),blackBright:l("\x1B[90m","\x1B[39m"),redBright:l("\x1B[91m","\x1B[39m"),greenBright:l("\x1B[92m","\x1B[39m"),yellowBright:l("\x1B[93m","\x1B[39m"),blueBright:l("\x1B[94m","\x1B[39m"),magentaBright:l("\x1B[95m","\x1B[39m"),cyanBright:l("\x1B[96m","\x1B[39m"),whiteBright:l("\x1B[97m","\x1B[39m"),bgBlackBright:l("\x1B[100m","\x1B[49m"),bgRedBright:l("\x1B[101m","\x1B[49m"),bgGreenBright:l("\x1B[102m","\x1B[49m"),bgYellowBright:l("\x1B[103m","\x1B[49m"),bgBlueBright:l("\x1B[104m","\x1B[49m"),bgMagentaBright:l("\x1B[105m","\x1B[49m"),bgCyanBright:l("\x1B[106m","\x1B[49m"),bgWhiteBright:l("\x1B[107m","\x1B[49m")}};t.exports=s(),t.exports.createColors=s}}),Pi=G({"node_modules/semver/internal/debug.js"(e,t){"use strict";var r=typeof process=="object"&&process.env&&process.env.NODE_DEBUG&&/\bsemver\b/i.test(process.env.NODE_DEBUG)?(...u)=>console.error("SEMVER",...u):()=>{};t.exports=r}}),Oi=G({"node_modules/semver/internal/constants.js"(e,t){"use strict";var r="2.0.0",u=256,n=Number.MAX_SAFE_INTEGER||9007199254740991,a=16,i=u-6,o=["major","premajor","minor","preminor","patch","prepatch","prerelease"];t.exports={MAX_LENGTH:u,MAX_SAFE_COMPONENT_LENGTH:a,MAX_SAFE_BUILD_LENGTH:i,MAX_SAFE_INTEGER:n,RELEASE_TYPES:o,SEMVER_SPEC_VERSION:r,FLAG_INCLUDE_PRERELEASE:1,FLAG_LOOSE:2}}}),Bc=G({"node_modules/semver/internal/re.js"(e,t){"use strict";var{MAX_SAFE_COMPONENT_LENGTH:r,MAX_SAFE_BUILD_LENGTH:u,MAX_LENGTH:n}=Oi(),a=Pi();e=t.exports={};var i=e.re=[],o=e.safeRe=[],s=e.src=[],c=e.safeSrc=[],l=e.t={},D=0,f="[a-zA-Z0-9-]",d=[["\\s",1],["\\d",n],[f,u]],p=v=>{for(let[y,E]of d)v=v.split(`${y}*`).join(`${y}{0,${E}}`).split(`${y}+`).join(`${y}{1,${E}}`);return v},h=(v,y,E)=>{let C=p(y),S=D++;a(v,S,y),l[v]=S,s[S]=y,c[S]=C,i[S]=new RegExp(y,E?"g":void 0),o[S]=new RegExp(C,E?"g":void 0)};h("NUMERICIDENTIFIER","0|[1-9]\\d*"),h("NUMERICIDENTIFIERLOOSE","\\d+"),h("NONNUMERICIDENTIFIER",`\\d*[a-zA-Z-]${f}*`),h("MAINVERSION",`(${s[l.NUMERICIDENTIFIER]})\\.(${s[l.NUMERICIDENTIFIER]})\\.(${s[l.NUMERICIDENTIFIER]})`),h("MAINVERSIONLOOSE",`(${s[l.NUMERICIDENTIFIERLOOSE]})\\.(${s[l.NUMERICIDENTIFIERLOOSE]})\\.(${s[l.NUMERICIDENTIFIERLOOSE]})`),h("PRERELEASEIDENTIFIER",`(?:${s[l.NONNUMERICIDENTIFIER]}|${s[l.NUMERICIDENTIFIER]})`),h("PRERELEASEIDENTIFIERLOOSE",`(?:${s[l.NONNUMERICIDENTIFIER]}|${s[l.NUMERICIDENTIFIERLOOSE]})`),h("PRERELEASE",`(?:-(${s[l.PRERELEASEIDENTIFIER]}(?:\\.${s[l.PRERELEASEIDENTIFIER]})*))`),h("PRERELEASELOOSE",`(?:-?(${s[l.PRERELEASEIDENTIFIERLOOSE]}(?:\\.${s[l.PRERELEASEIDENTIFIERLOOSE]})*))`),h("BUILDIDENTIFIER",`${f}+`),h("BUILD",`(?:\\+(${s[l.BUILDIDENTIFIER]}(?:\\.${s[l.BUILDIDENTIFIER]})*))`),h("FULLPLAIN",`v?${s[l.MAINVERSION]}${s[l.PRERELEASE]}?${s[l.BUILD]}?`),h("FULL",`^${s[l.FULLPLAIN]}$`),h("LOOSEPLAIN",`[v=\\s]*${s[l.MAINVERSIONLOOSE]}${s[l.PRERELEASELOOSE]}?${s[l.BUILD]}?`),h("LOOSE",`^${s[l.LOOSEPLAIN]}$`),h("GTLT","((?:<|>)?=?)"),h("XRANGEIDENTIFIERLOOSE",`${s[l.NUMERICIDENTIFIERLOOSE]}|x|X|\\*`),h("XRANGEIDENTIFIER",`${s[l.NUMERICIDENTIFIER]}|x|X|\\*`),h("XRANGEPLAIN",`[v=\\s]*(${s[l.XRANGEIDENTIFIER]})(?:\\.(${s[l.XRANGEIDENTIFIER]})(?:\\.(${s[l.XRANGEIDENTIFIER]})(?:${s[l.PRERELEASE]})?${s[l.BUILD]}?)?)?`),h("XRANGEPLAINLOOSE",`[v=\\s]*(${s[l.XRANGEIDENTIFIERLOOSE]})(?:\\.(${s[l.XRANGEIDENTIFIERLOOSE]})(?:\\.(${s[l.XRANGEIDENTIFIERLOOSE]})(?:${s[l.PRERELEASELOOSE]})?${s[l.BUILD]}?)?)?`),h("XRANGE",`^${s[l.GTLT]}\\s*${s[l.XRANGEPLAIN]}$`),h("XRANGELOOSE",`^${s[l.GTLT]}\\s*${s[l.XRANGEPLAINLOOSE]}$`),h("COERCEPLAIN",`(^|[^\\d])(\\d{1,${r}})(?:\\.(\\d{1,${r}}))?(?:\\.(\\d{1,${r}}))?`),h("COERCE",`${s[l.COERCEPLAIN]}(?:$|[^\\d])`),h("COERCEFULL",s[l.COERCEPLAIN]+`(?:${s[l.PRERELEASE]})?(?:${s[l.BUILD]})?(?:$|[^\\d])`),h("COERCERTL",s[l.COERCE],!0),h("COERCERTLFULL",s[l.COERCEFULL],!0),h("LONETILDE","(?:~>?)"),h("TILDETRIM",`(\\s*)${s[l.LONETILDE]}\\s+`,!0),e.tildeTrimReplace="$1~",h("TILDE",`^${s[l.LONETILDE]}${s[l.XRANGEPLAIN]}$`),h("TILDELOOSE",`^${s[l.LONETILDE]}${s[l.XRANGEPLAINLOOSE]}$`),h("LONECARET","(?:\\^)"),h("CARETTRIM",`(\\s*)${s[l.LONECARET]}\\s+`,!0),e.caretTrimReplace="$1^",h("CARET",`^${s[l.LONECARET]}${s[l.XRANGEPLAIN]}$`),h("CARETLOOSE",`^${s[l.LONECARET]}${s[l.XRANGEPLAINLOOSE]}$`),h("COMPARATORLOOSE",`^${s[l.GTLT]}\\s*(${s[l.LOOSEPLAIN]})$|^$`),h("COMPARATOR",`^${s[l.GTLT]}\\s*(${s[l.FULLPLAIN]})$|^$`),h("COMPARATORTRIM",`(\\s*)${s[l.GTLT]}\\s*(${s[l.LOOSEPLAIN]}|${s[l.XRANGEPLAIN]})`,!0),e.comparatorTrimReplace="$1$2$3",h("HYPHENRANGE",`^\\s*(${s[l.XRANGEPLAIN]})\\s+-\\s+(${s[l.XRANGEPLAIN]})\\s*$`),h("HYPHENRANGELOOSE",`^\\s*(${s[l.XRANGEPLAINLOOSE]})\\s+-\\s+(${s[l.XRANGEPLAINLOOSE]})\\s*$`),h("STAR","(<|>)?=?\\s*\\*"),h("GTE0","^\\s*>=\\s*0\\.0\\.0\\s*$"),h("GTE0PRE","^\\s*>=\\s*0\\.0\\.0-0\\s*$")}}),wc=G({"node_modules/semver/internal/parse-options.js"(e,t){"use strict";var r=Object.freeze({loose:!0}),u=Object.freeze({}),n=a=>a?typeof a!="object"?r:a:u;t.exports=n}}),Sc=G({"node_modules/semver/internal/identifiers.js"(e,t){"use strict";var r=/^[0-9]+$/,u=(a,i)=>{let o=r.test(a),s=r.test(i);return o&&s&&(a=+a,i=+i),a===i?0:o&&!s?-1:s&&!o?1:a<i?-1:1},n=(a,i)=>u(i,a);t.exports={compareIdentifiers:u,rcompareIdentifiers:n}}}),kc=G({"node_modules/semver/classes/semver.js"(e,t){"use strict";var r=Pi(),{MAX_LENGTH:u,MAX_SAFE_INTEGER:n}=Oi(),{safeRe:a,t:i}=Bc(),o=wc(),{compareIdentifiers:s}=Sc(),c=class Ve{constructor(D,f){if(f=o(f),D instanceof Ve){if(D.loose===!!f.loose&&D.includePrerelease===!!f.includePrerelease)return D;D=D.version}else if(typeof D!="string")throw new TypeError(`Invalid version. Must be a string. Got type "${typeof D}".`);if(D.length>u)throw new TypeError(`version is longer than ${u} characters`);r("SemVer",D,f),this.options=f,this.loose=!!f.loose,this.includePrerelease=!!f.includePrerelease;let d=D.trim().match(f.loose?a[i.LOOSE]:a[i.FULL]);if(!d)throw new TypeError(`Invalid Version: ${D}`);if(this.raw=D,this.major=+d[1],this.minor=+d[2],this.patch=+d[3],this.major>n||this.major<0)throw new TypeError("Invalid major version");if(this.minor>n||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>n||this.patch<0)throw new TypeError("Invalid patch version");d[4]?this.prerelease=d[4].split(".").map(p=>{if(/^[0-9]+$/.test(p)){let h=+p;if(h>=0&&h<n)return h}return p}):this.prerelease=[],this.build=d[5]?d[5].split("."):[],this.format()}format(){return this.version=`${this.major}.${this.minor}.${this.patch}`,this.prerelease.length&&(this.version+=`-${this.prerelease.join(".")}`),this.version}toString(){return this.version}compare(D){if(r("SemVer.compare",this.version,this.options,D),!(D instanceof Ve)){if(typeof D=="string"&&D===this.version)return 0;D=new Ve(D,this.options)}return D.version===this.version?0:this.compareMain(D)||this.comparePre(D)}compareMain(D){return D instanceof Ve||(D=new Ve(D,this.options)),s(this.major,D.major)||s(this.minor,D.minor)||s(this.patch,D.patch)}comparePre(D){if(D instanceof Ve||(D=new Ve(D,this.options)),this.prerelease.length&&!D.prerelease.length)return-1;if(!this.prerelease.length&&D.prerelease.length)return 1;if(!this.prerelease.length&&!D.prerelease.length)return 0;let f=0;do{let d=this.prerelease[f],p=D.prerelease[f];if(r("prerelease compare",f,d,p),d===void 0&&p===void 0)return 0;if(p===void 0)return 1;if(d===void 0)return-1;if(d===p)continue;return s(d,p)}while(++f)}compareBuild(D){D instanceof Ve||(D=new Ve(D,this.options));let f=0;do{let d=this.build[f],p=D.build[f];if(r("build compare",f,d,p),d===void 0&&p===void 0)return 0;if(p===void 0)return 1;if(d===void 0)return-1;if(d===p)continue;return s(d,p)}while(++f)}inc(D,f,d){if(D.startsWith("pre")){if(!f&&d===!1)throw new Error("invalid increment argument: identifier is empty");if(f){let p=`-${f}`.match(this.options.loose?a[i.PRERELEASELOOSE]:a[i.PRERELEASE]);if(!p||p[1]!==f)throw new Error(`invalid identifier: ${f}`)}}switch(D){case"premajor":this.prerelease.length=0,this.patch=0,this.minor=0,this.major++,this.inc("pre",f,d);break;case"preminor":this.prerelease.length=0,this.patch=0,this.minor++,this.inc("pre",f,d);break;case"prepatch":this.prerelease.length=0,this.inc("patch",f,d),this.inc("pre",f,d);break;case"prerelease":this.prerelease.length===0&&this.inc("patch",f,d),this.inc("pre",f,d);break;case"release":if(this.prerelease.length===0)throw new Error(`version ${this.raw} is not a prerelease`);this.prerelease.length=0;break;case"major":(this.minor!==0||this.patch!==0||this.prerelease.length===0)&&this.major++,this.minor=0,this.patch=0,this.prerelease=[];break;case"minor":(this.patch!==0||this.prerelease.length===0)&&this.minor++,this.patch=0,this.prerelease=[];break;case"patch":this.prerelease.length===0&&this.patch++,this.prerelease=[];break;case"pre":{let p=Number(d)?1:0;if(this.prerelease.length===0)this.prerelease=[p];else{let h=this.prerelease.length;for(;--h>=0;)typeof this.prerelease[h]=="number"&&(this.prerelease[h]++,h=-2);if(h===-1){if(f===this.prerelease.join(".")&&d===!1)throw new Error("invalid increment argument: identifier already exists");this.prerelease.push(p)}}if(f){let h=[f,p];d===!1&&(h=[f]),s(this.prerelease[0],f)===0?isNaN(this.prerelease[1])&&(this.prerelease=h):this.prerelease=h}break}default:throw new Error(`invalid increment argument: ${D}`)}return this.raw=this.format(),this.build.length&&(this.raw+=`+${this.build.join(".")}`),this}};t.exports=c}}),Rc=G({"node_modules/semver/functions/compare.js"(e,t){"use strict";var r=kc(),u=(n,a,i)=>new r(n,i).compare(new r(a,i));t.exports=u}}),xc=G({"node_modules/semver/functions/gte.js"(e,t){"use strict";var r=Rc(),u=(n,a,i)=>r(n,a,i)>=0;t.exports=u}}),Pc=G({"node_modules/pseudomap/pseudomap.js"(e,t){var r=Object.prototype.hasOwnProperty;t.exports=u;function u(s){if(!(this instanceof u))throw new TypeError("Constructor PseudoMap requires 'new'");if(this.clear(),s)if(s instanceof u||typeof Map=="function"&&s instanceof Map)s.forEach(function(c,l){this.set(l,c)},this);else if(Array.isArray(s))s.forEach(function(c){this.set(c[0],c[1])},this);else throw new TypeError("invalid argument")}u.prototype.forEach=function(s,c){c=c||this,Object.keys(this._data).forEach(function(l){l!=="size"&&s.call(c,this._data[l].value,this._data[l].key)},this)},u.prototype.has=function(s){return!!i(this._data,s)},u.prototype.get=function(s){var c=i(this._data,s);return c&&c.value},u.prototype.set=function(s,c){o(this._data,s,c)},u.prototype.delete=function(s){var c=i(this._data,s);c&&(delete this._data[c._index],this._data.size--)},u.prototype.clear=function(){var s=Object.create(null);s.size=0,Object.defineProperty(this,"_data",{value:s,enumerable:!1,configurable:!0,writable:!1})},Object.defineProperty(u.prototype,"size",{get:function(){return this._data.size},set:function(s){},enumerable:!0,configurable:!0}),u.prototype.values=u.prototype.keys=u.prototype.entries=function(){throw new Error("iterators are not implemented in this version")};function n(s,c){return s===c||s!==s&&c!==c}function a(s,c,l){this.key=s,this.value=c,this._index=l}function i(s,c){for(var l=0,D="_"+c,f=D;r.call(s,f);f=D+l++)if(n(s[f].key,c))return s[f]}function o(s,c,l){for(var D=0,f="_"+c,d=f;r.call(s,d);d=f+D++)if(n(s[d].key,c)){s[d].value=l;return}s.size++,s[d]=new a(c,l,d)}}}),Oc=G({"node_modules/pseudomap/map.js"(e,t){process.env.npm_package_name==="pseudomap"&&process.env.npm_lifecycle_script==="test"&&(process.env.TEST_PSEUDOMAP="true"),typeof Map=="function"&&!process.env.TEST_PSEUDOMAP?t.exports=Map:t.exports=Pc()}}),Tc=G({"node_modules/yallist/yallist.js"(e,t){t.exports=r,r.Node=a,r.create=r;function r(i){var o=this;if(o instanceof r||(o=new r),o.tail=null,o.head=null,o.length=0,i&&typeof i.forEach=="function")i.forEach(function(l){o.push(l)});else if(arguments.length>0)for(var s=0,c=arguments.length;s<c;s++)o.push(arguments[s]);return o}r.prototype.removeNode=function(i){if(i.list!==this)throw new Error("removing node which does not belong to this list");var o=i.next,s=i.prev;o&&(o.prev=s),s&&(s.next=o),i===this.head&&(this.head=o),i===this.tail&&(this.tail=s),i.list.length--,i.next=null,i.prev=null,i.list=null},r.prototype.unshiftNode=function(i){if(i!==this.head){i.list&&i.list.removeNode(i);var o=this.head;i.list=this,i.next=o,o&&(o.prev=i),this.head=i,this.tail||(this.tail=i),this.length++}},r.prototype.pushNode=function(i){if(i!==this.tail){i.list&&i.list.removeNode(i);var o=this.tail;i.list=this,i.prev=o,o&&(o.next=i),this.tail=i,this.head||(this.head=i),this.length++}},r.prototype.push=function(){for(var i=0,o=arguments.length;i<o;i++)u(this,arguments[i]);return this.length},r.prototype.unshift=function(){for(var i=0,o=arguments.length;i<o;i++)n(this,arguments[i]);return this.length},r.prototype.pop=function(){if(this.tail){var i=this.tail.value;return this.tail=this.tail.prev,this.tail?this.tail.next=null:this.head=null,this.length--,i}},r.prototype.shift=function(){if(this.head){var i=this.head.value;return this.head=this.head.next,this.head?this.head.prev=null:this.tail=null,this.length--,i}},r.prototype.forEach=function(i,o){o=o||this;for(var s=this.head,c=0;s!==null;c++)i.call(o,s.value,c,this),s=s.next},r.prototype.forEachReverse=function(i,o){o=o||this;for(var s=this.tail,c=this.length-1;s!==null;c--)i.call(o,s.value,c,this),s=s.prev},r.prototype.get=function(i){for(var o=0,s=this.head;s!==null&&o<i;o++)s=s.next;if(o===i&&s!==null)return s.value},r.prototype.getReverse=function(i){for(var o=0,s=this.tail;s!==null&&o<i;o++)s=s.prev;if(o===i&&s!==null)return s.value},r.prototype.map=function(i,o){o=o||this;for(var s=new r,c=this.head;c!==null;)s.push(i.call(o,c.value,this)),c=c.next;return s},r.prototype.mapReverse=function(i,o){o=o||this;for(var s=new r,c=this.tail;c!==null;)s.push(i.call(o,c.value,this)),c=c.prev;return s},r.prototype.reduce=function(i,o){var s,c=this.head;if(arguments.length>1)s=o;else if(this.head)c=this.head.next,s=this.head.value;else throw new TypeError("Reduce of empty list with no initial value");for(var l=0;c!==null;l++)s=i(s,c.value,l),c=c.next;return s},r.prototype.reduceReverse=function(i,o){var s,c=this.tail;if(arguments.length>1)s=o;else if(this.tail)c=this.tail.prev,s=this.tail.value;else throw new TypeError("Reduce of empty list with no initial value");for(var l=this.length-1;c!==null;l--)s=i(s,c.value,l),c=c.prev;return s},r.prototype.toArray=function(){for(var i=new Array(this.length),o=0,s=this.head;s!==null;o++)i[o]=s.value,s=s.next;return i},r.prototype.toArrayReverse=function(){for(var i=new Array(this.length),o=0,s=this.tail;s!==null;o++)i[o]=s.value,s=s.prev;return i},r.prototype.slice=function(i,o){o=o||this.length,o<0&&(o+=this.length),i=i||0,i<0&&(i+=this.length);var s=new r;if(o<i||o<0)return s;i<0&&(i=0),o>this.length&&(o=this.length);for(var c=0,l=this.head;l!==null&&c<i;c++)l=l.next;for(;l!==null&&c<o;c++,l=l.next)s.push(l.value);return s},r.prototype.sliceReverse=function(i,o){o=o||this.length,o<0&&(o+=this.length),i=i||0,i<0&&(i+=this.length);var s=new r;if(o<i||o<0)return s;i<0&&(i=0),o>this.length&&(o=this.length);for(var c=this.length,l=this.tail;l!==null&&c>o;c--)l=l.prev;for(;l!==null&&c>i;c--,l=l.prev)s.push(l.value);return s},r.prototype.reverse=function(){for(var i=this.head,o=this.tail,s=i;s!==null;s=s.prev){var c=s.prev;s.prev=s.next,s.next=c}return this.head=o,this.tail=i,this};function u(i,o){i.tail=new a(o,i.tail,null,i),i.head||(i.head=i.tail),i.length++}function n(i,o){i.head=new a(o,null,i.head,i),i.tail||(i.tail=i.head),i.length++}function a(i,o,s,c){if(!(this instanceof a))return new a(i,o,s,c);this.list=c,this.value=i,o?(o.next=this,this.prev=o):this.prev=null,s?(s.prev=this,this.next=s):this.next=null}}}),Ic=G({"node_modules/editorconfig/node_modules/lru-cache/index.js"(e,t){"use strict";t.exports=y;var r=Oc(),u=oe("util"),n=Tc(),a=typeof Symbol=="function"&&process.env._nodeLRUCacheForceNoSymbol!=="1",i;a?i=function(m){return Symbol(m)}:i=function(m){return"_"+m};var o=i("max"),s=i("length"),c=i("lengthCalculator"),l=i("allowStale"),D=i("maxAge"),f=i("dispose"),d=i("noDisposeOnSet"),p=i("lruList"),h=i("cache");function v(){return 1}function y(m){if(!(this instanceof y))return new y(m);typeof m=="number"&&(m={max:m}),m||(m={});var R=this[o]=m.max;(!R||typeof R!="number"||R<=0)&&(this[o]=1/0);var N=m.length||v;typeof N!="function"&&(N=v),this[c]=N,this[l]=m.stale||!1,this[D]=m.maxAge||0,this[f]=m.dispose,this[d]=m.noDisposeOnSet||!1,this.reset()}Object.defineProperty(y.prototype,"max",{set:function(m){(!m||typeof m!="number"||m<=0)&&(m=1/0),this[o]=m,g(this)},get:function(){return this[o]},enumerable:!0}),Object.defineProperty(y.prototype,"allowStale",{set:function(m){this[l]=!!m},get:function(){return this[l]},enumerable:!0}),Object.defineProperty(y.prototype,"maxAge",{set:function(m){(!m||typeof m!="number"||m<0)&&(m=0),this[D]=m,g(this)},get:function(){return this[D]},enumerable:!0}),Object.defineProperty(y.prototype,"lengthCalculator",{set:function(m){typeof m!="function"&&(m=v),m!==this[c]&&(this[c]=m,this[s]=0,this[p].forEach(function(R){R.length=this[c](R.value,R.key),this[s]+=R.length},this)),g(this)},get:function(){return this[c]},enumerable:!0}),Object.defineProperty(y.prototype,"length",{get:function(){return this[s]},enumerable:!0}),Object.defineProperty(y.prototype,"itemCount",{get:function(){return this[p].length},enumerable:!0}),y.prototype.rforEach=function(m,R){R=R||this;for(var N=this[p].tail;N!==null;){var w=N.prev;E(this,m,N,R),N=w}};function E(m,R,N,w){var O=N.value;S(m,O)&&(B(m,N),m[l]||(O=void 0)),O&&R.call(w,O.value,O.key,m)}y.prototype.forEach=function(m,R){R=R||this;for(var N=this[p].head;N!==null;){var w=N.next;E(this,m,N,R),N=w}},y.prototype.keys=function(){return this[p].toArray().map(function(m){return m.key},this)},y.prototype.values=function(){return this[p].toArray().map(function(m){return m.value},this)},y.prototype.reset=function(){this[f]&&this[p]&&this[p].length&&this[p].forEach(function(m){this[f](m.key,m.value)},this),this[h]=new r,this[p]=new n,this[s]=0},y.prototype.dump=function(){return this[p].map(function(m){if(!S(this,m))return{k:m.key,v:m.value,e:m.now+(m.maxAge||0)}},this).toArray().filter(function(m){return m})},y.prototype.dumpLru=function(){return this[p]},y.prototype.inspect=function(m,R){var N="LRUCache {",w=!1,O=this[l];O&&(N+=`
604
+ allowStale: true`,w=!0);var F=this[o];F&&F!==1/0&&(w&&(N+=","),N+=`
605
+ max: `+u.inspect(F,R),w=!0);var A=this[D];A&&(w&&(N+=","),N+=`
606
+ maxAge: `+u.inspect(A,R),w=!0);var _=this[c];_&&_!==v&&(w&&(N+=","),N+=`
607
+ length: `+u.inspect(this[s],R),w=!0);var k=!1;return this[p].forEach(function(L){k?N+=`,
608
+ `:(w&&(N+=`,
609
+ `),k=!0,N+=`
610
+ `);var W=u.inspect(L.key).split(`
596
611
  `).join(`
597
- `),M={value:x.value};x.maxAge!==A&&(M.maxAge=x.maxAge),_!==v&&(M.length=x.length),S(this,x)&&(M.stale=!0),M=u.inspect(M,R).split(`
612
+ `),M={value:L.value};L.maxAge!==A&&(M.maxAge=L.maxAge),_!==v&&(M.length=L.length),S(this,L)&&(M.stale=!0),M=u.inspect(M,R).split(`
598
613
  `).join(`
599
- `),L+=W+" => "+M}),(k||w)&&(L+=`
600
- `),L+="}",L},y.prototype.set=function(E,R,L){L=L||this[D];var w=L?Date.now():0,T=this[c](R,E);if(this[p].has(E)){if(T>this[o])return B(this,this[p].get(E)),!1;var g=this[p].get(E),A=g.value;return this[f]&&(this[h]||this[f](E,A.value)),A.now=w,A.maxAge=L,A.value=R,this[s]+=T-A.length,A.length=T,this.get(E),F(this),!0}var _=new P(E,R,T,w,L);return _.length>this[o]?(this[f]&&this[f](E,R),!1):(this[s]+=_.length,this[d].unshift(_),this[p].set(E,this[d].head),F(this),!0)},y.prototype.has=function(E){if(!this[p].has(E))return!1;var R=this[p].get(E).value;return!S(this,R)},y.prototype.get=function(E){return C(this,E,!0)},y.prototype.peek=function(E){return C(this,E,!1)},y.prototype.pop=function(){var E=this[d].tail;return E?(B(this,E),E.value):null},y.prototype.del=function(E){B(this,this[p].get(E))},y.prototype.load=function(E){this.reset();for(var R=Date.now(),L=E.length-1;L>=0;L--){var w=E[L],T=w.e||0;if(T===0)this.set(w.k,w.v);else{var g=T-R;g>0&&this.set(w.k,w.v,g)}}},y.prototype.prune=function(){var E=this;this[p].forEach(function(R,L){C(E,L,!1)})};function C(E,R,L){var w=E[p].get(R);if(w){var T=w.value;S(E,T)?(B(E,w),E[l]||(T=void 0)):L&&E[d].unshiftNode(w),T&&(T=T.value)}return T}function S(E,R){if(!R||!R.maxAge&&!E[D])return!1;var L=!1,w=Date.now()-R.now;return R.maxAge?L=w>R.maxAge:L=E[D]&&w>E[D],L}function F(E){if(E[s]>E[o])for(var R=E[d].tail;E[s]>E[o]&&R!==null;){var L=R.prev;B(E,R),R=L}}function B(E,R){if(R){var L=R.value;E[f]&&E[f](L.key,L.value),E[s]-=L.length,E[p].delete(L.key),E[d].removeNode(R)}}function P(E,R,L,w,T){this.key=E,this.value=R,this.length=L,this.now=w,this.maxAge=T||0}}}),Ic=G({"node_modules/sigmund/sigmund.js"(e,t){t.exports=r;function r(u,n){n=n||10;var a=[],i="",o=RegExp;function s(c,l){if(!(l>n)&&!(typeof c=="function"||typeof c>"u")){if(typeof c!="object"||!c||c instanceof o){i+=c;return}a.indexOf(c)!==-1||l===n||(a.push(c),i+="{",Object.keys(c).forEach(function(D,f,h){if(D.charAt(0)!=="_"){var d=typeof c[D];d==="function"||d==="undefined"||(i+=D,s(c[D],l+1))}}))}}return s(u,0),i}}}),Nc=G({"node_modules/editorconfig/src/lib/fnmatch.js"(e,t){var r=typeof process=="object"?process.platform:"win32";t?t.exports=m:e.minimatch=m,m.Minimatch=C;var u=Tc(),n=m.cache=new u({max:100}),a=m.GLOBSTAR=C.GLOBSTAR={},i=Ic(),o=oe("path"),s="[^/]",c=s+"*?",l="(?:(?!(?:\\/|^)(?:\\.{1,2})($|\\/)).)*?",D="(?:(?!(?:\\/|^)\\.).)*?",f=h("().*{}+?[]^$\\!");function h(g){return g.split("").reduce(function(A,_){return A[_]=!0,A},{})}var d=/\/+/;m.monkeyPatch=p;function p(){var g=Object.getOwnPropertyDescriptor(String.prototype,"match"),A=g.value;g.value=function(_){return _ instanceof C?_.match(this):A.call(this,_)},Object.defineProperty(String.prototype,g)}m.filter=v;function v(g,A){return A=A||{},function(_,k,x){return m(_,g,A)}}function y(g,A){g=g||{},A=A||{};var _={};return Object.keys(A).forEach(function(k){_[k]=A[k]}),Object.keys(g).forEach(function(k){_[k]=g[k]}),_}m.defaults=function(g){if(!g||!Object.keys(g).length)return m;var A=m,_=function(x,W,M){return A.minimatch(x,W,y(g,M))};return _.Minimatch=function(x,W){return new A.Minimatch(x,y(g,W))},_},C.defaults=function(g){return!g||!Object.keys(g).length?C:m.defaults(g).Minimatch};function m(g,A,_){if(typeof A!="string")throw new TypeError("glob pattern string required");return _||(_={}),!_.nocomment&&A.charAt(0)==="#"?!1:A.trim()===""?g==="":new C(A,_).match(g)}function C(g,A){if(!(this instanceof C))return new C(g,A,n);if(typeof g!="string")throw new TypeError("glob pattern string required");A||(A={}),r==="win32"&&(g=g.split("\\").join("/"));var _=g+`
601
- `+i(A),k=m.cache.get(_);if(k)return k;m.cache.set(_,this),this.options=A,this.set=[],this.pattern=g,this.regexp=null,this.negate=!1,this.comment=!1,this.empty=!1,this.make()}C.prototype.make=S;function S(){if(!this._made){var g=this.pattern,A=this.options;if(!A.nocomment&&g.charAt(0)==="#"){this.comment=!0;return}if(!g){this.empty=!0;return}this.parseNegate();var _=this.globSet=this.braceExpand();A.debug&&console.error(this.pattern,_),_=this.globParts=_.map(function(k){return k.split(d)}),A.debug&&console.error(this.pattern,_),_=_.map(function(k,x,W){return k.map(this.parse,this)},this),A.debug&&console.error(this.pattern,_),_=_.filter(function(k){return k.indexOf(!1)===-1}),A.debug&&console.error(this.pattern,_),this.set=_}}C.prototype.parseNegate=F;function F(){var g=this.pattern,A=!1,_=this.options,k=0;if(!_.nonegate){for(var x=0,W=g.length;x<W&&g.charAt(x)==="!";x++)A=!A,k++;k&&(this.pattern=g.substr(k)),this.negate=A}}m.braceExpand=function(g,A){return new C(g,A).braceExpand()},C.prototype.braceExpand=B;function B(g,A){if(A=A||this.options,g=typeof g>"u"?this.pattern:g,typeof g>"u")throw new Error("undefined pattern");if(A.nobrace||!g.match(/\{.*\}/))return[g];var K=!1;if(g.charAt(0)!=="{"){for(var _=null,X=0,k=g.length;X<k;X++){var x=g.charAt(X);if(x==="\\")K=!K;else if(x==="{"&&!K){_=g.substr(0,X);break}}if(_===null)return[g];var W=B(g.substr(X),A);return W.map(function(Ae){return _+Ae})}var M=g.match(/^\{(-?[0-9]+)\.\.(-?[0-9]+)\}/);if(M){for(var ce=B(g.substr(M[0].length),A),H=+M[1],j=+M[2],q=H>j?-1:1,b=[],X=H;X!=j+q;X+=q)for(var I=0,J=ce.length;I<J;I++)b.push(X+ce[I]);return b}var X=1,N=1,b=[],O="",U=!1,K=!1;function le(){b.push(O),O=""}e:for(X=1,k=g.length;X<k;X++){var x=g.charAt(X);if(K)K=!1,O+="\\"+x;else switch(x){case"\\":K=!0;continue;case"{":N++,O+="{";continue;case"}":if(N--,N===0){le(),X++;break e}else{O+=x;continue}case",":N===1?le():O+=x;continue;default:O+=x;continue}}if(N!==0)return B("\\"+g,A);var ce=B(g.substr(X),A),ae=b.length===1;b=b.map(function(Ae){return B(Ae,A)}),b=b.reduce(function(Ae,_e){return Ae.concat(_e)}),ae&&(b=b.map(function(Ae){return"{"+Ae+"}"}));for(var ne=[],X=0,k=b.length;X<k;X++)for(var I=0,J=ce.length;I<J;I++)ne.push(b[X]+ce[I]);return ne}C.prototype.parse=E;var P={};function E(g,A){var _=this.options;if(!_.noglobstar&&g==="**")return a;if(g==="")return"";var k="",x=!!_.nocase,W=!1,M=[],H,j,q=!1,I=-1,J=-1,X=g.charAt(0)==="."?"":_.dot?"(?!(?:^|\\/)\\.{1,2}(?:$|\\/))":"(?!\\.)";function N(){if(j){switch(j){case"*":k+=c,x=!0;break;case"?":k+=s,x=!0;break;default:k+="\\"+j;break}j=!1}}for(var b=0,O=g.length,U;b<O&&(U=g.charAt(b));b++){if(_.debug&&console.error("%s %s %s %j",g,b,k,U),W&&f[U]){k+="\\"+U,W=!1;continue}switch(U){case"/":return!1;case"\\":N(),W=!0;continue;case"?":case"*":case"+":case"@":case"!":if(_.debug&&console.error("%s %s %s %j <-- stateChar",g,b,k,U),q){U==="!"&&b===J+1&&(U="^"),k+=U;continue}N(),j=U,_.noext&&N();continue;case"(":if(q){k+="(";continue}if(!j){k+="\\(";continue}H=j,M.push({type:H,start:b-1,reStart:k.length}),k+=j==="!"?"(?:(?!":"(?:",j=!1;continue;case")":if(q||!M.length){k+="\\)";continue}switch(x=!0,k+=")",H=M.pop().type,H){case"!":k+="[^/]*?)";break;case"?":case"+":case"*":k+=H;case"@":break}continue;case"|":if(q||!M.length||W){k+="\\|",W=!1;continue}k+="|";continue;case"[":if(N(),q){k+="\\"+U;continue}q=!0,J=b,I=k.length,k+=U;continue;case"]":if(b===J+1||!q){k+="\\"+U,W=!1;continue}x=!0,q=!1,k+=U;continue;default:N(),W?W=!1:f[U]&&!(U==="^"&&q)&&(k+="\\"),k+=U}}if(q){var K=g.substr(J+1),le=this.parse(K,P);k=k.substr(0,I)+"\\["+le[0],x=x||le[1]}for(var ce;ce=M.pop();){var ae=k.slice(ce.reStart+3);ae=ae.replace(/((?:\\{2})*)(\\?)\|/g,function(Y,pe,Rt){return Rt||(Rt="\\"),pe+pe+Rt+"|"});var ne=ce.type==="*"?c:ce.type==="?"?s:"\\"+ce.type;x=!0,k=k.slice(0,ce.reStart)+ne+"\\("+ae}N(),W&&(k+="\\\\");var Ae=!1;switch(k.charAt(0)){case".":case"[":case"(":Ae=!0}if(k!==""&&x&&(k="(?=.)"+k),Ae&&(k=X+k),A===P)return[k,x];if(!x)return w(g);var _e=_.nocase?"i":"",Fe=new RegExp("^"+k+"$",_e);return Fe._glob=g,Fe._src=k,Fe}m.makeRe=function(g,A){return new C(g,A||{}).makeRe()},C.prototype.makeRe=R;function R(){if(this.regexp||this.regexp===!1)return this.regexp;var g=this.set;if(!g.length)return this.regexp=!1;var A=this.options,_=A.noglobstar?c:A.dot?l:D,k=A.nocase?"i":"",x=g.map(function(W){return W.map(function(M){return M===a?_:typeof M=="string"?T(M):M._src}).join("\\/")}).join("|");x="^(?:"+x+")$",this.negate&&(x="^(?!"+x+").*$");try{return this.regexp=new RegExp(x,k)}catch{return this.regexp=!1}}m.match=function(g,A,_){var k=new C(A,_);return g=g.filter(function(x){return k.match(x)}),_.nonull&&!g.length&&g.push(A),g},C.prototype.match=L;function L(g,A){if(this.comment)return!1;if(this.empty)return g==="";if(g==="/"&&A)return!0;var _=this.options;r==="win32"&&(g=g.split("\\").join("/")),g=g.split(d),_.debug&&console.error(this.pattern,"split",g);for(var k=this.set,x=0,W=k.length;x<W;x++){var M=k[x],H=this.matchOne(g,M,A);if(H)return _.flipNegate?!0:!this.negate}return _.flipNegate?!1:this.negate}C.prototype.matchOne=function(g,A,_){var k=this.options;k.debug&&console.error("matchOne",{this:this,file:g,pattern:A}),k.matchBase&&A.length===1&&(g=o.basename(g.join("/")).split("/")),k.debug&&console.error("matchOne",g.length,A.length);for(var x=0,W=0,M=g.length,H=A.length;x<M&&W<H;x++,W++){k.debug&&console.error("matchOne loop");var j=A[W],q=g[x];if(k.debug&&console.error(A,j,q),j===!1)return!1;if(j===a){k.debug&&console.error("GLOBSTAR",[A,j,q]);var I=x,J=W+1;if(J===H){for(k.debug&&console.error("** at the end");x<M;x++)if(g[x]==="."||g[x]===".."||!k.dot&&g[x].charAt(0)===".")return!1;return!0}e:for(;I<M;){var X=g[I];if(k.debug&&console.error(`
602
- globstar while`,g,I,A,J,X),this.matchOne(g.slice(I),A.slice(J),_))return k.debug&&console.error("globstar found match!",I,M,X),!0;if(X==="."||X===".."||!k.dot&&X.charAt(0)==="."){k.debug&&console.error("dot detected!",g,I,A,J);break e}k.debug&&console.error("globstar swallow a segment, and continue"),I++}return!!(_&&I===M)}var N;if(typeof j=="string"?(k.nocase?N=q.toLowerCase()===j.toLowerCase():N=q===j,k.debug&&console.error("string match",j,q,N)):(N=q.match(j),k.debug&&console.error("pattern match",j,q,N)),!N)return!1}if(x===M&&W===H)return!0;if(x===M)return _;if(W===H){var b=x===M-1&&g[x]==="";return b}throw new Error("wtf?")};function w(g){return g.replace(/\\(.)/g,"$1")}function T(g){return g.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")}}}),Lc=G({"node_modules/editorconfig/src/lib/ini.js"(e){"use strict";var t=e&&e.__awaiter||function(c,l,D,f){return new(D||(D=Promise))(function(h,d){function p(m){try{y(f.next(m))}catch(C){d(C)}}function v(m){try{y(f.throw(m))}catch(C){d(C)}}function y(m){m.done?h(m.value):new D(function(C){C(m.value)}).then(p,v)}y((f=f.apply(c,l||[])).next())})},r=e&&e.__generator||function(c,l){var D={label:0,sent:function(){if(d[0]&1)throw d[1];return d[1]},trys:[],ops:[]},f,h,d,p;return p={next:v(0),throw:v(1),return:v(2)},typeof Symbol=="function"&&(p[Symbol.iterator]=function(){return this}),p;function v(m){return function(C){return y([m,C])}}function y(m){if(f)throw new TypeError("Generator is already executing.");for(;D;)try{if(f=1,h&&(d=m[0]&2?h.return:m[0]?h.throw||((d=h.return)&&d.call(h),0):h.next)&&!(d=d.call(h,m[1])).done)return d;switch(h=0,d&&(m=[m[0]&2,d.value]),m[0]){case 0:case 1:d=m;break;case 4:return D.label++,{value:m[1],done:!1};case 5:D.label++,h=m[1],m=[0];continue;case 7:m=D.ops.pop(),D.trys.pop();continue;default:if(d=D.trys,!(d=d.length>0&&d[d.length-1])&&(m[0]===6||m[0]===2)){D=0;continue}if(m[0]===3&&(!d||m[1]>d[0]&&m[1]<d[3])){D.label=m[1];break}if(m[0]===6&&D.label<d[1]){D.label=d[1],d=m;break}if(d&&D.label<d[2]){D.label=d[2],D.ops.push(m);break}d[2]&&D.ops.pop(),D.trys.pop();continue}m=l.call(c,D)}catch(C){m=[6,C],h=0}finally{f=d=0}if(m[0]&5)throw m[1];return{value:m[0]?m[1]:void 0,done:!0}}},u=e&&e.__importStar||function(c){if(c&&c.__esModule)return c;var l={};if(c!=null)for(var D in c)Object.hasOwnProperty.call(c,D)&&(l[D]=c[D]);return l.default=c,l};Object.defineProperty(e,"__esModule",{value:!0});var n=u(oe("fs")),a={section:/^\s*\[(([^#;]|\\#|\\;)+)\]\s*([#;].*)?$/,param:/^\s*([\w\.\-\_]+)\s*[=:]\s*(.*?)\s*([#;].*)?$/,comment:/^\s*[#;].*$/};function i(c){return t(this,void 0,void 0,function(){return r(this,function(l){return[2,new Promise(function(D,f){n.readFile(c,"utf8",function(h,d){if(h){f(h);return}D(s(d))})})]})})}e.parse=i;function o(c){return s(n.readFileSync(c,"utf8"))}e.parseSync=o;function s(c){var l={},D=null,f=[[D,l]],h=c.split(/\r\n|\r|\n/);return h.forEach(function(d){var p;a.comment.test(d)||(a.param.test(d)?(p=d.match(a.param),l[p[1]]=p[2]):a.section.test(d)&&(p=d.match(a.section),D=p[1],l={},f.push([D,l])))}),f}e.parseString=s}}),xc=G({"node_modules/editorconfig/package.json"(e,t){t.exports={name:"editorconfig",version:"0.15.3",description:"EditorConfig File Locator and Interpreter for Node.js",keywords:["editorconfig","core"],main:"src/index.js",contributors:["Hong Xu (topbug.net)","Jed Mao (https://github.com/jedmao/)","Trey Hunner (http://treyhunner.com)"],directories:{bin:"./bin",lib:"./lib"},scripts:{clean:"rimraf dist",prebuild:"npm run clean",build:"tsc",pretest:"npm run lint && npm run build && npm run copy && cmake .",test:"ctest .","pretest:ci":"npm run pretest","test:ci":"ctest -VV --output-on-failure .",lint:"npm run eclint && npm run tslint",eclint:'eclint check --indent_size ignore "src/**"',tslint:"tslint --project tsconfig.json --exclude package.json",copy:"cpy .npmignore LICENSE README.md CHANGELOG.md dist && cpy bin/* dist/bin && cpy src/lib/fnmatch*.* dist/src/lib",prepub:"npm run lint && npm run build && npm run copy",pub:"npm publish ./dist"},repository:{type:"git",url:"git://github.com/editorconfig/editorconfig-core-js.git"},bugs:"https://github.com/editorconfig/editorconfig-core-js/issues",author:"EditorConfig Team",license:"MIT",dependencies:{commander:"^2.19.0","lru-cache":"^4.1.5",semver:"^5.6.0",sigmund:"^1.0.1"},devDependencies:{"@types/mocha":"^5.2.6","@types/node":"^10.12.29","@types/semver":"^5.5.0","cpy-cli":"^2.0.0",eclint:"^2.8.1",mocha:"^5.2.0",rimraf:"^2.6.3",should:"^13.2.3",tslint:"^5.13.1",typescript:"^3.3.3333"}}}}),jc=G({"node_modules/editorconfig/src/index.js"(e){"use strict";var t=e&&e.__awaiter||function(w,T,g,A){return new(g||(g=Promise))(function(_,k){function x(H){try{M(A.next(H))}catch(j){k(j)}}function W(H){try{M(A.throw(H))}catch(j){k(j)}}function M(H){H.done?_(H.value):new g(function(j){j(H.value)}).then(x,W)}M((A=A.apply(w,T||[])).next())})},r=e&&e.__generator||function(w,T){var g={label:0,sent:function(){if(k[0]&1)throw k[1];return k[1]},trys:[],ops:[]},A,_,k,x;return x={next:W(0),throw:W(1),return:W(2)},typeof Symbol=="function"&&(x[Symbol.iterator]=function(){return this}),x;function W(H){return function(j){return M([H,j])}}function M(H){if(A)throw new TypeError("Generator is already executing.");for(;g;)try{if(A=1,_&&(k=H[0]&2?_.return:H[0]?_.throw||((k=_.return)&&k.call(_),0):_.next)&&!(k=k.call(_,H[1])).done)return k;switch(_=0,k&&(H=[H[0]&2,k.value]),H[0]){case 0:case 1:k=H;break;case 4:return g.label++,{value:H[1],done:!1};case 5:g.label++,_=H[1],H=[0];continue;case 7:H=g.ops.pop(),g.trys.pop();continue;default:if(k=g.trys,!(k=k.length>0&&k[k.length-1])&&(H[0]===6||H[0]===2)){g=0;continue}if(H[0]===3&&(!k||H[1]>k[0]&&H[1]<k[3])){g.label=H[1];break}if(H[0]===6&&g.label<k[1]){g.label=k[1],k=H;break}if(k&&g.label<k[2]){g.label=k[2],g.ops.push(H);break}k[2]&&g.ops.pop(),g.trys.pop();continue}H=T.call(w,g)}catch(j){H=[6,j],_=0}finally{A=k=0}if(H[0]&5)throw H[1];return{value:H[0]?H[1]:void 0,done:!0}}},u=e&&e.__importStar||function(w){if(w&&w.__esModule)return w;var T={};if(w!=null)for(var g in w)Object.hasOwnProperty.call(w,g)&&(T[g]=w[g]);return T.default=w,T},n=e&&e.__importDefault||function(w){return w&&w.__esModule?w:{default:w}};Object.defineProperty(e,"__esModule",{value:!0});var a=u(oe("fs")),i=u(oe("path")),o={gte:kc()},s=n(Nc()),c=Lc();e.parseString=c.parseString;var l=n(xc()),D={end_of_line:!0,indent_style:!0,indent_size:!0,insert_final_newline:!0,trim_trailing_whitespace:!0,charset:!0};function f(w,T){var g={matchBase:!0,dot:!0,noext:!0};return T=T.replace(/\*\*/g,"{*,**/**/**}"),s.default(w,T,g)}function h(w,T){var g=[];do w=i.dirname(w),g.push(i.join(w,T.config));while(w!==T.root);return g}function d(w,T){return"indent_style"in w&&w.indent_style==="tab"&&!("indent_size"in w)&&o.gte(T,"0.10.0")&&(w.indent_size="tab"),"indent_size"in w&&!("tab_width"in w)&&w.indent_size!=="tab"&&(w.tab_width=w.indent_size),"indent_size"in w&&"tab_width"in w&&w.indent_size==="tab"&&(w.indent_size=w.tab_width),w}function p(w,T){return w===void 0&&(w={}),{config:w.config||".editorconfig",version:w.version||l.default.version,root:i.resolve(w.root||i.parse(T).root)}}function v(w,T){switch(T.indexOf("/")){case-1:T="**/"+T;break;case 0:T=T.substring(1);break;default:break}return i.join(w,T)}function y(w,T){w===void 0&&(w={}),T===void 0&&(T={});for(var g in T)if(T.hasOwnProperty(g)){var A=T[g],_=g.toLowerCase(),k=A;D[_]&&(k=A.toLowerCase());try{k=JSON.parse(A)}catch{}(typeof A>"u"||A===null)&&(k=String(A)),w[_]=k}return w}function m(w,T,g){return d(w.reverse().reduce(function(A,_){var k=i.dirname(_.name);return _.contents.forEach(function(x){var W=x[0],M=x[1];if(W){var H=v(k,W);f(T,H)&&(A=y(A,M))}}),A},{}),g.version)}function C(w){var T=[];for(var g in w)if(w.hasOwnProperty(g)){var A=w[g],_=c.parseString(A.contents);if(T.push({name:A.name,contents:_}),(_[0][1].root||"").toLowerCase()==="true")break}return T}function S(w){return t(this,void 0,void 0,function(){return r(this,function(T){return[2,Promise.all(w.map(function(g){return new Promise(function(A){a.readFile(g,"utf8",function(_,k){A({name:g,contents:_?"":k})})})}))]})})}function F(w){var T=[],g;return w.forEach(function(A){try{g=a.readFileSync(A,"utf8")}catch{g=""}T.push({name:A,contents:g})}),T}function B(w,T){T===void 0&&(T={});var g=i.resolve(w);return[g,p(T,g)]}function P(w,T,g){return g===void 0&&(g={}),t(this,void 0,void 0,function(){var A,_,k;return r(this,function(x){return A=B(w,g),_=A[0],k=A[1],[2,T.then(C).then(function(W){return m(W,_,k)})]})})}e.parseFromFiles=P;function E(w,T,g){g===void 0&&(g={});var A=B(w,g),_=A[0],k=A[1];return m(C(T),_,k)}e.parseFromFilesSync=E;function R(w,T){return T===void 0&&(T={}),t(this,void 0,void 0,function(){var g,A,_,k;return r(this,function(x){return g=B(w,T),A=g[0],_=g[1],k=h(A,_),[2,S(k).then(C).then(function(W){return m(W,A,_)})]})})}e.parse=R;function L(w,T){T===void 0&&(T={});var g=B(w,T),A=g[0],_=g[1],k=h(A,_),x=F(k);return m(C(x),A,_)}e.parseSync=L}}),$c=G({"node_modules/js-tokens/index.js"(e){Object.defineProperty(e,"__esModule",{value:!0}),e.default=/((['"])(?:(?!\2|\\).|\\(?:\r\n|[\s\S]))*(\2)?|`(?:[^`\\$]|\\[\s\S]|\$(?!\{)|\$\{(?:[^{}]|\{[^}]*\}?)*\}?)*(`)?)|(\/\/.*)|(\/\*(?:[^*]|\*(?!\/))*(\*\/)?)|(\/(?!\*)(?:\[(?:(?![\]\\]).|\\.)*\]|(?![\/\]\\]).|\\.)+\/(?:(?!\s*(?:\b|[\u0080-\uFFFF$\\'"~({]|[+\-!](?!=)|\.?\d))|[gmiyus]{1,6}\b(?![\u0080-\uFFFF$\\]|\s*(?:[+\-*%&|^<>!=?({]|\/(?![\/*])))))|(0[xX][\da-fA-F]+|0[oO][0-7]+|0[bB][01]+|(?:\d*\.\d+|\d+\.?)(?:[eE][+-]?\d+)?)|((?!\d)(?:(?!\s)[$\w\u0080-\uFFFF]|\\u[\da-fA-F]{4}|\\u\{[\da-fA-F]+\})+)|(--|\+\+|&&|\|\||=>|\.{3}|(?:[+\-\/%&|^]|\*{1,2}|<{1,2}|>{1,3}|!=?|={1,2})=?|[?~.,:;[\](){}])|(\s+)|(^$|[\s\S])/g,e.matchToToken=function(t){var r={type:"invalid",value:t[0],closed:void 0};return t[1]?(r.type="string",r.closed=!!(t[3]||t[4])):t[5]?r.type="comment":t[6]?(r.type="comment",r.closed=!!t[7]):t[8]?r.type="regex":t[9]?r.type="number":t[10]?r.type="name":t[11]?r.type="punctuator":t[12]&&(r.type="whitespace"),r}}}),Mc=G({"node_modules/@babel/helper-validator-identifier/lib/identifier.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.isIdentifierChar=c,e.isIdentifierName=l,e.isIdentifierStart=s;var t="\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C8A\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2118-\u211D\u2124\u2126\u2128\u212A-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309B-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CD\uA7D0\uA7D1\uA7D3\uA7D5-\uA7DC\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC",r="\xB7\u0300-\u036F\u0387\u0483-\u0487\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u064B-\u0669\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u06F0-\u06F9\u0711\u0730-\u074A\u07A6-\u07B0\u07C0-\u07C9\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u0897-\u089F\u08CA-\u08E1\u08E3-\u0903\u093A-\u093C\u093E-\u094F\u0951-\u0957\u0962\u0963\u0966-\u096F\u0981-\u0983\u09BC\u09BE-\u09C4\u09C7\u09C8\u09CB-\u09CD\u09D7\u09E2\u09E3\u09E6-\u09EF\u09FE\u0A01-\u0A03\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A66-\u0A71\u0A75\u0A81-\u0A83\u0ABC\u0ABE-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AE2\u0AE3\u0AE6-\u0AEF\u0AFA-\u0AFF\u0B01-\u0B03\u0B3C\u0B3E-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B55-\u0B57\u0B62\u0B63\u0B66-\u0B6F\u0B82\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD7\u0BE6-\u0BEF\u0C00-\u0C04\u0C3C\u0C3E-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C66-\u0C6F\u0C81-\u0C83\u0CBC\u0CBE-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CE2\u0CE3\u0CE6-\u0CEF\u0CF3\u0D00-\u0D03\u0D3B\u0D3C\u0D3E-\u0D44\u0D46-\u0D48\u0D4A-\u0D4D\u0D57\u0D62\u0D63\u0D66-\u0D6F\u0D81-\u0D83\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2\u0DF3\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0E50-\u0E59\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECE\u0ED0-\u0ED9\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E\u0F3F\u0F71-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102B-\u103E\u1040-\u1049\u1056-\u1059\u105E-\u1060\u1062-\u1064\u1067-\u106D\u1071-\u1074\u1082-\u108D\u108F-\u109D\u135D-\u135F\u1369-\u1371\u1712-\u1715\u1732-\u1734\u1752\u1753\u1772\u1773\u17B4-\u17D3\u17DD\u17E0-\u17E9\u180B-\u180D\u180F-\u1819\u18A9\u1920-\u192B\u1930-\u193B\u1946-\u194F\u19D0-\u19DA\u1A17-\u1A1B\u1A55-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AB0-\u1ABD\u1ABF-\u1ACE\u1B00-\u1B04\u1B34-\u1B44\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1B82\u1BA1-\u1BAD\u1BB0-\u1BB9\u1BE6-\u1BF3\u1C24-\u1C37\u1C40-\u1C49\u1C50-\u1C59\u1CD0-\u1CD2\u1CD4-\u1CE8\u1CED\u1CF4\u1CF7-\u1CF9\u1DC0-\u1DFF\u200C\u200D\u203F\u2040\u2054\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302F\u3099\u309A\u30FB\uA620-\uA629\uA66F\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA823-\uA827\uA82C\uA880\uA881\uA8B4-\uA8C5\uA8D0-\uA8D9\uA8E0-\uA8F1\uA8FF-\uA909\uA926-\uA92D\uA947-\uA953\uA980-\uA983\uA9B3-\uA9C0\uA9D0-\uA9D9\uA9E5\uA9F0-\uA9F9\uAA29-\uAA36\uAA43\uAA4C\uAA4D\uAA50-\uAA59\uAA7B-\uAA7D\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEB-\uAAEF\uAAF5\uAAF6\uABE3-\uABEA\uABEC\uABED\uABF0-\uABF9\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F\uFE33\uFE34\uFE4D-\uFE4F\uFF10-\uFF19\uFF3F\uFF65",u=new RegExp("["+t+"]"),n=new RegExp("["+t+r+"]");t=r=null;var a=[0,11,2,25,2,18,2,1,2,14,3,13,35,122,70,52,268,28,4,48,48,31,14,29,6,37,11,29,3,35,5,7,2,4,43,157,19,35,5,35,5,39,9,51,13,10,2,14,2,6,2,1,2,10,2,14,2,6,2,1,4,51,13,310,10,21,11,7,25,5,2,41,2,8,70,5,3,0,2,43,2,1,4,0,3,22,11,22,10,30,66,18,2,1,11,21,11,25,71,55,7,1,65,0,16,3,2,2,2,28,43,28,4,28,36,7,2,27,28,53,11,21,11,18,14,17,111,72,56,50,14,50,14,35,39,27,10,22,251,41,7,1,17,2,60,28,11,0,9,21,43,17,47,20,28,22,13,52,58,1,3,0,14,44,33,24,27,35,30,0,3,0,9,34,4,0,13,47,15,3,22,0,2,0,36,17,2,24,20,1,64,6,2,0,2,3,2,14,2,9,8,46,39,7,3,1,3,21,2,6,2,1,2,4,4,0,19,0,13,4,31,9,2,0,3,0,2,37,2,0,26,0,2,0,45,52,19,3,21,2,31,47,21,1,2,0,185,46,42,3,37,47,21,0,60,42,14,0,72,26,38,6,186,43,117,63,32,7,3,0,3,7,2,1,2,23,16,0,2,0,95,7,3,38,17,0,2,0,29,0,11,39,8,0,22,0,12,45,20,0,19,72,200,32,32,8,2,36,18,0,50,29,113,6,2,1,2,37,22,0,26,5,2,1,2,31,15,0,328,18,16,0,2,12,2,33,125,0,80,921,103,110,18,195,2637,96,16,1071,18,5,26,3994,6,582,6842,29,1763,568,8,30,18,78,18,29,19,47,17,3,32,20,6,18,433,44,212,63,129,74,6,0,67,12,65,1,2,0,29,6135,9,1237,42,9,8936,3,2,6,2,1,2,290,16,0,30,2,3,0,15,3,9,395,2309,106,6,12,4,8,8,9,5991,84,2,70,2,1,3,0,3,1,3,3,2,11,2,0,2,6,2,64,2,3,3,7,2,6,2,27,2,3,2,4,2,0,4,6,2,339,3,24,2,24,2,30,2,24,2,30,2,24,2,30,2,24,2,30,2,24,2,7,1845,30,7,5,262,61,147,44,11,6,17,0,322,29,19,43,485,27,229,29,3,0,496,6,2,3,2,1,2,14,2,196,60,67,8,0,1205,3,2,26,2,1,2,0,3,0,2,9,2,3,2,0,2,0,7,0,5,0,2,0,2,0,2,2,2,1,2,0,3,0,2,0,2,0,2,0,2,0,2,1,2,0,3,3,2,6,2,3,2,3,2,0,2,9,2,16,6,2,2,4,2,16,4421,42719,33,4153,7,221,3,5761,15,7472,16,621,2467,541,1507,4938,6,4191],i=[509,0,227,0,150,4,294,9,1368,2,2,1,6,3,41,2,5,0,166,1,574,3,9,9,7,9,32,4,318,1,80,3,71,10,50,3,123,2,54,14,32,10,3,1,11,3,46,10,8,0,46,9,7,2,37,13,2,9,6,1,45,0,13,2,49,13,9,3,2,11,83,11,7,0,3,0,158,11,6,9,7,3,56,1,2,6,3,1,3,2,10,0,11,1,3,6,4,4,68,8,2,0,3,0,2,3,2,4,2,0,15,1,83,17,10,9,5,0,82,19,13,9,214,6,3,8,28,1,83,16,16,9,82,12,9,9,7,19,58,14,5,9,243,14,166,9,71,5,2,1,3,3,2,0,2,1,13,9,120,6,3,6,4,0,29,9,41,6,2,3,9,0,10,10,47,15,343,9,54,7,2,7,17,9,57,21,2,13,123,5,4,0,2,1,2,6,2,0,9,9,49,4,2,1,2,4,9,9,330,3,10,1,2,0,49,6,4,4,14,10,5350,0,7,14,11465,27,2343,9,87,9,39,4,60,6,26,9,535,9,470,0,2,54,8,3,82,0,12,1,19628,1,4178,9,519,45,3,22,543,4,4,5,9,7,3,6,31,3,149,2,1418,49,513,54,5,49,9,0,15,0,23,4,2,14,1361,6,2,16,3,6,2,1,2,4,101,0,161,6,10,9,357,0,62,13,499,13,245,1,2,9,726,6,110,6,6,9,4759,9,787719,239];function o(D,f){let h=65536;for(let d=0,p=f.length;d<p;d+=2){if(h+=f[d],h>D)return!1;if(h+=f[d+1],h>=D)return!0}return!1}function s(D){return D<65?D===36:D<=90?!0:D<97?D===95:D<=122?!0:D<=65535?D>=170&&u.test(String.fromCharCode(D)):o(D,a)}function c(D){return D<48?D===36:D<58?!0:D<65?!1:D<=90?!0:D<97?D===95:D<=122?!0:D<=65535?D>=170&&n.test(String.fromCharCode(D)):o(D,a)||o(D,i)}function l(D){let f=!0;for(let h=0;h<D.length;h++){let d=D.charCodeAt(h);if((d&64512)===55296&&h+1<D.length){let p=D.charCodeAt(++h);(p&64512)===56320&&(d=65536+((d&1023)<<10)+(p&1023))}if(f){if(f=!1,!s(d))return!1}else if(!c(d))return!1}return!f}}}),Hc=G({"node_modules/@babel/helper-validator-identifier/lib/keyword.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.isKeyword=c,e.isReservedWord=a,e.isStrictBindOnlyReservedWord=o,e.isStrictBindReservedWord=s,e.isStrictReservedWord=i;var t={keyword:["break","case","catch","continue","debugger","default","do","else","finally","for","function","if","return","switch","throw","try","var","const","while","with","new","this","super","class","extends","export","import","null","true","false","in","instanceof","typeof","void","delete"],strict:["implements","interface","let","package","private","protected","public","static","yield"],strictBind:["eval","arguments"]},r=new Set(t.keyword),u=new Set(t.strict),n=new Set(t.strictBind);function a(l,D){return D&&l==="await"||l==="enum"}function i(l,D){return a(l,D)||u.has(l)}function o(l){return n.has(l)}function s(l,D){return i(l,D)||o(l)}function c(l){return r.has(l)}}}),Wc=G({"node_modules/@babel/helper-validator-identifier/lib/index.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"isIdentifierChar",{enumerable:!0,get:function(){return t.isIdentifierChar}}),Object.defineProperty(e,"isIdentifierName",{enumerable:!0,get:function(){return t.isIdentifierName}}),Object.defineProperty(e,"isIdentifierStart",{enumerable:!0,get:function(){return t.isIdentifierStart}}),Object.defineProperty(e,"isKeyword",{enumerable:!0,get:function(){return r.isKeyword}}),Object.defineProperty(e,"isReservedWord",{enumerable:!0,get:function(){return r.isReservedWord}}),Object.defineProperty(e,"isStrictBindOnlyReservedWord",{enumerable:!0,get:function(){return r.isStrictBindOnlyReservedWord}}),Object.defineProperty(e,"isStrictBindReservedWord",{enumerable:!0,get:function(){return r.isStrictBindReservedWord}}),Object.defineProperty(e,"isStrictReservedWord",{enumerable:!0,get:function(){return r.isStrictReservedWord}});var t=Mc(),r=Hc()}}),Oi=G({"node_modules/@babel/code-frame/lib/index.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=vr(),r=$c(),u=Wc();function n(){return typeof process=="object"&&(process.env.FORCE_COLOR==="0"||process.env.FORCE_COLOR==="false")?!1:t.isColorSupported}var a=(S,F)=>B=>S(F(B));function i(S){return{keyword:S.cyan,capitalized:S.yellow,jsxIdentifier:S.yellow,punctuator:S.yellow,number:S.magenta,string:S.green,regex:S.magenta,comment:S.gray,invalid:a(a(S.white,S.bgRed),S.bold),gutter:S.gray,marker:a(S.red,S.bold),message:a(S.red,S.bold),reset:S.reset}}var o=i(t.createColors(!0)),s=i(t.createColors(!1));function c(S){return S?o:s}var l=new Set(["as","async","from","get","of","set"]),D=/\r\n|[\n\r\u2028\u2029]/,f=/^[()[\]{}]$/,h;{let S=/^[a-z][\w-]*$/i,F=function(B,P,E){if(B.type==="name"){if(u.isKeyword(B.value)||u.isStrictReservedWord(B.value,!0)||l.has(B.value))return"keyword";if(S.test(B.value)&&(E[P-1]==="<"||E.slice(P-2,P)==="</"))return"jsxIdentifier";if(B.value[0]!==B.value[0].toLowerCase())return"capitalized"}return B.type==="punctuator"&&f.test(B.value)?"bracket":B.type==="invalid"&&(B.value==="@"||B.value==="#")?"punctuator":B.type};h=function*(B){let P;for(;P=r.default.exec(B);){let E=r.matchToToken(P);yield{type:F(E,P.index,B),value:E.value}}}}function d(S){if(S==="")return"";let F=c(!0),B="";for(let{type:P,value:E}of h(S))P in F?B+=E.split(D).map(R=>F[P](R)).join(`
603
- `):B+=E;return B}var p=!1,v=/\r\n|[\n\r\u2028\u2029]/;function y(S,F,B){let P=Object.assign({column:0,line:-1},S.start),E=Object.assign({},P,S.end),{linesAbove:R=2,linesBelow:L=3}=B||{},w=P.line,T=P.column,g=E.line,A=E.column,_=Math.max(w-(R+1),0),k=Math.min(F.length,g+L);w===-1&&(_=0),g===-1&&(k=F.length);let x=g-w,W={};if(x)for(let M=0;M<=x;M++){let H=M+w;if(!T)W[H]=!0;else if(M===0){let j=F[H-1].length;W[H]=[T,j-T+1]}else if(M===x)W[H]=[0,A];else{let j=F[H-M].length;W[H]=[0,j]}}else T===A?T?W[w]=[T,0]:W[w]=!0:W[w]=[T,A-T];return{start:_,end:k,markerLines:W}}function m(S,F,B={}){let P=B.forceColor||n()&&B.highlightCode,E=c(P),R=S.split(v),{start:L,end:w,markerLines:T}=y(F,R,B),g=F.start&&typeof F.start.column=="number",A=String(w).length,k=(P?d(S):S).split(v,w).slice(L,w).map((x,W)=>{let M=L+1+W,j=` ${` ${M}`.slice(-A)} |`,q=T[M],I=!T[M+1];if(q){let J="";if(Array.isArray(q)){let X=x.slice(0,Math.max(q[0]-1,0)).replace(/[^\t]/g," "),N=q[1]||1;J=[`
604
- `,E.gutter(j.replace(/\d/g," "))," ",X,E.marker("^").repeat(N)].join(""),I&&B.message&&(J+=" "+E.message(B.message))}return[E.marker(">"),E.gutter(j),x.length>0?` ${x}`:"",J].join("")}else return` ${E.gutter(j)}${x.length>0?` ${x}`:""}`}).join(`
605
- `);return B.message&&!g&&(k=`${" ".repeat(A+1)}${B.message}
606
- ${k}`),P?E.reset(k):k}function C(S,F,B,P={}){if(!p){p=!0;let R="Passing lineNumber and colNumber is deprecated to @babel/code-frame. Please use `codeFrameColumns`.";if(process.emitWarning)process.emitWarning(R,"DeprecationWarning");else{let L=new Error(R);L.name="DeprecationWarning",console.warn(new Error(R))}}return B=Math.max(B,0),m(S,{start:{column:B,line:F}},P)}e.codeFrameColumns=m,e.default=C,e.highlight=d}}),Gc=G({"node_modules/n-readlines/readlines.js"(e,t){"use strict";var r=oe("fs"),u=class{constructor(n,a){a=a||{},a.readChunk||(a.readChunk=1024),a.newLineCharacter?a.newLineCharacter=a.newLineCharacter.charCodeAt(0):a.newLineCharacter=10,typeof n=="number"?this.fd=n:this.fd=r.openSync(n,"r"),this.options=a,this.newLineCharacter=a.newLineCharacter,this.reset()}_searchInBuffer(n,a){let i=-1;for(let o=0;o<=n.length;o++)if(n[o]===a){i=o;break}return i}reset(){this.eofReached=!1,this.linesCache=[],this.fdPosition=0}close(){r.closeSync(this.fd),this.fd=null}_extractLines(n){let a,i=[],o=0,s=0;for(;;){let l=n[o++];if(l===this.newLineCharacter)a=n.slice(s,o),i.push(a),s=o;else if(l===void 0)break}let c=n.slice(s,o);return c.length&&i.push(c),i}_readChunk(n){let a=0,i,o=[];do{let c=Buffer.alloc(this.options.readChunk);i=r.readSync(this.fd,c,0,this.options.readChunk,this.fdPosition),a=a+i,this.fdPosition=this.fdPosition+i,o.push(c)}while(i&&this._searchInBuffer(o[o.length-1],this.options.newLineCharacter)===-1);let s=Buffer.concat(o);return i<this.options.readChunk&&(this.eofReached=!0,s=s.slice(0,a)),a&&(this.linesCache=this._extractLines(s),n&&(this.linesCache[0]=Buffer.concat([n,this.linesCache[0]]))),a}next(){if(!this.fd)return!1;let n=!1;if(this.eofReached&&this.linesCache.length===0)return n;let a;return this.linesCache.length||(a=this._readChunk()),this.linesCache.length&&(n=this.linesCache.shift(),n[n.length-1]!==this.newLineCharacter&&(a=this._readChunk(n),a&&(n=this.linesCache.shift()))),this.eofReached&&this.linesCache.length===0&&this.close(),n&&n[n.length-1]===this.newLineCharacter&&(n=n.slice(0,n.length-1)),n}};t.exports=u}}),Uc=G({"node_modules/ignore/index.js"(e,t){function r(N){return Array.isArray(N)?N:[N]}var u=void 0,n="",a=" ",i="\\",o=/^\s+$/,s=/(?:[^\\]|^)\\$/,c=/^\\!/,l=/^\\#/,D=/\r?\n/g,f=/^\.{0,2}\/|^\.{1,2}$/,h=/\/$/,d="/",p="node-ignore";typeof Symbol<"u"&&(p=Symbol.for("node-ignore"));var v=p,y=(N,b,O)=>(Object.defineProperty(N,b,{value:O}),O),m=/([0-z])-([0-z])/g,C=()=>!1,S=N=>N.replace(m,(b,O,U)=>O.charCodeAt(0)<=U.charCodeAt(0)?b:n),F=N=>{let{length:b}=N;return N.slice(0,b-b%2)},B=[[/^\uFEFF/,()=>n],[/((?:\\\\)*?)(\\?\s+)$/,(N,b,O)=>b+(O.indexOf("\\")===0?a:n)],[/(\\+?)\s/g,(N,b)=>{let{length:O}=b;return b.slice(0,O-O%2)+a}],[/[\\$.|*+(){^]/g,N=>`\\${N}`],[/(?!\\)\?/g,()=>"[^/]"],[/^\//,()=>"^"],[/\//g,()=>"\\/"],[/^\^*\\\*\\\*\\\//,()=>"^(?:.*\\/)?"],[/^(?=[^^])/,function(){return/\/(?!$)/.test(this)?"^":"(?:^|\\/)"}],[/\\\/\\\*\\\*(?=\\\/|$)/g,(N,b,O)=>b+6<O.length?"(?:\\/[^\\/]+)*":"\\/.+"],[/(^|[^\\]+)(\\\*)+(?=.+)/g,(N,b,O)=>{let U=O.replace(/\\\*/g,"[^\\/]*");return b+U}],[/\\\\\\(?=[$.|*+(){^])/g,()=>i],[/\\\\/g,()=>i],[/(\\)?\[([^\]/]*?)(\\*)($|\])/g,(N,b,O,U,K)=>b===i?`\\[${O}${F(U)}${K}`:K==="]"&&U.length%2===0?`[${S(O)}${U}]`:"[]"],[/(?:[^*])$/,N=>/\/$/.test(N)?`${N}$`:`${N}(?=$|\\/$)`]],P=/(^|\\\/)?\\\*$/,E="regex",R="checkRegex",L="_",w={[E](N,b){return`${b?`${b}[^/]+`:"[^/]*"}(?=$|\\/$)`},[R](N,b){return`${b?`${b}[^/]*`:"[^/]*"}(?=$|\\/$)`}},T=N=>B.reduce((b,[O,U])=>b.replace(O,U.bind(N)),N),g=N=>typeof N=="string",A=N=>N&&g(N)&&!o.test(N)&&!s.test(N)&&N.indexOf("#")!==0,_=N=>N.split(D).filter(Boolean),k=class{constructor(N,b,O,U,K,le){this.pattern=N,this.mark=b,this.negative=K,y(this,"body",O),y(this,"ignoreCase",U),y(this,"regexPrefix",le)}get regex(){let N=L+E;return this[N]?this[N]:this._make(E,N)}get checkRegex(){let N=L+R;return this[N]?this[N]:this._make(R,N)}_make(N,b){let O=this.regexPrefix.replace(P,w[N]),U=this.ignoreCase?new RegExp(O,"i"):new RegExp(O);return y(this,b,U)}},x=({pattern:N,mark:b},O)=>{let U=!1,K=N;K.indexOf("!")===0&&(U=!0,K=K.substr(1)),K=K.replace(c,"!").replace(l,"#");let le=T(K);return new k(N,b,K,O,U,le)},W=class{constructor(N){this._ignoreCase=N,this._rules=[]}_add(N){if(N&&N[v]){this._rules=this._rules.concat(N._rules._rules),this._added=!0;return}if(g(N)&&(N={pattern:N}),A(N.pattern)){let b=x(N,this._ignoreCase);this._added=!0,this._rules.push(b)}}add(N){return this._added=!1,r(g(N)?_(N):N).forEach(this._add,this),this._added}test(N,b,O){let U=!1,K=!1,le;this._rules.forEach(ae=>{let{negative:ne}=ae;K===ne&&U!==K||ne&&!U&&!K&&!b||!ae[O].test(N)||(U=!ne,K=ne,le=ne?u:ae)});let ce={ignored:U,unignored:K};return le&&(ce.rule=le),ce}},M=(N,b)=>{throw new b(N)},H=(N,b,O)=>g(N)?N?H.isNotRelative(N)?O(`path should be a \`path.relative()\`d string, but got "${b}"`,RangeError):!0:O("path must not be empty",TypeError):O(`path must be a string, but got \`${b}\``,TypeError),j=N=>f.test(N);H.isNotRelative=j,H.convert=N=>N;var q=class{constructor({ignorecase:N=!0,ignoreCase:b=N,allowRelativePaths:O=!1}={}){y(this,v,!0),this._rules=new W(b),this._strictPathCheck=!O,this._initCache()}_initCache(){this._ignoreCache=Object.create(null),this._testCache=Object.create(null)}add(N){return this._rules.add(N)&&this._initCache(),this}addPattern(N){return this.add(N)}_test(N,b,O,U){let K=N&&H.convert(N);return H(K,N,this._strictPathCheck?M:C),this._t(K,b,O,U)}checkIgnore(N){if(!h.test(N))return this.test(N);let b=N.split(d).filter(Boolean);if(b.pop(),b.length){let O=this._t(b.join(d)+d,this._testCache,!0,b);if(O.ignored)return O}return this._rules.test(N,!1,R)}_t(N,b,O,U){if(N in b)return b[N];if(U||(U=N.split(d).filter(Boolean)),U.pop(),!U.length)return b[N]=this._rules.test(N,O,E);let K=this._t(U.join(d)+d,b,O,U);return b[N]=K.ignored?K:this._rules.test(N,O,E)}ignores(N){return this._test(N,this._ignoreCache,!1).ignored}createFilter(){return N=>!this.ignores(N)}filter(N){return r(N).filter(this.createFilter())}test(N){return this._test(N,this._testCache,!0)}},I=N=>new q(N),J=N=>H(N&&H.convert(N),N,C),X=()=>{let N=O=>/^\\\\\?\\/.test(O)||/["<>|\u0000-\u001F]+/u.test(O)?O:O.replace(/\\/g,"/");H.convert=N;let b=/^[a-z]:\//i;H.isNotRelative=O=>b.test(O)||j(O)};typeof process<"u"&&process.platform==="win32"&&X(),t.exports=I,I.default=I,t.exports.isPathValid=J,y(t.exports,Symbol.for("setupWindows"),X)}}),qc={};Cr(qc,{__debug:()=>RF,__internal:()=>kF,check:()=>bF,clearConfigCache:()=>BF,doc:()=>Ru,format:()=>cu,formatWithCursor:()=>Qo,getFileInfo:()=>Qp,getSupportInfo:()=>wF,resolveConfig:()=>Co,resolveConfigFile:()=>sd,util:()=>Jo,version:()=>Zp});var Ti=class{diff(e,t,r={}){let u;typeof r=="function"?(u=r,r={}):"callback"in r&&(u=r.callback);let n=this.castInput(e,r),a=this.castInput(t,r),i=this.removeEmpty(this.tokenize(n,r)),o=this.removeEmpty(this.tokenize(a,r));return this.diffWithOptionsObj(i,o,r,u)}diffWithOptionsObj(e,t,r,u){var n;let a=y=>{if(y=this.postProcess(y,r),u){setTimeout(function(){u(y)},0);return}else return y},i=t.length,o=e.length,s=1,c=i+o;r.maxEditLength!=null&&(c=Math.min(c,r.maxEditLength));let l=(n=r.timeout)!==null&&n!==void 0?n:1/0,D=Date.now()+l,f=[{oldPos:-1,lastComponent:void 0}],h=this.extractCommon(f[0],t,e,0,r);if(f[0].oldPos+1>=o&&h+1>=i)return a(this.buildValues(f[0].lastComponent,t,e));let d=-1/0,p=1/0,v=()=>{for(let y=Math.max(d,-s);y<=Math.min(p,s);y+=2){let m,C=f[y-1],S=f[y+1];C&&(f[y-1]=void 0);let F=!1;if(S){let P=S.oldPos-y;F=S&&0<=P&&P<i}let B=C&&C.oldPos+1<o;if(!F&&!B){f[y]=void 0;continue}if(!B||F&&C.oldPos<S.oldPos?m=this.addToPath(S,!0,!1,0,r):m=this.addToPath(C,!1,!0,1,r),h=this.extractCommon(m,t,e,y,r),m.oldPos+1>=o&&h+1>=i)return a(this.buildValues(m.lastComponent,t,e))||!0;f[y]=m,m.oldPos+1>=o&&(p=Math.min(p,y-1)),h+1>=i&&(d=Math.max(d,y+1))}s++};if(u)(function y(){setTimeout(function(){if(s>c||Date.now()>D)return u(void 0);v()||y()},0)})();else for(;s<=c&&Date.now()<=D;){let y=v();if(y)return y}}addToPath(e,t,r,u,n){let a=e.lastComponent;return a&&!n.oneChangePerToken&&a.added===t&&a.removed===r?{oldPos:e.oldPos+u,lastComponent:{count:a.count+1,added:t,removed:r,previousComponent:a.previousComponent}}:{oldPos:e.oldPos+u,lastComponent:{count:1,added:t,removed:r,previousComponent:a}}}extractCommon(e,t,r,u,n){let a=t.length,i=r.length,o=e.oldPos,s=o-u,c=0;for(;s+1<a&&o+1<i&&this.equals(r[o+1],t[s+1],n);)s++,o++,c++,n.oneChangePerToken&&(e.lastComponent={count:1,previousComponent:e.lastComponent,added:!1,removed:!1});return c&&!n.oneChangePerToken&&(e.lastComponent={count:c,previousComponent:e.lastComponent,added:!1,removed:!1}),e.oldPos=o,s}equals(e,t,r){return r.comparator?r.comparator(e,t):e===t||!!r.ignoreCase&&e.toLowerCase()===t.toLowerCase()}removeEmpty(e){let t=[];for(let r=0;r<e.length;r++)e[r]&&t.push(e[r]);return t}castInput(e,t){return e}tokenize(e,t){return Array.from(e)}join(e){return e.join("")}postProcess(e,t){return e}get useLongestToken(){return!1}buildValues(e,t,r){let u=[],n;for(;e;)u.push(e),n=e.previousComponent,delete e.previousComponent,e=n;u.reverse();let a=u.length,i=0,o=0,s=0;for(;i<a;i++){let c=u[i];if(c.removed)c.value=this.join(r.slice(s,s+c.count)),s+=c.count;else{if(!c.added&&this.useLongestToken){let l=t.slice(o,o+c.count);l=l.map(function(D,f){let h=r[s+f];return h.length>D.length?h:D}),c.value=this.join(l)}else c.value=this.join(t.slice(o,o+c.count));o+=c.count,c.added||(s+=c.count)}}return u}},Vc=class extends Ti{constructor(){super(...arguments),this.tokenize=zc}equals(e,t,r){return r.ignoreWhitespace?((!r.newlineIsToken||!e.includes(`
614
+ `),N+=W+" => "+M}),(k||w)&&(N+=`
615
+ `),N+="}",N},y.prototype.set=function(m,R,N){N=N||this[D];var w=N?Date.now():0,O=this[c](R,m);if(this[h].has(m)){if(O>this[o])return B(this,this[h].get(m)),!1;var F=this[h].get(m),A=F.value;return this[f]&&(this[d]||this[f](m,A.value)),A.now=w,A.maxAge=N,A.value=R,this[s]+=O-A.length,A.length=O,this.get(m),g(this),!0}var _=new x(m,R,O,w,N);return _.length>this[o]?(this[f]&&this[f](m,R),!1):(this[s]+=_.length,this[p].unshift(_),this[h].set(m,this[p].head),g(this),!0)},y.prototype.has=function(m){if(!this[h].has(m))return!1;var R=this[h].get(m).value;return!S(this,R)},y.prototype.get=function(m){return C(this,m,!0)},y.prototype.peek=function(m){return C(this,m,!1)},y.prototype.pop=function(){var m=this[p].tail;return m?(B(this,m),m.value):null},y.prototype.del=function(m){B(this,this[h].get(m))},y.prototype.load=function(m){this.reset();for(var R=Date.now(),N=m.length-1;N>=0;N--){var w=m[N],O=w.e||0;if(O===0)this.set(w.k,w.v);else{var F=O-R;F>0&&this.set(w.k,w.v,F)}}},y.prototype.prune=function(){var m=this;this[h].forEach(function(R,N){C(m,N,!1)})};function C(m,R,N){var w=m[h].get(R);if(w){var O=w.value;S(m,O)?(B(m,w),m[l]||(O=void 0)):N&&m[p].unshiftNode(w),O&&(O=O.value)}return O}function S(m,R){if(!R||!R.maxAge&&!m[D])return!1;var N=!1,w=Date.now()-R.now;return R.maxAge?N=w>R.maxAge:N=m[D]&&w>m[D],N}function g(m){if(m[s]>m[o])for(var R=m[p].tail;m[s]>m[o]&&R!==null;){var N=R.prev;B(m,R),R=N}}function B(m,R){if(R){var N=R.value;m[f]&&m[f](N.key,N.value),m[s]-=N.length,m[h].delete(N.key),m[p].removeNode(R)}}function x(m,R,N,w,O){this.key=m,this.value=R,this.length=N,this.now=w,this.maxAge=O||0}}}),Nc=G({"node_modules/sigmund/sigmund.js"(e,t){t.exports=r;function r(u,n){n=n||10;var a=[],i="",o=RegExp;function s(c,l){if(!(l>n)&&!(typeof c=="function"||typeof c>"u")){if(typeof c!="object"||!c||c instanceof o){i+=c;return}a.indexOf(c)!==-1||l===n||(a.push(c),i+="{",Object.keys(c).forEach(function(D,f,d){if(D.charAt(0)!=="_"){var p=typeof c[D];p==="function"||p==="undefined"||(i+=D,s(c[D],l+1))}}))}}return s(u,0),i}}}),Lc=G({"node_modules/editorconfig/src/lib/fnmatch.js"(e,t){var r=typeof process=="object"?process.platform:"win32";t?t.exports=E:e.minimatch=E,E.Minimatch=C;var u=Ic(),n=E.cache=new u({max:100}),a=E.GLOBSTAR=C.GLOBSTAR={},i=Nc(),o=oe("path"),s="[^/]",c=s+"*?",l="(?:(?!(?:\\/|^)(?:\\.{1,2})($|\\/)).)*?",D="(?:(?!(?:\\/|^)\\.).)*?",f=d("().*{}+?[]^$\\!");function d(F){return F.split("").reduce(function(A,_){return A[_]=!0,A},{})}var p=/\/+/;E.monkeyPatch=h;function h(){var F=Object.getOwnPropertyDescriptor(String.prototype,"match"),A=F.value;F.value=function(_){return _ instanceof C?_.match(this):A.call(this,_)},Object.defineProperty(String.prototype,F)}E.filter=v;function v(F,A){return A=A||{},function(_,k,L){return E(_,F,A)}}function y(F,A){F=F||{},A=A||{};var _={};return Object.keys(A).forEach(function(k){_[k]=A[k]}),Object.keys(F).forEach(function(k){_[k]=F[k]}),_}E.defaults=function(F){if(!F||!Object.keys(F).length)return E;var A=E,_=function(L,W,M){return A.minimatch(L,W,y(F,M))};return _.Minimatch=function(L,W){return new A.Minimatch(L,y(F,W))},_},C.defaults=function(F){return!F||!Object.keys(F).length?C:E.defaults(F).Minimatch};function E(F,A,_){if(typeof A!="string")throw new TypeError("glob pattern string required");return _||(_={}),!_.nocomment&&A.charAt(0)==="#"?!1:A.trim()===""?F==="":new C(A,_).match(F)}function C(F,A){if(!(this instanceof C))return new C(F,A,n);if(typeof F!="string")throw new TypeError("glob pattern string required");A||(A={}),r==="win32"&&(F=F.split("\\").join("/"));var _=F+`
616
+ `+i(A),k=E.cache.get(_);if(k)return k;E.cache.set(_,this),this.options=A,this.set=[],this.pattern=F,this.regexp=null,this.negate=!1,this.comment=!1,this.empty=!1,this.make()}C.prototype.make=S;function S(){if(!this._made){var F=this.pattern,A=this.options;if(!A.nocomment&&F.charAt(0)==="#"){this.comment=!0;return}if(!F){this.empty=!0;return}this.parseNegate();var _=this.globSet=this.braceExpand();A.debug&&console.error(this.pattern,_),_=this.globParts=_.map(function(k){return k.split(p)}),A.debug&&console.error(this.pattern,_),_=_.map(function(k,L,W){return k.map(this.parse,this)},this),A.debug&&console.error(this.pattern,_),_=_.filter(function(k){return k.indexOf(!1)===-1}),A.debug&&console.error(this.pattern,_),this.set=_}}C.prototype.parseNegate=g;function g(){var F=this.pattern,A=!1,_=this.options,k=0;if(!_.nonegate){for(var L=0,W=F.length;L<W&&F.charAt(L)==="!";L++)A=!A,k++;k&&(this.pattern=F.substr(k)),this.negate=A}}E.braceExpand=function(F,A){return new C(F,A).braceExpand()},C.prototype.braceExpand=B;function B(F,A){if(A=A||this.options,F=typeof F>"u"?this.pattern:F,typeof F>"u")throw new Error("undefined pattern");if(A.nobrace||!F.match(/\{.*\}/))return[F];var K=!1;if(F.charAt(0)!=="{"){for(var _=null,X=0,k=F.length;X<k;X++){var L=F.charAt(X);if(L==="\\")K=!K;else if(L==="{"&&!K){_=F.substr(0,X);break}}if(_===null)return[F];var W=B(F.substr(X),A);return W.map(function(Ae){return _+Ae})}var M=F.match(/^\{(-?[0-9]+)\.\.(-?[0-9]+)\}/);if(M){for(var ce=B(F.substr(M[0].length),A),H=+M[1],j=+M[2],q=H>j?-1:1,b=[],X=H;X!=j+q;X+=q)for(var T=0,J=ce.length;T<J;T++)b.push(X+ce[T]);return b}var X=1,I=1,b=[],P="",U=!1,K=!1;function le(){b.push(P),P=""}e:for(X=1,k=F.length;X<k;X++){var L=F.charAt(X);if(K)K=!1,P+="\\"+L;else switch(L){case"\\":K=!0;continue;case"{":I++,P+="{";continue;case"}":if(I--,I===0){le(),X++;break e}else{P+=L;continue}case",":I===1?le():P+=L;continue;default:P+=L;continue}}if(I!==0)return B("\\"+F,A);var ce=B(F.substr(X),A),ae=b.length===1;b=b.map(function(Ae){return B(Ae,A)}),b=b.reduce(function(Ae,_e){return Ae.concat(_e)}),ae&&(b=b.map(function(Ae){return"{"+Ae+"}"}));for(var ne=[],X=0,k=b.length;X<k;X++)for(var T=0,J=ce.length;T<J;T++)ne.push(b[X]+ce[T]);return ne}C.prototype.parse=m;var x={};function m(F,A){var _=this.options;if(!_.noglobstar&&F==="**")return a;if(F==="")return"";var k="",L=!!_.nocase,W=!1,M=[],H,j,q=!1,T=-1,J=-1,X=F.charAt(0)==="."?"":_.dot?"(?!(?:^|\\/)\\.{1,2}(?:$|\\/))":"(?!\\.)";function I(){if(j){switch(j){case"*":k+=c,L=!0;break;case"?":k+=s,L=!0;break;default:k+="\\"+j;break}j=!1}}for(var b=0,P=F.length,U;b<P&&(U=F.charAt(b));b++){if(_.debug&&console.error("%s %s %s %j",F,b,k,U),W&&f[U]){k+="\\"+U,W=!1;continue}switch(U){case"/":return!1;case"\\":I(),W=!0;continue;case"?":case"*":case"+":case"@":case"!":if(_.debug&&console.error("%s %s %s %j <-- stateChar",F,b,k,U),q){U==="!"&&b===J+1&&(U="^"),k+=U;continue}I(),j=U,_.noext&&I();continue;case"(":if(q){k+="(";continue}if(!j){k+="\\(";continue}H=j,M.push({type:H,start:b-1,reStart:k.length}),k+=j==="!"?"(?:(?!":"(?:",j=!1;continue;case")":if(q||!M.length){k+="\\)";continue}switch(L=!0,k+=")",H=M.pop().type,H){case"!":k+="[^/]*?)";break;case"?":case"+":case"*":k+=H;case"@":break}continue;case"|":if(q||!M.length||W){k+="\\|",W=!1;continue}k+="|";continue;case"[":if(I(),q){k+="\\"+U;continue}q=!0,J=b,T=k.length,k+=U;continue;case"]":if(b===J+1||!q){k+="\\"+U,W=!1;continue}L=!0,q=!1,k+=U;continue;default:I(),W?W=!1:f[U]&&!(U==="^"&&q)&&(k+="\\"),k+=U}}if(q){var K=F.substr(J+1),le=this.parse(K,x);k=k.substr(0,T)+"\\["+le[0],L=L||le[1]}for(var ce;ce=M.pop();){var ae=k.slice(ce.reStart+3);ae=ae.replace(/((?:\\{2})*)(\\?)\|/g,function(Y,he,Rt){return Rt||(Rt="\\"),he+he+Rt+"|"});var ne=ce.type==="*"?c:ce.type==="?"?s:"\\"+ce.type;L=!0,k=k.slice(0,ce.reStart)+ne+"\\("+ae}I(),W&&(k+="\\\\");var Ae=!1;switch(k.charAt(0)){case".":case"[":case"(":Ae=!0}if(k!==""&&L&&(k="(?=.)"+k),Ae&&(k=X+k),A===x)return[k,L];if(!L)return w(F);var _e=_.nocase?"i":"",ge=new RegExp("^"+k+"$",_e);return ge._glob=F,ge._src=k,ge}E.makeRe=function(F,A){return new C(F,A||{}).makeRe()},C.prototype.makeRe=R;function R(){if(this.regexp||this.regexp===!1)return this.regexp;var F=this.set;if(!F.length)return this.regexp=!1;var A=this.options,_=A.noglobstar?c:A.dot?l:D,k=A.nocase?"i":"",L=F.map(function(W){return W.map(function(M){return M===a?_:typeof M=="string"?O(M):M._src}).join("\\/")}).join("|");L="^(?:"+L+")$",this.negate&&(L="^(?!"+L+").*$");try{return this.regexp=new RegExp(L,k)}catch{return this.regexp=!1}}E.match=function(F,A,_){var k=new C(A,_);return F=F.filter(function(L){return k.match(L)}),_.nonull&&!F.length&&F.push(A),F},C.prototype.match=N;function N(F,A){if(this.comment)return!1;if(this.empty)return F==="";if(F==="/"&&A)return!0;var _=this.options;r==="win32"&&(F=F.split("\\").join("/")),F=F.split(p),_.debug&&console.error(this.pattern,"split",F);for(var k=this.set,L=0,W=k.length;L<W;L++){var M=k[L],H=this.matchOne(F,M,A);if(H)return _.flipNegate?!0:!this.negate}return _.flipNegate?!1:this.negate}C.prototype.matchOne=function(F,A,_){var k=this.options;k.debug&&console.error("matchOne",{this:this,file:F,pattern:A}),k.matchBase&&A.length===1&&(F=o.basename(F.join("/")).split("/")),k.debug&&console.error("matchOne",F.length,A.length);for(var L=0,W=0,M=F.length,H=A.length;L<M&&W<H;L++,W++){k.debug&&console.error("matchOne loop");var j=A[W],q=F[L];if(k.debug&&console.error(A,j,q),j===!1)return!1;if(j===a){k.debug&&console.error("GLOBSTAR",[A,j,q]);var T=L,J=W+1;if(J===H){for(k.debug&&console.error("** at the end");L<M;L++)if(F[L]==="."||F[L]===".."||!k.dot&&F[L].charAt(0)===".")return!1;return!0}e:for(;T<M;){var X=F[T];if(k.debug&&console.error(`
617
+ globstar while`,F,T,A,J,X),this.matchOne(F.slice(T),A.slice(J),_))return k.debug&&console.error("globstar found match!",T,M,X),!0;if(X==="."||X===".."||!k.dot&&X.charAt(0)==="."){k.debug&&console.error("dot detected!",F,T,A,J);break e}k.debug&&console.error("globstar swallow a segment, and continue"),T++}return!!(_&&T===M)}var I;if(typeof j=="string"?(k.nocase?I=q.toLowerCase()===j.toLowerCase():I=q===j,k.debug&&console.error("string match",j,q,I)):(I=q.match(j),k.debug&&console.error("pattern match",j,q,I)),!I)return!1}if(L===M&&W===H)return!0;if(L===M)return _;if(W===H){var b=L===M-1&&F[L]==="";return b}throw new Error("wtf?")};function w(F){return F.replace(/\\(.)/g,"$1")}function O(F){return F.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&")}}}),jc=G({"node_modules/editorconfig/src/lib/ini.js"(e){"use strict";var t=e&&e.__awaiter||function(c,l,D,f){return new(D||(D=Promise))(function(d,p){function h(E){try{y(f.next(E))}catch(C){p(C)}}function v(E){try{y(f.throw(E))}catch(C){p(C)}}function y(E){E.done?d(E.value):new D(function(C){C(E.value)}).then(h,v)}y((f=f.apply(c,l||[])).next())})},r=e&&e.__generator||function(c,l){var D={label:0,sent:function(){if(p[0]&1)throw p[1];return p[1]},trys:[],ops:[]},f,d,p,h;return h={next:v(0),throw:v(1),return:v(2)},typeof Symbol=="function"&&(h[Symbol.iterator]=function(){return this}),h;function v(E){return function(C){return y([E,C])}}function y(E){if(f)throw new TypeError("Generator is already executing.");for(;D;)try{if(f=1,d&&(p=E[0]&2?d.return:E[0]?d.throw||((p=d.return)&&p.call(d),0):d.next)&&!(p=p.call(d,E[1])).done)return p;switch(d=0,p&&(E=[E[0]&2,p.value]),E[0]){case 0:case 1:p=E;break;case 4:return D.label++,{value:E[1],done:!1};case 5:D.label++,d=E[1],E=[0];continue;case 7:E=D.ops.pop(),D.trys.pop();continue;default:if(p=D.trys,!(p=p.length>0&&p[p.length-1])&&(E[0]===6||E[0]===2)){D=0;continue}if(E[0]===3&&(!p||E[1]>p[0]&&E[1]<p[3])){D.label=E[1];break}if(E[0]===6&&D.label<p[1]){D.label=p[1],p=E;break}if(p&&D.label<p[2]){D.label=p[2],D.ops.push(E);break}p[2]&&D.ops.pop(),D.trys.pop();continue}E=l.call(c,D)}catch(C){E=[6,C],d=0}finally{f=p=0}if(E[0]&5)throw E[1];return{value:E[0]?E[1]:void 0,done:!0}}},u=e&&e.__importStar||function(c){if(c&&c.__esModule)return c;var l={};if(c!=null)for(var D in c)Object.hasOwnProperty.call(c,D)&&(l[D]=c[D]);return l.default=c,l};Object.defineProperty(e,"__esModule",{value:!0});var n=u(oe("fs")),a={section:/^\s*\[(([^#;]|\\#|\\;)+)\]\s*([#;].*)?$/,param:/^\s*([\w\.\-\_]+)\s*[=:]\s*(.*?)\s*([#;].*)?$/,comment:/^\s*[#;].*$/};function i(c){return t(this,void 0,void 0,function(){return r(this,function(l){return[2,new Promise(function(D,f){n.readFile(c,"utf8",function(d,p){if(d){f(d);return}D(s(p))})})]})})}e.parse=i;function o(c){return s(n.readFileSync(c,"utf8"))}e.parseSync=o;function s(c){var l={},D=null,f=[[D,l]],d=c.split(/\r\n|\r|\n/);return d.forEach(function(p){var h;a.comment.test(p)||(a.param.test(p)?(h=p.match(a.param),l[h[1]]=h[2]):a.section.test(p)&&(h=p.match(a.section),D=h[1],l={},f.push([D,l])))}),f}e.parseString=s}}),$c=G({"node_modules/editorconfig/package.json"(e,t){t.exports={name:"editorconfig",version:"0.15.3",description:"EditorConfig File Locator and Interpreter for Node.js",keywords:["editorconfig","core"],main:"src/index.js",contributors:["Hong Xu (topbug.net)","Jed Mao (https://github.com/jedmao/)","Trey Hunner (http://treyhunner.com)"],directories:{bin:"./bin",lib:"./lib"},scripts:{clean:"rimraf dist",prebuild:"npm run clean",build:"tsc",pretest:"npm run lint && npm run build && npm run copy && cmake .",test:"ctest .","pretest:ci":"npm run pretest","test:ci":"ctest -VV --output-on-failure .",lint:"npm run eclint && npm run tslint",eclint:'eclint check --indent_size ignore "src/**"',tslint:"tslint --project tsconfig.json --exclude package.json",copy:"cpy .npmignore LICENSE README.md CHANGELOG.md dist && cpy bin/* dist/bin && cpy src/lib/fnmatch*.* dist/src/lib",prepub:"npm run lint && npm run build && npm run copy",pub:"npm publish ./dist"},repository:{type:"git",url:"git://github.com/editorconfig/editorconfig-core-js.git"},bugs:"https://github.com/editorconfig/editorconfig-core-js/issues",author:"EditorConfig Team",license:"MIT",dependencies:{commander:"^2.19.0","lru-cache":"^4.1.5",semver:"^5.6.0",sigmund:"^1.0.1"},devDependencies:{"@types/mocha":"^5.2.6","@types/node":"^10.12.29","@types/semver":"^5.5.0","cpy-cli":"^2.0.0",eclint:"^2.8.1",mocha:"^5.2.0",rimraf:"^2.6.3",should:"^13.2.3",tslint:"^5.13.1",typescript:"^3.3.3333"}}}}),Mc=G({"node_modules/editorconfig/src/index.js"(e){"use strict";var t=e&&e.__awaiter||function(w,O,F,A){return new(F||(F=Promise))(function(_,k){function L(H){try{M(A.next(H))}catch(j){k(j)}}function W(H){try{M(A.throw(H))}catch(j){k(j)}}function M(H){H.done?_(H.value):new F(function(j){j(H.value)}).then(L,W)}M((A=A.apply(w,O||[])).next())})},r=e&&e.__generator||function(w,O){var F={label:0,sent:function(){if(k[0]&1)throw k[1];return k[1]},trys:[],ops:[]},A,_,k,L;return L={next:W(0),throw:W(1),return:W(2)},typeof Symbol=="function"&&(L[Symbol.iterator]=function(){return this}),L;function W(H){return function(j){return M([H,j])}}function M(H){if(A)throw new TypeError("Generator is already executing.");for(;F;)try{if(A=1,_&&(k=H[0]&2?_.return:H[0]?_.throw||((k=_.return)&&k.call(_),0):_.next)&&!(k=k.call(_,H[1])).done)return k;switch(_=0,k&&(H=[H[0]&2,k.value]),H[0]){case 0:case 1:k=H;break;case 4:return F.label++,{value:H[1],done:!1};case 5:F.label++,_=H[1],H=[0];continue;case 7:H=F.ops.pop(),F.trys.pop();continue;default:if(k=F.trys,!(k=k.length>0&&k[k.length-1])&&(H[0]===6||H[0]===2)){F=0;continue}if(H[0]===3&&(!k||H[1]>k[0]&&H[1]<k[3])){F.label=H[1];break}if(H[0]===6&&F.label<k[1]){F.label=k[1],k=H;break}if(k&&F.label<k[2]){F.label=k[2],F.ops.push(H);break}k[2]&&F.ops.pop(),F.trys.pop();continue}H=O.call(w,F)}catch(j){H=[6,j],_=0}finally{A=k=0}if(H[0]&5)throw H[1];return{value:H[0]?H[1]:void 0,done:!0}}},u=e&&e.__importStar||function(w){if(w&&w.__esModule)return w;var O={};if(w!=null)for(var F in w)Object.hasOwnProperty.call(w,F)&&(O[F]=w[F]);return O.default=w,O},n=e&&e.__importDefault||function(w){return w&&w.__esModule?w:{default:w}};Object.defineProperty(e,"__esModule",{value:!0});var a=u(oe("fs")),i=u(oe("path")),o={gte:xc()},s=n(Lc()),c=jc();e.parseString=c.parseString;var l=n($c()),D={end_of_line:!0,indent_style:!0,indent_size:!0,insert_final_newline:!0,trim_trailing_whitespace:!0,charset:!0};function f(w,O){var F={matchBase:!0,dot:!0,noext:!0};return O=O.replace(/\*\*/g,"{*,**/**/**}"),s.default(w,O,F)}function d(w,O){var F=[];do w=i.dirname(w),F.push(i.join(w,O.config));while(w!==O.root);return F}function p(w,O){return"indent_style"in w&&w.indent_style==="tab"&&!("indent_size"in w)&&o.gte(O,"0.10.0")&&(w.indent_size="tab"),"indent_size"in w&&!("tab_width"in w)&&w.indent_size!=="tab"&&(w.tab_width=w.indent_size),"indent_size"in w&&"tab_width"in w&&w.indent_size==="tab"&&(w.indent_size=w.tab_width),w}function h(w,O){return w===void 0&&(w={}),{config:w.config||".editorconfig",version:w.version||l.default.version,root:i.resolve(w.root||i.parse(O).root)}}function v(w,O){switch(O.indexOf("/")){case-1:O="**/"+O;break;case 0:O=O.substring(1);break;default:break}return i.join(w,O)}function y(w,O){w===void 0&&(w={}),O===void 0&&(O={});for(var F in O)if(O.hasOwnProperty(F)){var A=O[F],_=F.toLowerCase(),k=A;D[_]&&(k=A.toLowerCase());try{k=JSON.parse(A)}catch{}(typeof A>"u"||A===null)&&(k=String(A)),w[_]=k}return w}function E(w,O,F){return p(w.reverse().reduce(function(A,_){var k=i.dirname(_.name);return _.contents.forEach(function(L){var W=L[0],M=L[1];if(W){var H=v(k,W);f(O,H)&&(A=y(A,M))}}),A},{}),F.version)}function C(w){var O=[];for(var F in w)if(w.hasOwnProperty(F)){var A=w[F],_=c.parseString(A.contents);if(O.push({name:A.name,contents:_}),(_[0][1].root||"").toLowerCase()==="true")break}return O}function S(w){return t(this,void 0,void 0,function(){return r(this,function(O){return[2,Promise.all(w.map(function(F){return new Promise(function(A){a.readFile(F,"utf8",function(_,k){A({name:F,contents:_?"":k})})})}))]})})}function g(w){var O=[],F;return w.forEach(function(A){try{F=a.readFileSync(A,"utf8")}catch{F=""}O.push({name:A,contents:F})}),O}function B(w,O){O===void 0&&(O={});var F=i.resolve(w);return[F,h(O,F)]}function x(w,O,F){return F===void 0&&(F={}),t(this,void 0,void 0,function(){var A,_,k;return r(this,function(L){return A=B(w,F),_=A[0],k=A[1],[2,O.then(C).then(function(W){return E(W,_,k)})]})})}e.parseFromFiles=x;function m(w,O,F){F===void 0&&(F={});var A=B(w,F),_=A[0],k=A[1];return E(C(O),_,k)}e.parseFromFilesSync=m;function R(w,O){return O===void 0&&(O={}),t(this,void 0,void 0,function(){var F,A,_,k;return r(this,function(L){return F=B(w,O),A=F[0],_=F[1],k=d(A,_),[2,S(k).then(C).then(function(W){return E(W,A,_)})]})})}e.parse=R;function N(w,O){O===void 0&&(O={});var F=B(w,O),A=F[0],_=F[1],k=d(A,_),L=g(k);return E(C(L),A,_)}e.parseSync=N}}),Hc=G({"node_modules/js-tokens/index.js"(e){Object.defineProperty(e,"__esModule",{value:!0}),e.default=/((['"])(?:(?!\2|\\).|\\(?:\r\n|[\s\S]))*(\2)?|`(?:[^`\\$]|\\[\s\S]|\$(?!\{)|\$\{(?:[^{}]|\{[^}]*\}?)*\}?)*(`)?)|(\/\/.*)|(\/\*(?:[^*]|\*(?!\/))*(\*\/)?)|(\/(?!\*)(?:\[(?:(?![\]\\]).|\\.)*\]|(?![\/\]\\]).|\\.)+\/(?:(?!\s*(?:\b|[\u0080-\uFFFF$\\'"~({]|[+\-!](?!=)|\.?\d))|[gmiyus]{1,6}\b(?![\u0080-\uFFFF$\\]|\s*(?:[+\-*%&|^<>!=?({]|\/(?![\/*])))))|(0[xX][\da-fA-F]+|0[oO][0-7]+|0[bB][01]+|(?:\d*\.\d+|\d+\.?)(?:[eE][+-]?\d+)?)|((?!\d)(?:(?!\s)[$\w\u0080-\uFFFF]|\\u[\da-fA-F]{4}|\\u\{[\da-fA-F]+\})+)|(--|\+\+|&&|\|\||=>|\.{3}|(?:[+\-\/%&|^]|\*{1,2}|<{1,2}|>{1,3}|!=?|={1,2})=?|[?~.,:;[\](){}])|(\s+)|(^$|[\s\S])/g,e.matchToToken=function(t){var r={type:"invalid",value:t[0],closed:void 0};return t[1]?(r.type="string",r.closed=!!(t[3]||t[4])):t[5]?r.type="comment":t[6]?(r.type="comment",r.closed=!!t[7]):t[8]?r.type="regex":t[9]?r.type="number":t[10]?r.type="name":t[11]?r.type="punctuator":t[12]&&(r.type="whitespace"),r}}}),Wc=G({"node_modules/@babel/helper-validator-identifier/lib/identifier.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.isIdentifierChar=c,e.isIdentifierName=l,e.isIdentifierStart=s;var t="\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1878\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C8A\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2118-\u211D\u2124\u2126\u2128\u212A-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309B-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u31A0-\u31BF\u31F0-\u31FF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CD\uA7D0\uA7D1\uA7D3\uA7D5-\uA7DC\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC",r="\xB7\u0300-\u036F\u0387\u0483-\u0487\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u0610-\u061A\u064B-\u0669\u0670\u06D6-\u06DC\u06DF-\u06E4\u06E7\u06E8\u06EA-\u06ED\u06F0-\u06F9\u0711\u0730-\u074A\u07A6-\u07B0\u07C0-\u07C9\u07EB-\u07F3\u07FD\u0816-\u0819\u081B-\u0823\u0825-\u0827\u0829-\u082D\u0859-\u085B\u0897-\u089F\u08CA-\u08E1\u08E3-\u0903\u093A-\u093C\u093E-\u094F\u0951-\u0957\u0962\u0963\u0966-\u096F\u0981-\u0983\u09BC\u09BE-\u09C4\u09C7\u09C8\u09CB-\u09CD\u09D7\u09E2\u09E3\u09E6-\u09EF\u09FE\u0A01-\u0A03\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A66-\u0A71\u0A75\u0A81-\u0A83\u0ABC\u0ABE-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AE2\u0AE3\u0AE6-\u0AEF\u0AFA-\u0AFF\u0B01-\u0B03\u0B3C\u0B3E-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B55-\u0B57\u0B62\u0B63\u0B66-\u0B6F\u0B82\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD7\u0BE6-\u0BEF\u0C00-\u0C04\u0C3C\u0C3E-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C62\u0C63\u0C66-\u0C6F\u0C81-\u0C83\u0CBC\u0CBE-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CE2\u0CE3\u0CE6-\u0CEF\u0CF3\u0D00-\u0D03\u0D3B\u0D3C\u0D3E-\u0D44\u0D46-\u0D48\u0D4A-\u0D4D\u0D57\u0D62\u0D63\u0D66-\u0D6F\u0D81-\u0D83\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2\u0DF3\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0E50-\u0E59\u0EB1\u0EB4-\u0EBC\u0EC8-\u0ECE\u0ED0-\u0ED9\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E\u0F3F\u0F71-\u0F84\u0F86\u0F87\u0F8D-\u0F97\u0F99-\u0FBC\u0FC6\u102B-\u103E\u1040-\u1049\u1056-\u1059\u105E-\u1060\u1062-\u1064\u1067-\u106D\u1071-\u1074\u1082-\u108D\u108F-\u109D\u135D-\u135F\u1369-\u1371\u1712-\u1715\u1732-\u1734\u1752\u1753\u1772\u1773\u17B4-\u17D3\u17DD\u17E0-\u17E9\u180B-\u180D\u180F-\u1819\u18A9\u1920-\u192B\u1930-\u193B\u1946-\u194F\u19D0-\u19DA\u1A17-\u1A1B\u1A55-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AB0-\u1ABD\u1ABF-\u1ACE\u1B00-\u1B04\u1B34-\u1B44\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1B82\u1BA1-\u1BAD\u1BB0-\u1BB9\u1BE6-\u1BF3\u1C24-\u1C37\u1C40-\u1C49\u1C50-\u1C59\u1CD0-\u1CD2\u1CD4-\u1CE8\u1CED\u1CF4\u1CF7-\u1CF9\u1DC0-\u1DFF\u200C\u200D\u203F\u2040\u2054\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2CEF-\u2CF1\u2D7F\u2DE0-\u2DFF\u302A-\u302F\u3099\u309A\u30FB\uA620-\uA629\uA66F\uA674-\uA67D\uA69E\uA69F\uA6F0\uA6F1\uA802\uA806\uA80B\uA823-\uA827\uA82C\uA880\uA881\uA8B4-\uA8C5\uA8D0-\uA8D9\uA8E0-\uA8F1\uA8FF-\uA909\uA926-\uA92D\uA947-\uA953\uA980-\uA983\uA9B3-\uA9C0\uA9D0-\uA9D9\uA9E5\uA9F0-\uA9F9\uAA29-\uAA36\uAA43\uAA4C\uAA4D\uAA50-\uAA59\uAA7B-\uAA7D\uAAB0\uAAB2-\uAAB4\uAAB7\uAAB8\uAABE\uAABF\uAAC1\uAAEB-\uAAEF\uAAF5\uAAF6\uABE3-\uABEA\uABEC\uABED\uABF0-\uABF9\uFB1E\uFE00-\uFE0F\uFE20-\uFE2F\uFE33\uFE34\uFE4D-\uFE4F\uFF10-\uFF19\uFF3F\uFF65",u=new RegExp("["+t+"]"),n=new RegExp("["+t+r+"]");t=r=null;var a=[0,11,2,25,2,18,2,1,2,14,3,13,35,122,70,52,268,28,4,48,48,31,14,29,6,37,11,29,3,35,5,7,2,4,43,157,19,35,5,35,5,39,9,51,13,10,2,14,2,6,2,1,2,10,2,14,2,6,2,1,4,51,13,310,10,21,11,7,25,5,2,41,2,8,70,5,3,0,2,43,2,1,4,0,3,22,11,22,10,30,66,18,2,1,11,21,11,25,71,55,7,1,65,0,16,3,2,2,2,28,43,28,4,28,36,7,2,27,28,53,11,21,11,18,14,17,111,72,56,50,14,50,14,35,39,27,10,22,251,41,7,1,17,2,60,28,11,0,9,21,43,17,47,20,28,22,13,52,58,1,3,0,14,44,33,24,27,35,30,0,3,0,9,34,4,0,13,47,15,3,22,0,2,0,36,17,2,24,20,1,64,6,2,0,2,3,2,14,2,9,8,46,39,7,3,1,3,21,2,6,2,1,2,4,4,0,19,0,13,4,31,9,2,0,3,0,2,37,2,0,26,0,2,0,45,52,19,3,21,2,31,47,21,1,2,0,185,46,42,3,37,47,21,0,60,42,14,0,72,26,38,6,186,43,117,63,32,7,3,0,3,7,2,1,2,23,16,0,2,0,95,7,3,38,17,0,2,0,29,0,11,39,8,0,22,0,12,45,20,0,19,72,200,32,32,8,2,36,18,0,50,29,113,6,2,1,2,37,22,0,26,5,2,1,2,31,15,0,328,18,16,0,2,12,2,33,125,0,80,921,103,110,18,195,2637,96,16,1071,18,5,26,3994,6,582,6842,29,1763,568,8,30,18,78,18,29,19,47,17,3,32,20,6,18,433,44,212,63,129,74,6,0,67,12,65,1,2,0,29,6135,9,1237,42,9,8936,3,2,6,2,1,2,290,16,0,30,2,3,0,15,3,9,395,2309,106,6,12,4,8,8,9,5991,84,2,70,2,1,3,0,3,1,3,3,2,11,2,0,2,6,2,64,2,3,3,7,2,6,2,27,2,3,2,4,2,0,4,6,2,339,3,24,2,24,2,30,2,24,2,30,2,24,2,30,2,24,2,30,2,24,2,7,1845,30,7,5,262,61,147,44,11,6,17,0,322,29,19,43,485,27,229,29,3,0,496,6,2,3,2,1,2,14,2,196,60,67,8,0,1205,3,2,26,2,1,2,0,3,0,2,9,2,3,2,0,2,0,7,0,5,0,2,0,2,0,2,2,2,1,2,0,3,0,2,0,2,0,2,0,2,0,2,1,2,0,3,3,2,6,2,3,2,3,2,0,2,9,2,16,6,2,2,4,2,16,4421,42719,33,4153,7,221,3,5761,15,7472,16,621,2467,541,1507,4938,6,4191],i=[509,0,227,0,150,4,294,9,1368,2,2,1,6,3,41,2,5,0,166,1,574,3,9,9,7,9,32,4,318,1,80,3,71,10,50,3,123,2,54,14,32,10,3,1,11,3,46,10,8,0,46,9,7,2,37,13,2,9,6,1,45,0,13,2,49,13,9,3,2,11,83,11,7,0,3,0,158,11,6,9,7,3,56,1,2,6,3,1,3,2,10,0,11,1,3,6,4,4,68,8,2,0,3,0,2,3,2,4,2,0,15,1,83,17,10,9,5,0,82,19,13,9,214,6,3,8,28,1,83,16,16,9,82,12,9,9,7,19,58,14,5,9,243,14,166,9,71,5,2,1,3,3,2,0,2,1,13,9,120,6,3,6,4,0,29,9,41,6,2,3,9,0,10,10,47,15,343,9,54,7,2,7,17,9,57,21,2,13,123,5,4,0,2,1,2,6,2,0,9,9,49,4,2,1,2,4,9,9,330,3,10,1,2,0,49,6,4,4,14,10,5350,0,7,14,11465,27,2343,9,87,9,39,4,60,6,26,9,535,9,470,0,2,54,8,3,82,0,12,1,19628,1,4178,9,519,45,3,22,543,4,4,5,9,7,3,6,31,3,149,2,1418,49,513,54,5,49,9,0,15,0,23,4,2,14,1361,6,2,16,3,6,2,1,2,4,101,0,161,6,10,9,357,0,62,13,499,13,245,1,2,9,726,6,110,6,6,9,4759,9,787719,239];function o(D,f){let d=65536;for(let p=0,h=f.length;p<h;p+=2){if(d+=f[p],d>D)return!1;if(d+=f[p+1],d>=D)return!0}return!1}function s(D){return D<65?D===36:D<=90?!0:D<97?D===95:D<=122?!0:D<=65535?D>=170&&u.test(String.fromCharCode(D)):o(D,a)}function c(D){return D<48?D===36:D<58?!0:D<65?!1:D<=90?!0:D<97?D===95:D<=122?!0:D<=65535?D>=170&&n.test(String.fromCharCode(D)):o(D,a)||o(D,i)}function l(D){let f=!0;for(let d=0;d<D.length;d++){let p=D.charCodeAt(d);if((p&64512)===55296&&d+1<D.length){let h=D.charCodeAt(++d);(h&64512)===56320&&(p=65536+((p&1023)<<10)+(h&1023))}if(f){if(f=!1,!s(p))return!1}else if(!c(p))return!1}return!f}}}),Gc=G({"node_modules/@babel/helper-validator-identifier/lib/keyword.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.isKeyword=c,e.isReservedWord=a,e.isStrictBindOnlyReservedWord=o,e.isStrictBindReservedWord=s,e.isStrictReservedWord=i;var t={keyword:["break","case","catch","continue","debugger","default","do","else","finally","for","function","if","return","switch","throw","try","var","const","while","with","new","this","super","class","extends","export","import","null","true","false","in","instanceof","typeof","void","delete"],strict:["implements","interface","let","package","private","protected","public","static","yield"],strictBind:["eval","arguments"]},r=new Set(t.keyword),u=new Set(t.strict),n=new Set(t.strictBind);function a(l,D){return D&&l==="await"||l==="enum"}function i(l,D){return a(l,D)||u.has(l)}function o(l){return n.has(l)}function s(l,D){return i(l,D)||o(l)}function c(l){return r.has(l)}}}),Uc=G({"node_modules/@babel/helper-validator-identifier/lib/index.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"isIdentifierChar",{enumerable:!0,get:function(){return t.isIdentifierChar}}),Object.defineProperty(e,"isIdentifierName",{enumerable:!0,get:function(){return t.isIdentifierName}}),Object.defineProperty(e,"isIdentifierStart",{enumerable:!0,get:function(){return t.isIdentifierStart}}),Object.defineProperty(e,"isKeyword",{enumerable:!0,get:function(){return r.isKeyword}}),Object.defineProperty(e,"isReservedWord",{enumerable:!0,get:function(){return r.isReservedWord}}),Object.defineProperty(e,"isStrictBindOnlyReservedWord",{enumerable:!0,get:function(){return r.isStrictBindOnlyReservedWord}}),Object.defineProperty(e,"isStrictBindReservedWord",{enumerable:!0,get:function(){return r.isStrictBindReservedWord}}),Object.defineProperty(e,"isStrictReservedWord",{enumerable:!0,get:function(){return r.isStrictReservedWord}});var t=Wc(),r=Gc()}}),Ti=G({"node_modules/@babel/code-frame/lib/index.js"(e){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var t=Ar(),r=Hc(),u=Uc();function n(){return typeof process=="object"&&(process.env.FORCE_COLOR==="0"||process.env.FORCE_COLOR==="false")?!1:t.isColorSupported}var a=(S,g)=>B=>S(g(B));function i(S){return{keyword:S.cyan,capitalized:S.yellow,jsxIdentifier:S.yellow,punctuator:S.yellow,number:S.magenta,string:S.green,regex:S.magenta,comment:S.gray,invalid:a(a(S.white,S.bgRed),S.bold),gutter:S.gray,marker:a(S.red,S.bold),message:a(S.red,S.bold),reset:S.reset}}var o=i(t.createColors(!0)),s=i(t.createColors(!1));function c(S){return S?o:s}var l=new Set(["as","async","from","get","of","set"]),D=/\r\n|[\n\r\u2028\u2029]/,f=/^[()[\]{}]$/,d;{let S=/^[a-z][\w-]*$/i,g=function(B,x,m){if(B.type==="name"){if(u.isKeyword(B.value)||u.isStrictReservedWord(B.value,!0)||l.has(B.value))return"keyword";if(S.test(B.value)&&(m[x-1]==="<"||m.slice(x-2,x)==="</"))return"jsxIdentifier";if(B.value[0]!==B.value[0].toLowerCase())return"capitalized"}return B.type==="punctuator"&&f.test(B.value)?"bracket":B.type==="invalid"&&(B.value==="@"||B.value==="#")?"punctuator":B.type};d=function*(B){let x;for(;x=r.default.exec(B);){let m=r.matchToToken(x);yield{type:g(m,x.index,B),value:m.value}}}}function p(S){if(S==="")return"";let g=c(!0),B="";for(let{type:x,value:m}of d(S))x in g?B+=m.split(D).map(R=>g[x](R)).join(`
618
+ `):B+=m;return B}var h=!1,v=/\r\n|[\n\r\u2028\u2029]/;function y(S,g,B){let x=Object.assign({column:0,line:-1},S.start),m=Object.assign({},x,S.end),{linesAbove:R=2,linesBelow:N=3}=B||{},w=x.line,O=x.column,F=m.line,A=m.column,_=Math.max(w-(R+1),0),k=Math.min(g.length,F+N);w===-1&&(_=0),F===-1&&(k=g.length);let L=F-w,W={};if(L)for(let M=0;M<=L;M++){let H=M+w;if(!O)W[H]=!0;else if(M===0){let j=g[H-1].length;W[H]=[O,j-O+1]}else if(M===L)W[H]=[0,A];else{let j=g[H-M].length;W[H]=[0,j]}}else O===A?O?W[w]=[O,0]:W[w]=!0:W[w]=[O,A-O];return{start:_,end:k,markerLines:W}}function E(S,g,B={}){let x=B.forceColor||n()&&B.highlightCode,m=c(x),R=S.split(v),{start:N,end:w,markerLines:O}=y(g,R,B),F=g.start&&typeof g.start.column=="number",A=String(w).length,k=(x?p(S):S).split(v,w).slice(N,w).map((L,W)=>{let M=N+1+W,j=` ${` ${M}`.slice(-A)} |`,q=O[M],T=!O[M+1];if(q){let J="";if(Array.isArray(q)){let X=L.slice(0,Math.max(q[0]-1,0)).replace(/[^\t]/g," "),I=q[1]||1;J=[`
619
+ `,m.gutter(j.replace(/\d/g," "))," ",X,m.marker("^").repeat(I)].join(""),T&&B.message&&(J+=" "+m.message(B.message))}return[m.marker(">"),m.gutter(j),L.length>0?` ${L}`:"",J].join("")}else return` ${m.gutter(j)}${L.length>0?` ${L}`:""}`}).join(`
620
+ `);return B.message&&!F&&(k=`${" ".repeat(A+1)}${B.message}
621
+ ${k}`),x?m.reset(k):k}function C(S,g,B,x={}){if(!h){h=!0;let R="Passing lineNumber and colNumber is deprecated to @babel/code-frame. Please use `codeFrameColumns`.";if(process.emitWarning)process.emitWarning(R,"DeprecationWarning");else{let N=new Error(R);N.name="DeprecationWarning",console.warn(new Error(R))}}return B=Math.max(B,0),E(S,{start:{column:B,line:g}},x)}e.codeFrameColumns=E,e.default=C,e.highlight=p}}),qc=G({"node_modules/n-readlines/readlines.js"(e,t){"use strict";var r=oe("fs"),u=class{constructor(n,a){a=a||{},a.readChunk||(a.readChunk=1024),a.newLineCharacter?a.newLineCharacter=a.newLineCharacter.charCodeAt(0):a.newLineCharacter=10,typeof n=="number"?this.fd=n:this.fd=r.openSync(n,"r"),this.options=a,this.newLineCharacter=a.newLineCharacter,this.reset()}_searchInBuffer(n,a){let i=-1;for(let o=0;o<=n.length;o++)if(n[o]===a){i=o;break}return i}reset(){this.eofReached=!1,this.linesCache=[],this.fdPosition=0}close(){r.closeSync(this.fd),this.fd=null}_extractLines(n){let a,i=[],o=0,s=0;for(;;){let l=n[o++];if(l===this.newLineCharacter)a=n.slice(s,o),i.push(a),s=o;else if(l===void 0)break}let c=n.slice(s,o);return c.length&&i.push(c),i}_readChunk(n){let a=0,i,o=[];do{let c=Buffer.alloc(this.options.readChunk);i=r.readSync(this.fd,c,0,this.options.readChunk,this.fdPosition),a=a+i,this.fdPosition=this.fdPosition+i,o.push(c)}while(i&&this._searchInBuffer(o[o.length-1],this.options.newLineCharacter)===-1);let s=Buffer.concat(o);return i<this.options.readChunk&&(this.eofReached=!0,s=s.slice(0,a)),a&&(this.linesCache=this._extractLines(s),n&&(this.linesCache[0]=Buffer.concat([n,this.linesCache[0]]))),a}next(){if(!this.fd)return!1;let n=!1;if(this.eofReached&&this.linesCache.length===0)return n;let a;return this.linesCache.length||(a=this._readChunk()),this.linesCache.length&&(n=this.linesCache.shift(),n[n.length-1]!==this.newLineCharacter&&(a=this._readChunk(n),a&&(n=this.linesCache.shift()))),this.eofReached&&this.linesCache.length===0&&this.close(),n&&n[n.length-1]===this.newLineCharacter&&(n=n.slice(0,n.length-1)),n}};t.exports=u}}),Vc=G({"node_modules/ignore/index.js"(e,t){function r(I){return Array.isArray(I)?I:[I]}var u=void 0,n="",a=" ",i="\\",o=/^\s+$/,s=/(?:[^\\]|^)\\$/,c=/^\\!/,l=/^\\#/,D=/\r?\n/g,f=/^\.{0,2}\/|^\.{1,2}$/,d=/\/$/,p="/",h="node-ignore";typeof Symbol<"u"&&(h=Symbol.for("node-ignore"));var v=h,y=(I,b,P)=>(Object.defineProperty(I,b,{value:P}),P),E=/([0-z])-([0-z])/g,C=()=>!1,S=I=>I.replace(E,(b,P,U)=>P.charCodeAt(0)<=U.charCodeAt(0)?b:n),g=I=>{let{length:b}=I;return I.slice(0,b-b%2)},B=[[/^\uFEFF/,()=>n],[/((?:\\\\)*?)(\\?\s+)$/,(I,b,P)=>b+(P.indexOf("\\")===0?a:n)],[/(\\+?)\s/g,(I,b)=>{let{length:P}=b;return b.slice(0,P-P%2)+a}],[/[\\$.|*+(){^]/g,I=>`\\${I}`],[/(?!\\)\?/g,()=>"[^/]"],[/^\//,()=>"^"],[/\//g,()=>"\\/"],[/^\^*\\\*\\\*\\\//,()=>"^(?:.*\\/)?"],[/^(?=[^^])/,function(){return/\/(?!$)/.test(this)?"^":"(?:^|\\/)"}],[/\\\/\\\*\\\*(?=\\\/|$)/g,(I,b,P)=>b+6<P.length?"(?:\\/[^\\/]+)*":"\\/.+"],[/(^|[^\\]+)(\\\*)+(?=.+)/g,(I,b,P)=>{let U=P.replace(/\\\*/g,"[^\\/]*");return b+U}],[/\\\\\\(?=[$.|*+(){^])/g,()=>i],[/\\\\/g,()=>i],[/(\\)?\[([^\]/]*?)(\\*)($|\])/g,(I,b,P,U,K)=>b===i?`\\[${P}${g(U)}${K}`:K==="]"&&U.length%2===0?`[${S(P)}${U}]`:"[]"],[/(?:[^*])$/,I=>/\/$/.test(I)?`${I}$`:`${I}(?=$|\\/$)`]],x=/(^|\\\/)?\\\*$/,m="regex",R="checkRegex",N="_",w={[m](I,b){return`${b?`${b}[^/]+`:"[^/]*"}(?=$|\\/$)`},[R](I,b){return`${b?`${b}[^/]*`:"[^/]*"}(?=$|\\/$)`}},O=I=>B.reduce((b,[P,U])=>b.replace(P,U.bind(I)),I),F=I=>typeof I=="string",A=I=>I&&F(I)&&!o.test(I)&&!s.test(I)&&I.indexOf("#")!==0,_=I=>I.split(D).filter(Boolean),k=class{constructor(I,b,P,U,K,le){this.pattern=I,this.mark=b,this.negative=K,y(this,"body",P),y(this,"ignoreCase",U),y(this,"regexPrefix",le)}get regex(){let I=N+m;return this[I]?this[I]:this._make(m,I)}get checkRegex(){let I=N+R;return this[I]?this[I]:this._make(R,I)}_make(I,b){let P=this.regexPrefix.replace(x,w[I]),U=this.ignoreCase?new RegExp(P,"i"):new RegExp(P);return y(this,b,U)}},L=({pattern:I,mark:b},P)=>{let U=!1,K=I;K.indexOf("!")===0&&(U=!0,K=K.substr(1)),K=K.replace(c,"!").replace(l,"#");let le=O(K);return new k(I,b,K,P,U,le)},W=class{constructor(I){this._ignoreCase=I,this._rules=[]}_add(I){if(I&&I[v]){this._rules=this._rules.concat(I._rules._rules),this._added=!0;return}if(F(I)&&(I={pattern:I}),A(I.pattern)){let b=L(I,this._ignoreCase);this._added=!0,this._rules.push(b)}}add(I){return this._added=!1,r(F(I)?_(I):I).forEach(this._add,this),this._added}test(I,b,P){let U=!1,K=!1,le;this._rules.forEach(ae=>{let{negative:ne}=ae;K===ne&&U!==K||ne&&!U&&!K&&!b||!ae[P].test(I)||(U=!ne,K=ne,le=ne?u:ae)});let ce={ignored:U,unignored:K};return le&&(ce.rule=le),ce}},M=(I,b)=>{throw new b(I)},H=(I,b,P)=>F(I)?I?H.isNotRelative(I)?P(`path should be a \`path.relative()\`d string, but got "${b}"`,RangeError):!0:P("path must not be empty",TypeError):P(`path must be a string, but got \`${b}\``,TypeError),j=I=>f.test(I);H.isNotRelative=j,H.convert=I=>I;var q=class{constructor({ignorecase:I=!0,ignoreCase:b=I,allowRelativePaths:P=!1}={}){y(this,v,!0),this._rules=new W(b),this._strictPathCheck=!P,this._initCache()}_initCache(){this._ignoreCache=Object.create(null),this._testCache=Object.create(null)}add(I){return this._rules.add(I)&&this._initCache(),this}addPattern(I){return this.add(I)}_test(I,b,P,U){let K=I&&H.convert(I);return H(K,I,this._strictPathCheck?M:C),this._t(K,b,P,U)}checkIgnore(I){if(!d.test(I))return this.test(I);let b=I.split(p).filter(Boolean);if(b.pop(),b.length){let P=this._t(b.join(p)+p,this._testCache,!0,b);if(P.ignored)return P}return this._rules.test(I,!1,R)}_t(I,b,P,U){if(I in b)return b[I];if(U||(U=I.split(p).filter(Boolean)),U.pop(),!U.length)return b[I]=this._rules.test(I,P,m);let K=this._t(U.join(p)+p,b,P,U);return b[I]=K.ignored?K:this._rules.test(I,P,m)}ignores(I){return this._test(I,this._ignoreCache,!1).ignored}createFilter(){return I=>!this.ignores(I)}filter(I){return r(I).filter(this.createFilter())}test(I){return this._test(I,this._testCache,!0)}},T=I=>new q(I),J=I=>H(I&&H.convert(I),I,C),X=()=>{let I=P=>/^\\\\\?\\/.test(P)||/["<>|\u0000-\u001F]+/u.test(P)?P:P.replace(/\\/g,"/");H.convert=I;let b=/^[a-z]:\//i;H.isNotRelative=P=>b.test(P)||j(P)};typeof process<"u"&&process.platform==="win32"&&X(),t.exports=T,T.default=T,t.exports.isPathValid=J,y(t.exports,Symbol.for("setupWindows"),X)}}),Kc={};vr(Kc,{__debug:()=>Pg,__internal:()=>xg,check:()=>wg,clearConfigCache:()=>Sg,doc:()=>Pu,format:()=>Du,formatWithCursor:()=>es,getFileInfo:()=>eg,getSupportInfo:()=>kg,resolveConfig:()=>Ao,resolveConfigFile:()=>cp,util:()=>Zo,version:()=>tg});var Ii=class{diff(e,t,r={}){let u;typeof r=="function"?(u=r,r={}):"callback"in r&&(u=r.callback);let n=this.castInput(e,r),a=this.castInput(t,r),i=this.removeEmpty(this.tokenize(n,r)),o=this.removeEmpty(this.tokenize(a,r));return this.diffWithOptionsObj(i,o,r,u)}diffWithOptionsObj(e,t,r,u){var n;let a=y=>{if(y=this.postProcess(y,r),u){setTimeout(function(){u(y)},0);return}else return y},i=t.length,o=e.length,s=1,c=i+o;r.maxEditLength!=null&&(c=Math.min(c,r.maxEditLength));let l=(n=r.timeout)!==null&&n!==void 0?n:1/0,D=Date.now()+l,f=[{oldPos:-1,lastComponent:void 0}],d=this.extractCommon(f[0],t,e,0,r);if(f[0].oldPos+1>=o&&d+1>=i)return a(this.buildValues(f[0].lastComponent,t,e));let p=-1/0,h=1/0,v=()=>{for(let y=Math.max(p,-s);y<=Math.min(h,s);y+=2){let E,C=f[y-1],S=f[y+1];C&&(f[y-1]=void 0);let g=!1;if(S){let x=S.oldPos-y;g=S&&0<=x&&x<i}let B=C&&C.oldPos+1<o;if(!g&&!B){f[y]=void 0;continue}if(!B||g&&C.oldPos<S.oldPos?E=this.addToPath(S,!0,!1,0,r):E=this.addToPath(C,!1,!0,1,r),d=this.extractCommon(E,t,e,y,r),E.oldPos+1>=o&&d+1>=i)return a(this.buildValues(E.lastComponent,t,e))||!0;f[y]=E,E.oldPos+1>=o&&(h=Math.min(h,y-1)),d+1>=i&&(p=Math.max(p,y+1))}s++};if(u)(function y(){setTimeout(function(){if(s>c||Date.now()>D)return u(void 0);v()||y()},0)})();else for(;s<=c&&Date.now()<=D;){let y=v();if(y)return y}}addToPath(e,t,r,u,n){let a=e.lastComponent;return a&&!n.oneChangePerToken&&a.added===t&&a.removed===r?{oldPos:e.oldPos+u,lastComponent:{count:a.count+1,added:t,removed:r,previousComponent:a.previousComponent}}:{oldPos:e.oldPos+u,lastComponent:{count:1,added:t,removed:r,previousComponent:a}}}extractCommon(e,t,r,u,n){let a=t.length,i=r.length,o=e.oldPos,s=o-u,c=0;for(;s+1<a&&o+1<i&&this.equals(r[o+1],t[s+1],n);)s++,o++,c++,n.oneChangePerToken&&(e.lastComponent={count:1,previousComponent:e.lastComponent,added:!1,removed:!1});return c&&!n.oneChangePerToken&&(e.lastComponent={count:c,previousComponent:e.lastComponent,added:!1,removed:!1}),e.oldPos=o,s}equals(e,t,r){return r.comparator?r.comparator(e,t):e===t||!!r.ignoreCase&&e.toLowerCase()===t.toLowerCase()}removeEmpty(e){let t=[];for(let r=0;r<e.length;r++)e[r]&&t.push(e[r]);return t}castInput(e,t){return e}tokenize(e,t){return Array.from(e)}join(e){return e.join("")}postProcess(e,t){return e}get useLongestToken(){return!1}buildValues(e,t,r){let u=[],n;for(;e;)u.push(e),n=e.previousComponent,delete e.previousComponent,e=n;u.reverse();let a=u.length,i=0,o=0,s=0;for(;i<a;i++){let c=u[i];if(c.removed)c.value=this.join(r.slice(s,s+c.count)),s+=c.count;else{if(!c.added&&this.useLongestToken){let l=t.slice(o,o+c.count);l=l.map(function(D,f){let d=r[s+f];return d.length>D.length?d:D}),c.value=this.join(l)}else c.value=this.join(t.slice(o,o+c.count));o+=c.count,c.added||(s+=c.count)}}return u}},zc=class extends Ii{constructor(){super(...arguments),this.tokenize=Xc}equals(e,t,r){return r.ignoreWhitespace?((!r.newlineIsToken||!e.includes(`
607
622
  `))&&(e=e.trim()),(!r.newlineIsToken||!t.includes(`
608
623
  `))&&(t=t.trim())):r.ignoreNewlineAtEof&&!r.newlineIsToken&&(e.endsWith(`
609
624
  `)&&(e=e.slice(0,-1)),t.endsWith(`
610
- `)&&(t=t.slice(0,-1))),super.equals(e,t,r)}},Kc=new Vc;function _a(e,t,r){return Kc.diff(e,t,r)}function zc(e,t){t.stripTrailingCr&&(e=e.replace(/\r\n/g,`
611
- `));let r=[],u=e.split(/(\n|\r\n)/);u[u.length-1]||u.pop();for(let n=0;n<u.length;n++){let a=u[n];n%2&&!t.newlineIsToken?r[r.length-1]+=a:r.push(a)}return r}var Yc=class extends Ti{tokenize(e){return e.slice()}join(e){return e}removeEmpty(e){return e}},Xc=new Yc;function Jc(e,t,r){return Xc.diff(e,t,r)}function ba(e,t,r,u,n,a,i){let o;i?typeof i=="function"?o={callback:i}:o=i:o={},typeof o.context>"u"&&(o.context=4);let s=o.context;if(o.newlineIsToken)throw new Error("newlineIsToken may not be used with patch-generation functions, only with diffing functions");if(o.callback){let{callback:l}=o;_a(r,u,Object.assign(Object.assign({},o),{callback:D=>{let f=c(D);l(f)}}))}else return c(_a(r,u,o));function c(l){if(!l)return;l.push({value:"",lines:[]});function D(m){return m.map(function(C){return" "+C})}let f=[],h=0,d=0,p=[],v=1,y=1;for(let m=0;m<l.length;m++){let C=l[m],S=C.lines||Zc(C.value);if(C.lines=S,C.added||C.removed){if(!h){let F=l[m-1];h=v,d=y,F&&(p=s>0?D(F.lines.slice(-s)):[],h-=p.length,d-=p.length)}for(let F of S)p.push((C.added?"+":"-")+F);C.added?y+=S.length:v+=S.length}else{if(h)if(S.length<=s*2&&m<l.length-2)for(let F of D(S))p.push(F);else{let F=Math.min(S.length,s);for(let P of D(S.slice(0,F)))p.push(P);let B={oldStart:h,oldLines:v-h+F,newStart:d,newLines:y-d+F,lines:p};f.push(B),h=0,d=0,p=[]}v+=S.length,y+=S.length}}for(let m of f)for(let C=0;C<m.lines.length;C++)m.lines[C].endsWith(`
612
- `)?m.lines[C]=m.lines[C].slice(0,-1):(m.lines.splice(C+1,0,"\"),C++);return{oldFileName:e,newFileName:t,oldHeader:n,newHeader:a,hunks:f}}}function qu(e){if(Array.isArray(e))return e.map(qu).join(`
625
+ `)&&(t=t.slice(0,-1))),super.equals(e,t,r)}},Yc=new zc;function Ba(e,t,r){return Yc.diff(e,t,r)}function Xc(e,t){t.stripTrailingCr&&(e=e.replace(/\r\n/g,`
626
+ `));let r=[],u=e.split(/(\n|\r\n)/);u[u.length-1]||u.pop();for(let n=0;n<u.length;n++){let a=u[n];n%2&&!t.newlineIsToken?r[r.length-1]+=a:r.push(a)}return r}var Jc=class extends Ii{tokenize(e){return e.slice()}join(e){return e}removeEmpty(e){return e}},Qc=new Jc;function Zc(e,t,r){return Qc.diff(e,t,r)}function wa(e,t,r,u,n,a,i){let o;i?typeof i=="function"?o={callback:i}:o=i:o={},typeof o.context>"u"&&(o.context=4);let s=o.context;if(o.newlineIsToken)throw new Error("newlineIsToken may not be used with patch-generation functions, only with diffing functions");if(o.callback){let{callback:l}=o;Ba(r,u,Object.assign(Object.assign({},o),{callback:D=>{let f=c(D);l(f)}}))}else return c(Ba(r,u,o));function c(l){if(!l)return;l.push({value:"",lines:[]});function D(E){return E.map(function(C){return" "+C})}let f=[],d=0,p=0,h=[],v=1,y=1;for(let E=0;E<l.length;E++){let C=l[E],S=C.lines||t0(C.value);if(C.lines=S,C.added||C.removed){if(!d){let g=l[E-1];d=v,p=y,g&&(h=s>0?D(g.lines.slice(-s)):[],d-=h.length,p-=h.length)}for(let g of S)h.push((C.added?"+":"-")+g);C.added?y+=S.length:v+=S.length}else{if(d)if(S.length<=s*2&&E<l.length-2)for(let g of D(S))h.push(g);else{let g=Math.min(S.length,s);for(let x of D(S.slice(0,g)))h.push(x);let B={oldStart:d,oldLines:v-d+g,newStart:p,newLines:y-p+g,lines:h};f.push(B),d=0,p=0,h=[]}v+=S.length,y+=S.length}}for(let E of f)for(let C=0;C<E.lines.length;C++)E.lines[C].endsWith(`
627
+ `)?E.lines[C]=E.lines[C].slice(0,-1):(E.lines.splice(C+1,0,"\"),C++);return{oldFileName:e,newFileName:t,oldHeader:n,newHeader:a,hunks:f}}}function Ku(e){if(Array.isArray(e))return e.map(Ku).join(`
613
628
  `);let t=[];e.oldFileName==e.newFileName&&t.push("Index: "+e.oldFileName),t.push("==================================================================="),t.push("--- "+e.oldFileName+(typeof e.oldHeader>"u"?"":" "+e.oldHeader)),t.push("+++ "+e.newFileName+(typeof e.newHeader>"u"?"":" "+e.newHeader));for(let r=0;r<e.hunks.length;r++){let u=e.hunks[r];u.oldLines===0&&(u.oldStart-=1),u.newLines===0&&(u.newStart-=1),t.push("@@ -"+u.oldStart+","+u.oldLines+" +"+u.newStart+","+u.newLines+" @@");for(let n of u.lines)t.push(n)}return t.join(`
614
629
  `)+`
615
- `}function Qc(e,t,r,u,n,a,i){if(typeof i=="function"&&(i={callback:i}),i?.callback){let{callback:o}=i;ba(e,t,r,u,n,a,Object.assign(Object.assign({},i),{callback:s=>{o(s?qu(s):void 0)}}))}else{let o=ba(e,t,r,u,n,a,i);return o?qu(o):void 0}}function Zc(e){let t=e.endsWith(`
630
+ `}function e0(e,t,r,u,n,a,i){if(typeof i=="function"&&(i={callback:i}),i?.callback){let{callback:o}=i;wa(e,t,r,u,n,a,Object.assign(Object.assign({},i),{callback:s=>{o(s?Ku(s):void 0)}}))}else{let o=wa(e,t,r,u,n,a,i);return o?Ku(o):void 0}}function t0(e){let t=e.endsWith(`
616
631
  `),r=e.split(`
617
632
  `).map(u=>u+`
618
- `);return t?r.pop():r.push(r.pop().slice(0,-1)),r}var e0=We(yc(),1),Pu=[],Ba=[];function Ii(e,t){if(e===t)return 0;let r=e;e.length>t.length&&(e=t,t=r);let u=e.length,n=t.length;for(;u>0&&e.charCodeAt(~-u)===t.charCodeAt(~-n);)u--,n--;let a=0;for(;a<u&&e.charCodeAt(a)===t.charCodeAt(a);)a++;if(u-=a,n-=a,u===0)return n;let i,o,s,c,l=0,D=0;for(;l<u;)Ba[l]=e.charCodeAt(a+l),Pu[l]=++l;for(;D<n;)for(i=t.charCodeAt(a+D),s=D++,o=D,l=0;l<u;l++)c=i===Ba[l]?s:s+1,s=Pu[l],o=Pu[l]=s>o?c>o?o+1:c:c>s?s+1:c;return o}var t0=We(vr(),1),Mt={key:e=>/^[$_a-zA-Z][$_a-zA-Z0-9]*$/.test(e)?e:JSON.stringify(e),value(e){if(e===null||typeof e!="object")return JSON.stringify(e);if(Array.isArray(e))return`[${e.map(r=>Mt.value(r)).join(", ")}]`;let t=Object.keys(e);return t.length===0?"{}":`{ ${t.map(r=>`${Mt.key(r)}: ${Mt.value(e[r])}`).join(", ")} }`},pair:({key:e,value:t})=>Mt.value({[e]:t})},wa=We(vr(),1),r0=(e,t,{descriptor:r})=>{let u=[`${wa.default.yellow(typeof e=="string"?r.key(e):r.pair(e))} is deprecated`];return t&&u.push(`we now treat it as ${wa.default.blue(typeof t=="string"?r.key(t):r.pair(t))}`),u.join("; ")+"."},Xt=We(vr(),1),Ni=Symbol.for("vnopts.VALUE_NOT_EXIST"),xr=Symbol.for("vnopts.VALUE_UNCHANGED"),Sa=" ".repeat(2),u0=(e,t,r)=>{let{text:u,list:n}=r.normalizeExpectedResult(r.schemas[e].expected(r)),a=[];return u&&a.push(ka(e,t,u,r.descriptor)),n&&a.push([ka(e,t,n.title,r.descriptor)].concat(n.values.map(i=>Li(i,r.loggerPrintWidth))).join(`
619
- `)),xi(a,r.loggerPrintWidth)};function ka(e,t,r,u){return[`Invalid ${Xt.default.red(u.key(e))} value.`,`Expected ${Xt.default.blue(r)},`,`but received ${t===Ni?Xt.default.gray("nothing"):Xt.default.red(u.value(t))}.`].join(" ")}function Li({text:e,list:t},r){let u=[];return e&&u.push(`- ${Xt.default.blue(e)}`),t&&u.push([`- ${Xt.default.blue(t.title)}:`].concat(t.values.map(n=>Li(n,r-Sa.length).replace(/^|\n/g,`$&${Sa}`))).join(`
620
- `)),xi(u,r)}function xi(e,t){if(e.length===1)return e[0];let[r,u]=e,[n,a]=e.map(i=>i.split(`
621
- `,1)[0].length);return n>t&&n>a?u:r}var Ra=We(vr(),1),ji=(e,t,{descriptor:r,logger:u,schemas:n})=>{let a=[`Ignored unknown option ${Ra.default.yellow(r.pair({key:e,value:t}))}.`],i=Object.keys(n).sort().find(o=>Ii(e,o)<3);i&&a.push(`Did you mean ${Ra.default.blue(r.key(i))}?`),u.warn(a.join(" "))},n0=["default","expected","validate","deprecated","forward","redirect","overlap","preprocess","postprocess"];function a0(e,t){let r=new e(t),u=Object.create(r);for(let n of n0)n in t&&(u[n]=i0(t[n],r,bt.prototype[n].length));return u}var bt=class{static create(e){return a0(this,e)}constructor(e){this.name=e.name}default(e){}expected(e){return"nothing"}validate(e,t){return!1}deprecated(e,t){return!1}forward(e,t){}redirect(e,t){}overlap(e,t,r){return e}preprocess(e,t){return e}postprocess(e,t){return xr}};function i0(e,t,r){return typeof e=="function"?(...u)=>e(...u.slice(0,r-1),t,...u.slice(r-1)):()=>e}var o0=class extends bt{constructor(e){super(e),this._sourceName=e.sourceName}expected(e){return e.schemas[this._sourceName].expected(e)}validate(e,t){return t.schemas[this._sourceName].validate(e,t)}redirect(e,t){return this._sourceName}},s0=class extends bt{expected(){return"anything"}validate(){return!0}},l0=class extends bt{constructor({valueSchema:e,name:t=e.name,...r}){super({...r,name:t}),this._valueSchema=e}expected(e){let{text:t,list:r}=e.normalizeExpectedResult(this._valueSchema.expected(e));return{text:t&&`an array of ${t}`,list:r&&{title:"an array of the following values",values:[{list:r}]}}}validate(e,t){if(!Array.isArray(e))return!1;let r=[];for(let u of e){let n=t.normalizeValidateResult(this._valueSchema.validate(u,t),u);n!==!0&&r.push(n.value)}return r.length===0?!0:{value:r}}deprecated(e,t){let r=[];for(let u of e){let n=t.normalizeDeprecatedResult(this._valueSchema.deprecated(u,t),u);n!==!1&&r.push(...n.map(({value:a})=>({value:[a]})))}return r}forward(e,t){let r=[];for(let u of e){let n=t.normalizeForwardResult(this._valueSchema.forward(u,t),u);r.push(...n.map(Pa))}return r}redirect(e,t){let r=[],u=[];for(let n of e){let a=t.normalizeRedirectResult(this._valueSchema.redirect(n,t),n);"remain"in a&&r.push(a.remain),u.push(...a.redirect.map(Pa))}return r.length===0?{redirect:u}:{redirect:u,remain:r}}overlap(e,t){return e.concat(t)}};function Pa({from:e,to:t}){return{from:[e],to:t}}var c0=class extends bt{expected(){return"true or false"}validate(e){return typeof e=="boolean"}};function D0(e,t){let r=Object.create(null);for(let u of e){let n=u[t];if(r[n])throw new Error(`Duplicate ${t} ${JSON.stringify(n)}`);r[n]=u}return r}function f0(e,t){let r=new Map;for(let u of e){let n=u[t];if(r.has(n))throw new Error(`Duplicate ${t} ${JSON.stringify(n)}`);r.set(n,u)}return r}function d0(){let e=Object.create(null);return t=>{let r=JSON.stringify(t);return e[r]?!0:(e[r]=!0,!1)}}function h0(e,t){let r=[],u=[];for(let n of e)t(n)?r.push(n):u.push(n);return[r,u]}function p0(e){return e===Math.floor(e)}function F0(e,t){if(e===t)return 0;let r=typeof e,u=typeof t,n=["undefined","object","boolean","number","string"];return r!==u?n.indexOf(r)-n.indexOf(u):r!=="string"?Number(e)-Number(t):e.localeCompare(t)}function g0(e){return(...t)=>{let r=e(...t);return typeof r=="string"?new Error(r):r}}function Oa(e){return e===void 0?{}:e}function $i(e){if(typeof e=="string")return{text:e};let{text:t,list:r}=e;return E0((t||r)!==void 0,"Unexpected `expected` result, there should be at least one field."),r?{text:t,list:{title:r.title,values:r.values.map($i)}}:{text:t}}function Ta(e,t){return e===!0?!0:e===!1?{value:t}:e}function Ia(e,t,r=!1){return e===!1?!1:e===!0?r?!0:[{value:t}]:"value"in e?[e]:e.length===0?!1:e}function Na(e,t){return typeof e=="string"||"key"in e?{from:t,to:e}:"from"in e?{from:e.from,to:e.to}:{from:t,to:e.to}}function Vu(e,t){return e===void 0?[]:Array.isArray(e)?e.map(r=>Na(r,t)):[Na(e,t)]}function La(e,t){let r=Vu(typeof e=="object"&&"redirect"in e?e.redirect:e,t);return r.length===0?{remain:t,redirect:r}:typeof e=="object"&&"remain"in e?{remain:e.remain,redirect:r}:{redirect:r}}function E0(e,t){if(!e)throw new Error(t)}var Mi=class extends bt{constructor(e){super(e),this._choices=f0(e.choices.map(t=>t&&typeof t=="object"?t:{value:t}),"value")}expected({descriptor:e}){let t=Array.from(this._choices.keys()).map(a=>this._choices.get(a)).filter(({hidden:a})=>!a).map(a=>a.value).sort(F0).map(e.value),r=t.slice(0,-2),u=t.slice(-2);return{text:r.concat(u.join(" or ")).join(", "),list:{title:"one of the following values",values:t}}}validate(e){return this._choices.has(e)}deprecated(e){let t=this._choices.get(e);return t&&t.deprecated?{value:e}:!1}forward(e){let t=this._choices.get(e);return t?t.forward:void 0}redirect(e){let t=this._choices.get(e);return t?t.redirect:void 0}},m0=class extends bt{expected(){return"a number"}validate(e,t){return typeof e=="number"}},C0=class extends m0{expected(){return"an integer"}validate(e,t){return t.normalizeValidateResult(super.validate(e,t),e)===!0&&p0(e)}},xa=class extends bt{expected(){return"a string"}validate(e){return typeof e=="string"}},v0=Mt,A0=ji,y0=u0,_0=r0,b0=class{constructor(e,t){let{logger:r=console,loggerPrintWidth:u=80,descriptor:n=v0,unknown:a=A0,invalid:i=y0,deprecated:o=_0,missing:s=()=>!1,required:c=()=>!1,preprocess:l=f=>f,postprocess:D=()=>xr}=t||{};this._utils={descriptor:n,logger:r||{warn:()=>{}},loggerPrintWidth:u,schemas:D0(e,"name"),normalizeDefaultResult:Oa,normalizeExpectedResult:$i,normalizeDeprecatedResult:Ia,normalizeForwardResult:Vu,normalizeRedirectResult:La,normalizeValidateResult:Ta},this._unknownHandler=a,this._invalidHandler=g0(i),this._deprecatedHandler=o,this._identifyMissing=(f,h)=>!(f in h)||s(f,h),this._identifyRequired=c,this._preprocess=l,this._postprocess=D,this.cleanHistory()}cleanHistory(){this._hasDeprecationWarned=d0()}normalize(e){let t={},u=[this._preprocess(e,this._utils)],n=()=>{for(;u.length!==0;){let a=u.shift(),i=this._applyNormalization(a,t);u.push(...i)}};n();for(let a of Object.keys(this._utils.schemas)){let i=this._utils.schemas[a];if(!(a in t)){let o=Oa(i.default(this._utils));"value"in o&&u.push({[a]:o.value})}}n();for(let a of Object.keys(this._utils.schemas)){if(!(a in t))continue;let i=this._utils.schemas[a],o=t[a],s=i.postprocess(o,this._utils);s!==xr&&(this._applyValidation(s,a,i),t[a]=s)}return this._applyPostprocess(t),this._applyRequiredCheck(t),t}_applyNormalization(e,t){let r=[],{knownKeys:u,unknownKeys:n}=this._partitionOptionKeys(e);for(let a of u){let i=this._utils.schemas[a],o=i.preprocess(e[a],this._utils);this._applyValidation(o,a,i);let s=({from:f,to:h})=>{r.push(typeof h=="string"?{[h]:f}:{[h.key]:h.value})},c=({value:f,redirectTo:h})=>{let d=Ia(i.deprecated(f,this._utils),o,!0);if(d!==!1)if(d===!0)this._hasDeprecationWarned(a)||this._utils.logger.warn(this._deprecatedHandler(a,h,this._utils));else for(let{value:p}of d){let v={key:a,value:p};if(!this._hasDeprecationWarned(v)){let y=typeof h=="string"?{key:h,value:p}:h;this._utils.logger.warn(this._deprecatedHandler(v,y,this._utils))}}};Vu(i.forward(o,this._utils),o).forEach(s);let D=La(i.redirect(o,this._utils),o);if(D.redirect.forEach(s),"remain"in D){let f=D.remain;t[a]=a in t?i.overlap(t[a],f,this._utils):f,c({value:f})}for(let{from:f,to:h}of D.redirect)c({value:f,redirectTo:h})}for(let a of n){let i=e[a];this._applyUnknownHandler(a,i,t,(o,s)=>{r.push({[o]:s})})}return r}_applyRequiredCheck(e){for(let t of Object.keys(this._utils.schemas))if(this._identifyMissing(t,e)&&this._identifyRequired(t))throw this._invalidHandler(t,Ni,this._utils)}_partitionOptionKeys(e){let[t,r]=h0(Object.keys(e).filter(u=>!this._identifyMissing(u,e)),u=>u in this._utils.schemas);return{knownKeys:t,unknownKeys:r}}_applyValidation(e,t,r){let u=Ta(r.validate(e,this._utils),e);if(u!==!0)throw this._invalidHandler(t,u.value,this._utils)}_applyUnknownHandler(e,t,r,u){let n=this._unknownHandler(e,t,this._utils);if(n)for(let a of Object.keys(n)){if(this._identifyMissing(a,n))continue;let i=n[a];a in this._utils.schemas?u(a,i):r[a]=i}}_applyPostprocess(e){let t=this._postprocess(e,this._utils);if(t!==xr){if(t.delete)for(let r of t.delete)delete e[r];if(t.override){let{knownKeys:r,unknownKeys:u}=this._partitionOptionKeys(t.override);for(let n of r){let a=t.override[n];this._applyValidation(a,n,this._utils.schemas[n]),e[n]=a}for(let n of u){let a=t.override[n];this._applyUnknownHandler(n,a,e,(i,o)=>{let s=this._utils.schemas[i];this._applyValidation(o,i,s),e[i]=o})}}}}},Hi={};Cr(Hi,{ArgExpansionBailout:()=>B0,ConfigError:()=>Cn,UndefinedParserError:()=>Ku});var Cn=class extends Error{name="ConfigError"},Ku=class extends Error{name="UndefinedParserError"},B0=class extends Error{name="ArgExpansionBailout"};function w0(e){let t={...e},r=(a,i)=>{if(!Object.prototype.hasOwnProperty.call(e,a))throw new Error(`Unexpected mock '${a}'.`);t[a]=i};return{mocked:t,implementations:e,mockImplementation:r,mockImplementations:a=>{for(let[i,o]of Object.entries(a))r(i,o)},mockRestore:()=>{Object.assign(t,e)}}}var Wi=w0,Gi=Wi({getPrettierConfigSearchStopDirectory:()=>{}}),S0=Gi.mocked,ja=We(yi(),1),k0="file:",R0=e=>e instanceof URL,qi=e=>typeof e=="string"&&e.startsWith(k0),uu=e=>R0(e)||qi(e),nu=e=>uu(e)?vn.fileURLToPath(e):e,zu=e=>e&&Ui.resolve(uu(e)?vn.fileURLToPath(e):e);function P0(e,t){let r=[[],[]];for(let u of e)r[t(u)?0:1].push(u);return r}var O0=P0,T0=We(jc(),1),N0=e=>e?.isFile(),L0=e=>e?.isDirectory();async function Yi(e,{typeCheck:t,cwd:r,allowSymlinks:u=!0,filter:n}){let a=zu(r)??I0.cwd(),i=Array.isArray(e)?e:[e];for(let o of i){let s=zi.join(a,o),c=await x0(s,u);if(await t(c)&&(!n||await n({name:o,path:s,stats:c})))return s}}async function x0(e,t=!0){try{return await(t?au.stat:au.lstat)(e)}catch{}}function j0(e,t){return Yi(e,{...t,typeCheck:N0})}function $0(e,t){return Yi(e,{...t,typeCheck:L0})}function*H0(e,t){let r=zu(e)??M0.cwd(),u=zu(t);if(u){let n=nr.relative(u,r);if(n[0]==="."||n===r)return}for(u=u?r.slice(0,u.length):nr.parse(r).root;r!==u;)yield r,r=nr.dirname(r);yield u}var W0=H0,jr,$r,Yr,Xr,Yu,Xi,Ji=class{constructor(e,{allowSymlinks:t,filter:r,stopDirectory:u,cache:n}={}){we(this,Yu),we(this,jr),we(this,$r),we(this,Yr,new Map),we(this,Xr),Uu(this,"findInDirectory"),Ee(this,jr,u),Ee(this,$r,n??!0),Ee(this,Xr,a=>this.findInDirectory(e,{cwd:a,filter:r,allowSymlinks:t}))}async search(e,t){for(let r of W0(e,ue(this,jr))){let u=await Et(this,Yu,Xi).call(this,r,t?.cache??ue(this,$r));if(u)return u}}clearCache(){ue(this,Yr).clear()}};jr=new WeakMap;$r=new WeakMap;Yr=new WeakMap;Xr=new WeakMap;Yu=new WeakSet;Xi=function(e,t=!0){let r=ue(this,Yr);return(!t||!r.has(e))&&r.set(e,ue(this,Xr).call(this,e)),r.get(e)};var G0=class extends Ji{findInDirectory=j0},U0=class extends Ji{findInDirectory=$0},q0=[".git",".hg"],hr;async function V0(e,t){hr??(hr=new U0(q0,{allowSymlinks:!1}));let r=await hr.search(e,{cache:t.shouldCache});return r?Ki.dirname(r):void 0}function K0(){hr?.clearCache()}function z0(e){let t={},r=Object.keys(e);for(let u=0;u<r.length;u++){let n=r[u];e[n]!=="unset"&&(t[n]=e[n])}return t}function Y0(e){if(!e||(e=z0(e),Object.keys(e).length===0))return null;let t={};return e.indent_style&&(t.useTabs=e.indent_style==="tab"),e.indent_size==="tab"&&(t.useTabs=!0),t.useTabs&&e.tab_width?t.tabWidth=e.tab_width:e.indent_style==="space"&&e.indent_size&&e.indent_size!=="tab"?t.tabWidth=e.indent_size:e.tab_width!==void 0&&(t.tabWidth=e.tab_width),e.max_line_length&&(e.max_line_length==="off"?t.printWidth=Number.POSITIVE_INFINITY:t.printWidth=e.max_line_length),e.quote_type==="single"?t.singleQuote=!0:e.quote_type==="double"&&(t.singleQuote=!1),["cr","crlf","lf"].includes(e.end_of_line)&&(t.endOfLine=e.end_of_line),t}var X0=Y0,Mr=new Map;function J0(){K0(),Mr.clear()}async function Q0(e,{shouldCache:t}){let r=Vi.dirname(e),u=await V0(r,{shouldCache:t}),n=await T0.default.parse(e,{root:u});return X0(n)}function Z0(e,{shouldCache:t}){return e=Vi.resolve(e),(!t||!Mr.has(e))&&Mr.set(e,Q0(e,{shouldCache:t})),Mr.get(e)}var tD=/[\u1680\u2000-\u200A\u202F\u205F\u3000]/,rD=/[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u08A0-\u08B4\u08B6-\u08BD\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312E\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FEA\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AE\uA7B0-\uA7B7\uA7F7-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF4A\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE33\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2]|\uD804[\uDC03-\uDC37\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDF00-\uDF19]|\uD806[\uDCA0-\uDCDF\uDCFF\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE83\uDE86-\uDE89\uDEC0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD81C-\uD820\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF44\uDF50\uDF93-\uDF9F\uDFE0\uDFE1]|\uD821[\uDC00-\uDFEC]|\uD822[\uDC00-\uDEF2]|\uD82C[\uDC00-\uDD1E\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]/,uD=/[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0300-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u0483-\u0487\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u05D0-\u05EA\u05F0-\u05F2\u0610-\u061A\u0620-\u0669\u066E-\u06D3\u06D5-\u06DC\u06DF-\u06E8\u06EA-\u06FC\u06FF\u0710-\u074A\u074D-\u07B1\u07C0-\u07F5\u07FA\u0800-\u082D\u0840-\u085B\u0860-\u086A\u08A0-\u08B4\u08B6-\u08BD\u08D4-\u08E1\u08E3-\u0963\u0966-\u096F\u0971-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09F1\u09FC\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A75\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AEF\u0AF9-\u0AFF\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3C-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B66-\u0B6F\u0B71\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BEF\u0C00-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58-\u0C5A\u0C60-\u0C63\u0C66-\u0C6F\u0C80-\u0C83\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1\u0CF2\u0D00-\u0D03\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D44\u0D46-\u0D48\u0D4A-\u0D4E\u0D54-\u0D57\u0D5F-\u0D63\u0D66-\u0D6F\u0D7A-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2\u0DF3\u0E01-\u0E3A\u0E40-\u0E4E\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB9\u0EBB-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECD\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E-\u0F47\u0F49-\u0F6C\u0F71-\u0F84\u0F86-\u0F97\u0F99-\u0FBC\u0FC6\u1000-\u1049\u1050-\u109D\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u135F\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1714\u1720-\u1734\u1740-\u1753\u1760-\u176C\u176E-\u1770\u1772\u1773\u1780-\u17D3\u17D7\u17DC\u17DD\u17E0-\u17E9\u180B-\u180D\u1810-\u1819\u1820-\u1877\u1880-\u18AA\u18B0-\u18F5\u1900-\u191E\u1920-\u192B\u1930-\u193B\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19D9\u1A00-\u1A1B\u1A20-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA7\u1AB0-\u1ABD\u1B00-\u1B4B\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1BF3\u1C00-\u1C37\u1C40-\u1C49\u1C4D-\u1C7D\u1C80-\u1C88\u1CD0-\u1CD2\u1CD4-\u1CF9\u1D00-\u1DF9\u1DFB-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u203F\u2040\u2054\u2071\u207F\u2090-\u209C\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D7F-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2DE0-\u2DFF\u2E2F\u3005-\u3007\u3021-\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u3099\u309A\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312E\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FEA\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66F\uA674-\uA67D\uA67F-\uA6F1\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AE\uA7B0-\uA7B7\uA7F7-\uA827\uA840-\uA873\uA880-\uA8C5\uA8D0-\uA8D9\uA8E0-\uA8F7\uA8FB\uA8FD\uA900-\uA92D\uA930-\uA953\uA960-\uA97C\uA980-\uA9C0\uA9CF-\uA9D9\uA9E0-\uA9FE\uAA00-\uAA36\uAA40-\uAA4D\uAA50-\uAA59\uAA60-\uAA76\uAA7A-\uAAC2\uAADB-\uAADD\uAAE0-\uAAEF\uAAF2-\uAAF6\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABEA\uABEC\uABED\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE00-\uFE0F\uFE20-\uFE2F\uFE33\uFE34\uFE4D-\uFE4F\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF3F\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDDFD\uDE80-\uDE9C\uDEA0-\uDED0\uDEE0\uDF00-\uDF1F\uDF2D-\uDF4A\uDF50-\uDF7A\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCA0-\uDCA9\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00-\uDE03\uDE05\uDE06\uDE0C-\uDE13\uDE15-\uDE17\uDE19-\uDE33\uDE38-\uDE3A\uDE3F\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE6\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2]|\uD804[\uDC00-\uDC46\uDC66-\uDC6F\uDC7F-\uDCBA\uDCD0-\uDCE8\uDCF0-\uDCF9\uDD00-\uDD34\uDD36-\uDD3F\uDD50-\uDD73\uDD76\uDD80-\uDDC4\uDDCA-\uDDCC\uDDD0-\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE37\uDE3E\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEEA\uDEF0-\uDEF9\uDF00-\uDF03\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3C-\uDF44\uDF47\uDF48\uDF4B-\uDF4D\uDF50\uDF57\uDF5D-\uDF63\uDF66-\uDF6C\uDF70-\uDF74]|\uD805[\uDC00-\uDC4A\uDC50-\uDC59\uDC80-\uDCC5\uDCC7\uDCD0-\uDCD9\uDD80-\uDDB5\uDDB8-\uDDC0\uDDD8-\uDDDD\uDE00-\uDE40\uDE44\uDE50-\uDE59\uDE80-\uDEB7\uDEC0-\uDEC9\uDF00-\uDF19\uDF1D-\uDF2B\uDF30-\uDF39]|\uD806[\uDCA0-\uDCE9\uDCFF\uDE00-\uDE3E\uDE47\uDE50-\uDE83\uDE86-\uDE99\uDEC0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC36\uDC38-\uDC40\uDC50-\uDC59\uDC72-\uDC8F\uDC92-\uDCA7\uDCA9-\uDCB6\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD36\uDD3A\uDD3C\uDD3D\uDD3F-\uDD47\uDD50-\uDD59]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD81C-\uD820\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE60-\uDE69\uDED0-\uDEED\uDEF0-\uDEF4\uDF00-\uDF36\uDF40-\uDF43\uDF50-\uDF59\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF44\uDF50-\uDF7E\uDF8F-\uDF9F\uDFE0\uDFE1]|\uD821[\uDC00-\uDFEC]|\uD822[\uDC00-\uDEF2]|\uD82C[\uDC00-\uDD1E\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99\uDC9D\uDC9E]|\uD834[\uDD65-\uDD69\uDD6D-\uDD72\uDD7B-\uDD82\uDD85-\uDD8B\uDDAA-\uDDAD\uDE42-\uDE44]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB\uDFCE-\uDFFF]|\uD836[\uDE00-\uDE36\uDE3B-\uDE6C\uDE75\uDE84\uDE9B-\uDE9F\uDEA1-\uDEAF]|\uD838[\uDC00-\uDC06\uDC08-\uDC18\uDC1B-\uDC21\uDC23\uDC24\uDC26-\uDC2A]|\uD83A[\uDC00-\uDCC4\uDCD0-\uDCD6\uDD00-\uDD4A\uDD50-\uDD59]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uDB40[\uDD00-\uDDEF]/,Ou={Space_Separator:tD,ID_Start:rD,ID_Continue:uD},me={isSpaceSeparator(e){return typeof e=="string"&&Ou.Space_Separator.test(e)},isIdStartChar(e){return typeof e=="string"&&(e>="a"&&e<="z"||e>="A"&&e<="Z"||e==="$"||e==="_"||Ou.ID_Start.test(e))},isIdContinueChar(e){return typeof e=="string"&&(e>="a"&&e<="z"||e>="A"&&e<="Z"||e>="0"&&e<="9"||e==="$"||e==="_"||e==="\u200C"||e==="\u200D"||Ou.ID_Continue.test(e))},isDigit(e){return typeof e=="string"&&/[0-9]/.test(e)},isHexDigit(e){return typeof e=="string"&&/[0-9A-Fa-f]/.test(e)}},Xu,Se,Ze,Jr,At,$e,Ce,yn,pr,nD=function(t,r){Xu=String(t),Se="start",Ze=[],Jr=0,At=1,$e=0,Ce=void 0,yn=void 0,pr=void 0;do Ce=aD(),sD[Se]();while(Ce.type!=="eof");return typeof r=="function"?Ju({"":pr},"",r):pr};function Ju(e,t,r){let u=e[t];if(u!=null&&typeof u=="object")if(Array.isArray(u))for(let n=0;n<u.length;n++){let a=String(n),i=Ju(u,a,r);i===void 0?delete u[a]:Object.defineProperty(u,a,{value:i,writable:!0,enumerable:!0,configurable:!0})}else for(let n in u){let a=Ju(u,n,r);a===void 0?delete u[n]:Object.defineProperty(u,n,{value:a,writable:!0,enumerable:!0,configurable:!0})}return r.call(e,t,u)}var Z,Q,lr,Ye,re;function aD(){for(Z="default",Q="",lr=!1,Ye=1;;){re=et();let e=Qi[Z]();if(e)return e}}function et(){if(Xu[Jr])return String.fromCodePoint(Xu.codePointAt(Jr))}function $(){let e=et();return e===`
622
- `?(At++,$e=0):e?$e+=e.length:$e++,e&&(Jr+=e.length),e}var Qi={default(){switch(re){case" ":case"\v":case"\f":case" ":case"\xA0":case"\uFEFF":case`
623
- `:case"\r":case"\u2028":case"\u2029":$();return;case"/":$(),Z="comment";return;case void 0:return $(),De("eof")}if(me.isSpaceSeparator(re)){$();return}return Qi[Se]()},comment(){switch(re){case"*":$(),Z="multiLineComment";return;case"/":$(),Z="singleLineComment";return}throw fe($())},multiLineComment(){switch(re){case"*":$(),Z="multiLineCommentAsterisk";return;case void 0:throw fe($())}$()},multiLineCommentAsterisk(){switch(re){case"*":$();return;case"/":$(),Z="default";return;case void 0:throw fe($())}$(),Z="multiLineComment"},singleLineComment(){switch(re){case`
624
- `:case"\r":case"\u2028":case"\u2029":$(),Z="default";return;case void 0:return $(),De("eof")}$()},value(){switch(re){case"{":case"[":return De("punctuator",$());case"n":return $(),It("ull"),De("null",null);case"t":return $(),It("rue"),De("boolean",!0);case"f":return $(),It("alse"),De("boolean",!1);case"-":case"+":$()==="-"&&(Ye=-1),Z="sign";return;case".":Q=$(),Z="decimalPointLeading";return;case"0":Q=$(),Z="zero";return;case"1":case"2":case"3":case"4":case"5":case"6":case"7":case"8":case"9":Q=$(),Z="decimalInteger";return;case"I":return $(),It("nfinity"),De("numeric",1/0);case"N":return $(),It("aN"),De("numeric",NaN);case'"':case"'":lr=$()==='"',Q="",Z="string";return}throw fe($())},identifierNameStartEscape(){if(re!=="u")throw fe($());$();let e=Qu();switch(e){case"$":case"_":break;default:if(!me.isIdStartChar(e))throw $a();break}Q+=e,Z="identifierName"},identifierName(){switch(re){case"$":case"_":case"\u200C":case"\u200D":Q+=$();return;case"\\":$(),Z="identifierNameEscape";return}if(me.isIdContinueChar(re)){Q+=$();return}return De("identifier",Q)},identifierNameEscape(){if(re!=="u")throw fe($());$();let e=Qu();switch(e){case"$":case"_":case"\u200C":case"\u200D":break;default:if(!me.isIdContinueChar(e))throw $a();break}Q+=e,Z="identifierName"},sign(){switch(re){case".":Q=$(),Z="decimalPointLeading";return;case"0":Q=$(),Z="zero";return;case"1":case"2":case"3":case"4":case"5":case"6":case"7":case"8":case"9":Q=$(),Z="decimalInteger";return;case"I":return $(),It("nfinity"),De("numeric",Ye*(1/0));case"N":return $(),It("aN"),De("numeric",NaN)}throw fe($())},zero(){switch(re){case".":Q+=$(),Z="decimalPoint";return;case"e":case"E":Q+=$(),Z="decimalExponent";return;case"x":case"X":Q+=$(),Z="hexadecimal";return}return De("numeric",Ye*0)},decimalInteger(){switch(re){case".":Q+=$(),Z="decimalPoint";return;case"e":case"E":Q+=$(),Z="decimalExponent";return}if(me.isDigit(re)){Q+=$();return}return De("numeric",Ye*Number(Q))},decimalPointLeading(){if(me.isDigit(re)){Q+=$(),Z="decimalFraction";return}throw fe($())},decimalPoint(){switch(re){case"e":case"E":Q+=$(),Z="decimalExponent";return}if(me.isDigit(re)){Q+=$(),Z="decimalFraction";return}return De("numeric",Ye*Number(Q))},decimalFraction(){switch(re){case"e":case"E":Q+=$(),Z="decimalExponent";return}if(me.isDigit(re)){Q+=$();return}return De("numeric",Ye*Number(Q))},decimalExponent(){switch(re){case"+":case"-":Q+=$(),Z="decimalExponentSign";return}if(me.isDigit(re)){Q+=$(),Z="decimalExponentInteger";return}throw fe($())},decimalExponentSign(){if(me.isDigit(re)){Q+=$(),Z="decimalExponentInteger";return}throw fe($())},decimalExponentInteger(){if(me.isDigit(re)){Q+=$();return}return De("numeric",Ye*Number(Q))},hexadecimal(){if(me.isHexDigit(re)){Q+=$(),Z="hexadecimalInteger";return}throw fe($())},hexadecimalInteger(){if(me.isHexDigit(re)){Q+=$();return}return De("numeric",Ye*Number(Q))},string(){switch(re){case"\\":$(),Q+=iD();return;case'"':if(lr)return $(),De("string",Q);Q+=$();return;case"'":if(!lr)return $(),De("string",Q);Q+=$();return;case`
625
- `:case"\r":throw fe($());case"\u2028":case"\u2029":lD(re);break;case void 0:throw fe($())}Q+=$()},start(){switch(re){case"{":case"[":return De("punctuator",$())}Z="value"},beforePropertyName(){switch(re){case"$":case"_":Q=$(),Z="identifierName";return;case"\\":$(),Z="identifierNameStartEscape";return;case"}":return De("punctuator",$());case'"':case"'":lr=$()==='"',Z="string";return}if(me.isIdStartChar(re)){Q+=$(),Z="identifierName";return}throw fe($())},afterPropertyName(){if(re===":")return De("punctuator",$());throw fe($())},beforePropertyValue(){Z="value"},afterPropertyValue(){switch(re){case",":case"}":return De("punctuator",$())}throw fe($())},beforeArrayValue(){if(re==="]")return De("punctuator",$());Z="value"},afterArrayValue(){switch(re){case",":case"]":return De("punctuator",$())}throw fe($())},end(){throw fe($())}};function De(e,t){return{type:e,value:t,line:At,column:$e}}function It(e){for(let t of e){if(et()!==t)throw fe($());$()}}function iD(){switch(et()){case"b":return $(),"\b";case"f":return $(),"\f";case"n":return $(),`
626
- `;case"r":return $(),"\r";case"t":return $()," ";case"v":return $(),"\v";case"0":if($(),me.isDigit(et()))throw fe($());return"\0";case"x":return $(),oD();case"u":return $(),Qu();case`
633
+ `);return t?r.pop():r.push(r.pop().slice(0,-1)),r}var r0=We(bc(),1),Ou=[],Sa=[];function Ni(e,t){if(e===t)return 0;let r=e;e.length>t.length&&(e=t,t=r);let u=e.length,n=t.length;for(;u>0&&e.charCodeAt(~-u)===t.charCodeAt(~-n);)u--,n--;let a=0;for(;a<u&&e.charCodeAt(a)===t.charCodeAt(a);)a++;if(u-=a,n-=a,u===0)return n;let i,o,s,c,l=0,D=0;for(;l<u;)Sa[l]=e.charCodeAt(a+l),Ou[l]=++l;for(;D<n;)for(i=t.charCodeAt(a+D),s=D++,o=D,l=0;l<u;l++)c=i===Sa[l]?s:s+1,s=Ou[l],o=Ou[l]=s>o?c>o?o+1:c:c>s?s+1:c;return o}var u0=We(Ar(),1),Mt={key:e=>/^[$_a-zA-Z][$_a-zA-Z0-9]*$/.test(e)?e:JSON.stringify(e),value(e){if(e===null||typeof e!="object")return JSON.stringify(e);if(Array.isArray(e))return`[${e.map(r=>Mt.value(r)).join(", ")}]`;let t=Object.keys(e);return t.length===0?"{}":`{ ${t.map(r=>`${Mt.key(r)}: ${Mt.value(e[r])}`).join(", ")} }`},pair:({key:e,value:t})=>Mt.value({[e]:t})},ka=We(Ar(),1),n0=(e,t,{descriptor:r})=>{let u=[`${ka.default.yellow(typeof e=="string"?r.key(e):r.pair(e))} is deprecated`];return t&&u.push(`we now treat it as ${ka.default.blue(typeof t=="string"?r.key(t):r.pair(t))}`),u.join("; ")+"."},Xt=We(Ar(),1),Li=Symbol.for("vnopts.VALUE_NOT_EXIST"),jr=Symbol.for("vnopts.VALUE_UNCHANGED"),Ra=" ".repeat(2),a0=(e,t,r)=>{let{text:u,list:n}=r.normalizeExpectedResult(r.schemas[e].expected(r)),a=[];return u&&a.push(xa(e,t,u,r.descriptor)),n&&a.push([xa(e,t,n.title,r.descriptor)].concat(n.values.map(i=>ji(i,r.loggerPrintWidth))).join(`
634
+ `)),$i(a,r.loggerPrintWidth)};function xa(e,t,r,u){return[`Invalid ${Xt.default.red(u.key(e))} value.`,`Expected ${Xt.default.blue(r)},`,`but received ${t===Li?Xt.default.gray("nothing"):Xt.default.red(u.value(t))}.`].join(" ")}function ji({text:e,list:t},r){let u=[];return e&&u.push(`- ${Xt.default.blue(e)}`),t&&u.push([`- ${Xt.default.blue(t.title)}:`].concat(t.values.map(n=>ji(n,r-Ra.length).replace(/^|\n/g,`$&${Ra}`))).join(`
635
+ `)),$i(u,r)}function $i(e,t){if(e.length===1)return e[0];let[r,u]=e,[n,a]=e.map(i=>i.split(`
636
+ `,1)[0].length);return n>t&&n>a?u:r}var Pa=We(Ar(),1),Mi=(e,t,{descriptor:r,logger:u,schemas:n})=>{let a=[`Ignored unknown option ${Pa.default.yellow(r.pair({key:e,value:t}))}.`],i=Object.keys(n).sort().find(o=>Ni(e,o)<3);i&&a.push(`Did you mean ${Pa.default.blue(r.key(i))}?`),u.warn(a.join(" "))},i0=["default","expected","validate","deprecated","forward","redirect","overlap","preprocess","postprocess"];function o0(e,t){let r=new e(t),u=Object.create(r);for(let n of i0)n in t&&(u[n]=s0(t[n],r,bt.prototype[n].length));return u}var bt=class{static create(e){return o0(this,e)}constructor(e){this.name=e.name}default(e){}expected(e){return"nothing"}validate(e,t){return!1}deprecated(e,t){return!1}forward(e,t){}redirect(e,t){}overlap(e,t,r){return e}preprocess(e,t){return e}postprocess(e,t){return jr}};function s0(e,t,r){return typeof e=="function"?(...u)=>e(...u.slice(0,r-1),t,...u.slice(r-1)):()=>e}var l0=class extends bt{constructor(e){super(e),this._sourceName=e.sourceName}expected(e){return e.schemas[this._sourceName].expected(e)}validate(e,t){return t.schemas[this._sourceName].validate(e,t)}redirect(e,t){return this._sourceName}},c0=class extends bt{expected(){return"anything"}validate(){return!0}},D0=class extends bt{constructor({valueSchema:e,name:t=e.name,...r}){super({...r,name:t}),this._valueSchema=e}expected(e){let{text:t,list:r}=e.normalizeExpectedResult(this._valueSchema.expected(e));return{text:t&&`an array of ${t}`,list:r&&{title:"an array of the following values",values:[{list:r}]}}}validate(e,t){if(!Array.isArray(e))return!1;let r=[];for(let u of e){let n=t.normalizeValidateResult(this._valueSchema.validate(u,t),u);n!==!0&&r.push(n.value)}return r.length===0?!0:{value:r}}deprecated(e,t){let r=[];for(let u of e){let n=t.normalizeDeprecatedResult(this._valueSchema.deprecated(u,t),u);n!==!1&&r.push(...n.map(({value:a})=>({value:[a]})))}return r}forward(e,t){let r=[];for(let u of e){let n=t.normalizeForwardResult(this._valueSchema.forward(u,t),u);r.push(...n.map(Oa))}return r}redirect(e,t){let r=[],u=[];for(let n of e){let a=t.normalizeRedirectResult(this._valueSchema.redirect(n,t),n);"remain"in a&&r.push(a.remain),u.push(...a.redirect.map(Oa))}return r.length===0?{redirect:u}:{redirect:u,remain:r}}overlap(e,t){return e.concat(t)}};function Oa({from:e,to:t}){return{from:[e],to:t}}var f0=class extends bt{expected(){return"true or false"}validate(e){return typeof e=="boolean"}};function p0(e,t){let r=Object.create(null);for(let u of e){let n=u[t];if(r[n])throw new Error(`Duplicate ${t} ${JSON.stringify(n)}`);r[n]=u}return r}function d0(e,t){let r=new Map;for(let u of e){let n=u[t];if(r.has(n))throw new Error(`Duplicate ${t} ${JSON.stringify(n)}`);r.set(n,u)}return r}function h0(){let e=Object.create(null);return t=>{let r=JSON.stringify(t);return e[r]?!0:(e[r]=!0,!1)}}function g0(e,t){let r=[],u=[];for(let n of e)t(n)?r.push(n):u.push(n);return[r,u]}function F0(e){return e===Math.floor(e)}function m0(e,t){if(e===t)return 0;let r=typeof e,u=typeof t,n=["undefined","object","boolean","number","string"];return r!==u?n.indexOf(r)-n.indexOf(u):r!=="string"?Number(e)-Number(t):e.localeCompare(t)}function E0(e){return(...t)=>{let r=e(...t);return typeof r=="string"?new Error(r):r}}function Ta(e){return e===void 0?{}:e}function Hi(e){if(typeof e=="string")return{text:e};let{text:t,list:r}=e;return C0((t||r)!==void 0,"Unexpected `expected` result, there should be at least one field."),r?{text:t,list:{title:r.title,values:r.values.map(Hi)}}:{text:t}}function Ia(e,t){return e===!0?!0:e===!1?{value:t}:e}function Na(e,t,r=!1){return e===!1?!1:e===!0?r?!0:[{value:t}]:"value"in e?[e]:e.length===0?!1:e}function La(e,t){return typeof e=="string"||"key"in e?{from:t,to:e}:"from"in e?{from:e.from,to:e.to}:{from:t,to:e.to}}function zu(e,t){return e===void 0?[]:Array.isArray(e)?e.map(r=>La(r,t)):[La(e,t)]}function ja(e,t){let r=zu(typeof e=="object"&&"redirect"in e?e.redirect:e,t);return r.length===0?{remain:t,redirect:r}:typeof e=="object"&&"remain"in e?{remain:e.remain,redirect:r}:{redirect:r}}function C0(e,t){if(!e)throw new Error(t)}var Wi=class extends bt{constructor(e){super(e),this._choices=d0(e.choices.map(t=>t&&typeof t=="object"?t:{value:t}),"value")}expected({descriptor:e}){let t=Array.from(this._choices.keys()).map(a=>this._choices.get(a)).filter(({hidden:a})=>!a).map(a=>a.value).sort(m0).map(e.value),r=t.slice(0,-2),u=t.slice(-2);return{text:r.concat(u.join(" or ")).join(", "),list:{title:"one of the following values",values:t}}}validate(e){return this._choices.has(e)}deprecated(e){let t=this._choices.get(e);return t&&t.deprecated?{value:e}:!1}forward(e){let t=this._choices.get(e);return t?t.forward:void 0}redirect(e){let t=this._choices.get(e);return t?t.redirect:void 0}},v0=class extends bt{expected(){return"a number"}validate(e,t){return typeof e=="number"}},A0=class extends v0{expected(){return"an integer"}validate(e,t){return t.normalizeValidateResult(super.validate(e,t),e)===!0&&F0(e)}},$a=class extends bt{expected(){return"a string"}validate(e){return typeof e=="string"}},y0=Mt,_0=Mi,b0=a0,B0=n0,w0=class{constructor(e,t){let{logger:r=console,loggerPrintWidth:u=80,descriptor:n=y0,unknown:a=_0,invalid:i=b0,deprecated:o=B0,missing:s=()=>!1,required:c=()=>!1,preprocess:l=f=>f,postprocess:D=()=>jr}=t||{};this._utils={descriptor:n,logger:r||{warn:()=>{}},loggerPrintWidth:u,schemas:p0(e,"name"),normalizeDefaultResult:Ta,normalizeExpectedResult:Hi,normalizeDeprecatedResult:Na,normalizeForwardResult:zu,normalizeRedirectResult:ja,normalizeValidateResult:Ia},this._unknownHandler=a,this._invalidHandler=E0(i),this._deprecatedHandler=o,this._identifyMissing=(f,d)=>!(f in d)||s(f,d),this._identifyRequired=c,this._preprocess=l,this._postprocess=D,this.cleanHistory()}cleanHistory(){this._hasDeprecationWarned=h0()}normalize(e){let t={},u=[this._preprocess(e,this._utils)],n=()=>{for(;u.length!==0;){let a=u.shift(),i=this._applyNormalization(a,t);u.push(...i)}};n();for(let a of Object.keys(this._utils.schemas)){let i=this._utils.schemas[a];if(!(a in t)){let o=Ta(i.default(this._utils));"value"in o&&u.push({[a]:o.value})}}n();for(let a of Object.keys(this._utils.schemas)){if(!(a in t))continue;let i=this._utils.schemas[a],o=t[a],s=i.postprocess(o,this._utils);s!==jr&&(this._applyValidation(s,a,i),t[a]=s)}return this._applyPostprocess(t),this._applyRequiredCheck(t),t}_applyNormalization(e,t){let r=[],{knownKeys:u,unknownKeys:n}=this._partitionOptionKeys(e);for(let a of u){let i=this._utils.schemas[a],o=i.preprocess(e[a],this._utils);this._applyValidation(o,a,i);let s=({from:f,to:d})=>{r.push(typeof d=="string"?{[d]:f}:{[d.key]:d.value})},c=({value:f,redirectTo:d})=>{let p=Na(i.deprecated(f,this._utils),o,!0);if(p!==!1)if(p===!0)this._hasDeprecationWarned(a)||this._utils.logger.warn(this._deprecatedHandler(a,d,this._utils));else for(let{value:h}of p){let v={key:a,value:h};if(!this._hasDeprecationWarned(v)){let y=typeof d=="string"?{key:d,value:h}:d;this._utils.logger.warn(this._deprecatedHandler(v,y,this._utils))}}};zu(i.forward(o,this._utils),o).forEach(s);let D=ja(i.redirect(o,this._utils),o);if(D.redirect.forEach(s),"remain"in D){let f=D.remain;t[a]=a in t?i.overlap(t[a],f,this._utils):f,c({value:f})}for(let{from:f,to:d}of D.redirect)c({value:f,redirectTo:d})}for(let a of n){let i=e[a];this._applyUnknownHandler(a,i,t,(o,s)=>{r.push({[o]:s})})}return r}_applyRequiredCheck(e){for(let t of Object.keys(this._utils.schemas))if(this._identifyMissing(t,e)&&this._identifyRequired(t))throw this._invalidHandler(t,Li,this._utils)}_partitionOptionKeys(e){let[t,r]=g0(Object.keys(e).filter(u=>!this._identifyMissing(u,e)),u=>u in this._utils.schemas);return{knownKeys:t,unknownKeys:r}}_applyValidation(e,t,r){let u=Ia(r.validate(e,this._utils),e);if(u!==!0)throw this._invalidHandler(t,u.value,this._utils)}_applyUnknownHandler(e,t,r,u){let n=this._unknownHandler(e,t,this._utils);if(n)for(let a of Object.keys(n)){if(this._identifyMissing(a,n))continue;let i=n[a];a in this._utils.schemas?u(a,i):r[a]=i}}_applyPostprocess(e){let t=this._postprocess(e,this._utils);if(t!==jr){if(t.delete)for(let r of t.delete)delete e[r];if(t.override){let{knownKeys:r,unknownKeys:u}=this._partitionOptionKeys(t.override);for(let n of r){let a=t.override[n];this._applyValidation(a,n,this._utils.schemas[n]),e[n]=a}for(let n of u){let a=t.override[n];this._applyUnknownHandler(n,a,e,(i,o)=>{let s=this._utils.schemas[i];this._applyValidation(o,i,s),e[i]=o})}}}}},Gi={};vr(Gi,{ArgExpansionBailout:()=>S0,ConfigError:()=>An,UndefinedParserError:()=>Yu});var An=class extends Error{name="ConfigError"},Yu=class extends Error{name="UndefinedParserError"},S0=class extends Error{name="ArgExpansionBailout"};function k0(e){let t={...e},r=(a,i)=>{if(!Object.prototype.hasOwnProperty.call(e,a))throw new Error(`Unexpected mock '${a}'.`);t[a]=i};return{mocked:t,implementations:e,mockImplementation:r,mockImplementations:a=>{for(let[i,o]of Object.entries(a))r(i,o)},mockRestore:()=>{Object.assign(t,e)}}}var Ui=k0,qi=Ui({getPrettierConfigSearchStopDirectory:()=>{}}),R0=qi.mocked,Ma=We(bi(),1),x0="file:",P0=e=>e instanceof URL,Ki=e=>typeof e=="string"&&e.startsWith(x0),nu=e=>P0(e)||Ki(e),au=e=>nu(e)?yn.fileURLToPath(e):e,Xu=e=>e&&Vi.resolve(nu(e)?yn.fileURLToPath(e):e);function O0(e,t){let r=[[],[]];for(let u of e)r[t(u)?0:1].push(u);return r}var T0=O0,I0=We(Mc(),1),L0=e=>e?.isFile(),j0=e=>e?.isDirectory();async function Ji(e,{typeCheck:t,cwd:r,allowSymlinks:u=!0,filter:n}){let a=Xu(r)??N0.cwd(),i=Array.isArray(e)?e:[e];for(let o of i){let s=Xi.join(a,o),c=await $0(s,u);if(await t(c)&&(!n||await n({name:o,path:s,stats:c})))return s}}async function $0(e,t=!0){try{return await(t?iu.stat:iu.lstat)(e)}catch{}}function M0(e,t){return Ji(e,{...t,typeCheck:L0})}function H0(e,t){return Ji(e,{...t,typeCheck:j0})}function*G0(e,t){let r=Xu(e)??W0.cwd(),u=Xu(t);if(u){let n=nr.relative(u,r);if(n[0]==="."||n===r)return}for(u=u?r.slice(0,u.length):nr.parse(r).root;r!==u;)yield r,r=nr.dirname(r);yield u}var U0=G0,$r,Mr,Xr,Jr,Ju,Qi,Zi=class{constructor(e,{allowSymlinks:t,filter:r,stopDirectory:u,cache:n}={}){we(this,Ju),we(this,$r),we(this,Mr),we(this,Xr,new Map),we(this,Jr),Vu(this,"findInDirectory"),me(this,$r,u),me(this,Mr,n??!0),me(this,Jr,a=>this.findInDirectory(e,{cwd:a,filter:r,allowSymlinks:t}))}async search(e,t){for(let r of U0(e,ue(this,$r))){let u=await mt(this,Ju,Qi).call(this,r,t?.cache??ue(this,Mr));if(u)return u}}clearCache(){ue(this,Xr).clear()}};$r=new WeakMap;Mr=new WeakMap;Xr=new WeakMap;Jr=new WeakMap;Ju=new WeakSet;Qi=function(e,t=!0){let r=ue(this,Xr);return(!t||!r.has(e))&&r.set(e,ue(this,Jr).call(this,e)),r.get(e)};var q0=class extends Zi{findInDirectory=M0},V0=class extends Zi{findInDirectory=H0},K0=[".git",".hg"],hr;async function z0(e,t){hr??(hr=new V0(K0,{allowSymlinks:!1}));let r=await hr.search(e,{cache:t.shouldCache});return r?Yi.dirname(r):void 0}function Y0(){hr?.clearCache()}function X0(e){let t={},r=Object.keys(e);for(let u=0;u<r.length;u++){let n=r[u];e[n]!=="unset"&&(t[n]=e[n])}return t}function J0(e){if(!e||(e=X0(e),Object.keys(e).length===0))return null;let t={};return e.indent_style&&(t.useTabs=e.indent_style==="tab"),e.indent_size==="tab"&&(t.useTabs=!0),t.useTabs&&e.tab_width?t.tabWidth=e.tab_width:e.indent_style==="space"&&e.indent_size&&e.indent_size!=="tab"?t.tabWidth=e.indent_size:e.tab_width!==void 0&&(t.tabWidth=e.tab_width),e.max_line_length&&(e.max_line_length==="off"?t.printWidth=Number.POSITIVE_INFINITY:t.printWidth=e.max_line_length),e.quote_type==="single"?t.singleQuote=!0:e.quote_type==="double"&&(t.singleQuote=!1),["cr","crlf","lf"].includes(e.end_of_line)&&(t.endOfLine=e.end_of_line),t}var Q0=J0,Hr=new Map;function Z0(){Y0(),Hr.clear()}async function eD(e,{shouldCache:t}){let r=zi.dirname(e),u=await z0(r,{shouldCache:t}),n=await I0.default.parse(e,{root:u});return Q0(n)}function tD(e,{shouldCache:t}){return e=zi.resolve(e),(!t||!Hr.has(e))&&Hr.set(e,eD(e,{shouldCache:t})),Hr.get(e)}var uD=/[\u1680\u2000-\u200A\u202F\u205F\u3000]/,nD=/[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u08A0-\u08B4\u08B6-\u08BD\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312E\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FEA\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AE\uA7B0-\uA7B7\uA7F7-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF2D-\uDF4A\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE33\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2]|\uD804[\uDC03-\uDC37\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDF00-\uDF19]|\uD806[\uDCA0-\uDCDF\uDCFF\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE83\uDE86-\uDE89\uDEC0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD81C-\uD820\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF44\uDF50\uDF93-\uDF9F\uDFE0\uDFE1]|\uD821[\uDC00-\uDFEC]|\uD822[\uDC00-\uDEF2]|\uD82C[\uDC00-\uDD1E\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]/,aD=/[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0300-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u0483-\u0487\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u05D0-\u05EA\u05F0-\u05F2\u0610-\u061A\u0620-\u0669\u066E-\u06D3\u06D5-\u06DC\u06DF-\u06E8\u06EA-\u06FC\u06FF\u0710-\u074A\u074D-\u07B1\u07C0-\u07F5\u07FA\u0800-\u082D\u0840-\u085B\u0860-\u086A\u08A0-\u08B4\u08B6-\u08BD\u08D4-\u08E1\u08E3-\u0963\u0966-\u096F\u0971-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09F1\u09FC\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A75\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AEF\u0AF9-\u0AFF\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3C-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B66-\u0B6F\u0B71\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BEF\u0C00-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58-\u0C5A\u0C60-\u0C63\u0C66-\u0C6F\u0C80-\u0C83\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1\u0CF2\u0D00-\u0D03\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D44\u0D46-\u0D48\u0D4A-\u0D4E\u0D54-\u0D57\u0D5F-\u0D63\u0D66-\u0D6F\u0D7A-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2\u0DF3\u0E01-\u0E3A\u0E40-\u0E4E\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB9\u0EBB-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECD\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E-\u0F47\u0F49-\u0F6C\u0F71-\u0F84\u0F86-\u0F97\u0F99-\u0FBC\u0FC6\u1000-\u1049\u1050-\u109D\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u135F\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1714\u1720-\u1734\u1740-\u1753\u1760-\u176C\u176E-\u1770\u1772\u1773\u1780-\u17D3\u17D7\u17DC\u17DD\u17E0-\u17E9\u180B-\u180D\u1810-\u1819\u1820-\u1877\u1880-\u18AA\u18B0-\u18F5\u1900-\u191E\u1920-\u192B\u1930-\u193B\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19D9\u1A00-\u1A1B\u1A20-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA7\u1AB0-\u1ABD\u1B00-\u1B4B\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1BF3\u1C00-\u1C37\u1C40-\u1C49\u1C4D-\u1C7D\u1C80-\u1C88\u1CD0-\u1CD2\u1CD4-\u1CF9\u1D00-\u1DF9\u1DFB-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u203F\u2040\u2054\u2071\u207F\u2090-\u209C\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D7F-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2DE0-\u2DFF\u2E2F\u3005-\u3007\u3021-\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u3099\u309A\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312E\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FEA\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66F\uA674-\uA67D\uA67F-\uA6F1\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AE\uA7B0-\uA7B7\uA7F7-\uA827\uA840-\uA873\uA880-\uA8C5\uA8D0-\uA8D9\uA8E0-\uA8F7\uA8FB\uA8FD\uA900-\uA92D\uA930-\uA953\uA960-\uA97C\uA980-\uA9C0\uA9CF-\uA9D9\uA9E0-\uA9FE\uAA00-\uAA36\uAA40-\uAA4D\uAA50-\uAA59\uAA60-\uAA76\uAA7A-\uAAC2\uAADB-\uAADD\uAAE0-\uAAEF\uAAF2-\uAAF6\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABEA\uABEC\uABED\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE00-\uFE0F\uFE20-\uFE2F\uFE33\uFE34\uFE4D-\uFE4F\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF3F\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDDFD\uDE80-\uDE9C\uDEA0-\uDED0\uDEE0\uDF00-\uDF1F\uDF2D-\uDF4A\uDF50-\uDF7A\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCA0-\uDCA9\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00-\uDE03\uDE05\uDE06\uDE0C-\uDE13\uDE15-\uDE17\uDE19-\uDE33\uDE38-\uDE3A\uDE3F\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE6\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2]|\uD804[\uDC00-\uDC46\uDC66-\uDC6F\uDC7F-\uDCBA\uDCD0-\uDCE8\uDCF0-\uDCF9\uDD00-\uDD34\uDD36-\uDD3F\uDD50-\uDD73\uDD76\uDD80-\uDDC4\uDDCA-\uDDCC\uDDD0-\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE37\uDE3E\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEEA\uDEF0-\uDEF9\uDF00-\uDF03\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3C-\uDF44\uDF47\uDF48\uDF4B-\uDF4D\uDF50\uDF57\uDF5D-\uDF63\uDF66-\uDF6C\uDF70-\uDF74]|\uD805[\uDC00-\uDC4A\uDC50-\uDC59\uDC80-\uDCC5\uDCC7\uDCD0-\uDCD9\uDD80-\uDDB5\uDDB8-\uDDC0\uDDD8-\uDDDD\uDE00-\uDE40\uDE44\uDE50-\uDE59\uDE80-\uDEB7\uDEC0-\uDEC9\uDF00-\uDF19\uDF1D-\uDF2B\uDF30-\uDF39]|\uD806[\uDCA0-\uDCE9\uDCFF\uDE00-\uDE3E\uDE47\uDE50-\uDE83\uDE86-\uDE99\uDEC0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC36\uDC38-\uDC40\uDC50-\uDC59\uDC72-\uDC8F\uDC92-\uDCA7\uDCA9-\uDCB6\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD36\uDD3A\uDD3C\uDD3D\uDD3F-\uDD47\uDD50-\uDD59]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD81C-\uD820\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE60-\uDE69\uDED0-\uDEED\uDEF0-\uDEF4\uDF00-\uDF36\uDF40-\uDF43\uDF50-\uDF59\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF44\uDF50-\uDF7E\uDF8F-\uDF9F\uDFE0\uDFE1]|\uD821[\uDC00-\uDFEC]|\uD822[\uDC00-\uDEF2]|\uD82C[\uDC00-\uDD1E\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99\uDC9D\uDC9E]|\uD834[\uDD65-\uDD69\uDD6D-\uDD72\uDD7B-\uDD82\uDD85-\uDD8B\uDDAA-\uDDAD\uDE42-\uDE44]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB\uDFCE-\uDFFF]|\uD836[\uDE00-\uDE36\uDE3B-\uDE6C\uDE75\uDE84\uDE9B-\uDE9F\uDEA1-\uDEAF]|\uD838[\uDC00-\uDC06\uDC08-\uDC18\uDC1B-\uDC21\uDC23\uDC24\uDC26-\uDC2A]|\uD83A[\uDC00-\uDCC4\uDCD0-\uDCD6\uDD00-\uDD4A\uDD50-\uDD59]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uDB40[\uDD00-\uDDEF]/,Tu={Space_Separator:uD,ID_Start:nD,ID_Continue:aD},Ee={isSpaceSeparator(e){return typeof e=="string"&&Tu.Space_Separator.test(e)},isIdStartChar(e){return typeof e=="string"&&(e>="a"&&e<="z"||e>="A"&&e<="Z"||e==="$"||e==="_"||Tu.ID_Start.test(e))},isIdContinueChar(e){return typeof e=="string"&&(e>="a"&&e<="z"||e>="A"&&e<="Z"||e>="0"&&e<="9"||e==="$"||e==="_"||e==="\u200C"||e==="\u200D"||Tu.ID_Continue.test(e))},isDigit(e){return typeof e=="string"&&/[0-9]/.test(e)},isHexDigit(e){return typeof e=="string"&&/[0-9A-Fa-f]/.test(e)}},Qu,Se,Ze,Qr,At,$e,Ce,bn,gr,iD=function(t,r){Qu=String(t),Se="start",Ze=[],Qr=0,At=1,$e=0,Ce=void 0,bn=void 0,gr=void 0;do Ce=oD(),cD[Se]();while(Ce.type!=="eof");return typeof r=="function"?Zu({"":gr},"",r):gr};function Zu(e,t,r){let u=e[t];if(u!=null&&typeof u=="object")if(Array.isArray(u))for(let n=0;n<u.length;n++){let a=String(n),i=Zu(u,a,r);i===void 0?delete u[a]:Object.defineProperty(u,a,{value:i,writable:!0,enumerable:!0,configurable:!0})}else for(let n in u){let a=Zu(u,n,r);a===void 0?delete u[n]:Object.defineProperty(u,n,{value:a,writable:!0,enumerable:!0,configurable:!0})}return r.call(e,t,u)}var Z,Q,cr,Ye,re;function oD(){for(Z="default",Q="",cr=!1,Ye=1;;){re=et();let e=eo[Z]();if(e)return e}}function et(){if(Qu[Qr])return String.fromCodePoint(Qu.codePointAt(Qr))}function $(){let e=et();return e===`
637
+ `?(At++,$e=0):e?$e+=e.length:$e++,e&&(Qr+=e.length),e}var eo={default(){switch(re){case" ":case"\v":case"\f":case" ":case"\xA0":case"\uFEFF":case`
638
+ `:case"\r":case"\u2028":case"\u2029":$();return;case"/":$(),Z="comment";return;case void 0:return $(),De("eof")}if(Ee.isSpaceSeparator(re)){$();return}return eo[Se]()},comment(){switch(re){case"*":$(),Z="multiLineComment";return;case"/":$(),Z="singleLineComment";return}throw fe($())},multiLineComment(){switch(re){case"*":$(),Z="multiLineCommentAsterisk";return;case void 0:throw fe($())}$()},multiLineCommentAsterisk(){switch(re){case"*":$();return;case"/":$(),Z="default";return;case void 0:throw fe($())}$(),Z="multiLineComment"},singleLineComment(){switch(re){case`
639
+ `:case"\r":case"\u2028":case"\u2029":$(),Z="default";return;case void 0:return $(),De("eof")}$()},value(){switch(re){case"{":case"[":return De("punctuator",$());case"n":return $(),Tt("ull"),De("null",null);case"t":return $(),Tt("rue"),De("boolean",!0);case"f":return $(),Tt("alse"),De("boolean",!1);case"-":case"+":$()==="-"&&(Ye=-1),Z="sign";return;case".":Q=$(),Z="decimalPointLeading";return;case"0":Q=$(),Z="zero";return;case"1":case"2":case"3":case"4":case"5":case"6":case"7":case"8":case"9":Q=$(),Z="decimalInteger";return;case"I":return $(),Tt("nfinity"),De("numeric",1/0);case"N":return $(),Tt("aN"),De("numeric",NaN);case'"':case"'":cr=$()==='"',Q="",Z="string";return}throw fe($())},identifierNameStartEscape(){if(re!=="u")throw fe($());$();let e=en();switch(e){case"$":case"_":break;default:if(!Ee.isIdStartChar(e))throw Ha();break}Q+=e,Z="identifierName"},identifierName(){switch(re){case"$":case"_":case"\u200C":case"\u200D":Q+=$();return;case"\\":$(),Z="identifierNameEscape";return}if(Ee.isIdContinueChar(re)){Q+=$();return}return De("identifier",Q)},identifierNameEscape(){if(re!=="u")throw fe($());$();let e=en();switch(e){case"$":case"_":case"\u200C":case"\u200D":break;default:if(!Ee.isIdContinueChar(e))throw Ha();break}Q+=e,Z="identifierName"},sign(){switch(re){case".":Q=$(),Z="decimalPointLeading";return;case"0":Q=$(),Z="zero";return;case"1":case"2":case"3":case"4":case"5":case"6":case"7":case"8":case"9":Q=$(),Z="decimalInteger";return;case"I":return $(),Tt("nfinity"),De("numeric",Ye*(1/0));case"N":return $(),Tt("aN"),De("numeric",NaN)}throw fe($())},zero(){switch(re){case".":Q+=$(),Z="decimalPoint";return;case"e":case"E":Q+=$(),Z="decimalExponent";return;case"x":case"X":Q+=$(),Z="hexadecimal";return}return De("numeric",Ye*0)},decimalInteger(){switch(re){case".":Q+=$(),Z="decimalPoint";return;case"e":case"E":Q+=$(),Z="decimalExponent";return}if(Ee.isDigit(re)){Q+=$();return}return De("numeric",Ye*Number(Q))},decimalPointLeading(){if(Ee.isDigit(re)){Q+=$(),Z="decimalFraction";return}throw fe($())},decimalPoint(){switch(re){case"e":case"E":Q+=$(),Z="decimalExponent";return}if(Ee.isDigit(re)){Q+=$(),Z="decimalFraction";return}return De("numeric",Ye*Number(Q))},decimalFraction(){switch(re){case"e":case"E":Q+=$(),Z="decimalExponent";return}if(Ee.isDigit(re)){Q+=$();return}return De("numeric",Ye*Number(Q))},decimalExponent(){switch(re){case"+":case"-":Q+=$(),Z="decimalExponentSign";return}if(Ee.isDigit(re)){Q+=$(),Z="decimalExponentInteger";return}throw fe($())},decimalExponentSign(){if(Ee.isDigit(re)){Q+=$(),Z="decimalExponentInteger";return}throw fe($())},decimalExponentInteger(){if(Ee.isDigit(re)){Q+=$();return}return De("numeric",Ye*Number(Q))},hexadecimal(){if(Ee.isHexDigit(re)){Q+=$(),Z="hexadecimalInteger";return}throw fe($())},hexadecimalInteger(){if(Ee.isHexDigit(re)){Q+=$();return}return De("numeric",Ye*Number(Q))},string(){switch(re){case"\\":$(),Q+=sD();return;case'"':if(cr)return $(),De("string",Q);Q+=$();return;case"'":if(!cr)return $(),De("string",Q);Q+=$();return;case`
640
+ `:case"\r":throw fe($());case"\u2028":case"\u2029":DD(re);break;case void 0:throw fe($())}Q+=$()},start(){switch(re){case"{":case"[":return De("punctuator",$())}Z="value"},beforePropertyName(){switch(re){case"$":case"_":Q=$(),Z="identifierName";return;case"\\":$(),Z="identifierNameStartEscape";return;case"}":return De("punctuator",$());case'"':case"'":cr=$()==='"',Z="string";return}if(Ee.isIdStartChar(re)){Q+=$(),Z="identifierName";return}throw fe($())},afterPropertyName(){if(re===":")return De("punctuator",$());throw fe($())},beforePropertyValue(){Z="value"},afterPropertyValue(){switch(re){case",":case"}":return De("punctuator",$())}throw fe($())},beforeArrayValue(){if(re==="]")return De("punctuator",$());Z="value"},afterArrayValue(){switch(re){case",":case"]":return De("punctuator",$())}throw fe($())},end(){throw fe($())}};function De(e,t){return{type:e,value:t,line:At,column:$e}}function Tt(e){for(let t of e){if(et()!==t)throw fe($());$()}}function sD(){switch(et()){case"b":return $(),"\b";case"f":return $(),"\f";case"n":return $(),`
641
+ `;case"r":return $(),"\r";case"t":return $()," ";case"v":return $(),"\v";case"0":if($(),Ee.isDigit(et()))throw fe($());return"\0";case"x":return $(),lD();case"u":return $(),en();case`
627
642
  `:case"\u2028":case"\u2029":return $(),"";case"\r":return $(),et()===`
628
- `&&$(),"";case"1":case"2":case"3":case"4":case"5":case"6":case"7":case"8":case"9":throw fe($());case void 0:throw fe($())}return $()}function oD(){let e="",t=et();if(!me.isHexDigit(t)||(e+=$(),t=et(),!me.isHexDigit(t)))throw fe($());return e+=$(),String.fromCodePoint(parseInt(e,16))}function Qu(){let e="",t=4;for(;t-- >0;){let r=et();if(!me.isHexDigit(r))throw fe($());e+=$()}return String.fromCodePoint(parseInt(e,16))}var sD={start(){if(Ce.type==="eof")throw Nt();Tu()},beforePropertyName(){switch(Ce.type){case"identifier":case"string":yn=Ce.value,Se="afterPropertyName";return;case"punctuator":Or();return;case"eof":throw Nt()}},afterPropertyName(){if(Ce.type==="eof")throw Nt();Se="beforePropertyValue"},beforePropertyValue(){if(Ce.type==="eof")throw Nt();Tu()},beforeArrayValue(){if(Ce.type==="eof")throw Nt();if(Ce.type==="punctuator"&&Ce.value==="]"){Or();return}Tu()},afterPropertyValue(){if(Ce.type==="eof")throw Nt();switch(Ce.value){case",":Se="beforePropertyName";return;case"}":Or()}},afterArrayValue(){if(Ce.type==="eof")throw Nt();switch(Ce.value){case",":Se="beforeArrayValue";return;case"]":Or()}},end(){}};function Tu(){let e;switch(Ce.type){case"punctuator":switch(Ce.value){case"{":e={};break;case"[":e=[];break}break;case"null":case"boolean":case"numeric":case"string":e=Ce.value;break}if(pr===void 0)pr=e;else{let t=Ze[Ze.length-1];Array.isArray(t)?t.push(e):Object.defineProperty(t,yn,{value:e,writable:!0,enumerable:!0,configurable:!0})}if(e!==null&&typeof e=="object")Ze.push(e),Array.isArray(e)?Se="beforeArrayValue":Se="beforePropertyName";else{let t=Ze[Ze.length-1];t==null?Se="end":Array.isArray(t)?Se="afterArrayValue":Se="afterPropertyValue"}}function Or(){Ze.pop();let e=Ze[Ze.length-1];e==null?Se="end":Array.isArray(e)?Se="afterArrayValue":Se="afterPropertyValue"}function fe(e){return Qr(e===void 0?`JSON5: invalid end of input at ${At}:${$e}`:`JSON5: invalid character '${Zi(e)}' at ${At}:${$e}`)}function Nt(){return Qr(`JSON5: invalid end of input at ${At}:${$e}`)}function $a(){return $e-=5,Qr(`JSON5: invalid identifier character at ${At}:${$e}`)}function lD(e){console.warn(`JSON5: '${Zi(e)}' in strings is not valid ECMAScript; consider escaping`)}function Zi(e){let t={"'":"\\'",'"':'\\"',"\\":"\\\\","\b":"\\b","\f":"\\f","\n":"\\n","\r":"\\r"," ":"\\t","\v":"\\v","\0":"\\0","\u2028":"\\u2028","\u2029":"\\u2029"};if(t[e])return t[e];if(e<" "){let r=e.charCodeAt(0).toString(16);return"\\x"+("00"+r).substring(r.length)}return e}function Qr(e){let t=new SyntaxError(e);return t.lineNumber=At,t.columnNumber=$e,t}var cD={parse:nD},DD=We(Oi(),1);function fD(e,t){let r=t===0?-1:e.lastIndexOf(`
629
- `,t-1);return{line:r===-1?0:e.slice(0,r+1).match(/\n/g).length,column:t-r-1}}function dD(e,t,{oneBased:r=!1}={}){if(typeof e!="string")throw new TypeError("Text parameter should be a string");if(!Number.isInteger(t))throw new TypeError("Index parameter should be an integer");if(t<0||t>e.length)throw new RangeError("Index out of bounds");let u=fD(e,t);return r?{line:u.line+1,column:u.column+1}:u}var hD=e=>`\\u{${e.codePointAt(0).toString(16)}}`,Fr,Zt,Lt,cr,Dr,Hr,Zu,pD=class eo extends Error{constructor(t){var r=(...n)=>(super(...n),we(this,Hr),Uu(this,"name","JSONError"),Uu(this,"fileName"),we(this,Fr),we(this,Zt),we(this,Lt),we(this,cr),we(this,Dr),this),u;if(typeof t=="string")r(),Ee(this,Lt,t);else{let{jsonParseError:n,fileName:a,input:i}=t;r(void 0,{cause:n}),Ee(this,Fr,i),Ee(this,Zt,n),this.fileName=a}(u=Error.captureStackTrace)==null||u.call(Error,this,eo)}get message(){ue(this,Lt)??Ee(this,Lt,`${ED(ue(this,Zt).message)}${ue(this,Fr)===""?" while parsing empty string":""}`);let{codeFrame:t}=this;return`${ue(this,Lt)}${this.fileName?` in ${this.fileName}`:""}${t?`
643
+ `&&$(),"";case"1":case"2":case"3":case"4":case"5":case"6":case"7":case"8":case"9":throw fe($());case void 0:throw fe($())}return $()}function lD(){let e="",t=et();if(!Ee.isHexDigit(t)||(e+=$(),t=et(),!Ee.isHexDigit(t)))throw fe($());return e+=$(),String.fromCodePoint(parseInt(e,16))}function en(){let e="",t=4;for(;t-- >0;){let r=et();if(!Ee.isHexDigit(r))throw fe($());e+=$()}return String.fromCodePoint(parseInt(e,16))}var cD={start(){if(Ce.type==="eof")throw It();Iu()},beforePropertyName(){switch(Ce.type){case"identifier":case"string":bn=Ce.value,Se="afterPropertyName";return;case"punctuator":Or();return;case"eof":throw It()}},afterPropertyName(){if(Ce.type==="eof")throw It();Se="beforePropertyValue"},beforePropertyValue(){if(Ce.type==="eof")throw It();Iu()},beforeArrayValue(){if(Ce.type==="eof")throw It();if(Ce.type==="punctuator"&&Ce.value==="]"){Or();return}Iu()},afterPropertyValue(){if(Ce.type==="eof")throw It();switch(Ce.value){case",":Se="beforePropertyName";return;case"}":Or()}},afterArrayValue(){if(Ce.type==="eof")throw It();switch(Ce.value){case",":Se="beforeArrayValue";return;case"]":Or()}},end(){}};function Iu(){let e;switch(Ce.type){case"punctuator":switch(Ce.value){case"{":e={};break;case"[":e=[];break}break;case"null":case"boolean":case"numeric":case"string":e=Ce.value;break}if(gr===void 0)gr=e;else{let t=Ze[Ze.length-1];Array.isArray(t)?t.push(e):Object.defineProperty(t,bn,{value:e,writable:!0,enumerable:!0,configurable:!0})}if(e!==null&&typeof e=="object")Ze.push(e),Array.isArray(e)?Se="beforeArrayValue":Se="beforePropertyName";else{let t=Ze[Ze.length-1];t==null?Se="end":Array.isArray(t)?Se="afterArrayValue":Se="afterPropertyValue"}}function Or(){Ze.pop();let e=Ze[Ze.length-1];e==null?Se="end":Array.isArray(e)?Se="afterArrayValue":Se="afterPropertyValue"}function fe(e){return Zr(e===void 0?`JSON5: invalid end of input at ${At}:${$e}`:`JSON5: invalid character '${to(e)}' at ${At}:${$e}`)}function It(){return Zr(`JSON5: invalid end of input at ${At}:${$e}`)}function Ha(){return $e-=5,Zr(`JSON5: invalid identifier character at ${At}:${$e}`)}function DD(e){console.warn(`JSON5: '${to(e)}' in strings is not valid ECMAScript; consider escaping`)}function to(e){let t={"'":"\\'",'"':'\\"',"\\":"\\\\","\b":"\\b","\f":"\\f","\n":"\\n","\r":"\\r"," ":"\\t","\v":"\\v","\0":"\\0","\u2028":"\\u2028","\u2029":"\\u2029"};if(t[e])return t[e];if(e<" "){let r=e.charCodeAt(0).toString(16);return"\\x"+("00"+r).substring(r.length)}return e}function Zr(e){let t=new SyntaxError(e);return t.lineNumber=At,t.columnNumber=$e,t}var fD={parse:iD},pD=We(Ti(),1);function dD(e,t){let r=t===0?-1:e.lastIndexOf(`
644
+ `,t-1);return{line:r===-1?0:e.slice(0,r+1).match(/\n/g).length,column:t-r-1}}function hD(e,t,{oneBased:r=!1}={}){if(typeof e!="string")throw new TypeError("Text parameter should be a string");if(!Number.isInteger(t))throw new TypeError("Index parameter should be an integer");if(t<0||t>e.length)throw new RangeError("Index out of bounds");let u=dD(e,t);return r?{line:u.line+1,column:u.column+1}:u}var gD=e=>`\\u{${e.codePointAt(0).toString(16)}}`,Fr,Zt,Nt,Dr,fr,Wr,tn,FD=class ro extends Error{constructor(t){var r=(...n)=>(super(...n),we(this,Wr),Vu(this,"name","JSONError"),Vu(this,"fileName"),we(this,Fr),we(this,Zt),we(this,Nt),we(this,Dr),we(this,fr),this),u;if(typeof t=="string")r(),me(this,Nt,t);else{let{jsonParseError:n,fileName:a,input:i}=t;r(void 0,{cause:n}),me(this,Fr,i),me(this,Zt,n),this.fileName=a}(u=Error.captureStackTrace)==null||u.call(Error,this,ro)}get message(){ue(this,Nt)??me(this,Nt,`${CD(ue(this,Zt).message)}${ue(this,Fr)===""?" while parsing empty string":""}`);let{codeFrame:t}=this;return`${ue(this,Nt)}${this.fileName?` in ${this.fileName}`:""}${t?`
630
645
 
631
646
  ${t}
632
- `:""}`}set message(t){Ee(this,Lt,t)}get codeFrame(){return ue(this,cr)??Ee(this,cr,Et(this,Hr,Zu).call(this,!0)),ue(this,cr)}get rawCodeFrame(){return ue(this,Dr)??Ee(this,Dr,Et(this,Hr,Zu).call(this,!1)),ue(this,Dr)}};Fr=new WeakMap;Zt=new WeakMap;Lt=new WeakMap;cr=new WeakMap;Dr=new WeakMap;Hr=new WeakSet;Zu=function(e){if(!ue(this,Zt))return;let t=ue(this,Fr),r=gD(t,ue(this,Zt).message);if(r)return(0,DD.codeFrameColumns)(t,{start:r},{highlightCode:e})};var FD=pD,gD=(e,t)=>{let r=t.match(/in JSON at position (?<index>\d+)(?: \(line (?<line>\d+) column (?<column>\d+)\))?$/);if(!r)return;let{index:u,line:n,column:a}=r.groups;return n&&a?{line:Number(n),column:Number(a)}:dD(e,Number(u),{oneBased:!0})},ED=e=>e.replace(/(?<=^Unexpected token )(?<quote>')?(.)\k<quote>/,(t,r,u)=>`"${u}"(${hD(u)})`);function mD(e,t,r){typeof t=="string"&&(r=t,t=void 0);try{return JSON.parse(e,t)}catch(u){throw new FD({jsonParseError:u,fileName:r,input:e})}}function CD(e,t){let r=e.slice(0,t).split(/\r\n|\n|\r/g);return[r.length,r.pop().length+1]}function vD(e,t,r){let u=e.split(/\r\n|\n|\r/g),n="",a=(Math.log10(t+1)|0)+1;for(let i=t-1;i<=t+1;i++){let o=u[i-1];o&&(n+=i.toString().padEnd(a," "),n+=": ",n+=o,n+=`
647
+ `:""}`}set message(t){me(this,Nt,t)}get codeFrame(){return ue(this,Dr)??me(this,Dr,mt(this,Wr,tn).call(this,!0)),ue(this,Dr)}get rawCodeFrame(){return ue(this,fr)??me(this,fr,mt(this,Wr,tn).call(this,!1)),ue(this,fr)}};Fr=new WeakMap;Zt=new WeakMap;Nt=new WeakMap;Dr=new WeakMap;fr=new WeakMap;Wr=new WeakSet;tn=function(e){if(!ue(this,Zt))return;let t=ue(this,Fr),r=ED(t,ue(this,Zt).message);if(r)return(0,pD.codeFrameColumns)(t,{start:r},{highlightCode:e})};var mD=FD,ED=(e,t)=>{let r=t.match(/in JSON at position (?<index>\d+)(?: \(line (?<line>\d+) column (?<column>\d+)\))?$/);if(!r)return;let{index:u,line:n,column:a}=r.groups;return n&&a?{line:Number(n),column:Number(a)}:hD(e,Number(u),{oneBased:!0})},CD=e=>e.replace(/(?<=^Unexpected token )(?<quote>')?(.)\k<quote>/,(t,r,u)=>`"${u}"(${gD(u)})`);function vD(e,t,r){typeof t=="string"&&(r=t,t=void 0);try{return JSON.parse(e,t)}catch(u){throw new mD({jsonParseError:u,fileName:r,input:e})}}function AD(e,t){let r=e.slice(0,t).split(/\r\n|\n|\r/g);return[r.length,r.pop().length+1]}function yD(e,t,r){let u=e.split(/\r\n|\n|\r/g),n="",a=(Math.log10(t+1)|0)+1;for(let i=t-1;i<=t+1;i++){let o=u[i-1];o&&(n+=i.toString().padEnd(a," "),n+=": ",n+=o,n+=`
633
648
  `,i===t&&(n+=" ".repeat(a+r+2),n+=`^
634
- `))}return n}var te=class extends Error{line;column;codeblock;constructor(e,t){let[r,u]=CD(t.toml,t.ptr),n=vD(t.toml,r,u);super(`Invalid TOML document: ${e}
649
+ `))}return n}var te=class extends Error{line;column;codeblock;constructor(e,t){let[r,u]=AD(t.toml,t.ptr),n=yD(t.toml,r,u);super(`Invalid TOML document: ${e}
635
650
 
636
- ${n}`,t),this.line=r,this.column=u,this.codeblock=n}};function Zr(e,t=0,r=e.length){let u=e.indexOf(`
637
- `,t);return e[u-1]==="\r"&&u--,u<=r?u:-1}function _n(e,t){for(let r=t;r<e.length;r++){let u=e[r];if(u===`
651
+ ${n}`,t),this.line=r,this.column=u,this.codeblock=n}};function eu(e,t=0,r=e.length){let u=e.indexOf(`
652
+ `,t);return e[u-1]==="\r"&&u--,u<=r?u:-1}function Bn(e,t){for(let r=t;r<e.length;r++){let u=e[r];if(u===`
638
653
  `)return r;if(u==="\r"&&e[r+1]===`
639
654
  `)return r+1;if(u<" "&&u!==" "||u==="\x7F")throw new te("control characters are not allowed in comments",{toml:e,ptr:t})}return e.length}function tt(e,t,r,u){let n;for(;(n=e[t])===" "||n===" "||!r&&(n===`
640
655
  `||n==="\r"&&e[t+1]===`
641
- `);)t++;return u||n!=="#"?t:tt(e,_n(e,t),r)}function Ma(e,t,r,u,n=!1){if(!u)return t=Zr(e,t),t<0?e.length:t;for(let a=t;a<e.length;a++){let i=e[a];if(i==="#")a=Zr(e,a);else{if(i===r)return a+1;if(i===u||n&&(i===`
656
+ `);)t++;return u||n!=="#"?t:tt(e,Bn(e,t),r)}function Wa(e,t,r,u,n=!1){if(!u)return t=eu(e,t),t<0?e.length:t;for(let a=t;a<e.length;a++){let i=e[a];if(i==="#")a=eu(e,a);else{if(i===r)return a+1;if(i===u||n&&(i===`
642
657
  `||i==="\r"&&e[a+1]===`
643
- `))return a}}throw new te("cannot find end of structure",{toml:e,ptr:t})}function to(e,t){let r=e[t],u=r===e[t+1]&&e[t+1]===e[t+2]?e.slice(t,t+3):r;t+=u.length-1;do t=e.indexOf(u,++t);while(t>-1&&r!=="'"&&e[t-1]==="\\"&&(e[t-2]!=="\\"||e[t-3]==="\\"));return t>-1&&(t+=u.length,u.length>1&&(e[t]===r&&t++,e[t]===r&&t++)),t}var AD=/^(\d{4}-\d{2}-\d{2})?[T ]?(?:(\d{2}):\d{2}:\d{2}(?:\.\d+)?)?(Z|[-+]\d{2}:\d{2})?$/i,Xe,Je,Re,yD=class fr extends Date{constructor(t){let r=!0,u=!0,n="Z";if(typeof t=="string"){let a=t.match(AD);a?(a[1]||(r=!1,t=`0000-01-01T${t}`),u=!!a[2],u&&t[10]===" "&&(t=t.replace(" ","T")),a[2]&&+a[2]>23?t="":(n=a[3]||null,t=t.toUpperCase(),!n&&u&&(t+="Z"))):t=""}super(t),we(this,Xe,!1),we(this,Je,!1),we(this,Re,null),isNaN(this.getTime())||(Ee(this,Xe,r),Ee(this,Je,u),Ee(this,Re,n))}isDateTime(){return ue(this,Xe)&&ue(this,Je)}isLocal(){return!ue(this,Xe)||!ue(this,Je)||!ue(this,Re)}isDate(){return ue(this,Xe)&&!ue(this,Je)}isTime(){return ue(this,Je)&&!ue(this,Xe)}isValid(){return ue(this,Xe)||ue(this,Je)}toISOString(){let t=super.toISOString();if(this.isDate())return t.slice(0,10);if(this.isTime())return t.slice(11,23);if(ue(this,Re)===null)return t.slice(0,-1);if(ue(this,Re)==="Z")return t;let r=+ue(this,Re).slice(1,3)*60+ +ue(this,Re).slice(4,6);return r=ue(this,Re)[0]==="-"?r:-r,new Date(this.getTime()-r*6e4).toISOString().slice(0,-1)+ue(this,Re)}static wrapAsOffsetDateTime(t,r="Z"){let u=new fr(t);return Ee(u,Re,r),u}static wrapAsLocalDateTime(t){let r=new fr(t);return Ee(r,Re,null),r}static wrapAsLocalDate(t){let r=new fr(t);return Ee(r,Je,!1),Ee(r,Re,null),r}static wrapAsLocalTime(t){let r=new fr(t);return Ee(r,Xe,!1),Ee(r,Re,null),r}};Xe=new WeakMap;Je=new WeakMap;Re=new WeakMap;var _D=yD,bD=/^((0x[0-9a-fA-F](_?[0-9a-fA-F])*)|(([+-]|0[ob])?\d(_?\d)*))$/,BD=/^[+-]?\d(_?\d)*(\.\d(_?\d)*)?([eE][+-]?\d(_?\d)*)?$/,wD=/^[+-]?0[0-9_]/,SD=/^[0-9a-f]{4,8}$/i,Ha={b:"\b",t:" ",n:`
644
- `,f:"\f",r:"\r",'"':'"',"\\":"\\"};function ro(e,t=0,r=e.length){let u=e[t]==="'",n=e[t++]===e[t]&&e[t]===e[t+1];n&&(r-=2,e[t+=2]==="\r"&&t++,e[t]===`
658
+ `))return a}}throw new te("cannot find end of structure",{toml:e,ptr:t})}function uo(e,t){let r=e[t],u=r===e[t+1]&&e[t+1]===e[t+2]?e.slice(t,t+3):r;t+=u.length-1;do t=e.indexOf(u,++t);while(t>-1&&r!=="'"&&e[t-1]==="\\"&&(e[t-2]!=="\\"||e[t-3]==="\\"));return t>-1&&(t+=u.length,u.length>1&&(e[t]===r&&t++,e[t]===r&&t++)),t}var _D=/^(\d{4}-\d{2}-\d{2})?[T ]?(?:(\d{2}):\d{2}:\d{2}(?:\.\d+)?)?(Z|[-+]\d{2}:\d{2})?$/i,Xe,Je,Re,bD=class pr extends Date{constructor(t){let r=!0,u=!0,n="Z";if(typeof t=="string"){let a=t.match(_D);a?(a[1]||(r=!1,t=`0000-01-01T${t}`),u=!!a[2],u&&t[10]===" "&&(t=t.replace(" ","T")),a[2]&&+a[2]>23?t="":(n=a[3]||null,t=t.toUpperCase(),!n&&u&&(t+="Z"))):t=""}super(t),we(this,Xe,!1),we(this,Je,!1),we(this,Re,null),isNaN(this.getTime())||(me(this,Xe,r),me(this,Je,u),me(this,Re,n))}isDateTime(){return ue(this,Xe)&&ue(this,Je)}isLocal(){return!ue(this,Xe)||!ue(this,Je)||!ue(this,Re)}isDate(){return ue(this,Xe)&&!ue(this,Je)}isTime(){return ue(this,Je)&&!ue(this,Xe)}isValid(){return ue(this,Xe)||ue(this,Je)}toISOString(){let t=super.toISOString();if(this.isDate())return t.slice(0,10);if(this.isTime())return t.slice(11,23);if(ue(this,Re)===null)return t.slice(0,-1);if(ue(this,Re)==="Z")return t;let r=+ue(this,Re).slice(1,3)*60+ +ue(this,Re).slice(4,6);return r=ue(this,Re)[0]==="-"?r:-r,new Date(this.getTime()-r*6e4).toISOString().slice(0,-1)+ue(this,Re)}static wrapAsOffsetDateTime(t,r="Z"){let u=new pr(t);return me(u,Re,r),u}static wrapAsLocalDateTime(t){let r=new pr(t);return me(r,Re,null),r}static wrapAsLocalDate(t){let r=new pr(t);return me(r,Je,!1),me(r,Re,null),r}static wrapAsLocalTime(t){let r=new pr(t);return me(r,Xe,!1),me(r,Re,null),r}};Xe=new WeakMap;Je=new WeakMap;Re=new WeakMap;var BD=bD,wD=/^((0x[0-9a-fA-F](_?[0-9a-fA-F])*)|(([+-]|0[ob])?\d(_?\d)*))$/,SD=/^[+-]?\d(_?\d)*(\.\d(_?\d)*)?([eE][+-]?\d(_?\d)*)?$/,kD=/^[+-]?0[0-9_]/,RD=/^[0-9a-f]{4,8}$/i,Ga={b:"\b",t:" ",n:`
659
+ `,f:"\f",r:"\r",'"':'"',"\\":"\\"};function no(e,t=0,r=e.length){let u=e[t]==="'",n=e[t++]===e[t]&&e[t]===e[t+1];n&&(r-=2,e[t+=2]==="\r"&&t++,e[t]===`
645
660
  `&&t++);let a=0,i,o="",s=t;for(;t<r-1;){let c=e[t++];if(c===`
646
661
  `||c==="\r"&&e[t]===`
647
- `){if(!n)throw new te("newlines are not allowed in strings",{toml:e,ptr:t-1})}else if(c<" "&&c!==" "||c==="\x7F")throw new te("control characters are not allowed in strings",{toml:e,ptr:t-1});if(i){if(i=!1,c==="u"||c==="U"){let l=e.slice(t,t+=c==="u"?4:8);if(!SD.test(l))throw new te("invalid unicode escape",{toml:e,ptr:a});try{o+=String.fromCodePoint(parseInt(l,16))}catch{throw new te("invalid unicode escape",{toml:e,ptr:a})}}else if(n&&(c===`
662
+ `){if(!n)throw new te("newlines are not allowed in strings",{toml:e,ptr:t-1})}else if(c<" "&&c!==" "||c==="\x7F")throw new te("control characters are not allowed in strings",{toml:e,ptr:t-1});if(i){if(i=!1,c==="u"||c==="U"){let l=e.slice(t,t+=c==="u"?4:8);if(!RD.test(l))throw new te("invalid unicode escape",{toml:e,ptr:a});try{o+=String.fromCodePoint(parseInt(l,16))}catch{throw new te("invalid unicode escape",{toml:e,ptr:a})}}else if(n&&(c===`
648
663
  `||c===" "||c===" "||c==="\r")){if(t=tt(e,t-1,!0),e[t]!==`
649
- `&&e[t]!=="\r")throw new te("invalid escape: only line-ending whitespace may be escaped",{toml:e,ptr:a});t=tt(e,t)}else if(c in Ha)o+=Ha[c];else throw new te("unrecognized escape sequence",{toml:e,ptr:a});s=t}else!u&&c==="\\"&&(a=t-1,i=!0,o+=e.slice(s,a))}return o+e.slice(s,r-1)}function kD(e,t,r){if(e==="true")return!0;if(e==="false")return!1;if(e==="-inf")return-1/0;if(e==="inf"||e==="+inf")return 1/0;if(e==="nan"||e==="+nan"||e==="-nan")return NaN;if(e==="-0")return 0;let u;if((u=bD.test(e))||BD.test(e)){if(wD.test(e))throw new te("leading zeroes are not allowed",{toml:t,ptr:r});let a=+e.replace(/_/g,"");if(isNaN(a))throw new te("invalid number",{toml:t,ptr:r});if(u&&!Number.isSafeInteger(a))throw new te("integer value cannot be represented losslessly",{toml:t,ptr:r});return a}let n=new _D(e);if(!n.isValid())throw new te("invalid value",{toml:t,ptr:r});return n}function RD(e,t,r,u){let n=e.slice(t,r),a=n.indexOf("#");a>-1&&(_n(e,a),n=n.slice(0,a));let i=n.trimEnd();if(!u){let o=n.indexOf(`
650
- `,i.length);if(o>-1)throw new te("newlines are not allowed in inline tables",{toml:e,ptr:t+o})}return[i,a]}function bn(e,t,r,u=-1){if(u===0)throw new te("document contains excessively nested structures. aborting.",{toml:e,ptr:t});let n=e[t];if(n==="["||n==="{"){let[o,s]=n==="["?TD(e,t,u):OD(e,t,u),c=r?Ma(e,s,",",r):s;if(s-c&&r==="}"){let l=Zr(e,s,c);if(l>-1)throw new te("newlines are not allowed in inline tables",{toml:e,ptr:l})}return[o,c]}let a;if(n==='"'||n==="'"){a=to(e,t);let o=ro(e,t,a);if(r){if(a=tt(e,a,r!=="]"),e[a]&&e[a]!==","&&e[a]!==r&&e[a]!==`
651
- `&&e[a]!=="\r")throw new te("unexpected character encountered",{toml:e,ptr:a});a+=+(e[a]===",")}return[o,a]}a=Ma(e,t,",",r);let i=RD(e,t,a-+(e[a-1]===","),r==="]");if(!i[0])throw new te("incomplete key-value declaration: no value specified",{toml:e,ptr:t});return r&&i[1]>-1&&(a=tt(e,t+i[1]),a+=+(e[a]===",")),[kD(i[0],e,t),a]}var PD=/^[a-zA-Z0-9-_]+[ \t]*$/;function en(e,t,r="="){let u=t-1,n=[],a=e.indexOf(r,t);if(a<0)throw new te("incomplete key-value: cannot find end of key",{toml:e,ptr:t});do{let i=e[t=++u];if(i!==" "&&i!==" ")if(i==='"'||i==="'"){if(i===e[t+1]&&i===e[t+2])throw new te("multiline strings are not allowed in keys",{toml:e,ptr:t});let o=to(e,t);if(o<0)throw new te("unfinished string encountered",{toml:e,ptr:t});u=e.indexOf(".",o);let s=e.slice(o,u<0||u>a?a:u),c=Zr(s);if(c>-1)throw new te("newlines are not allowed in keys",{toml:e,ptr:t+u+c});if(s.trimStart())throw new te("found extra tokens after the string part",{toml:e,ptr:o});if(a<o&&(a=e.indexOf(r,o),a<0))throw new te("incomplete key-value: cannot find end of key",{toml:e,ptr:t});n.push(ro(e,t,o))}else{u=e.indexOf(".",t);let o=e.slice(t,u<0||u>a?a:u);if(!PD.test(o))throw new te("only letter, numbers, dashes and underscores are allowed in keys",{toml:e,ptr:t});n.push(o.trimEnd())}}while(u+1&&u<a);return[n,tt(e,a+1,!0,!0)]}function OD(e,t,r=-1){let u={},n=new Set,a,i=0;for(t++;(a=e[t++])!=="}"&&a;){if(a===`
652
- `)throw new te("newlines are not allowed in inline tables",{toml:e,ptr:t-1});if(a==="#")throw new te("inline tables cannot contain comments",{toml:e,ptr:t-1});if(a===",")throw new te("expected key-value, found comma",{toml:e,ptr:t-1});if(a!==" "&&a!==" "){let o,s=u,c=!1,[l,D]=en(e,t-1);for(let d=0;d<l.length;d++){if(d&&(s=c?s[o]:s[o]={}),o=l[d],(c=Object.hasOwn(s,o))&&(typeof s[o]!="object"||n.has(s[o])))throw new te("trying to redefine an already defined value",{toml:e,ptr:t});!c&&o==="__proto__"&&Object.defineProperty(s,o,{enumerable:!0,configurable:!0,writable:!0})}if(c)throw new te("trying to redefine an already defined value",{toml:e,ptr:t});let[f,h]=bn(e,D,"}",r-1);n.add(f),s[o]=f,t=h,i=e[t-1]===","?t-1:0}}if(i)throw new te("trailing commas are not allowed in inline tables",{toml:e,ptr:i});if(!a)throw new te("unfinished table encountered",{toml:e,ptr:t});return[u,t]}function TD(e,t,r=-1){let u=[],n;for(t++;(n=e[t++])!=="]"&&n;){if(n===",")throw new te("expected value, found comma",{toml:e,ptr:t-1});if(n==="#")t=_n(e,t);else if(n!==" "&&n!==" "&&n!==`
653
- `&&n!=="\r"){let a=bn(e,t-1,"]",r-1);u.push(a[0]),t=a[1]}}if(!n)throw new te("unfinished array encountered",{toml:e,ptr:t});return[u,t]}function Wa(e,t,r,u){var n,a;let i=t,o=r,s,c=!1,l;for(let D=0;D<e.length;D++){if(D){if(i=c?i[s]:i[s]={},o=(l=o[s]).c,u===0&&(l.t===1||l.t===2))return null;if(l.t===2){let f=i.length-1;i=i[f],o=o[f].c}}if(s=e[D],(c=Object.hasOwn(i,s))&&((n=o[s])==null?void 0:n.t)===0&&((a=o[s])!=null&&a.d))return null;c||(s==="__proto__"&&(Object.defineProperty(i,s,{enumerable:!0,configurable:!0,writable:!0}),Object.defineProperty(o,s,{enumerable:!0,configurable:!0,writable:!0})),o[s]={t:D<e.length-1&&u===2?3:u,d:!1,i:0,c:{}})}if(l=o[s],l.t!==u&&!(u===1&&l.t===3)||(u===2&&(l.d||(l.d=!0,i[s]=[]),i[s].push(i={}),l.c[l.i++]=l={t:1,d:!1,i:0,c:{}}),l.d))return null;if(l.d=!0,u===1)i=c?i[s]:i[s]={};else if(u===0&&c)return null;return[s,i,l.c]}function ID(e,t){let r=t?.maxDepth??1e3,u={},n={},a=u,i=n;for(let o=tt(e,0);o<e.length;){if(e[o]==="["){let s=e[++o]==="[",c=en(e,o+=+s,"]");if(s){if(e[c[1]-1]!=="]")throw new te("expected end of table declaration",{toml:e,ptr:c[1]-1});c[1]++}let l=Wa(c[0],u,n,s?2:1);if(!l)throw new te("trying to redefine an already defined table or value",{toml:e,ptr:o});i=l[2],a=l[1],o=c[1]}else{let s=en(e,o),c=Wa(s[0],a,i,0);if(!c)throw new te("trying to redefine an already defined table or value",{toml:e,ptr:o});let l=bn(e,s[1],void 0,r);c[1][c[0]]=l[0],o=l[1]}if(o=tt(e,o,!0),e[o]&&e[o]!==`
654
- `&&e[o]!=="\r")throw new te("each key-value declaration must be followed by an end-of-line",{toml:e,ptr:o});o=tt(e,o)}return u}async function LD(e){qi(e)&&(e=new URL(e));try{return await ND.readFile(e,"utf8")}catch(t){if(t.code==="ENOENT")return;throw new Error(`Unable to read '${e}': ${t.message}`)}}var Ar=LD;async function Bn(e){let t=await Ar(e);try{return mD(t)}catch(r){throw r.message=`JSON Error in ${e}:
655
- ${r.message}`,r}}async function xt(e){return(await import(eD(e).href)).default}async function xD(e){try{return await Bn(e)}catch(t){try{return await xt(e)}catch{}throw t}}var uo=process.versions.bun?async function(t){let{prettier:r}=await xD(t);return r}:async function(t){let{prettier:r}=await Bn(t);return r};async function no(e){let{prettier:t}=await Wr(e);return t}var Iu;async function Wr(e){let t=await Ar(e);Iu||({__parsePrettierYamlConfig:Iu}=await import("./yaml-FHI3PI2W.js"));try{return Iu(t)}catch(r){throw r.message=`YAML Error in ${e}:
656
- ${r.message}`,r}}async function jD(e){let t=await Ar(e);try{return ID(t)}catch(r){throw r.message=`TOML Error in ${e}:
657
- ${r.message}`,r}}async function $D(e){let t=await Ar(e);try{return cD.parse(t)}catch(r){throw r.message=`JSON5 Error in ${e}:
658
- ${r.message}`,r}}var MD={".toml":jD,".json5":$D,".json":Bn,".js":xt,".mjs":xt,".cjs":xt,".ts":xt,".mts":xt,".cts":xt,".yaml":Wr,".yml":Wr,"":Wr},HD=MD,WD=["package.json","package.yaml",".prettierrc",".prettierrc.json",".prettierrc.yaml",".prettierrc.yml",".prettierrc.json5",".prettierrc.js",".prettierrc.ts",".prettierrc.mjs",".prettierrc.mts",".prettierrc.cjs",".prettierrc.cts","prettier.config.js","prettier.config.ts","prettier.config.mjs","prettier.config.mts","prettier.config.cjs","prettier.config.cts",".prettierrc.toml"];async function GD({name:e,path:t}){if(e==="package.json")try{return!!await uo(t)}catch{return!1}if(e==="package.yaml")try{return!!await no(t)}catch{return!1}return!0}function UD(e){return new G0(WD,{filter:GD,stopDirectory:e})}var qD=UD,ef={}.hasOwnProperty,tf=/^([A-Z][a-z\d]*)+$/,rf=new Set(["string","function","number","object","Function","Object","boolean","bigint","symbol"]),ye={};function Nu(e,t="and"){return e.length<3?e.join(` ${t} `):`${e.slice(0,-1).join(", ")}, ${t} ${e[e.length-1]}`}var so=new Map,uf="__node_internal_",Ga;ye.ERR_INVALID_ARG_TYPE=xe("ERR_INVALID_ARG_TYPE",(e,t,r)=>{Wt(typeof e=="string","'name' must be a string"),Array.isArray(t)||(t=[t]);let u="The ";if(e.endsWith(" argument"))u+=`${e} `;else{let o=e.includes(".")?"property":"argument";u+=`"${e}" ${o} `}u+="must be ";let n=[],a=[],i=[];for(let o of t)Wt(typeof o=="string","All expected entries have to be of type string"),rf.has(o)?n.push(o.toLowerCase()):tf.exec(o)===null?(Wt(o!=="object",'The value "object" should be written as "Object"'),i.push(o)):a.push(o);if(a.length>0){let o=n.indexOf("object");o!==-1&&(n.slice(o,1),a.push("Object"))}return n.length>0&&(u+=`${n.length>1?"one of type":"of type"} ${Nu(n,"or")}`,(a.length>0||i.length>0)&&(u+=" or ")),a.length>0&&(u+=`an instance of ${Nu(a,"or")}`,i.length>0&&(u+=" or ")),i.length>0&&(i.length>1?u+=`one of ${Nu(i,"or")}`:(i[0].toLowerCase()!==i[0]&&(u+="an "),u+=`${i[0]}`)),u+=`. Received ${lf(r)}`,u},TypeError);ye.ERR_INVALID_MODULE_SPECIFIER=xe("ERR_INVALID_MODULE_SPECIFIER",(e,t,r=void 0)=>`Invalid module "${e}" ${t}${r?` imported from ${r}`:""}`,TypeError);ye.ERR_INVALID_PACKAGE_CONFIG=xe("ERR_INVALID_PACKAGE_CONFIG",(e,t,r)=>`Invalid package config ${e}${t?` while importing ${t}`:""}${r?`. ${r}`:""}`,Error);ye.ERR_INVALID_PACKAGE_TARGET=xe("ERR_INVALID_PACKAGE_TARGET",(e,t,r,u=!1,n=void 0)=>{let a=typeof r=="string"&&!u&&r.length>0&&!r.startsWith("./");return t==="."?(Wt(u===!1),`Invalid "exports" main target ${JSON.stringify(r)} defined in the package config ${e}package.json${n?` imported from ${n}`:""}${a?'; targets must start with "./"':""}`):`Invalid "${u?"imports":"exports"}" target ${JSON.stringify(r)} defined for '${t}' in the package config ${e}package.json${n?` imported from ${n}`:""}${a?'; targets must start with "./"':""}`},Error);ye.ERR_MODULE_NOT_FOUND=xe("ERR_MODULE_NOT_FOUND",(e,t,r=!1)=>`Cannot find ${r?"module":"package"} '${e}' imported from ${t}`,Error);ye.ERR_NETWORK_IMPORT_DISALLOWED=xe("ERR_NETWORK_IMPORT_DISALLOWED","import of '%s' by %s is not supported: %s",Error);ye.ERR_PACKAGE_IMPORT_NOT_DEFINED=xe("ERR_PACKAGE_IMPORT_NOT_DEFINED",(e,t,r)=>`Package import specifier "${e}" is not defined${t?` in package ${t}package.json`:""} imported from ${r}`,TypeError);ye.ERR_PACKAGE_PATH_NOT_EXPORTED=xe("ERR_PACKAGE_PATH_NOT_EXPORTED",(e,t,r=void 0)=>t==="."?`No "exports" main defined in ${e}package.json${r?` imported from ${r}`:""}`:`Package subpath '${t}' is not defined by "exports" in ${e}package.json${r?` imported from ${r}`:""}`,Error);ye.ERR_UNSUPPORTED_DIR_IMPORT=xe("ERR_UNSUPPORTED_DIR_IMPORT","Directory import '%s' is not supported resolving ES modules imported from %s",Error);ye.ERR_UNSUPPORTED_RESOLVE_REQUEST=xe("ERR_UNSUPPORTED_RESOLVE_REQUEST",'Failed to resolve module specifier "%s" from "%s": Invalid relative URL or base scheme is not hierarchical.',TypeError);ye.ERR_UNKNOWN_FILE_EXTENSION=xe("ERR_UNKNOWN_FILE_EXTENSION",(e,t)=>`Unknown file extension "${e}" for ${t}`,TypeError);ye.ERR_INVALID_ARG_VALUE=xe("ERR_INVALID_ARG_VALUE",(e,t,r="is invalid")=>{let u=rn(t);return u.length>128&&(u=`${u.slice(0,128)}...`),`The ${e.includes(".")?"property":"argument"} '${e}' ${r}. Received ${u}`},TypeError);function xe(e,t,r){return so.set(e,t),nf(r,e)}function nf(e,t){return r;function r(...u){let n=Error.stackTraceLimit;un()&&(Error.stackTraceLimit=0);let a=new e;un()&&(Error.stackTraceLimit=n);let i=sf(t,u,a);return Object.defineProperties(a,{message:{value:i,enumerable:!1,writable:!0,configurable:!0},toString:{value(){return`${this.name} [${t}]: ${this.message}`},enumerable:!1,writable:!0,configurable:!0}}),of(a),a.code=t,a}}function un(){try{if(QD.startupSnapshot.isBuildingSnapshot())return!1}catch{}let e=Object.getOwnPropertyDescriptor(Error,"stackTraceLimit");return e===void 0?Object.isExtensible(Error):ef.call(e,"writable")&&e.writable!==void 0?e.writable:e.set!==void 0}function af(e){let t=uf+e.name;return Object.defineProperty(e,"name",{value:t}),e}var of=af(function(e){let t=un();return t&&(Ga=Error.stackTraceLimit,Error.stackTraceLimit=Number.POSITIVE_INFINITY),Error.captureStackTrace(e),t&&(Error.stackTraceLimit=Ga),e});function sf(e,t,r){let u=so.get(e);if(Wt(u!==void 0,"expected `message` to be found"),typeof u=="function")return Wt(u.length<=t.length,`Code: ${e}; The provided arguments length (${t.length}) does not match the required ones (${u.length}).`),Reflect.apply(u,r,t);let n=/%[dfijoOs]/g,a=0;for(;n.exec(u)!==null;)a++;return Wt(a===t.length,`Code: ${e}; The provided arguments length (${t.length}) does not match the required ones (${a}).`),t.length===0?u:(t.unshift(u),Reflect.apply(ZD,null,t))}function lf(e){if(e==null)return String(e);if(typeof e=="function"&&e.name)return`function ${e.name}`;if(typeof e=="object")return e.constructor&&e.constructor.name?`an instance of ${e.constructor.name}`:`${rn(e,{depth:-1})}`;let t=rn(e,{colors:!1});return t.length>28&&(t=`${t.slice(0,25)}...`),`type ${typeof e} (${t})`}var sr={}.hasOwnProperty,{ERR_INVALID_PACKAGE_CONFIG:cf}=ye,Ua=new Map;function lo(e,{base:t,specifier:r}){let u=Ua.get(e);if(u)return u;let n;try{n=XD.readFileSync(JD.toNamespacedPath(e),"utf8")}catch(i){let o=i;if(o.code!=="ENOENT")throw o}let a={exists:!1,pjsonPath:e,main:void 0,name:void 0,type:"none",exports:void 0,imports:void 0};if(n!==void 0){let i;try{i=JSON.parse(n)}catch(o){let s=o,c=new cf(e,(t?`"${r}" from `:"")+tn(t||r),s.message);throw c.cause=s,c}a.exists=!0,sr.call(i,"name")&&typeof i.name=="string"&&(a.name=i.name),sr.call(i,"main")&&typeof i.main=="string"&&(a.main=i.main),sr.call(i,"exports")&&(a.exports=i.exports),sr.call(i,"imports")&&(a.imports=i.imports),sr.call(i,"type")&&(i.type==="commonjs"||i.type==="module")&&(a.type=i.type)}return Ua.set(e,a),a}function kn(e){let t=new URL("package.json",e);for(;!t.pathname.endsWith("node_modules/package.json");){let n=lo(tn(t),{specifier:e});if(n.exists)return n;let a=t;if(t=new URL("../package.json",t),t.pathname===a.pathname)break}return{pjsonPath:tn(t),exists:!1,type:"none"}}function qa(e){return kn(e).type}var{ERR_UNKNOWN_FILE_EXTENSION:Df}=ye,ff={}.hasOwnProperty,df={__proto__:null,".cjs":"commonjs",".js":"module",".json":"json",".mjs":"module"};function hf(e){return e&&/\s*(text|application)\/javascript\s*(;\s*charset=utf-?8\s*)?/i.test(e)?"module":e==="application/json"?"json":null}var Va={__proto__:null,"data:":pf,"file:":gf,"http:":Ka,"https:":Ka,"node:"(){return"builtin"}};function pf(e){let{1:t}=/^([^/]+\/[^;,]+)[^,]*?(;base64)?,/.exec(e.pathname)||[null,null,null];return hf(t)}function Ff(e){let t=e.pathname,r=t.length;for(;r--;){let u=t.codePointAt(r);if(u===47)return"";if(u===46)return t.codePointAt(r-1)===47?"":t.slice(r)}return""}function gf(e,t,r){let u=Ff(e);if(u===".js"){let i=qa(e);return i!=="none"?i:"commonjs"}if(u===""){let i=qa(e);return i==="none"||i==="commonjs"?"commonjs":"module"}let n=df[u];if(n)return n;if(r)return;let a=YD(e);throw new Df(u,a)}function Ka(){}function co(e,t){let r=e.protocol;return ff.call(Va,r)&&Va[r](e,t,!0)||null}var{ERR_INVALID_ARG_VALUE:Ef}=ye,Do=Object.freeze(["node","import"]),mf=new Set(Do);function Cf(){return Do}function vf(){return mf}function Af(e){if(e!==void 0&&e!==Cf()){if(!Array.isArray(e))throw new Ef("conditions",e,"expected an array");return new Set(e)}return vf()}var Tr=RegExp.prototype[Symbol.replace],{ERR_NETWORK_IMPORT_DISALLOWED:Lu,ERR_INVALID_MODULE_SPECIFIER:iu,ERR_INVALID_PACKAGE_CONFIG:fo,ERR_INVALID_PACKAGE_TARGET:yf,ERR_MODULE_NOT_FOUND:Rn,ERR_PACKAGE_IMPORT_NOT_DEFINED:_f,ERR_PACKAGE_PATH_NOT_EXPORTED:bf,ERR_UNSUPPORTED_DIR_IMPORT:Bf,ERR_UNSUPPORTED_RESOLVE_REQUEST:za}=ye,ho={}.hasOwnProperty,Ya=/(^|\\|\/)((\.|%2e)(\.|%2e)?|(n|%6e|%4e)(o|%6f|%4f)(d|%64|%44)(e|%65|%45)(_|%5f)(m|%6d|%4d)(o|%6f|%4f)(d|%64|%44)(u|%75|%55)(l|%6c|%4c)(e|%65|%45)(s|%73|%53))?(\\|\/|$)/i,Xa=/(^|\\|\/)((\.|%2e)(\.|%2e)?|(n|%6e|%4e)(o|%6f|%4f)(d|%64|%44)(e|%65|%45)(_|%5f)(m|%6d|%4d)(o|%6f|%4f)(d|%64|%44)(u|%75|%55)(l|%6c|%4c)(e|%65|%45)(s|%73|%53))(\\|\/|$)/i,wf=/^\.|%|\\/,Ir=/\*/g,Sf=/%2f|%5c/i,Ja=new Set,kf=/[/\\]{2}/;function Qa(e,t,r,u,n,a,i){if(Ht.noDeprecation)return;let o=se(u),s=kf.exec(i?e:t)!==null;Ht.emitWarning(`Use of deprecated ${s?"double slash":"leading or trailing slash matching"} resolving "${e}" for module request "${t}" ${t===r?"":`matched to "${r}" `}in the "${n?"imports":"exports"}" field module resolution of the package at ${o}${a?` imported from ${se(a)}`:""}.`,"DeprecationWarning","DEP0166")}function Za(e,t,r,u){if(Ht.noDeprecation||co(e,{parentURL:r.href})!=="module")return;let a=se(e.href),i=se(new he(".",t)),o=se(r);u?oo.resolve(i,u)!==a&&Ht.emitWarning(`Package ${i} has a "main" field set to "${u}", excluding the full filename and extension to the resolved file at "${a.slice(i.length)}", imported from ${o}.
664
+ `&&e[t]!=="\r")throw new te("invalid escape: only line-ending whitespace may be escaped",{toml:e,ptr:a});t=tt(e,t)}else if(c in Ga)o+=Ga[c];else throw new te("unrecognized escape sequence",{toml:e,ptr:a});s=t}else!u&&c==="\\"&&(a=t-1,i=!0,o+=e.slice(s,a))}return o+e.slice(s,r-1)}function xD(e,t,r){if(e==="true")return!0;if(e==="false")return!1;if(e==="-inf")return-1/0;if(e==="inf"||e==="+inf")return 1/0;if(e==="nan"||e==="+nan"||e==="-nan")return NaN;if(e==="-0")return 0;let u;if((u=wD.test(e))||SD.test(e)){if(kD.test(e))throw new te("leading zeroes are not allowed",{toml:t,ptr:r});let a=+e.replace(/_/g,"");if(isNaN(a))throw new te("invalid number",{toml:t,ptr:r});if(u&&!Number.isSafeInteger(a))throw new te("integer value cannot be represented losslessly",{toml:t,ptr:r});return a}let n=new BD(e);if(!n.isValid())throw new te("invalid value",{toml:t,ptr:r});return n}function PD(e,t,r,u){let n=e.slice(t,r),a=n.indexOf("#");a>-1&&(Bn(e,a),n=n.slice(0,a));let i=n.trimEnd();if(!u){let o=n.indexOf(`
665
+ `,i.length);if(o>-1)throw new te("newlines are not allowed in inline tables",{toml:e,ptr:t+o})}return[i,a]}function wn(e,t,r,u=-1){if(u===0)throw new te("document contains excessively nested structures. aborting.",{toml:e,ptr:t});let n=e[t];if(n==="["||n==="{"){let[o,s]=n==="["?ID(e,t,u):TD(e,t,u),c=r?Wa(e,s,",",r):s;if(s-c&&r==="}"){let l=eu(e,s,c);if(l>-1)throw new te("newlines are not allowed in inline tables",{toml:e,ptr:l})}return[o,c]}let a;if(n==='"'||n==="'"){a=uo(e,t);let o=no(e,t,a);if(r){if(a=tt(e,a,r!=="]"),e[a]&&e[a]!==","&&e[a]!==r&&e[a]!==`
666
+ `&&e[a]!=="\r")throw new te("unexpected character encountered",{toml:e,ptr:a});a+=+(e[a]===",")}return[o,a]}a=Wa(e,t,",",r);let i=PD(e,t,a-+(e[a-1]===","),r==="]");if(!i[0])throw new te("incomplete key-value declaration: no value specified",{toml:e,ptr:t});return r&&i[1]>-1&&(a=tt(e,t+i[1]),a+=+(e[a]===",")),[xD(i[0],e,t),a]}var OD=/^[a-zA-Z0-9-_]+[ \t]*$/;function rn(e,t,r="="){let u=t-1,n=[],a=e.indexOf(r,t);if(a<0)throw new te("incomplete key-value: cannot find end of key",{toml:e,ptr:t});do{let i=e[t=++u];if(i!==" "&&i!==" ")if(i==='"'||i==="'"){if(i===e[t+1]&&i===e[t+2])throw new te("multiline strings are not allowed in keys",{toml:e,ptr:t});let o=uo(e,t);if(o<0)throw new te("unfinished string encountered",{toml:e,ptr:t});u=e.indexOf(".",o);let s=e.slice(o,u<0||u>a?a:u),c=eu(s);if(c>-1)throw new te("newlines are not allowed in keys",{toml:e,ptr:t+u+c});if(s.trimStart())throw new te("found extra tokens after the string part",{toml:e,ptr:o});if(a<o&&(a=e.indexOf(r,o),a<0))throw new te("incomplete key-value: cannot find end of key",{toml:e,ptr:t});n.push(no(e,t,o))}else{u=e.indexOf(".",t);let o=e.slice(t,u<0||u>a?a:u);if(!OD.test(o))throw new te("only letter, numbers, dashes and underscores are allowed in keys",{toml:e,ptr:t});n.push(o.trimEnd())}}while(u+1&&u<a);return[n,tt(e,a+1,!0,!0)]}function TD(e,t,r=-1){let u={},n=new Set,a,i=0;for(t++;(a=e[t++])!=="}"&&a;){if(a===`
667
+ `)throw new te("newlines are not allowed in inline tables",{toml:e,ptr:t-1});if(a==="#")throw new te("inline tables cannot contain comments",{toml:e,ptr:t-1});if(a===",")throw new te("expected key-value, found comma",{toml:e,ptr:t-1});if(a!==" "&&a!==" "){let o,s=u,c=!1,[l,D]=rn(e,t-1);for(let p=0;p<l.length;p++){if(p&&(s=c?s[o]:s[o]={}),o=l[p],(c=Object.hasOwn(s,o))&&(typeof s[o]!="object"||n.has(s[o])))throw new te("trying to redefine an already defined value",{toml:e,ptr:t});!c&&o==="__proto__"&&Object.defineProperty(s,o,{enumerable:!0,configurable:!0,writable:!0})}if(c)throw new te("trying to redefine an already defined value",{toml:e,ptr:t});let[f,d]=wn(e,D,"}",r-1);n.add(f),s[o]=f,t=d,i=e[t-1]===","?t-1:0}}if(i)throw new te("trailing commas are not allowed in inline tables",{toml:e,ptr:i});if(!a)throw new te("unfinished table encountered",{toml:e,ptr:t});return[u,t]}function ID(e,t,r=-1){let u=[],n;for(t++;(n=e[t++])!=="]"&&n;){if(n===",")throw new te("expected value, found comma",{toml:e,ptr:t-1});if(n==="#")t=Bn(e,t);else if(n!==" "&&n!==" "&&n!==`
668
+ `&&n!=="\r"){let a=wn(e,t-1,"]",r-1);u.push(a[0]),t=a[1]}}if(!n)throw new te("unfinished array encountered",{toml:e,ptr:t});return[u,t]}function Ua(e,t,r,u){var n,a;let i=t,o=r,s,c=!1,l;for(let D=0;D<e.length;D++){if(D){if(i=c?i[s]:i[s]={},o=(l=o[s]).c,u===0&&(l.t===1||l.t===2))return null;if(l.t===2){let f=i.length-1;i=i[f],o=o[f].c}}if(s=e[D],(c=Object.hasOwn(i,s))&&((n=o[s])==null?void 0:n.t)===0&&((a=o[s])!=null&&a.d))return null;c||(s==="__proto__"&&(Object.defineProperty(i,s,{enumerable:!0,configurable:!0,writable:!0}),Object.defineProperty(o,s,{enumerable:!0,configurable:!0,writable:!0})),o[s]={t:D<e.length-1&&u===2?3:u,d:!1,i:0,c:{}})}if(l=o[s],l.t!==u&&!(u===1&&l.t===3)||(u===2&&(l.d||(l.d=!0,i[s]=[]),i[s].push(i={}),l.c[l.i++]=l={t:1,d:!1,i:0,c:{}}),l.d))return null;if(l.d=!0,u===1)i=c?i[s]:i[s]={};else if(u===0&&c)return null;return[s,i,l.c]}function ND(e,t){let r=t?.maxDepth??1e3,u={},n={},a=u,i=n;for(let o=tt(e,0);o<e.length;){if(e[o]==="["){let s=e[++o]==="[",c=rn(e,o+=+s,"]");if(s){if(e[c[1]-1]!=="]")throw new te("expected end of table declaration",{toml:e,ptr:c[1]-1});c[1]++}let l=Ua(c[0],u,n,s?2:1);if(!l)throw new te("trying to redefine an already defined table or value",{toml:e,ptr:o});i=l[2],a=l[1],o=c[1]}else{let s=rn(e,o),c=Ua(s[0],a,i,0);if(!c)throw new te("trying to redefine an already defined table or value",{toml:e,ptr:o});let l=wn(e,s[1],void 0,r);c[1][c[0]]=l[0],o=l[1]}if(o=tt(e,o,!0),e[o]&&e[o]!==`
669
+ `&&e[o]!=="\r")throw new te("each key-value declaration must be followed by an end-of-line",{toml:e,ptr:o});o=tt(e,o)}return u}async function jD(e){Ki(e)&&(e=new URL(e));try{return await LD.readFile(e,"utf8")}catch(t){if(t.code==="ENOENT")return;throw new Error(`Unable to read '${e}': ${t.message}`)}}var yr=jD;async function Sn(e){let t=await yr(e);try{return vD(t)}catch(r){throw r.message=`JSON Error in ${e}:
670
+ ${r.message}`,r}}async function Lt(e){return(await import(rD(e).href)).default}async function $D(e){try{return await Sn(e)}catch(t){try{return await Lt(e)}catch{}throw t}}var ao=process.versions.bun?async function(t){let{prettier:r}=await $D(t);return r}:async function(t){let{prettier:r}=await Sn(t);return r};async function io(e){let{prettier:t}=await Gr(e);return t}var Nu;async function Gr(e){let t=await yr(e);Nu||({__parsePrettierYamlConfig:Nu}=await import("./yaml-FHI3PI2W.js"));try{return Nu(t)}catch(r){throw r.message=`YAML Error in ${e}:
671
+ ${r.message}`,r}}async function MD(e){let t=await yr(e);try{return ND(t)}catch(r){throw r.message=`TOML Error in ${e}:
672
+ ${r.message}`,r}}async function HD(e){let t=await yr(e);try{return fD.parse(t)}catch(r){throw r.message=`JSON5 Error in ${e}:
673
+ ${r.message}`,r}}var WD={".toml":MD,".json5":HD,".json":Sn,".js":Lt,".mjs":Lt,".cjs":Lt,".ts":Lt,".mts":Lt,".cts":Lt,".yaml":Gr,".yml":Gr,"":Gr},GD=WD,UD=["package.json","package.yaml",".prettierrc",".prettierrc.json",".prettierrc.yaml",".prettierrc.yml",".prettierrc.json5",".prettierrc.js",".prettierrc.ts",".prettierrc.mjs",".prettierrc.mts",".prettierrc.cjs",".prettierrc.cts","prettier.config.js","prettier.config.ts","prettier.config.mjs","prettier.config.mts","prettier.config.cjs","prettier.config.cts",".prettierrc.toml"];async function qD({name:e,path:t}){if(e==="package.json")try{return!!await ao(t)}catch{return!1}if(e==="package.yaml")try{return!!await io(t)}catch{return!1}return!0}function VD(e){return new q0(UD,{filter:qD,stopDirectory:e})}var KD=VD,rf={}.hasOwnProperty,uf=/^([A-Z][a-z\d]*)+$/,nf=new Set(["string","function","number","object","Function","Object","boolean","bigint","symbol"]),ye={};function Lu(e,t="and"){return e.length<3?e.join(` ${t} `):`${e.slice(0,-1).join(", ")}, ${t} ${e[e.length-1]}`}var co=new Map,af="__node_internal_",qa;ye.ERR_INVALID_ARG_TYPE=Le("ERR_INVALID_ARG_TYPE",(e,t,r)=>{Wt(typeof e=="string","'name' must be a string"),Array.isArray(t)||(t=[t]);let u="The ";if(e.endsWith(" argument"))u+=`${e} `;else{let o=e.includes(".")?"property":"argument";u+=`"${e}" ${o} `}u+="must be ";let n=[],a=[],i=[];for(let o of t)Wt(typeof o=="string","All expected entries have to be of type string"),nf.has(o)?n.push(o.toLowerCase()):uf.exec(o)===null?(Wt(o!=="object",'The value "object" should be written as "Object"'),i.push(o)):a.push(o);if(a.length>0){let o=n.indexOf("object");o!==-1&&(n.slice(o,1),a.push("Object"))}return n.length>0&&(u+=`${n.length>1?"one of type":"of type"} ${Lu(n,"or")}`,(a.length>0||i.length>0)&&(u+=" or ")),a.length>0&&(u+=`an instance of ${Lu(a,"or")}`,i.length>0&&(u+=" or ")),i.length>0&&(i.length>1?u+=`one of ${Lu(i,"or")}`:(i[0].toLowerCase()!==i[0]&&(u+="an "),u+=`${i[0]}`)),u+=`. Received ${Df(r)}`,u},TypeError);ye.ERR_INVALID_MODULE_SPECIFIER=Le("ERR_INVALID_MODULE_SPECIFIER",(e,t,r=void 0)=>`Invalid module "${e}" ${t}${r?` imported from ${r}`:""}`,TypeError);ye.ERR_INVALID_PACKAGE_CONFIG=Le("ERR_INVALID_PACKAGE_CONFIG",(e,t,r)=>`Invalid package config ${e}${t?` while importing ${t}`:""}${r?`. ${r}`:""}`,Error);ye.ERR_INVALID_PACKAGE_TARGET=Le("ERR_INVALID_PACKAGE_TARGET",(e,t,r,u=!1,n=void 0)=>{let a=typeof r=="string"&&!u&&r.length>0&&!r.startsWith("./");return t==="."?(Wt(u===!1),`Invalid "exports" main target ${JSON.stringify(r)} defined in the package config ${e}package.json${n?` imported from ${n}`:""}${a?'; targets must start with "./"':""}`):`Invalid "${u?"imports":"exports"}" target ${JSON.stringify(r)} defined for '${t}' in the package config ${e}package.json${n?` imported from ${n}`:""}${a?'; targets must start with "./"':""}`},Error);ye.ERR_MODULE_NOT_FOUND=Le("ERR_MODULE_NOT_FOUND",(e,t,r=!1)=>`Cannot find ${r?"module":"package"} '${e}' imported from ${t}`,Error);ye.ERR_NETWORK_IMPORT_DISALLOWED=Le("ERR_NETWORK_IMPORT_DISALLOWED","import of '%s' by %s is not supported: %s",Error);ye.ERR_PACKAGE_IMPORT_NOT_DEFINED=Le("ERR_PACKAGE_IMPORT_NOT_DEFINED",(e,t,r)=>`Package import specifier "${e}" is not defined${t?` in package ${t}package.json`:""} imported from ${r}`,TypeError);ye.ERR_PACKAGE_PATH_NOT_EXPORTED=Le("ERR_PACKAGE_PATH_NOT_EXPORTED",(e,t,r=void 0)=>t==="."?`No "exports" main defined in ${e}package.json${r?` imported from ${r}`:""}`:`Package subpath '${t}' is not defined by "exports" in ${e}package.json${r?` imported from ${r}`:""}`,Error);ye.ERR_UNSUPPORTED_DIR_IMPORT=Le("ERR_UNSUPPORTED_DIR_IMPORT","Directory import '%s' is not supported resolving ES modules imported from %s",Error);ye.ERR_UNSUPPORTED_RESOLVE_REQUEST=Le("ERR_UNSUPPORTED_RESOLVE_REQUEST",'Failed to resolve module specifier "%s" from "%s": Invalid relative URL or base scheme is not hierarchical.',TypeError);ye.ERR_UNKNOWN_FILE_EXTENSION=Le("ERR_UNKNOWN_FILE_EXTENSION",(e,t)=>`Unknown file extension "${e}" for ${t}`,TypeError);ye.ERR_INVALID_ARG_VALUE=Le("ERR_INVALID_ARG_VALUE",(e,t,r="is invalid")=>{let u=nn(t);return u.length>128&&(u=`${u.slice(0,128)}...`),`The ${e.includes(".")?"property":"argument"} '${e}' ${r}. Received ${u}`},TypeError);function Le(e,t,r){return co.set(e,t),of(r,e)}function of(e,t){return r;function r(...u){let n=Error.stackTraceLimit;an()&&(Error.stackTraceLimit=0);let a=new e;an()&&(Error.stackTraceLimit=n);let i=cf(t,u,a);return Object.defineProperties(a,{message:{value:i,enumerable:!1,writable:!0,configurable:!0},toString:{value(){return`${this.name} [${t}]: ${this.message}`},enumerable:!1,writable:!0,configurable:!0}}),lf(a),a.code=t,a}}function an(){try{if(ef.startupSnapshot.isBuildingSnapshot())return!1}catch{}let e=Object.getOwnPropertyDescriptor(Error,"stackTraceLimit");return e===void 0?Object.isExtensible(Error):rf.call(e,"writable")&&e.writable!==void 0?e.writable:e.set!==void 0}function sf(e){let t=af+e.name;return Object.defineProperty(e,"name",{value:t}),e}var lf=sf(function(e){let t=an();return t&&(qa=Error.stackTraceLimit,Error.stackTraceLimit=Number.POSITIVE_INFINITY),Error.captureStackTrace(e),t&&(Error.stackTraceLimit=qa),e});function cf(e,t,r){let u=co.get(e);if(Wt(u!==void 0,"expected `message` to be found"),typeof u=="function")return Wt(u.length<=t.length,`Code: ${e}; The provided arguments length (${t.length}) does not match the required ones (${u.length}).`),Reflect.apply(u,r,t);let n=/%[dfijoOs]/g,a=0;for(;n.exec(u)!==null;)a++;return Wt(a===t.length,`Code: ${e}; The provided arguments length (${t.length}) does not match the required ones (${a}).`),t.length===0?u:(t.unshift(u),Reflect.apply(tf,null,t))}function Df(e){if(e==null)return String(e);if(typeof e=="function"&&e.name)return`function ${e.name}`;if(typeof e=="object")return e.constructor&&e.constructor.name?`an instance of ${e.constructor.name}`:`${nn(e,{depth:-1})}`;let t=nn(e,{colors:!1});return t.length>28&&(t=`${t.slice(0,25)}...`),`type ${typeof e} (${t})`}var lr={}.hasOwnProperty,{ERR_INVALID_PACKAGE_CONFIG:ff}=ye,Va=new Map;function Do(e,{base:t,specifier:r}){let u=Va.get(e);if(u)return u;let n;try{n=QD.readFileSync(ZD.toNamespacedPath(e),"utf8")}catch(i){let o=i;if(o.code!=="ENOENT")throw o}let a={exists:!1,pjsonPath:e,main:void 0,name:void 0,type:"none",exports:void 0,imports:void 0};if(n!==void 0){let i;try{i=JSON.parse(n)}catch(o){let s=o,c=new ff(e,(t?`"${r}" from `:"")+un(t||r),s.message);throw c.cause=s,c}a.exists=!0,lr.call(i,"name")&&typeof i.name=="string"&&(a.name=i.name),lr.call(i,"main")&&typeof i.main=="string"&&(a.main=i.main),lr.call(i,"exports")&&(a.exports=i.exports),lr.call(i,"imports")&&(a.imports=i.imports),lr.call(i,"type")&&(i.type==="commonjs"||i.type==="module")&&(a.type=i.type)}return Va.set(e,a),a}function xn(e){let t=new URL("package.json",e);for(;!t.pathname.endsWith("node_modules/package.json");){let n=Do(un(t),{specifier:e});if(n.exists)return n;let a=t;if(t=new URL("../package.json",t),t.pathname===a.pathname)break}return{pjsonPath:un(t),exists:!1,type:"none"}}function Ka(e){return xn(e).type}var{ERR_UNKNOWN_FILE_EXTENSION:pf}=ye,df={}.hasOwnProperty,hf={__proto__:null,".cjs":"commonjs",".js":"module",".json":"json",".mjs":"module"};function gf(e){return e&&/\s*(text|application)\/javascript\s*(;\s*charset=utf-?8\s*)?/i.test(e)?"module":e==="application/json"?"json":null}var za={__proto__:null,"data:":Ff,"file:":Ef,"http:":Ya,"https:":Ya,"node:"(){return"builtin"}};function Ff(e){let{1:t}=/^([^/]+\/[^;,]+)[^,]*?(;base64)?,/.exec(e.pathname)||[null,null,null];return gf(t)}function mf(e){let t=e.pathname,r=t.length;for(;r--;){let u=t.codePointAt(r);if(u===47)return"";if(u===46)return t.codePointAt(r-1)===47?"":t.slice(r)}return""}function Ef(e,t,r){let u=mf(e);if(u===".js"){let i=Ka(e);return i!=="none"?i:"commonjs"}if(u===""){let i=Ka(e);return i==="none"||i==="commonjs"?"commonjs":"module"}let n=hf[u];if(n)return n;if(r)return;let a=JD(e);throw new pf(u,a)}function Ya(){}function fo(e,t){let r=e.protocol;return df.call(za,r)&&za[r](e,t,!0)||null}var{ERR_INVALID_ARG_VALUE:Cf}=ye,po=Object.freeze(["node","import"]),vf=new Set(po);function Af(){return po}function yf(){return vf}function _f(e){if(e!==void 0&&e!==Af()){if(!Array.isArray(e))throw new Cf("conditions",e,"expected an array");return new Set(e)}return yf()}var Tr=RegExp.prototype[Symbol.replace],{ERR_NETWORK_IMPORT_DISALLOWED:ju,ERR_INVALID_MODULE_SPECIFIER:ou,ERR_INVALID_PACKAGE_CONFIG:ho,ERR_INVALID_PACKAGE_TARGET:bf,ERR_MODULE_NOT_FOUND:Pn,ERR_PACKAGE_IMPORT_NOT_DEFINED:Bf,ERR_PACKAGE_PATH_NOT_EXPORTED:wf,ERR_UNSUPPORTED_DIR_IMPORT:Sf,ERR_UNSUPPORTED_RESOLVE_REQUEST:Xa}=ye,go={}.hasOwnProperty,Ja=/(^|\\|\/)((\.|%2e)(\.|%2e)?|(n|%6e|%4e)(o|%6f|%4f)(d|%64|%44)(e|%65|%45)(_|%5f)(m|%6d|%4d)(o|%6f|%4f)(d|%64|%44)(u|%75|%55)(l|%6c|%4c)(e|%65|%45)(s|%73|%53))?(\\|\/|$)/i,Qa=/(^|\\|\/)((\.|%2e)(\.|%2e)?|(n|%6e|%4e)(o|%6f|%4f)(d|%64|%44)(e|%65|%45)(_|%5f)(m|%6d|%4d)(o|%6f|%4f)(d|%64|%44)(u|%75|%55)(l|%6c|%4c)(e|%65|%45)(s|%73|%53))(\\|\/|$)/i,kf=/^\.|%|\\/,Ir=/\*/g,Rf=/%2f|%5c/i,Za=new Set,xf=/[/\\]{2}/;function ei(e,t,r,u,n,a,i){if(Ht.noDeprecation)return;let o=se(u),s=xf.exec(i?e:t)!==null;Ht.emitWarning(`Use of deprecated ${s?"double slash":"leading or trailing slash matching"} resolving "${e}" for module request "${t}" ${t===r?"":`matched to "${r}" `}in the "${n?"imports":"exports"}" field module resolution of the package at ${o}${a?` imported from ${se(a)}`:""}.`,"DeprecationWarning","DEP0166")}function ti(e,t,r,u){if(Ht.noDeprecation||fo(e,{parentURL:r.href})!=="module")return;let a=se(e.href),i=se(new de(".",t)),o=se(r);u?lo.resolve(i,u)!==a&&Ht.emitWarning(`Package ${i} has a "main" field set to "${u}", excluding the full filename and extension to the resolved file at "${a.slice(i.length)}", imported from ${o}.
659
674
  Automatic extension resolution of the "main" field is deprecated for ES modules.`,"DeprecationWarning","DEP0151"):Ht.emitWarning(`No "main" or "exports" field defined in the package.json for ${i} resolving the main entry point "${a.slice(i.length)}", imported from ${o}.
660
- Default "index" lookups for the main are deprecated for ES modules.`,"DeprecationWarning","DEP0151")}function po(e){try{return io(e)}catch{}}function xu(e){let t=io(e,{throwIfNoEntry:!1}),r=t?t.isFile():void 0;return r??!1}function Rf(e,t,r){let u;if(t.main!==void 0){if(u=new he(t.main,e),xu(u))return u;let i=[`./${t.main}.js`,`./${t.main}.json`,`./${t.main}.node`,`./${t.main}/index.js`,`./${t.main}/index.json`,`./${t.main}/index.node`],o=-1;for(;++o<i.length&&(u=new he(i[o],e),!xu(u));)u=void 0;if(u)return Za(u,e,r,t.main),u}let n=["./index.js","./index.json","./index.node"],a=-1;for(;++a<n.length&&(u=new he(n[a],e),!xu(u));)u=void 0;if(u)return Za(u,e,r,t.main),u;throw new Rn(se(new he(".",e)),se(r))}function Pf(e,t,r){if(Sf.exec(e.pathname)!==null)throw new iu(e.pathname,'must not include encoded "/" or "\\" characters',se(t));let u;try{u=se(e)}catch(a){let i=a;throw Object.defineProperty(i,"input",{value:String(e)}),Object.defineProperty(i,"module",{value:String(t)}),i}let n=po(u.endsWith("/")?u.slice(-1):u);if(n&&n.isDirectory()){let a=new Bf(u,se(t));throw a.url=String(e),a}if(!n||!n.isFile()){let a=new Rn(u||e.pathname,t&&se(t),!0);throw a.url=String(e),a}if(!r){let a=zD(u),{search:i,hash:o}=e;e=wn(a+(u.endsWith(oo.sep)?"/":"")),e.search=i,e.hash=o}return e}function Of(e,t,r){return new _f(e,t&&se(new he(".",t)),se(r))}function ju(e,t,r){return new bf(se(new he(".",t)),e,r&&se(r))}function Tf(e,t,r,u,n){let a=`request is not a valid match in pattern "${t}" for the "${u?"imports":"exports"}" resolution of ${se(r)}`;throw new iu(e,a,n&&se(n))}function dr(e,t,r,u,n){return t=typeof t=="object"&&t!==null?JSON.stringify(t,null,""):`${t}`,new yf(se(new he(".",r)),e,t,u,n&&se(n))}function If(e,t,r,u,n,a,i,o,s){if(t!==""&&!a&&e[e.length-1]!=="/")throw dr(r,e,u,i,n);if(!e.startsWith("./")){if(i&&!e.startsWith("../")&&!e.startsWith("/")){let f=!1;try{new he(e),f=!0}catch{}if(!f){let h=a?Tr.call(Ir,e,()=>t):e+t;return go(h,u,s)}}throw dr(r,e,u,i,n)}if(Ya.exec(e.slice(2))!==null)if(Xa.exec(e.slice(2))===null){if(!o){let f=a?r.replace("*",()=>t):r+t,h=a?Tr.call(Ir,e,()=>t):e;Qa(h,f,r,u,i,n,!0)}}else throw dr(r,e,u,i,n);let c=new he(e,u),l=c.pathname,D=new he(".",u).pathname;if(!l.startsWith(D))throw dr(r,e,u,i,n);if(t==="")return c;if(Ya.exec(t)!==null){let f=a?r.replace("*",()=>t):r+t;if(Xa.exec(t)===null){if(!o){let h=a?Tr.call(Ir,e,()=>t):e;Qa(h,f,r,u,i,n,!1)}}else Tf(f,r,u,i,n)}return a?new he(Tr.call(Ir,c.href,()=>t)):new he(t,c)}function Nf(e){let t=Number(e);return`${t}`!==e?!1:t>=0&&t<4294967295}function tr(e,t,r,u,n,a,i,o,s){if(typeof t=="string")return If(t,r,u,e,n,a,i,o,s);if(Array.isArray(t)){let c=t;if(c.length===0)return null;let l,D=-1;for(;++D<c.length;){let f=c[D],h;try{h=tr(e,f,r,u,n,a,i,o,s)}catch(d){let p=d;if(l=p,p.code==="ERR_INVALID_PACKAGE_TARGET")continue;throw d}if(h!==void 0){if(h===null){l=null;continue}return h}}if(l==null)return null;throw l}if(typeof t=="object"&&t!==null){let c=Object.getOwnPropertyNames(t),l=-1;for(;++l<c.length;){let D=c[l];if(Nf(D))throw new fo(se(e),n,'"exports" cannot contain numeric property keys.')}for(l=-1;++l<c.length;){let D=c[l];if(D==="default"||s&&s.has(D)){let f=t[D],h=tr(e,f,r,u,n,a,i,o,s);if(h===void 0)continue;return h}}return null}if(t===null)return null;throw dr(u,t,e,i,n)}function Lf(e,t,r){if(typeof e=="string"||Array.isArray(e))return!0;if(typeof e!="object"||e===null)return!1;let u=Object.getOwnPropertyNames(e),n=!1,a=0,i=-1;for(;++i<u.length;){let o=u[i],s=o===""||o[0]!==".";if(a++===0)n=s;else if(n!==s)throw new fo(se(t),r,`"exports" cannot contain some keys starting with '.' and some not. The exports object must either be an object of package subpath keys or an object of main entry condition name keys only.`)}return n}function xf(e,t,r){if(Ht.noDeprecation)return;let u=se(t);Ja.has(u+"|"+e)||(Ja.add(u+"|"+e),Ht.emitWarning(`Use of deprecated trailing slash pattern mapping "${e}" in the "exports" field module resolution of the package at ${u}${r?` imported from ${se(r)}`:""}. Mapping specifiers ending in "/" is no longer supported.`,"DeprecationWarning","DEP0155"))}function ei(e,t,r,u,n){let a=r.exports;if(Lf(a,e,u)&&(a={".":a}),ho.call(a,t)&&!t.includes("*")&&!t.endsWith("/")){let l=a[t],D=tr(e,l,"",t,u,!1,!1,!1,n);if(D==null)throw ju(t,e,u);return D}let i="",o="",s=Object.getOwnPropertyNames(a),c=-1;for(;++c<s.length;){let l=s[c],D=l.indexOf("*");if(D!==-1&&t.startsWith(l.slice(0,D))){t.endsWith("/")&&xf(t,e,u);let f=l.slice(D+1);t.length>=l.length&&t.endsWith(f)&&Fo(i,l)===1&&l.lastIndexOf("*")===D&&(i=l,o=t.slice(D,t.length-f.length))}}if(i){let l=a[i],D=tr(e,l,o,i,u,!0,!1,t.endsWith("/"),n);if(D==null)throw ju(t,e,u);return D}throw ju(t,e,u)}function Fo(e,t){let r=e.indexOf("*"),u=t.indexOf("*"),n=r===-1?e.length:r+1,a=u===-1?t.length:u+1;return n>a?-1:a>n||r===-1?1:u===-1||e.length>t.length?-1:t.length>e.length?1:0}function jf(e,t,r){if(e==="#"||e.startsWith("#/")||e.endsWith("/")){let a="is not a valid internal imports specifier name";throw new iu(e,a,se(t))}let u,n=kn(t);if(n.exists){u=wn(n.pjsonPath);let a=n.imports;if(a)if(ho.call(a,e)&&!e.includes("*")){let i=tr(u,a[e],"",e,t,!1,!0,!1,r);if(i!=null)return i}else{let i="",o="",s=Object.getOwnPropertyNames(a),c=-1;for(;++c<s.length;){let l=s[c],D=l.indexOf("*");if(D!==-1&&e.startsWith(l.slice(0,-1))){let f=l.slice(D+1);e.length>=l.length&&e.endsWith(f)&&Fo(i,l)===1&&l.lastIndexOf("*")===D&&(i=l,o=e.slice(D,e.length-f.length))}}if(i){let l=a[i],D=tr(u,l,o,i,t,!0,!0,!1,r);if(D!=null)return D}}}throw Of(e,u,t)}function $f(e,t){let r=e.indexOf("/"),u=!0,n=!1;e[0]==="@"&&(n=!0,r===-1||e.length===0?u=!1:r=e.indexOf("/",r+1));let a=r===-1?e:e.slice(0,r);if(wf.exec(a)!==null&&(u=!1),!u)throw new iu(e,"is not a valid package name",se(t));let i="."+(r===-1?"":e.slice(r));return{packageName:a,packageSubpath:i,isScoped:n}}function go(e,t,r){if(Sn.includes(e))return new he("node:"+e);let{packageName:u,packageSubpath:n,isScoped:a}=$f(e,t),i=kn(t);if(i.exists){let l=wn(i.pjsonPath);if(i.name===u&&i.exports!==void 0&&i.exports!==null)return ei(l,n,i,t,r)}let o=new he("./node_modules/"+u+"/package.json",t),s=se(o),c;do{let l=po(s.slice(0,-13));if(!l||!l.isDirectory()){c=s,o=new he((a?"../../../../node_modules/":"../../../node_modules/")+u+"/package.json",o),s=se(o);continue}let D=lo(s,{base:t,specifier:e});return D.exports!==void 0&&D.exports!==null?ei(o,n,D,t,r):n==="."?Rf(o,D,t):new he(n,o)}while(s.length!==c.length);throw new Rn(u,se(t),!1)}function Mf(e){return e[0]==="."&&(e.length===1||e[1]==="/"||e[1]==="."&&(e.length===2||e[2]==="/"))}function Pn(e){return e===""?!1:e[0]==="/"?!0:Mf(e)}function Hf(e,t,r,u){let n=t.protocol,i=n==="data:"||n==="http:"||n==="https:",o;if(Pn(e))try{o=new he(e,t)}catch(s){let c=new za(e,t);throw c.cause=s,c}else if(n==="file:"&&e[0]==="#")o=jf(e,t,r);else try{o=new he(e)}catch(s){if(i&&!Sn.includes(e)){let c=new za(e,t);throw c.cause=s,c}o=go(e,t,r)}return ao(o!==void 0,"expected to be defined"),o.protocol!=="file:"?o:Pf(o,t,u)}function Wf(e,t,r){if(r){let u=r.protocol;if(u==="http:"||u==="https:"){if(Pn(e)){let n=t?.protocol;if(n&&n!=="https:"&&n!=="http:")throw new Lu(e,r,"remote imports cannot import from a local location.");return{url:t?.href||""}}throw Sn.includes(e)?new Lu(e,r,"remote imports cannot import from a local location."):new Lu(e,r,"only relative and absolute specifiers are supported.")}}}function Gf(e){return!!(e&&typeof e=="object"&&"href"in e&&typeof e.href=="string"&&"protocol"in e&&typeof e.protocol=="string"&&e.href&&e.protocol)}function Uf(e){if(e!==void 0&&typeof e!="string"&&!Gf(e))throw new ye.ERR_INVALID_ARG_TYPE("parentURL",["string","URL"],e)}function qf(e,t={}){let{parentURL:r}=t;ao(r!==void 0,"expected `parentURL` to be defined"),Uf(r);let u;if(r)try{u=new he(r)}catch{}let n,a;try{if(n=Pn(e)?new he(e,u):new he(e),a=n.protocol,a==="data:")return{url:n.href,format:null}}catch{}let i=Wf(e,n,u);if(i)return i;if(a===void 0&&n&&(a=n.protocol),a==="node:")return{url:e};if(n&&n.protocol==="node:")return{url:e};let o=Af(t.conditions),s=Hf(e,new he(r),o,!1);return{url:s.href,format:co(s,{parentURL:r})}}function Vf(e,t){if(!t)throw new Error("Please pass `parent`: `import-meta-resolve` cannot ponyfill that");try{return qf(e,{parentURL:t}).url}catch(r){let u=r;if((u.code==="ERR_UNSUPPORTED_DIR_IMPORT"||u.code==="ERR_MODULE_NOT_FOUND")&&typeof u.url=="string")return u.url;throw r}}function Kf(e,t){return import(Vf(e,KD(t).href))}var Eo=Kf;function Yf(e,t){return zf(t)(e)}var Xf=Yf,Jf=new Set(["MODULE_NOT_FOUND","ERR_REQUIRE_ESM","ERR_PACKAGE_PATH_NOT_EXPORTED","ERR_REQUIRE_ASYNC_MODULE"]);async function Qf(e,t){try{let u=Xf(e,t);return process.features.require_module&&u.__esModule?u.default:u}catch(u){if(!Jf.has(u?.code))throw u}return(await Eo(e,t)).default}var Zf=Qf;async function ed(e){let{base:t,ext:r}=VD.parse(e),u=t==="package.json"?uo:t==="package.yaml"?no:HD[r];if(!u)throw new Error(`No loader specified for extension "${r||"noExt"}"`);let n=await u(e);if(n){if(typeof n=="string"&&(n=await Zf(n,e)),typeof n!="object")throw new TypeError(`Config is only allowed to be an object, but received ${typeof n} in "${e}"`);return delete n.$schema,n}}var td=ed,Gr=new Map,Ur=new Map;function rd(){Gr.clear(),Ur.clear()}function ud(e,{shouldCache:t}){return e=An.resolve(e),(!t||!Gr.has(e))&&Gr.set(e,td(e)),Gr.get(e)}function nd(e){if(e=e?An.resolve(e):void 0,!Ur.has(e)){let t=qD(e),r=t.search.bind(t);Ur.set(e,r)}return Ur.get(e)}function mo(e,t={}){e=e?An.resolve(e):process.cwd();let r=S0.getPrettierConfigSearchStopDirectory();return nd(r)(e,{cache:t.shouldCache})}function ad(){rd(),J0()}function id(e,t){if(!e||!t.editorconfig)return;let r=t.useCache;return Z0(e,{shouldCache:r})}async function od(e,t){let r=t.useCache,u=t.config;if(!u){let a=e?vt.dirname(vt.resolve(e)):void 0;u=await mo(a,{shouldCache:r})}return u?(u=nu(u),{config:await ud(u,{shouldCache:r}),configFile:u}):void 0}async function Co(e,t){t={useCache:!0,...t};let r=nu(e),[u,n]=await Promise.all([od(r,t),id(r,t)]);if(!u&&!n)return null;let a={...n,...ld(u,r)};return Array.isArray(a.plugins)&&(a.plugins=a.plugins.map(i=>typeof i=="string"&&i.startsWith(".")?vt.resolve(vt.dirname(u.configFile),i):i)),a}async function sd(e){let t=e?vt.dirname(vt.resolve(nu(e))):void 0;return await mo(t,{shouldCache:!1})??null}function ld(e,t){let{config:r,configFile:u}=e||{},{overrides:n,...a}=r||{};if(t&&n){let i=vt.relative(vt.dirname(u),t);for(let o of n)cd(i,o.files,o.excludeFiles)&&Object.assign(a,o.options)}return a}function cd(e,t,r){let u=Array.isArray(t)?t:[t],[n,a]=O0(u,i=>i.includes("/"));return ja.default.isMatch(e,a,{ignore:r,basename:!0,dot:!0})||ja.default.isMatch(e,n,{ignore:r,basename:!1,dot:!0})}var Dd=(e,t,r,u)=>{if(!(e&&t==null))return t.replaceAll?t.replaceAll(r,u):r.global?t.replace(r,u):t.split(r).join(u)},yr=Dd;function fd(e){let t=e.indexOf("\r");return t!==-1?e.charAt(t+1)===`
661
- `?"crlf":"cr":"lf"}function On(e){switch(e){case"cr":return"\r";case"crlf":return`\r
675
+ Default "index" lookups for the main are deprecated for ES modules.`,"DeprecationWarning","DEP0151")}function Fo(e){try{return so(e)}catch{}}function $u(e){let t=so(e,{throwIfNoEntry:!1}),r=t?t.isFile():void 0;return r??!1}function Pf(e,t,r){let u;if(t.main!==void 0){if(u=new de(t.main,e),$u(u))return u;let i=[`./${t.main}.js`,`./${t.main}.json`,`./${t.main}.node`,`./${t.main}/index.js`,`./${t.main}/index.json`,`./${t.main}/index.node`],o=-1;for(;++o<i.length&&(u=new de(i[o],e),!$u(u));)u=void 0;if(u)return ti(u,e,r,t.main),u}let n=["./index.js","./index.json","./index.node"],a=-1;for(;++a<n.length&&(u=new de(n[a],e),!$u(u));)u=void 0;if(u)return ti(u,e,r,t.main),u;throw new Pn(se(new de(".",e)),se(r))}function Of(e,t,r){if(Rf.exec(e.pathname)!==null)throw new ou(e.pathname,'must not include encoded "/" or "\\" characters',se(t));let u;try{u=se(e)}catch(a){let i=a;throw Object.defineProperty(i,"input",{value:String(e)}),Object.defineProperty(i,"module",{value:String(t)}),i}let n=Fo(u.endsWith("/")?u.slice(-1):u);if(n&&n.isDirectory()){let a=new Sf(u,se(t));throw a.url=String(e),a}if(!n||!n.isFile()){let a=new Pn(u||e.pathname,t&&se(t),!0);throw a.url=String(e),a}if(!r){let a=XD(u),{search:i,hash:o}=e;e=kn(a+(u.endsWith(lo.sep)?"/":"")),e.search=i,e.hash=o}return e}function Tf(e,t,r){return new Bf(e,t&&se(new de(".",t)),se(r))}function Mu(e,t,r){return new wf(se(new de(".",t)),e,r&&se(r))}function If(e,t,r,u,n){let a=`request is not a valid match in pattern "${t}" for the "${u?"imports":"exports"}" resolution of ${se(r)}`;throw new ou(e,a,n&&se(n))}function dr(e,t,r,u,n){return t=typeof t=="object"&&t!==null?JSON.stringify(t,null,""):`${t}`,new bf(se(new de(".",r)),e,t,u,n&&se(n))}function Nf(e,t,r,u,n,a,i,o,s){if(t!==""&&!a&&e[e.length-1]!=="/")throw dr(r,e,u,i,n);if(!e.startsWith("./")){if(i&&!e.startsWith("../")&&!e.startsWith("/")){let f=!1;try{new de(e),f=!0}catch{}if(!f){let d=a?Tr.call(Ir,e,()=>t):e+t;return Eo(d,u,s)}}throw dr(r,e,u,i,n)}if(Ja.exec(e.slice(2))!==null)if(Qa.exec(e.slice(2))===null){if(!o){let f=a?r.replace("*",()=>t):r+t,d=a?Tr.call(Ir,e,()=>t):e;ei(d,f,r,u,i,n,!0)}}else throw dr(r,e,u,i,n);let c=new de(e,u),l=c.pathname,D=new de(".",u).pathname;if(!l.startsWith(D))throw dr(r,e,u,i,n);if(t==="")return c;if(Ja.exec(t)!==null){let f=a?r.replace("*",()=>t):r+t;if(Qa.exec(t)===null){if(!o){let d=a?Tr.call(Ir,e,()=>t):e;ei(d,f,r,u,i,n,!1)}}else If(f,r,u,i,n)}return a?new de(Tr.call(Ir,c.href,()=>t)):new de(t,c)}function Lf(e){let t=Number(e);return`${t}`!==e?!1:t>=0&&t<4294967295}function tr(e,t,r,u,n,a,i,o,s){if(typeof t=="string")return Nf(t,r,u,e,n,a,i,o,s);if(Array.isArray(t)){let c=t;if(c.length===0)return null;let l,D=-1;for(;++D<c.length;){let f=c[D],d;try{d=tr(e,f,r,u,n,a,i,o,s)}catch(p){let h=p;if(l=h,h.code==="ERR_INVALID_PACKAGE_TARGET")continue;throw p}if(d!==void 0){if(d===null){l=null;continue}return d}}if(l==null)return null;throw l}if(typeof t=="object"&&t!==null){let c=Object.getOwnPropertyNames(t),l=-1;for(;++l<c.length;){let D=c[l];if(Lf(D))throw new ho(se(e),n,'"exports" cannot contain numeric property keys.')}for(l=-1;++l<c.length;){let D=c[l];if(D==="default"||s&&s.has(D)){let f=t[D],d=tr(e,f,r,u,n,a,i,o,s);if(d===void 0)continue;return d}}return null}if(t===null)return null;throw dr(u,t,e,i,n)}function jf(e,t,r){if(typeof e=="string"||Array.isArray(e))return!0;if(typeof e!="object"||e===null)return!1;let u=Object.getOwnPropertyNames(e),n=!1,a=0,i=-1;for(;++i<u.length;){let o=u[i],s=o===""||o[0]!==".";if(a++===0)n=s;else if(n!==s)throw new ho(se(t),r,`"exports" cannot contain some keys starting with '.' and some not. The exports object must either be an object of package subpath keys or an object of main entry condition name keys only.`)}return n}function $f(e,t,r){if(Ht.noDeprecation)return;let u=se(t);Za.has(u+"|"+e)||(Za.add(u+"|"+e),Ht.emitWarning(`Use of deprecated trailing slash pattern mapping "${e}" in the "exports" field module resolution of the package at ${u}${r?` imported from ${se(r)}`:""}. Mapping specifiers ending in "/" is no longer supported.`,"DeprecationWarning","DEP0155"))}function ri(e,t,r,u,n){let a=r.exports;if(jf(a,e,u)&&(a={".":a}),go.call(a,t)&&!t.includes("*")&&!t.endsWith("/")){let l=a[t],D=tr(e,l,"",t,u,!1,!1,!1,n);if(D==null)throw Mu(t,e,u);return D}let i="",o="",s=Object.getOwnPropertyNames(a),c=-1;for(;++c<s.length;){let l=s[c],D=l.indexOf("*");if(D!==-1&&t.startsWith(l.slice(0,D))){t.endsWith("/")&&$f(t,e,u);let f=l.slice(D+1);t.length>=l.length&&t.endsWith(f)&&mo(i,l)===1&&l.lastIndexOf("*")===D&&(i=l,o=t.slice(D,t.length-f.length))}}if(i){let l=a[i],D=tr(e,l,o,i,u,!0,!1,t.endsWith("/"),n);if(D==null)throw Mu(t,e,u);return D}throw Mu(t,e,u)}function mo(e,t){let r=e.indexOf("*"),u=t.indexOf("*"),n=r===-1?e.length:r+1,a=u===-1?t.length:u+1;return n>a?-1:a>n||r===-1?1:u===-1||e.length>t.length?-1:t.length>e.length?1:0}function Mf(e,t,r){if(e==="#"||e.startsWith("#/")||e.endsWith("/")){let a="is not a valid internal imports specifier name";throw new ou(e,a,se(t))}let u,n=xn(t);if(n.exists){u=kn(n.pjsonPath);let a=n.imports;if(a)if(go.call(a,e)&&!e.includes("*")){let i=tr(u,a[e],"",e,t,!1,!0,!1,r);if(i!=null)return i}else{let i="",o="",s=Object.getOwnPropertyNames(a),c=-1;for(;++c<s.length;){let l=s[c],D=l.indexOf("*");if(D!==-1&&e.startsWith(l.slice(0,-1))){let f=l.slice(D+1);e.length>=l.length&&e.endsWith(f)&&mo(i,l)===1&&l.lastIndexOf("*")===D&&(i=l,o=e.slice(D,e.length-f.length))}}if(i){let l=a[i],D=tr(u,l,o,i,t,!0,!0,!1,r);if(D!=null)return D}}}throw Tf(e,u,t)}function Hf(e,t){let r=e.indexOf("/"),u=!0,n=!1;e[0]==="@"&&(n=!0,r===-1||e.length===0?u=!1:r=e.indexOf("/",r+1));let a=r===-1?e:e.slice(0,r);if(kf.exec(a)!==null&&(u=!1),!u)throw new ou(e,"is not a valid package name",se(t));let i="."+(r===-1?"":e.slice(r));return{packageName:a,packageSubpath:i,isScoped:n}}function Eo(e,t,r){if(Rn.includes(e))return new de("node:"+e);let{packageName:u,packageSubpath:n,isScoped:a}=Hf(e,t),i=xn(t);if(i.exists){let l=kn(i.pjsonPath);if(i.name===u&&i.exports!==void 0&&i.exports!==null)return ri(l,n,i,t,r)}let o=new de("./node_modules/"+u+"/package.json",t),s=se(o),c;do{let l=Fo(s.slice(0,-13));if(!l||!l.isDirectory()){c=s,o=new de((a?"../../../../node_modules/":"../../../node_modules/")+u+"/package.json",o),s=se(o);continue}let D=Do(s,{base:t,specifier:e});return D.exports!==void 0&&D.exports!==null?ri(o,n,D,t,r):n==="."?Pf(o,D,t):new de(n,o)}while(s.length!==c.length);throw new Pn(u,se(t),!1)}function Wf(e){return e[0]==="."&&(e.length===1||e[1]==="/"||e[1]==="."&&(e.length===2||e[2]==="/"))}function On(e){return e===""?!1:e[0]==="/"?!0:Wf(e)}function Gf(e,t,r,u){let n=t.protocol,i=n==="data:"||n==="http:"||n==="https:",o;if(On(e))try{o=new de(e,t)}catch(s){let c=new Xa(e,t);throw c.cause=s,c}else if(n==="file:"&&e[0]==="#")o=Mf(e,t,r);else try{o=new de(e)}catch(s){if(i&&!Rn.includes(e)){let c=new Xa(e,t);throw c.cause=s,c}o=Eo(e,t,r)}return oo(o!==void 0,"expected to be defined"),o.protocol!=="file:"?o:Of(o,t,u)}function Uf(e,t,r){if(r){let u=r.protocol;if(u==="http:"||u==="https:"){if(On(e)){let n=t?.protocol;if(n&&n!=="https:"&&n!=="http:")throw new ju(e,r,"remote imports cannot import from a local location.");return{url:t?.href||""}}throw Rn.includes(e)?new ju(e,r,"remote imports cannot import from a local location."):new ju(e,r,"only relative and absolute specifiers are supported.")}}}function qf(e){return!!(e&&typeof e=="object"&&"href"in e&&typeof e.href=="string"&&"protocol"in e&&typeof e.protocol=="string"&&e.href&&e.protocol)}function Vf(e){if(e!==void 0&&typeof e!="string"&&!qf(e))throw new ye.ERR_INVALID_ARG_TYPE("parentURL",["string","URL"],e)}function Kf(e,t={}){let{parentURL:r}=t;oo(r!==void 0,"expected `parentURL` to be defined"),Vf(r);let u;if(r)try{u=new de(r)}catch{}let n,a;try{if(n=On(e)?new de(e,u):new de(e),a=n.protocol,a==="data:")return{url:n.href,format:null}}catch{}let i=Uf(e,n,u);if(i)return i;if(a===void 0&&n&&(a=n.protocol),a==="node:")return{url:e};if(n&&n.protocol==="node:")return{url:e};let o=_f(t.conditions),s=Gf(e,new de(r),o,!1);return{url:s.href,format:fo(s,{parentURL:r})}}function zf(e,t){if(!t)throw new Error("Please pass `parent`: `import-meta-resolve` cannot ponyfill that");try{return Kf(e,{parentURL:t}).url}catch(r){let u=r;if((u.code==="ERR_UNSUPPORTED_DIR_IMPORT"||u.code==="ERR_MODULE_NOT_FOUND")&&typeof u.url=="string")return u.url;throw r}}function Yf(e,t){return import(zf(e,YD(t).href))}var Co=Yf;function Jf(e,t){return Xf(t)(e)}var Qf=Jf,Zf=new Set(["MODULE_NOT_FOUND","ERR_REQUIRE_ESM","ERR_PACKAGE_PATH_NOT_EXPORTED","ERR_REQUIRE_ASYNC_MODULE"]);async function ep(e,t){try{let u=Qf(e,t);return process.features.require_module&&u.__esModule?u.default:u}catch(u){if(!Zf.has(u?.code))throw u}return(await Co(e,t)).default}var tp=ep;async function rp(e){let{base:t,ext:r}=zD.parse(e),u=t==="package.json"?ao:t==="package.yaml"?io:GD[r];if(!u)throw new Error(`No loader specified for extension "${r||"noExt"}"`);let n=await u(e);if(n){if(typeof n=="string"&&(n=await tp(n,e)),typeof n!="object")throw new TypeError(`Config is only allowed to be an object, but received ${typeof n} in "${e}"`);return delete n.$schema,n}}var up=rp,Ur=new Map,qr=new Map;function np(){Ur.clear(),qr.clear()}function ap(e,{shouldCache:t}){return e=_n.resolve(e),(!t||!Ur.has(e))&&Ur.set(e,up(e)),Ur.get(e)}function ip(e){if(e=e?_n.resolve(e):void 0,!qr.has(e)){let t=KD(e),r=t.search.bind(t);qr.set(e,r)}return qr.get(e)}function vo(e,t={}){e=e?_n.resolve(e):process.cwd();let r=R0.getPrettierConfigSearchStopDirectory();return ip(r)(e,{cache:t.shouldCache})}function op(){np(),Z0()}function sp(e,t){if(!e||!t.editorconfig)return;let r=t.useCache;return tD(e,{shouldCache:r})}async function lp(e,t){let r=t.useCache,u=t.config;if(!u){let a=e?vt.dirname(vt.resolve(e)):void 0;u=await vo(a,{shouldCache:r})}return u?(u=au(u),{config:await ap(u,{shouldCache:r}),configFile:u}):void 0}async function Ao(e,t){t={useCache:!0,...t};let r=au(e),[u,n]=await Promise.all([lp(r,t),sp(r,t)]);if(!u&&!n)return null;let a={...n,...Dp(u,r)};return Array.isArray(a.plugins)&&(a.plugins=a.plugins.map(i=>typeof i=="string"&&i.startsWith(".")?vt.resolve(vt.dirname(u.configFile),i):i)),a}async function cp(e){let t=e?vt.dirname(vt.resolve(au(e))):void 0;return await vo(t,{shouldCache:!1})??null}function Dp(e,t){let{config:r,configFile:u}=e||{},{overrides:n,...a}=r||{};if(t&&n){let i=vt.relative(vt.dirname(u),t);for(let o of n)fp(i,o.files,o.excludeFiles)&&Object.assign(a,o.options)}return a}function fp(e,t,r){let u=Array.isArray(t)?t:[t],[n,a]=T0(u,i=>i.includes("/"));return Ma.default.isMatch(e,a,{ignore:r,basename:!0,dot:!0})||Ma.default.isMatch(e,n,{ignore:r,basename:!1,dot:!0})}var pp=(e,t,r,u)=>{if(!(e&&t==null))return t.replaceAll?t.replaceAll(r,u):r.global?t.replace(r,u):t.split(r).join(u)},_r=pp;function dp(e){let t=e.indexOf("\r");return t!==-1?e.charAt(t+1)===`
676
+ `?"crlf":"cr":"lf"}function Tn(e){switch(e){case"cr":return"\r";case"crlf":return`\r
662
677
  `;default:return`
663
- `}}function vo(e,t){let r;switch(t){case`
678
+ `}}function yo(e,t){let r;switch(t){case`
664
679
  `:r=/\n/gu;break;case"\r":r=/\r/gu;break;case`\r
665
- `:r=/\r\n/gu;break;default:throw new Error(`Unexpected "eol" ${JSON.stringify(t)}.`)}let u=e.match(r);return u?u.length:0}function dd(e){return yr(!1,e,/\r\n?/gu,`
666
- `)}var Ut="string",rt="array",Bt="cursor",ut="indent",nt="align",wt="trim",Ne="group",at="fill",Me="if-break",St="indent-if-break",it="line-suffix",kt="line-suffix-boundary",Le="line",ot="label",He="break-parent",Ao=new Set([Bt,ut,nt,wt,Ne,at,Me,St,it,kt,Le,ot,He]),hd=(e,t,r)=>{if(!(e&&t==null))return Array.isArray(t)||typeof t=="string"?t[r<0?t.length+r:r]:t.at(r)},ve=hd;function pd(e){let t=e.length;for(;t>0&&(e[t-1]==="\r"||e[t-1]===`
667
- `);)t--;return t<e.length?e.slice(0,t):e}function Fd(e){if(typeof e=="string")return Ut;if(Array.isArray(e))return rt;if(!e)return;let{type:t}=e;if(Ao.has(t))return t}var qt=Fd,gd=e=>new Intl.ListFormat("en-US",{type:"disjunction"}).format(e);function Ed(e){let t=e===null?"null":typeof e;if(t!=="string"&&t!=="object")return`Unexpected doc '${t}',
668
- Expected it to be 'string' or 'object'.`;if(qt(e))throw new Error("doc is valid.");let r=Object.prototype.toString.call(e);if(r!=="[object Object]")return`Unexpected doc '${r}'.`;let u=gd([...Ao].map(n=>`'${n}'`));return`Unexpected doc.type '${e.type}'.
669
- Expected it to be ${u}.`}var md=class extends Error{name="InvalidDocError";constructor(e){super(Ed(e)),this.doc=e}},rr=md,ti={};function Cd(e,t,r,u){let n=[e];for(;n.length>0;){let a=n.pop();if(a===ti){r(n.pop());continue}r&&n.push(a,ti);let i=qt(a);if(!i)throw new rr(a);if(t?.(a)!==!1)switch(i){case rt:case at:{let o=i===rt?a:a.parts;for(let s=o.length,c=s-1;c>=0;--c)n.push(o[c]);break}case Me:n.push(a.flatContents,a.breakContents);break;case Ne:if(u&&a.expandedStates)for(let o=a.expandedStates.length,s=o-1;s>=0;--s)n.push(a.expandedStates[s]);else n.push(a.contents);break;case nt:case ut:case St:case ot:case it:n.push(a.contents);break;case Ut:case Bt:case wt:case kt:case Le:case He:break;default:throw new rr(a)}}}var vd=Cd;function Ad(e,t){if(typeof e=="string")return t(e);let r=new Map;return u(e);function u(a){if(r.has(a))return r.get(a);let i=n(a);return r.set(a,i),i}function n(a){switch(qt(a)){case rt:return t(a.map(u));case at:return t({...a,parts:a.parts.map(u)});case Me:return t({...a,breakContents:u(a.breakContents),flatContents:u(a.flatContents)});case Ne:{let{expandedStates:i,contents:o}=a;return i?(i=i.map(u),o=i[0]):o=u(o),t({...a,contents:o,expandedStates:i})}case nt:case ut:case St:case ot:case it:return t({...a,contents:u(a.contents)});case Ut:case Bt:case wt:case kt:case Le:case He:return t(a);default:throw new rr(a)}}}function ri(e){if(e.length>0){let t=ve(!1,e,-1);!t.expandedStates&&!t.break&&(t.break="propagated")}return null}function yd(e){let t=new Set,r=[];function u(a){if(a.type===He&&ri(r),a.type===Ne){if(r.push(a),t.has(a))return!1;t.add(a)}}function n(a){a.type===Ne&&r.pop().break&&ri(r)}vd(e,u,n,!0)}function ui(e){for(e=[...e];e.length>=2&&ve(!1,e,-2).type===Le&&ve(!1,e,-1).type===He;)e.length-=2;if(e.length>0){let t=gr(ve(!1,e,-1));e[e.length-1]=t}return e}function gr(e){switch(qt(e)){case ut:case St:case Ne:case it:case ot:{let t=gr(e.contents);return{...e,contents:t}}case Me:return{...e,breakContents:gr(e.breakContents),flatContents:gr(e.flatContents)};case at:return{...e,parts:ui(e.parts)};case rt:return ui(e);case Ut:return pd(e);case nt:case Bt:case wt:case kt:case Le:case He:break;default:throw new rr(e)}return e}function _d(e){return gr(Bd(e))}function bd(e){switch(qt(e)){case at:if(e.parts.every(t=>t===""))return"";break;case Ne:if(!e.contents&&!e.id&&!e.break&&!e.expandedStates)return"";if(e.contents.type===Ne&&e.contents.id===e.id&&e.contents.break===e.break&&e.contents.expandedStates===e.expandedStates)return e.contents;break;case nt:case ut:case St:case it:if(!e.contents)return"";break;case Me:if(!e.flatContents&&!e.breakContents)return"";break;case rt:{let t=[];for(let r of e){if(!r)continue;let[u,...n]=Array.isArray(r)?r:[r];typeof u=="string"&&typeof ve(!1,t,-1)=="string"?t[t.length-1]+=u:t.push(u),t.push(...n)}return t.length===0?"":t.length===1?t[0]:t}case Ut:case Bt:case wt:case kt:case Le:case ot:case He:break;default:throw new rr(e)}return e}function Bd(e){return Ad(e,t=>bd(t))}function qr(e,t){return e.type===ot?{...e,contents:t(e.contents)}:t(e)}var wd=()=>{},ou=wd;function nn(e){return ou(e),{type:ut,contents:e}}function ni(e,t){return ou(t),{type:nt,contents:t,n:e}}function ai(e){return ou(e),{type:it,contents:e}}var yo={type:He},_o={type:Le,hard:!0},Sd={type:Le},er=[_o,yo],Jt={type:Bt};function kd(e,t,r){ou(e);let u=e;if(t>0){for(let n=0;n<Math.floor(t/r);++n)u=nn(u);u=ni(t%r,u),u=ni(Number.NEGATIVE_INFINITY,u)}return u}function Qe(e){var t;if(!e)return"";if(Array.isArray(e)){let r=[];for(let u of e)if(Array.isArray(u))r.push(...Qe(u));else{let n=Qe(u);n!==""&&r.push(n)}return r}return e.type===Me?{...e,breakContents:Qe(e.breakContents),flatContents:Qe(e.flatContents)}:e.type===Ne?{...e,contents:Qe(e.contents),expandedStates:(t=e.expandedStates)==null?void 0:t.map(Qe)}:e.type===at?{type:"fill",parts:e.parts.map(Qe)}:e.contents?{...e,contents:Qe(e.contents)}:e}function Rd(e){let t=Object.create(null),r=new Set;return u(Qe(e));function u(a,i,o){var s,c;if(typeof a=="string")return JSON.stringify(a);if(Array.isArray(a)){let l=a.map(u).filter(Boolean);return l.length===1?l[0]:`[${l.join(", ")}]`}if(a.type===Le){let l=((s=o?.[i+1])==null?void 0:s.type)===He;return a.literal?l?"literalline":"literallineWithoutBreakParent":a.hard?l?"hardline":"hardlineWithoutBreakParent":a.soft?"softline":"line"}if(a.type===He)return((c=o?.[i-1])==null?void 0:c.type)===Le&&o[i-1].hard?void 0:"breakParent";if(a.type===wt)return"trim";if(a.type===ut)return"indent("+u(a.contents)+")";if(a.type===nt)return a.n===Number.NEGATIVE_INFINITY?"dedentToRoot("+u(a.contents)+")":a.n<0?"dedent("+u(a.contents)+")":a.n.type==="root"?"markAsRoot("+u(a.contents)+")":"align("+JSON.stringify(a.n)+", "+u(a.contents)+")";if(a.type===Me)return"ifBreak("+u(a.breakContents)+(a.flatContents?", "+u(a.flatContents):"")+(a.groupId?(a.flatContents?"":', ""')+`, { groupId: ${n(a.groupId)} }`:"")+")";if(a.type===St){let l=[];a.negate&&l.push("negate: true"),a.groupId&&l.push(`groupId: ${n(a.groupId)}`);let D=l.length>0?`, { ${l.join(", ")} }`:"";return`indentIfBreak(${u(a.contents)}${D})`}if(a.type===Ne){let l=[];a.break&&a.break!=="propagated"&&l.push("shouldBreak: true"),a.id&&l.push(`id: ${n(a.id)}`);let D=l.length>0?`, { ${l.join(", ")} }`:"";return a.expandedStates?`conditionalGroup([${a.expandedStates.map(f=>u(f)).join(",")}]${D})`:`group(${u(a.contents)}${D})`}if(a.type===at)return`fill([${a.parts.map(l=>u(l)).join(", ")}])`;if(a.type===it)return"lineSuffix("+u(a.contents)+")";if(a.type===kt)return"lineSuffixBoundary";if(a.type===ot)return`label(${JSON.stringify(a.label)}, ${u(a.contents)})`;if(a.type===Bt)return"cursor";throw new Error("Unknown doc type "+a.type)}function n(a){if(typeof a!="symbol")return JSON.stringify(String(a));if(a in t)return t[a];let i=a.description||"symbol";for(let o=0;;o++){let s=i+(o>0?` #${o}`:"");if(!r.has(s))return r.add(s),t[a]=`Symbol.for(${JSON.stringify(s)})`}}}var Pd=()=>/[#*0-9]\uFE0F?\u20E3|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26AA\u26B0\u26B1\u26BD\u26BE\u26C4\u26C8\u26CF\u26D1\u26E9\u26F0-\u26F5\u26F7\u26F8\u26FA\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B55\u3030\u303D\u3297\u3299]\uFE0F?|[\u261D\u270C\u270D](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\u270A\u270B](?:\uD83C[\uDFFB-\uDFFF])?|[\u23E9-\u23EC\u23F0\u23F3\u25FD\u2693\u26A1\u26AB\u26C5\u26CE\u26D4\u26EA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2795-\u2797\u27B0\u27BF\u2B50]|\u26D3\uFE0F?(?:\u200D\uD83D\uDCA5)?|\u26F9(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\u2764\uFE0F?(?:\u200D(?:\uD83D\uDD25|\uD83E\uDE79))?|\uD83C(?:[\uDC04\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]\uFE0F?|[\uDF85\uDFC2\uDFC7](?:\uD83C[\uDFFB-\uDFFF])?|[\uDFC4\uDFCA](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDFCB\uDFCC](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF43\uDF45-\uDF4A\uDF4C-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uDDE6\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF]|\uDDE7\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF]|\uDDE8\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF7\uDDFA-\uDDFF]|\uDDE9\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF]|\uDDEA\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA]|\uDDEB\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7]|\uDDEC\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE]|\uDDED\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA]|\uDDEE\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9]|\uDDEF\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5]|\uDDF0\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF]|\uDDF1\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE]|\uDDF2\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF]|\uDDF3\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF]|\uDDF4\uD83C\uDDF2|\uDDF5\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE]|\uDDF6\uD83C\uDDE6|\uDDF7\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC]|\uDDF8\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF]|\uDDF9\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF]|\uDDFA\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF]|\uDDFB\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA]|\uDDFC\uD83C[\uDDEB\uDDF8]|\uDDFD\uD83C\uDDF0|\uDDFE\uD83C[\uDDEA\uDDF9]|\uDDFF\uD83C[\uDDE6\uDDF2\uDDFC]|\uDF44(?:\u200D\uD83D\uDFEB)?|\uDF4B(?:\u200D\uD83D\uDFE9)?|\uDFC3(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDFF3\uFE0F?(?:\u200D(?:\u26A7\uFE0F?|\uD83C\uDF08))?|\uDFF4(?:\u200D\u2620\uFE0F?|\uDB40\uDC67\uDB40\uDC62\uDB40(?:\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDC73\uDB40\uDC63\uDB40\uDC74|\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F)?)|\uD83D(?:[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3]\uFE0F?|[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC](?:\uD83C[\uDFFB-\uDFFF])?|[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4\uDEB5](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD74\uDD90](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC25\uDC27-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE41\uDE43\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEDC-\uDEDF\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB\uDFF0]|\uDC08(?:\u200D\u2B1B)?|\uDC15(?:\u200D\uD83E\uDDBA)?|\uDC26(?:\u200D(?:\u2B1B|\uD83D\uDD25))?|\uDC3B(?:\u200D\u2744\uFE0F?)?|\uDC41\uFE0F?(?:\u200D\uD83D\uDDE8\uFE0F?)?|\uDC68(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDC68\uDC69]\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE])))?))?|\uDC69(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?[\uDC68\uDC69]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?|\uDC69\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?))|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFE])))?))?|\uDC6F(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDD75(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDE2E(?:\u200D\uD83D\uDCA8)?|\uDE35(?:\u200D\uD83D\uDCAB)?|\uDE36(?:\u200D\uD83C\uDF2B\uFE0F?)?|\uDE42(?:\u200D[\u2194\u2195]\uFE0F?)?|\uDEB6(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?)|\uD83E(?:[\uDD0C\uDD0F\uDD18-\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5\uDEC3-\uDEC5\uDEF0\uDEF2-\uDEF8](?:\uD83C[\uDFFB-\uDFFF])?|[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD\uDDCF\uDDD4\uDDD6-\uDDDD](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDDDE\uDDDF](?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD0D\uDD0E\uDD10-\uDD17\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCC\uDDD0\uDDE0-\uDDFF\uDE70-\uDE7C\uDE80-\uDE89\uDE8F-\uDEC2\uDEC6\uDECE-\uDEDC\uDEDF-\uDEE9]|\uDD3C(?:\u200D[\u2640\u2642]\uFE0F?|\uD83C[\uDFFB-\uDFFF])?|\uDDCE(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDDD1(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1|\uDDD1\u200D\uD83E\uDDD2(?:\u200D\uD83E\uDDD2)?|\uDDD2(?:\u200D\uD83E\uDDD2)?))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?))?|\uDEF1(?:\uD83C(?:\uDFFB(?:\u200D\uD83E\uDEF2\uD83C[\uDFFC-\uDFFF])?|\uDFFC(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFD-\uDFFF])?|\uDFFD(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])?|\uDFFE(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFD\uDFFF])?|\uDFFF(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFE])?))?)/g;function Od(e){return e===12288||e>=65281&&e<=65376||e>=65504&&e<=65510}function Td(e){return e>=4352&&e<=4447||e===8986||e===8987||e===9001||e===9002||e>=9193&&e<=9196||e===9200||e===9203||e===9725||e===9726||e===9748||e===9749||e>=9776&&e<=9783||e>=9800&&e<=9811||e===9855||e>=9866&&e<=9871||e===9875||e===9889||e===9898||e===9899||e===9917||e===9918||e===9924||e===9925||e===9934||e===9940||e===9962||e===9970||e===9971||e===9973||e===9978||e===9981||e===9989||e===9994||e===9995||e===10024||e===10060||e===10062||e>=10067&&e<=10069||e===10071||e>=10133&&e<=10135||e===10160||e===10175||e===11035||e===11036||e===11088||e===11093||e>=11904&&e<=11929||e>=11931&&e<=12019||e>=12032&&e<=12245||e>=12272&&e<=12287||e>=12289&&e<=12350||e>=12353&&e<=12438||e>=12441&&e<=12543||e>=12549&&e<=12591||e>=12593&&e<=12686||e>=12688&&e<=12773||e>=12783&&e<=12830||e>=12832&&e<=12871||e>=12880&&e<=42124||e>=42128&&e<=42182||e>=43360&&e<=43388||e>=44032&&e<=55203||e>=63744&&e<=64255||e>=65040&&e<=65049||e>=65072&&e<=65106||e>=65108&&e<=65126||e>=65128&&e<=65131||e>=94176&&e<=94180||e===94192||e===94193||e>=94208&&e<=100343||e>=100352&&e<=101589||e>=101631&&e<=101640||e>=110576&&e<=110579||e>=110581&&e<=110587||e===110589||e===110590||e>=110592&&e<=110882||e===110898||e>=110928&&e<=110930||e===110933||e>=110948&&e<=110951||e>=110960&&e<=111355||e>=119552&&e<=119638||e>=119648&&e<=119670||e===126980||e===127183||e===127374||e>=127377&&e<=127386||e>=127488&&e<=127490||e>=127504&&e<=127547||e>=127552&&e<=127560||e===127568||e===127569||e>=127584&&e<=127589||e>=127744&&e<=127776||e>=127789&&e<=127797||e>=127799&&e<=127868||e>=127870&&e<=127891||e>=127904&&e<=127946||e>=127951&&e<=127955||e>=127968&&e<=127984||e===127988||e>=127992&&e<=128062||e===128064||e>=128066&&e<=128252||e>=128255&&e<=128317||e>=128331&&e<=128334||e>=128336&&e<=128359||e===128378||e===128405||e===128406||e===128420||e>=128507&&e<=128591||e>=128640&&e<=128709||e===128716||e>=128720&&e<=128722||e>=128725&&e<=128727||e>=128732&&e<=128735||e===128747||e===128748||e>=128756&&e<=128764||e>=128992&&e<=129003||e===129008||e>=129292&&e<=129338||e>=129340&&e<=129349||e>=129351&&e<=129535||e>=129648&&e<=129660||e>=129664&&e<=129673||e>=129679&&e<=129734||e>=129742&&e<=129756||e>=129759&&e<=129769||e>=129776&&e<=129784||e>=131072&&e<=196605||e>=196608&&e<=262141}var Id=e=>!(Od(e)||Td(e)),Nd=/[^\x20-\x7F]/u;function Ld(e){if(!e)return 0;if(!Nd.test(e))return e.length;e=e.replace(Pd()," ");let t=0;for(let r of e){let u=r.codePointAt(0);u<=31||u>=127&&u<=159||u>=768&&u<=879||(t+=Id(u)?1:2)}return t}var Tn=Ld,Pe=Symbol("MODE_BREAK"),Ke=Symbol("MODE_FLAT"),Qt=Symbol("cursor"),an=Symbol("DOC_FILL_PRINTED_LENGTH");function bo(){return{value:"",length:0,queue:[]}}function xd(e,t){return on(e,{type:"indent"},t)}function jd(e,t,r){return t===Number.NEGATIVE_INFINITY?e.root||bo():t<0?on(e,{type:"dedent"},r):t?t.type==="root"?{...e,root:e}:on(e,{type:typeof t=="string"?"stringAlign":"numberAlign",n:t},r):e}function on(e,t,r){let u=t.type==="dedent"?e.queue.slice(0,-1):[...e.queue,t],n="",a=0,i=0,o=0;for(let d of u)switch(d.type){case"indent":l(),r.useTabs?s(1):c(r.tabWidth);break;case"stringAlign":l(),n+=d.n,a+=d.n.length;break;case"numberAlign":i+=1,o+=d.n;break;default:throw new Error(`Unexpected type '${d.type}'`)}return f(),{...e,value:n,length:a,queue:u};function s(d){n+=" ".repeat(d),a+=r.tabWidth*d}function c(d){n+=" ".repeat(d),a+=d}function l(){r.useTabs?D():f()}function D(){i>0&&s(i),h()}function f(){o>0&&c(o),h()}function h(){i=0,o=0}}function sn(e){let t=0,r=0,u=e.length;e:for(;u--;){let n=e[u];if(n===Qt){r++;continue}for(let a=n.length-1;a>=0;a--){let i=n[a];if(i===" "||i===" ")t++;else{e[u]=n.slice(0,a+1);break e}}}if(t>0||r>0)for(e.length=u+1;r-- >0;)e.push(Qt);return t}function Nr(e,t,r,u,n,a){if(r===Number.POSITIVE_INFINITY)return!0;let i=t.length,o=[e],s=[];for(;r>=0;){if(o.length===0){if(i===0)return!0;o.push(t[--i]);continue}let{mode:c,doc:l}=o.pop(),D=qt(l);switch(D){case Ut:s.push(l),r-=Tn(l);break;case rt:case at:{let f=D===rt?l:l.parts,h=l[an]??0;for(let d=f.length-1;d>=h;d--)o.push({mode:c,doc:f[d]});break}case ut:case nt:case St:case ot:o.push({mode:c,doc:l.contents});break;case wt:r+=sn(s);break;case Ne:{if(a&&l.break)return!1;let f=l.break?Pe:c,h=l.expandedStates&&f===Pe?ve(!1,l.expandedStates,-1):l.contents;o.push({mode:f,doc:h});break}case Me:{let h=(l.groupId?n[l.groupId]||Ke:c)===Pe?l.breakContents:l.flatContents;h&&o.push({mode:c,doc:h});break}case Le:if(c===Pe||l.hard)return!0;l.soft||(s.push(" "),r--);break;case it:u=!0;break;case kt:if(u)return!1;break}}return!1}function In(e,t){let r={},u=t.printWidth,n=On(t.endOfLine),a=0,i=[{ind:bo(),mode:Pe,doc:e}],o=[],s=!1,c=[],l=0;for(yd(e);i.length>0;){let{ind:f,mode:h,doc:d}=i.pop();switch(qt(d)){case Ut:{let p=n!==`
670
- `?yr(!1,d,`
671
- `,n):d;o.push(p),i.length>0&&(a+=Tn(p));break}case rt:for(let p=d.length-1;p>=0;p--)i.push({ind:f,mode:h,doc:d[p]});break;case Bt:if(l>=2)throw new Error("There are too many 'cursor' in doc.");o.push(Qt),l++;break;case ut:i.push({ind:xd(f,t),mode:h,doc:d.contents});break;case nt:i.push({ind:jd(f,d.n,t),mode:h,doc:d.contents});break;case wt:a-=sn(o);break;case Ne:switch(h){case Ke:if(!s){i.push({ind:f,mode:d.break?Pe:Ke,doc:d.contents});break}case Pe:{s=!1;let p={ind:f,mode:Ke,doc:d.contents},v=u-a,y=c.length>0;if(!d.break&&Nr(p,i,v,y,r))i.push(p);else if(d.expandedStates){let m=ve(!1,d.expandedStates,-1);if(d.break){i.push({ind:f,mode:Pe,doc:m});break}else for(let C=1;C<d.expandedStates.length+1;C++)if(C>=d.expandedStates.length){i.push({ind:f,mode:Pe,doc:m});break}else{let S=d.expandedStates[C],F={ind:f,mode:Ke,doc:S};if(Nr(F,i,v,y,r)){i.push(F);break}}}else i.push({ind:f,mode:Pe,doc:d.contents});break}}d.id&&(r[d.id]=ve(!1,i,-1).mode);break;case at:{let p=u-a,v=d[an]??0,{parts:y}=d,m=y.length-v;if(m===0)break;let C=y[v+0],S=y[v+1],F={ind:f,mode:Ke,doc:C},B={ind:f,mode:Pe,doc:C},P=Nr(F,[],p,c.length>0,r,!0);if(m===1){P?i.push(F):i.push(B);break}let E={ind:f,mode:Ke,doc:S},R={ind:f,mode:Pe,doc:S};if(m===2){P?i.push(E,F):i.push(R,B);break}let L=y[v+2],w={ind:f,mode:h,doc:{...d,[an]:v+2}};Nr({ind:f,mode:Ke,doc:[C,S,L]},[],p,c.length>0,r,!0)?i.push(w,E,F):P?i.push(w,R,F):i.push(w,R,B);break}case Me:case St:{let p=d.groupId?r[d.groupId]:h;if(p===Pe){let v=d.type===Me?d.breakContents:d.negate?d.contents:nn(d.contents);v&&i.push({ind:f,mode:h,doc:v})}if(p===Ke){let v=d.type===Me?d.flatContents:d.negate?nn(d.contents):d.contents;v&&i.push({ind:f,mode:h,doc:v})}break}case it:c.push({ind:f,mode:h,doc:d.contents});break;case kt:c.length>0&&i.push({ind:f,mode:h,doc:_o});break;case Le:switch(h){case Ke:if(d.hard)s=!0;else{d.soft||(o.push(" "),a+=1);break}case Pe:if(c.length>0){i.push({ind:f,mode:h,doc:d},...c.reverse()),c.length=0;break}d.literal?f.root?(o.push(n,f.root.value),a=f.root.length):(o.push(n),a=0):(a-=sn(o),o.push(n+f.value),a=f.length);break}break;case ot:i.push({ind:f,mode:h,doc:d.contents});break;case He:break;default:throw new rr(d)}i.length===0&&c.length>0&&(i.push(...c.reverse()),c.length=0)}let D=o.indexOf(Qt);if(D!==-1){let f=o.indexOf(Qt,D+1);if(f===-1)return{formatted:o.filter(v=>v!==Qt).join("")};let h=o.slice(0,D).join(""),d=o.slice(D+1,f).join(""),p=o.slice(f+1).join("");return{formatted:h+d+p,cursorNodeStart:h.length,cursorNodeText:d}}return{formatted:o.join("")}}function $d(e,t,r=0){let u=0;for(let n=r;n<e.length;++n)e[n]===" "?u=u+t-u%t:u++;return u}var Nn=$d,jt,ln,Vr,Md=class{constructor(e){we(this,jt),this.stack=[e]}get key(){let{stack:e,siblings:t}=this;return ve(!1,e,t===null?-2:-4)??null}get index(){return this.siblings===null?null:ve(!1,this.stack,-2)}get node(){return ve(!1,this.stack,-1)}get parent(){return this.getNode(1)}get grandparent(){return this.getNode(2)}get isInArray(){return this.siblings!==null}get siblings(){let{stack:e}=this,t=ve(!1,e,-3);return Array.isArray(t)?t:null}get next(){let{siblings:e}=this;return e===null?null:e[this.index+1]}get previous(){let{siblings:e}=this;return e===null?null:e[this.index-1]}get isFirst(){return this.index===0}get isLast(){let{siblings:e,index:t}=this;return e!==null&&t===e.length-1}get isRoot(){return this.stack.length===1}get root(){return this.stack[0]}get ancestors(){return[...Et(this,jt,Vr).call(this)]}getName(){let{stack:e}=this,{length:t}=e;return t>1?ve(!1,e,-2):null}getValue(){return ve(!1,this.stack,-1)}getNode(e=0){let t=Et(this,jt,ln).call(this,e);return t===-1?null:this.stack[t]}getParentNode(e=0){return this.getNode(e+1)}call(e,...t){let{stack:r}=this,{length:u}=r,n=ve(!1,r,-1);for(let a of t)n=n[a],r.push(a,n);try{return e(this)}finally{r.length=u}}callParent(e,t=0){let r=Et(this,jt,ln).call(this,t+1),u=this.stack.splice(r+1);try{return e(this)}finally{this.stack.push(...u)}}each(e,...t){let{stack:r}=this,{length:u}=r,n=ve(!1,r,-1);for(let a of t)n=n[a],r.push(a,n);try{for(let a=0;a<n.length;++a)r.push(a,n[a]),e(this,a,n),r.length-=2}finally{r.length=u}}map(e,...t){let r=[];return this.each((u,n,a)=>{r[n]=e(u,n,a)},...t),r}match(...e){let t=this.stack.length-1,r=null,u=this.stack[t--];for(let n of e){if(u===void 0)return!1;let a=null;if(typeof r=="number"&&(a=r,r=this.stack[t--],u=this.stack[t--]),n&&!n(u,r,a))return!1;r=this.stack[t--],u=this.stack[t--]}return!0}findAncestor(e){for(let t of Et(this,jt,Vr).call(this))if(e(t))return t}hasAncestor(e){for(let t of Et(this,jt,Vr).call(this))if(e(t))return!0;return!1}};jt=new WeakSet;ln=function(e){let{stack:t}=this;for(let r=t.length-1;r>=0;r-=2)if(!Array.isArray(t[r])&&--e<0)return r;return-1};Vr=function*(){let{stack:e}=this;for(let t=e.length-3;t>=0;t-=2){let r=e[t];Array.isArray(r)||(yield r)}};var Hd=Md;function Wd(e){return e!==null&&typeof e=="object"}var Gd=Wd;function*su(e,t){let{getVisitorKeys:r,filter:u=()=>!0}=t,n=a=>Gd(a)&&u(a);for(let a of r(e)){let i=e[a];if(Array.isArray(i))for(let o of i)n(o)&&(yield o);else n(i)&&(yield i)}}function*Ud(e,t){let r=[e];for(let u=0;u<r.length;u++){let n=r[u];for(let a of su(n,t))yield a,r.push(a)}}function qd(e,t){return su(e,t).next().done}function _r(e){return(t,r,u)=>{let n=!!u?.backwards;if(r===!1)return!1;let{length:a}=t,i=r;for(;i>=0&&i<a;){let o=t.charAt(i);if(e instanceof RegExp){if(!e.test(o))return i}else if(!e.includes(o))return i;n?i--:i++}return i===-1||i===a?i:!1}}var Vd=_r(/\s/u),yt=_r(" "),Bo=_r(",; "),wo=_r(/[^\n\r]/u);function Kd(e,t,r){let u=!!r?.backwards;if(t===!1)return!1;let n=e.charAt(t);if(u){if(e.charAt(t-1)==="\r"&&n===`
680
+ `:r=/\r\n/gu;break;default:throw new Error(`Unexpected "eol" ${JSON.stringify(t)}.`)}let u=e.match(r);return u?u.length:0}function hp(e){return _r(!1,e,/\r\n?/gu,`
681
+ `)}var Ut="string",rt="array",Bt="cursor",ut="indent",nt="align",wt="trim",Ie="group",at="fill",Me="if-break",St="indent-if-break",it="line-suffix",kt="line-suffix-boundary",Ne="line",ot="label",He="break-parent",_o=new Set([Bt,ut,nt,wt,Ie,at,Me,St,it,kt,Ne,ot,He]),gp=(e,t,r)=>{if(!(e&&t==null))return Array.isArray(t)||typeof t=="string"?t[r<0?t.length+r:r]:t.at(r)},ve=gp;function Fp(e){let t=e.length;for(;t>0&&(e[t-1]==="\r"||e[t-1]===`
682
+ `);)t--;return t<e.length?e.slice(0,t):e}function mp(e){if(typeof e=="string")return Ut;if(Array.isArray(e))return rt;if(!e)return;let{type:t}=e;if(_o.has(t))return t}var qt=mp,Ep=e=>new Intl.ListFormat("en-US",{type:"disjunction"}).format(e);function Cp(e){let t=e===null?"null":typeof e;if(t!=="string"&&t!=="object")return`Unexpected doc '${t}',
683
+ Expected it to be 'string' or 'object'.`;if(qt(e))throw new Error("doc is valid.");let r=Object.prototype.toString.call(e);if(r!=="[object Object]")return`Unexpected doc '${r}'.`;let u=Ep([..._o].map(n=>`'${n}'`));return`Unexpected doc.type '${e.type}'.
684
+ Expected it to be ${u}.`}var vp=class extends Error{name="InvalidDocError";constructor(e){super(Cp(e)),this.doc=e}},rr=vp,ui={};function Ap(e,t,r,u){let n=[e];for(;n.length>0;){let a=n.pop();if(a===ui){r(n.pop());continue}r&&n.push(a,ui);let i=qt(a);if(!i)throw new rr(a);if(t?.(a)!==!1)switch(i){case rt:case at:{let o=i===rt?a:a.parts;for(let s=o.length,c=s-1;c>=0;--c)n.push(o[c]);break}case Me:n.push(a.flatContents,a.breakContents);break;case Ie:if(u&&a.expandedStates)for(let o=a.expandedStates.length,s=o-1;s>=0;--s)n.push(a.expandedStates[s]);else n.push(a.contents);break;case nt:case ut:case St:case ot:case it:n.push(a.contents);break;case Ut:case Bt:case wt:case kt:case Ne:case He:break;default:throw new rr(a)}}}var yp=Ap;function _p(e,t){if(typeof e=="string")return t(e);let r=new Map;return u(e);function u(a){if(r.has(a))return r.get(a);let i=n(a);return r.set(a,i),i}function n(a){switch(qt(a)){case rt:return t(a.map(u));case at:return t({...a,parts:a.parts.map(u)});case Me:return t({...a,breakContents:u(a.breakContents),flatContents:u(a.flatContents)});case Ie:{let{expandedStates:i,contents:o}=a;return i?(i=i.map(u),o=i[0]):o=u(o),t({...a,contents:o,expandedStates:i})}case nt:case ut:case St:case ot:case it:return t({...a,contents:u(a.contents)});case Ut:case Bt:case wt:case kt:case Ne:case He:return t(a);default:throw new rr(a)}}}function ni(e){if(e.length>0){let t=ve(!1,e,-1);!t.expandedStates&&!t.break&&(t.break="propagated")}return null}function bp(e){let t=new Set,r=[];function u(a){if(a.type===He&&ni(r),a.type===Ie){if(r.push(a),t.has(a))return!1;t.add(a)}}function n(a){a.type===Ie&&r.pop().break&&ni(r)}yp(e,u,n,!0)}function ai(e){for(e=[...e];e.length>=2&&ve(!1,e,-2).type===Ne&&ve(!1,e,-1).type===He;)e.length-=2;if(e.length>0){let t=mr(ve(!1,e,-1));e[e.length-1]=t}return e}function mr(e){switch(qt(e)){case ut:case St:case Ie:case it:case ot:{let t=mr(e.contents);return{...e,contents:t}}case Me:return{...e,breakContents:mr(e.breakContents),flatContents:mr(e.flatContents)};case at:return{...e,parts:ai(e.parts)};case rt:return ai(e);case Ut:return Fp(e);case nt:case Bt:case wt:case kt:case Ne:case He:break;default:throw new rr(e)}return e}function Bp(e){return mr(Sp(e))}function wp(e){switch(qt(e)){case at:if(e.parts.every(t=>t===""))return"";break;case Ie:if(!e.contents&&!e.id&&!e.break&&!e.expandedStates)return"";if(e.contents.type===Ie&&e.contents.id===e.id&&e.contents.break===e.break&&e.contents.expandedStates===e.expandedStates)return e.contents;break;case nt:case ut:case St:case it:if(!e.contents)return"";break;case Me:if(!e.flatContents&&!e.breakContents)return"";break;case rt:{let t=[];for(let r of e){if(!r)continue;let[u,...n]=Array.isArray(r)?r:[r];typeof u=="string"&&typeof ve(!1,t,-1)=="string"?t[t.length-1]+=u:t.push(u),t.push(...n)}return t.length===0?"":t.length===1?t[0]:t}case Ut:case Bt:case wt:case kt:case Ne:case ot:case He:break;default:throw new rr(e)}return e}function Sp(e){return _p(e,t=>wp(t))}function Vr(e,t){return e.type===ot?{...e,contents:t(e.contents)}:t(e)}var kp=()=>{},su=kp;function on(e){return su(e),{type:ut,contents:e}}function ii(e,t){return su(t),{type:nt,contents:t,n:e}}function oi(e){return su(e),{type:it,contents:e}}var bo={type:He},Bo={type:Ne,hard:!0},Rp={type:Ne},er=[Bo,bo],Jt={type:Bt};function xp(e,t,r){su(e);let u=e;if(t>0){for(let n=0;n<Math.floor(t/r);++n)u=on(u);u=ii(t%r,u),u=ii(Number.NEGATIVE_INFINITY,u)}return u}function Qe(e){var t;if(!e)return"";if(Array.isArray(e)){let r=[];for(let u of e)if(Array.isArray(u))r.push(...Qe(u));else{let n=Qe(u);n!==""&&r.push(n)}return r}return e.type===Me?{...e,breakContents:Qe(e.breakContents),flatContents:Qe(e.flatContents)}:e.type===Ie?{...e,contents:Qe(e.contents),expandedStates:(t=e.expandedStates)==null?void 0:t.map(Qe)}:e.type===at?{type:"fill",parts:e.parts.map(Qe)}:e.contents?{...e,contents:Qe(e.contents)}:e}function Pp(e){let t=Object.create(null),r=new Set;return u(Qe(e));function u(a,i,o){var s,c;if(typeof a=="string")return JSON.stringify(a);if(Array.isArray(a)){let l=a.map(u).filter(Boolean);return l.length===1?l[0]:`[${l.join(", ")}]`}if(a.type===Ne){let l=((s=o?.[i+1])==null?void 0:s.type)===He;return a.literal?l?"literalline":"literallineWithoutBreakParent":a.hard?l?"hardline":"hardlineWithoutBreakParent":a.soft?"softline":"line"}if(a.type===He)return((c=o?.[i-1])==null?void 0:c.type)===Ne&&o[i-1].hard?void 0:"breakParent";if(a.type===wt)return"trim";if(a.type===ut)return"indent("+u(a.contents)+")";if(a.type===nt)return a.n===Number.NEGATIVE_INFINITY?"dedentToRoot("+u(a.contents)+")":a.n<0?"dedent("+u(a.contents)+")":a.n.type==="root"?"markAsRoot("+u(a.contents)+")":"align("+JSON.stringify(a.n)+", "+u(a.contents)+")";if(a.type===Me)return"ifBreak("+u(a.breakContents)+(a.flatContents?", "+u(a.flatContents):"")+(a.groupId?(a.flatContents?"":', ""')+`, { groupId: ${n(a.groupId)} }`:"")+")";if(a.type===St){let l=[];a.negate&&l.push("negate: true"),a.groupId&&l.push(`groupId: ${n(a.groupId)}`);let D=l.length>0?`, { ${l.join(", ")} }`:"";return`indentIfBreak(${u(a.contents)}${D})`}if(a.type===Ie){let l=[];a.break&&a.break!=="propagated"&&l.push("shouldBreak: true"),a.id&&l.push(`id: ${n(a.id)}`);let D=l.length>0?`, { ${l.join(", ")} }`:"";return a.expandedStates?`conditionalGroup([${a.expandedStates.map(f=>u(f)).join(",")}]${D})`:`group(${u(a.contents)}${D})`}if(a.type===at)return`fill([${a.parts.map(l=>u(l)).join(", ")}])`;if(a.type===it)return"lineSuffix("+u(a.contents)+")";if(a.type===kt)return"lineSuffixBoundary";if(a.type===ot)return`label(${JSON.stringify(a.label)}, ${u(a.contents)})`;if(a.type===Bt)return"cursor";throw new Error("Unknown doc type "+a.type)}function n(a){if(typeof a!="symbol")return JSON.stringify(String(a));if(a in t)return t[a];let i=a.description||"symbol";for(let o=0;;o++){let s=i+(o>0?` #${o}`:"");if(!r.has(s))return r.add(s),t[a]=`Symbol.for(${JSON.stringify(s)})`}}}var Op=()=>/[#*0-9]\uFE0F?\u20E3|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26AA\u26B0\u26B1\u26BD\u26BE\u26C4\u26C8\u26CF\u26D1\u26E9\u26F0-\u26F5\u26F7\u26F8\u26FA\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B55\u3030\u303D\u3297\u3299]\uFE0F?|[\u261D\u270C\u270D](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\u270A\u270B](?:\uD83C[\uDFFB-\uDFFF])?|[\u23E9-\u23EC\u23F0\u23F3\u25FD\u2693\u26A1\u26AB\u26C5\u26CE\u26D4\u26EA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2795-\u2797\u27B0\u27BF\u2B50]|\u26D3\uFE0F?(?:\u200D\uD83D\uDCA5)?|\u26F9(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\u2764\uFE0F?(?:\u200D(?:\uD83D\uDD25|\uD83E\uDE79))?|\uD83C(?:[\uDC04\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]\uFE0F?|[\uDF85\uDFC2\uDFC7](?:\uD83C[\uDFFB-\uDFFF])?|[\uDFC4\uDFCA](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDFCB\uDFCC](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF43\uDF45-\uDF4A\uDF4C-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uDDE6\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF]|\uDDE7\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF]|\uDDE8\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF7\uDDFA-\uDDFF]|\uDDE9\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF]|\uDDEA\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA]|\uDDEB\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7]|\uDDEC\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE]|\uDDED\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA]|\uDDEE\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9]|\uDDEF\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5]|\uDDF0\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF]|\uDDF1\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE]|\uDDF2\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF]|\uDDF3\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF]|\uDDF4\uD83C\uDDF2|\uDDF5\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE]|\uDDF6\uD83C\uDDE6|\uDDF7\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC]|\uDDF8\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF]|\uDDF9\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF]|\uDDFA\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF]|\uDDFB\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA]|\uDDFC\uD83C[\uDDEB\uDDF8]|\uDDFD\uD83C\uDDF0|\uDDFE\uD83C[\uDDEA\uDDF9]|\uDDFF\uD83C[\uDDE6\uDDF2\uDDFC]|\uDF44(?:\u200D\uD83D\uDFEB)?|\uDF4B(?:\u200D\uD83D\uDFE9)?|\uDFC3(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDFF3\uFE0F?(?:\u200D(?:\u26A7\uFE0F?|\uD83C\uDF08))?|\uDFF4(?:\u200D\u2620\uFE0F?|\uDB40\uDC67\uDB40\uDC62\uDB40(?:\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDC73\uDB40\uDC63\uDB40\uDC74|\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F)?)|\uD83D(?:[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3]\uFE0F?|[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC](?:\uD83C[\uDFFB-\uDFFF])?|[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4\uDEB5](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD74\uDD90](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC25\uDC27-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE41\uDE43\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEDC-\uDEDF\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB\uDFF0]|\uDC08(?:\u200D\u2B1B)?|\uDC15(?:\u200D\uD83E\uDDBA)?|\uDC26(?:\u200D(?:\u2B1B|\uD83D\uDD25))?|\uDC3B(?:\u200D\u2744\uFE0F?)?|\uDC41\uFE0F?(?:\u200D\uD83D\uDDE8\uFE0F?)?|\uDC68(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDC68\uDC69]\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE])))?))?|\uDC69(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?[\uDC68\uDC69]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?|\uDC69\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?))|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFE])))?))?|\uDC6F(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDD75(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDE2E(?:\u200D\uD83D\uDCA8)?|\uDE35(?:\u200D\uD83D\uDCAB)?|\uDE36(?:\u200D\uD83C\uDF2B\uFE0F?)?|\uDE42(?:\u200D[\u2194\u2195]\uFE0F?)?|\uDEB6(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?)|\uD83E(?:[\uDD0C\uDD0F\uDD18-\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5\uDEC3-\uDEC5\uDEF0\uDEF2-\uDEF8](?:\uD83C[\uDFFB-\uDFFF])?|[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD\uDDCF\uDDD4\uDDD6-\uDDDD](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDDDE\uDDDF](?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD0D\uDD0E\uDD10-\uDD17\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCC\uDDD0\uDDE0-\uDDFF\uDE70-\uDE7C\uDE80-\uDE89\uDE8F-\uDEC2\uDEC6\uDECE-\uDEDC\uDEDF-\uDEE9]|\uDD3C(?:\u200D[\u2640\u2642]\uFE0F?|\uD83C[\uDFFB-\uDFFF])?|\uDDCE(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDDD1(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1|\uDDD1\u200D\uD83E\uDDD2(?:\u200D\uD83E\uDDD2)?|\uDDD2(?:\u200D\uD83E\uDDD2)?))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?))?|\uDEF1(?:\uD83C(?:\uDFFB(?:\u200D\uD83E\uDEF2\uD83C[\uDFFC-\uDFFF])?|\uDFFC(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFD-\uDFFF])?|\uDFFD(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])?|\uDFFE(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFD\uDFFF])?|\uDFFF(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFE])?))?)/g;function Tp(e){return e===12288||e>=65281&&e<=65376||e>=65504&&e<=65510}function Ip(e){return e>=4352&&e<=4447||e===8986||e===8987||e===9001||e===9002||e>=9193&&e<=9196||e===9200||e===9203||e===9725||e===9726||e===9748||e===9749||e>=9776&&e<=9783||e>=9800&&e<=9811||e===9855||e>=9866&&e<=9871||e===9875||e===9889||e===9898||e===9899||e===9917||e===9918||e===9924||e===9925||e===9934||e===9940||e===9962||e===9970||e===9971||e===9973||e===9978||e===9981||e===9989||e===9994||e===9995||e===10024||e===10060||e===10062||e>=10067&&e<=10069||e===10071||e>=10133&&e<=10135||e===10160||e===10175||e===11035||e===11036||e===11088||e===11093||e>=11904&&e<=11929||e>=11931&&e<=12019||e>=12032&&e<=12245||e>=12272&&e<=12287||e>=12289&&e<=12350||e>=12353&&e<=12438||e>=12441&&e<=12543||e>=12549&&e<=12591||e>=12593&&e<=12686||e>=12688&&e<=12773||e>=12783&&e<=12830||e>=12832&&e<=12871||e>=12880&&e<=42124||e>=42128&&e<=42182||e>=43360&&e<=43388||e>=44032&&e<=55203||e>=63744&&e<=64255||e>=65040&&e<=65049||e>=65072&&e<=65106||e>=65108&&e<=65126||e>=65128&&e<=65131||e>=94176&&e<=94180||e===94192||e===94193||e>=94208&&e<=100343||e>=100352&&e<=101589||e>=101631&&e<=101640||e>=110576&&e<=110579||e>=110581&&e<=110587||e===110589||e===110590||e>=110592&&e<=110882||e===110898||e>=110928&&e<=110930||e===110933||e>=110948&&e<=110951||e>=110960&&e<=111355||e>=119552&&e<=119638||e>=119648&&e<=119670||e===126980||e===127183||e===127374||e>=127377&&e<=127386||e>=127488&&e<=127490||e>=127504&&e<=127547||e>=127552&&e<=127560||e===127568||e===127569||e>=127584&&e<=127589||e>=127744&&e<=127776||e>=127789&&e<=127797||e>=127799&&e<=127868||e>=127870&&e<=127891||e>=127904&&e<=127946||e>=127951&&e<=127955||e>=127968&&e<=127984||e===127988||e>=127992&&e<=128062||e===128064||e>=128066&&e<=128252||e>=128255&&e<=128317||e>=128331&&e<=128334||e>=128336&&e<=128359||e===128378||e===128405||e===128406||e===128420||e>=128507&&e<=128591||e>=128640&&e<=128709||e===128716||e>=128720&&e<=128722||e>=128725&&e<=128727||e>=128732&&e<=128735||e===128747||e===128748||e>=128756&&e<=128764||e>=128992&&e<=129003||e===129008||e>=129292&&e<=129338||e>=129340&&e<=129349||e>=129351&&e<=129535||e>=129648&&e<=129660||e>=129664&&e<=129673||e>=129679&&e<=129734||e>=129742&&e<=129756||e>=129759&&e<=129769||e>=129776&&e<=129784||e>=131072&&e<=196605||e>=196608&&e<=262141}var Np=e=>!(Tp(e)||Ip(e)),Lp=/[^\x20-\x7F]/u;function jp(e){if(!e)return 0;if(!Lp.test(e))return e.length;e=e.replace(Op()," ");let t=0;for(let r of e){let u=r.codePointAt(0);u<=31||u>=127&&u<=159||u>=768&&u<=879||(t+=Np(u)?1:2)}return t}var In=jp,xe=Symbol("MODE_BREAK"),Ke=Symbol("MODE_FLAT"),Qt=Symbol("cursor"),sn=Symbol("DOC_FILL_PRINTED_LENGTH");function wo(){return{value:"",length:0,queue:[]}}function $p(e,t){return ln(e,{type:"indent"},t)}function Mp(e,t,r){return t===Number.NEGATIVE_INFINITY?e.root||wo():t<0?ln(e,{type:"dedent"},r):t?t.type==="root"?{...e,root:e}:ln(e,{type:typeof t=="string"?"stringAlign":"numberAlign",n:t},r):e}function ln(e,t,r){let u=t.type==="dedent"?e.queue.slice(0,-1):[...e.queue,t],n="",a=0,i=0,o=0;for(let p of u)switch(p.type){case"indent":l(),r.useTabs?s(1):c(r.tabWidth);break;case"stringAlign":l(),n+=p.n,a+=p.n.length;break;case"numberAlign":i+=1,o+=p.n;break;default:throw new Error(`Unexpected type '${p.type}'`)}return f(),{...e,value:n,length:a,queue:u};function s(p){n+=" ".repeat(p),a+=r.tabWidth*p}function c(p){n+=" ".repeat(p),a+=p}function l(){r.useTabs?D():f()}function D(){i>0&&s(i),d()}function f(){o>0&&c(o),d()}function d(){i=0,o=0}}function cn(e){let t=0,r=0,u=e.length;e:for(;u--;){let n=e[u];if(n===Qt){r++;continue}for(let a=n.length-1;a>=0;a--){let i=n[a];if(i===" "||i===" ")t++;else{e[u]=n.slice(0,a+1);break e}}}if(t>0||r>0)for(e.length=u+1;r-- >0;)e.push(Qt);return t}function Nr(e,t,r,u,n,a){if(r===Number.POSITIVE_INFINITY)return!0;let i=t.length,o=[e],s=[];for(;r>=0;){if(o.length===0){if(i===0)return!0;o.push(t[--i]);continue}let{mode:c,doc:l}=o.pop(),D=qt(l);switch(D){case Ut:s.push(l),r-=In(l);break;case rt:case at:{let f=D===rt?l:l.parts,d=l[sn]??0;for(let p=f.length-1;p>=d;p--)o.push({mode:c,doc:f[p]});break}case ut:case nt:case St:case ot:o.push({mode:c,doc:l.contents});break;case wt:r+=cn(s);break;case Ie:{if(a&&l.break)return!1;let f=l.break?xe:c,d=l.expandedStates&&f===xe?ve(!1,l.expandedStates,-1):l.contents;o.push({mode:f,doc:d});break}case Me:{let d=(l.groupId?n[l.groupId]||Ke:c)===xe?l.breakContents:l.flatContents;d&&o.push({mode:c,doc:d});break}case Ne:if(c===xe||l.hard)return!0;l.soft||(s.push(" "),r--);break;case it:u=!0;break;case kt:if(u)return!1;break}}return!1}function Nn(e,t){let r={},u=t.printWidth,n=Tn(t.endOfLine),a=0,i=[{ind:wo(),mode:xe,doc:e}],o=[],s=!1,c=[],l=0;for(bp(e);i.length>0;){let{ind:f,mode:d,doc:p}=i.pop();switch(qt(p)){case Ut:{let h=n!==`
685
+ `?_r(!1,p,`
686
+ `,n):p;o.push(h),i.length>0&&(a+=In(h));break}case rt:for(let h=p.length-1;h>=0;h--)i.push({ind:f,mode:d,doc:p[h]});break;case Bt:if(l>=2)throw new Error("There are too many 'cursor' in doc.");o.push(Qt),l++;break;case ut:i.push({ind:$p(f,t),mode:d,doc:p.contents});break;case nt:i.push({ind:Mp(f,p.n,t),mode:d,doc:p.contents});break;case wt:a-=cn(o);break;case Ie:switch(d){case Ke:if(!s){i.push({ind:f,mode:p.break?xe:Ke,doc:p.contents});break}case xe:{s=!1;let h={ind:f,mode:Ke,doc:p.contents},v=u-a,y=c.length>0;if(!p.break&&Nr(h,i,v,y,r))i.push(h);else if(p.expandedStates){let E=ve(!1,p.expandedStates,-1);if(p.break){i.push({ind:f,mode:xe,doc:E});break}else for(let C=1;C<p.expandedStates.length+1;C++)if(C>=p.expandedStates.length){i.push({ind:f,mode:xe,doc:E});break}else{let S=p.expandedStates[C],g={ind:f,mode:Ke,doc:S};if(Nr(g,i,v,y,r)){i.push(g);break}}}else i.push({ind:f,mode:xe,doc:p.contents});break}}p.id&&(r[p.id]=ve(!1,i,-1).mode);break;case at:{let h=u-a,v=p[sn]??0,{parts:y}=p,E=y.length-v;if(E===0)break;let C=y[v+0],S=y[v+1],g={ind:f,mode:Ke,doc:C},B={ind:f,mode:xe,doc:C},x=Nr(g,[],h,c.length>0,r,!0);if(E===1){x?i.push(g):i.push(B);break}let m={ind:f,mode:Ke,doc:S},R={ind:f,mode:xe,doc:S};if(E===2){x?i.push(m,g):i.push(R,B);break}let N=y[v+2],w={ind:f,mode:d,doc:{...p,[sn]:v+2}};Nr({ind:f,mode:Ke,doc:[C,S,N]},[],h,c.length>0,r,!0)?i.push(w,m,g):x?i.push(w,R,g):i.push(w,R,B);break}case Me:case St:{let h=p.groupId?r[p.groupId]:d;if(h===xe){let v=p.type===Me?p.breakContents:p.negate?p.contents:on(p.contents);v&&i.push({ind:f,mode:d,doc:v})}if(h===Ke){let v=p.type===Me?p.flatContents:p.negate?on(p.contents):p.contents;v&&i.push({ind:f,mode:d,doc:v})}break}case it:c.push({ind:f,mode:d,doc:p.contents});break;case kt:c.length>0&&i.push({ind:f,mode:d,doc:Bo});break;case Ne:switch(d){case Ke:if(p.hard)s=!0;else{p.soft||(o.push(" "),a+=1);break}case xe:if(c.length>0){i.push({ind:f,mode:d,doc:p},...c.reverse()),c.length=0;break}p.literal?f.root?(o.push(n,f.root.value),a=f.root.length):(o.push(n),a=0):(a-=cn(o),o.push(n+f.value),a=f.length);break}break;case ot:i.push({ind:f,mode:d,doc:p.contents});break;case He:break;default:throw new rr(p)}i.length===0&&c.length>0&&(i.push(...c.reverse()),c.length=0)}let D=o.indexOf(Qt);if(D!==-1){let f=o.indexOf(Qt,D+1);if(f===-1)return{formatted:o.filter(v=>v!==Qt).join("")};let d=o.slice(0,D).join(""),p=o.slice(D+1,f).join(""),h=o.slice(f+1).join("");return{formatted:d+p+h,cursorNodeStart:d.length,cursorNodeText:p}}return{formatted:o.join("")}}function Hp(e,t,r=0){let u=0;for(let n=r;n<e.length;++n)e[n]===" "?u=u+t-u%t:u++;return u}var Ln=Hp,jt,Dn,Kr,Wp=class{constructor(e){we(this,jt),this.stack=[e]}get key(){let{stack:e,siblings:t}=this;return ve(!1,e,t===null?-2:-4)??null}get index(){return this.siblings===null?null:ve(!1,this.stack,-2)}get node(){return ve(!1,this.stack,-1)}get parent(){return this.getNode(1)}get grandparent(){return this.getNode(2)}get isInArray(){return this.siblings!==null}get siblings(){let{stack:e}=this,t=ve(!1,e,-3);return Array.isArray(t)?t:null}get next(){let{siblings:e}=this;return e===null?null:e[this.index+1]}get previous(){let{siblings:e}=this;return e===null?null:e[this.index-1]}get isFirst(){return this.index===0}get isLast(){let{siblings:e,index:t}=this;return e!==null&&t===e.length-1}get isRoot(){return this.stack.length===1}get root(){return this.stack[0]}get ancestors(){return[...mt(this,jt,Kr).call(this)]}getName(){let{stack:e}=this,{length:t}=e;return t>1?ve(!1,e,-2):null}getValue(){return ve(!1,this.stack,-1)}getNode(e=0){let t=mt(this,jt,Dn).call(this,e);return t===-1?null:this.stack[t]}getParentNode(e=0){return this.getNode(e+1)}call(e,...t){let{stack:r}=this,{length:u}=r,n=ve(!1,r,-1);for(let a of t)n=n[a],r.push(a,n);try{return e(this)}finally{r.length=u}}callParent(e,t=0){let r=mt(this,jt,Dn).call(this,t+1),u=this.stack.splice(r+1);try{return e(this)}finally{this.stack.push(...u)}}each(e,...t){let{stack:r}=this,{length:u}=r,n=ve(!1,r,-1);for(let a of t)n=n[a],r.push(a,n);try{for(let a=0;a<n.length;++a)r.push(a,n[a]),e(this,a,n),r.length-=2}finally{r.length=u}}map(e,...t){let r=[];return this.each((u,n,a)=>{r[n]=e(u,n,a)},...t),r}match(...e){let t=this.stack.length-1,r=null,u=this.stack[t--];for(let n of e){if(u===void 0)return!1;let a=null;if(typeof r=="number"&&(a=r,r=this.stack[t--],u=this.stack[t--]),n&&!n(u,r,a))return!1;r=this.stack[t--],u=this.stack[t--]}return!0}findAncestor(e){for(let t of mt(this,jt,Kr).call(this))if(e(t))return t}hasAncestor(e){for(let t of mt(this,jt,Kr).call(this))if(e(t))return!0;return!1}};jt=new WeakSet;Dn=function(e){let{stack:t}=this;for(let r=t.length-1;r>=0;r-=2)if(!Array.isArray(t[r])&&--e<0)return r;return-1};Kr=function*(){let{stack:e}=this;for(let t=e.length-3;t>=0;t-=2){let r=e[t];Array.isArray(r)||(yield r)}};var Gp=Wp;function Up(e){return e!==null&&typeof e=="object"}var qp=Up;function*lu(e,t){let{getVisitorKeys:r,filter:u=()=>!0}=t,n=a=>qp(a)&&u(a);for(let a of r(e)){let i=e[a];if(Array.isArray(i))for(let o of i)n(o)&&(yield o);else n(i)&&(yield i)}}function*Vp(e,t){let r=[e];for(let u=0;u<r.length;u++){let n=r[u];for(let a of lu(n,t))yield a,r.push(a)}}function Kp(e,t){return lu(e,t).next().done}function br(e){return(t,r,u)=>{let n=!!u?.backwards;if(r===!1)return!1;let{length:a}=t,i=r;for(;i>=0&&i<a;){let o=t.charAt(i);if(e instanceof RegExp){if(!e.test(o))return i}else if(!e.includes(o))return i;n?i--:i++}return i===-1||i===a?i:!1}}var zp=br(/\s/u),yt=br(" "),So=br(",; "),ko=br(/[^\n\r]/u);function Yp(e,t,r){let u=!!r?.backwards;if(t===!1)return!1;let n=e.charAt(t);if(u){if(e.charAt(t-1)==="\r"&&n===`
672
687
  `)return t-2;if(n===`
673
688
  `||n==="\r"||n==="\u2028"||n==="\u2029")return t-1}else{if(n==="\r"&&e.charAt(t+1)===`
674
689
  `)return t+2;if(n===`
675
- `||n==="\r"||n==="\u2028"||n==="\u2029")return t+1}return t}var Gt=Kd;function zd(e,t,r={}){let u=yt(e,r.backwards?t-1:t,r),n=Gt(e,u,r);return u!==n}var Ct=zd;function Yd(e){return Array.isArray(e)&&e.length>0}var So=Yd,ko=new Set(["tokens","comments","parent","enclosingNode","precedingNode","followingNode"]),Xd=e=>Object.keys(e).filter(t=>!ko.has(t));function Jd(e){return e?t=>e(t,ko):Xd}var br=Jd;function Qd(e){let t=e.type||e.kind||"(unknown type)",r=String(e.name||e.id&&(typeof e.id=="object"?e.id.name:e.id)||e.key&&(typeof e.key=="object"?e.key.name:e.key)||e.value&&(typeof e.value=="object"?"":String(e.value))||e.operator||"");return r.length>20&&(r=r.slice(0,19)+"\u2026"),t+(r?" "+r:"")}function Ln(e,t){(e.comments??(e.comments=[])).push(t),t.printed=!1,t.nodeDescription=Qd(e)}function Er(e,t){t.leading=!0,t.trailing=!1,Ln(e,t)}function $t(e,t,r){t.leading=!1,t.trailing=!1,r&&(t.marker=r),Ln(e,t)}function mr(e,t){t.leading=!1,t.trailing=!0,Ln(e,t)}var $u=new WeakMap;function xn(e,t){if($u.has(e))return $u.get(e);let{printer:{getCommentChildNodes:r,canAttachComment:u,getVisitorKeys:n},locStart:a,locEnd:i}=t;if(!u)return[];let o=(r?.(e,t)??[...su(e,{getVisitorKeys:br(n)})]).flatMap(s=>u(s)?[s]:xn(s,t));return o.sort((s,c)=>a(s)-a(c)||i(s)-i(c)),$u.set(e,o),o}function Ro(e,t,r,u){let{locStart:n,locEnd:a}=r,i=n(t),o=a(t),s=xn(e,r),c,l,D=0,f=s.length;for(;D<f;){let h=D+f>>1,d=s[h],p=n(d),v=a(d);if(p<=i&&o<=v)return Ro(d,t,r,d);if(v<=i){c=d,D=h+1;continue}if(o<=p){l=d,f=h;continue}throw new Error("Comment location overlaps with node location")}if(u?.type==="TemplateLiteral"){let{quasis:h}=u,d=Hu(h,t,r);c&&Hu(h,c,r)!==d&&(c=null),l&&Hu(h,l,r)!==d&&(l=null)}return{enclosingNode:u,precedingNode:c,followingNode:l}}var Mu=()=>!1;function Zd(e,t){let{comments:r}=e;if(delete e.comments,!So(r)||!t.printer.canAttachComment)return;let u=[],{printer:{experimentalFeatures:{avoidAstMutation:n=!1}={},handleComments:a={}},originalText:i}=t,{ownLine:o=Mu,endOfLine:s=Mu,remaining:c=Mu}=a,l=r.map((D,f)=>({...Ro(e,D,t),comment:D,text:i,options:t,ast:e,isLastComment:r.length-1===f}));for(let[D,f]of l.entries()){let{comment:h,precedingNode:d,enclosingNode:p,followingNode:v,text:y,options:m,ast:C,isLastComment:S}=f,F;if(n?F=[f]:(h.enclosingNode=p,h.precedingNode=d,h.followingNode=v,F=[h,y,m,C,S]),eh(y,m,l,D))h.placement="ownLine",o(...F)||(v?Er(v,h):d?mr(d,h):$t(p||C,h));else if(th(y,m,l,D))h.placement="endOfLine",s(...F)||(d?mr(d,h):v?Er(v,h):$t(p||C,h));else if(h.placement="remaining",!c(...F))if(d&&v){let B=u.length;B>0&&u[B-1].followingNode!==v&&oi(u,m),u.push(f)}else d?mr(d,h):v?Er(v,h):$t(p||C,h)}if(oi(u,t),!n)for(let D of r)delete D.precedingNode,delete D.enclosingNode,delete D.followingNode}var Po=e=>!/[\S\n\u2028\u2029]/u.test(e);function eh(e,t,r,u){let{comment:n,precedingNode:a}=r[u],{locStart:i,locEnd:o}=t,s=i(n);if(a)for(let c=u-1;c>=0;c--){let{comment:l,precedingNode:D}=r[c];if(D!==a||!Po(e.slice(o(l),s)))break;s=i(l)}return Ct(e,s,{backwards:!0})}function th(e,t,r,u){let{comment:n,followingNode:a}=r[u],{locStart:i,locEnd:o}=t,s=o(n);if(a)for(let c=u+1;c<r.length;c++){let{comment:l,followingNode:D}=r[c];if(D!==a||!Po(e.slice(s,i(l))))break;s=o(l)}return Ct(e,s)}function oi(e,t){var r,u;let n=e.length;if(n===0)return;let{precedingNode:a,followingNode:i}=e[0],o=t.locStart(i),s;for(s=n;s>0;--s){let{comment:c,precedingNode:l,followingNode:D}=e[s-1];ii.strictEqual(l,a),ii.strictEqual(D,i);let f=t.originalText.slice(t.locEnd(c),o);if(((u=(r=t.printer).isGap)==null?void 0:u.call(r,f,t))??/^[\s(]*$/u.test(f))o=t.locStart(c);else break}for(let[c,{comment:l}]of e.entries())c<s?mr(a,l):Er(i,l);for(let c of[a,i])c.comments&&c.comments.length>1&&c.comments.sort((l,D)=>t.locStart(l)-t.locStart(D));e.length=0}function Hu(e,t,r){let u=r.locStart(t)-1;for(let n=1;n<e.length;++n)if(u<r.locStart(e[n]))return n-1;return 0}function rh(e,t){let r=t-1;r=yt(e,r,{backwards:!0}),r=Gt(e,r,{backwards:!0}),r=yt(e,r,{backwards:!0});let u=Gt(e,r,{backwards:!0});return r!==u}var jn=rh;function Oo(e,t){let r=e.node;return r.printed=!0,t.printer.printComment(e,t)}function uh(e,t){var r;let u=e.node,n=[Oo(e,t)],{printer:a,originalText:i,locStart:o,locEnd:s}=t;if((r=a.isBlockComment)==null?void 0:r.call(a,u)){let D=Ct(i,s(u))?Ct(i,o(u),{backwards:!0})?er:Sd:" ";n.push(D)}else n.push(er);let l=Gt(i,yt(i,s(u)));return l!==!1&&Ct(i,l)&&n.push(er),n}function nh(e,t,r){var u;let n=e.node,a=Oo(e,t),{printer:i,originalText:o,locStart:s}=t,c=(u=i.isBlockComment)==null?void 0:u.call(i,n);if(r?.hasLineSuffix&&!r?.isBlock||Ct(o,s(n),{backwards:!0})){let l=jn(o,s(n));return{doc:ai([er,l?er:"",a]),isBlock:c,hasLineSuffix:!0}}return!c||r?.hasLineSuffix?{doc:[ai([" ",a]),yo],isBlock:c,hasLineSuffix:!0}:{doc:[" ",a],isBlock:c,hasLineSuffix:!1}}function ah(e,t){let r=e.node;if(!r)return{};let u=t[Symbol.for("printedComments")];if((r.comments||[]).filter(s=>!u.has(s)).length===0)return{leading:"",trailing:""};let a=[],i=[],o;return e.each(()=>{let s=e.node;if(u?.has(s))return;let{leading:c,trailing:l}=s;c?a.push(uh(e,t)):l&&(o=nh(e,t,o),i.push(o.doc))},"comments"),{leading:a,trailing:i}}function ih(e,t,r){let{leading:u,trailing:n}=ah(e,r);return!u&&!n?t:qr(t,a=>[u,a,n])}function oh(e){let{[Symbol.for("comments")]:t,[Symbol.for("printedComments")]:r}=e;for(let u of t){if(!u.printed&&!r.has(u))throw new Error('Comment "'+u.value.trim()+'" was not printed. Please report this error!');delete u.printed}}function sh(e){return()=>{}}var lh=sh,ch={checkIgnorePragma:{category:"Special",type:"boolean",default:!1,description:"Check whether the file's first docblock comment contains '@noprettier' or '@noformat' to determine if it should be formatted.",cliCategory:"Other"},cursorOffset:{category:"Special",type:"int",default:-1,range:{start:-1,end:1/0,step:1},description:"Print (to stderr) where a cursor at the given position would move to after formatting.",cliCategory:"Editor"},endOfLine:{category:"Global",type:"choice",default:"lf",description:"Which end of line characters to apply.",choices:[{value:"lf",description:"Line Feed only (\\n), common on Linux and macOS as well as inside git repos"},{value:"crlf",description:"Carriage Return + Line Feed characters (\\r\\n), common on Windows"},{value:"cr",description:"Carriage Return character only (\\r), used very rarely"},{value:"auto",description:`Maintain existing
690
+ `||n==="\r"||n==="\u2028"||n==="\u2029")return t+1}return t}var Gt=Yp;function Xp(e,t,r={}){let u=yt(e,r.backwards?t-1:t,r),n=Gt(e,u,r);return u!==n}var Ct=Xp;function Jp(e){return Array.isArray(e)&&e.length>0}var Ro=Jp,xo=new Set(["tokens","comments","parent","enclosingNode","precedingNode","followingNode"]),Qp=e=>Object.keys(e).filter(t=>!xo.has(t));function Zp(e){return e?t=>e(t,xo):Qp}var Br=Zp;function ed(e){let t=e.type||e.kind||"(unknown type)",r=String(e.name||e.id&&(typeof e.id=="object"?e.id.name:e.id)||e.key&&(typeof e.key=="object"?e.key.name:e.key)||e.value&&(typeof e.value=="object"?"":String(e.value))||e.operator||"");return r.length>20&&(r=r.slice(0,19)+"\u2026"),t+(r?" "+r:"")}function jn(e,t){(e.comments??(e.comments=[])).push(t),t.printed=!1,t.nodeDescription=ed(e)}function Er(e,t){t.leading=!0,t.trailing=!1,jn(e,t)}function $t(e,t,r){t.leading=!1,t.trailing=!1,r&&(t.marker=r),jn(e,t)}function Cr(e,t){t.leading=!1,t.trailing=!0,jn(e,t)}var Hu=new WeakMap;function $n(e,t){if(Hu.has(e))return Hu.get(e);let{printer:{getCommentChildNodes:r,canAttachComment:u,getVisitorKeys:n},locStart:a,locEnd:i}=t;if(!u)return[];let o=(r?.(e,t)??[...lu(e,{getVisitorKeys:Br(n)})]).flatMap(s=>u(s)?[s]:$n(s,t));return o.sort((s,c)=>a(s)-a(c)||i(s)-i(c)),Hu.set(e,o),o}function Po(e,t,r,u){let{locStart:n,locEnd:a}=r,i=n(t),o=a(t),s=$n(e,r),c,l,D=0,f=s.length;for(;D<f;){let d=D+f>>1,p=s[d],h=n(p),v=a(p);if(h<=i&&o<=v)return Po(p,t,r,p);if(v<=i){c=p,D=d+1;continue}if(o<=h){l=p,f=d;continue}throw new Error("Comment location overlaps with node location")}if(u?.type==="TemplateLiteral"){let{quasis:d}=u,p=Gu(d,t,r);c&&Gu(d,c,r)!==p&&(c=null),l&&Gu(d,l,r)!==p&&(l=null)}return{enclosingNode:u,precedingNode:c,followingNode:l}}var Wu=()=>!1;function td(e,t){let{comments:r}=e;if(delete e.comments,!Ro(r)||!t.printer.canAttachComment)return;let u=[],{printer:{experimentalFeatures:{avoidAstMutation:n=!1}={},handleComments:a={}},originalText:i}=t,{ownLine:o=Wu,endOfLine:s=Wu,remaining:c=Wu}=a,l=r.map((D,f)=>({...Po(e,D,t),comment:D,text:i,options:t,ast:e,isLastComment:r.length-1===f}));for(let[D,f]of l.entries()){let{comment:d,precedingNode:p,enclosingNode:h,followingNode:v,text:y,options:E,ast:C,isLastComment:S}=f,g;if(n?g=[f]:(d.enclosingNode=h,d.precedingNode=p,d.followingNode=v,g=[d,y,E,C,S]),rd(y,E,l,D))d.placement="ownLine",o(...g)||(v?Er(v,d):p?Cr(p,d):$t(h||C,d));else if(ud(y,E,l,D))d.placement="endOfLine",s(...g)||(p?Cr(p,d):v?Er(v,d):$t(h||C,d));else if(d.placement="remaining",!c(...g))if(p&&v){let B=u.length;B>0&&u[B-1].followingNode!==v&&li(u,E),u.push(f)}else p?Cr(p,d):v?Er(v,d):$t(h||C,d)}if(li(u,t),!n)for(let D of r)delete D.precedingNode,delete D.enclosingNode,delete D.followingNode}var Oo=e=>!/[\S\n\u2028\u2029]/u.test(e);function rd(e,t,r,u){let{comment:n,precedingNode:a}=r[u],{locStart:i,locEnd:o}=t,s=i(n);if(a)for(let c=u-1;c>=0;c--){let{comment:l,precedingNode:D}=r[c];if(D!==a||!Oo(e.slice(o(l),s)))break;s=i(l)}return Ct(e,s,{backwards:!0})}function ud(e,t,r,u){let{comment:n,followingNode:a}=r[u],{locStart:i,locEnd:o}=t,s=o(n);if(a)for(let c=u+1;c<r.length;c++){let{comment:l,followingNode:D}=r[c];if(D!==a||!Oo(e.slice(s,i(l))))break;s=o(l)}return Ct(e,s)}function li(e,t){var r,u;let n=e.length;if(n===0)return;let{precedingNode:a,followingNode:i}=e[0],o=t.locStart(i),s;for(s=n;s>0;--s){let{comment:c,precedingNode:l,followingNode:D}=e[s-1];si.strictEqual(l,a),si.strictEqual(D,i);let f=t.originalText.slice(t.locEnd(c),o);if(((u=(r=t.printer).isGap)==null?void 0:u.call(r,f,t))??/^[\s(]*$/u.test(f))o=t.locStart(c);else break}for(let[c,{comment:l}]of e.entries())c<s?Cr(a,l):Er(i,l);for(let c of[a,i])c.comments&&c.comments.length>1&&c.comments.sort((l,D)=>t.locStart(l)-t.locStart(D));e.length=0}function Gu(e,t,r){let u=r.locStart(t)-1;for(let n=1;n<e.length;++n)if(u<r.locStart(e[n]))return n-1;return 0}function nd(e,t){let r=t-1;r=yt(e,r,{backwards:!0}),r=Gt(e,r,{backwards:!0}),r=yt(e,r,{backwards:!0});let u=Gt(e,r,{backwards:!0});return r!==u}var Mn=nd;function To(e,t){let r=e.node;return r.printed=!0,t.printer.printComment(e,t)}function ad(e,t){var r;let u=e.node,n=[To(e,t)],{printer:a,originalText:i,locStart:o,locEnd:s}=t;if((r=a.isBlockComment)==null?void 0:r.call(a,u)){let D=Ct(i,s(u))?Ct(i,o(u),{backwards:!0})?er:Rp:" ";n.push(D)}else n.push(er);let l=Gt(i,yt(i,s(u)));return l!==!1&&Ct(i,l)&&n.push(er),n}function id(e,t,r){var u;let n=e.node,a=To(e,t),{printer:i,originalText:o,locStart:s}=t,c=(u=i.isBlockComment)==null?void 0:u.call(i,n);if(r?.hasLineSuffix&&!r?.isBlock||Ct(o,s(n),{backwards:!0})){let l=Mn(o,s(n));return{doc:oi([er,l?er:"",a]),isBlock:c,hasLineSuffix:!0}}return!c||r?.hasLineSuffix?{doc:[oi([" ",a]),bo],isBlock:c,hasLineSuffix:!0}:{doc:[" ",a],isBlock:c,hasLineSuffix:!1}}function od(e,t){let r=e.node;if(!r)return{};let u=t[Symbol.for("printedComments")];if((r.comments||[]).filter(s=>!u.has(s)).length===0)return{leading:"",trailing:""};let a=[],i=[],o;return e.each(()=>{let s=e.node;if(u?.has(s))return;let{leading:c,trailing:l}=s;c?a.push(ad(e,t)):l&&(o=id(e,t,o),i.push(o.doc))},"comments"),{leading:a,trailing:i}}function sd(e,t,r){let{leading:u,trailing:n}=od(e,r);return!u&&!n?t:Vr(t,a=>[u,a,n])}function ld(e){let{[Symbol.for("comments")]:t,[Symbol.for("printedComments")]:r}=e;for(let u of t){if(!u.printed&&!r.has(u))throw new Error('Comment "'+u.value.trim()+'" was not printed. Please report this error!');delete u.printed}}function cd(e){return()=>{}}var Dd=cd,fd={checkIgnorePragma:{category:"Special",type:"boolean",default:!1,description:"Check whether the file's first docblock comment contains '@noprettier' or '@noformat' to determine if it should be formatted.",cliCategory:"Other"},cursorOffset:{category:"Special",type:"int",default:-1,range:{start:-1,end:1/0,step:1},description:"Print (to stderr) where a cursor at the given position would move to after formatting.",cliCategory:"Editor"},endOfLine:{category:"Global",type:"choice",default:"lf",description:"Which end of line characters to apply.",choices:[{value:"lf",description:"Line Feed only (\\n), common on Linux and macOS as well as inside git repos"},{value:"crlf",description:"Carriage Return + Line Feed characters (\\r\\n), common on Windows"},{value:"cr",description:"Carriage Return character only (\\r), used very rarely"},{value:"auto",description:`Maintain existing
676
691
  (mixed values within one file are normalised by looking at what's used after the first line)`}]},filepath:{category:"Special",type:"path",description:"Specify the input filepath. This will be used to do parser inference.",cliName:"stdin-filepath",cliCategory:"Other",cliDescription:"Path to the file to pretend that stdin comes from."},insertPragma:{category:"Special",type:"boolean",default:!1,description:"Insert @format pragma into file's first docblock comment.",cliCategory:"Other"},parser:{category:"Global",type:"choice",default:void 0,description:"Which parser to use.",exception:e=>typeof e=="string"||typeof e=="function",choices:[{value:"flow",description:"Flow"},{value:"babel",description:"JavaScript"},{value:"babel-flow",description:"Flow"},{value:"babel-ts",description:"TypeScript"},{value:"typescript",description:"TypeScript"},{value:"acorn",description:"JavaScript"},{value:"espree",description:"JavaScript"},{value:"meriyah",description:"JavaScript"},{value:"css",description:"CSS"},{value:"less",description:"Less"},{value:"scss",description:"SCSS"},{value:"json",description:"JSON"},{value:"json5",description:"JSON5"},{value:"jsonc",description:"JSON with Comments"},{value:"json-stringify",description:"JSON.stringify"},{value:"graphql",description:"GraphQL"},{value:"markdown",description:"Markdown"},{value:"mdx",description:"MDX"},{value:"vue",description:"Vue"},{value:"yaml",description:"YAML"},{value:"glimmer",description:"Ember / Handlebars"},{value:"html",description:"HTML"},{value:"angular",description:"Angular"},{value:"lwc",description:"Lightning Web Components"},{value:"mjml",description:"MJML"}]},plugins:{type:"path",array:!0,default:[{value:[]}],category:"Global",description:"Add a plugin. Multiple plugins can be passed as separate `--plugin`s.",exception:e=>typeof e=="string"||typeof e=="object",cliName:"plugin",cliCategory:"Config"},printWidth:{category:"Global",type:"int",default:80,description:"The line length where Prettier will try wrap.",range:{start:0,end:1/0,step:1}},rangeEnd:{category:"Special",type:"int",default:1/0,range:{start:0,end:1/0,step:1},description:`Format code ending at a given character offset (exclusive).
677
692
  The range will extend forwards to the end of the selected statement.`,cliCategory:"Editor"},rangeStart:{category:"Special",type:"int",default:0,range:{start:0,end:1/0,step:1},description:`Format code starting at a given character offset.
678
- The range will extend backwards to the start of the first line containing the selected statement.`,cliCategory:"Editor"},requirePragma:{category:"Special",type:"boolean",default:!1,description:"Require either '@prettier' or '@format' to be present in the file's first docblock comment in order for it to be formatted.",cliCategory:"Other"},tabWidth:{type:"int",category:"Global",default:2,description:"Number of spaces per indentation level.",range:{start:0,end:1/0,step:1}},useTabs:{category:"Global",type:"boolean",default:!1,description:"Indent with tabs instead of spaces."},embeddedLanguageFormatting:{category:"Global",type:"choice",default:"auto",description:"Control how Prettier formats quoted code embedded in the file.",choices:[{value:"auto",description:"Format embedded code if Prettier can automatically identify it."},{value:"off",description:"Never automatically format embedded code."}]}};function $n({plugins:e=[],showDeprecated:t=!1}={}){let r=e.flatMap(n=>n.languages??[]),u=[];for(let n of To(Object.assign({},...e.map(({options:a})=>a),ch)))!t&&n.deprecated||(Array.isArray(n.choices)&&(t||(n.choices=n.choices.filter(a=>!a.deprecated)),n.name==="parser"&&(n.choices=[...n.choices,...Dh(n.choices,r,e)])),n.pluginDefaults=Object.fromEntries(e.filter(a=>{var i;return((i=a.defaultOptions)==null?void 0:i[n.name])!==void 0}).map(a=>[a.name,a.defaultOptions[n.name]])),u.push(n));return{languages:r,options:u}}function*Dh(e,t,r){let u=new Set(e.map(n=>n.value));for(let n of t)if(n.parsers){for(let a of n.parsers)if(!u.has(a)){u.add(a);let i=r.find(s=>s.parsers&&Object.prototype.hasOwnProperty.call(s.parsers,a)),o=n.name;i?.name&&(o+=` (plugin: ${i.name})`),yield{value:a,description:o}}}}function To(e){let t=[];for(let[r,u]of Object.entries(e)){let n={name:r,...u};Array.isArray(n.default)&&(n.default=ve(!1,n.default,-1).value),t.push(n)}return t}var fh=(e,t)=>{if(!(e&&t==null))return t.toReversed||!Array.isArray(t)?t.toReversed():[...t].reverse()},dh=fh,hh=We(Gc(),1);function ph(e){try{let t=new hh.default(e),r=t.next();if(r===!1)return;t.close();let u=r.toString("utf8"),n=u.match(/^#!\/(?:usr\/)?bin\/env\s+(\S+)/u);if(n)return n[1];let a=u.match(/^#!\/(?:usr\/(?:local\/)?)?bin\/(\S+)/u);if(a)return a[1]}catch{}}var Fh=ph,Eh=gh,Io=e=>String(e).split(/[/\\]/u).pop();function si(e,t){if(!t)return;let r=Io(t).toLowerCase();return e.find(({filenames:u})=>u?.some(n=>n.toLowerCase()===r))??e.find(({extensions:u})=>u?.some(n=>r.endsWith(n)))}function mh(e,t){if(t)return e.find(({name:r})=>r.toLowerCase()===t)??e.find(({aliases:r})=>r?.includes(t))??e.find(({extensions:r})=>r?.includes(`.${t}`))}function Ch(e,t){if(!t||Io(t).includes("."))return;let r=e.filter(({interpreters:n})=>So(n));if(r.length===0)return;let u=Fh(t);if(u)return r.find(({interpreters:n})=>n.includes(u))}function li(e,t){if(t){if(String(t).startsWith("file:"))try{t=Eh(t)}catch{return}if(typeof t=="string")return e.find(({isSupported:r})=>r?.({filepath:t}))}}function vh(e,t){let r=dh(!1,e.plugins).flatMap(n=>n.languages??[]),u=mh(r,t.language)??si(r,t.physicalFile)??si(r,t.file)??li(r,t.physicalFile)??li(r,t.file)??Ch(r,t.physicalFile);return u?.parsers[0]}var Mn=vh,Wu;function Ah(e,t,{logger:r=!1,isCLI:u=!1,passThrough:n=!1,FlagSchema:a,descriptor:i}={}){if(u){if(!a)throw new Error("'FlagSchema' option is required.");if(!i)throw new Error("'descriptor' option is required.")}else i=Mt;let o=n?Array.isArray(n)?(f,h)=>n.includes(f)?{[f]:h}:void 0:(f,h)=>({[f]:h}):(f,h,d)=>{let{_:p,...v}=d.schemas;return ji(f,h,{...d,schemas:v})},s=yh(t,{isCLI:u,FlagSchema:a}),c=new b0(s,{logger:r,unknown:o,descriptor:i}),l=r!==!1;l&&Wu&&(c._hasDeprecationWarned=Wu);let D=c.normalize(e);return l&&(Wu=c._hasDeprecationWarned),D}function yh(e,{isCLI:t,FlagSchema:r}){let u=[];t&&u.push(s0.create({name:"_"}));for(let n of e)u.push(_h(n,{isCLI:t,optionInfos:e,FlagSchema:r})),n.alias&&t&&u.push(o0.create({name:n.alias,sourceName:n.name}));return u}function _h(e,{isCLI:t,optionInfos:r,FlagSchema:u}){let{name:n}=e,a={name:n},i,o={};switch(e.type){case"int":i=C0,t&&(a.preprocess=Number);break;case"string":i=xa;break;case"choice":i=Mi,a.choices=e.choices.map(s=>s?.redirect?{...s,redirect:{to:{key:e.name,value:s.redirect}}}:s);break;case"boolean":i=c0;break;case"flag":i=u,a.flags=r.flatMap(s=>[s.alias,s.description&&s.name,s.oppositeDescription&&`no-${s.name}`].filter(Boolean));break;case"path":i=xa;break;default:throw new Error(`Unexpected type ${e.type}`)}if(e.exception?a.validate=(s,c,l)=>e.exception(s)||c.validate(s,l):a.validate=(s,c,l)=>s===void 0||c.validate(s,l),e.redirect&&(o.redirect=s=>s?{to:typeof e.redirect=="string"?e.redirect:{key:e.redirect.option,value:e.redirect.value}}:void 0),e.deprecated&&(o.deprecated=!0),t&&!e.array){let s=a.preprocess||(c=>c);a.preprocess=(c,l,D)=>l.preprocess(s(Array.isArray(c)?ve(!1,c,-1):c),D)}return e.array?l0.create({...t?{preprocess:s=>Array.isArray(s)?s:[s]}:{},...o,valueSchema:i.create(a)}):i.create({...a,...o})}var No=Ah,bh=(e,t,r)=>{if(!(e&&t==null)){if(t.findLast)return t.findLast(r);for(let u=t.length-1;u>=0;u--){let n=t[u];if(r(n,u,t))return n}}},Lo=bh;function xo(e,t){if(!t)throw new Error("parserName is required.");let r=Lo(!1,e,n=>n.parsers&&Object.prototype.hasOwnProperty.call(n.parsers,t));if(r)return r;let u=`Couldn't resolve parser "${t}".`;throw new Cn(u)}function Bh(e,t){if(!t)throw new Error("astFormat is required.");let r=Lo(!1,e,n=>n.printers&&Object.prototype.hasOwnProperty.call(n.printers,t));if(r)return r;let u=`Couldn't find plugin for AST format "${t}".`;throw new Cn(u)}function Hn({plugins:e,parser:t}){let r=xo(e,t);return jo(r,t)}function jo(e,t){let r=e.parsers[t];return typeof r=="function"?r():r}function wh(e,t){let r=e.printers[t];return typeof r=="function"?r():r}var cn={astFormat:"estree",printer:{},originalText:void 0,locStart:null,locEnd:null};async function Sh(e,t={}){var r;let u={...e};if(!u.parser)if(u.filepath){if(u.parser=Mn(u,{physicalFile:u.filepath}),!u.parser)throw new Ku(`No parser could be inferred for file "${u.filepath}".`)}else throw new Ku("No parser and no file path given, couldn't infer a parser.");let n=$n({plugins:e.plugins,showDeprecated:!0}).options,a={...cn,...Object.fromEntries(n.filter(f=>f.default!==void 0).map(f=>[f.name,f.default]))},i=xo(u.plugins,u.parser),o=await jo(i,u.parser);u.astFormat=o.astFormat,u.locEnd=o.locEnd,u.locStart=o.locStart;let s=(r=i.printers)!=null&&r[o.astFormat]?i:Bh(u.plugins,o.astFormat),c=await wh(s,o.astFormat);u.printer=c;let l=s.defaultOptions?Object.fromEntries(Object.entries(s.defaultOptions).filter(([,f])=>f!==void 0)):{},D={...a,...l};for(let[f,h]of Object.entries(D))(u[f]===null||u[f]===void 0)&&(u[f]=h);return u.parser==="json"&&(u.trailingComma="none"),No(u,n,{passThrough:Object.keys(cn),...t})}var ar=Sh,kh=We(Oi(),1);async function Rh(e,t){let r=await Hn(t),u=r.preprocess?r.preprocess(e,t):e;t.originalText=u;let n;try{n=await r.parse(u,t,t)}catch(a){Ph(a,e)}return{text:u,ast:n}}function Ph(e,t){let{loc:r}=e;if(r){let u=(0,kh.codeFrameColumns)(t,r,{highlightCode:!0});throw e.message+=`
679
- `+u,e.codeFrame=u,e}throw e}var Br=Rh;async function Oh(e,t,r,u,n){let{embeddedLanguageFormatting:a,printer:{embed:i,hasPrettierIgnore:o=()=>!1,getVisitorKeys:s}}=r;if(!i||a!=="auto")return;if(i.length>2)throw new Error("printer.embed has too many parameters. The API changed in Prettier v3. Please update your plugin. See https://prettier.io/docs/plugins#optional-embed");let c=br(i.getVisitorKeys??s),l=[];h();let D=e.stack;for(let{print:d,node:p,pathStack:v}of l)try{e.stack=v;let y=await d(f,t,e,r);y&&n.set(p,y)}catch(y){if(process.env.PRETTIER_DEBUG)throw y}e.stack=D;function f(d,p){return Th(d,p,r,u)}function h(){let{node:d}=e;if(d===null||typeof d!="object"||o(e))return;for(let v of c(d))Array.isArray(d[v])?e.each(h,v):e.call(h,v);let p=i(e,r);if(p){if(typeof p=="function"){l.push({print:p,node:d,pathStack:[...e.stack]});return}n.set(d,p)}}}async function Th(e,t,r,u){let n=await ar({...r,...t,parentParser:r.parser,originalText:e,cursorOffset:void 0,rangeStart:void 0,rangeEnd:void 0},{passThrough:!0}),{ast:a}=await Br(e,n),i=await u(a,n);return _d(i)}function Ih(e,t){let{originalText:r,[Symbol.for("comments")]:u,locStart:n,locEnd:a,[Symbol.for("printedComments")]:i}=t,{node:o}=e,s=n(o),c=a(o);for(let l of u)n(l)>=s&&a(l)<=c&&i.add(l);return r.slice(s,c)}var Nh=Ih;async function lu(e,t){({ast:e}=await $o(e,t));let r=new Map,u=new Hd(e),n=lh(t),a=new Map;await Oh(u,o,t,lu,a);let i=await ci(u,t,o,void 0,a);if(oh(t),t.cursorOffset>=0){if(t.nodeAfterCursor&&!t.nodeBeforeCursor)return[Jt,i];if(t.nodeBeforeCursor&&!t.nodeAfterCursor)return[i,Jt]}return i;function o(c,l){return c===void 0||c===u?s(l):Array.isArray(c)?u.call(()=>s(l),...c):u.call(()=>s(l),c)}function s(c){n(u);let l=u.node;if(l==null)return"";let D=l&&typeof l=="object"&&c===void 0;if(D&&r.has(l))return r.get(l);let f=ci(u,t,o,c,a);return D&&r.set(l,f),f}}function ci(e,t,r,u,n){var a;let{node:i}=e,{printer:o}=t,s;switch((a=o.hasPrettierIgnore)!=null&&a.call(o,e)?s=Nh(e,t):n.has(i)?s=n.get(i):s=o.print(e,t,r,u),i){case t.cursorNode:s=qr(s,c=>[Jt,c,Jt]);break;case t.nodeBeforeCursor:s=qr(s,c=>[c,Jt]);break;case t.nodeAfterCursor:s=qr(s,c=>[Jt,c]);break}return o.printComment&&(!o.willPrintOwnComments||!o.willPrintOwnComments(e,t))&&(s=ih(e,s,t)),s}async function $o(e,t){let r=e.comments??[];t[Symbol.for("comments")]=r,t[Symbol.for("printedComments")]=new Set,Zd(e,t);let{printer:{preprocess:u}}=t;return e=u?await u(e,t):e,{ast:e,comments:r}}function Lh(e,t){let{cursorOffset:r,locStart:u,locEnd:n}=t,a=br(t.printer.getVisitorKeys),i=h=>u(h)<=r&&n(h)>=r,o=e,s=[e];for(let h of Ud(e,{getVisitorKeys:a,filter:i}))s.push(h),o=h;if(qd(o,{getVisitorKeys:a}))return{cursorNode:o};let c,l,D=-1,f=Number.POSITIVE_INFINITY;for(;s.length>0&&(c===void 0||l===void 0);){o=s.pop();let h=c!==void 0,d=l!==void 0;for(let p of su(o,{getVisitorKeys:a})){if(!h){let v=n(p);v<=r&&v>D&&(c=p,D=v)}if(!d){let v=u(p);v>=r&&v<f&&(l=p,f=v)}}}return{nodeBeforeCursor:c,nodeAfterCursor:l}}var Mo=Lh;function xh(e,t){let{printer:{massageAstNode:r,getVisitorKeys:u}}=t;if(!r)return e;let n=br(u),a=r.ignoredProperties??new Set;return i(e);function i(o,s){if(!(o!==null&&typeof o=="object"))return o;if(Array.isArray(o))return o.map(f=>i(f,s)).filter(Boolean);let c={},l=new Set(n(o));for(let f in o)!Object.prototype.hasOwnProperty.call(o,f)||a.has(f)||(l.has(f)?c[f]=i(o[f],o):c[f]=o[f]);let D=r(o,c,s);if(D!==null)return D??c}}var jh=xh,$h=(e,t,r)=>{if(!(e&&t==null)){if(t.findLastIndex)return t.findLastIndex(r);for(let u=t.length-1;u>=0;u--){let n=t[u];if(r(n,u,t))return u}return-1}},Mh=$h,Wh=({parser:e})=>e==="json"||e==="json5"||e==="jsonc"||e==="json-stringify";function Gh(e,t){let r=[e.node,...e.parentNodes],u=new Set([t.node,...t.parentNodes]);return r.find(n=>Ho.has(n.type)&&u.has(n))}function Di(e){let t=Mh(!1,e,r=>r.type!=="Program"&&r.type!=="File");return t===-1?e:e.slice(0,t+1)}function Uh(e,t,{locStart:r,locEnd:u}){let n=e.node,a=t.node;if(n===a)return{startNode:n,endNode:a};let i=r(e.node);for(let s of Di(t.parentNodes))if(r(s)>=i)a=s;else break;let o=u(t.node);for(let s of Di(e.parentNodes)){if(u(s)<=o)n=s;else break;if(n===a)break}return{startNode:n,endNode:a}}function Dn(e,t,r,u,n=[],a){let{locStart:i,locEnd:o}=r,s=i(e),c=o(e);if(!(t>c||t<s||a==="rangeEnd"&&t===s||a==="rangeStart"&&t===c)){for(let l of xn(e,r)){let D=Dn(l,t,r,u,[e,...n],a);if(D)return D}if(!u||u(e,n[0]))return{node:e,parentNodes:n}}}function qh(e,t){return t!=="DeclareExportDeclaration"&&e!=="TypeParameterDeclaration"&&(e==="Directive"||e==="TypeAlias"||e==="TSExportAssignment"||e.startsWith("Declare")||e.startsWith("TSDeclare")||e.endsWith("Statement")||e.endsWith("Declaration"))}var Ho=new Set(["JsonRoot","ObjectExpression","ArrayExpression","StringLiteral","NumericLiteral","BooleanLiteral","NullLiteral","UnaryExpression","TemplateLiteral"]),Vh=new Set(["OperationDefinition","FragmentDefinition","VariableDefinition","TypeExtensionDefinition","ObjectTypeDefinition","FieldDefinition","DirectiveDefinition","EnumTypeDefinition","EnumValueDefinition","InputValueDefinition","InputObjectTypeDefinition","SchemaDefinition","OperationTypeDefinition","InterfaceTypeDefinition","UnionTypeDefinition","ScalarTypeDefinition"]);function fi(e,t,r){if(!t)return!1;switch(e.parser){case"flow":case"hermes":case"babel":case"babel-flow":case"babel-ts":case"typescript":case"acorn":case"espree":case"meriyah":case"oxc":case"oxc-ts":case"__babel_estree":return qh(t.type,r?.type);case"json":case"json5":case"jsonc":case"json-stringify":return Ho.has(t.type);case"graphql":return Vh.has(t.kind);case"vue":return t.tag!=="root"}return!1}function Kh(e,t,r){let{rangeStart:u,rangeEnd:n,locStart:a,locEnd:i}=t;Hh.ok(n>u);let o=e.slice(u,n).search(/\S/u),s=o===-1;if(!s)for(u+=o;n>u&&!/\S/u.test(e[n-1]);--n);let c=Dn(r,u,t,(h,d)=>fi(t,h,d),[],"rangeStart"),l=s?c:Dn(r,n,t,h=>fi(t,h),[],"rangeEnd");if(!c||!l)return{rangeStart:0,rangeEnd:0};let D,f;if(Wh(t)){let h=Gh(c,l);D=h,f=h}else({startNode:D,endNode:f}=Uh(c,l,t));return{rangeStart:Math.min(a(D),a(f)),rangeEnd:Math.max(i(D),i(f))}}var Wo="\uFEFF",di=Symbol("cursor");async function Go(e,t,r=0){if(!e||e.trim().length===0)return{formatted:"",cursorOffset:-1,comments:[]};let{ast:u,text:n}=await Br(e,t);t.cursorOffset>=0&&(t={...t,...Mo(u,t)});let a=await lu(u,t,r);r>0&&(a=kd([er,a],r,t.tabWidth));let i=In(a,t);if(r>0){let s=i.formatted.trim();i.cursorNodeStart!==void 0&&(i.cursorNodeStart-=i.formatted.indexOf(s),i.cursorNodeStart<0&&(i.cursorNodeStart=0,i.cursorNodeText=i.cursorNodeText.trimStart()),i.cursorNodeStart+i.cursorNodeText.length>s.length&&(i.cursorNodeText=i.cursorNodeText.trimEnd())),i.formatted=s+On(t.endOfLine)}let o=t[Symbol.for("comments")];if(t.cursorOffset>=0){let s,c,l,D;if((t.cursorNode||t.nodeBeforeCursor||t.nodeAfterCursor)&&i.cursorNodeText)if(l=i.cursorNodeStart,D=i.cursorNodeText,t.cursorNode)s=t.locStart(t.cursorNode),c=n.slice(s,t.locEnd(t.cursorNode));else{if(!t.nodeBeforeCursor&&!t.nodeAfterCursor)throw new Error("Cursor location must contain at least one of cursorNode, nodeBeforeCursor, nodeAfterCursor");s=t.nodeBeforeCursor?t.locEnd(t.nodeBeforeCursor):0;let y=t.nodeAfterCursor?t.locStart(t.nodeAfterCursor):n.length;c=n.slice(s,y)}else s=0,c=n,l=0,D=i.formatted;let f=t.cursorOffset-s;if(c===D)return{formatted:i.formatted,cursorOffset:l+f,comments:o};let h=c.split("");h.splice(f,0,di);let d=D.split(""),p=Jc(h,d),v=l;for(let y of p)if(y.removed){if(y.value.includes(di))break}else v+=y.count;return{formatted:i.formatted,cursorOffset:v,comments:o}}return{formatted:i.formatted,cursorOffset:-1,comments:o}}async function zh(e,t){let{ast:r,text:u}=await Br(e,t),{rangeStart:n,rangeEnd:a}=Kh(u,t,r),i=u.slice(n,a),o=Math.min(n,u.lastIndexOf(`
680
- `,n)+1),s=u.slice(o,n).match(/^\s*/u)[0],c=Nn(s,t.tabWidth),l=await Go(i,{...t,rangeStart:0,rangeEnd:Number.POSITIVE_INFINITY,cursorOffset:t.cursorOffset>n&&t.cursorOffset<=a?t.cursorOffset-n:-1,endOfLine:"lf"},c),D=l.formatted.trimEnd(),{cursorOffset:f}=t;f>a?f+=D.length-i.length:l.cursorOffset>=0&&(f=l.cursorOffset+n);let h=u.slice(0,n)+D+u.slice(a);if(t.endOfLine!=="lf"){let d=On(t.endOfLine);f>=0&&d===`\r
681
- `&&(f+=vo(h.slice(0,f),`
682
- `)),h=yr(!1,h,`
683
- `,d)}return{formatted:h,cursorOffset:f,comments:l.comments}}function Gu(e,t,r){return typeof t!="number"||Number.isNaN(t)||t<0||t>e.length?r:t}function hi(e,t){let{cursorOffset:r,rangeStart:u,rangeEnd:n}=t;return r=Gu(e,r,-1),u=Gu(e,u,0),n=Gu(e,n,e.length),{...t,cursorOffset:r,rangeStart:u,rangeEnd:n}}function Uo(e,t){let{cursorOffset:r,rangeStart:u,rangeEnd:n,endOfLine:a}=hi(e,t),i=e.charAt(0)===Wo;if(i&&(e=e.slice(1),r--,u--,n--),a==="auto"&&(a=fd(e)),e.includes("\r")){let o=s=>vo(e.slice(0,Math.max(s,0)),`\r
684
- `);r-=o(r),u-=o(u),n-=o(n),e=dd(e)}return{hasBOM:i,text:e,options:hi(e,{...t,cursorOffset:r,rangeStart:u,rangeEnd:n,endOfLine:a})}}async function pi(e,t){let r=await Hn(t);return!r.hasPragma||r.hasPragma(e)}async function Yh(e,t){var r;let u=await Hn(t);return(r=u.hasIgnorePragma)==null?void 0:r.call(u,e)}async function qo(e,t){let{hasBOM:r,text:u,options:n}=Uo(e,await ar(t));if(n.rangeStart>=n.rangeEnd&&u!==""||n.requirePragma&&!await pi(u,n)||n.checkIgnorePragma&&await Yh(u,n))return{formatted:e,cursorOffset:t.cursorOffset,comments:[]};let a;return n.rangeStart>0||n.rangeEnd<u.length?a=await zh(u,n):(!n.requirePragma&&n.insertPragma&&n.printer.insertPragma&&!await pi(u,n)&&(u=n.printer.insertPragma(u)),a=await Go(u,n)),r&&(a.formatted=Wo+a.formatted,a.cursorOffset>=0&&a.cursorOffset++),a}async function Xh(e,t,r){let{text:u,options:n}=Uo(e,await ar(t)),a=await Br(u,n);return r&&(r.preprocessForPrint&&(a.ast=await $o(a.ast,n)),r.massage&&(a.ast=jh(a.ast,n))),a}async function Jh(e,t){t=await ar(t);let r=await lu(e,t);return In(r,t)}async function Qh(e,t){let r=Rd(e),{formatted:u}=await qo(r,{...t,parser:"__js_expression"});return u}async function Zh(e,t){t=await ar(t);let{ast:r}=await Br(e,t);return t.cursorOffset>=0&&(t={...t,...Mo(r,t)}),lu(r,t)}async function ep(e,t){return In(e,await ar(t))}var Vo={};Cr(Vo,{CATEGORY_CONFIG:()=>tp,CATEGORY_EDITOR:()=>rp,CATEGORY_FORMAT:()=>up,CATEGORY_GLOBAL:()=>ip,CATEGORY_OTHER:()=>np,CATEGORY_OUTPUT:()=>ap,CATEGORY_SPECIAL:()=>op});var tp="Config",rp="Editor",up="Format",np="Other",ap="Output",ip="Global",op="Special",Ko={};Cr(Ko,{languages:()=>Rp,options:()=>kp,parsers:()=>Pp,printers:()=>Op});var sp=[{name:"CSS",type:"markup",extensions:[".css",".wxss"],tmScope:"source.css",aceMode:"css",codemirrorMode:"css",codemirrorMimeType:"text/css",parsers:["css"],vscodeLanguageIds:["css"],linguistLanguageId:50},{name:"PostCSS",type:"markup",extensions:[".pcss",".postcss"],tmScope:"source.postcss",aceMode:"text",group:"CSS",parsers:["css"],vscodeLanguageIds:["postcss"],linguistLanguageId:262764437},{name:"Less",type:"markup",extensions:[".less"],tmScope:"source.css.less",aceMode:"less",aliases:["less-css"],codemirrorMode:"css",codemirrorMimeType:"text/css",parsers:["less"],vscodeLanguageIds:["less"],linguistLanguageId:198},{name:"SCSS",type:"markup",extensions:[".scss"],tmScope:"source.css.scss",aceMode:"scss",codemirrorMode:"css",codemirrorMimeType:"text/x-scss",parsers:["scss"],vscodeLanguageIds:["scss"],linguistLanguageId:329}],Oe={bracketSpacing:{category:"Common",type:"boolean",default:!0,description:"Print spaces between brackets.",oppositeDescription:"Do not print spaces between brackets."},objectWrap:{category:"Common",type:"choice",default:"preserve",description:"How to wrap object literals.",choices:[{value:"preserve",description:"Keep as multi-line, if there is a newline between the opening brace and first property."},{value:"collapse",description:"Fit to a single line when possible."}]},singleQuote:{category:"Common",type:"boolean",default:!1,description:"Use single quotes instead of double quotes."},proseWrap:{category:"Common",type:"choice",default:"preserve",description:"How to wrap prose.",choices:[{value:"always",description:"Wrap prose if it exceeds the print width."},{value:"never",description:"Do not wrap prose."},{value:"preserve",description:"Wrap prose as-is."}]},bracketSameLine:{category:"Common",type:"boolean",default:!1,description:"Put > of opening tags on the last line instead of on a new line."},singleAttributePerLine:{category:"Common",type:"boolean",default:!1,description:"Enforce single attribute per line in HTML, Vue and JSX."}},lp={singleQuote:Oe.singleQuote},cp=lp,Dp=[{name:"GraphQL",type:"data",extensions:[".graphql",".gql",".graphqls"],tmScope:"source.graphql",aceMode:"text",parsers:["graphql"],vscodeLanguageIds:["graphql"],linguistLanguageId:139}],fp={bracketSpacing:Oe.bracketSpacing},dp=fp,hp=[{name:"Handlebars",type:"markup",extensions:[".handlebars",".hbs"],tmScope:"text.html.handlebars",aceMode:"handlebars",aliases:["hbs","htmlbars"],parsers:["glimmer"],vscodeLanguageIds:["handlebars"],linguistLanguageId:155}],pp=[{name:"Angular",type:"markup",extensions:[".component.html"],tmScope:"text.html.basic",aceMode:"html",aliases:["xhtml"],codemirrorMode:"htmlmixed",codemirrorMimeType:"text/html",parsers:["angular"],vscodeLanguageIds:["html"],filenames:[],linguistLanguageId:146},{name:"HTML",type:"markup",extensions:[".html",".hta",".htm",".html.hl",".inc",".xht",".xhtml"],tmScope:"text.html.basic",aceMode:"html",aliases:["xhtml"],codemirrorMode:"htmlmixed",codemirrorMimeType:"text/html",parsers:["html"],vscodeLanguageIds:["html"],linguistLanguageId:146},{name:"Lightning Web Components",type:"markup",extensions:[],tmScope:"text.html.basic",aceMode:"html",aliases:["xhtml"],codemirrorMode:"htmlmixed",codemirrorMimeType:"text/html",parsers:["lwc"],vscodeLanguageIds:["html"],filenames:[],linguistLanguageId:146},{name:"MJML",type:"markup",extensions:[".mjml"],tmScope:"text.mjml.basic",aceMode:"html",aliases:["MJML","mjml"],codemirrorMode:"htmlmixed",codemirrorMimeType:"text/html",parsers:["mjml"],filenames:[],vscodeLanguageIds:["mjml"],linguistLanguageId:146},{name:"Vue",type:"markup",extensions:[".vue"],tmScope:"source.vue",aceMode:"html",parsers:["vue"],vscodeLanguageIds:["vue"],linguistLanguageId:391}],Fi="HTML",Fp={bracketSameLine:Oe.bracketSameLine,htmlWhitespaceSensitivity:{category:Fi,type:"choice",default:"css",description:"How to handle whitespaces in HTML.",choices:[{value:"css",description:"Respect the default value of CSS display property."},{value:"strict",description:"Whitespaces are considered sensitive."},{value:"ignore",description:"Whitespaces are considered insensitive."}]},singleAttributePerLine:Oe.singleAttributePerLine,vueIndentScriptAndStyle:{category:Fi,type:"boolean",default:!1,description:"Indent script and style tags in Vue files."}},gp=Fp,Ep=[{name:"JavaScript",type:"programming",extensions:[".js","._js",".bones",".cjs",".es",".es6",".gs",".jake",".javascript",".jsb",".jscad",".jsfl",".jslib",".jsm",".jspre",".jss",".mjs",".njs",".pac",".sjs",".ssjs",".xsjs",".xsjslib",".start.frag",".end.frag",".wxs"],tmScope:"source.js",aceMode:"javascript",aliases:["js","node"],codemirrorMode:"javascript",codemirrorMimeType:"text/javascript",interpreters:["chakra","d8","gjs","js","node","nodejs","qjs","rhino","v8","v8-shell","zx"],filenames:["Jakefile","start.frag","end.frag"],parsers:["babel","acorn","espree","meriyah","babel-flow","babel-ts","flow","typescript"],vscodeLanguageIds:["javascript","mongo"],linguistLanguageId:183},{name:"Flow",type:"programming",extensions:[".js.flow"],tmScope:"source.js",aceMode:"javascript",aliases:[],codemirrorMode:"javascript",codemirrorMimeType:"text/javascript",interpreters:["chakra","d8","gjs","js","node","nodejs","qjs","rhino","v8","v8-shell"],filenames:[],parsers:["flow","babel-flow"],vscodeLanguageIds:["javascript"],linguistLanguageId:183},{name:"JSX",type:"programming",extensions:[".jsx"],tmScope:"source.js.jsx",aceMode:"javascript",aliases:void 0,codemirrorMode:"jsx",codemirrorMimeType:"text/jsx",interpreters:void 0,filenames:void 0,parsers:["babel","babel-flow","babel-ts","flow","typescript","espree","meriyah"],vscodeLanguageIds:["javascriptreact"],group:"JavaScript",linguistLanguageId:183},{name:"TypeScript",type:"programming",extensions:[".ts",".cts",".mts"],tmScope:"source.ts",aceMode:"typescript",aliases:["ts"],codemirrorMode:"javascript",codemirrorMimeType:"application/typescript",interpreters:["bun","deno","ts-node","tsx"],parsers:["typescript","babel-ts"],vscodeLanguageIds:["typescript"],linguistLanguageId:378},{name:"TSX",type:"programming",extensions:[".tsx"],tmScope:"source.tsx",aceMode:"javascript",codemirrorMode:"jsx",codemirrorMimeType:"text/jsx",group:"TypeScript",parsers:["typescript","babel-ts"],vscodeLanguageIds:["typescriptreact"],linguistLanguageId:94901924}],gt="JavaScript",mp={arrowParens:{category:gt,type:"choice",default:"always",description:"Include parentheses around a sole arrow function parameter.",choices:[{value:"always",description:"Always include parens. Example: `(x) => x`"},{value:"avoid",description:"Omit parens when possible. Example: `x => x`"}]},bracketSameLine:Oe.bracketSameLine,objectWrap:Oe.objectWrap,bracketSpacing:Oe.bracketSpacing,jsxBracketSameLine:{category:gt,type:"boolean",description:"Put > on the last line instead of at a new line.",deprecated:"2.4.0"},semi:{category:gt,type:"boolean",default:!0,description:"Print semicolons.",oppositeDescription:"Do not print semicolons, except at the beginning of lines which may need them."},experimentalOperatorPosition:{category:gt,type:"choice",default:"end",description:"Where to print operators when binary expressions wrap lines.",choices:[{value:"start",description:"Print operators at the start of new lines."},{value:"end",description:"Print operators at the end of previous lines."}]},experimentalTernaries:{category:gt,type:"boolean",default:!1,description:"Use curious ternaries, with the question mark after the condition.",oppositeDescription:"Default behavior of ternaries; keep question marks on the same line as the consequent."},singleQuote:Oe.singleQuote,jsxSingleQuote:{category:gt,type:"boolean",default:!1,description:"Use single quotes in JSX."},quoteProps:{category:gt,type:"choice",default:"as-needed",description:"Change when properties in objects are quoted.",choices:[{value:"as-needed",description:"Only add quotes around object properties where required."},{value:"consistent",description:"If at least one property in an object requires quotes, quote all properties."},{value:"preserve",description:"Respect the input use of quotes in object properties."}]},trailingComma:{category:gt,type:"choice",default:"all",description:"Print trailing commas wherever possible when multi-line.",choices:[{value:"all",description:"Trailing commas wherever possible (including function arguments)."},{value:"es5",description:"Trailing commas where valid in ES5 (objects, arrays, etc.)"},{value:"none",description:"No trailing commas."}]},singleAttributePerLine:Oe.singleAttributePerLine},Cp=mp,vp=[{name:"JSON.stringify",type:"data",extensions:[".importmap"],tmScope:"source.json",aceMode:"json",aliases:["geojson","jsonl","sarif","topojson"],codemirrorMode:"javascript",codemirrorMimeType:"application/json",filenames:["package.json","package-lock.json","composer.json"],parsers:["json-stringify"],vscodeLanguageIds:["json"],linguistLanguageId:174},{name:"JSON",type:"data",extensions:[".json",".4DForm",".4DProject",".avsc",".geojson",".gltf",".har",".ice",".JSON-tmLanguage",".json.example",".mcmeta",".sarif",".tact",".tfstate",".tfstate.backup",".topojson",".webapp",".webmanifest",".yy",".yyp"],tmScope:"source.json",aceMode:"json",aliases:["geojson","jsonl","sarif","topojson"],codemirrorMode:"javascript",codemirrorMimeType:"application/json",filenames:[".all-contributorsrc",".arcconfig",".auto-changelog",".c8rc",".htmlhintrc",".imgbotconfig",".nycrc",".tern-config",".tern-project",".watchmanconfig",".babelrc",".jscsrc",".jshintrc",".jslintrc",".swcrc"],parsers:["json"],vscodeLanguageIds:["json"],linguistLanguageId:174},{name:"JSON with Comments",type:"data",extensions:[".jsonc",".code-snippets",".code-workspace",".sublime-build",".sublime-color-scheme",".sublime-commands",".sublime-completions",".sublime-keymap",".sublime-macro",".sublime-menu",".sublime-mousemap",".sublime-project",".sublime-settings",".sublime-theme",".sublime-workspace",".sublime_metrics",".sublime_session"],tmScope:"source.json.comments",aceMode:"javascript",aliases:["jsonc"],codemirrorMode:"javascript",codemirrorMimeType:"text/javascript",group:"JSON",filenames:[],parsers:["jsonc"],vscodeLanguageIds:["jsonc"],linguistLanguageId:423},{name:"JSON5",type:"data",extensions:[".json5"],tmScope:"source.js",aceMode:"javascript",codemirrorMode:"javascript",codemirrorMimeType:"application/json",parsers:["json5"],vscodeLanguageIds:["json5"],linguistLanguageId:175}],Ap=[{name:"Markdown",type:"prose",extensions:[".md",".livemd",".markdown",".mdown",".mdwn",".mkd",".mkdn",".mkdown",".ronn",".scd",".workbook"],tmScope:"text.md",aceMode:"markdown",aliases:["md","pandoc"],codemirrorMode:"gfm",codemirrorMimeType:"text/x-gfm",filenames:["contents.lr","README"],wrap:!0,parsers:["markdown"],vscodeLanguageIds:["markdown"],linguistLanguageId:222},{name:"MDX",type:"prose",extensions:[".mdx"],tmScope:"text.md",aceMode:"markdown",aliases:["md","pandoc"],codemirrorMode:"gfm",codemirrorMimeType:"text/x-gfm",filenames:[],wrap:!0,parsers:["mdx"],vscodeLanguageIds:["mdx"],linguistLanguageId:222}],yp={proseWrap:Oe.proseWrap,singleQuote:Oe.singleQuote},_p=yp,bp=[{name:"YAML",type:"data",extensions:[".yml",".mir",".reek",".rviz",".sublime-syntax",".syntax",".yaml",".yaml-tmlanguage",".yaml.sed",".yml.mysql"],tmScope:"source.yaml",aceMode:"yaml",aliases:["yml"],codemirrorMode:"yaml",codemirrorMimeType:"text/x-yaml",filenames:[".clang-format",".clang-tidy",".clangd",".gemrc","CITATION.cff","glide.lock","pixi.lock",".prettierrc",".stylelintrc",".lintstagedrc"],parsers:["yaml"],vscodeLanguageIds:["yaml","ansible","dockercompose","github-actions-workflow","home-assistant"],linguistLanguageId:407}],Bp={bracketSpacing:Oe.bracketSpacing,singleQuote:Oe.singleQuote,proseWrap:Oe.proseWrap},wp=Bp;function Sp(e){let t=Object.create(null),r=Object.create(null);for(let{importPlugin:u,parsers:n=[],printers:a=[]}of e){let i=async()=>{let o=await u();return Object.assign(t,o.parsers),Object.assign(r,o.printers),o};for(let o of n)t[o]=async()=>(await i()).parsers[o];for(let o of a)r[o]=async()=>(await i()).printers[o]}return{parsers:t,printers:r}}var kp={...cp,...dp,...gp,...Cp,..._p,...wp},Rp=[...sp,...Dp,...hp,...pp,...Ep,...vp,...Ap,...bp],{parsers:Pp,printers:Op}=Sp([{importPlugin:()=>import("./acorn-EYV4PDMH.js"),parsers:["acorn","espree"]},{importPlugin:()=>import("./angular-TC473YFC.js"),parsers:["__ng_action","__ng_binding","__ng_interpolation","__ng_directive"]},{importPlugin:()=>import("./babel-LEKTDS7L.js"),parsers:["babel","babel-flow","babel-ts","__js_expression","__ts_expression","__vue_expression","__vue_ts_expression","__vue_event_binding","__vue_ts_event_binding","__babel_estree","json","json5","jsonc","json-stringify"]},{importPlugin:()=>import("./estree-PSOZDKNG.js"),printers:["estree","estree-json"]},{importPlugin:()=>import("./flow-SLL5ZRPZ.js"),parsers:["flow"]},{importPlugin:()=>import("./glimmer-N45MS77V.js"),parsers:["glimmer"],printers:["glimmer"]},{importPlugin:()=>import("./graphql-QTATSPDP.js"),parsers:["graphql"],printers:["graphql"]},{importPlugin:()=>import("./html-KSAWNJSD.js"),parsers:["html","angular","vue","lwc","mjml"],printers:["html"]},{importPlugin:()=>import("./markdown-NMF2LIIF.js"),parsers:["markdown","mdx","remark"],printers:["mdast"]},{importPlugin:()=>import("./meriyah-GGIQ265B.js"),parsers:["meriyah"]},{importPlugin:()=>import("./postcss-LEYOLHZE.js"),parsers:["css","less","scss"],printers:["postcss"]},{importPlugin:()=>import("./typescript-UFTL2RQ6.js"),parsers:["typescript"]},{importPlugin:()=>import("./yaml-FHI3PI2W.js"),parsers:["yaml"],printers:["yaml"]}]);function Tp(){return[Ko]}var zo=Tp;function Np(e,t){return Eo(e,Ip.join(t,"noop.js"))}var Lp=Np;async function xp(e,t){if(uu(e))return import(e);if(gi.isAbsolute(e))return import(Ei(e).href);try{return await import(Ei(gi.resolve(e)).href)}catch{return Lp(e,t)}}async function jp(e,t){let r=await xp(e,t);return{name:e,...r.default??r}}var Kr=new Map;function $p(e){if(typeof e!="string"&&!(e instanceof URL))return e;let t=process.cwd(),r=JSON.stringify({name:e,cwd:t});return Kr.has(r)||Kr.set(r,jp(e,t)),Kr.get(r)}function Mp(){Kr.clear()}function Hp(e=[]){return Promise.all(e.map(t=>$p(t)))}var Yo=Hp,Wp=We(Uc(),1),Up=zr.sep==="\\"?e=>yr(!1,e,"\\","/"):e=>e;function qp(e,t){let r=nu(t),u=uu(e)?Gp.fileURLToPath(e):zr.resolve(e);return zr.relative(r?zr.dirname(r):process.cwd(),u)}async function Vp(e,t){let r="";if(e&&(r+=await Ar(e)??""),t||(r+=`
685
- node_modules`),!r)return;let u=(0,Wp.default)({allowRelativePaths:!0}).add(r);return n=>u.checkIgnore(Up(qp(n,e))).ignored}async function Xo(e,t){e.length===0&&!t&&(e=[void 0]);let r=(await Promise.all(e.map(u=>Vp(u,t)))).filter(Boolean);return u=>r.some(n=>n(u))}async function Kp(e,t){let{ignorePath:r,withNodeModules:u}=t;return(await Xo(r,u))(e)}function zp(e,t){return t=new Set(t),Object.fromEntries(Object.entries(e).filter(([r])=>!t.has(r)))}var Yp=zp;async function Xp(e,t={}){if(typeof e!="string"&&!(e instanceof URL))throw new TypeError(`expect \`file\` to be a string or URL, got \`${typeof e}\``);let{ignorePath:r,withNodeModules:u}=t;Array.isArray(r)||(r=[r]);let n=await Kp(e,{ignorePath:r,withNodeModules:u}),a;return n||(a=t.parser??await Jp(e,t)),{ignored:n,inferredParser:a??null}}async function Jp(e,t){let r;if(t.resolveConfig!==!1&&(r=await Co(e,{editorconfig:!1})),r?.parser)return r.parser;let u=t.plugins??r?.plugins??[];return u=(await Promise.all([zo(),Yo(u)])).flat(),Mn({plugins:u},{physicalFile:e})}var Qp=Xp,Zp="3.6.2",Jo={};Cr(Jo,{addDanglingComment:()=>$t,addLeadingComment:()=>Er,addTrailingComment:()=>mr,getAlignmentSize:()=>Nn,getIndentSize:()=>aF,getMaxContinuousCount:()=>sF,getNextNonSpaceNonCommentCharacter:()=>cF,getNextNonSpaceNonCommentCharacterIndex:()=>CF,getPreferredQuote:()=>fF,getStringWidth:()=>Tn,hasNewline:()=>Ct,hasNewlineInRange:()=>hF,hasSpaces:()=>FF,isNextLineEmpty:()=>_F,isNextLineEmptyAfterIndex:()=>qn,isPreviousLineEmpty:()=>AF,makeString:()=>EF,skip:()=>_r,skipEverythingButNewLine:()=>wo,skipInlineComment:()=>Wn,skipNewline:()=>Gt,skipSpaces:()=>yt,skipToLineEnd:()=>Bo,skipTrailingComment:()=>Gn,skipWhitespace:()=>Vd});function eF(e,t){if(t===!1)return!1;if(e.charAt(t)==="/"&&e.charAt(t+1)==="*"){for(let r=t+2;r<e.length;++r)if(e.charAt(r)==="*"&&e.charAt(r+1)==="/")return r+2}return t}var Wn=eF;function tF(e,t){return t===!1?!1:e.charAt(t)==="/"&&e.charAt(t+1)==="/"?wo(e,t):t}var Gn=tF;function rF(e,t){let r=null,u=t;for(;u!==r;)r=u,u=yt(e,u),u=Wn(e,u),u=Gn(e,u),u=Gt(e,u);return u}var Un=rF;function uF(e,t){let r=null,u=t;for(;u!==r;)r=u,u=Bo(e,u),u=Wn(e,u),u=yt(e,u);return u=Gn(e,u),u=Gt(e,u),u!==!1&&Ct(e,u)}var qn=uF;function nF(e,t){let r=e.lastIndexOf(`
686
- `);return r===-1?0:Nn(e.slice(r+1).match(/^[\t ]*/u)[0],t)}var aF=nF;function iF(e){if(typeof e!="string")throw new TypeError("Expected a string");return e.replace(/[|\\{}()[\]^$+*?.]/g,"\\$&").replace(/-/g,"\\x2d")}function oF(e,t){let r=e.match(new RegExp(`(${iF(t)})+`,"gu"));return r===null?0:r.reduce((u,n)=>Math.max(u,n.length/t.length),0)}var sF=oF;function lF(e,t){let r=Un(e,t);return r===!1?"":e.charAt(r)}var cF=lF,Lr="'",mi='"';function DF(e,t){let r=t===!0||t===Lr?Lr:mi,u=r===Lr?mi:Lr,n=0,a=0;for(let i of e)i===r?n++:i===u&&a++;return n>a?u:r}var fF=DF;function dF(e,t,r){for(let u=t;u<r;++u)if(e.charAt(u)===`
687
- `)return!0;return!1}var hF=dF;function pF(e,t,r={}){return yt(e,r.backwards?t-1:t,r)!==t}var FF=pF;function gF(e,t,r){let u=t==='"'?"'":'"',a=yr(!1,e,/\\(.)|(["'])/gsu,(i,o,s)=>o===u?o:s===t?"\\"+s:s||(r&&/^[^\n\r"'0-7\\bfnrt-vx\u2028\u2029]$/u.test(o)?o:"\\"+o));return t+a+t}var EF=gF;function mF(e,t,r){return Un(e,r(t))}function CF(e,t){return arguments.length===2||typeof t=="number"?Un(e,t):mF(...arguments)}function vF(e,t,r){return jn(e,r(t))}function AF(e,t){return arguments.length===2||typeof t=="number"?jn(e,t):vF(...arguments)}function yF(e,t,r){return qn(e,r(t))}function _F(e,t){return arguments.length===2||typeof t=="number"?qn(e,t):yF(...arguments)}function mt(e,t=1){return async(...r)=>{let u=r[t]??{},{plugins:n=[]}=u;return r[t]={...u,plugins:(await Promise.all([zo(),Yo(n)])).flat()},e(...r)}}var Qo=mt(qo);async function cu(e,t){let{formatted:r}=await Qo(e,{...t,cursorOffset:-1});return r}async function bF(e,t){return await cu(e,t)===e}async function BF(){ad(),Mp()}var wF=mt($n,0),SF=mt((e,t)=>Mn(t,{physicalFile:e})),kF={errors:Hi,optionCategories:Vo,createIsIgnoredFunction:Xo,formatOptionsHiddenDefaults:cn,normalizeOptions:No,getSupportInfoWithoutPlugins:$n,normalizeOptionSettings:To,inferParser:(e,t)=>Promise.resolve(t?.parser??SF(e,t)),vnopts:{ChoiceSchema:Mi,apiDescriptor:Mt},fastGlob:e0.default,createTwoFilesPatch:Qc,picocolors:t0.default,leven:Ii,utils:{omit:Yp,createMockable:Wi}},RF={parse:mt(Xh),formatAST:mt(Jh),formatDoc:mt(Qh),printToDoc:mt(Zh),printDocToString:mt(ep),mockable:Gi};var Vn=e=>cu(e,{singleQuote:!0,jsxSingleQuote:!0,tabWidth:2,semi:!0,parser:"typescript"});import{converter as Kn,formatHsl as OF,formatRgb as TF}from"culori";var IF=Kn("rgb"),NF=Kn("hsl"),LF=Kn("oklch"),zn=new Intl.NumberFormat("en-US",{style:"percent"}).format;function Zo(e){let t=NF(e),r=OF(t),[u,n,a]=r.replace("hsla(","").replace("hsl(","").replace(")","").split(", ");return t?.alpha?`${u} ${n} ${a} / ${zn(t.alpha)}`:`${u} ${n} ${a}`}function es(e){let t=IF(e),r=TF(t),[u,n,a]=r.replace("rgba(","").replace("rgb(","").replace(")","").split(", ");return t?.alpha?`${u} ${n} ${a} / ${zn(t.alpha)}`:`${u} ${n} ${a}`}function ts(e){let t=LF(e);if(!t)return e;let r=t.l!==void 0?(t.l*100).toFixed(2)+"%":"0%",u=t.c!==void 0?t.c.toFixed(4):"0",n=t.h!==void 0?t.h.toFixed(2):"0";return t.alpha!==void 0&&t.alpha!==1?`oklch(${r} ${u} ${n} / ${zn(t.alpha)})`:`oklch(${r} ${u} ${n})`}var ns=["tailwindcss@latest","@tailwindcss/postcss@latest"],WF=rs.object({cwd:rs.string()}),is=new xF().name("tailwind").description("Initialize AlignUI tailwind tokens for your project.").option("-c, --cwd <cwd>","the working directory. defaults to the current directory.",process.cwd()).action(async e=>{try{MF("AlignUI Tailwind Setup");let t=WF.parse(e),r=hu.resolve(t.cwd);as(r)||(console.error(`The path ${r} does not exist. Please try again.`),process.exit(1)),ia(r);let u=await na(r);if(u){let n=await GF(r,u);await UF(r,n)}HF("Project initialization completed!")}catch(t){console.log(t)}});async function GF(e,t){let r=await fu({message:"Which color would you like to use as primary color?",options:[{value:"blue",label:"Blue"},{value:"purple",label:"Purple"},{value:"orange",label:"Orange"},{value:"sky",label:"Sky"}]});ir(r)&&process.exit(0);let u=await fu({message:"Which color would you like to use as neutral color?",options:[{value:"gray",label:"Gray"},{value:"slate",label:"Slate"}]});ir(u)&&process.exit(0);let n=await fu({message:"Which color format would you like to use?",options:[{value:"oklch",label:"oklch (Recommended for Tailwind v4.1)"},{value:"hex",label:"hex"},{value:"rgb",label:"rgb"},{value:"hsl",label:"hsl"}]});ir(n)&&process.exit(0);let a=await Yn({message:"Use a custom prefix for AlignUI classes? (Leave blank for none)"});ir(a)&&process.exit(0);let i=await fu({message:"Create tailwind.config file? (Optional in v4.1 - CSS-first configuration)",options:[{value:!1,label:"No - Use CSS-only configuration (Recommended for v4.1)"},{value:!0,label:"Yes - Create minimal config file"}]});ir(i)&&process.exit(0);let o="";if(i){let l=await Yn({message:"Where should we create your tailwind config file?",initialValue:t?.tailwind.config??ta});ir(l)&&process.exit(0),o=l}let s=await Yn({message:"Where is your global CSS file?",initialValue:t?.tailwind.css??ea}),c=gu.parse({tailwind:{config:o,css:s,primaryColor:r,neutralColor:u,colorFormat:n,prefix:a}});return await Sr(e,c)}function du(e,t){return t?Object.fromEntries(Object.entries(e).map(([r,u])=>[`${t}${r}`,u])):e}async function UF(e,t){let r=us();r.start("Initializing project...");try{for(let[s,c]of Object.entries(t.resolvedPaths)){if(!c)continue;let l=hu.extname(c)?hu.dirname(c):c;as(l)||await Du.mkdir(l,{recursive:!0})}let a=Qn;if(await Du.writeFile(t.resolvedPaths.postcssConfig,await Vn(a),"utf8"),t.resolvedPaths.tailwindConfig){let s=hu.extname(t.resolvedPaths.tailwindConfig)===".ts"?Jn:Xn;await Du.writeFile(t.resolvedPaths.tailwindConfig,await Vn(s),"utf8")}let i=Object.fromEntries(Object.entries(oa).map(([s,c])=>[s,Object.fromEntries(Object.entries(c).map(([l,D])=>t.tailwind.colorFormat==="hsl"?[l,Zo(D)]:t.tailwind.colorFormat==="rgb"?[l,es(D)]:t.tailwind.colorFormat==="oklch"?[l,ts(D)]:[l,D]))])),o=t.tailwind.prefix?{texts:du(mu,t.tailwind.prefix),shadows:du(Cu,t.tailwind.prefix),borderRadii:du(Eu,t.tailwind.prefix),animations:du(vu,t.tailwind.prefix)}:{texts:mu,shadows:Cu,borderRadii:Eu,animations:vu};await Du.writeFile(t.resolvedPaths.tailwindCss,$F(Zn)({config:t,primaryColor:t.tailwind.primaryColor,neutralColor:t.tailwind.neutralColor,...i,texts:JSON.stringify(o.texts,null,2),shadows:JSON.stringify(o.shadows,null,2),borderRadii:JSON.stringify(o.borderRadii,null,2),animations:JSON.stringify(o.animations,null,2)}),"utf8"),r.stop()}catch(a){throw r.stop("Initialization failed."),a}let u=await ra(e),n=us();n.start("Installing dependencies..."),await jF(u,[u==="npm"?"i":"add",u==="npm"?"--save-dev":"-D",...ns],{cwd:e}),n.stop(`Dependencies installed!
688
-
689
- - ${ns.join(`
690
- - `)}`)}import{Command as KF}from"commander";import qF from"path";import VF from"fs-extra";function os(){let e=qF.join("package.json");return VF.readJSONSync(e)}process.on("SIGINT",()=>process.exit(0));process.on("SIGTERM",()=>process.exit(0));async function zF(){let e=await os(),t=new KF().name("alignui-cli").description(e.description||"").version(e.version||"0.0.1","-v, --version","display the version number");t.addCommand(is),t.parse()}zF();
693
+ The range will extend backwards to the start of the first line containing the selected statement.`,cliCategory:"Editor"},requirePragma:{category:"Special",type:"boolean",default:!1,description:"Require either '@prettier' or '@format' to be present in the file's first docblock comment in order for it to be formatted.",cliCategory:"Other"},tabWidth:{type:"int",category:"Global",default:2,description:"Number of spaces per indentation level.",range:{start:0,end:1/0,step:1}},useTabs:{category:"Global",type:"boolean",default:!1,description:"Indent with tabs instead of spaces."},embeddedLanguageFormatting:{category:"Global",type:"choice",default:"auto",description:"Control how Prettier formats quoted code embedded in the file.",choices:[{value:"auto",description:"Format embedded code if Prettier can automatically identify it."},{value:"off",description:"Never automatically format embedded code."}]}};function Hn({plugins:e=[],showDeprecated:t=!1}={}){let r=e.flatMap(n=>n.languages??[]),u=[];for(let n of Io(Object.assign({},...e.map(({options:a})=>a),fd)))!t&&n.deprecated||(Array.isArray(n.choices)&&(t||(n.choices=n.choices.filter(a=>!a.deprecated)),n.name==="parser"&&(n.choices=[...n.choices,...pd(n.choices,r,e)])),n.pluginDefaults=Object.fromEntries(e.filter(a=>{var i;return((i=a.defaultOptions)==null?void 0:i[n.name])!==void 0}).map(a=>[a.name,a.defaultOptions[n.name]])),u.push(n));return{languages:r,options:u}}function*pd(e,t,r){let u=new Set(e.map(n=>n.value));for(let n of t)if(n.parsers){for(let a of n.parsers)if(!u.has(a)){u.add(a);let i=r.find(s=>s.parsers&&Object.prototype.hasOwnProperty.call(s.parsers,a)),o=n.name;i?.name&&(o+=` (plugin: ${i.name})`),yield{value:a,description:o}}}}function Io(e){let t=[];for(let[r,u]of Object.entries(e)){let n={name:r,...u};Array.isArray(n.default)&&(n.default=ve(!1,n.default,-1).value),t.push(n)}return t}var dd=(e,t)=>{if(!(e&&t==null))return t.toReversed||!Array.isArray(t)?t.toReversed():[...t].reverse()},hd=dd,gd=We(qc(),1);function Fd(e){try{let t=new gd.default(e),r=t.next();if(r===!1)return;t.close();let u=r.toString("utf8"),n=u.match(/^#!\/(?:usr\/)?bin\/env\s+(\S+)/u);if(n)return n[1];let a=u.match(/^#!\/(?:usr\/(?:local\/)?)?bin\/(\S+)/u);if(a)return a[1]}catch{}}var md=Fd,Cd=Ed,No=e=>String(e).split(/[/\\]/u).pop();function ci(e,t){if(!t)return;let r=No(t).toLowerCase();return e.find(({filenames:u})=>u?.some(n=>n.toLowerCase()===r))??e.find(({extensions:u})=>u?.some(n=>r.endsWith(n)))}function vd(e,t){if(t)return e.find(({name:r})=>r.toLowerCase()===t)??e.find(({aliases:r})=>r?.includes(t))??e.find(({extensions:r})=>r?.includes(`.${t}`))}function Ad(e,t){if(!t||No(t).includes("."))return;let r=e.filter(({interpreters:n})=>Ro(n));if(r.length===0)return;let u=md(t);if(u)return r.find(({interpreters:n})=>n.includes(u))}function Di(e,t){if(t){if(String(t).startsWith("file:"))try{t=Cd(t)}catch{return}if(typeof t=="string")return e.find(({isSupported:r})=>r?.({filepath:t}))}}function yd(e,t){let r=hd(!1,e.plugins).flatMap(n=>n.languages??[]),u=vd(r,t.language)??ci(r,t.physicalFile)??ci(r,t.file)??Di(r,t.physicalFile)??Di(r,t.file)??Ad(r,t.physicalFile);return u?.parsers[0]}var Wn=yd,Uu;function _d(e,t,{logger:r=!1,isCLI:u=!1,passThrough:n=!1,FlagSchema:a,descriptor:i}={}){if(u){if(!a)throw new Error("'FlagSchema' option is required.");if(!i)throw new Error("'descriptor' option is required.")}else i=Mt;let o=n?Array.isArray(n)?(f,d)=>n.includes(f)?{[f]:d}:void 0:(f,d)=>({[f]:d}):(f,d,p)=>{let{_:h,...v}=p.schemas;return Mi(f,d,{...p,schemas:v})},s=bd(t,{isCLI:u,FlagSchema:a}),c=new w0(s,{logger:r,unknown:o,descriptor:i}),l=r!==!1;l&&Uu&&(c._hasDeprecationWarned=Uu);let D=c.normalize(e);return l&&(Uu=c._hasDeprecationWarned),D}function bd(e,{isCLI:t,FlagSchema:r}){let u=[];t&&u.push(c0.create({name:"_"}));for(let n of e)u.push(Bd(n,{isCLI:t,optionInfos:e,FlagSchema:r})),n.alias&&t&&u.push(l0.create({name:n.alias,sourceName:n.name}));return u}function Bd(e,{isCLI:t,optionInfos:r,FlagSchema:u}){let{name:n}=e,a={name:n},i,o={};switch(e.type){case"int":i=A0,t&&(a.preprocess=Number);break;case"string":i=$a;break;case"choice":i=Wi,a.choices=e.choices.map(s=>s?.redirect?{...s,redirect:{to:{key:e.name,value:s.redirect}}}:s);break;case"boolean":i=f0;break;case"flag":i=u,a.flags=r.flatMap(s=>[s.alias,s.description&&s.name,s.oppositeDescription&&`no-${s.name}`].filter(Boolean));break;case"path":i=$a;break;default:throw new Error(`Unexpected type ${e.type}`)}if(e.exception?a.validate=(s,c,l)=>e.exception(s)||c.validate(s,l):a.validate=(s,c,l)=>s===void 0||c.validate(s,l),e.redirect&&(o.redirect=s=>s?{to:typeof e.redirect=="string"?e.redirect:{key:e.redirect.option,value:e.redirect.value}}:void 0),e.deprecated&&(o.deprecated=!0),t&&!e.array){let s=a.preprocess||(c=>c);a.preprocess=(c,l,D)=>l.preprocess(s(Array.isArray(c)?ve(!1,c,-1):c),D)}return e.array?D0.create({...t?{preprocess:s=>Array.isArray(s)?s:[s]}:{},...o,valueSchema:i.create(a)}):i.create({...a,...o})}var Lo=_d,wd=(e,t,r)=>{if(!(e&&t==null)){if(t.findLast)return t.findLast(r);for(let u=t.length-1;u>=0;u--){let n=t[u];if(r(n,u,t))return n}}},jo=wd;function $o(e,t){if(!t)throw new Error("parserName is required.");let r=jo(!1,e,n=>n.parsers&&Object.prototype.hasOwnProperty.call(n.parsers,t));if(r)return r;let u=`Couldn't resolve parser "${t}".`;throw new An(u)}function Sd(e,t){if(!t)throw new Error("astFormat is required.");let r=jo(!1,e,n=>n.printers&&Object.prototype.hasOwnProperty.call(n.printers,t));if(r)return r;let u=`Couldn't find plugin for AST format "${t}".`;throw new An(u)}function Gn({plugins:e,parser:t}){let r=$o(e,t);return Mo(r,t)}function Mo(e,t){let r=e.parsers[t];return typeof r=="function"?r():r}function kd(e,t){let r=e.printers[t];return typeof r=="function"?r():r}var fn={astFormat:"estree",printer:{},originalText:void 0,locStart:null,locEnd:null};async function Rd(e,t={}){var r;let u={...e};if(!u.parser)if(u.filepath){if(u.parser=Wn(u,{physicalFile:u.filepath}),!u.parser)throw new Yu(`No parser could be inferred for file "${u.filepath}".`)}else throw new Yu("No parser and no file path given, couldn't infer a parser.");let n=Hn({plugins:e.plugins,showDeprecated:!0}).options,a={...fn,...Object.fromEntries(n.filter(f=>f.default!==void 0).map(f=>[f.name,f.default]))},i=$o(u.plugins,u.parser),o=await Mo(i,u.parser);u.astFormat=o.astFormat,u.locEnd=o.locEnd,u.locStart=o.locStart;let s=(r=i.printers)!=null&&r[o.astFormat]?i:Sd(u.plugins,o.astFormat),c=await kd(s,o.astFormat);u.printer=c;let l=s.defaultOptions?Object.fromEntries(Object.entries(s.defaultOptions).filter(([,f])=>f!==void 0)):{},D={...a,...l};for(let[f,d]of Object.entries(D))(u[f]===null||u[f]===void 0)&&(u[f]=d);return u.parser==="json"&&(u.trailingComma="none"),Lo(u,n,{passThrough:Object.keys(fn),...t})}var ar=Rd,xd=We(Ti(),1);async function Pd(e,t){let r=await Gn(t),u=r.preprocess?r.preprocess(e,t):e;t.originalText=u;let n;try{n=await r.parse(u,t,t)}catch(a){Od(a,e)}return{text:u,ast:n}}function Od(e,t){let{loc:r}=e;if(r){let u=(0,xd.codeFrameColumns)(t,r,{highlightCode:!0});throw e.message+=`
694
+ `+u,e.codeFrame=u,e}throw e}var wr=Pd;async function Td(e,t,r,u,n){let{embeddedLanguageFormatting:a,printer:{embed:i,hasPrettierIgnore:o=()=>!1,getVisitorKeys:s}}=r;if(!i||a!=="auto")return;if(i.length>2)throw new Error("printer.embed has too many parameters. The API changed in Prettier v3. Please update your plugin. See https://prettier.io/docs/plugins#optional-embed");let c=Br(i.getVisitorKeys??s),l=[];d();let D=e.stack;for(let{print:p,node:h,pathStack:v}of l)try{e.stack=v;let y=await p(f,t,e,r);y&&n.set(h,y)}catch(y){if(process.env.PRETTIER_DEBUG)throw y}e.stack=D;function f(p,h){return Id(p,h,r,u)}function d(){let{node:p}=e;if(p===null||typeof p!="object"||o(e))return;for(let v of c(p))Array.isArray(p[v])?e.each(d,v):e.call(d,v);let h=i(e,r);if(h){if(typeof h=="function"){l.push({print:h,node:p,pathStack:[...e.stack]});return}n.set(p,h)}}}async function Id(e,t,r,u){let n=await ar({...r,...t,parentParser:r.parser,originalText:e,cursorOffset:void 0,rangeStart:void 0,rangeEnd:void 0},{passThrough:!0}),{ast:a}=await wr(e,n),i=await u(a,n);return Bp(i)}function Nd(e,t){let{originalText:r,[Symbol.for("comments")]:u,locStart:n,locEnd:a,[Symbol.for("printedComments")]:i}=t,{node:o}=e,s=n(o),c=a(o);for(let l of u)n(l)>=s&&a(l)<=c&&i.add(l);return r.slice(s,c)}var Ld=Nd;async function cu(e,t){({ast:e}=await Ho(e,t));let r=new Map,u=new Gp(e),n=Dd(t),a=new Map;await Td(u,o,t,cu,a);let i=await fi(u,t,o,void 0,a);if(ld(t),t.cursorOffset>=0){if(t.nodeAfterCursor&&!t.nodeBeforeCursor)return[Jt,i];if(t.nodeBeforeCursor&&!t.nodeAfterCursor)return[i,Jt]}return i;function o(c,l){return c===void 0||c===u?s(l):Array.isArray(c)?u.call(()=>s(l),...c):u.call(()=>s(l),c)}function s(c){n(u);let l=u.node;if(l==null)return"";let D=l&&typeof l=="object"&&c===void 0;if(D&&r.has(l))return r.get(l);let f=fi(u,t,o,c,a);return D&&r.set(l,f),f}}function fi(e,t,r,u,n){var a;let{node:i}=e,{printer:o}=t,s;switch((a=o.hasPrettierIgnore)!=null&&a.call(o,e)?s=Ld(e,t):n.has(i)?s=n.get(i):s=o.print(e,t,r,u),i){case t.cursorNode:s=Vr(s,c=>[Jt,c,Jt]);break;case t.nodeBeforeCursor:s=Vr(s,c=>[c,Jt]);break;case t.nodeAfterCursor:s=Vr(s,c=>[Jt,c]);break}return o.printComment&&(!o.willPrintOwnComments||!o.willPrintOwnComments(e,t))&&(s=sd(e,s,t)),s}async function Ho(e,t){let r=e.comments??[];t[Symbol.for("comments")]=r,t[Symbol.for("printedComments")]=new Set,td(e,t);let{printer:{preprocess:u}}=t;return e=u?await u(e,t):e,{ast:e,comments:r}}function jd(e,t){let{cursorOffset:r,locStart:u,locEnd:n}=t,a=Br(t.printer.getVisitorKeys),i=d=>u(d)<=r&&n(d)>=r,o=e,s=[e];for(let d of Vp(e,{getVisitorKeys:a,filter:i}))s.push(d),o=d;if(Kp(o,{getVisitorKeys:a}))return{cursorNode:o};let c,l,D=-1,f=Number.POSITIVE_INFINITY;for(;s.length>0&&(c===void 0||l===void 0);){o=s.pop();let d=c!==void 0,p=l!==void 0;for(let h of lu(o,{getVisitorKeys:a})){if(!d){let v=n(h);v<=r&&v>D&&(c=h,D=v)}if(!p){let v=u(h);v>=r&&v<f&&(l=h,f=v)}}}return{nodeBeforeCursor:c,nodeAfterCursor:l}}var Wo=jd;function $d(e,t){let{printer:{massageAstNode:r,getVisitorKeys:u}}=t;if(!r)return e;let n=Br(u),a=r.ignoredProperties??new Set;return i(e);function i(o,s){if(!(o!==null&&typeof o=="object"))return o;if(Array.isArray(o))return o.map(f=>i(f,s)).filter(Boolean);let c={},l=new Set(n(o));for(let f in o)!Object.prototype.hasOwnProperty.call(o,f)||a.has(f)||(l.has(f)?c[f]=i(o[f],o):c[f]=o[f]);let D=r(o,c,s);if(D!==null)return D??c}}var Md=$d,Hd=(e,t,r)=>{if(!(e&&t==null)){if(t.findLastIndex)return t.findLastIndex(r);for(let u=t.length-1;u>=0;u--){let n=t[u];if(r(n,u,t))return u}return-1}},Wd=Hd,Ud=({parser:e})=>e==="json"||e==="json5"||e==="jsonc"||e==="json-stringify";function qd(e,t){let r=[e.node,...e.parentNodes],u=new Set([t.node,...t.parentNodes]);return r.find(n=>Go.has(n.type)&&u.has(n))}function pi(e){let t=Wd(!1,e,r=>r.type!=="Program"&&r.type!=="File");return t===-1?e:e.slice(0,t+1)}function Vd(e,t,{locStart:r,locEnd:u}){let n=e.node,a=t.node;if(n===a)return{startNode:n,endNode:a};let i=r(e.node);for(let s of pi(t.parentNodes))if(r(s)>=i)a=s;else break;let o=u(t.node);for(let s of pi(e.parentNodes)){if(u(s)<=o)n=s;else break;if(n===a)break}return{startNode:n,endNode:a}}function pn(e,t,r,u,n=[],a){let{locStart:i,locEnd:o}=r,s=i(e),c=o(e);if(!(t>c||t<s||a==="rangeEnd"&&t===s||a==="rangeStart"&&t===c)){for(let l of $n(e,r)){let D=pn(l,t,r,u,[e,...n],a);if(D)return D}if(!u||u(e,n[0]))return{node:e,parentNodes:n}}}function Kd(e,t){return t!=="DeclareExportDeclaration"&&e!=="TypeParameterDeclaration"&&(e==="Directive"||e==="TypeAlias"||e==="TSExportAssignment"||e.startsWith("Declare")||e.startsWith("TSDeclare")||e.endsWith("Statement")||e.endsWith("Declaration"))}var Go=new Set(["JsonRoot","ObjectExpression","ArrayExpression","StringLiteral","NumericLiteral","BooleanLiteral","NullLiteral","UnaryExpression","TemplateLiteral"]),zd=new Set(["OperationDefinition","FragmentDefinition","VariableDefinition","TypeExtensionDefinition","ObjectTypeDefinition","FieldDefinition","DirectiveDefinition","EnumTypeDefinition","EnumValueDefinition","InputValueDefinition","InputObjectTypeDefinition","SchemaDefinition","OperationTypeDefinition","InterfaceTypeDefinition","UnionTypeDefinition","ScalarTypeDefinition"]);function di(e,t,r){if(!t)return!1;switch(e.parser){case"flow":case"hermes":case"babel":case"babel-flow":case"babel-ts":case"typescript":case"acorn":case"espree":case"meriyah":case"oxc":case"oxc-ts":case"__babel_estree":return Kd(t.type,r?.type);case"json":case"json5":case"jsonc":case"json-stringify":return Go.has(t.type);case"graphql":return zd.has(t.kind);case"vue":return t.tag!=="root"}return!1}function Yd(e,t,r){let{rangeStart:u,rangeEnd:n,locStart:a,locEnd:i}=t;Gd.ok(n>u);let o=e.slice(u,n).search(/\S/u),s=o===-1;if(!s)for(u+=o;n>u&&!/\S/u.test(e[n-1]);--n);let c=pn(r,u,t,(d,p)=>di(t,d,p),[],"rangeStart"),l=s?c:pn(r,n,t,d=>di(t,d),[],"rangeEnd");if(!c||!l)return{rangeStart:0,rangeEnd:0};let D,f;if(Ud(t)){let d=qd(c,l);D=d,f=d}else({startNode:D,endNode:f}=Vd(c,l,t));return{rangeStart:Math.min(a(D),a(f)),rangeEnd:Math.max(i(D),i(f))}}var Uo="\uFEFF",hi=Symbol("cursor");async function qo(e,t,r=0){if(!e||e.trim().length===0)return{formatted:"",cursorOffset:-1,comments:[]};let{ast:u,text:n}=await wr(e,t);t.cursorOffset>=0&&(t={...t,...Wo(u,t)});let a=await cu(u,t,r);r>0&&(a=xp([er,a],r,t.tabWidth));let i=Nn(a,t);if(r>0){let s=i.formatted.trim();i.cursorNodeStart!==void 0&&(i.cursorNodeStart-=i.formatted.indexOf(s),i.cursorNodeStart<0&&(i.cursorNodeStart=0,i.cursorNodeText=i.cursorNodeText.trimStart()),i.cursorNodeStart+i.cursorNodeText.length>s.length&&(i.cursorNodeText=i.cursorNodeText.trimEnd())),i.formatted=s+Tn(t.endOfLine)}let o=t[Symbol.for("comments")];if(t.cursorOffset>=0){let s,c,l,D;if((t.cursorNode||t.nodeBeforeCursor||t.nodeAfterCursor)&&i.cursorNodeText)if(l=i.cursorNodeStart,D=i.cursorNodeText,t.cursorNode)s=t.locStart(t.cursorNode),c=n.slice(s,t.locEnd(t.cursorNode));else{if(!t.nodeBeforeCursor&&!t.nodeAfterCursor)throw new Error("Cursor location must contain at least one of cursorNode, nodeBeforeCursor, nodeAfterCursor");s=t.nodeBeforeCursor?t.locEnd(t.nodeBeforeCursor):0;let y=t.nodeAfterCursor?t.locStart(t.nodeAfterCursor):n.length;c=n.slice(s,y)}else s=0,c=n,l=0,D=i.formatted;let f=t.cursorOffset-s;if(c===D)return{formatted:i.formatted,cursorOffset:l+f,comments:o};let d=c.split("");d.splice(f,0,hi);let p=D.split(""),h=Zc(d,p),v=l;for(let y of h)if(y.removed){if(y.value.includes(hi))break}else v+=y.count;return{formatted:i.formatted,cursorOffset:v,comments:o}}return{formatted:i.formatted,cursorOffset:-1,comments:o}}async function Xd(e,t){let{ast:r,text:u}=await wr(e,t),{rangeStart:n,rangeEnd:a}=Yd(u,t,r),i=u.slice(n,a),o=Math.min(n,u.lastIndexOf(`
695
+ `,n)+1),s=u.slice(o,n).match(/^\s*/u)[0],c=Ln(s,t.tabWidth),l=await qo(i,{...t,rangeStart:0,rangeEnd:Number.POSITIVE_INFINITY,cursorOffset:t.cursorOffset>n&&t.cursorOffset<=a?t.cursorOffset-n:-1,endOfLine:"lf"},c),D=l.formatted.trimEnd(),{cursorOffset:f}=t;f>a?f+=D.length-i.length:l.cursorOffset>=0&&(f=l.cursorOffset+n);let d=u.slice(0,n)+D+u.slice(a);if(t.endOfLine!=="lf"){let p=Tn(t.endOfLine);f>=0&&p===`\r
696
+ `&&(f+=yo(d.slice(0,f),`
697
+ `)),d=_r(!1,d,`
698
+ `,p)}return{formatted:d,cursorOffset:f,comments:l.comments}}function qu(e,t,r){return typeof t!="number"||Number.isNaN(t)||t<0||t>e.length?r:t}function gi(e,t){let{cursorOffset:r,rangeStart:u,rangeEnd:n}=t;return r=qu(e,r,-1),u=qu(e,u,0),n=qu(e,n,e.length),{...t,cursorOffset:r,rangeStart:u,rangeEnd:n}}function Vo(e,t){let{cursorOffset:r,rangeStart:u,rangeEnd:n,endOfLine:a}=gi(e,t),i=e.charAt(0)===Uo;if(i&&(e=e.slice(1),r--,u--,n--),a==="auto"&&(a=dp(e)),e.includes("\r")){let o=s=>yo(e.slice(0,Math.max(s,0)),`\r
699
+ `);r-=o(r),u-=o(u),n-=o(n),e=hp(e)}return{hasBOM:i,text:e,options:gi(e,{...t,cursorOffset:r,rangeStart:u,rangeEnd:n,endOfLine:a})}}async function Fi(e,t){let r=await Gn(t);return!r.hasPragma||r.hasPragma(e)}async function Jd(e,t){var r;let u=await Gn(t);return(r=u.hasIgnorePragma)==null?void 0:r.call(u,e)}async function Ko(e,t){let{hasBOM:r,text:u,options:n}=Vo(e,await ar(t));if(n.rangeStart>=n.rangeEnd&&u!==""||n.requirePragma&&!await Fi(u,n)||n.checkIgnorePragma&&await Jd(u,n))return{formatted:e,cursorOffset:t.cursorOffset,comments:[]};let a;return n.rangeStart>0||n.rangeEnd<u.length?a=await Xd(u,n):(!n.requirePragma&&n.insertPragma&&n.printer.insertPragma&&!await Fi(u,n)&&(u=n.printer.insertPragma(u)),a=await qo(u,n)),r&&(a.formatted=Uo+a.formatted,a.cursorOffset>=0&&a.cursorOffset++),a}async function Qd(e,t,r){let{text:u,options:n}=Vo(e,await ar(t)),a=await wr(u,n);return r&&(r.preprocessForPrint&&(a.ast=await Ho(a.ast,n)),r.massage&&(a.ast=Md(a.ast,n))),a}async function Zd(e,t){t=await ar(t);let r=await cu(e,t);return Nn(r,t)}async function eh(e,t){let r=Pp(e),{formatted:u}=await Ko(r,{...t,parser:"__js_expression"});return u}async function th(e,t){t=await ar(t);let{ast:r}=await wr(e,t);return t.cursorOffset>=0&&(t={...t,...Wo(r,t)}),cu(r,t)}async function rh(e,t){return Nn(e,await ar(t))}var zo={};vr(zo,{CATEGORY_CONFIG:()=>uh,CATEGORY_EDITOR:()=>nh,CATEGORY_FORMAT:()=>ah,CATEGORY_GLOBAL:()=>sh,CATEGORY_OTHER:()=>ih,CATEGORY_OUTPUT:()=>oh,CATEGORY_SPECIAL:()=>lh});var uh="Config",nh="Editor",ah="Format",ih="Other",oh="Output",sh="Global",lh="Special",Yo={};vr(Yo,{languages:()=>Ph,options:()=>xh,parsers:()=>Oh,printers:()=>Th});var ch=[{name:"CSS",type:"markup",extensions:[".css",".wxss"],tmScope:"source.css",aceMode:"css",codemirrorMode:"css",codemirrorMimeType:"text/css",parsers:["css"],vscodeLanguageIds:["css"],linguistLanguageId:50},{name:"PostCSS",type:"markup",extensions:[".pcss",".postcss"],tmScope:"source.postcss",aceMode:"text",group:"CSS",parsers:["css"],vscodeLanguageIds:["postcss"],linguistLanguageId:262764437},{name:"Less",type:"markup",extensions:[".less"],tmScope:"source.css.less",aceMode:"less",aliases:["less-css"],codemirrorMode:"css",codemirrorMimeType:"text/css",parsers:["less"],vscodeLanguageIds:["less"],linguistLanguageId:198},{name:"SCSS",type:"markup",extensions:[".scss"],tmScope:"source.css.scss",aceMode:"scss",codemirrorMode:"css",codemirrorMimeType:"text/x-scss",parsers:["scss"],vscodeLanguageIds:["scss"],linguistLanguageId:329}],Pe={bracketSpacing:{category:"Common",type:"boolean",default:!0,description:"Print spaces between brackets.",oppositeDescription:"Do not print spaces between brackets."},objectWrap:{category:"Common",type:"choice",default:"preserve",description:"How to wrap object literals.",choices:[{value:"preserve",description:"Keep as multi-line, if there is a newline between the opening brace and first property."},{value:"collapse",description:"Fit to a single line when possible."}]},singleQuote:{category:"Common",type:"boolean",default:!1,description:"Use single quotes instead of double quotes."},proseWrap:{category:"Common",type:"choice",default:"preserve",description:"How to wrap prose.",choices:[{value:"always",description:"Wrap prose if it exceeds the print width."},{value:"never",description:"Do not wrap prose."},{value:"preserve",description:"Wrap prose as-is."}]},bracketSameLine:{category:"Common",type:"boolean",default:!1,description:"Put > of opening tags on the last line instead of on a new line."},singleAttributePerLine:{category:"Common",type:"boolean",default:!1,description:"Enforce single attribute per line in HTML, Vue and JSX."}},Dh={singleQuote:Pe.singleQuote},fh=Dh,ph=[{name:"GraphQL",type:"data",extensions:[".graphql",".gql",".graphqls"],tmScope:"source.graphql",aceMode:"text",parsers:["graphql"],vscodeLanguageIds:["graphql"],linguistLanguageId:139}],dh={bracketSpacing:Pe.bracketSpacing},hh=dh,gh=[{name:"Handlebars",type:"markup",extensions:[".handlebars",".hbs"],tmScope:"text.html.handlebars",aceMode:"handlebars",aliases:["hbs","htmlbars"],parsers:["glimmer"],vscodeLanguageIds:["handlebars"],linguistLanguageId:155}],Fh=[{name:"Angular",type:"markup",extensions:[".component.html"],tmScope:"text.html.basic",aceMode:"html",aliases:["xhtml"],codemirrorMode:"htmlmixed",codemirrorMimeType:"text/html",parsers:["angular"],vscodeLanguageIds:["html"],filenames:[],linguistLanguageId:146},{name:"HTML",type:"markup",extensions:[".html",".hta",".htm",".html.hl",".inc",".xht",".xhtml"],tmScope:"text.html.basic",aceMode:"html",aliases:["xhtml"],codemirrorMode:"htmlmixed",codemirrorMimeType:"text/html",parsers:["html"],vscodeLanguageIds:["html"],linguistLanguageId:146},{name:"Lightning Web Components",type:"markup",extensions:[],tmScope:"text.html.basic",aceMode:"html",aliases:["xhtml"],codemirrorMode:"htmlmixed",codemirrorMimeType:"text/html",parsers:["lwc"],vscodeLanguageIds:["html"],filenames:[],linguistLanguageId:146},{name:"MJML",type:"markup",extensions:[".mjml"],tmScope:"text.mjml.basic",aceMode:"html",aliases:["MJML","mjml"],codemirrorMode:"htmlmixed",codemirrorMimeType:"text/html",parsers:["mjml"],filenames:[],vscodeLanguageIds:["mjml"],linguistLanguageId:146},{name:"Vue",type:"markup",extensions:[".vue"],tmScope:"source.vue",aceMode:"html",parsers:["vue"],vscodeLanguageIds:["vue"],linguistLanguageId:391}],mi="HTML",mh={bracketSameLine:Pe.bracketSameLine,htmlWhitespaceSensitivity:{category:mi,type:"choice",default:"css",description:"How to handle whitespaces in HTML.",choices:[{value:"css",description:"Respect the default value of CSS display property."},{value:"strict",description:"Whitespaces are considered sensitive."},{value:"ignore",description:"Whitespaces are considered insensitive."}]},singleAttributePerLine:Pe.singleAttributePerLine,vueIndentScriptAndStyle:{category:mi,type:"boolean",default:!1,description:"Indent script and style tags in Vue files."}},Eh=mh,Ch=[{name:"JavaScript",type:"programming",extensions:[".js","._js",".bones",".cjs",".es",".es6",".gs",".jake",".javascript",".jsb",".jscad",".jsfl",".jslib",".jsm",".jspre",".jss",".mjs",".njs",".pac",".sjs",".ssjs",".xsjs",".xsjslib",".start.frag",".end.frag",".wxs"],tmScope:"source.js",aceMode:"javascript",aliases:["js","node"],codemirrorMode:"javascript",codemirrorMimeType:"text/javascript",interpreters:["chakra","d8","gjs","js","node","nodejs","qjs","rhino","v8","v8-shell","zx"],filenames:["Jakefile","start.frag","end.frag"],parsers:["babel","acorn","espree","meriyah","babel-flow","babel-ts","flow","typescript"],vscodeLanguageIds:["javascript","mongo"],linguistLanguageId:183},{name:"Flow",type:"programming",extensions:[".js.flow"],tmScope:"source.js",aceMode:"javascript",aliases:[],codemirrorMode:"javascript",codemirrorMimeType:"text/javascript",interpreters:["chakra","d8","gjs","js","node","nodejs","qjs","rhino","v8","v8-shell"],filenames:[],parsers:["flow","babel-flow"],vscodeLanguageIds:["javascript"],linguistLanguageId:183},{name:"JSX",type:"programming",extensions:[".jsx"],tmScope:"source.js.jsx",aceMode:"javascript",aliases:void 0,codemirrorMode:"jsx",codemirrorMimeType:"text/jsx",interpreters:void 0,filenames:void 0,parsers:["babel","babel-flow","babel-ts","flow","typescript","espree","meriyah"],vscodeLanguageIds:["javascriptreact"],group:"JavaScript",linguistLanguageId:183},{name:"TypeScript",type:"programming",extensions:[".ts",".cts",".mts"],tmScope:"source.ts",aceMode:"typescript",aliases:["ts"],codemirrorMode:"javascript",codemirrorMimeType:"application/typescript",interpreters:["bun","deno","ts-node","tsx"],parsers:["typescript","babel-ts"],vscodeLanguageIds:["typescript"],linguistLanguageId:378},{name:"TSX",type:"programming",extensions:[".tsx"],tmScope:"source.tsx",aceMode:"javascript",codemirrorMode:"jsx",codemirrorMimeType:"text/jsx",group:"TypeScript",parsers:["typescript","babel-ts"],vscodeLanguageIds:["typescriptreact"],linguistLanguageId:94901924}],Ft="JavaScript",vh={arrowParens:{category:Ft,type:"choice",default:"always",description:"Include parentheses around a sole arrow function parameter.",choices:[{value:"always",description:"Always include parens. Example: `(x) => x`"},{value:"avoid",description:"Omit parens when possible. Example: `x => x`"}]},bracketSameLine:Pe.bracketSameLine,objectWrap:Pe.objectWrap,bracketSpacing:Pe.bracketSpacing,jsxBracketSameLine:{category:Ft,type:"boolean",description:"Put > on the last line instead of at a new line.",deprecated:"2.4.0"},semi:{category:Ft,type:"boolean",default:!0,description:"Print semicolons.",oppositeDescription:"Do not print semicolons, except at the beginning of lines which may need them."},experimentalOperatorPosition:{category:Ft,type:"choice",default:"end",description:"Where to print operators when binary expressions wrap lines.",choices:[{value:"start",description:"Print operators at the start of new lines."},{value:"end",description:"Print operators at the end of previous lines."}]},experimentalTernaries:{category:Ft,type:"boolean",default:!1,description:"Use curious ternaries, with the question mark after the condition.",oppositeDescription:"Default behavior of ternaries; keep question marks on the same line as the consequent."},singleQuote:Pe.singleQuote,jsxSingleQuote:{category:Ft,type:"boolean",default:!1,description:"Use single quotes in JSX."},quoteProps:{category:Ft,type:"choice",default:"as-needed",description:"Change when properties in objects are quoted.",choices:[{value:"as-needed",description:"Only add quotes around object properties where required."},{value:"consistent",description:"If at least one property in an object requires quotes, quote all properties."},{value:"preserve",description:"Respect the input use of quotes in object properties."}]},trailingComma:{category:Ft,type:"choice",default:"all",description:"Print trailing commas wherever possible when multi-line.",choices:[{value:"all",description:"Trailing commas wherever possible (including function arguments)."},{value:"es5",description:"Trailing commas where valid in ES5 (objects, arrays, etc.)"},{value:"none",description:"No trailing commas."}]},singleAttributePerLine:Pe.singleAttributePerLine},Ah=vh,yh=[{name:"JSON.stringify",type:"data",extensions:[".importmap"],tmScope:"source.json",aceMode:"json",aliases:["geojson","jsonl","sarif","topojson"],codemirrorMode:"javascript",codemirrorMimeType:"application/json",filenames:["package.json","package-lock.json","composer.json"],parsers:["json-stringify"],vscodeLanguageIds:["json"],linguistLanguageId:174},{name:"JSON",type:"data",extensions:[".json",".4DForm",".4DProject",".avsc",".geojson",".gltf",".har",".ice",".JSON-tmLanguage",".json.example",".mcmeta",".sarif",".tact",".tfstate",".tfstate.backup",".topojson",".webapp",".webmanifest",".yy",".yyp"],tmScope:"source.json",aceMode:"json",aliases:["geojson","jsonl","sarif","topojson"],codemirrorMode:"javascript",codemirrorMimeType:"application/json",filenames:[".all-contributorsrc",".arcconfig",".auto-changelog",".c8rc",".htmlhintrc",".imgbotconfig",".nycrc",".tern-config",".tern-project",".watchmanconfig",".babelrc",".jscsrc",".jshintrc",".jslintrc",".swcrc"],parsers:["json"],vscodeLanguageIds:["json"],linguistLanguageId:174},{name:"JSON with Comments",type:"data",extensions:[".jsonc",".code-snippets",".code-workspace",".sublime-build",".sublime-color-scheme",".sublime-commands",".sublime-completions",".sublime-keymap",".sublime-macro",".sublime-menu",".sublime-mousemap",".sublime-project",".sublime-settings",".sublime-theme",".sublime-workspace",".sublime_metrics",".sublime_session"],tmScope:"source.json.comments",aceMode:"javascript",aliases:["jsonc"],codemirrorMode:"javascript",codemirrorMimeType:"text/javascript",group:"JSON",filenames:[],parsers:["jsonc"],vscodeLanguageIds:["jsonc"],linguistLanguageId:423},{name:"JSON5",type:"data",extensions:[".json5"],tmScope:"source.js",aceMode:"javascript",codemirrorMode:"javascript",codemirrorMimeType:"application/json",parsers:["json5"],vscodeLanguageIds:["json5"],linguistLanguageId:175}],_h=[{name:"Markdown",type:"prose",extensions:[".md",".livemd",".markdown",".mdown",".mdwn",".mkd",".mkdn",".mkdown",".ronn",".scd",".workbook"],tmScope:"text.md",aceMode:"markdown",aliases:["md","pandoc"],codemirrorMode:"gfm",codemirrorMimeType:"text/x-gfm",filenames:["contents.lr","README"],wrap:!0,parsers:["markdown"],vscodeLanguageIds:["markdown"],linguistLanguageId:222},{name:"MDX",type:"prose",extensions:[".mdx"],tmScope:"text.md",aceMode:"markdown",aliases:["md","pandoc"],codemirrorMode:"gfm",codemirrorMimeType:"text/x-gfm",filenames:[],wrap:!0,parsers:["mdx"],vscodeLanguageIds:["mdx"],linguistLanguageId:222}],bh={proseWrap:Pe.proseWrap,singleQuote:Pe.singleQuote},Bh=bh,wh=[{name:"YAML",type:"data",extensions:[".yml",".mir",".reek",".rviz",".sublime-syntax",".syntax",".yaml",".yaml-tmlanguage",".yaml.sed",".yml.mysql"],tmScope:"source.yaml",aceMode:"yaml",aliases:["yml"],codemirrorMode:"yaml",codemirrorMimeType:"text/x-yaml",filenames:[".clang-format",".clang-tidy",".clangd",".gemrc","CITATION.cff","glide.lock","pixi.lock",".prettierrc",".stylelintrc",".lintstagedrc"],parsers:["yaml"],vscodeLanguageIds:["yaml","ansible","dockercompose","github-actions-workflow","home-assistant"],linguistLanguageId:407}],Sh={bracketSpacing:Pe.bracketSpacing,singleQuote:Pe.singleQuote,proseWrap:Pe.proseWrap},kh=Sh;function Rh(e){let t=Object.create(null),r=Object.create(null);for(let{importPlugin:u,parsers:n=[],printers:a=[]}of e){let i=async()=>{let o=await u();return Object.assign(t,o.parsers),Object.assign(r,o.printers),o};for(let o of n)t[o]=async()=>(await i()).parsers[o];for(let o of a)r[o]=async()=>(await i()).printers[o]}return{parsers:t,printers:r}}var xh={...fh,...hh,...Eh,...Ah,...Bh,...kh},Ph=[...ch,...ph,...gh,...Fh,...Ch,...yh,..._h,...wh],{parsers:Oh,printers:Th}=Rh([{importPlugin:()=>import("./acorn-EYV4PDMH.js"),parsers:["acorn","espree"]},{importPlugin:()=>import("./angular-TC473YFC.js"),parsers:["__ng_action","__ng_binding","__ng_interpolation","__ng_directive"]},{importPlugin:()=>import("./babel-LEKTDS7L.js"),parsers:["babel","babel-flow","babel-ts","__js_expression","__ts_expression","__vue_expression","__vue_ts_expression","__vue_event_binding","__vue_ts_event_binding","__babel_estree","json","json5","jsonc","json-stringify"]},{importPlugin:()=>import("./estree-PSOZDKNG.js"),printers:["estree","estree-json"]},{importPlugin:()=>import("./flow-SLL5ZRPZ.js"),parsers:["flow"]},{importPlugin:()=>import("./glimmer-N45MS77V.js"),parsers:["glimmer"],printers:["glimmer"]},{importPlugin:()=>import("./graphql-QTATSPDP.js"),parsers:["graphql"],printers:["graphql"]},{importPlugin:()=>import("./html-KSAWNJSD.js"),parsers:["html","angular","vue","lwc","mjml"],printers:["html"]},{importPlugin:()=>import("./markdown-NMF2LIIF.js"),parsers:["markdown","mdx","remark"],printers:["mdast"]},{importPlugin:()=>import("./meriyah-GGIQ265B.js"),parsers:["meriyah"]},{importPlugin:()=>import("./postcss-LEYOLHZE.js"),parsers:["css","less","scss"],printers:["postcss"]},{importPlugin:()=>import("./typescript-UFTL2RQ6.js"),parsers:["typescript"]},{importPlugin:()=>import("./yaml-FHI3PI2W.js"),parsers:["yaml"],printers:["yaml"]}]);function Ih(){return[Yo]}var Xo=Ih;function Lh(e,t){return Co(e,Nh.join(t,"noop.js"))}var jh=Lh;async function $h(e,t){if(nu(e))return import(e);if(Ei.isAbsolute(e))return import(Ci(e).href);try{return await import(Ci(Ei.resolve(e)).href)}catch{return jh(e,t)}}async function Mh(e,t){let r=await $h(e,t);return{name:e,...r.default??r}}var zr=new Map;function Hh(e){if(typeof e!="string"&&!(e instanceof URL))return e;let t=process.cwd(),r=JSON.stringify({name:e,cwd:t});return zr.has(r)||zr.set(r,Mh(e,t)),zr.get(r)}function Wh(){zr.clear()}function Gh(e=[]){return Promise.all(e.map(t=>Hh(t)))}var Jo=Gh,Uh=We(Vc(),1),Vh=Yr.sep==="\\"?e=>_r(!1,e,"\\","/"):e=>e;function Kh(e,t){let r=au(t),u=nu(e)?qh.fileURLToPath(e):Yr.resolve(e);return Yr.relative(r?Yr.dirname(r):process.cwd(),u)}async function zh(e,t){let r="";if(e&&(r+=await yr(e)??""),t||(r+=`
700
+ node_modules`),!r)return;let u=(0,Uh.default)({allowRelativePaths:!0}).add(r);return n=>u.checkIgnore(Vh(Kh(n,e))).ignored}async function Qo(e,t){e.length===0&&!t&&(e=[void 0]);let r=(await Promise.all(e.map(u=>zh(u,t)))).filter(Boolean);return u=>r.some(n=>n(u))}async function Yh(e,t){let{ignorePath:r,withNodeModules:u}=t;return(await Qo(r,u))(e)}function Xh(e,t){return t=new Set(t),Object.fromEntries(Object.entries(e).filter(([r])=>!t.has(r)))}var Jh=Xh;async function Qh(e,t={}){if(typeof e!="string"&&!(e instanceof URL))throw new TypeError(`expect \`file\` to be a string or URL, got \`${typeof e}\``);let{ignorePath:r,withNodeModules:u}=t;Array.isArray(r)||(r=[r]);let n=await Yh(e,{ignorePath:r,withNodeModules:u}),a;return n||(a=t.parser??await Zh(e,t)),{ignored:n,inferredParser:a??null}}async function Zh(e,t){let r;if(t.resolveConfig!==!1&&(r=await Ao(e,{editorconfig:!1})),r?.parser)return r.parser;let u=t.plugins??r?.plugins??[];return u=(await Promise.all([Xo(),Jo(u)])).flat(),Wn({plugins:u},{physicalFile:e})}var eg=Qh,tg="3.6.2",Zo={};vr(Zo,{addDanglingComment:()=>$t,addLeadingComment:()=>Er,addTrailingComment:()=>Cr,getAlignmentSize:()=>Ln,getIndentSize:()=>og,getMaxContinuousCount:()=>cg,getNextNonSpaceNonCommentCharacter:()=>fg,getNextNonSpaceNonCommentCharacterIndex:()=>Ag,getPreferredQuote:()=>dg,getStringWidth:()=>In,hasNewline:()=>Ct,hasNewlineInRange:()=>gg,hasSpaces:()=>mg,isNextLineEmpty:()=>Bg,isNextLineEmptyAfterIndex:()=>Kn,isPreviousLineEmpty:()=>_g,makeString:()=>Cg,skip:()=>br,skipEverythingButNewLine:()=>ko,skipInlineComment:()=>Un,skipNewline:()=>Gt,skipSpaces:()=>yt,skipToLineEnd:()=>So,skipTrailingComment:()=>qn,skipWhitespace:()=>zp});function rg(e,t){if(t===!1)return!1;if(e.charAt(t)==="/"&&e.charAt(t+1)==="*"){for(let r=t+2;r<e.length;++r)if(e.charAt(r)==="*"&&e.charAt(r+1)==="/")return r+2}return t}var Un=rg;function ug(e,t){return t===!1?!1:e.charAt(t)==="/"&&e.charAt(t+1)==="/"?ko(e,t):t}var qn=ug;function ng(e,t){let r=null,u=t;for(;u!==r;)r=u,u=yt(e,u),u=Un(e,u),u=qn(e,u),u=Gt(e,u);return u}var Vn=ng;function ag(e,t){let r=null,u=t;for(;u!==r;)r=u,u=So(e,u),u=Un(e,u),u=yt(e,u);return u=qn(e,u),u=Gt(e,u),u!==!1&&Ct(e,u)}var Kn=ag;function ig(e,t){let r=e.lastIndexOf(`
701
+ `);return r===-1?0:Ln(e.slice(r+1).match(/^[\t ]*/u)[0],t)}var og=ig;function sg(e){if(typeof e!="string")throw new TypeError("Expected a string");return e.replace(/[|\\{}()[\]^$+*?.]/g,"\\$&").replace(/-/g,"\\x2d")}function lg(e,t){let r=e.match(new RegExp(`(${sg(t)})+`,"gu"));return r===null?0:r.reduce((u,n)=>Math.max(u,n.length/t.length),0)}var cg=lg;function Dg(e,t){let r=Vn(e,t);return r===!1?"":e.charAt(r)}var fg=Dg,Lr="'",vi='"';function pg(e,t){let r=t===!0||t===Lr?Lr:vi,u=r===Lr?vi:Lr,n=0,a=0;for(let i of e)i===r?n++:i===u&&a++;return n>a?u:r}var dg=pg;function hg(e,t,r){for(let u=t;u<r;++u)if(e.charAt(u)===`
702
+ `)return!0;return!1}var gg=hg;function Fg(e,t,r={}){return yt(e,r.backwards?t-1:t,r)!==t}var mg=Fg;function Eg(e,t,r){let u=t==='"'?"'":'"',a=_r(!1,e,/\\(.)|(["'])/gsu,(i,o,s)=>o===u?o:s===t?"\\"+s:s||(r&&/^[^\n\r"'0-7\\bfnrt-vx\u2028\u2029]$/u.test(o)?o:"\\"+o));return t+a+t}var Cg=Eg;function vg(e,t,r){return Vn(e,r(t))}function Ag(e,t){return arguments.length===2||typeof t=="number"?Vn(e,t):vg(...arguments)}function yg(e,t,r){return Mn(e,r(t))}function _g(e,t){return arguments.length===2||typeof t=="number"?Mn(e,t):yg(...arguments)}function bg(e,t,r){return Kn(e,r(t))}function Bg(e,t){return arguments.length===2||typeof t=="number"?Kn(e,t):bg(...arguments)}function Et(e,t=1){return async(...r)=>{let u=r[t]??{},{plugins:n=[]}=u;return r[t]={...u,plugins:(await Promise.all([Xo(),Jo(n)])).flat()},e(...r)}}var es=Et(Ko);async function Du(e,t){let{formatted:r}=await es(e,{...t,cursorOffset:-1});return r}async function wg(e,t){return await Du(e,t)===e}async function Sg(){op(),Wh()}var kg=Et(Hn,0),Rg=Et((e,t)=>Wn(t,{physicalFile:e})),xg={errors:Gi,optionCategories:zo,createIsIgnoredFunction:Qo,formatOptionsHiddenDefaults:fn,normalizeOptions:Lo,getSupportInfoWithoutPlugins:Hn,normalizeOptionSettings:Io,inferParser:(e,t)=>Promise.resolve(t?.parser??Rg(e,t)),vnopts:{ChoiceSchema:Wi,apiDescriptor:Mt},fastGlob:r0.default,createTwoFilesPatch:e0,picocolors:u0.default,leven:Ni,utils:{omit:Jh,createMockable:Ui}},Pg={parse:Et(Qd),formatAST:Et(Zd),formatDoc:Et(eh),printToDoc:Et(th),printDocToString:Et(rh),mockable:qi};var zn=e=>Du(e,{singleQuote:!0,jsxSingleQuote:!0,tabWidth:2,semi:!0,parser:"typescript"});import{converter as Yn,formatHsl as Tg,formatRgb as Ig}from"culori";var Ng=Yn("rgb"),Lg=Yn("hsl"),jg=Yn("oklch"),Xn=new Intl.NumberFormat("en-US",{style:"percent"}).format;function ts(e){let t=Lg(e),r=Tg(t),[u,n,a]=r.replace("hsla(","").replace("hsl(","").replace(")","").split(", ");return t?.alpha?`${u} ${n} ${a} / ${Xn(t.alpha)}`:`${u} ${n} ${a}`}function rs(e){let t=Ng(e),r=Ig(t),[u,n,a]=r.replace("rgba(","").replace("rgb(","").replace(")","").split(", ");return t?.alpha?`${u} ${n} ${a} / ${Xn(t.alpha)}`:`${u} ${n} ${a}`}function us(e){let t=jg(e);if(!t)return e;let r=t.l!==void 0?(t.l*100).toFixed(2)+"%":"0%",u=t.c!==void 0?t.c.toFixed(4):"0",n=t.h!==void 0?t.h.toFixed(2):"0";return t.alpha!==void 0&&t.alpha!==1?`oklch(${r} ${u} ${n} / ${Xn(t.alpha)})`:`oklch(${r} ${u} ${n})`}var is=["tailwindcss@latest","@tailwindcss/postcss@latest"],Ug=ns.object({cwd:ns.string()}),ss=new $g().name("tailwind").description("Initialize AlignUI tailwind tokens for your project.").option("-c, --cwd <cwd>","the working directory. defaults to the current directory.",process.cwd()).action(async e=>{try{Wg("AlignUI Tailwind Setup");let t=Ug.parse(e),r=du.resolve(t.cwd);os(r)||(console.error(`The path ${r} does not exist. Please try again.`),process.exit(1)),sa(r);let u=await ia(r);if(u){let n=await qg(r,u);await Vg(r,n)}Gg("Project initialization completed!")}catch(t){console.log(t)}});async function qg(e,t){let r=await pu({message:"Which color would you like to use as primary color?",options:[{value:"blue",label:"Blue"},{value:"purple",label:"Purple"},{value:"orange",label:"Orange"},{value:"sky",label:"Sky"}]});ir(r)&&process.exit(0);let u=await pu({message:"Which color would you like to use as neutral color?",options:[{value:"gray",label:"Gray"},{value:"slate",label:"Slate"}]});ir(u)&&process.exit(0);let n=await pu({message:"Which color format would you like to use?",options:[{value:"oklch",label:"oklch (Recommended for Tailwind v4.1)"},{value:"hex",label:"hex"},{value:"rgb",label:"rgb"},{value:"hsl",label:"hsl"}]});ir(n)&&process.exit(0);let a=await Jn({message:"Use a custom prefix for AlignUI classes? (Leave blank for none)"});ir(a)&&process.exit(0);let i=await pu({message:"Create tailwind.config file? (Optional in v4.1 - CSS-first configuration)",options:[{value:!1,label:"No - Use CSS-only configuration (Recommended for v4.1)"},{value:!0,label:"Yes - Create minimal config file"}]});ir(i)&&process.exit(0);let o="";if(i){let l=await Jn({message:"Where should we create your tailwind config file?",initialValue:t?.tailwind.config??ua});ir(l)&&process.exit(0),o=l}let s=await Jn({message:"Where is your global CSS file?",initialValue:t?.tailwind.css??ra}),c=Fu.parse({tailwind:{config:o,css:s,primaryColor:r,neutralColor:u,colorFormat:n,prefix:a}});return await kr(e,c)}function or(e,t){return t?Object.fromEntries(Object.entries(e).map(([r,u])=>[`${t}${r}`,u])):e}async function Vg(e,t){let r=as();r.start("Initializing project...");try{for(let[s,c]of Object.entries(t.resolvedPaths)){if(!c)continue;let l=du.extname(c)?du.dirname(c):c;os(l)||await fu.mkdir(l,{recursive:!0})}let a=ea;if(await fu.writeFile(t.resolvedPaths.postcssConfig,await zn(a),"utf8"),t.resolvedPaths.tailwindConfig){let s=du.extname(t.resolvedPaths.tailwindConfig)===".ts"?Zn:Qn;await fu.writeFile(t.resolvedPaths.tailwindConfig,await zn(s),"utf8")}let i=Object.fromEntries(Object.entries(la).map(([s,c])=>[s,Object.fromEntries(Object.entries(c).map(([l,D])=>t.tailwind.colorFormat==="hsl"?[l,ts(D)]:t.tailwind.colorFormat==="rgb"?[l,rs(D)]:t.tailwind.colorFormat==="oklch"?[l,us(D)]:[l,D]))])),o=t.tailwind.prefix?{texts:or(Eu,t.tailwind.prefix),shadows:or(Cu,t.tailwind.prefix),blockShadows:or(vu,t.tailwind.prefix),darkBlockShadows:or(Au,t.tailwind.prefix),borderRadii:or(mu,t.tailwind.prefix),animations:or(yu,t.tailwind.prefix)}:{texts:Eu,shadows:Cu,blockShadows:vu,darkBlockShadows:Au,borderRadii:mu,animations:yu};await fu.writeFile(t.resolvedPaths.tailwindCss,Hg(ta)({config:t,primaryColor:t.tailwind.primaryColor,neutralColor:t.tailwind.neutralColor,...i,texts:JSON.stringify(o.texts,null,2),shadows:JSON.stringify(o.shadows,null,2),blockShadows:JSON.stringify(o.blockShadows,null,2),darkBlockShadows:JSON.stringify(o.darkBlockShadows,null,2),borderRadii:JSON.stringify(o.borderRadii,null,2),animations:JSON.stringify(o.animations,null,2)}),"utf8"),r.stop()}catch(a){throw r.stop("Initialization failed."),a}let u=await na(e),n=as();n.start("Installing dependencies..."),await Mg(u,[u==="npm"?"i":"add",u==="npm"?"--save-dev":"-D",...is],{cwd:e}),n.stop(`Dependencies installed!
703
+
704
+ - ${is.join(`
705
+ - `)}`)}import{Command as Yg}from"commander";import Kg from"path";import zg from"fs-extra";function ls(){let e=Kg.join("package.json");return zg.readJSONSync(e)}process.on("SIGINT",()=>process.exit(0));process.on("SIGTERM",()=>process.exit(0));async function Xg(){let e=await ls(),t=new Yg().name("alignui-cli").description(e.description||"").version(e.version||"0.0.1","-v, --version","display the version number");t.addCommand(ss),t.parse()}Xg();
691
706
  //# sourceMappingURL=index.js.map