@takeshape/cli 12.2.1 → 12.2.2
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.cjs +1626 -1626
- package/package.json +6 -6
package/dist/index.cjs
CHANGED
|
@@ -71386,7 +71386,7 @@ var require_arrayReduce = __commonJS({
|
|
|
71386
71386
|
});
|
|
71387
71387
|
|
|
71388
71388
|
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_basePropertyOf.js
|
|
71389
|
-
var
|
|
71389
|
+
var require_basePropertyOf = __commonJS({
|
|
71390
71390
|
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_basePropertyOf.js"(exports2, module2) {
|
|
71391
71391
|
function basePropertyOf(object2) {
|
|
71392
71392
|
return function(key) {
|
|
@@ -71400,7 +71400,7 @@ var require_basePropertyOf2 = __commonJS({
|
|
|
71400
71400
|
// ../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_deburrLetter.js
|
|
71401
71401
|
var require_deburrLetter = __commonJS({
|
|
71402
71402
|
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_deburrLetter.js"(exports2, module2) {
|
|
71403
|
-
var basePropertyOf =
|
|
71403
|
+
var basePropertyOf = require_basePropertyOf();
|
|
71404
71404
|
var deburredLetters = {
|
|
71405
71405
|
// Latin-1 Supplement block.
|
|
71406
71406
|
"\xC0": "A",
|
|
@@ -204230,7 +204230,7 @@ var import_meow = __toESM(require_meow(), 1);
|
|
|
204230
204230
|
// package.json
|
|
204231
204231
|
var package_default = {
|
|
204232
204232
|
name: "@takeshape/cli",
|
|
204233
|
-
version: "12.2.
|
|
204233
|
+
version: "12.2.2",
|
|
204234
204234
|
description: "TakeShape CLI",
|
|
204235
204235
|
homepage: "https://www.takeshape.io",
|
|
204236
204236
|
type: "module",
|
|
@@ -206506,287 +206506,1630 @@ function getImageUrl(key, query, options2 = {}) {
|
|
|
206506
206506
|
return path17 ? `${baseUrl}/${escapePath(path17)}${formatQuery(query)}` : "";
|
|
206507
206507
|
}
|
|
206508
206508
|
|
|
206509
|
-
//
|
|
206510
|
-
var
|
|
206511
|
-
var
|
|
206512
|
-
|
|
206513
|
-
|
|
206514
|
-
|
|
206515
|
-
|
|
206516
|
-
|
|
206517
|
-
|
|
206518
|
-
|
|
206519
|
-
var
|
|
206520
|
-
|
|
206521
|
-
|
|
206522
|
-
|
|
206523
|
-
|
|
206524
|
-
|
|
206525
|
-
|
|
206509
|
+
// ../../node_modules/.pnpm/browser-or-node@3.0.0/node_modules/browser-or-node/dist/index.mjs
|
|
206510
|
+
var isBrowser = typeof window !== "undefined" && typeof window.document !== "undefined";
|
|
206511
|
+
var isNode2 = (
|
|
206512
|
+
// @ts-expect-error
|
|
206513
|
+
typeof process !== "undefined" && // @ts-expect-error
|
|
206514
|
+
process.versions != null && // @ts-expect-error
|
|
206515
|
+
process.versions.node != null
|
|
206516
|
+
);
|
|
206517
|
+
var isWebWorker = typeof self === "object" && self.constructor && self.constructor.name === "DedicatedWorkerGlobalScope";
|
|
206518
|
+
var isJsDom = typeof window !== "undefined" && window.name === "nodejs" || typeof navigator !== "undefined" && "userAgent" in navigator && typeof navigator.userAgent === "string" && (navigator.userAgent.includes("Node.js") || navigator.userAgent.includes("jsdom"));
|
|
206519
|
+
var isDeno = (
|
|
206520
|
+
// @ts-expect-error
|
|
206521
|
+
typeof Deno !== "undefined" && // @ts-expect-error
|
|
206522
|
+
typeof Deno.version !== "undefined" && // @ts-expect-error
|
|
206523
|
+
typeof Deno.version.deno !== "undefined"
|
|
206524
|
+
);
|
|
206525
|
+
var isBun = typeof process !== "undefined" && process.versions != null && process.versions.bun != null;
|
|
206526
|
+
|
|
206527
|
+
// ../util/dist/common/memoize.js
|
|
206528
|
+
var import_memoize = __toESM(require_memoize(), 1);
|
|
206529
|
+
function weakMemoize(fn) {
|
|
206530
|
+
const memoized = (0, import_memoize.default)(fn);
|
|
206531
|
+
memoized.cache = /* @__PURE__ */ new WeakMap();
|
|
206532
|
+
return memoized;
|
|
206533
|
+
}
|
|
206534
|
+
|
|
206535
|
+
// ../../node_modules/.pnpm/mime@4.1.0/node_modules/mime/dist/types/other.js
|
|
206536
|
+
var types = {
|
|
206537
|
+
"application/prs.cww": ["cww"],
|
|
206538
|
+
"application/prs.xsf+xml": ["xsf"],
|
|
206539
|
+
"application/vnd.1000minds.decision-model+xml": ["1km"],
|
|
206540
|
+
"application/vnd.3gpp.pic-bw-large": ["plb"],
|
|
206541
|
+
"application/vnd.3gpp.pic-bw-small": ["psb"],
|
|
206542
|
+
"application/vnd.3gpp.pic-bw-var": ["pvb"],
|
|
206543
|
+
"application/vnd.3gpp2.tcap": ["tcap"],
|
|
206544
|
+
"application/vnd.3m.post-it-notes": ["pwn"],
|
|
206545
|
+
"application/vnd.accpac.simply.aso": ["aso"],
|
|
206546
|
+
"application/vnd.accpac.simply.imp": ["imp"],
|
|
206547
|
+
"application/vnd.acucobol": ["acu"],
|
|
206548
|
+
"application/vnd.acucorp": ["atc", "acutc"],
|
|
206549
|
+
"application/vnd.adobe.air-application-installer-package+zip": ["air"],
|
|
206550
|
+
"application/vnd.adobe.formscentral.fcdt": ["fcdt"],
|
|
206551
|
+
"application/vnd.adobe.fxp": ["fxp", "fxpl"],
|
|
206552
|
+
"application/vnd.adobe.xdp+xml": ["xdp"],
|
|
206553
|
+
"application/vnd.adobe.xfdf": ["*xfdf"],
|
|
206554
|
+
"application/vnd.age": ["age"],
|
|
206555
|
+
"application/vnd.ahead.space": ["ahead"],
|
|
206556
|
+
"application/vnd.airzip.filesecure.azf": ["azf"],
|
|
206557
|
+
"application/vnd.airzip.filesecure.azs": ["azs"],
|
|
206558
|
+
"application/vnd.amazon.ebook": ["azw"],
|
|
206559
|
+
"application/vnd.americandynamics.acc": ["acc"],
|
|
206560
|
+
"application/vnd.amiga.ami": ["ami"],
|
|
206561
|
+
"application/vnd.android.package-archive": ["apk"],
|
|
206562
|
+
"application/vnd.anser-web-certificate-issue-initiation": ["cii"],
|
|
206563
|
+
"application/vnd.anser-web-funds-transfer-initiation": ["fti"],
|
|
206564
|
+
"application/vnd.antix.game-component": ["atx"],
|
|
206565
|
+
"application/vnd.apple.installer+xml": ["mpkg"],
|
|
206566
|
+
"application/vnd.apple.keynote": ["key"],
|
|
206567
|
+
"application/vnd.apple.mpegurl": ["m3u8"],
|
|
206568
|
+
"application/vnd.apple.numbers": ["numbers"],
|
|
206569
|
+
"application/vnd.apple.pages": ["pages"],
|
|
206570
|
+
"application/vnd.apple.pkpass": ["pkpass"],
|
|
206571
|
+
"application/vnd.aristanetworks.swi": ["swi"],
|
|
206572
|
+
"application/vnd.astraea-software.iota": ["iota"],
|
|
206573
|
+
"application/vnd.audiograph": ["aep"],
|
|
206574
|
+
"application/vnd.autodesk.fbx": ["fbx"],
|
|
206575
|
+
"application/vnd.balsamiq.bmml+xml": ["bmml"],
|
|
206576
|
+
"application/vnd.blueice.multipass": ["mpm"],
|
|
206577
|
+
"application/vnd.bmi": ["bmi"],
|
|
206578
|
+
"application/vnd.businessobjects": ["rep"],
|
|
206579
|
+
"application/vnd.chemdraw+xml": ["cdxml"],
|
|
206580
|
+
"application/vnd.chipnuts.karaoke-mmd": ["mmd"],
|
|
206581
|
+
"application/vnd.cinderella": ["cdy"],
|
|
206582
|
+
"application/vnd.citationstyles.style+xml": ["csl"],
|
|
206583
|
+
"application/vnd.claymore": ["cla"],
|
|
206584
|
+
"application/vnd.cloanto.rp9": ["rp9"],
|
|
206585
|
+
"application/vnd.clonk.c4group": ["c4g", "c4d", "c4f", "c4p", "c4u"],
|
|
206586
|
+
"application/vnd.cluetrust.cartomobile-config": ["c11amc"],
|
|
206587
|
+
"application/vnd.cluetrust.cartomobile-config-pkg": ["c11amz"],
|
|
206588
|
+
"application/vnd.commonspace": ["csp"],
|
|
206589
|
+
"application/vnd.contact.cmsg": ["cdbcmsg"],
|
|
206590
|
+
"application/vnd.cosmocaller": ["cmc"],
|
|
206591
|
+
"application/vnd.crick.clicker": ["clkx"],
|
|
206592
|
+
"application/vnd.crick.clicker.keyboard": ["clkk"],
|
|
206593
|
+
"application/vnd.crick.clicker.palette": ["clkp"],
|
|
206594
|
+
"application/vnd.crick.clicker.template": ["clkt"],
|
|
206595
|
+
"application/vnd.crick.clicker.wordbank": ["clkw"],
|
|
206596
|
+
"application/vnd.criticaltools.wbs+xml": ["wbs"],
|
|
206597
|
+
"application/vnd.ctc-posml": ["pml"],
|
|
206598
|
+
"application/vnd.cups-ppd": ["ppd"],
|
|
206599
|
+
"application/vnd.curl.car": ["car"],
|
|
206600
|
+
"application/vnd.curl.pcurl": ["pcurl"],
|
|
206601
|
+
"application/vnd.dart": ["dart"],
|
|
206602
|
+
"application/vnd.data-vision.rdz": ["rdz"],
|
|
206603
|
+
"application/vnd.dbf": ["dbf"],
|
|
206604
|
+
"application/vnd.dcmp+xml": ["dcmp"],
|
|
206605
|
+
"application/vnd.dece.data": ["uvf", "uvvf", "uvd", "uvvd"],
|
|
206606
|
+
"application/vnd.dece.ttml+xml": ["uvt", "uvvt"],
|
|
206607
|
+
"application/vnd.dece.unspecified": ["uvx", "uvvx"],
|
|
206608
|
+
"application/vnd.dece.zip": ["uvz", "uvvz"],
|
|
206609
|
+
"application/vnd.denovo.fcselayout-link": ["fe_launch"],
|
|
206610
|
+
"application/vnd.dna": ["dna"],
|
|
206611
|
+
"application/vnd.dolby.mlp": ["mlp"],
|
|
206612
|
+
"application/vnd.dpgraph": ["dpg"],
|
|
206613
|
+
"application/vnd.dreamfactory": ["dfac"],
|
|
206614
|
+
"application/vnd.ds-keypoint": ["kpxx"],
|
|
206615
|
+
"application/vnd.dvb.ait": ["ait"],
|
|
206616
|
+
"application/vnd.dvb.service": ["svc"],
|
|
206617
|
+
"application/vnd.dynageo": ["geo"],
|
|
206618
|
+
"application/vnd.ecowin.chart": ["mag"],
|
|
206619
|
+
"application/vnd.enliven": ["nml"],
|
|
206620
|
+
"application/vnd.epson.esf": ["esf"],
|
|
206621
|
+
"application/vnd.epson.msf": ["msf"],
|
|
206622
|
+
"application/vnd.epson.quickanime": ["qam"],
|
|
206623
|
+
"application/vnd.epson.salt": ["slt"],
|
|
206624
|
+
"application/vnd.epson.ssf": ["ssf"],
|
|
206625
|
+
"application/vnd.eszigno3+xml": ["es3", "et3"],
|
|
206626
|
+
"application/vnd.ezpix-album": ["ez2"],
|
|
206627
|
+
"application/vnd.ezpix-package": ["ez3"],
|
|
206628
|
+
"application/vnd.fdf": ["*fdf"],
|
|
206629
|
+
"application/vnd.fdsn.mseed": ["mseed"],
|
|
206630
|
+
"application/vnd.fdsn.seed": ["seed", "dataless"],
|
|
206631
|
+
"application/vnd.flographit": ["gph"],
|
|
206632
|
+
"application/vnd.fluxtime.clip": ["ftc"],
|
|
206633
|
+
"application/vnd.framemaker": ["fm", "frame", "maker", "book"],
|
|
206634
|
+
"application/vnd.frogans.fnc": ["fnc"],
|
|
206635
|
+
"application/vnd.frogans.ltf": ["ltf"],
|
|
206636
|
+
"application/vnd.fsc.weblaunch": ["fsc"],
|
|
206637
|
+
"application/vnd.fujitsu.oasys": ["oas"],
|
|
206638
|
+
"application/vnd.fujitsu.oasys2": ["oa2"],
|
|
206639
|
+
"application/vnd.fujitsu.oasys3": ["oa3"],
|
|
206640
|
+
"application/vnd.fujitsu.oasysgp": ["fg5"],
|
|
206641
|
+
"application/vnd.fujitsu.oasysprs": ["bh2"],
|
|
206642
|
+
"application/vnd.fujixerox.ddd": ["ddd"],
|
|
206643
|
+
"application/vnd.fujixerox.docuworks": ["xdw"],
|
|
206644
|
+
"application/vnd.fujixerox.docuworks.binder": ["xbd"],
|
|
206645
|
+
"application/vnd.fuzzysheet": ["fzs"],
|
|
206646
|
+
"application/vnd.genomatix.tuxedo": ["txd"],
|
|
206647
|
+
"application/vnd.geogebra.file": ["ggb"],
|
|
206648
|
+
"application/vnd.geogebra.slides": ["ggs"],
|
|
206649
|
+
"application/vnd.geogebra.tool": ["ggt"],
|
|
206650
|
+
"application/vnd.geometry-explorer": ["gex", "gre"],
|
|
206651
|
+
"application/vnd.geonext": ["gxt"],
|
|
206652
|
+
"application/vnd.geoplan": ["g2w"],
|
|
206653
|
+
"application/vnd.geospace": ["g3w"],
|
|
206654
|
+
"application/vnd.gmx": ["gmx"],
|
|
206655
|
+
"application/vnd.google-apps.document": ["gdoc"],
|
|
206656
|
+
"application/vnd.google-apps.drawing": ["gdraw"],
|
|
206657
|
+
"application/vnd.google-apps.form": ["gform"],
|
|
206658
|
+
"application/vnd.google-apps.jam": ["gjam"],
|
|
206659
|
+
"application/vnd.google-apps.map": ["gmap"],
|
|
206660
|
+
"application/vnd.google-apps.presentation": ["gslides"],
|
|
206661
|
+
"application/vnd.google-apps.script": ["gscript"],
|
|
206662
|
+
"application/vnd.google-apps.site": ["gsite"],
|
|
206663
|
+
"application/vnd.google-apps.spreadsheet": ["gsheet"],
|
|
206664
|
+
"application/vnd.google-earth.kml+xml": ["kml"],
|
|
206665
|
+
"application/vnd.google-earth.kmz": ["kmz"],
|
|
206666
|
+
"application/vnd.gov.sk.xmldatacontainer+xml": ["xdcf"],
|
|
206667
|
+
"application/vnd.grafeq": ["gqf", "gqs"],
|
|
206668
|
+
"application/vnd.groove-account": ["gac"],
|
|
206669
|
+
"application/vnd.groove-help": ["ghf"],
|
|
206670
|
+
"application/vnd.groove-identity-message": ["gim"],
|
|
206671
|
+
"application/vnd.groove-injector": ["grv"],
|
|
206672
|
+
"application/vnd.groove-tool-message": ["gtm"],
|
|
206673
|
+
"application/vnd.groove-tool-template": ["tpl"],
|
|
206674
|
+
"application/vnd.groove-vcard": ["vcg"],
|
|
206675
|
+
"application/vnd.hal+xml": ["hal"],
|
|
206676
|
+
"application/vnd.handheld-entertainment+xml": ["zmm"],
|
|
206677
|
+
"application/vnd.hbci": ["hbci"],
|
|
206678
|
+
"application/vnd.hhe.lesson-player": ["les"],
|
|
206679
|
+
"application/vnd.hp-hpgl": ["hpgl"],
|
|
206680
|
+
"application/vnd.hp-hpid": ["hpid"],
|
|
206681
|
+
"application/vnd.hp-hps": ["hps"],
|
|
206682
|
+
"application/vnd.hp-jlyt": ["jlt"],
|
|
206683
|
+
"application/vnd.hp-pcl": ["pcl"],
|
|
206684
|
+
"application/vnd.hp-pclxl": ["pclxl"],
|
|
206685
|
+
"application/vnd.hydrostatix.sof-data": ["sfd-hdstx"],
|
|
206686
|
+
"application/vnd.ibm.minipay": ["mpy"],
|
|
206687
|
+
"application/vnd.ibm.modcap": ["afp", "listafp", "list3820"],
|
|
206688
|
+
"application/vnd.ibm.rights-management": ["irm"],
|
|
206689
|
+
"application/vnd.ibm.secure-container": ["sc"],
|
|
206690
|
+
"application/vnd.iccprofile": ["icc", "icm"],
|
|
206691
|
+
"application/vnd.igloader": ["igl"],
|
|
206692
|
+
"application/vnd.immervision-ivp": ["ivp"],
|
|
206693
|
+
"application/vnd.immervision-ivu": ["ivu"],
|
|
206694
|
+
"application/vnd.insors.igm": ["igm"],
|
|
206695
|
+
"application/vnd.intercon.formnet": ["xpw", "xpx"],
|
|
206696
|
+
"application/vnd.intergeo": ["i2g"],
|
|
206697
|
+
"application/vnd.intu.qbo": ["qbo"],
|
|
206698
|
+
"application/vnd.intu.qfx": ["qfx"],
|
|
206699
|
+
"application/vnd.ipunplugged.rcprofile": ["rcprofile"],
|
|
206700
|
+
"application/vnd.irepository.package+xml": ["irp"],
|
|
206701
|
+
"application/vnd.is-xpr": ["xpr"],
|
|
206702
|
+
"application/vnd.isac.fcs": ["fcs"],
|
|
206703
|
+
"application/vnd.jam": ["jam"],
|
|
206704
|
+
"application/vnd.jcp.javame.midlet-rms": ["rms"],
|
|
206705
|
+
"application/vnd.jisp": ["jisp"],
|
|
206706
|
+
"application/vnd.joost.joda-archive": ["joda"],
|
|
206707
|
+
"application/vnd.kahootz": ["ktz", "ktr"],
|
|
206708
|
+
"application/vnd.kde.karbon": ["karbon"],
|
|
206709
|
+
"application/vnd.kde.kchart": ["chrt"],
|
|
206710
|
+
"application/vnd.kde.kformula": ["kfo"],
|
|
206711
|
+
"application/vnd.kde.kivio": ["flw"],
|
|
206712
|
+
"application/vnd.kde.kontour": ["kon"],
|
|
206713
|
+
"application/vnd.kde.kpresenter": ["kpr", "kpt"],
|
|
206714
|
+
"application/vnd.kde.kspread": ["ksp"],
|
|
206715
|
+
"application/vnd.kde.kword": ["kwd", "kwt"],
|
|
206716
|
+
"application/vnd.kenameaapp": ["htke"],
|
|
206717
|
+
"application/vnd.kidspiration": ["kia"],
|
|
206718
|
+
"application/vnd.kinar": ["kne", "knp"],
|
|
206719
|
+
"application/vnd.koan": ["skp", "skd", "skt", "skm"],
|
|
206720
|
+
"application/vnd.kodak-descriptor": ["sse"],
|
|
206721
|
+
"application/vnd.las.las+xml": ["lasxml"],
|
|
206722
|
+
"application/vnd.llamagraphics.life-balance.desktop": ["lbd"],
|
|
206723
|
+
"application/vnd.llamagraphics.life-balance.exchange+xml": ["lbe"],
|
|
206724
|
+
"application/vnd.lotus-1-2-3": ["123"],
|
|
206725
|
+
"application/vnd.lotus-approach": ["apr"],
|
|
206726
|
+
"application/vnd.lotus-freelance": ["pre"],
|
|
206727
|
+
"application/vnd.lotus-notes": ["nsf"],
|
|
206728
|
+
"application/vnd.lotus-organizer": ["org"],
|
|
206729
|
+
"application/vnd.lotus-screencam": ["scm"],
|
|
206730
|
+
"application/vnd.lotus-wordpro": ["lwp"],
|
|
206731
|
+
"application/vnd.macports.portpkg": ["portpkg"],
|
|
206732
|
+
"application/vnd.mapbox-vector-tile": ["mvt"],
|
|
206733
|
+
"application/vnd.mcd": ["mcd"],
|
|
206734
|
+
"application/vnd.medcalcdata": ["mc1"],
|
|
206735
|
+
"application/vnd.mediastation.cdkey": ["cdkey"],
|
|
206736
|
+
"application/vnd.mfer": ["mwf"],
|
|
206737
|
+
"application/vnd.mfmp": ["mfm"],
|
|
206738
|
+
"application/vnd.micrografx.flo": ["flo"],
|
|
206739
|
+
"application/vnd.micrografx.igx": ["igx"],
|
|
206740
|
+
"application/vnd.mif": ["mif"],
|
|
206741
|
+
"application/vnd.mobius.daf": ["daf"],
|
|
206742
|
+
"application/vnd.mobius.dis": ["dis"],
|
|
206743
|
+
"application/vnd.mobius.mbk": ["mbk"],
|
|
206744
|
+
"application/vnd.mobius.mqy": ["mqy"],
|
|
206745
|
+
"application/vnd.mobius.msl": ["msl"],
|
|
206746
|
+
"application/vnd.mobius.plc": ["plc"],
|
|
206747
|
+
"application/vnd.mobius.txf": ["txf"],
|
|
206748
|
+
"application/vnd.mophun.application": ["mpn"],
|
|
206749
|
+
"application/vnd.mophun.certificate": ["mpc"],
|
|
206750
|
+
"application/vnd.mozilla.xul+xml": ["xul"],
|
|
206751
|
+
"application/vnd.ms-artgalry": ["cil"],
|
|
206752
|
+
"application/vnd.ms-cab-compressed": ["cab"],
|
|
206753
|
+
"application/vnd.ms-excel": ["xls", "xlm", "xla", "xlc", "xlt", "xlw"],
|
|
206754
|
+
"application/vnd.ms-excel.addin.macroenabled.12": ["xlam"],
|
|
206755
|
+
"application/vnd.ms-excel.sheet.binary.macroenabled.12": ["xlsb"],
|
|
206756
|
+
"application/vnd.ms-excel.sheet.macroenabled.12": ["xlsm"],
|
|
206757
|
+
"application/vnd.ms-excel.template.macroenabled.12": ["xltm"],
|
|
206758
|
+
"application/vnd.ms-fontobject": ["eot"],
|
|
206759
|
+
"application/vnd.ms-htmlhelp": ["chm"],
|
|
206760
|
+
"application/vnd.ms-ims": ["ims"],
|
|
206761
|
+
"application/vnd.ms-lrm": ["lrm"],
|
|
206762
|
+
"application/vnd.ms-officetheme": ["thmx"],
|
|
206763
|
+
"application/vnd.ms-outlook": ["msg"],
|
|
206764
|
+
"application/vnd.ms-pki.seccat": ["cat"],
|
|
206765
|
+
"application/vnd.ms-pki.stl": ["*stl"],
|
|
206766
|
+
"application/vnd.ms-powerpoint": ["ppt", "pps", "pot"],
|
|
206767
|
+
"application/vnd.ms-powerpoint.addin.macroenabled.12": ["ppam"],
|
|
206768
|
+
"application/vnd.ms-powerpoint.presentation.macroenabled.12": ["pptm"],
|
|
206769
|
+
"application/vnd.ms-powerpoint.slide.macroenabled.12": ["sldm"],
|
|
206770
|
+
"application/vnd.ms-powerpoint.slideshow.macroenabled.12": ["ppsm"],
|
|
206771
|
+
"application/vnd.ms-powerpoint.template.macroenabled.12": ["potm"],
|
|
206772
|
+
"application/vnd.ms-project": ["*mpp", "mpt"],
|
|
206773
|
+
"application/vnd.ms-visio.viewer": ["vdx"],
|
|
206774
|
+
"application/vnd.ms-word.document.macroenabled.12": ["docm"],
|
|
206775
|
+
"application/vnd.ms-word.template.macroenabled.12": ["dotm"],
|
|
206776
|
+
"application/vnd.ms-works": ["wps", "wks", "wcm", "wdb"],
|
|
206777
|
+
"application/vnd.ms-wpl": ["wpl"],
|
|
206778
|
+
"application/vnd.ms-xpsdocument": ["xps"],
|
|
206779
|
+
"application/vnd.mseq": ["mseq"],
|
|
206780
|
+
"application/vnd.musician": ["mus"],
|
|
206781
|
+
"application/vnd.muvee.style": ["msty"],
|
|
206782
|
+
"application/vnd.mynfc": ["taglet"],
|
|
206783
|
+
"application/vnd.nato.bindingdataobject+xml": ["bdo"],
|
|
206784
|
+
"application/vnd.neurolanguage.nlu": ["nlu"],
|
|
206785
|
+
"application/vnd.nitf": ["ntf", "nitf"],
|
|
206786
|
+
"application/vnd.noblenet-directory": ["nnd"],
|
|
206787
|
+
"application/vnd.noblenet-sealer": ["nns"],
|
|
206788
|
+
"application/vnd.noblenet-web": ["nnw"],
|
|
206789
|
+
"application/vnd.nokia.n-gage.ac+xml": ["*ac"],
|
|
206790
|
+
"application/vnd.nokia.n-gage.data": ["ngdat"],
|
|
206791
|
+
"application/vnd.nokia.n-gage.symbian.install": ["n-gage"],
|
|
206792
|
+
"application/vnd.nokia.radio-preset": ["rpst"],
|
|
206793
|
+
"application/vnd.nokia.radio-presets": ["rpss"],
|
|
206794
|
+
"application/vnd.novadigm.edm": ["edm"],
|
|
206795
|
+
"application/vnd.novadigm.edx": ["edx"],
|
|
206796
|
+
"application/vnd.novadigm.ext": ["ext"],
|
|
206797
|
+
"application/vnd.oasis.opendocument.chart": ["odc"],
|
|
206798
|
+
"application/vnd.oasis.opendocument.chart-template": ["otc"],
|
|
206799
|
+
"application/vnd.oasis.opendocument.database": ["odb"],
|
|
206800
|
+
"application/vnd.oasis.opendocument.formula": ["odf"],
|
|
206801
|
+
"application/vnd.oasis.opendocument.formula-template": ["odft"],
|
|
206802
|
+
"application/vnd.oasis.opendocument.graphics": ["odg"],
|
|
206803
|
+
"application/vnd.oasis.opendocument.graphics-template": ["otg"],
|
|
206804
|
+
"application/vnd.oasis.opendocument.image": ["odi"],
|
|
206805
|
+
"application/vnd.oasis.opendocument.image-template": ["oti"],
|
|
206806
|
+
"application/vnd.oasis.opendocument.presentation": ["odp"],
|
|
206807
|
+
"application/vnd.oasis.opendocument.presentation-template": ["otp"],
|
|
206808
|
+
"application/vnd.oasis.opendocument.spreadsheet": ["ods"],
|
|
206809
|
+
"application/vnd.oasis.opendocument.spreadsheet-template": ["ots"],
|
|
206810
|
+
"application/vnd.oasis.opendocument.text": ["odt"],
|
|
206811
|
+
"application/vnd.oasis.opendocument.text-master": ["odm"],
|
|
206812
|
+
"application/vnd.oasis.opendocument.text-template": ["ott"],
|
|
206813
|
+
"application/vnd.oasis.opendocument.text-web": ["oth"],
|
|
206814
|
+
"application/vnd.olpc-sugar": ["xo"],
|
|
206815
|
+
"application/vnd.oma.dd2+xml": ["dd2"],
|
|
206816
|
+
"application/vnd.openblox.game+xml": ["obgx"],
|
|
206817
|
+
"application/vnd.openofficeorg.extension": ["oxt"],
|
|
206818
|
+
"application/vnd.openstreetmap.data+xml": ["osm"],
|
|
206819
|
+
"application/vnd.openxmlformats-officedocument.presentationml.presentation": [
|
|
206820
|
+
"pptx"
|
|
206821
|
+
],
|
|
206822
|
+
"application/vnd.openxmlformats-officedocument.presentationml.slide": [
|
|
206823
|
+
"sldx"
|
|
206824
|
+
],
|
|
206825
|
+
"application/vnd.openxmlformats-officedocument.presentationml.slideshow": [
|
|
206826
|
+
"ppsx"
|
|
206827
|
+
],
|
|
206828
|
+
"application/vnd.openxmlformats-officedocument.presentationml.template": [
|
|
206829
|
+
"potx"
|
|
206830
|
+
],
|
|
206831
|
+
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": ["xlsx"],
|
|
206832
|
+
"application/vnd.openxmlformats-officedocument.spreadsheetml.template": [
|
|
206833
|
+
"xltx"
|
|
206834
|
+
],
|
|
206835
|
+
"application/vnd.openxmlformats-officedocument.wordprocessingml.document": [
|
|
206836
|
+
"docx"
|
|
206837
|
+
],
|
|
206838
|
+
"application/vnd.openxmlformats-officedocument.wordprocessingml.template": [
|
|
206839
|
+
"dotx"
|
|
206840
|
+
],
|
|
206841
|
+
"application/vnd.osgeo.mapguide.package": ["mgp"],
|
|
206842
|
+
"application/vnd.osgi.dp": ["dp"],
|
|
206843
|
+
"application/vnd.osgi.subsystem": ["esa"],
|
|
206844
|
+
"application/vnd.palm": ["pdb", "pqa", "oprc"],
|
|
206845
|
+
"application/vnd.pawaafile": ["paw"],
|
|
206846
|
+
"application/vnd.pg.format": ["str"],
|
|
206847
|
+
"application/vnd.pg.osasli": ["ei6"],
|
|
206848
|
+
"application/vnd.picsel": ["efif"],
|
|
206849
|
+
"application/vnd.pmi.widget": ["wg"],
|
|
206850
|
+
"application/vnd.pocketlearn": ["plf"],
|
|
206851
|
+
"application/vnd.powerbuilder6": ["pbd"],
|
|
206852
|
+
"application/vnd.previewsystems.box": ["box"],
|
|
206853
|
+
"application/vnd.procrate.brushset": ["brushset"],
|
|
206854
|
+
"application/vnd.procreate.brush": ["brush"],
|
|
206855
|
+
"application/vnd.procreate.dream": ["drm"],
|
|
206856
|
+
"application/vnd.proteus.magazine": ["mgz"],
|
|
206857
|
+
"application/vnd.publishare-delta-tree": ["qps"],
|
|
206858
|
+
"application/vnd.pvi.ptid1": ["ptid"],
|
|
206859
|
+
"application/vnd.pwg-xhtml-print+xml": ["xhtm"],
|
|
206860
|
+
"application/vnd.quark.quarkxpress": [
|
|
206861
|
+
"qxd",
|
|
206862
|
+
"qxt",
|
|
206863
|
+
"qwd",
|
|
206864
|
+
"qwt",
|
|
206865
|
+
"qxl",
|
|
206866
|
+
"qxb"
|
|
206867
|
+
],
|
|
206868
|
+
"application/vnd.rar": ["rar"],
|
|
206869
|
+
"application/vnd.realvnc.bed": ["bed"],
|
|
206870
|
+
"application/vnd.recordare.musicxml": ["mxl"],
|
|
206871
|
+
"application/vnd.recordare.musicxml+xml": ["musicxml"],
|
|
206872
|
+
"application/vnd.rig.cryptonote": ["cryptonote"],
|
|
206873
|
+
"application/vnd.rim.cod": ["cod"],
|
|
206874
|
+
"application/vnd.rn-realmedia": ["rm"],
|
|
206875
|
+
"application/vnd.rn-realmedia-vbr": ["rmvb"],
|
|
206876
|
+
"application/vnd.route66.link66+xml": ["link66"],
|
|
206877
|
+
"application/vnd.sailingtracker.track": ["st"],
|
|
206878
|
+
"application/vnd.seemail": ["see"],
|
|
206879
|
+
"application/vnd.sema": ["sema"],
|
|
206880
|
+
"application/vnd.semd": ["semd"],
|
|
206881
|
+
"application/vnd.semf": ["semf"],
|
|
206882
|
+
"application/vnd.shana.informed.formdata": ["ifm"],
|
|
206883
|
+
"application/vnd.shana.informed.formtemplate": ["itp"],
|
|
206884
|
+
"application/vnd.shana.informed.interchange": ["iif"],
|
|
206885
|
+
"application/vnd.shana.informed.package": ["ipk"],
|
|
206886
|
+
"application/vnd.simtech-mindmapper": ["twd", "twds"],
|
|
206887
|
+
"application/vnd.smaf": ["mmf"],
|
|
206888
|
+
"application/vnd.smart.teacher": ["teacher"],
|
|
206889
|
+
"application/vnd.software602.filler.form+xml": ["fo"],
|
|
206890
|
+
"application/vnd.solent.sdkm+xml": ["sdkm", "sdkd"],
|
|
206891
|
+
"application/vnd.spotfire.dxp": ["dxp"],
|
|
206892
|
+
"application/vnd.spotfire.sfs": ["sfs"],
|
|
206893
|
+
"application/vnd.stardivision.calc": ["sdc"],
|
|
206894
|
+
"application/vnd.stardivision.draw": ["sda"],
|
|
206895
|
+
"application/vnd.stardivision.impress": ["sdd"],
|
|
206896
|
+
"application/vnd.stardivision.math": ["smf"],
|
|
206897
|
+
"application/vnd.stardivision.writer": ["sdw", "vor"],
|
|
206898
|
+
"application/vnd.stardivision.writer-global": ["sgl"],
|
|
206899
|
+
"application/vnd.stepmania.package": ["smzip"],
|
|
206900
|
+
"application/vnd.stepmania.stepchart": ["sm"],
|
|
206901
|
+
"application/vnd.sun.wadl+xml": ["wadl"],
|
|
206902
|
+
"application/vnd.sun.xml.calc": ["sxc"],
|
|
206903
|
+
"application/vnd.sun.xml.calc.template": ["stc"],
|
|
206904
|
+
"application/vnd.sun.xml.draw": ["sxd"],
|
|
206905
|
+
"application/vnd.sun.xml.draw.template": ["std"],
|
|
206906
|
+
"application/vnd.sun.xml.impress": ["sxi"],
|
|
206907
|
+
"application/vnd.sun.xml.impress.template": ["sti"],
|
|
206908
|
+
"application/vnd.sun.xml.math": ["sxm"],
|
|
206909
|
+
"application/vnd.sun.xml.writer": ["sxw"],
|
|
206910
|
+
"application/vnd.sun.xml.writer.global": ["sxg"],
|
|
206911
|
+
"application/vnd.sun.xml.writer.template": ["stw"],
|
|
206912
|
+
"application/vnd.sus-calendar": ["sus", "susp"],
|
|
206913
|
+
"application/vnd.svd": ["svd"],
|
|
206914
|
+
"application/vnd.symbian.install": ["sis", "sisx"],
|
|
206915
|
+
"application/vnd.syncml+xml": ["xsm"],
|
|
206916
|
+
"application/vnd.syncml.dm+wbxml": ["bdm"],
|
|
206917
|
+
"application/vnd.syncml.dm+xml": ["xdm"],
|
|
206918
|
+
"application/vnd.syncml.dmddf+xml": ["ddf"],
|
|
206919
|
+
"application/vnd.tao.intent-module-archive": ["tao"],
|
|
206920
|
+
"application/vnd.tcpdump.pcap": ["pcap", "cap", "dmp"],
|
|
206921
|
+
"application/vnd.tmobile-livetv": ["tmo"],
|
|
206922
|
+
"application/vnd.trid.tpt": ["tpt"],
|
|
206923
|
+
"application/vnd.triscape.mxs": ["mxs"],
|
|
206924
|
+
"application/vnd.trueapp": ["tra"],
|
|
206925
|
+
"application/vnd.ufdl": ["ufd", "ufdl"],
|
|
206926
|
+
"application/vnd.uiq.theme": ["utz"],
|
|
206927
|
+
"application/vnd.umajin": ["umj"],
|
|
206928
|
+
"application/vnd.unity": ["unityweb"],
|
|
206929
|
+
"application/vnd.uoml+xml": ["uoml", "uo"],
|
|
206930
|
+
"application/vnd.vcx": ["vcx"],
|
|
206931
|
+
"application/vnd.visio": ["vsd", "vst", "vss", "vsw", "vsdx", "vtx"],
|
|
206932
|
+
"application/vnd.visionary": ["vis"],
|
|
206933
|
+
"application/vnd.vsf": ["vsf"],
|
|
206934
|
+
"application/vnd.wap.wbxml": ["wbxml"],
|
|
206935
|
+
"application/vnd.wap.wmlc": ["wmlc"],
|
|
206936
|
+
"application/vnd.wap.wmlscriptc": ["wmlsc"],
|
|
206937
|
+
"application/vnd.webturbo": ["wtb"],
|
|
206938
|
+
"application/vnd.wolfram.player": ["nbp"],
|
|
206939
|
+
"application/vnd.wordperfect": ["wpd"],
|
|
206940
|
+
"application/vnd.wqd": ["wqd"],
|
|
206941
|
+
"application/vnd.wt.stf": ["stf"],
|
|
206942
|
+
"application/vnd.xara": ["xar"],
|
|
206943
|
+
"application/vnd.xfdl": ["xfdl"],
|
|
206944
|
+
"application/vnd.yamaha.hv-dic": ["hvd"],
|
|
206945
|
+
"application/vnd.yamaha.hv-script": ["hvs"],
|
|
206946
|
+
"application/vnd.yamaha.hv-voice": ["hvp"],
|
|
206947
|
+
"application/vnd.yamaha.openscoreformat": ["osf"],
|
|
206948
|
+
"application/vnd.yamaha.openscoreformat.osfpvg+xml": ["osfpvg"],
|
|
206949
|
+
"application/vnd.yamaha.smaf-audio": ["saf"],
|
|
206950
|
+
"application/vnd.yamaha.smaf-phrase": ["spf"],
|
|
206951
|
+
"application/vnd.yellowriver-custom-menu": ["cmp"],
|
|
206952
|
+
"application/vnd.zul": ["zir", "zirz"],
|
|
206953
|
+
"application/vnd.zzazz.deck+xml": ["zaz"],
|
|
206954
|
+
"application/x-7z-compressed": ["7z"],
|
|
206955
|
+
"application/x-abiword": ["abw"],
|
|
206956
|
+
"application/x-ace-compressed": ["ace"],
|
|
206957
|
+
"application/x-apple-diskimage": ["*dmg"],
|
|
206958
|
+
"application/x-arj": ["arj"],
|
|
206959
|
+
"application/x-authorware-bin": ["aab", "x32", "u32", "vox"],
|
|
206960
|
+
"application/x-authorware-map": ["aam"],
|
|
206961
|
+
"application/x-authorware-seg": ["aas"],
|
|
206962
|
+
"application/x-bcpio": ["bcpio"],
|
|
206963
|
+
"application/x-bdoc": ["*bdoc"],
|
|
206964
|
+
"application/x-bittorrent": ["torrent"],
|
|
206965
|
+
"application/x-blender": ["blend"],
|
|
206966
|
+
"application/x-blorb": ["blb", "blorb"],
|
|
206967
|
+
"application/x-bzip": ["bz"],
|
|
206968
|
+
"application/x-bzip2": ["bz2", "boz"],
|
|
206969
|
+
"application/x-cbr": ["cbr", "cba", "cbt", "cbz", "cb7"],
|
|
206970
|
+
"application/x-cdlink": ["vcd"],
|
|
206971
|
+
"application/x-cfs-compressed": ["cfs"],
|
|
206972
|
+
"application/x-chat": ["chat"],
|
|
206973
|
+
"application/x-chess-pgn": ["pgn"],
|
|
206974
|
+
"application/x-chrome-extension": ["crx"],
|
|
206975
|
+
"application/x-cocoa": ["cco"],
|
|
206976
|
+
"application/x-compressed": ["*rar"],
|
|
206977
|
+
"application/x-conference": ["nsc"],
|
|
206978
|
+
"application/x-cpio": ["cpio"],
|
|
206979
|
+
"application/x-csh": ["csh"],
|
|
206980
|
+
"application/x-debian-package": ["*deb", "udeb"],
|
|
206981
|
+
"application/x-dgc-compressed": ["dgc"],
|
|
206982
|
+
"application/x-director": [
|
|
206983
|
+
"dir",
|
|
206984
|
+
"dcr",
|
|
206985
|
+
"dxr",
|
|
206986
|
+
"cst",
|
|
206987
|
+
"cct",
|
|
206988
|
+
"cxt",
|
|
206989
|
+
"w3d",
|
|
206990
|
+
"fgd",
|
|
206991
|
+
"swa"
|
|
206992
|
+
],
|
|
206993
|
+
"application/x-doom": ["wad"],
|
|
206994
|
+
"application/x-dtbncx+xml": ["ncx"],
|
|
206995
|
+
"application/x-dtbook+xml": ["dtb"],
|
|
206996
|
+
"application/x-dtbresource+xml": ["res"],
|
|
206997
|
+
"application/x-dvi": ["dvi"],
|
|
206998
|
+
"application/x-envoy": ["evy"],
|
|
206999
|
+
"application/x-eva": ["eva"],
|
|
207000
|
+
"application/x-font-bdf": ["bdf"],
|
|
207001
|
+
"application/x-font-ghostscript": ["gsf"],
|
|
207002
|
+
"application/x-font-linux-psf": ["psf"],
|
|
207003
|
+
"application/x-font-pcf": ["pcf"],
|
|
207004
|
+
"application/x-font-snf": ["snf"],
|
|
207005
|
+
"application/x-font-type1": ["pfa", "pfb", "pfm", "afm"],
|
|
207006
|
+
"application/x-freearc": ["arc"],
|
|
207007
|
+
"application/x-futuresplash": ["spl"],
|
|
207008
|
+
"application/x-gca-compressed": ["gca"],
|
|
207009
|
+
"application/x-glulx": ["ulx"],
|
|
207010
|
+
"application/x-gnumeric": ["gnumeric"],
|
|
207011
|
+
"application/x-gramps-xml": ["gramps"],
|
|
207012
|
+
"application/x-gtar": ["gtar"],
|
|
207013
|
+
"application/x-hdf": ["hdf"],
|
|
207014
|
+
"application/x-httpd-php": ["php"],
|
|
207015
|
+
"application/x-install-instructions": ["install"],
|
|
207016
|
+
"application/x-ipynb+json": ["ipynb"],
|
|
207017
|
+
"application/x-iso9660-image": ["*iso"],
|
|
207018
|
+
"application/x-iwork-keynote-sffkey": ["*key"],
|
|
207019
|
+
"application/x-iwork-numbers-sffnumbers": ["*numbers"],
|
|
207020
|
+
"application/x-iwork-pages-sffpages": ["*pages"],
|
|
207021
|
+
"application/x-java-archive-diff": ["jardiff"],
|
|
207022
|
+
"application/x-java-jnlp-file": ["jnlp"],
|
|
207023
|
+
"application/x-keepass2": ["kdbx"],
|
|
207024
|
+
"application/x-latex": ["latex"],
|
|
207025
|
+
"application/x-lua-bytecode": ["luac"],
|
|
207026
|
+
"application/x-lzh-compressed": ["lzh", "lha"],
|
|
207027
|
+
"application/x-makeself": ["run"],
|
|
207028
|
+
"application/x-mie": ["mie"],
|
|
207029
|
+
"application/x-mobipocket-ebook": ["*prc", "mobi"],
|
|
207030
|
+
"application/x-ms-application": ["application"],
|
|
207031
|
+
"application/x-ms-shortcut": ["lnk"],
|
|
207032
|
+
"application/x-ms-wmd": ["wmd"],
|
|
207033
|
+
"application/x-ms-wmz": ["wmz"],
|
|
207034
|
+
"application/x-ms-xbap": ["xbap"],
|
|
207035
|
+
"application/x-msaccess": ["mdb"],
|
|
207036
|
+
"application/x-msbinder": ["obd"],
|
|
207037
|
+
"application/x-mscardfile": ["crd"],
|
|
207038
|
+
"application/x-msclip": ["clp"],
|
|
207039
|
+
"application/x-msdos-program": ["*exe"],
|
|
207040
|
+
"application/x-msdownload": ["*exe", "*dll", "com", "bat", "*msi"],
|
|
207041
|
+
"application/x-msmediaview": ["mvb", "m13", "m14"],
|
|
207042
|
+
"application/x-msmetafile": ["*wmf", "*wmz", "*emf", "emz"],
|
|
207043
|
+
"application/x-msmoney": ["mny"],
|
|
207044
|
+
"application/x-mspublisher": ["pub"],
|
|
207045
|
+
"application/x-msschedule": ["scd"],
|
|
207046
|
+
"application/x-msterminal": ["trm"],
|
|
207047
|
+
"application/x-mswrite": ["wri"],
|
|
207048
|
+
"application/x-netcdf": ["nc", "cdf"],
|
|
207049
|
+
"application/x-ns-proxy-autoconfig": ["pac"],
|
|
207050
|
+
"application/x-nzb": ["nzb"],
|
|
207051
|
+
"application/x-perl": ["pl", "pm"],
|
|
207052
|
+
"application/x-pilot": ["*prc", "*pdb"],
|
|
207053
|
+
"application/x-pkcs12": ["p12", "pfx"],
|
|
207054
|
+
"application/x-pkcs7-certificates": ["p7b", "spc"],
|
|
207055
|
+
"application/x-pkcs7-certreqresp": ["p7r"],
|
|
207056
|
+
"application/x-rar-compressed": ["*rar"],
|
|
207057
|
+
"application/x-redhat-package-manager": ["rpm"],
|
|
207058
|
+
"application/x-research-info-systems": ["ris"],
|
|
207059
|
+
"application/x-sea": ["sea"],
|
|
207060
|
+
"application/x-sh": ["sh"],
|
|
207061
|
+
"application/x-shar": ["shar"],
|
|
207062
|
+
"application/x-shockwave-flash": ["swf"],
|
|
207063
|
+
"application/x-silverlight-app": ["xap"],
|
|
207064
|
+
"application/x-sql": ["*sql"],
|
|
207065
|
+
"application/x-stuffit": ["sit"],
|
|
207066
|
+
"application/x-stuffitx": ["sitx"],
|
|
207067
|
+
"application/x-subrip": ["srt"],
|
|
207068
|
+
"application/x-sv4cpio": ["sv4cpio"],
|
|
207069
|
+
"application/x-sv4crc": ["sv4crc"],
|
|
207070
|
+
"application/x-t3vm-image": ["t3"],
|
|
207071
|
+
"application/x-tads": ["gam"],
|
|
207072
|
+
"application/x-tar": ["tar"],
|
|
207073
|
+
"application/x-tcl": ["tcl", "tk"],
|
|
207074
|
+
"application/x-tex": ["tex"],
|
|
207075
|
+
"application/x-tex-tfm": ["tfm"],
|
|
207076
|
+
"application/x-texinfo": ["texinfo", "texi"],
|
|
207077
|
+
"application/x-tgif": ["*obj"],
|
|
207078
|
+
"application/x-ustar": ["ustar"],
|
|
207079
|
+
"application/x-virtualbox-hdd": ["hdd"],
|
|
207080
|
+
"application/x-virtualbox-ova": ["ova"],
|
|
207081
|
+
"application/x-virtualbox-ovf": ["ovf"],
|
|
207082
|
+
"application/x-virtualbox-vbox": ["vbox"],
|
|
207083
|
+
"application/x-virtualbox-vbox-extpack": ["vbox-extpack"],
|
|
207084
|
+
"application/x-virtualbox-vdi": ["vdi"],
|
|
207085
|
+
"application/x-virtualbox-vhd": ["vhd"],
|
|
207086
|
+
"application/x-virtualbox-vmdk": ["vmdk"],
|
|
207087
|
+
"application/x-wais-source": ["src"],
|
|
207088
|
+
"application/x-web-app-manifest+json": ["webapp"],
|
|
207089
|
+
"application/x-x509-ca-cert": ["der", "crt", "pem"],
|
|
207090
|
+
"application/x-xfig": ["fig"],
|
|
207091
|
+
"application/x-xliff+xml": ["*xlf"],
|
|
207092
|
+
"application/x-xpinstall": ["xpi"],
|
|
207093
|
+
"application/x-xz": ["xz"],
|
|
207094
|
+
"application/x-zip-compressed": ["*zip"],
|
|
207095
|
+
"application/x-zmachine": ["z1", "z2", "z3", "z4", "z5", "z6", "z7", "z8"],
|
|
207096
|
+
"audio/vnd.dece.audio": ["uva", "uvva"],
|
|
207097
|
+
"audio/vnd.digital-winds": ["eol"],
|
|
207098
|
+
"audio/vnd.dra": ["dra"],
|
|
207099
|
+
"audio/vnd.dts": ["dts"],
|
|
207100
|
+
"audio/vnd.dts.hd": ["dtshd"],
|
|
207101
|
+
"audio/vnd.lucent.voice": ["lvp"],
|
|
207102
|
+
"audio/vnd.ms-playready.media.pya": ["pya"],
|
|
207103
|
+
"audio/vnd.nuera.ecelp4800": ["ecelp4800"],
|
|
207104
|
+
"audio/vnd.nuera.ecelp7470": ["ecelp7470"],
|
|
207105
|
+
"audio/vnd.nuera.ecelp9600": ["ecelp9600"],
|
|
207106
|
+
"audio/vnd.rip": ["rip"],
|
|
207107
|
+
"audio/x-aac": ["*aac"],
|
|
207108
|
+
"audio/x-aiff": ["aif", "aiff", "aifc"],
|
|
207109
|
+
"audio/x-caf": ["caf"],
|
|
207110
|
+
"audio/x-flac": ["flac"],
|
|
207111
|
+
"audio/x-m4a": ["*m4a"],
|
|
207112
|
+
"audio/x-matroska": ["mka"],
|
|
207113
|
+
"audio/x-mpegurl": ["m3u"],
|
|
207114
|
+
"audio/x-ms-wax": ["wax"],
|
|
207115
|
+
"audio/x-ms-wma": ["wma"],
|
|
207116
|
+
"audio/x-pn-realaudio": ["ram", "ra"],
|
|
207117
|
+
"audio/x-pn-realaudio-plugin": ["rmp"],
|
|
207118
|
+
"audio/x-realaudio": ["*ra"],
|
|
207119
|
+
"audio/x-wav": ["*wav"],
|
|
207120
|
+
"chemical/x-cdx": ["cdx"],
|
|
207121
|
+
"chemical/x-cif": ["cif"],
|
|
207122
|
+
"chemical/x-cmdf": ["cmdf"],
|
|
207123
|
+
"chemical/x-cml": ["cml"],
|
|
207124
|
+
"chemical/x-csml": ["csml"],
|
|
207125
|
+
"chemical/x-xyz": ["xyz"],
|
|
207126
|
+
"image/prs.btif": ["btif", "btf"],
|
|
207127
|
+
"image/prs.pti": ["pti"],
|
|
207128
|
+
"image/vnd.adobe.photoshop": ["psd"],
|
|
207129
|
+
"image/vnd.airzip.accelerator.azv": ["azv"],
|
|
207130
|
+
"image/vnd.blockfact.facti": ["facti"],
|
|
207131
|
+
"image/vnd.dece.graphic": ["uvi", "uvvi", "uvg", "uvvg"],
|
|
207132
|
+
"image/vnd.djvu": ["djvu", "djv"],
|
|
207133
|
+
"image/vnd.dvb.subtitle": ["*sub"],
|
|
207134
|
+
"image/vnd.dwg": ["dwg"],
|
|
207135
|
+
"image/vnd.dxf": ["dxf"],
|
|
207136
|
+
"image/vnd.fastbidsheet": ["fbs"],
|
|
207137
|
+
"image/vnd.fpx": ["fpx"],
|
|
207138
|
+
"image/vnd.fst": ["fst"],
|
|
207139
|
+
"image/vnd.fujixerox.edmics-mmr": ["mmr"],
|
|
207140
|
+
"image/vnd.fujixerox.edmics-rlc": ["rlc"],
|
|
207141
|
+
"image/vnd.microsoft.icon": ["ico"],
|
|
207142
|
+
"image/vnd.ms-dds": ["dds"],
|
|
207143
|
+
"image/vnd.ms-modi": ["mdi"],
|
|
207144
|
+
"image/vnd.ms-photo": ["wdp"],
|
|
207145
|
+
"image/vnd.net-fpx": ["npx"],
|
|
207146
|
+
"image/vnd.pco.b16": ["b16"],
|
|
207147
|
+
"image/vnd.tencent.tap": ["tap"],
|
|
207148
|
+
"image/vnd.valve.source.texture": ["vtf"],
|
|
207149
|
+
"image/vnd.wap.wbmp": ["wbmp"],
|
|
207150
|
+
"image/vnd.xiff": ["xif"],
|
|
207151
|
+
"image/vnd.zbrush.pcx": ["pcx"],
|
|
207152
|
+
"image/x-3ds": ["3ds"],
|
|
207153
|
+
"image/x-adobe-dng": ["dng"],
|
|
207154
|
+
"image/x-cmu-raster": ["ras"],
|
|
207155
|
+
"image/x-cmx": ["cmx"],
|
|
207156
|
+
"image/x-freehand": ["fh", "fhc", "fh4", "fh5", "fh7"],
|
|
207157
|
+
"image/x-icon": ["*ico"],
|
|
207158
|
+
"image/x-jng": ["jng"],
|
|
207159
|
+
"image/x-mrsid-image": ["sid"],
|
|
207160
|
+
"image/x-ms-bmp": ["*bmp"],
|
|
207161
|
+
"image/x-pcx": ["*pcx"],
|
|
207162
|
+
"image/x-pict": ["pic", "pct"],
|
|
207163
|
+
"image/x-portable-anymap": ["pnm"],
|
|
207164
|
+
"image/x-portable-bitmap": ["pbm"],
|
|
207165
|
+
"image/x-portable-graymap": ["pgm"],
|
|
207166
|
+
"image/x-portable-pixmap": ["ppm"],
|
|
207167
|
+
"image/x-rgb": ["rgb"],
|
|
207168
|
+
"image/x-tga": ["tga"],
|
|
207169
|
+
"image/x-xbitmap": ["xbm"],
|
|
207170
|
+
"image/x-xpixmap": ["xpm"],
|
|
207171
|
+
"image/x-xwindowdump": ["xwd"],
|
|
207172
|
+
"message/vnd.wfa.wsc": ["wsc"],
|
|
207173
|
+
"model/vnd.bary": ["bary"],
|
|
207174
|
+
"model/vnd.cld": ["cld"],
|
|
207175
|
+
"model/vnd.collada+xml": ["dae"],
|
|
207176
|
+
"model/vnd.dwf": ["dwf"],
|
|
207177
|
+
"model/vnd.gdl": ["gdl"],
|
|
207178
|
+
"model/vnd.gtw": ["gtw"],
|
|
207179
|
+
"model/vnd.mts": ["*mts"],
|
|
207180
|
+
"model/vnd.opengex": ["ogex"],
|
|
207181
|
+
"model/vnd.parasolid.transmit.binary": ["x_b"],
|
|
207182
|
+
"model/vnd.parasolid.transmit.text": ["x_t"],
|
|
207183
|
+
"model/vnd.pytha.pyox": ["pyo", "pyox"],
|
|
207184
|
+
"model/vnd.sap.vds": ["vds"],
|
|
207185
|
+
"model/vnd.usda": ["usda"],
|
|
207186
|
+
"model/vnd.usdz+zip": ["usdz"],
|
|
207187
|
+
"model/vnd.valve.source.compiled-map": ["bsp"],
|
|
207188
|
+
"model/vnd.vtu": ["vtu"],
|
|
207189
|
+
"text/prs.lines.tag": ["dsc"],
|
|
207190
|
+
"text/vnd.curl": ["curl"],
|
|
207191
|
+
"text/vnd.curl.dcurl": ["dcurl"],
|
|
207192
|
+
"text/vnd.curl.mcurl": ["mcurl"],
|
|
207193
|
+
"text/vnd.curl.scurl": ["scurl"],
|
|
207194
|
+
"text/vnd.dvb.subtitle": ["sub"],
|
|
207195
|
+
"text/vnd.familysearch.gedcom": ["ged"],
|
|
207196
|
+
"text/vnd.fly": ["fly"],
|
|
207197
|
+
"text/vnd.fmi.flexstor": ["flx"],
|
|
207198
|
+
"text/vnd.graphviz": ["gv"],
|
|
207199
|
+
"text/vnd.in3d.3dml": ["3dml"],
|
|
207200
|
+
"text/vnd.in3d.spot": ["spot"],
|
|
207201
|
+
"text/vnd.sun.j2me.app-descriptor": ["jad"],
|
|
207202
|
+
"text/vnd.wap.wml": ["wml"],
|
|
207203
|
+
"text/vnd.wap.wmlscript": ["wmls"],
|
|
207204
|
+
"text/x-asm": ["s", "asm"],
|
|
207205
|
+
"text/x-c": ["c", "cc", "cxx", "cpp", "h", "hh", "dic"],
|
|
207206
|
+
"text/x-component": ["htc"],
|
|
207207
|
+
"text/x-fortran": ["f", "for", "f77", "f90"],
|
|
207208
|
+
"text/x-handlebars-template": ["hbs"],
|
|
207209
|
+
"text/x-java-source": ["java"],
|
|
207210
|
+
"text/x-lua": ["lua"],
|
|
207211
|
+
"text/x-markdown": ["mkd"],
|
|
207212
|
+
"text/x-nfo": ["nfo"],
|
|
207213
|
+
"text/x-opml": ["opml"],
|
|
207214
|
+
"text/x-org": ["*org"],
|
|
207215
|
+
"text/x-pascal": ["p", "pas"],
|
|
207216
|
+
"text/x-processing": ["pde"],
|
|
207217
|
+
"text/x-sass": ["sass"],
|
|
207218
|
+
"text/x-scss": ["scss"],
|
|
207219
|
+
"text/x-setext": ["etx"],
|
|
207220
|
+
"text/x-sfv": ["sfv"],
|
|
207221
|
+
"text/x-suse-ymp": ["ymp"],
|
|
207222
|
+
"text/x-uuencode": ["uu"],
|
|
207223
|
+
"text/x-vcalendar": ["vcs"],
|
|
207224
|
+
"text/x-vcard": ["vcf"],
|
|
207225
|
+
"video/vnd.dece.hd": ["uvh", "uvvh"],
|
|
207226
|
+
"video/vnd.dece.mobile": ["uvm", "uvvm"],
|
|
207227
|
+
"video/vnd.dece.pd": ["uvp", "uvvp"],
|
|
207228
|
+
"video/vnd.dece.sd": ["uvs", "uvvs"],
|
|
207229
|
+
"video/vnd.dece.video": ["uvv", "uvvv"],
|
|
207230
|
+
"video/vnd.dvb.file": ["dvb"],
|
|
207231
|
+
"video/vnd.fvt": ["fvt"],
|
|
207232
|
+
"video/vnd.mpegurl": ["mxu", "m4u"],
|
|
207233
|
+
"video/vnd.ms-playready.media.pyv": ["pyv"],
|
|
207234
|
+
"video/vnd.uvvu.mp4": ["uvu", "uvvu"],
|
|
207235
|
+
"video/vnd.vivo": ["viv"],
|
|
207236
|
+
"video/x-f4v": ["f4v"],
|
|
207237
|
+
"video/x-fli": ["fli"],
|
|
207238
|
+
"video/x-flv": ["flv"],
|
|
207239
|
+
"video/x-m4v": ["m4v"],
|
|
207240
|
+
"video/x-matroska": ["mkv", "mk3d", "mks"],
|
|
207241
|
+
"video/x-mng": ["mng"],
|
|
207242
|
+
"video/x-ms-asf": ["asf", "asx"],
|
|
207243
|
+
"video/x-ms-vob": ["vob"],
|
|
207244
|
+
"video/x-ms-wm": ["wm"],
|
|
207245
|
+
"video/x-ms-wmv": ["wmv"],
|
|
207246
|
+
"video/x-ms-wmx": ["wmx"],
|
|
207247
|
+
"video/x-ms-wvx": ["wvx"],
|
|
207248
|
+
"video/x-msvideo": ["avi"],
|
|
207249
|
+
"video/x-sgi-movie": ["movie"],
|
|
207250
|
+
"video/x-smv": ["smv"],
|
|
207251
|
+
"x-conference/x-cooltalk": ["ice"]
|
|
206526
207252
|
};
|
|
206527
|
-
|
|
206528
|
-
|
|
206529
|
-
|
|
206530
|
-
|
|
206531
|
-
|
|
206532
|
-
|
|
206533
|
-
|
|
206534
|
-
|
|
206535
|
-
|
|
206536
|
-
"
|
|
206537
|
-
|
|
206538
|
-
|
|
206539
|
-
|
|
206540
|
-
|
|
206541
|
-
|
|
206542
|
-
|
|
206543
|
-
|
|
206544
|
-
|
|
206545
|
-
|
|
206546
|
-
"
|
|
206547
|
-
|
|
206548
|
-
|
|
206549
|
-
|
|
206550
|
-
|
|
206551
|
-
|
|
206552
|
-
|
|
206553
|
-
|
|
206554
|
-
|
|
206555
|
-
|
|
206556
|
-
|
|
206557
|
-
|
|
206558
|
-
|
|
206559
|
-
|
|
206560
|
-
"
|
|
206561
|
-
|
|
206562
|
-
|
|
206563
|
-
|
|
206564
|
-
|
|
206565
|
-
|
|
206566
|
-
"
|
|
206567
|
-
|
|
206568
|
-
|
|
206569
|
-
|
|
206570
|
-
|
|
206571
|
-
|
|
206572
|
-
|
|
206573
|
-
|
|
206574
|
-
"
|
|
206575
|
-
|
|
206576
|
-
|
|
206577
|
-
|
|
206578
|
-
|
|
206579
|
-
|
|
206580
|
-
|
|
206581
|
-
"
|
|
206582
|
-
|
|
206583
|
-
|
|
206584
|
-
|
|
206585
|
-
|
|
206586
|
-
|
|
206587
|
-
|
|
206588
|
-
|
|
206589
|
-
|
|
206590
|
-
|
|
206591
|
-
|
|
206592
|
-
|
|
206593
|
-
"
|
|
206594
|
-
|
|
206595
|
-
|
|
206596
|
-
|
|
206597
|
-
|
|
206598
|
-
|
|
206599
|
-
"
|
|
206600
|
-
|
|
206601
|
-
|
|
206602
|
-
|
|
206603
|
-
|
|
206604
|
-
|
|
206605
|
-
|
|
206606
|
-
|
|
206607
|
-
|
|
206608
|
-
|
|
206609
|
-
|
|
206610
|
-
|
|
206611
|
-
|
|
206612
|
-
|
|
206613
|
-
|
|
206614
|
-
|
|
206615
|
-
|
|
206616
|
-
|
|
206617
|
-
|
|
206618
|
-
|
|
206619
|
-
|
|
206620
|
-
|
|
206621
|
-
|
|
206622
|
-
|
|
206623
|
-
|
|
206624
|
-
|
|
206625
|
-
|
|
206626
|
-
|
|
206627
|
-
|
|
206628
|
-
|
|
206629
|
-
|
|
206630
|
-
|
|
206631
|
-
|
|
206632
|
-
|
|
206633
|
-
|
|
206634
|
-
|
|
206635
|
-
|
|
206636
|
-
|
|
206637
|
-
|
|
206638
|
-
|
|
206639
|
-
|
|
206640
|
-
|
|
206641
|
-
|
|
206642
|
-
|
|
206643
|
-
|
|
206644
|
-
|
|
206645
|
-
|
|
206646
|
-
|
|
206647
|
-
|
|
206648
|
-
|
|
206649
|
-
|
|
206650
|
-
|
|
206651
|
-
|
|
206652
|
-
|
|
206653
|
-
|
|
206654
|
-
|
|
206655
|
-
|
|
206656
|
-
|
|
206657
|
-
|
|
206658
|
-
|
|
206659
|
-
|
|
206660
|
-
|
|
206661
|
-
"
|
|
206662
|
-
|
|
206663
|
-
|
|
206664
|
-
|
|
206665
|
-
|
|
206666
|
-
|
|
206667
|
-
|
|
206668
|
-
|
|
206669
|
-
|
|
206670
|
-
|
|
206671
|
-
|
|
206672
|
-
"
|
|
206673
|
-
|
|
206674
|
-
|
|
206675
|
-
|
|
206676
|
-
|
|
206677
|
-
|
|
206678
|
-
|
|
206679
|
-
|
|
206680
|
-
|
|
206681
|
-
|
|
206682
|
-
|
|
206683
|
-
|
|
206684
|
-
|
|
206685
|
-
|
|
206686
|
-
|
|
206687
|
-
|
|
206688
|
-
|
|
206689
|
-
|
|
206690
|
-
|
|
206691
|
-
|
|
206692
|
-
|
|
206693
|
-
|
|
206694
|
-
|
|
206695
|
-
|
|
206696
|
-
|
|
206697
|
-
"
|
|
206698
|
-
|
|
206699
|
-
|
|
206700
|
-
|
|
206701
|
-
|
|
206702
|
-
|
|
206703
|
-
|
|
206704
|
-
|
|
206705
|
-
|
|
206706
|
-
"
|
|
206707
|
-
|
|
206708
|
-
|
|
206709
|
-
|
|
206710
|
-
|
|
206711
|
-
|
|
206712
|
-
|
|
206713
|
-
|
|
206714
|
-
|
|
206715
|
-
|
|
206716
|
-
|
|
206717
|
-
|
|
206718
|
-
|
|
206719
|
-
"
|
|
206720
|
-
|
|
206721
|
-
|
|
206722
|
-
|
|
206723
|
-
|
|
206724
|
-
|
|
206725
|
-
|
|
206726
|
-
|
|
206727
|
-
|
|
206728
|
-
|
|
206729
|
-
|
|
206730
|
-
|
|
206731
|
-
|
|
206732
|
-
|
|
206733
|
-
|
|
206734
|
-
|
|
206735
|
-
|
|
206736
|
-
|
|
206737
|
-
|
|
206738
|
-
|
|
206739
|
-
|
|
206740
|
-
|
|
206741
|
-
|
|
206742
|
-
|
|
206743
|
-
|
|
206744
|
-
|
|
206745
|
-
|
|
206746
|
-
|
|
206747
|
-
|
|
206748
|
-
|
|
206749
|
-
|
|
206750
|
-
|
|
206751
|
-
|
|
206752
|
-
|
|
206753
|
-
|
|
206754
|
-
|
|
206755
|
-
|
|
206756
|
-
|
|
206757
|
-
|
|
206758
|
-
|
|
206759
|
-
|
|
206760
|
-
|
|
206761
|
-
|
|
206762
|
-
|
|
206763
|
-
|
|
206764
|
-
|
|
206765
|
-
|
|
206766
|
-
|
|
206767
|
-
|
|
206768
|
-
|
|
206769
|
-
|
|
206770
|
-
|
|
206771
|
-
|
|
206772
|
-
|
|
206773
|
-
|
|
206774
|
-
|
|
206775
|
-
|
|
206776
|
-
|
|
206777
|
-
|
|
206778
|
-
|
|
206779
|
-
|
|
206780
|
-
|
|
206781
|
-
|
|
206782
|
-
|
|
206783
|
-
|
|
206784
|
-
|
|
206785
|
-
|
|
206786
|
-
|
|
206787
|
-
|
|
206788
|
-
|
|
206789
|
-
|
|
207253
|
+
Object.freeze(types);
|
|
207254
|
+
var other_default = types;
|
|
207255
|
+
|
|
207256
|
+
// ../../node_modules/.pnpm/mime@4.1.0/node_modules/mime/dist/types/standard.js
|
|
207257
|
+
var types2 = {
|
|
207258
|
+
"application/andrew-inset": ["ez"],
|
|
207259
|
+
"application/appinstaller": ["appinstaller"],
|
|
207260
|
+
"application/applixware": ["aw"],
|
|
207261
|
+
"application/appx": ["appx"],
|
|
207262
|
+
"application/appxbundle": ["appxbundle"],
|
|
207263
|
+
"application/atom+xml": ["atom"],
|
|
207264
|
+
"application/atomcat+xml": ["atomcat"],
|
|
207265
|
+
"application/atomdeleted+xml": ["atomdeleted"],
|
|
207266
|
+
"application/atomsvc+xml": ["atomsvc"],
|
|
207267
|
+
"application/atsc-dwd+xml": ["dwd"],
|
|
207268
|
+
"application/atsc-held+xml": ["held"],
|
|
207269
|
+
"application/atsc-rsat+xml": ["rsat"],
|
|
207270
|
+
"application/automationml-aml+xml": ["aml"],
|
|
207271
|
+
"application/automationml-amlx+zip": ["amlx"],
|
|
207272
|
+
"application/bdoc": ["bdoc"],
|
|
207273
|
+
"application/calendar+xml": ["xcs"],
|
|
207274
|
+
"application/ccxml+xml": ["ccxml"],
|
|
207275
|
+
"application/cdfx+xml": ["cdfx"],
|
|
207276
|
+
"application/cdmi-capability": ["cdmia"],
|
|
207277
|
+
"application/cdmi-container": ["cdmic"],
|
|
207278
|
+
"application/cdmi-domain": ["cdmid"],
|
|
207279
|
+
"application/cdmi-object": ["cdmio"],
|
|
207280
|
+
"application/cdmi-queue": ["cdmiq"],
|
|
207281
|
+
"application/cpl+xml": ["cpl"],
|
|
207282
|
+
"application/cu-seeme": ["cu"],
|
|
207283
|
+
"application/cwl": ["cwl"],
|
|
207284
|
+
"application/dash+xml": ["mpd"],
|
|
207285
|
+
"application/dash-patch+xml": ["mpp"],
|
|
207286
|
+
"application/davmount+xml": ["davmount"],
|
|
207287
|
+
"application/dicom": ["dcm"],
|
|
207288
|
+
"application/docbook+xml": ["dbk"],
|
|
207289
|
+
"application/dssc+der": ["dssc"],
|
|
207290
|
+
"application/dssc+xml": ["xdssc"],
|
|
207291
|
+
"application/ecmascript": ["ecma"],
|
|
207292
|
+
"application/emma+xml": ["emma"],
|
|
207293
|
+
"application/emotionml+xml": ["emotionml"],
|
|
207294
|
+
"application/epub+zip": ["epub"],
|
|
207295
|
+
"application/exi": ["exi"],
|
|
207296
|
+
"application/express": ["exp"],
|
|
207297
|
+
"application/fdf": ["fdf"],
|
|
207298
|
+
"application/fdt+xml": ["fdt"],
|
|
207299
|
+
"application/font-tdpfr": ["pfr"],
|
|
207300
|
+
"application/geo+json": ["geojson"],
|
|
207301
|
+
"application/gml+xml": ["gml"],
|
|
207302
|
+
"application/gpx+xml": ["gpx"],
|
|
207303
|
+
"application/gxf": ["gxf"],
|
|
207304
|
+
"application/gzip": ["gz"],
|
|
207305
|
+
"application/hjson": ["hjson"],
|
|
207306
|
+
"application/hyperstudio": ["stk"],
|
|
207307
|
+
"application/inkml+xml": ["ink", "inkml"],
|
|
207308
|
+
"application/ipfix": ["ipfix"],
|
|
207309
|
+
"application/its+xml": ["its"],
|
|
207310
|
+
"application/java-archive": ["jar", "war", "ear"],
|
|
207311
|
+
"application/java-serialized-object": ["ser"],
|
|
207312
|
+
"application/java-vm": ["class"],
|
|
207313
|
+
"application/javascript": ["*js"],
|
|
207314
|
+
"application/json": ["json", "map"],
|
|
207315
|
+
"application/json5": ["json5"],
|
|
207316
|
+
"application/jsonml+json": ["jsonml"],
|
|
207317
|
+
"application/ld+json": ["jsonld"],
|
|
207318
|
+
"application/lgr+xml": ["lgr"],
|
|
207319
|
+
"application/lost+xml": ["lostxml"],
|
|
207320
|
+
"application/mac-binhex40": ["hqx"],
|
|
207321
|
+
"application/mac-compactpro": ["cpt"],
|
|
207322
|
+
"application/mads+xml": ["mads"],
|
|
207323
|
+
"application/manifest+json": ["webmanifest"],
|
|
207324
|
+
"application/marc": ["mrc"],
|
|
207325
|
+
"application/marcxml+xml": ["mrcx"],
|
|
207326
|
+
"application/mathematica": ["ma", "nb", "mb"],
|
|
207327
|
+
"application/mathml+xml": ["mathml"],
|
|
207328
|
+
"application/mbox": ["mbox"],
|
|
207329
|
+
"application/media-policy-dataset+xml": ["mpf"],
|
|
207330
|
+
"application/mediaservercontrol+xml": ["mscml"],
|
|
207331
|
+
"application/metalink+xml": ["metalink"],
|
|
207332
|
+
"application/metalink4+xml": ["meta4"],
|
|
207333
|
+
"application/mets+xml": ["mets"],
|
|
207334
|
+
"application/mmt-aei+xml": ["maei"],
|
|
207335
|
+
"application/mmt-usd+xml": ["musd"],
|
|
207336
|
+
"application/mods+xml": ["mods"],
|
|
207337
|
+
"application/mp21": ["m21", "mp21"],
|
|
207338
|
+
"application/mp4": ["*mp4", "*mpg4", "mp4s", "m4p"],
|
|
207339
|
+
"application/msix": ["msix"],
|
|
207340
|
+
"application/msixbundle": ["msixbundle"],
|
|
207341
|
+
"application/msword": ["doc", "dot"],
|
|
207342
|
+
"application/mxf": ["mxf"],
|
|
207343
|
+
"application/n-quads": ["nq"],
|
|
207344
|
+
"application/n-triples": ["nt"],
|
|
207345
|
+
"application/node": ["cjs"],
|
|
207346
|
+
"application/octet-stream": [
|
|
207347
|
+
"bin",
|
|
207348
|
+
"dms",
|
|
207349
|
+
"lrf",
|
|
207350
|
+
"mar",
|
|
207351
|
+
"so",
|
|
207352
|
+
"dist",
|
|
207353
|
+
"distz",
|
|
207354
|
+
"pkg",
|
|
207355
|
+
"bpk",
|
|
207356
|
+
"dump",
|
|
207357
|
+
"elc",
|
|
207358
|
+
"deploy",
|
|
207359
|
+
"exe",
|
|
207360
|
+
"dll",
|
|
207361
|
+
"deb",
|
|
207362
|
+
"dmg",
|
|
207363
|
+
"iso",
|
|
207364
|
+
"img",
|
|
207365
|
+
"msi",
|
|
207366
|
+
"msp",
|
|
207367
|
+
"msm",
|
|
207368
|
+
"buffer"
|
|
207369
|
+
],
|
|
207370
|
+
"application/oda": ["oda"],
|
|
207371
|
+
"application/oebps-package+xml": ["opf"],
|
|
207372
|
+
"application/ogg": ["ogx"],
|
|
207373
|
+
"application/omdoc+xml": ["omdoc"],
|
|
207374
|
+
"application/onenote": [
|
|
207375
|
+
"onetoc",
|
|
207376
|
+
"onetoc2",
|
|
207377
|
+
"onetmp",
|
|
207378
|
+
"onepkg",
|
|
207379
|
+
"one",
|
|
207380
|
+
"onea"
|
|
207381
|
+
],
|
|
207382
|
+
"application/oxps": ["oxps"],
|
|
207383
|
+
"application/p2p-overlay+xml": ["relo"],
|
|
207384
|
+
"application/patch-ops-error+xml": ["xer"],
|
|
207385
|
+
"application/pdf": ["pdf"],
|
|
207386
|
+
"application/pgp-encrypted": ["pgp"],
|
|
207387
|
+
"application/pgp-keys": ["asc"],
|
|
207388
|
+
"application/pgp-signature": ["sig", "*asc"],
|
|
207389
|
+
"application/pics-rules": ["prf"],
|
|
207390
|
+
"application/pkcs10": ["p10"],
|
|
207391
|
+
"application/pkcs7-mime": ["p7m", "p7c"],
|
|
207392
|
+
"application/pkcs7-signature": ["p7s"],
|
|
207393
|
+
"application/pkcs8": ["p8"],
|
|
207394
|
+
"application/pkix-attr-cert": ["ac"],
|
|
207395
|
+
"application/pkix-cert": ["cer"],
|
|
207396
|
+
"application/pkix-crl": ["crl"],
|
|
207397
|
+
"application/pkix-pkipath": ["pkipath"],
|
|
207398
|
+
"application/pkixcmp": ["pki"],
|
|
207399
|
+
"application/pls+xml": ["pls"],
|
|
207400
|
+
"application/postscript": ["ai", "eps", "ps"],
|
|
207401
|
+
"application/provenance+xml": ["provx"],
|
|
207402
|
+
"application/pskc+xml": ["pskcxml"],
|
|
207403
|
+
"application/raml+yaml": ["raml"],
|
|
207404
|
+
"application/rdf+xml": ["rdf", "owl"],
|
|
207405
|
+
"application/reginfo+xml": ["rif"],
|
|
207406
|
+
"application/relax-ng-compact-syntax": ["rnc"],
|
|
207407
|
+
"application/resource-lists+xml": ["rl"],
|
|
207408
|
+
"application/resource-lists-diff+xml": ["rld"],
|
|
207409
|
+
"application/rls-services+xml": ["rs"],
|
|
207410
|
+
"application/route-apd+xml": ["rapd"],
|
|
207411
|
+
"application/route-s-tsid+xml": ["sls"],
|
|
207412
|
+
"application/route-usd+xml": ["rusd"],
|
|
207413
|
+
"application/rpki-ghostbusters": ["gbr"],
|
|
207414
|
+
"application/rpki-manifest": ["mft"],
|
|
207415
|
+
"application/rpki-roa": ["roa"],
|
|
207416
|
+
"application/rsd+xml": ["rsd"],
|
|
207417
|
+
"application/rss+xml": ["rss"],
|
|
207418
|
+
"application/rtf": ["rtf"],
|
|
207419
|
+
"application/sbml+xml": ["sbml"],
|
|
207420
|
+
"application/scvp-cv-request": ["scq"],
|
|
207421
|
+
"application/scvp-cv-response": ["scs"],
|
|
207422
|
+
"application/scvp-vp-request": ["spq"],
|
|
207423
|
+
"application/scvp-vp-response": ["spp"],
|
|
207424
|
+
"application/sdp": ["sdp"],
|
|
207425
|
+
"application/senml+xml": ["senmlx"],
|
|
207426
|
+
"application/sensml+xml": ["sensmlx"],
|
|
207427
|
+
"application/set-payment-initiation": ["setpay"],
|
|
207428
|
+
"application/set-registration-initiation": ["setreg"],
|
|
207429
|
+
"application/shf+xml": ["shf"],
|
|
207430
|
+
"application/sieve": ["siv", "sieve"],
|
|
207431
|
+
"application/smil+xml": ["smi", "smil"],
|
|
207432
|
+
"application/sparql-query": ["rq"],
|
|
207433
|
+
"application/sparql-results+xml": ["srx"],
|
|
207434
|
+
"application/sql": ["sql"],
|
|
207435
|
+
"application/srgs": ["gram"],
|
|
207436
|
+
"application/srgs+xml": ["grxml"],
|
|
207437
|
+
"application/sru+xml": ["sru"],
|
|
207438
|
+
"application/ssdl+xml": ["ssdl"],
|
|
207439
|
+
"application/ssml+xml": ["ssml"],
|
|
207440
|
+
"application/swid+xml": ["swidtag"],
|
|
207441
|
+
"application/tei+xml": ["tei", "teicorpus"],
|
|
207442
|
+
"application/thraud+xml": ["tfi"],
|
|
207443
|
+
"application/timestamped-data": ["tsd"],
|
|
207444
|
+
"application/toml": ["toml"],
|
|
207445
|
+
"application/trig": ["trig"],
|
|
207446
|
+
"application/ttml+xml": ["ttml"],
|
|
207447
|
+
"application/ubjson": ["ubj"],
|
|
207448
|
+
"application/urc-ressheet+xml": ["rsheet"],
|
|
207449
|
+
"application/urc-targetdesc+xml": ["td"],
|
|
207450
|
+
"application/voicexml+xml": ["vxml"],
|
|
207451
|
+
"application/wasm": ["wasm"],
|
|
207452
|
+
"application/watcherinfo+xml": ["wif"],
|
|
207453
|
+
"application/widget": ["wgt"],
|
|
207454
|
+
"application/winhlp": ["hlp"],
|
|
207455
|
+
"application/wsdl+xml": ["wsdl"],
|
|
207456
|
+
"application/wspolicy+xml": ["wspolicy"],
|
|
207457
|
+
"application/xaml+xml": ["xaml"],
|
|
207458
|
+
"application/xcap-att+xml": ["xav"],
|
|
207459
|
+
"application/xcap-caps+xml": ["xca"],
|
|
207460
|
+
"application/xcap-diff+xml": ["xdf"],
|
|
207461
|
+
"application/xcap-el+xml": ["xel"],
|
|
207462
|
+
"application/xcap-ns+xml": ["xns"],
|
|
207463
|
+
"application/xenc+xml": ["xenc"],
|
|
207464
|
+
"application/xfdf": ["xfdf"],
|
|
207465
|
+
"application/xhtml+xml": ["xhtml", "xht"],
|
|
207466
|
+
"application/xliff+xml": ["xlf"],
|
|
207467
|
+
"application/xml": ["xml", "xsl", "xsd", "rng"],
|
|
207468
|
+
"application/xml-dtd": ["dtd"],
|
|
207469
|
+
"application/xop+xml": ["xop"],
|
|
207470
|
+
"application/xproc+xml": ["xpl"],
|
|
207471
|
+
"application/xslt+xml": ["*xsl", "xslt"],
|
|
207472
|
+
"application/xspf+xml": ["xspf"],
|
|
207473
|
+
"application/xv+xml": ["mxml", "xhvml", "xvml", "xvm"],
|
|
207474
|
+
"application/yang": ["yang"],
|
|
207475
|
+
"application/yin+xml": ["yin"],
|
|
207476
|
+
"application/zip": ["zip"],
|
|
207477
|
+
"application/zip+dotlottie": ["lottie"],
|
|
207478
|
+
"audio/3gpp": ["*3gpp"],
|
|
207479
|
+
"audio/aac": ["adts", "aac"],
|
|
207480
|
+
"audio/adpcm": ["adp"],
|
|
207481
|
+
"audio/amr": ["amr"],
|
|
207482
|
+
"audio/basic": ["au", "snd"],
|
|
207483
|
+
"audio/midi": ["mid", "midi", "kar", "rmi"],
|
|
207484
|
+
"audio/mobile-xmf": ["mxmf"],
|
|
207485
|
+
"audio/mp3": ["*mp3"],
|
|
207486
|
+
"audio/mp4": ["m4a", "mp4a", "m4b"],
|
|
207487
|
+
"audio/mpeg": ["mpga", "mp2", "mp2a", "mp3", "m2a", "m3a"],
|
|
207488
|
+
"audio/ogg": ["oga", "ogg", "spx", "opus"],
|
|
207489
|
+
"audio/s3m": ["s3m"],
|
|
207490
|
+
"audio/silk": ["sil"],
|
|
207491
|
+
"audio/wav": ["wav"],
|
|
207492
|
+
"audio/wave": ["*wav"],
|
|
207493
|
+
"audio/webm": ["weba"],
|
|
207494
|
+
"audio/xm": ["xm"],
|
|
207495
|
+
"font/collection": ["ttc"],
|
|
207496
|
+
"font/otf": ["otf"],
|
|
207497
|
+
"font/ttf": ["ttf"],
|
|
207498
|
+
"font/woff": ["woff"],
|
|
207499
|
+
"font/woff2": ["woff2"],
|
|
207500
|
+
"image/aces": ["exr"],
|
|
207501
|
+
"image/apng": ["apng"],
|
|
207502
|
+
"image/avci": ["avci"],
|
|
207503
|
+
"image/avcs": ["avcs"],
|
|
207504
|
+
"image/avif": ["avif"],
|
|
207505
|
+
"image/bmp": ["bmp", "dib"],
|
|
207506
|
+
"image/cgm": ["cgm"],
|
|
207507
|
+
"image/dicom-rle": ["drle"],
|
|
207508
|
+
"image/dpx": ["dpx"],
|
|
207509
|
+
"image/emf": ["emf"],
|
|
207510
|
+
"image/fits": ["fits"],
|
|
207511
|
+
"image/g3fax": ["g3"],
|
|
207512
|
+
"image/gif": ["gif"],
|
|
207513
|
+
"image/heic": ["heic"],
|
|
207514
|
+
"image/heic-sequence": ["heics"],
|
|
207515
|
+
"image/heif": ["heif"],
|
|
207516
|
+
"image/heif-sequence": ["heifs"],
|
|
207517
|
+
"image/hej2k": ["hej2"],
|
|
207518
|
+
"image/ief": ["ief"],
|
|
207519
|
+
"image/jaii": ["jaii"],
|
|
207520
|
+
"image/jais": ["jais"],
|
|
207521
|
+
"image/jls": ["jls"],
|
|
207522
|
+
"image/jp2": ["jp2", "jpg2"],
|
|
207523
|
+
"image/jpeg": ["jpg", "jpeg", "jpe"],
|
|
207524
|
+
"image/jph": ["jph"],
|
|
207525
|
+
"image/jphc": ["jhc"],
|
|
207526
|
+
"image/jpm": ["jpm", "jpgm"],
|
|
207527
|
+
"image/jpx": ["jpx", "jpf"],
|
|
207528
|
+
"image/jxl": ["jxl"],
|
|
207529
|
+
"image/jxr": ["jxr"],
|
|
207530
|
+
"image/jxra": ["jxra"],
|
|
207531
|
+
"image/jxrs": ["jxrs"],
|
|
207532
|
+
"image/jxs": ["jxs"],
|
|
207533
|
+
"image/jxsc": ["jxsc"],
|
|
207534
|
+
"image/jxsi": ["jxsi"],
|
|
207535
|
+
"image/jxss": ["jxss"],
|
|
207536
|
+
"image/ktx": ["ktx"],
|
|
207537
|
+
"image/ktx2": ["ktx2"],
|
|
207538
|
+
"image/pjpeg": ["jfif"],
|
|
207539
|
+
"image/png": ["png"],
|
|
207540
|
+
"image/sgi": ["sgi"],
|
|
207541
|
+
"image/svg+xml": ["svg", "svgz"],
|
|
207542
|
+
"image/t38": ["t38"],
|
|
207543
|
+
"image/tiff": ["tif", "tiff"],
|
|
207544
|
+
"image/tiff-fx": ["tfx"],
|
|
207545
|
+
"image/webp": ["webp"],
|
|
207546
|
+
"image/wmf": ["wmf"],
|
|
207547
|
+
"message/disposition-notification": ["disposition-notification"],
|
|
207548
|
+
"message/global": ["u8msg"],
|
|
207549
|
+
"message/global-delivery-status": ["u8dsn"],
|
|
207550
|
+
"message/global-disposition-notification": ["u8mdn"],
|
|
207551
|
+
"message/global-headers": ["u8hdr"],
|
|
207552
|
+
"message/rfc822": ["eml", "mime", "mht", "mhtml"],
|
|
207553
|
+
"model/3mf": ["3mf"],
|
|
207554
|
+
"model/gltf+json": ["gltf"],
|
|
207555
|
+
"model/gltf-binary": ["glb"],
|
|
207556
|
+
"model/iges": ["igs", "iges"],
|
|
207557
|
+
"model/jt": ["jt"],
|
|
207558
|
+
"model/mesh": ["msh", "mesh", "silo"],
|
|
207559
|
+
"model/mtl": ["mtl"],
|
|
207560
|
+
"model/obj": ["obj"],
|
|
207561
|
+
"model/prc": ["prc"],
|
|
207562
|
+
"model/step": ["step", "stp", "stpnc", "p21", "210"],
|
|
207563
|
+
"model/step+xml": ["stpx"],
|
|
207564
|
+
"model/step+zip": ["stpz"],
|
|
207565
|
+
"model/step-xml+zip": ["stpxz"],
|
|
207566
|
+
"model/stl": ["stl"],
|
|
207567
|
+
"model/u3d": ["u3d"],
|
|
207568
|
+
"model/vrml": ["wrl", "vrml"],
|
|
207569
|
+
"model/x3d+binary": ["*x3db", "x3dbz"],
|
|
207570
|
+
"model/x3d+fastinfoset": ["x3db"],
|
|
207571
|
+
"model/x3d+vrml": ["*x3dv", "x3dvz"],
|
|
207572
|
+
"model/x3d+xml": ["x3d", "x3dz"],
|
|
207573
|
+
"model/x3d-vrml": ["x3dv"],
|
|
207574
|
+
"text/cache-manifest": ["appcache", "manifest"],
|
|
207575
|
+
"text/calendar": ["ics", "ifb"],
|
|
207576
|
+
"text/coffeescript": ["coffee", "litcoffee"],
|
|
207577
|
+
"text/css": ["css"],
|
|
207578
|
+
"text/csv": ["csv"],
|
|
207579
|
+
"text/html": ["html", "htm", "shtml"],
|
|
207580
|
+
"text/jade": ["jade"],
|
|
207581
|
+
"text/javascript": ["js", "mjs"],
|
|
207582
|
+
"text/jsx": ["jsx"],
|
|
207583
|
+
"text/less": ["less"],
|
|
207584
|
+
"text/markdown": ["md", "markdown"],
|
|
207585
|
+
"text/mathml": ["mml"],
|
|
207586
|
+
"text/mdx": ["mdx"],
|
|
207587
|
+
"text/n3": ["n3"],
|
|
207588
|
+
"text/plain": ["txt", "text", "conf", "def", "list", "log", "in", "ini"],
|
|
207589
|
+
"text/richtext": ["rtx"],
|
|
207590
|
+
"text/rtf": ["*rtf"],
|
|
207591
|
+
"text/sgml": ["sgml", "sgm"],
|
|
207592
|
+
"text/shex": ["shex"],
|
|
207593
|
+
"text/slim": ["slim", "slm"],
|
|
207594
|
+
"text/spdx": ["spdx"],
|
|
207595
|
+
"text/stylus": ["stylus", "styl"],
|
|
207596
|
+
"text/tab-separated-values": ["tsv"],
|
|
207597
|
+
"text/troff": ["t", "tr", "roff", "man", "me", "ms"],
|
|
207598
|
+
"text/turtle": ["ttl"],
|
|
207599
|
+
"text/uri-list": ["uri", "uris", "urls"],
|
|
207600
|
+
"text/vcard": ["vcard"],
|
|
207601
|
+
"text/vtt": ["vtt"],
|
|
207602
|
+
"text/wgsl": ["wgsl"],
|
|
207603
|
+
"text/xml": ["*xml"],
|
|
207604
|
+
"text/yaml": ["yaml", "yml"],
|
|
207605
|
+
"video/3gpp": ["3gp", "3gpp"],
|
|
207606
|
+
"video/3gpp2": ["3g2"],
|
|
207607
|
+
"video/h261": ["h261"],
|
|
207608
|
+
"video/h263": ["h263"],
|
|
207609
|
+
"video/h264": ["h264"],
|
|
207610
|
+
"video/iso.segment": ["m4s"],
|
|
207611
|
+
"video/jpeg": ["jpgv"],
|
|
207612
|
+
"video/jpm": ["*jpm", "*jpgm"],
|
|
207613
|
+
"video/mj2": ["mj2", "mjp2"],
|
|
207614
|
+
"video/mp2t": ["ts", "m2t", "m2ts", "mts"],
|
|
207615
|
+
"video/mp4": ["mp4", "mp4v", "mpg4"],
|
|
207616
|
+
"video/mpeg": ["mpeg", "mpg", "mpe", "m1v", "m2v"],
|
|
207617
|
+
"video/ogg": ["ogv"],
|
|
207618
|
+
"video/quicktime": ["qt", "mov"],
|
|
207619
|
+
"video/webm": ["webm"]
|
|
207620
|
+
};
|
|
207621
|
+
Object.freeze(types2);
|
|
207622
|
+
var standard_default = types2;
|
|
207623
|
+
|
|
207624
|
+
// ../../node_modules/.pnpm/mime@4.1.0/node_modules/mime/dist/src/Mime.js
|
|
207625
|
+
var __classPrivateFieldGet = function(receiver2, state, kind, f) {
|
|
207626
|
+
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
|
207627
|
+
if (typeof state === "function" ? receiver2 !== state || !f : !state.has(receiver2)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
207628
|
+
return kind === "m" ? f : kind === "a" ? f.call(receiver2) : f ? f.value : state.get(receiver2);
|
|
207629
|
+
};
|
|
207630
|
+
var _Mime_extensionToType;
|
|
207631
|
+
var _Mime_typeToExtension;
|
|
207632
|
+
var _Mime_typeToExtensions;
|
|
207633
|
+
var Mime = class {
|
|
207634
|
+
constructor(...args) {
|
|
207635
|
+
_Mime_extensionToType.set(this, /* @__PURE__ */ new Map());
|
|
207636
|
+
_Mime_typeToExtension.set(this, /* @__PURE__ */ new Map());
|
|
207637
|
+
_Mime_typeToExtensions.set(this, /* @__PURE__ */ new Map());
|
|
207638
|
+
for (const arg of args) {
|
|
207639
|
+
this.define(arg);
|
|
207640
|
+
}
|
|
207641
|
+
}
|
|
207642
|
+
define(typeMap, force = false) {
|
|
207643
|
+
for (let [type, extensions] of Object.entries(typeMap)) {
|
|
207644
|
+
type = type.toLowerCase();
|
|
207645
|
+
extensions = extensions.map((ext2) => ext2.toLowerCase());
|
|
207646
|
+
if (!__classPrivateFieldGet(this, _Mime_typeToExtensions, "f").has(type)) {
|
|
207647
|
+
__classPrivateFieldGet(this, _Mime_typeToExtensions, "f").set(type, /* @__PURE__ */ new Set());
|
|
207648
|
+
}
|
|
207649
|
+
const allExtensions = __classPrivateFieldGet(this, _Mime_typeToExtensions, "f").get(type);
|
|
207650
|
+
let first = true;
|
|
207651
|
+
for (let extension of extensions) {
|
|
207652
|
+
const starred = extension.startsWith("*");
|
|
207653
|
+
extension = starred ? extension.slice(1) : extension;
|
|
207654
|
+
allExtensions?.add(extension);
|
|
207655
|
+
if (first) {
|
|
207656
|
+
__classPrivateFieldGet(this, _Mime_typeToExtension, "f").set(type, extension);
|
|
207657
|
+
}
|
|
207658
|
+
first = false;
|
|
207659
|
+
if (starred)
|
|
207660
|
+
continue;
|
|
207661
|
+
const currentType = __classPrivateFieldGet(this, _Mime_extensionToType, "f").get(extension);
|
|
207662
|
+
if (currentType && currentType != type && !force) {
|
|
207663
|
+
throw new Error(`"${type} -> ${extension}" conflicts with "${currentType} -> ${extension}". Pass \`force=true\` to override this definition.`);
|
|
207664
|
+
}
|
|
207665
|
+
__classPrivateFieldGet(this, _Mime_extensionToType, "f").set(extension, type);
|
|
207666
|
+
}
|
|
207667
|
+
}
|
|
207668
|
+
return this;
|
|
207669
|
+
}
|
|
207670
|
+
getType(path17) {
|
|
207671
|
+
if (typeof path17 !== "string")
|
|
207672
|
+
return null;
|
|
207673
|
+
const last4 = path17.replace(/^.*[/\\]/s, "").toLowerCase();
|
|
207674
|
+
const ext2 = last4.replace(/^.*\./s, "").toLowerCase();
|
|
207675
|
+
const hasPath = last4.length < path17.length;
|
|
207676
|
+
const hasDot = ext2.length < last4.length - 1;
|
|
207677
|
+
if (!hasDot && hasPath)
|
|
207678
|
+
return null;
|
|
207679
|
+
return __classPrivateFieldGet(this, _Mime_extensionToType, "f").get(ext2) ?? null;
|
|
207680
|
+
}
|
|
207681
|
+
getExtension(type) {
|
|
207682
|
+
if (typeof type !== "string")
|
|
207683
|
+
return null;
|
|
207684
|
+
type = type?.split?.(";")[0];
|
|
207685
|
+
return (type && __classPrivateFieldGet(this, _Mime_typeToExtension, "f").get(type.trim().toLowerCase())) ?? null;
|
|
207686
|
+
}
|
|
207687
|
+
getAllExtensions(type) {
|
|
207688
|
+
if (typeof type !== "string")
|
|
207689
|
+
return null;
|
|
207690
|
+
return __classPrivateFieldGet(this, _Mime_typeToExtensions, "f").get(type.toLowerCase()) ?? null;
|
|
207691
|
+
}
|
|
207692
|
+
_freeze() {
|
|
207693
|
+
this.define = () => {
|
|
207694
|
+
throw new Error("define() not allowed for built-in Mime objects. See https://github.com/broofa/mime/blob/main/README.md#custom-mime-instances");
|
|
207695
|
+
};
|
|
207696
|
+
Object.freeze(this);
|
|
207697
|
+
for (const extensions of __classPrivateFieldGet(this, _Mime_typeToExtensions, "f").values()) {
|
|
207698
|
+
Object.freeze(extensions);
|
|
207699
|
+
}
|
|
207700
|
+
return this;
|
|
207701
|
+
}
|
|
207702
|
+
_getTestState() {
|
|
207703
|
+
return {
|
|
207704
|
+
types: __classPrivateFieldGet(this, _Mime_extensionToType, "f"),
|
|
207705
|
+
extensions: __classPrivateFieldGet(this, _Mime_typeToExtension, "f")
|
|
207706
|
+
};
|
|
207707
|
+
}
|
|
207708
|
+
};
|
|
207709
|
+
_Mime_extensionToType = /* @__PURE__ */ new WeakMap(), _Mime_typeToExtension = /* @__PURE__ */ new WeakMap(), _Mime_typeToExtensions = /* @__PURE__ */ new WeakMap();
|
|
207710
|
+
var Mime_default = Mime;
|
|
207711
|
+
|
|
207712
|
+
// ../../node_modules/.pnpm/mime@4.1.0/node_modules/mime/dist/src/index.js
|
|
207713
|
+
var src_default = new Mime_default(standard_default, other_default)._freeze();
|
|
207714
|
+
|
|
207715
|
+
// ../util/dist/common/mime.js
|
|
207716
|
+
var compressedMimeTypes = /* @__PURE__ */ new Set([
|
|
207717
|
+
"application/atom+xml",
|
|
207718
|
+
"application/javascript",
|
|
207719
|
+
"application/json",
|
|
207720
|
+
"application/ld+json",
|
|
207721
|
+
"application/manifest+json",
|
|
207722
|
+
"application/rdf+xml",
|
|
207723
|
+
"application/rss+xml",
|
|
207724
|
+
"application/schema+json",
|
|
207725
|
+
"application/vnd.geo+json",
|
|
207726
|
+
"application/vnd.ms-fontobject",
|
|
207727
|
+
"application/x-font-ttf",
|
|
207728
|
+
"application/x-javascript",
|
|
207729
|
+
"application/x-web-app-manifest+json",
|
|
207730
|
+
"application/xhtml+xml",
|
|
207731
|
+
"application/xml",
|
|
207732
|
+
"font/eot",
|
|
207733
|
+
"font/otf",
|
|
207734
|
+
"font/opentype",
|
|
207735
|
+
"image/bmp",
|
|
207736
|
+
"image/svg+xml",
|
|
207737
|
+
"image/vnd.microsoft.icon",
|
|
207738
|
+
"image/x-icon",
|
|
207739
|
+
"text/cache-manifest",
|
|
207740
|
+
"text/css",
|
|
207741
|
+
"text/html",
|
|
207742
|
+
"text/javascript",
|
|
207743
|
+
"text/plain",
|
|
207744
|
+
"text/vcard",
|
|
207745
|
+
"text/vnd.rim.location.xloc",
|
|
207746
|
+
"text/vtt",
|
|
207747
|
+
"text/x-component",
|
|
207748
|
+
"text/x-cross-domain-policy",
|
|
207749
|
+
"text/xml"
|
|
207750
|
+
]);
|
|
207751
|
+
var DEFAULT_TYPE = src_default.getType("bin");
|
|
207752
|
+
function shouldCompress(src) {
|
|
207753
|
+
const mimeType = src_default.getType(src);
|
|
207754
|
+
return Boolean(mimeType && compressedMimeTypes.has(mimeType));
|
|
207755
|
+
}
|
|
207756
|
+
|
|
207757
|
+
// ../util/dist/common/strings.js
|
|
207758
|
+
var import_camelCase = __toESM(require_camelCase(), 1);
|
|
207759
|
+
var import_deburr = __toESM(require_deburr(), 1);
|
|
207760
|
+
var import_isEmpty = __toESM(require_isEmpty(), 1);
|
|
207761
|
+
var import_isNil = __toESM(require_isNil(), 1);
|
|
207762
|
+
var import_isString = __toESM(require_isString(), 1);
|
|
207763
|
+
var import_upperFirst = __toESM(require_upperFirst(), 1);
|
|
207764
|
+
var import_words = __toESM(require_words(), 1);
|
|
207765
|
+
var camelCase = import_camelCase.default;
|
|
207766
|
+
function formatShapeName(str, options2) {
|
|
207767
|
+
const strings = ensureArray2(str);
|
|
207768
|
+
const shapeNameIndex = options2?.shapeNameIndex ?? 0;
|
|
207769
|
+
const shapeName18 = strings.at(shapeNameIndex);
|
|
207770
|
+
if (!shapeName18) {
|
|
207771
|
+
throw new Error(`Could not find a ShapeName at index '${shapeNameIndex}'`);
|
|
207772
|
+
}
|
|
207773
|
+
const prefix = strings.slice(0, Math.max(shapeNameIndex, 0));
|
|
207774
|
+
const suffix = strings.slice(shapeNameIndex + 1);
|
|
207775
|
+
let arr = [];
|
|
207776
|
+
if (prefix) {
|
|
207777
|
+
arr = [...arr, pascalCase(prefix)];
|
|
207778
|
+
}
|
|
207779
|
+
if (shapeName18.length > 2 && shapeName18.startsWith("TS") && shapeName18.charAt(2) === shapeName18.charAt(2).toUpperCase()) {
|
|
207780
|
+
arr = [...arr, shapeName18];
|
|
207781
|
+
} else {
|
|
207782
|
+
arr = [...arr, pascalCase(shapeName18)];
|
|
207783
|
+
}
|
|
207784
|
+
if (suffix) {
|
|
207785
|
+
arr = [...arr, pascalCase(suffix)];
|
|
207786
|
+
}
|
|
207787
|
+
return arr.join("");
|
|
207788
|
+
}
|
|
207789
|
+
function pascalCase(str) {
|
|
207790
|
+
return (0, import_upperFirst.default)(camelCase(str));
|
|
207791
|
+
}
|
|
207792
|
+
function isIntegerLike(value2) {
|
|
207793
|
+
if (typeof value2 === "number") {
|
|
207794
|
+
return true;
|
|
207795
|
+
}
|
|
207796
|
+
return /^\d+$/.test(value2);
|
|
207797
|
+
}
|
|
207798
|
+
|
|
207799
|
+
// ../util/dist/common/visit.js
|
|
207800
|
+
var import_isObject = __toESM(require_isObject(), 1);
|
|
207801
|
+
function visit3(tree, keys, callback) {
|
|
207802
|
+
const traverse = (obj2, path17) => {
|
|
207803
|
+
for (const [key, value2] of Object.entries(obj2)) {
|
|
207804
|
+
if (keys.includes(key)) {
|
|
207805
|
+
callback(value2, [...path17, key]);
|
|
207806
|
+
}
|
|
207807
|
+
if ((0, import_isObject.default)(value2)) {
|
|
207808
|
+
traverse(value2, [...path17, key]);
|
|
207809
|
+
}
|
|
207810
|
+
}
|
|
207811
|
+
};
|
|
207812
|
+
traverse(tree, []);
|
|
207813
|
+
}
|
|
207814
|
+
|
|
207815
|
+
// ../util/dist/node/buffer.js
|
|
207816
|
+
function bufferToArrayBuffer(buffer) {
|
|
207817
|
+
return buffer.buffer.slice(buffer.byteOffset, buffer.byteOffset + buffer.byteLength);
|
|
207818
|
+
}
|
|
207819
|
+
|
|
207820
|
+
// ../util/dist/node/gzip.js
|
|
207821
|
+
var import_node_buffer = require("node:buffer");
|
|
207822
|
+
var import_node_util = require("node:util");
|
|
207823
|
+
var import_node_zlib = __toESM(require("node:zlib"), 1);
|
|
207824
|
+
var _gzip = (0, import_node_util.promisify)(import_node_zlib.default.gzip);
|
|
207825
|
+
function gzip(buffer, options2) {
|
|
207826
|
+
return _gzip(import_node_buffer.Buffer.isBuffer(buffer) ? bufferToArrayBuffer(buffer) : buffer, options2);
|
|
207827
|
+
}
|
|
207828
|
+
var _gunzip = (0, import_node_util.promisify)(import_node_zlib.default.gunzip);
|
|
207829
|
+
|
|
207830
|
+
// ../ssg/dist/gzip.js
|
|
207831
|
+
function gzipContents(renderTemplate) {
|
|
207832
|
+
return async (path17, template, context) => {
|
|
207833
|
+
const item2 = await renderTemplate(path17, template, context);
|
|
207834
|
+
if (shouldCompress(item2.path)) {
|
|
207835
|
+
return {
|
|
207836
|
+
path: item2.path,
|
|
207837
|
+
contents: await gzip(item2.contents)
|
|
207838
|
+
};
|
|
207839
|
+
}
|
|
207840
|
+
return item2;
|
|
207841
|
+
};
|
|
207842
|
+
}
|
|
207843
|
+
|
|
207844
|
+
// ../ssg/dist/nunjucks.js
|
|
207845
|
+
var import_node_path3 = __toESM(require("node:path"), 1);
|
|
207846
|
+
var import_vm_nunjucks2 = __toESM(require_lib12(), 1);
|
|
207847
|
+
|
|
207848
|
+
// ../ssg/dist/filters/array-filters.js
|
|
207849
|
+
var import_intersectionBy = __toESM(require_intersectionBy(), 1);
|
|
207850
|
+
var import_unionBy = __toESM(require_unionBy(), 1);
|
|
207851
|
+
|
|
207852
|
+
// ../prism/dist/index.js
|
|
207853
|
+
var __create2 = Object.create;
|
|
207854
|
+
var __defProp2 = Object.defineProperty;
|
|
207855
|
+
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
|
207856
|
+
var __getOwnPropNames2 = Object.getOwnPropertyNames;
|
|
207857
|
+
var __getProtoOf2 = Object.getPrototypeOf;
|
|
207858
|
+
var __hasOwnProp2 = Object.prototype.hasOwnProperty;
|
|
207859
|
+
var __commonJS2 = (cb, mod) => function __require() {
|
|
207860
|
+
return mod || (0, cb[__getOwnPropNames2(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
207861
|
+
};
|
|
207862
|
+
var __copyProps2 = (to, from, except, desc) => {
|
|
207863
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
207864
|
+
for (let key of __getOwnPropNames2(from))
|
|
207865
|
+
if (!__hasOwnProp2.call(to, key) && key !== except)
|
|
207866
|
+
__defProp2(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc2(from, key)) || desc.enumerable });
|
|
207867
|
+
}
|
|
207868
|
+
return to;
|
|
207869
|
+
};
|
|
207870
|
+
var __toESM2 = (mod, isNodeMode, target) => (target = mod != null ? __create2(__getProtoOf2(mod)) : {}, __copyProps2(
|
|
207871
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
207872
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
207873
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
207874
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
207875
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp2(target, "default", { value: mod, enumerable: true }) : target,
|
|
207876
|
+
mod
|
|
207877
|
+
));
|
|
207878
|
+
var require_basePropertyOf2 = __commonJS2({
|
|
207879
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_basePropertyOf.js"(exports2, module2) {
|
|
207880
|
+
function basePropertyOf(object2) {
|
|
207881
|
+
return function(key) {
|
|
207882
|
+
return object2 == null ? void 0 : object2[key];
|
|
207883
|
+
};
|
|
207884
|
+
}
|
|
207885
|
+
module2.exports = basePropertyOf;
|
|
207886
|
+
}
|
|
207887
|
+
});
|
|
207888
|
+
var require_escapeHtmlChar = __commonJS2({
|
|
207889
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_escapeHtmlChar.js"(exports2, module2) {
|
|
207890
|
+
var basePropertyOf = require_basePropertyOf2();
|
|
207891
|
+
var htmlEscapes = {
|
|
207892
|
+
"&": "&",
|
|
207893
|
+
"<": "<",
|
|
207894
|
+
">": ">",
|
|
207895
|
+
'"': """,
|
|
207896
|
+
"'": "'"
|
|
207897
|
+
};
|
|
207898
|
+
var escapeHtmlChar = basePropertyOf(htmlEscapes);
|
|
207899
|
+
module2.exports = escapeHtmlChar;
|
|
207900
|
+
}
|
|
207901
|
+
});
|
|
207902
|
+
var require_freeGlobal2 = __commonJS2({
|
|
207903
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_freeGlobal.js"(exports2, module2) {
|
|
207904
|
+
var freeGlobal = typeof global == "object" && global && global.Object === Object && global;
|
|
207905
|
+
module2.exports = freeGlobal;
|
|
207906
|
+
}
|
|
207907
|
+
});
|
|
207908
|
+
var require_root2 = __commonJS2({
|
|
207909
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_root.js"(exports2, module2) {
|
|
207910
|
+
var freeGlobal = require_freeGlobal2();
|
|
207911
|
+
var freeSelf = typeof self == "object" && self && self.Object === Object && self;
|
|
207912
|
+
var root = freeGlobal || freeSelf || Function("return this")();
|
|
207913
|
+
module2.exports = root;
|
|
207914
|
+
}
|
|
207915
|
+
});
|
|
207916
|
+
var require_Symbol2 = __commonJS2({
|
|
207917
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Symbol.js"(exports2, module2) {
|
|
207918
|
+
var root = require_root2();
|
|
207919
|
+
var Symbol2 = root.Symbol;
|
|
207920
|
+
module2.exports = Symbol2;
|
|
207921
|
+
}
|
|
207922
|
+
});
|
|
207923
|
+
var require_arrayMap2 = __commonJS2({
|
|
207924
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayMap.js"(exports2, module2) {
|
|
207925
|
+
function arrayMap(array, iteratee) {
|
|
207926
|
+
var index2 = -1, length = array == null ? 0 : array.length, result = Array(length);
|
|
207927
|
+
while (++index2 < length) {
|
|
207928
|
+
result[index2] = iteratee(array[index2], index2, array);
|
|
207929
|
+
}
|
|
207930
|
+
return result;
|
|
207931
|
+
}
|
|
207932
|
+
module2.exports = arrayMap;
|
|
207933
|
+
}
|
|
207934
|
+
});
|
|
207935
|
+
var require_isArray2 = __commonJS2({
|
|
207936
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isArray.js"(exports2, module2) {
|
|
207937
|
+
var isArray3 = Array.isArray;
|
|
207938
|
+
module2.exports = isArray3;
|
|
207939
|
+
}
|
|
207940
|
+
});
|
|
207941
|
+
var require_getRawTag2 = __commonJS2({
|
|
207942
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getRawTag.js"(exports2, module2) {
|
|
207943
|
+
var Symbol2 = require_Symbol2();
|
|
207944
|
+
var objectProto = Object.prototype;
|
|
207945
|
+
var hasOwnProperty3 = objectProto.hasOwnProperty;
|
|
207946
|
+
var nativeObjectToString = objectProto.toString;
|
|
207947
|
+
var symToStringTag = Symbol2 ? Symbol2.toStringTag : void 0;
|
|
207948
|
+
function getRawTag(value2) {
|
|
207949
|
+
var isOwn = hasOwnProperty3.call(value2, symToStringTag), tag3 = value2[symToStringTag];
|
|
207950
|
+
try {
|
|
207951
|
+
value2[symToStringTag] = void 0;
|
|
207952
|
+
var unmasked = true;
|
|
207953
|
+
} catch (e2) {
|
|
207954
|
+
}
|
|
207955
|
+
var result = nativeObjectToString.call(value2);
|
|
207956
|
+
if (unmasked) {
|
|
207957
|
+
if (isOwn) {
|
|
207958
|
+
value2[symToStringTag] = tag3;
|
|
207959
|
+
} else {
|
|
207960
|
+
delete value2[symToStringTag];
|
|
207961
|
+
}
|
|
207962
|
+
}
|
|
207963
|
+
return result;
|
|
207964
|
+
}
|
|
207965
|
+
module2.exports = getRawTag;
|
|
207966
|
+
}
|
|
207967
|
+
});
|
|
207968
|
+
var require_objectToString2 = __commonJS2({
|
|
207969
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_objectToString.js"(exports2, module2) {
|
|
207970
|
+
var objectProto = Object.prototype;
|
|
207971
|
+
var nativeObjectToString = objectProto.toString;
|
|
207972
|
+
function objectToString(value2) {
|
|
207973
|
+
return nativeObjectToString.call(value2);
|
|
207974
|
+
}
|
|
207975
|
+
module2.exports = objectToString;
|
|
207976
|
+
}
|
|
207977
|
+
});
|
|
207978
|
+
var require_baseGetTag2 = __commonJS2({
|
|
207979
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseGetTag.js"(exports2, module2) {
|
|
207980
|
+
var Symbol2 = require_Symbol2();
|
|
207981
|
+
var getRawTag = require_getRawTag2();
|
|
207982
|
+
var objectToString = require_objectToString2();
|
|
207983
|
+
var nullTag = "[object Null]";
|
|
207984
|
+
var undefinedTag = "[object Undefined]";
|
|
207985
|
+
var symToStringTag = Symbol2 ? Symbol2.toStringTag : void 0;
|
|
207986
|
+
function baseGetTag(value2) {
|
|
207987
|
+
if (value2 == null) {
|
|
207988
|
+
return value2 === void 0 ? undefinedTag : nullTag;
|
|
207989
|
+
}
|
|
207990
|
+
return symToStringTag && symToStringTag in Object(value2) ? getRawTag(value2) : objectToString(value2);
|
|
207991
|
+
}
|
|
207992
|
+
module2.exports = baseGetTag;
|
|
207993
|
+
}
|
|
207994
|
+
});
|
|
207995
|
+
var require_isObjectLike3 = __commonJS2({
|
|
207996
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isObjectLike.js"(exports2, module2) {
|
|
207997
|
+
function isObjectLike2(value2) {
|
|
207998
|
+
return value2 != null && typeof value2 == "object";
|
|
207999
|
+
}
|
|
208000
|
+
module2.exports = isObjectLike2;
|
|
208001
|
+
}
|
|
208002
|
+
});
|
|
208003
|
+
var require_isSymbol2 = __commonJS2({
|
|
208004
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isSymbol.js"(exports2, module2) {
|
|
208005
|
+
var baseGetTag = require_baseGetTag2();
|
|
208006
|
+
var isObjectLike2 = require_isObjectLike3();
|
|
208007
|
+
var symbolTag = "[object Symbol]";
|
|
208008
|
+
function isSymbol(value2) {
|
|
208009
|
+
return typeof value2 == "symbol" || isObjectLike2(value2) && baseGetTag(value2) == symbolTag;
|
|
208010
|
+
}
|
|
208011
|
+
module2.exports = isSymbol;
|
|
208012
|
+
}
|
|
208013
|
+
});
|
|
208014
|
+
var require_baseToString2 = __commonJS2({
|
|
208015
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseToString.js"(exports2, module2) {
|
|
208016
|
+
var Symbol2 = require_Symbol2();
|
|
208017
|
+
var arrayMap = require_arrayMap2();
|
|
208018
|
+
var isArray3 = require_isArray2();
|
|
208019
|
+
var isSymbol = require_isSymbol2();
|
|
208020
|
+
var INFINITY = 1 / 0;
|
|
208021
|
+
var symbolProto = Symbol2 ? Symbol2.prototype : void 0;
|
|
208022
|
+
var symbolToString = symbolProto ? symbolProto.toString : void 0;
|
|
208023
|
+
function baseToString(value2) {
|
|
208024
|
+
if (typeof value2 == "string") {
|
|
208025
|
+
return value2;
|
|
208026
|
+
}
|
|
208027
|
+
if (isArray3(value2)) {
|
|
208028
|
+
return arrayMap(value2, baseToString) + "";
|
|
208029
|
+
}
|
|
208030
|
+
if (isSymbol(value2)) {
|
|
208031
|
+
return symbolToString ? symbolToString.call(value2) : "";
|
|
208032
|
+
}
|
|
208033
|
+
var result = value2 + "";
|
|
208034
|
+
return result == "0" && 1 / value2 == -INFINITY ? "-0" : result;
|
|
208035
|
+
}
|
|
208036
|
+
module2.exports = baseToString;
|
|
208037
|
+
}
|
|
208038
|
+
});
|
|
208039
|
+
var require_toString2 = __commonJS2({
|
|
208040
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/toString.js"(exports2, module2) {
|
|
208041
|
+
var baseToString = require_baseToString2();
|
|
208042
|
+
function toString(value2) {
|
|
208043
|
+
return value2 == null ? "" : baseToString(value2);
|
|
208044
|
+
}
|
|
208045
|
+
module2.exports = toString;
|
|
208046
|
+
}
|
|
208047
|
+
});
|
|
208048
|
+
var require_escape = __commonJS2({
|
|
208049
|
+
"../../node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/escape.js"(exports2, module2) {
|
|
208050
|
+
var escapeHtmlChar = require_escapeHtmlChar();
|
|
208051
|
+
var toString = require_toString2();
|
|
208052
|
+
var reUnescapedHtml = /[&<>"']/g;
|
|
208053
|
+
var reHasUnescapedHtml = RegExp(reUnescapedHtml.source);
|
|
208054
|
+
function escape2(string) {
|
|
208055
|
+
string = toString(string);
|
|
208056
|
+
return string && reHasUnescapedHtml.test(string) ? string.replace(reUnescapedHtml, escapeHtmlChar) : string;
|
|
208057
|
+
}
|
|
208058
|
+
module2.exports = escape2;
|
|
208059
|
+
}
|
|
208060
|
+
});
|
|
208061
|
+
var require_prismjs = __commonJS2({
|
|
208062
|
+
"prismjs-ns:prismjs"(exports2, module2) {
|
|
208063
|
+
var _self = typeof window !== "undefined" ? window : typeof WorkerGlobalScope !== "undefined" && self instanceof WorkerGlobalScope ? self : {};
|
|
208064
|
+
var Prism2 = function(_self2) {
|
|
208065
|
+
var lang = /(?:^|\s)lang(?:uage)?-([\w-]+)(?=\s|$)/i;
|
|
208066
|
+
var uniqueId = 0;
|
|
208067
|
+
var plainTextGrammar = {};
|
|
208068
|
+
var _ = {
|
|
208069
|
+
/**
|
|
208070
|
+
* By default, Prism will attempt to highlight all code elements (by calling {@link Prism.highlightAll}) on the
|
|
208071
|
+
* current page after the page finished loading. This might be a problem if e.g. you wanted to asynchronously load
|
|
208072
|
+
* additional languages or plugins yourself.
|
|
208073
|
+
*
|
|
208074
|
+
* By setting this value to `true`, Prism will not automatically highlight all code elements on the page.
|
|
208075
|
+
*
|
|
208076
|
+
* You obviously have to change this value before the automatic highlighting started. To do this, you can add an
|
|
208077
|
+
* empty Prism object into the global scope before loading the Prism script like this:
|
|
208078
|
+
*
|
|
208079
|
+
* ```js
|
|
208080
|
+
* window.Prism = window.Prism || {};
|
|
208081
|
+
* Prism.manual = true;
|
|
208082
|
+
* // add a new <script> to load Prism's script
|
|
208083
|
+
* ```
|
|
208084
|
+
*
|
|
208085
|
+
* @default false
|
|
208086
|
+
* @type {boolean}
|
|
208087
|
+
* @memberof Prism
|
|
208088
|
+
* @public
|
|
208089
|
+
*/
|
|
208090
|
+
manual: _self2.Prism && _self2.Prism.manual,
|
|
208091
|
+
/**
|
|
208092
|
+
* By default, if Prism is in a web worker, it assumes that it is in a worker it created itself, so it uses
|
|
208093
|
+
* `addEventListener` to communicate with its parent instance. However, if you're using Prism manually in your
|
|
208094
|
+
* own worker, you don't want it to do this.
|
|
208095
|
+
*
|
|
208096
|
+
* By setting this value to `true`, Prism will not add its own listeners to the worker.
|
|
208097
|
+
*
|
|
208098
|
+
* You obviously have to change this value before Prism executes. To do this, you can add an
|
|
208099
|
+
* empty Prism object into the global scope before loading the Prism script like this:
|
|
208100
|
+
*
|
|
208101
|
+
* ```js
|
|
208102
|
+
* window.Prism = window.Prism || {};
|
|
208103
|
+
* Prism.disableWorkerMessageHandler = true;
|
|
208104
|
+
* // Load Prism's script
|
|
208105
|
+
* ```
|
|
208106
|
+
*
|
|
208107
|
+
* @default false
|
|
208108
|
+
* @type {boolean}
|
|
208109
|
+
* @memberof Prism
|
|
208110
|
+
* @public
|
|
208111
|
+
*/
|
|
208112
|
+
disableWorkerMessageHandler: _self2.Prism && _self2.Prism.disableWorkerMessageHandler,
|
|
208113
|
+
/**
|
|
208114
|
+
* A namespace for utility methods.
|
|
208115
|
+
*
|
|
208116
|
+
* All function in this namespace that are not explicitly marked as _public_ are for __internal use only__ and may
|
|
208117
|
+
* change or disappear at any time.
|
|
208118
|
+
*
|
|
208119
|
+
* @namespace
|
|
208120
|
+
* @memberof Prism
|
|
208121
|
+
*/
|
|
208122
|
+
util: {
|
|
208123
|
+
encode: function encode2(tokens) {
|
|
208124
|
+
if (tokens instanceof Token) {
|
|
208125
|
+
return new Token(tokens.type, encode2(tokens.content), tokens.alias);
|
|
208126
|
+
} else if (Array.isArray(tokens)) {
|
|
208127
|
+
return tokens.map(encode2);
|
|
208128
|
+
} else {
|
|
208129
|
+
return tokens.replace(/&/g, "&").replace(/</g, "<").replace(/\u00a0/g, " ");
|
|
208130
|
+
}
|
|
208131
|
+
},
|
|
208132
|
+
/**
|
|
206790
208133
|
* Returns the name of the type of the given value.
|
|
206791
208134
|
*
|
|
206792
208135
|
* @param {any} o
|
|
@@ -208398,1349 +209741,6 @@ function highlightCode(code2, language) {
|
|
|
208398
209741
|
return (0, import_escape.default)(code2);
|
|
208399
209742
|
}
|
|
208400
209743
|
|
|
208401
|
-
// ../../node_modules/.pnpm/browser-or-node@3.0.0/node_modules/browser-or-node/dist/index.mjs
|
|
208402
|
-
var isBrowser = typeof window !== "undefined" && typeof window.document !== "undefined";
|
|
208403
|
-
var isNode2 = (
|
|
208404
|
-
// @ts-expect-error
|
|
208405
|
-
typeof process !== "undefined" && // @ts-expect-error
|
|
208406
|
-
process.versions != null && // @ts-expect-error
|
|
208407
|
-
process.versions.node != null
|
|
208408
|
-
);
|
|
208409
|
-
var isWebWorker = typeof self === "object" && self.constructor && self.constructor.name === "DedicatedWorkerGlobalScope";
|
|
208410
|
-
var isJsDom = typeof window !== "undefined" && window.name === "nodejs" || typeof navigator !== "undefined" && "userAgent" in navigator && typeof navigator.userAgent === "string" && (navigator.userAgent.includes("Node.js") || navigator.userAgent.includes("jsdom"));
|
|
208411
|
-
var isDeno = (
|
|
208412
|
-
// @ts-expect-error
|
|
208413
|
-
typeof Deno !== "undefined" && // @ts-expect-error
|
|
208414
|
-
typeof Deno.version !== "undefined" && // @ts-expect-error
|
|
208415
|
-
typeof Deno.version.deno !== "undefined"
|
|
208416
|
-
);
|
|
208417
|
-
var isBun = typeof process !== "undefined" && process.versions != null && process.versions.bun != null;
|
|
208418
|
-
|
|
208419
|
-
// ../util/dist/common/memoize.js
|
|
208420
|
-
var import_memoize = __toESM(require_memoize(), 1);
|
|
208421
|
-
function weakMemoize(fn) {
|
|
208422
|
-
const memoized = (0, import_memoize.default)(fn);
|
|
208423
|
-
memoized.cache = /* @__PURE__ */ new WeakMap();
|
|
208424
|
-
return memoized;
|
|
208425
|
-
}
|
|
208426
|
-
|
|
208427
|
-
// ../../node_modules/.pnpm/mime@4.1.0/node_modules/mime/dist/types/other.js
|
|
208428
|
-
var types = {
|
|
208429
|
-
"application/prs.cww": ["cww"],
|
|
208430
|
-
"application/prs.xsf+xml": ["xsf"],
|
|
208431
|
-
"application/vnd.1000minds.decision-model+xml": ["1km"],
|
|
208432
|
-
"application/vnd.3gpp.pic-bw-large": ["plb"],
|
|
208433
|
-
"application/vnd.3gpp.pic-bw-small": ["psb"],
|
|
208434
|
-
"application/vnd.3gpp.pic-bw-var": ["pvb"],
|
|
208435
|
-
"application/vnd.3gpp2.tcap": ["tcap"],
|
|
208436
|
-
"application/vnd.3m.post-it-notes": ["pwn"],
|
|
208437
|
-
"application/vnd.accpac.simply.aso": ["aso"],
|
|
208438
|
-
"application/vnd.accpac.simply.imp": ["imp"],
|
|
208439
|
-
"application/vnd.acucobol": ["acu"],
|
|
208440
|
-
"application/vnd.acucorp": ["atc", "acutc"],
|
|
208441
|
-
"application/vnd.adobe.air-application-installer-package+zip": ["air"],
|
|
208442
|
-
"application/vnd.adobe.formscentral.fcdt": ["fcdt"],
|
|
208443
|
-
"application/vnd.adobe.fxp": ["fxp", "fxpl"],
|
|
208444
|
-
"application/vnd.adobe.xdp+xml": ["xdp"],
|
|
208445
|
-
"application/vnd.adobe.xfdf": ["*xfdf"],
|
|
208446
|
-
"application/vnd.age": ["age"],
|
|
208447
|
-
"application/vnd.ahead.space": ["ahead"],
|
|
208448
|
-
"application/vnd.airzip.filesecure.azf": ["azf"],
|
|
208449
|
-
"application/vnd.airzip.filesecure.azs": ["azs"],
|
|
208450
|
-
"application/vnd.amazon.ebook": ["azw"],
|
|
208451
|
-
"application/vnd.americandynamics.acc": ["acc"],
|
|
208452
|
-
"application/vnd.amiga.ami": ["ami"],
|
|
208453
|
-
"application/vnd.android.package-archive": ["apk"],
|
|
208454
|
-
"application/vnd.anser-web-certificate-issue-initiation": ["cii"],
|
|
208455
|
-
"application/vnd.anser-web-funds-transfer-initiation": ["fti"],
|
|
208456
|
-
"application/vnd.antix.game-component": ["atx"],
|
|
208457
|
-
"application/vnd.apple.installer+xml": ["mpkg"],
|
|
208458
|
-
"application/vnd.apple.keynote": ["key"],
|
|
208459
|
-
"application/vnd.apple.mpegurl": ["m3u8"],
|
|
208460
|
-
"application/vnd.apple.numbers": ["numbers"],
|
|
208461
|
-
"application/vnd.apple.pages": ["pages"],
|
|
208462
|
-
"application/vnd.apple.pkpass": ["pkpass"],
|
|
208463
|
-
"application/vnd.aristanetworks.swi": ["swi"],
|
|
208464
|
-
"application/vnd.astraea-software.iota": ["iota"],
|
|
208465
|
-
"application/vnd.audiograph": ["aep"],
|
|
208466
|
-
"application/vnd.autodesk.fbx": ["fbx"],
|
|
208467
|
-
"application/vnd.balsamiq.bmml+xml": ["bmml"],
|
|
208468
|
-
"application/vnd.blueice.multipass": ["mpm"],
|
|
208469
|
-
"application/vnd.bmi": ["bmi"],
|
|
208470
|
-
"application/vnd.businessobjects": ["rep"],
|
|
208471
|
-
"application/vnd.chemdraw+xml": ["cdxml"],
|
|
208472
|
-
"application/vnd.chipnuts.karaoke-mmd": ["mmd"],
|
|
208473
|
-
"application/vnd.cinderella": ["cdy"],
|
|
208474
|
-
"application/vnd.citationstyles.style+xml": ["csl"],
|
|
208475
|
-
"application/vnd.claymore": ["cla"],
|
|
208476
|
-
"application/vnd.cloanto.rp9": ["rp9"],
|
|
208477
|
-
"application/vnd.clonk.c4group": ["c4g", "c4d", "c4f", "c4p", "c4u"],
|
|
208478
|
-
"application/vnd.cluetrust.cartomobile-config": ["c11amc"],
|
|
208479
|
-
"application/vnd.cluetrust.cartomobile-config-pkg": ["c11amz"],
|
|
208480
|
-
"application/vnd.commonspace": ["csp"],
|
|
208481
|
-
"application/vnd.contact.cmsg": ["cdbcmsg"],
|
|
208482
|
-
"application/vnd.cosmocaller": ["cmc"],
|
|
208483
|
-
"application/vnd.crick.clicker": ["clkx"],
|
|
208484
|
-
"application/vnd.crick.clicker.keyboard": ["clkk"],
|
|
208485
|
-
"application/vnd.crick.clicker.palette": ["clkp"],
|
|
208486
|
-
"application/vnd.crick.clicker.template": ["clkt"],
|
|
208487
|
-
"application/vnd.crick.clicker.wordbank": ["clkw"],
|
|
208488
|
-
"application/vnd.criticaltools.wbs+xml": ["wbs"],
|
|
208489
|
-
"application/vnd.ctc-posml": ["pml"],
|
|
208490
|
-
"application/vnd.cups-ppd": ["ppd"],
|
|
208491
|
-
"application/vnd.curl.car": ["car"],
|
|
208492
|
-
"application/vnd.curl.pcurl": ["pcurl"],
|
|
208493
|
-
"application/vnd.dart": ["dart"],
|
|
208494
|
-
"application/vnd.data-vision.rdz": ["rdz"],
|
|
208495
|
-
"application/vnd.dbf": ["dbf"],
|
|
208496
|
-
"application/vnd.dcmp+xml": ["dcmp"],
|
|
208497
|
-
"application/vnd.dece.data": ["uvf", "uvvf", "uvd", "uvvd"],
|
|
208498
|
-
"application/vnd.dece.ttml+xml": ["uvt", "uvvt"],
|
|
208499
|
-
"application/vnd.dece.unspecified": ["uvx", "uvvx"],
|
|
208500
|
-
"application/vnd.dece.zip": ["uvz", "uvvz"],
|
|
208501
|
-
"application/vnd.denovo.fcselayout-link": ["fe_launch"],
|
|
208502
|
-
"application/vnd.dna": ["dna"],
|
|
208503
|
-
"application/vnd.dolby.mlp": ["mlp"],
|
|
208504
|
-
"application/vnd.dpgraph": ["dpg"],
|
|
208505
|
-
"application/vnd.dreamfactory": ["dfac"],
|
|
208506
|
-
"application/vnd.ds-keypoint": ["kpxx"],
|
|
208507
|
-
"application/vnd.dvb.ait": ["ait"],
|
|
208508
|
-
"application/vnd.dvb.service": ["svc"],
|
|
208509
|
-
"application/vnd.dynageo": ["geo"],
|
|
208510
|
-
"application/vnd.ecowin.chart": ["mag"],
|
|
208511
|
-
"application/vnd.enliven": ["nml"],
|
|
208512
|
-
"application/vnd.epson.esf": ["esf"],
|
|
208513
|
-
"application/vnd.epson.msf": ["msf"],
|
|
208514
|
-
"application/vnd.epson.quickanime": ["qam"],
|
|
208515
|
-
"application/vnd.epson.salt": ["slt"],
|
|
208516
|
-
"application/vnd.epson.ssf": ["ssf"],
|
|
208517
|
-
"application/vnd.eszigno3+xml": ["es3", "et3"],
|
|
208518
|
-
"application/vnd.ezpix-album": ["ez2"],
|
|
208519
|
-
"application/vnd.ezpix-package": ["ez3"],
|
|
208520
|
-
"application/vnd.fdf": ["*fdf"],
|
|
208521
|
-
"application/vnd.fdsn.mseed": ["mseed"],
|
|
208522
|
-
"application/vnd.fdsn.seed": ["seed", "dataless"],
|
|
208523
|
-
"application/vnd.flographit": ["gph"],
|
|
208524
|
-
"application/vnd.fluxtime.clip": ["ftc"],
|
|
208525
|
-
"application/vnd.framemaker": ["fm", "frame", "maker", "book"],
|
|
208526
|
-
"application/vnd.frogans.fnc": ["fnc"],
|
|
208527
|
-
"application/vnd.frogans.ltf": ["ltf"],
|
|
208528
|
-
"application/vnd.fsc.weblaunch": ["fsc"],
|
|
208529
|
-
"application/vnd.fujitsu.oasys": ["oas"],
|
|
208530
|
-
"application/vnd.fujitsu.oasys2": ["oa2"],
|
|
208531
|
-
"application/vnd.fujitsu.oasys3": ["oa3"],
|
|
208532
|
-
"application/vnd.fujitsu.oasysgp": ["fg5"],
|
|
208533
|
-
"application/vnd.fujitsu.oasysprs": ["bh2"],
|
|
208534
|
-
"application/vnd.fujixerox.ddd": ["ddd"],
|
|
208535
|
-
"application/vnd.fujixerox.docuworks": ["xdw"],
|
|
208536
|
-
"application/vnd.fujixerox.docuworks.binder": ["xbd"],
|
|
208537
|
-
"application/vnd.fuzzysheet": ["fzs"],
|
|
208538
|
-
"application/vnd.genomatix.tuxedo": ["txd"],
|
|
208539
|
-
"application/vnd.geogebra.file": ["ggb"],
|
|
208540
|
-
"application/vnd.geogebra.slides": ["ggs"],
|
|
208541
|
-
"application/vnd.geogebra.tool": ["ggt"],
|
|
208542
|
-
"application/vnd.geometry-explorer": ["gex", "gre"],
|
|
208543
|
-
"application/vnd.geonext": ["gxt"],
|
|
208544
|
-
"application/vnd.geoplan": ["g2w"],
|
|
208545
|
-
"application/vnd.geospace": ["g3w"],
|
|
208546
|
-
"application/vnd.gmx": ["gmx"],
|
|
208547
|
-
"application/vnd.google-apps.document": ["gdoc"],
|
|
208548
|
-
"application/vnd.google-apps.drawing": ["gdraw"],
|
|
208549
|
-
"application/vnd.google-apps.form": ["gform"],
|
|
208550
|
-
"application/vnd.google-apps.jam": ["gjam"],
|
|
208551
|
-
"application/vnd.google-apps.map": ["gmap"],
|
|
208552
|
-
"application/vnd.google-apps.presentation": ["gslides"],
|
|
208553
|
-
"application/vnd.google-apps.script": ["gscript"],
|
|
208554
|
-
"application/vnd.google-apps.site": ["gsite"],
|
|
208555
|
-
"application/vnd.google-apps.spreadsheet": ["gsheet"],
|
|
208556
|
-
"application/vnd.google-earth.kml+xml": ["kml"],
|
|
208557
|
-
"application/vnd.google-earth.kmz": ["kmz"],
|
|
208558
|
-
"application/vnd.gov.sk.xmldatacontainer+xml": ["xdcf"],
|
|
208559
|
-
"application/vnd.grafeq": ["gqf", "gqs"],
|
|
208560
|
-
"application/vnd.groove-account": ["gac"],
|
|
208561
|
-
"application/vnd.groove-help": ["ghf"],
|
|
208562
|
-
"application/vnd.groove-identity-message": ["gim"],
|
|
208563
|
-
"application/vnd.groove-injector": ["grv"],
|
|
208564
|
-
"application/vnd.groove-tool-message": ["gtm"],
|
|
208565
|
-
"application/vnd.groove-tool-template": ["tpl"],
|
|
208566
|
-
"application/vnd.groove-vcard": ["vcg"],
|
|
208567
|
-
"application/vnd.hal+xml": ["hal"],
|
|
208568
|
-
"application/vnd.handheld-entertainment+xml": ["zmm"],
|
|
208569
|
-
"application/vnd.hbci": ["hbci"],
|
|
208570
|
-
"application/vnd.hhe.lesson-player": ["les"],
|
|
208571
|
-
"application/vnd.hp-hpgl": ["hpgl"],
|
|
208572
|
-
"application/vnd.hp-hpid": ["hpid"],
|
|
208573
|
-
"application/vnd.hp-hps": ["hps"],
|
|
208574
|
-
"application/vnd.hp-jlyt": ["jlt"],
|
|
208575
|
-
"application/vnd.hp-pcl": ["pcl"],
|
|
208576
|
-
"application/vnd.hp-pclxl": ["pclxl"],
|
|
208577
|
-
"application/vnd.hydrostatix.sof-data": ["sfd-hdstx"],
|
|
208578
|
-
"application/vnd.ibm.minipay": ["mpy"],
|
|
208579
|
-
"application/vnd.ibm.modcap": ["afp", "listafp", "list3820"],
|
|
208580
|
-
"application/vnd.ibm.rights-management": ["irm"],
|
|
208581
|
-
"application/vnd.ibm.secure-container": ["sc"],
|
|
208582
|
-
"application/vnd.iccprofile": ["icc", "icm"],
|
|
208583
|
-
"application/vnd.igloader": ["igl"],
|
|
208584
|
-
"application/vnd.immervision-ivp": ["ivp"],
|
|
208585
|
-
"application/vnd.immervision-ivu": ["ivu"],
|
|
208586
|
-
"application/vnd.insors.igm": ["igm"],
|
|
208587
|
-
"application/vnd.intercon.formnet": ["xpw", "xpx"],
|
|
208588
|
-
"application/vnd.intergeo": ["i2g"],
|
|
208589
|
-
"application/vnd.intu.qbo": ["qbo"],
|
|
208590
|
-
"application/vnd.intu.qfx": ["qfx"],
|
|
208591
|
-
"application/vnd.ipunplugged.rcprofile": ["rcprofile"],
|
|
208592
|
-
"application/vnd.irepository.package+xml": ["irp"],
|
|
208593
|
-
"application/vnd.is-xpr": ["xpr"],
|
|
208594
|
-
"application/vnd.isac.fcs": ["fcs"],
|
|
208595
|
-
"application/vnd.jam": ["jam"],
|
|
208596
|
-
"application/vnd.jcp.javame.midlet-rms": ["rms"],
|
|
208597
|
-
"application/vnd.jisp": ["jisp"],
|
|
208598
|
-
"application/vnd.joost.joda-archive": ["joda"],
|
|
208599
|
-
"application/vnd.kahootz": ["ktz", "ktr"],
|
|
208600
|
-
"application/vnd.kde.karbon": ["karbon"],
|
|
208601
|
-
"application/vnd.kde.kchart": ["chrt"],
|
|
208602
|
-
"application/vnd.kde.kformula": ["kfo"],
|
|
208603
|
-
"application/vnd.kde.kivio": ["flw"],
|
|
208604
|
-
"application/vnd.kde.kontour": ["kon"],
|
|
208605
|
-
"application/vnd.kde.kpresenter": ["kpr", "kpt"],
|
|
208606
|
-
"application/vnd.kde.kspread": ["ksp"],
|
|
208607
|
-
"application/vnd.kde.kword": ["kwd", "kwt"],
|
|
208608
|
-
"application/vnd.kenameaapp": ["htke"],
|
|
208609
|
-
"application/vnd.kidspiration": ["kia"],
|
|
208610
|
-
"application/vnd.kinar": ["kne", "knp"],
|
|
208611
|
-
"application/vnd.koan": ["skp", "skd", "skt", "skm"],
|
|
208612
|
-
"application/vnd.kodak-descriptor": ["sse"],
|
|
208613
|
-
"application/vnd.las.las+xml": ["lasxml"],
|
|
208614
|
-
"application/vnd.llamagraphics.life-balance.desktop": ["lbd"],
|
|
208615
|
-
"application/vnd.llamagraphics.life-balance.exchange+xml": ["lbe"],
|
|
208616
|
-
"application/vnd.lotus-1-2-3": ["123"],
|
|
208617
|
-
"application/vnd.lotus-approach": ["apr"],
|
|
208618
|
-
"application/vnd.lotus-freelance": ["pre"],
|
|
208619
|
-
"application/vnd.lotus-notes": ["nsf"],
|
|
208620
|
-
"application/vnd.lotus-organizer": ["org"],
|
|
208621
|
-
"application/vnd.lotus-screencam": ["scm"],
|
|
208622
|
-
"application/vnd.lotus-wordpro": ["lwp"],
|
|
208623
|
-
"application/vnd.macports.portpkg": ["portpkg"],
|
|
208624
|
-
"application/vnd.mapbox-vector-tile": ["mvt"],
|
|
208625
|
-
"application/vnd.mcd": ["mcd"],
|
|
208626
|
-
"application/vnd.medcalcdata": ["mc1"],
|
|
208627
|
-
"application/vnd.mediastation.cdkey": ["cdkey"],
|
|
208628
|
-
"application/vnd.mfer": ["mwf"],
|
|
208629
|
-
"application/vnd.mfmp": ["mfm"],
|
|
208630
|
-
"application/vnd.micrografx.flo": ["flo"],
|
|
208631
|
-
"application/vnd.micrografx.igx": ["igx"],
|
|
208632
|
-
"application/vnd.mif": ["mif"],
|
|
208633
|
-
"application/vnd.mobius.daf": ["daf"],
|
|
208634
|
-
"application/vnd.mobius.dis": ["dis"],
|
|
208635
|
-
"application/vnd.mobius.mbk": ["mbk"],
|
|
208636
|
-
"application/vnd.mobius.mqy": ["mqy"],
|
|
208637
|
-
"application/vnd.mobius.msl": ["msl"],
|
|
208638
|
-
"application/vnd.mobius.plc": ["plc"],
|
|
208639
|
-
"application/vnd.mobius.txf": ["txf"],
|
|
208640
|
-
"application/vnd.mophun.application": ["mpn"],
|
|
208641
|
-
"application/vnd.mophun.certificate": ["mpc"],
|
|
208642
|
-
"application/vnd.mozilla.xul+xml": ["xul"],
|
|
208643
|
-
"application/vnd.ms-artgalry": ["cil"],
|
|
208644
|
-
"application/vnd.ms-cab-compressed": ["cab"],
|
|
208645
|
-
"application/vnd.ms-excel": ["xls", "xlm", "xla", "xlc", "xlt", "xlw"],
|
|
208646
|
-
"application/vnd.ms-excel.addin.macroenabled.12": ["xlam"],
|
|
208647
|
-
"application/vnd.ms-excel.sheet.binary.macroenabled.12": ["xlsb"],
|
|
208648
|
-
"application/vnd.ms-excel.sheet.macroenabled.12": ["xlsm"],
|
|
208649
|
-
"application/vnd.ms-excel.template.macroenabled.12": ["xltm"],
|
|
208650
|
-
"application/vnd.ms-fontobject": ["eot"],
|
|
208651
|
-
"application/vnd.ms-htmlhelp": ["chm"],
|
|
208652
|
-
"application/vnd.ms-ims": ["ims"],
|
|
208653
|
-
"application/vnd.ms-lrm": ["lrm"],
|
|
208654
|
-
"application/vnd.ms-officetheme": ["thmx"],
|
|
208655
|
-
"application/vnd.ms-outlook": ["msg"],
|
|
208656
|
-
"application/vnd.ms-pki.seccat": ["cat"],
|
|
208657
|
-
"application/vnd.ms-pki.stl": ["*stl"],
|
|
208658
|
-
"application/vnd.ms-powerpoint": ["ppt", "pps", "pot"],
|
|
208659
|
-
"application/vnd.ms-powerpoint.addin.macroenabled.12": ["ppam"],
|
|
208660
|
-
"application/vnd.ms-powerpoint.presentation.macroenabled.12": ["pptm"],
|
|
208661
|
-
"application/vnd.ms-powerpoint.slide.macroenabled.12": ["sldm"],
|
|
208662
|
-
"application/vnd.ms-powerpoint.slideshow.macroenabled.12": ["ppsm"],
|
|
208663
|
-
"application/vnd.ms-powerpoint.template.macroenabled.12": ["potm"],
|
|
208664
|
-
"application/vnd.ms-project": ["*mpp", "mpt"],
|
|
208665
|
-
"application/vnd.ms-visio.viewer": ["vdx"],
|
|
208666
|
-
"application/vnd.ms-word.document.macroenabled.12": ["docm"],
|
|
208667
|
-
"application/vnd.ms-word.template.macroenabled.12": ["dotm"],
|
|
208668
|
-
"application/vnd.ms-works": ["wps", "wks", "wcm", "wdb"],
|
|
208669
|
-
"application/vnd.ms-wpl": ["wpl"],
|
|
208670
|
-
"application/vnd.ms-xpsdocument": ["xps"],
|
|
208671
|
-
"application/vnd.mseq": ["mseq"],
|
|
208672
|
-
"application/vnd.musician": ["mus"],
|
|
208673
|
-
"application/vnd.muvee.style": ["msty"],
|
|
208674
|
-
"application/vnd.mynfc": ["taglet"],
|
|
208675
|
-
"application/vnd.nato.bindingdataobject+xml": ["bdo"],
|
|
208676
|
-
"application/vnd.neurolanguage.nlu": ["nlu"],
|
|
208677
|
-
"application/vnd.nitf": ["ntf", "nitf"],
|
|
208678
|
-
"application/vnd.noblenet-directory": ["nnd"],
|
|
208679
|
-
"application/vnd.noblenet-sealer": ["nns"],
|
|
208680
|
-
"application/vnd.noblenet-web": ["nnw"],
|
|
208681
|
-
"application/vnd.nokia.n-gage.ac+xml": ["*ac"],
|
|
208682
|
-
"application/vnd.nokia.n-gage.data": ["ngdat"],
|
|
208683
|
-
"application/vnd.nokia.n-gage.symbian.install": ["n-gage"],
|
|
208684
|
-
"application/vnd.nokia.radio-preset": ["rpst"],
|
|
208685
|
-
"application/vnd.nokia.radio-presets": ["rpss"],
|
|
208686
|
-
"application/vnd.novadigm.edm": ["edm"],
|
|
208687
|
-
"application/vnd.novadigm.edx": ["edx"],
|
|
208688
|
-
"application/vnd.novadigm.ext": ["ext"],
|
|
208689
|
-
"application/vnd.oasis.opendocument.chart": ["odc"],
|
|
208690
|
-
"application/vnd.oasis.opendocument.chart-template": ["otc"],
|
|
208691
|
-
"application/vnd.oasis.opendocument.database": ["odb"],
|
|
208692
|
-
"application/vnd.oasis.opendocument.formula": ["odf"],
|
|
208693
|
-
"application/vnd.oasis.opendocument.formula-template": ["odft"],
|
|
208694
|
-
"application/vnd.oasis.opendocument.graphics": ["odg"],
|
|
208695
|
-
"application/vnd.oasis.opendocument.graphics-template": ["otg"],
|
|
208696
|
-
"application/vnd.oasis.opendocument.image": ["odi"],
|
|
208697
|
-
"application/vnd.oasis.opendocument.image-template": ["oti"],
|
|
208698
|
-
"application/vnd.oasis.opendocument.presentation": ["odp"],
|
|
208699
|
-
"application/vnd.oasis.opendocument.presentation-template": ["otp"],
|
|
208700
|
-
"application/vnd.oasis.opendocument.spreadsheet": ["ods"],
|
|
208701
|
-
"application/vnd.oasis.opendocument.spreadsheet-template": ["ots"],
|
|
208702
|
-
"application/vnd.oasis.opendocument.text": ["odt"],
|
|
208703
|
-
"application/vnd.oasis.opendocument.text-master": ["odm"],
|
|
208704
|
-
"application/vnd.oasis.opendocument.text-template": ["ott"],
|
|
208705
|
-
"application/vnd.oasis.opendocument.text-web": ["oth"],
|
|
208706
|
-
"application/vnd.olpc-sugar": ["xo"],
|
|
208707
|
-
"application/vnd.oma.dd2+xml": ["dd2"],
|
|
208708
|
-
"application/vnd.openblox.game+xml": ["obgx"],
|
|
208709
|
-
"application/vnd.openofficeorg.extension": ["oxt"],
|
|
208710
|
-
"application/vnd.openstreetmap.data+xml": ["osm"],
|
|
208711
|
-
"application/vnd.openxmlformats-officedocument.presentationml.presentation": [
|
|
208712
|
-
"pptx"
|
|
208713
|
-
],
|
|
208714
|
-
"application/vnd.openxmlformats-officedocument.presentationml.slide": [
|
|
208715
|
-
"sldx"
|
|
208716
|
-
],
|
|
208717
|
-
"application/vnd.openxmlformats-officedocument.presentationml.slideshow": [
|
|
208718
|
-
"ppsx"
|
|
208719
|
-
],
|
|
208720
|
-
"application/vnd.openxmlformats-officedocument.presentationml.template": [
|
|
208721
|
-
"potx"
|
|
208722
|
-
],
|
|
208723
|
-
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": ["xlsx"],
|
|
208724
|
-
"application/vnd.openxmlformats-officedocument.spreadsheetml.template": [
|
|
208725
|
-
"xltx"
|
|
208726
|
-
],
|
|
208727
|
-
"application/vnd.openxmlformats-officedocument.wordprocessingml.document": [
|
|
208728
|
-
"docx"
|
|
208729
|
-
],
|
|
208730
|
-
"application/vnd.openxmlformats-officedocument.wordprocessingml.template": [
|
|
208731
|
-
"dotx"
|
|
208732
|
-
],
|
|
208733
|
-
"application/vnd.osgeo.mapguide.package": ["mgp"],
|
|
208734
|
-
"application/vnd.osgi.dp": ["dp"],
|
|
208735
|
-
"application/vnd.osgi.subsystem": ["esa"],
|
|
208736
|
-
"application/vnd.palm": ["pdb", "pqa", "oprc"],
|
|
208737
|
-
"application/vnd.pawaafile": ["paw"],
|
|
208738
|
-
"application/vnd.pg.format": ["str"],
|
|
208739
|
-
"application/vnd.pg.osasli": ["ei6"],
|
|
208740
|
-
"application/vnd.picsel": ["efif"],
|
|
208741
|
-
"application/vnd.pmi.widget": ["wg"],
|
|
208742
|
-
"application/vnd.pocketlearn": ["plf"],
|
|
208743
|
-
"application/vnd.powerbuilder6": ["pbd"],
|
|
208744
|
-
"application/vnd.previewsystems.box": ["box"],
|
|
208745
|
-
"application/vnd.procrate.brushset": ["brushset"],
|
|
208746
|
-
"application/vnd.procreate.brush": ["brush"],
|
|
208747
|
-
"application/vnd.procreate.dream": ["drm"],
|
|
208748
|
-
"application/vnd.proteus.magazine": ["mgz"],
|
|
208749
|
-
"application/vnd.publishare-delta-tree": ["qps"],
|
|
208750
|
-
"application/vnd.pvi.ptid1": ["ptid"],
|
|
208751
|
-
"application/vnd.pwg-xhtml-print+xml": ["xhtm"],
|
|
208752
|
-
"application/vnd.quark.quarkxpress": [
|
|
208753
|
-
"qxd",
|
|
208754
|
-
"qxt",
|
|
208755
|
-
"qwd",
|
|
208756
|
-
"qwt",
|
|
208757
|
-
"qxl",
|
|
208758
|
-
"qxb"
|
|
208759
|
-
],
|
|
208760
|
-
"application/vnd.rar": ["rar"],
|
|
208761
|
-
"application/vnd.realvnc.bed": ["bed"],
|
|
208762
|
-
"application/vnd.recordare.musicxml": ["mxl"],
|
|
208763
|
-
"application/vnd.recordare.musicxml+xml": ["musicxml"],
|
|
208764
|
-
"application/vnd.rig.cryptonote": ["cryptonote"],
|
|
208765
|
-
"application/vnd.rim.cod": ["cod"],
|
|
208766
|
-
"application/vnd.rn-realmedia": ["rm"],
|
|
208767
|
-
"application/vnd.rn-realmedia-vbr": ["rmvb"],
|
|
208768
|
-
"application/vnd.route66.link66+xml": ["link66"],
|
|
208769
|
-
"application/vnd.sailingtracker.track": ["st"],
|
|
208770
|
-
"application/vnd.seemail": ["see"],
|
|
208771
|
-
"application/vnd.sema": ["sema"],
|
|
208772
|
-
"application/vnd.semd": ["semd"],
|
|
208773
|
-
"application/vnd.semf": ["semf"],
|
|
208774
|
-
"application/vnd.shana.informed.formdata": ["ifm"],
|
|
208775
|
-
"application/vnd.shana.informed.formtemplate": ["itp"],
|
|
208776
|
-
"application/vnd.shana.informed.interchange": ["iif"],
|
|
208777
|
-
"application/vnd.shana.informed.package": ["ipk"],
|
|
208778
|
-
"application/vnd.simtech-mindmapper": ["twd", "twds"],
|
|
208779
|
-
"application/vnd.smaf": ["mmf"],
|
|
208780
|
-
"application/vnd.smart.teacher": ["teacher"],
|
|
208781
|
-
"application/vnd.software602.filler.form+xml": ["fo"],
|
|
208782
|
-
"application/vnd.solent.sdkm+xml": ["sdkm", "sdkd"],
|
|
208783
|
-
"application/vnd.spotfire.dxp": ["dxp"],
|
|
208784
|
-
"application/vnd.spotfire.sfs": ["sfs"],
|
|
208785
|
-
"application/vnd.stardivision.calc": ["sdc"],
|
|
208786
|
-
"application/vnd.stardivision.draw": ["sda"],
|
|
208787
|
-
"application/vnd.stardivision.impress": ["sdd"],
|
|
208788
|
-
"application/vnd.stardivision.math": ["smf"],
|
|
208789
|
-
"application/vnd.stardivision.writer": ["sdw", "vor"],
|
|
208790
|
-
"application/vnd.stardivision.writer-global": ["sgl"],
|
|
208791
|
-
"application/vnd.stepmania.package": ["smzip"],
|
|
208792
|
-
"application/vnd.stepmania.stepchart": ["sm"],
|
|
208793
|
-
"application/vnd.sun.wadl+xml": ["wadl"],
|
|
208794
|
-
"application/vnd.sun.xml.calc": ["sxc"],
|
|
208795
|
-
"application/vnd.sun.xml.calc.template": ["stc"],
|
|
208796
|
-
"application/vnd.sun.xml.draw": ["sxd"],
|
|
208797
|
-
"application/vnd.sun.xml.draw.template": ["std"],
|
|
208798
|
-
"application/vnd.sun.xml.impress": ["sxi"],
|
|
208799
|
-
"application/vnd.sun.xml.impress.template": ["sti"],
|
|
208800
|
-
"application/vnd.sun.xml.math": ["sxm"],
|
|
208801
|
-
"application/vnd.sun.xml.writer": ["sxw"],
|
|
208802
|
-
"application/vnd.sun.xml.writer.global": ["sxg"],
|
|
208803
|
-
"application/vnd.sun.xml.writer.template": ["stw"],
|
|
208804
|
-
"application/vnd.sus-calendar": ["sus", "susp"],
|
|
208805
|
-
"application/vnd.svd": ["svd"],
|
|
208806
|
-
"application/vnd.symbian.install": ["sis", "sisx"],
|
|
208807
|
-
"application/vnd.syncml+xml": ["xsm"],
|
|
208808
|
-
"application/vnd.syncml.dm+wbxml": ["bdm"],
|
|
208809
|
-
"application/vnd.syncml.dm+xml": ["xdm"],
|
|
208810
|
-
"application/vnd.syncml.dmddf+xml": ["ddf"],
|
|
208811
|
-
"application/vnd.tao.intent-module-archive": ["tao"],
|
|
208812
|
-
"application/vnd.tcpdump.pcap": ["pcap", "cap", "dmp"],
|
|
208813
|
-
"application/vnd.tmobile-livetv": ["tmo"],
|
|
208814
|
-
"application/vnd.trid.tpt": ["tpt"],
|
|
208815
|
-
"application/vnd.triscape.mxs": ["mxs"],
|
|
208816
|
-
"application/vnd.trueapp": ["tra"],
|
|
208817
|
-
"application/vnd.ufdl": ["ufd", "ufdl"],
|
|
208818
|
-
"application/vnd.uiq.theme": ["utz"],
|
|
208819
|
-
"application/vnd.umajin": ["umj"],
|
|
208820
|
-
"application/vnd.unity": ["unityweb"],
|
|
208821
|
-
"application/vnd.uoml+xml": ["uoml", "uo"],
|
|
208822
|
-
"application/vnd.vcx": ["vcx"],
|
|
208823
|
-
"application/vnd.visio": ["vsd", "vst", "vss", "vsw", "vsdx", "vtx"],
|
|
208824
|
-
"application/vnd.visionary": ["vis"],
|
|
208825
|
-
"application/vnd.vsf": ["vsf"],
|
|
208826
|
-
"application/vnd.wap.wbxml": ["wbxml"],
|
|
208827
|
-
"application/vnd.wap.wmlc": ["wmlc"],
|
|
208828
|
-
"application/vnd.wap.wmlscriptc": ["wmlsc"],
|
|
208829
|
-
"application/vnd.webturbo": ["wtb"],
|
|
208830
|
-
"application/vnd.wolfram.player": ["nbp"],
|
|
208831
|
-
"application/vnd.wordperfect": ["wpd"],
|
|
208832
|
-
"application/vnd.wqd": ["wqd"],
|
|
208833
|
-
"application/vnd.wt.stf": ["stf"],
|
|
208834
|
-
"application/vnd.xara": ["xar"],
|
|
208835
|
-
"application/vnd.xfdl": ["xfdl"],
|
|
208836
|
-
"application/vnd.yamaha.hv-dic": ["hvd"],
|
|
208837
|
-
"application/vnd.yamaha.hv-script": ["hvs"],
|
|
208838
|
-
"application/vnd.yamaha.hv-voice": ["hvp"],
|
|
208839
|
-
"application/vnd.yamaha.openscoreformat": ["osf"],
|
|
208840
|
-
"application/vnd.yamaha.openscoreformat.osfpvg+xml": ["osfpvg"],
|
|
208841
|
-
"application/vnd.yamaha.smaf-audio": ["saf"],
|
|
208842
|
-
"application/vnd.yamaha.smaf-phrase": ["spf"],
|
|
208843
|
-
"application/vnd.yellowriver-custom-menu": ["cmp"],
|
|
208844
|
-
"application/vnd.zul": ["zir", "zirz"],
|
|
208845
|
-
"application/vnd.zzazz.deck+xml": ["zaz"],
|
|
208846
|
-
"application/x-7z-compressed": ["7z"],
|
|
208847
|
-
"application/x-abiword": ["abw"],
|
|
208848
|
-
"application/x-ace-compressed": ["ace"],
|
|
208849
|
-
"application/x-apple-diskimage": ["*dmg"],
|
|
208850
|
-
"application/x-arj": ["arj"],
|
|
208851
|
-
"application/x-authorware-bin": ["aab", "x32", "u32", "vox"],
|
|
208852
|
-
"application/x-authorware-map": ["aam"],
|
|
208853
|
-
"application/x-authorware-seg": ["aas"],
|
|
208854
|
-
"application/x-bcpio": ["bcpio"],
|
|
208855
|
-
"application/x-bdoc": ["*bdoc"],
|
|
208856
|
-
"application/x-bittorrent": ["torrent"],
|
|
208857
|
-
"application/x-blender": ["blend"],
|
|
208858
|
-
"application/x-blorb": ["blb", "blorb"],
|
|
208859
|
-
"application/x-bzip": ["bz"],
|
|
208860
|
-
"application/x-bzip2": ["bz2", "boz"],
|
|
208861
|
-
"application/x-cbr": ["cbr", "cba", "cbt", "cbz", "cb7"],
|
|
208862
|
-
"application/x-cdlink": ["vcd"],
|
|
208863
|
-
"application/x-cfs-compressed": ["cfs"],
|
|
208864
|
-
"application/x-chat": ["chat"],
|
|
208865
|
-
"application/x-chess-pgn": ["pgn"],
|
|
208866
|
-
"application/x-chrome-extension": ["crx"],
|
|
208867
|
-
"application/x-cocoa": ["cco"],
|
|
208868
|
-
"application/x-compressed": ["*rar"],
|
|
208869
|
-
"application/x-conference": ["nsc"],
|
|
208870
|
-
"application/x-cpio": ["cpio"],
|
|
208871
|
-
"application/x-csh": ["csh"],
|
|
208872
|
-
"application/x-debian-package": ["*deb", "udeb"],
|
|
208873
|
-
"application/x-dgc-compressed": ["dgc"],
|
|
208874
|
-
"application/x-director": [
|
|
208875
|
-
"dir",
|
|
208876
|
-
"dcr",
|
|
208877
|
-
"dxr",
|
|
208878
|
-
"cst",
|
|
208879
|
-
"cct",
|
|
208880
|
-
"cxt",
|
|
208881
|
-
"w3d",
|
|
208882
|
-
"fgd",
|
|
208883
|
-
"swa"
|
|
208884
|
-
],
|
|
208885
|
-
"application/x-doom": ["wad"],
|
|
208886
|
-
"application/x-dtbncx+xml": ["ncx"],
|
|
208887
|
-
"application/x-dtbook+xml": ["dtb"],
|
|
208888
|
-
"application/x-dtbresource+xml": ["res"],
|
|
208889
|
-
"application/x-dvi": ["dvi"],
|
|
208890
|
-
"application/x-envoy": ["evy"],
|
|
208891
|
-
"application/x-eva": ["eva"],
|
|
208892
|
-
"application/x-font-bdf": ["bdf"],
|
|
208893
|
-
"application/x-font-ghostscript": ["gsf"],
|
|
208894
|
-
"application/x-font-linux-psf": ["psf"],
|
|
208895
|
-
"application/x-font-pcf": ["pcf"],
|
|
208896
|
-
"application/x-font-snf": ["snf"],
|
|
208897
|
-
"application/x-font-type1": ["pfa", "pfb", "pfm", "afm"],
|
|
208898
|
-
"application/x-freearc": ["arc"],
|
|
208899
|
-
"application/x-futuresplash": ["spl"],
|
|
208900
|
-
"application/x-gca-compressed": ["gca"],
|
|
208901
|
-
"application/x-glulx": ["ulx"],
|
|
208902
|
-
"application/x-gnumeric": ["gnumeric"],
|
|
208903
|
-
"application/x-gramps-xml": ["gramps"],
|
|
208904
|
-
"application/x-gtar": ["gtar"],
|
|
208905
|
-
"application/x-hdf": ["hdf"],
|
|
208906
|
-
"application/x-httpd-php": ["php"],
|
|
208907
|
-
"application/x-install-instructions": ["install"],
|
|
208908
|
-
"application/x-ipynb+json": ["ipynb"],
|
|
208909
|
-
"application/x-iso9660-image": ["*iso"],
|
|
208910
|
-
"application/x-iwork-keynote-sffkey": ["*key"],
|
|
208911
|
-
"application/x-iwork-numbers-sffnumbers": ["*numbers"],
|
|
208912
|
-
"application/x-iwork-pages-sffpages": ["*pages"],
|
|
208913
|
-
"application/x-java-archive-diff": ["jardiff"],
|
|
208914
|
-
"application/x-java-jnlp-file": ["jnlp"],
|
|
208915
|
-
"application/x-keepass2": ["kdbx"],
|
|
208916
|
-
"application/x-latex": ["latex"],
|
|
208917
|
-
"application/x-lua-bytecode": ["luac"],
|
|
208918
|
-
"application/x-lzh-compressed": ["lzh", "lha"],
|
|
208919
|
-
"application/x-makeself": ["run"],
|
|
208920
|
-
"application/x-mie": ["mie"],
|
|
208921
|
-
"application/x-mobipocket-ebook": ["*prc", "mobi"],
|
|
208922
|
-
"application/x-ms-application": ["application"],
|
|
208923
|
-
"application/x-ms-shortcut": ["lnk"],
|
|
208924
|
-
"application/x-ms-wmd": ["wmd"],
|
|
208925
|
-
"application/x-ms-wmz": ["wmz"],
|
|
208926
|
-
"application/x-ms-xbap": ["xbap"],
|
|
208927
|
-
"application/x-msaccess": ["mdb"],
|
|
208928
|
-
"application/x-msbinder": ["obd"],
|
|
208929
|
-
"application/x-mscardfile": ["crd"],
|
|
208930
|
-
"application/x-msclip": ["clp"],
|
|
208931
|
-
"application/x-msdos-program": ["*exe"],
|
|
208932
|
-
"application/x-msdownload": ["*exe", "*dll", "com", "bat", "*msi"],
|
|
208933
|
-
"application/x-msmediaview": ["mvb", "m13", "m14"],
|
|
208934
|
-
"application/x-msmetafile": ["*wmf", "*wmz", "*emf", "emz"],
|
|
208935
|
-
"application/x-msmoney": ["mny"],
|
|
208936
|
-
"application/x-mspublisher": ["pub"],
|
|
208937
|
-
"application/x-msschedule": ["scd"],
|
|
208938
|
-
"application/x-msterminal": ["trm"],
|
|
208939
|
-
"application/x-mswrite": ["wri"],
|
|
208940
|
-
"application/x-netcdf": ["nc", "cdf"],
|
|
208941
|
-
"application/x-ns-proxy-autoconfig": ["pac"],
|
|
208942
|
-
"application/x-nzb": ["nzb"],
|
|
208943
|
-
"application/x-perl": ["pl", "pm"],
|
|
208944
|
-
"application/x-pilot": ["*prc", "*pdb"],
|
|
208945
|
-
"application/x-pkcs12": ["p12", "pfx"],
|
|
208946
|
-
"application/x-pkcs7-certificates": ["p7b", "spc"],
|
|
208947
|
-
"application/x-pkcs7-certreqresp": ["p7r"],
|
|
208948
|
-
"application/x-rar-compressed": ["*rar"],
|
|
208949
|
-
"application/x-redhat-package-manager": ["rpm"],
|
|
208950
|
-
"application/x-research-info-systems": ["ris"],
|
|
208951
|
-
"application/x-sea": ["sea"],
|
|
208952
|
-
"application/x-sh": ["sh"],
|
|
208953
|
-
"application/x-shar": ["shar"],
|
|
208954
|
-
"application/x-shockwave-flash": ["swf"],
|
|
208955
|
-
"application/x-silverlight-app": ["xap"],
|
|
208956
|
-
"application/x-sql": ["*sql"],
|
|
208957
|
-
"application/x-stuffit": ["sit"],
|
|
208958
|
-
"application/x-stuffitx": ["sitx"],
|
|
208959
|
-
"application/x-subrip": ["srt"],
|
|
208960
|
-
"application/x-sv4cpio": ["sv4cpio"],
|
|
208961
|
-
"application/x-sv4crc": ["sv4crc"],
|
|
208962
|
-
"application/x-t3vm-image": ["t3"],
|
|
208963
|
-
"application/x-tads": ["gam"],
|
|
208964
|
-
"application/x-tar": ["tar"],
|
|
208965
|
-
"application/x-tcl": ["tcl", "tk"],
|
|
208966
|
-
"application/x-tex": ["tex"],
|
|
208967
|
-
"application/x-tex-tfm": ["tfm"],
|
|
208968
|
-
"application/x-texinfo": ["texinfo", "texi"],
|
|
208969
|
-
"application/x-tgif": ["*obj"],
|
|
208970
|
-
"application/x-ustar": ["ustar"],
|
|
208971
|
-
"application/x-virtualbox-hdd": ["hdd"],
|
|
208972
|
-
"application/x-virtualbox-ova": ["ova"],
|
|
208973
|
-
"application/x-virtualbox-ovf": ["ovf"],
|
|
208974
|
-
"application/x-virtualbox-vbox": ["vbox"],
|
|
208975
|
-
"application/x-virtualbox-vbox-extpack": ["vbox-extpack"],
|
|
208976
|
-
"application/x-virtualbox-vdi": ["vdi"],
|
|
208977
|
-
"application/x-virtualbox-vhd": ["vhd"],
|
|
208978
|
-
"application/x-virtualbox-vmdk": ["vmdk"],
|
|
208979
|
-
"application/x-wais-source": ["src"],
|
|
208980
|
-
"application/x-web-app-manifest+json": ["webapp"],
|
|
208981
|
-
"application/x-x509-ca-cert": ["der", "crt", "pem"],
|
|
208982
|
-
"application/x-xfig": ["fig"],
|
|
208983
|
-
"application/x-xliff+xml": ["*xlf"],
|
|
208984
|
-
"application/x-xpinstall": ["xpi"],
|
|
208985
|
-
"application/x-xz": ["xz"],
|
|
208986
|
-
"application/x-zip-compressed": ["*zip"],
|
|
208987
|
-
"application/x-zmachine": ["z1", "z2", "z3", "z4", "z5", "z6", "z7", "z8"],
|
|
208988
|
-
"audio/vnd.dece.audio": ["uva", "uvva"],
|
|
208989
|
-
"audio/vnd.digital-winds": ["eol"],
|
|
208990
|
-
"audio/vnd.dra": ["dra"],
|
|
208991
|
-
"audio/vnd.dts": ["dts"],
|
|
208992
|
-
"audio/vnd.dts.hd": ["dtshd"],
|
|
208993
|
-
"audio/vnd.lucent.voice": ["lvp"],
|
|
208994
|
-
"audio/vnd.ms-playready.media.pya": ["pya"],
|
|
208995
|
-
"audio/vnd.nuera.ecelp4800": ["ecelp4800"],
|
|
208996
|
-
"audio/vnd.nuera.ecelp7470": ["ecelp7470"],
|
|
208997
|
-
"audio/vnd.nuera.ecelp9600": ["ecelp9600"],
|
|
208998
|
-
"audio/vnd.rip": ["rip"],
|
|
208999
|
-
"audio/x-aac": ["*aac"],
|
|
209000
|
-
"audio/x-aiff": ["aif", "aiff", "aifc"],
|
|
209001
|
-
"audio/x-caf": ["caf"],
|
|
209002
|
-
"audio/x-flac": ["flac"],
|
|
209003
|
-
"audio/x-m4a": ["*m4a"],
|
|
209004
|
-
"audio/x-matroska": ["mka"],
|
|
209005
|
-
"audio/x-mpegurl": ["m3u"],
|
|
209006
|
-
"audio/x-ms-wax": ["wax"],
|
|
209007
|
-
"audio/x-ms-wma": ["wma"],
|
|
209008
|
-
"audio/x-pn-realaudio": ["ram", "ra"],
|
|
209009
|
-
"audio/x-pn-realaudio-plugin": ["rmp"],
|
|
209010
|
-
"audio/x-realaudio": ["*ra"],
|
|
209011
|
-
"audio/x-wav": ["*wav"],
|
|
209012
|
-
"chemical/x-cdx": ["cdx"],
|
|
209013
|
-
"chemical/x-cif": ["cif"],
|
|
209014
|
-
"chemical/x-cmdf": ["cmdf"],
|
|
209015
|
-
"chemical/x-cml": ["cml"],
|
|
209016
|
-
"chemical/x-csml": ["csml"],
|
|
209017
|
-
"chemical/x-xyz": ["xyz"],
|
|
209018
|
-
"image/prs.btif": ["btif", "btf"],
|
|
209019
|
-
"image/prs.pti": ["pti"],
|
|
209020
|
-
"image/vnd.adobe.photoshop": ["psd"],
|
|
209021
|
-
"image/vnd.airzip.accelerator.azv": ["azv"],
|
|
209022
|
-
"image/vnd.blockfact.facti": ["facti"],
|
|
209023
|
-
"image/vnd.dece.graphic": ["uvi", "uvvi", "uvg", "uvvg"],
|
|
209024
|
-
"image/vnd.djvu": ["djvu", "djv"],
|
|
209025
|
-
"image/vnd.dvb.subtitle": ["*sub"],
|
|
209026
|
-
"image/vnd.dwg": ["dwg"],
|
|
209027
|
-
"image/vnd.dxf": ["dxf"],
|
|
209028
|
-
"image/vnd.fastbidsheet": ["fbs"],
|
|
209029
|
-
"image/vnd.fpx": ["fpx"],
|
|
209030
|
-
"image/vnd.fst": ["fst"],
|
|
209031
|
-
"image/vnd.fujixerox.edmics-mmr": ["mmr"],
|
|
209032
|
-
"image/vnd.fujixerox.edmics-rlc": ["rlc"],
|
|
209033
|
-
"image/vnd.microsoft.icon": ["ico"],
|
|
209034
|
-
"image/vnd.ms-dds": ["dds"],
|
|
209035
|
-
"image/vnd.ms-modi": ["mdi"],
|
|
209036
|
-
"image/vnd.ms-photo": ["wdp"],
|
|
209037
|
-
"image/vnd.net-fpx": ["npx"],
|
|
209038
|
-
"image/vnd.pco.b16": ["b16"],
|
|
209039
|
-
"image/vnd.tencent.tap": ["tap"],
|
|
209040
|
-
"image/vnd.valve.source.texture": ["vtf"],
|
|
209041
|
-
"image/vnd.wap.wbmp": ["wbmp"],
|
|
209042
|
-
"image/vnd.xiff": ["xif"],
|
|
209043
|
-
"image/vnd.zbrush.pcx": ["pcx"],
|
|
209044
|
-
"image/x-3ds": ["3ds"],
|
|
209045
|
-
"image/x-adobe-dng": ["dng"],
|
|
209046
|
-
"image/x-cmu-raster": ["ras"],
|
|
209047
|
-
"image/x-cmx": ["cmx"],
|
|
209048
|
-
"image/x-freehand": ["fh", "fhc", "fh4", "fh5", "fh7"],
|
|
209049
|
-
"image/x-icon": ["*ico"],
|
|
209050
|
-
"image/x-jng": ["jng"],
|
|
209051
|
-
"image/x-mrsid-image": ["sid"],
|
|
209052
|
-
"image/x-ms-bmp": ["*bmp"],
|
|
209053
|
-
"image/x-pcx": ["*pcx"],
|
|
209054
|
-
"image/x-pict": ["pic", "pct"],
|
|
209055
|
-
"image/x-portable-anymap": ["pnm"],
|
|
209056
|
-
"image/x-portable-bitmap": ["pbm"],
|
|
209057
|
-
"image/x-portable-graymap": ["pgm"],
|
|
209058
|
-
"image/x-portable-pixmap": ["ppm"],
|
|
209059
|
-
"image/x-rgb": ["rgb"],
|
|
209060
|
-
"image/x-tga": ["tga"],
|
|
209061
|
-
"image/x-xbitmap": ["xbm"],
|
|
209062
|
-
"image/x-xpixmap": ["xpm"],
|
|
209063
|
-
"image/x-xwindowdump": ["xwd"],
|
|
209064
|
-
"message/vnd.wfa.wsc": ["wsc"],
|
|
209065
|
-
"model/vnd.bary": ["bary"],
|
|
209066
|
-
"model/vnd.cld": ["cld"],
|
|
209067
|
-
"model/vnd.collada+xml": ["dae"],
|
|
209068
|
-
"model/vnd.dwf": ["dwf"],
|
|
209069
|
-
"model/vnd.gdl": ["gdl"],
|
|
209070
|
-
"model/vnd.gtw": ["gtw"],
|
|
209071
|
-
"model/vnd.mts": ["*mts"],
|
|
209072
|
-
"model/vnd.opengex": ["ogex"],
|
|
209073
|
-
"model/vnd.parasolid.transmit.binary": ["x_b"],
|
|
209074
|
-
"model/vnd.parasolid.transmit.text": ["x_t"],
|
|
209075
|
-
"model/vnd.pytha.pyox": ["pyo", "pyox"],
|
|
209076
|
-
"model/vnd.sap.vds": ["vds"],
|
|
209077
|
-
"model/vnd.usda": ["usda"],
|
|
209078
|
-
"model/vnd.usdz+zip": ["usdz"],
|
|
209079
|
-
"model/vnd.valve.source.compiled-map": ["bsp"],
|
|
209080
|
-
"model/vnd.vtu": ["vtu"],
|
|
209081
|
-
"text/prs.lines.tag": ["dsc"],
|
|
209082
|
-
"text/vnd.curl": ["curl"],
|
|
209083
|
-
"text/vnd.curl.dcurl": ["dcurl"],
|
|
209084
|
-
"text/vnd.curl.mcurl": ["mcurl"],
|
|
209085
|
-
"text/vnd.curl.scurl": ["scurl"],
|
|
209086
|
-
"text/vnd.dvb.subtitle": ["sub"],
|
|
209087
|
-
"text/vnd.familysearch.gedcom": ["ged"],
|
|
209088
|
-
"text/vnd.fly": ["fly"],
|
|
209089
|
-
"text/vnd.fmi.flexstor": ["flx"],
|
|
209090
|
-
"text/vnd.graphviz": ["gv"],
|
|
209091
|
-
"text/vnd.in3d.3dml": ["3dml"],
|
|
209092
|
-
"text/vnd.in3d.spot": ["spot"],
|
|
209093
|
-
"text/vnd.sun.j2me.app-descriptor": ["jad"],
|
|
209094
|
-
"text/vnd.wap.wml": ["wml"],
|
|
209095
|
-
"text/vnd.wap.wmlscript": ["wmls"],
|
|
209096
|
-
"text/x-asm": ["s", "asm"],
|
|
209097
|
-
"text/x-c": ["c", "cc", "cxx", "cpp", "h", "hh", "dic"],
|
|
209098
|
-
"text/x-component": ["htc"],
|
|
209099
|
-
"text/x-fortran": ["f", "for", "f77", "f90"],
|
|
209100
|
-
"text/x-handlebars-template": ["hbs"],
|
|
209101
|
-
"text/x-java-source": ["java"],
|
|
209102
|
-
"text/x-lua": ["lua"],
|
|
209103
|
-
"text/x-markdown": ["mkd"],
|
|
209104
|
-
"text/x-nfo": ["nfo"],
|
|
209105
|
-
"text/x-opml": ["opml"],
|
|
209106
|
-
"text/x-org": ["*org"],
|
|
209107
|
-
"text/x-pascal": ["p", "pas"],
|
|
209108
|
-
"text/x-processing": ["pde"],
|
|
209109
|
-
"text/x-sass": ["sass"],
|
|
209110
|
-
"text/x-scss": ["scss"],
|
|
209111
|
-
"text/x-setext": ["etx"],
|
|
209112
|
-
"text/x-sfv": ["sfv"],
|
|
209113
|
-
"text/x-suse-ymp": ["ymp"],
|
|
209114
|
-
"text/x-uuencode": ["uu"],
|
|
209115
|
-
"text/x-vcalendar": ["vcs"],
|
|
209116
|
-
"text/x-vcard": ["vcf"],
|
|
209117
|
-
"video/vnd.dece.hd": ["uvh", "uvvh"],
|
|
209118
|
-
"video/vnd.dece.mobile": ["uvm", "uvvm"],
|
|
209119
|
-
"video/vnd.dece.pd": ["uvp", "uvvp"],
|
|
209120
|
-
"video/vnd.dece.sd": ["uvs", "uvvs"],
|
|
209121
|
-
"video/vnd.dece.video": ["uvv", "uvvv"],
|
|
209122
|
-
"video/vnd.dvb.file": ["dvb"],
|
|
209123
|
-
"video/vnd.fvt": ["fvt"],
|
|
209124
|
-
"video/vnd.mpegurl": ["mxu", "m4u"],
|
|
209125
|
-
"video/vnd.ms-playready.media.pyv": ["pyv"],
|
|
209126
|
-
"video/vnd.uvvu.mp4": ["uvu", "uvvu"],
|
|
209127
|
-
"video/vnd.vivo": ["viv"],
|
|
209128
|
-
"video/x-f4v": ["f4v"],
|
|
209129
|
-
"video/x-fli": ["fli"],
|
|
209130
|
-
"video/x-flv": ["flv"],
|
|
209131
|
-
"video/x-m4v": ["m4v"],
|
|
209132
|
-
"video/x-matroska": ["mkv", "mk3d", "mks"],
|
|
209133
|
-
"video/x-mng": ["mng"],
|
|
209134
|
-
"video/x-ms-asf": ["asf", "asx"],
|
|
209135
|
-
"video/x-ms-vob": ["vob"],
|
|
209136
|
-
"video/x-ms-wm": ["wm"],
|
|
209137
|
-
"video/x-ms-wmv": ["wmv"],
|
|
209138
|
-
"video/x-ms-wmx": ["wmx"],
|
|
209139
|
-
"video/x-ms-wvx": ["wvx"],
|
|
209140
|
-
"video/x-msvideo": ["avi"],
|
|
209141
|
-
"video/x-sgi-movie": ["movie"],
|
|
209142
|
-
"video/x-smv": ["smv"],
|
|
209143
|
-
"x-conference/x-cooltalk": ["ice"]
|
|
209144
|
-
};
|
|
209145
|
-
Object.freeze(types);
|
|
209146
|
-
var other_default = types;
|
|
209147
|
-
|
|
209148
|
-
// ../../node_modules/.pnpm/mime@4.1.0/node_modules/mime/dist/types/standard.js
|
|
209149
|
-
var types2 = {
|
|
209150
|
-
"application/andrew-inset": ["ez"],
|
|
209151
|
-
"application/appinstaller": ["appinstaller"],
|
|
209152
|
-
"application/applixware": ["aw"],
|
|
209153
|
-
"application/appx": ["appx"],
|
|
209154
|
-
"application/appxbundle": ["appxbundle"],
|
|
209155
|
-
"application/atom+xml": ["atom"],
|
|
209156
|
-
"application/atomcat+xml": ["atomcat"],
|
|
209157
|
-
"application/atomdeleted+xml": ["atomdeleted"],
|
|
209158
|
-
"application/atomsvc+xml": ["atomsvc"],
|
|
209159
|
-
"application/atsc-dwd+xml": ["dwd"],
|
|
209160
|
-
"application/atsc-held+xml": ["held"],
|
|
209161
|
-
"application/atsc-rsat+xml": ["rsat"],
|
|
209162
|
-
"application/automationml-aml+xml": ["aml"],
|
|
209163
|
-
"application/automationml-amlx+zip": ["amlx"],
|
|
209164
|
-
"application/bdoc": ["bdoc"],
|
|
209165
|
-
"application/calendar+xml": ["xcs"],
|
|
209166
|
-
"application/ccxml+xml": ["ccxml"],
|
|
209167
|
-
"application/cdfx+xml": ["cdfx"],
|
|
209168
|
-
"application/cdmi-capability": ["cdmia"],
|
|
209169
|
-
"application/cdmi-container": ["cdmic"],
|
|
209170
|
-
"application/cdmi-domain": ["cdmid"],
|
|
209171
|
-
"application/cdmi-object": ["cdmio"],
|
|
209172
|
-
"application/cdmi-queue": ["cdmiq"],
|
|
209173
|
-
"application/cpl+xml": ["cpl"],
|
|
209174
|
-
"application/cu-seeme": ["cu"],
|
|
209175
|
-
"application/cwl": ["cwl"],
|
|
209176
|
-
"application/dash+xml": ["mpd"],
|
|
209177
|
-
"application/dash-patch+xml": ["mpp"],
|
|
209178
|
-
"application/davmount+xml": ["davmount"],
|
|
209179
|
-
"application/dicom": ["dcm"],
|
|
209180
|
-
"application/docbook+xml": ["dbk"],
|
|
209181
|
-
"application/dssc+der": ["dssc"],
|
|
209182
|
-
"application/dssc+xml": ["xdssc"],
|
|
209183
|
-
"application/ecmascript": ["ecma"],
|
|
209184
|
-
"application/emma+xml": ["emma"],
|
|
209185
|
-
"application/emotionml+xml": ["emotionml"],
|
|
209186
|
-
"application/epub+zip": ["epub"],
|
|
209187
|
-
"application/exi": ["exi"],
|
|
209188
|
-
"application/express": ["exp"],
|
|
209189
|
-
"application/fdf": ["fdf"],
|
|
209190
|
-
"application/fdt+xml": ["fdt"],
|
|
209191
|
-
"application/font-tdpfr": ["pfr"],
|
|
209192
|
-
"application/geo+json": ["geojson"],
|
|
209193
|
-
"application/gml+xml": ["gml"],
|
|
209194
|
-
"application/gpx+xml": ["gpx"],
|
|
209195
|
-
"application/gxf": ["gxf"],
|
|
209196
|
-
"application/gzip": ["gz"],
|
|
209197
|
-
"application/hjson": ["hjson"],
|
|
209198
|
-
"application/hyperstudio": ["stk"],
|
|
209199
|
-
"application/inkml+xml": ["ink", "inkml"],
|
|
209200
|
-
"application/ipfix": ["ipfix"],
|
|
209201
|
-
"application/its+xml": ["its"],
|
|
209202
|
-
"application/java-archive": ["jar", "war", "ear"],
|
|
209203
|
-
"application/java-serialized-object": ["ser"],
|
|
209204
|
-
"application/java-vm": ["class"],
|
|
209205
|
-
"application/javascript": ["*js"],
|
|
209206
|
-
"application/json": ["json", "map"],
|
|
209207
|
-
"application/json5": ["json5"],
|
|
209208
|
-
"application/jsonml+json": ["jsonml"],
|
|
209209
|
-
"application/ld+json": ["jsonld"],
|
|
209210
|
-
"application/lgr+xml": ["lgr"],
|
|
209211
|
-
"application/lost+xml": ["lostxml"],
|
|
209212
|
-
"application/mac-binhex40": ["hqx"],
|
|
209213
|
-
"application/mac-compactpro": ["cpt"],
|
|
209214
|
-
"application/mads+xml": ["mads"],
|
|
209215
|
-
"application/manifest+json": ["webmanifest"],
|
|
209216
|
-
"application/marc": ["mrc"],
|
|
209217
|
-
"application/marcxml+xml": ["mrcx"],
|
|
209218
|
-
"application/mathematica": ["ma", "nb", "mb"],
|
|
209219
|
-
"application/mathml+xml": ["mathml"],
|
|
209220
|
-
"application/mbox": ["mbox"],
|
|
209221
|
-
"application/media-policy-dataset+xml": ["mpf"],
|
|
209222
|
-
"application/mediaservercontrol+xml": ["mscml"],
|
|
209223
|
-
"application/metalink+xml": ["metalink"],
|
|
209224
|
-
"application/metalink4+xml": ["meta4"],
|
|
209225
|
-
"application/mets+xml": ["mets"],
|
|
209226
|
-
"application/mmt-aei+xml": ["maei"],
|
|
209227
|
-
"application/mmt-usd+xml": ["musd"],
|
|
209228
|
-
"application/mods+xml": ["mods"],
|
|
209229
|
-
"application/mp21": ["m21", "mp21"],
|
|
209230
|
-
"application/mp4": ["*mp4", "*mpg4", "mp4s", "m4p"],
|
|
209231
|
-
"application/msix": ["msix"],
|
|
209232
|
-
"application/msixbundle": ["msixbundle"],
|
|
209233
|
-
"application/msword": ["doc", "dot"],
|
|
209234
|
-
"application/mxf": ["mxf"],
|
|
209235
|
-
"application/n-quads": ["nq"],
|
|
209236
|
-
"application/n-triples": ["nt"],
|
|
209237
|
-
"application/node": ["cjs"],
|
|
209238
|
-
"application/octet-stream": [
|
|
209239
|
-
"bin",
|
|
209240
|
-
"dms",
|
|
209241
|
-
"lrf",
|
|
209242
|
-
"mar",
|
|
209243
|
-
"so",
|
|
209244
|
-
"dist",
|
|
209245
|
-
"distz",
|
|
209246
|
-
"pkg",
|
|
209247
|
-
"bpk",
|
|
209248
|
-
"dump",
|
|
209249
|
-
"elc",
|
|
209250
|
-
"deploy",
|
|
209251
|
-
"exe",
|
|
209252
|
-
"dll",
|
|
209253
|
-
"deb",
|
|
209254
|
-
"dmg",
|
|
209255
|
-
"iso",
|
|
209256
|
-
"img",
|
|
209257
|
-
"msi",
|
|
209258
|
-
"msp",
|
|
209259
|
-
"msm",
|
|
209260
|
-
"buffer"
|
|
209261
|
-
],
|
|
209262
|
-
"application/oda": ["oda"],
|
|
209263
|
-
"application/oebps-package+xml": ["opf"],
|
|
209264
|
-
"application/ogg": ["ogx"],
|
|
209265
|
-
"application/omdoc+xml": ["omdoc"],
|
|
209266
|
-
"application/onenote": [
|
|
209267
|
-
"onetoc",
|
|
209268
|
-
"onetoc2",
|
|
209269
|
-
"onetmp",
|
|
209270
|
-
"onepkg",
|
|
209271
|
-
"one",
|
|
209272
|
-
"onea"
|
|
209273
|
-
],
|
|
209274
|
-
"application/oxps": ["oxps"],
|
|
209275
|
-
"application/p2p-overlay+xml": ["relo"],
|
|
209276
|
-
"application/patch-ops-error+xml": ["xer"],
|
|
209277
|
-
"application/pdf": ["pdf"],
|
|
209278
|
-
"application/pgp-encrypted": ["pgp"],
|
|
209279
|
-
"application/pgp-keys": ["asc"],
|
|
209280
|
-
"application/pgp-signature": ["sig", "*asc"],
|
|
209281
|
-
"application/pics-rules": ["prf"],
|
|
209282
|
-
"application/pkcs10": ["p10"],
|
|
209283
|
-
"application/pkcs7-mime": ["p7m", "p7c"],
|
|
209284
|
-
"application/pkcs7-signature": ["p7s"],
|
|
209285
|
-
"application/pkcs8": ["p8"],
|
|
209286
|
-
"application/pkix-attr-cert": ["ac"],
|
|
209287
|
-
"application/pkix-cert": ["cer"],
|
|
209288
|
-
"application/pkix-crl": ["crl"],
|
|
209289
|
-
"application/pkix-pkipath": ["pkipath"],
|
|
209290
|
-
"application/pkixcmp": ["pki"],
|
|
209291
|
-
"application/pls+xml": ["pls"],
|
|
209292
|
-
"application/postscript": ["ai", "eps", "ps"],
|
|
209293
|
-
"application/provenance+xml": ["provx"],
|
|
209294
|
-
"application/pskc+xml": ["pskcxml"],
|
|
209295
|
-
"application/raml+yaml": ["raml"],
|
|
209296
|
-
"application/rdf+xml": ["rdf", "owl"],
|
|
209297
|
-
"application/reginfo+xml": ["rif"],
|
|
209298
|
-
"application/relax-ng-compact-syntax": ["rnc"],
|
|
209299
|
-
"application/resource-lists+xml": ["rl"],
|
|
209300
|
-
"application/resource-lists-diff+xml": ["rld"],
|
|
209301
|
-
"application/rls-services+xml": ["rs"],
|
|
209302
|
-
"application/route-apd+xml": ["rapd"],
|
|
209303
|
-
"application/route-s-tsid+xml": ["sls"],
|
|
209304
|
-
"application/route-usd+xml": ["rusd"],
|
|
209305
|
-
"application/rpki-ghostbusters": ["gbr"],
|
|
209306
|
-
"application/rpki-manifest": ["mft"],
|
|
209307
|
-
"application/rpki-roa": ["roa"],
|
|
209308
|
-
"application/rsd+xml": ["rsd"],
|
|
209309
|
-
"application/rss+xml": ["rss"],
|
|
209310
|
-
"application/rtf": ["rtf"],
|
|
209311
|
-
"application/sbml+xml": ["sbml"],
|
|
209312
|
-
"application/scvp-cv-request": ["scq"],
|
|
209313
|
-
"application/scvp-cv-response": ["scs"],
|
|
209314
|
-
"application/scvp-vp-request": ["spq"],
|
|
209315
|
-
"application/scvp-vp-response": ["spp"],
|
|
209316
|
-
"application/sdp": ["sdp"],
|
|
209317
|
-
"application/senml+xml": ["senmlx"],
|
|
209318
|
-
"application/sensml+xml": ["sensmlx"],
|
|
209319
|
-
"application/set-payment-initiation": ["setpay"],
|
|
209320
|
-
"application/set-registration-initiation": ["setreg"],
|
|
209321
|
-
"application/shf+xml": ["shf"],
|
|
209322
|
-
"application/sieve": ["siv", "sieve"],
|
|
209323
|
-
"application/smil+xml": ["smi", "smil"],
|
|
209324
|
-
"application/sparql-query": ["rq"],
|
|
209325
|
-
"application/sparql-results+xml": ["srx"],
|
|
209326
|
-
"application/sql": ["sql"],
|
|
209327
|
-
"application/srgs": ["gram"],
|
|
209328
|
-
"application/srgs+xml": ["grxml"],
|
|
209329
|
-
"application/sru+xml": ["sru"],
|
|
209330
|
-
"application/ssdl+xml": ["ssdl"],
|
|
209331
|
-
"application/ssml+xml": ["ssml"],
|
|
209332
|
-
"application/swid+xml": ["swidtag"],
|
|
209333
|
-
"application/tei+xml": ["tei", "teicorpus"],
|
|
209334
|
-
"application/thraud+xml": ["tfi"],
|
|
209335
|
-
"application/timestamped-data": ["tsd"],
|
|
209336
|
-
"application/toml": ["toml"],
|
|
209337
|
-
"application/trig": ["trig"],
|
|
209338
|
-
"application/ttml+xml": ["ttml"],
|
|
209339
|
-
"application/ubjson": ["ubj"],
|
|
209340
|
-
"application/urc-ressheet+xml": ["rsheet"],
|
|
209341
|
-
"application/urc-targetdesc+xml": ["td"],
|
|
209342
|
-
"application/voicexml+xml": ["vxml"],
|
|
209343
|
-
"application/wasm": ["wasm"],
|
|
209344
|
-
"application/watcherinfo+xml": ["wif"],
|
|
209345
|
-
"application/widget": ["wgt"],
|
|
209346
|
-
"application/winhlp": ["hlp"],
|
|
209347
|
-
"application/wsdl+xml": ["wsdl"],
|
|
209348
|
-
"application/wspolicy+xml": ["wspolicy"],
|
|
209349
|
-
"application/xaml+xml": ["xaml"],
|
|
209350
|
-
"application/xcap-att+xml": ["xav"],
|
|
209351
|
-
"application/xcap-caps+xml": ["xca"],
|
|
209352
|
-
"application/xcap-diff+xml": ["xdf"],
|
|
209353
|
-
"application/xcap-el+xml": ["xel"],
|
|
209354
|
-
"application/xcap-ns+xml": ["xns"],
|
|
209355
|
-
"application/xenc+xml": ["xenc"],
|
|
209356
|
-
"application/xfdf": ["xfdf"],
|
|
209357
|
-
"application/xhtml+xml": ["xhtml", "xht"],
|
|
209358
|
-
"application/xliff+xml": ["xlf"],
|
|
209359
|
-
"application/xml": ["xml", "xsl", "xsd", "rng"],
|
|
209360
|
-
"application/xml-dtd": ["dtd"],
|
|
209361
|
-
"application/xop+xml": ["xop"],
|
|
209362
|
-
"application/xproc+xml": ["xpl"],
|
|
209363
|
-
"application/xslt+xml": ["*xsl", "xslt"],
|
|
209364
|
-
"application/xspf+xml": ["xspf"],
|
|
209365
|
-
"application/xv+xml": ["mxml", "xhvml", "xvml", "xvm"],
|
|
209366
|
-
"application/yang": ["yang"],
|
|
209367
|
-
"application/yin+xml": ["yin"],
|
|
209368
|
-
"application/zip": ["zip"],
|
|
209369
|
-
"application/zip+dotlottie": ["lottie"],
|
|
209370
|
-
"audio/3gpp": ["*3gpp"],
|
|
209371
|
-
"audio/aac": ["adts", "aac"],
|
|
209372
|
-
"audio/adpcm": ["adp"],
|
|
209373
|
-
"audio/amr": ["amr"],
|
|
209374
|
-
"audio/basic": ["au", "snd"],
|
|
209375
|
-
"audio/midi": ["mid", "midi", "kar", "rmi"],
|
|
209376
|
-
"audio/mobile-xmf": ["mxmf"],
|
|
209377
|
-
"audio/mp3": ["*mp3"],
|
|
209378
|
-
"audio/mp4": ["m4a", "mp4a", "m4b"],
|
|
209379
|
-
"audio/mpeg": ["mpga", "mp2", "mp2a", "mp3", "m2a", "m3a"],
|
|
209380
|
-
"audio/ogg": ["oga", "ogg", "spx", "opus"],
|
|
209381
|
-
"audio/s3m": ["s3m"],
|
|
209382
|
-
"audio/silk": ["sil"],
|
|
209383
|
-
"audio/wav": ["wav"],
|
|
209384
|
-
"audio/wave": ["*wav"],
|
|
209385
|
-
"audio/webm": ["weba"],
|
|
209386
|
-
"audio/xm": ["xm"],
|
|
209387
|
-
"font/collection": ["ttc"],
|
|
209388
|
-
"font/otf": ["otf"],
|
|
209389
|
-
"font/ttf": ["ttf"],
|
|
209390
|
-
"font/woff": ["woff"],
|
|
209391
|
-
"font/woff2": ["woff2"],
|
|
209392
|
-
"image/aces": ["exr"],
|
|
209393
|
-
"image/apng": ["apng"],
|
|
209394
|
-
"image/avci": ["avci"],
|
|
209395
|
-
"image/avcs": ["avcs"],
|
|
209396
|
-
"image/avif": ["avif"],
|
|
209397
|
-
"image/bmp": ["bmp", "dib"],
|
|
209398
|
-
"image/cgm": ["cgm"],
|
|
209399
|
-
"image/dicom-rle": ["drle"],
|
|
209400
|
-
"image/dpx": ["dpx"],
|
|
209401
|
-
"image/emf": ["emf"],
|
|
209402
|
-
"image/fits": ["fits"],
|
|
209403
|
-
"image/g3fax": ["g3"],
|
|
209404
|
-
"image/gif": ["gif"],
|
|
209405
|
-
"image/heic": ["heic"],
|
|
209406
|
-
"image/heic-sequence": ["heics"],
|
|
209407
|
-
"image/heif": ["heif"],
|
|
209408
|
-
"image/heif-sequence": ["heifs"],
|
|
209409
|
-
"image/hej2k": ["hej2"],
|
|
209410
|
-
"image/ief": ["ief"],
|
|
209411
|
-
"image/jaii": ["jaii"],
|
|
209412
|
-
"image/jais": ["jais"],
|
|
209413
|
-
"image/jls": ["jls"],
|
|
209414
|
-
"image/jp2": ["jp2", "jpg2"],
|
|
209415
|
-
"image/jpeg": ["jpg", "jpeg", "jpe"],
|
|
209416
|
-
"image/jph": ["jph"],
|
|
209417
|
-
"image/jphc": ["jhc"],
|
|
209418
|
-
"image/jpm": ["jpm", "jpgm"],
|
|
209419
|
-
"image/jpx": ["jpx", "jpf"],
|
|
209420
|
-
"image/jxl": ["jxl"],
|
|
209421
|
-
"image/jxr": ["jxr"],
|
|
209422
|
-
"image/jxra": ["jxra"],
|
|
209423
|
-
"image/jxrs": ["jxrs"],
|
|
209424
|
-
"image/jxs": ["jxs"],
|
|
209425
|
-
"image/jxsc": ["jxsc"],
|
|
209426
|
-
"image/jxsi": ["jxsi"],
|
|
209427
|
-
"image/jxss": ["jxss"],
|
|
209428
|
-
"image/ktx": ["ktx"],
|
|
209429
|
-
"image/ktx2": ["ktx2"],
|
|
209430
|
-
"image/pjpeg": ["jfif"],
|
|
209431
|
-
"image/png": ["png"],
|
|
209432
|
-
"image/sgi": ["sgi"],
|
|
209433
|
-
"image/svg+xml": ["svg", "svgz"],
|
|
209434
|
-
"image/t38": ["t38"],
|
|
209435
|
-
"image/tiff": ["tif", "tiff"],
|
|
209436
|
-
"image/tiff-fx": ["tfx"],
|
|
209437
|
-
"image/webp": ["webp"],
|
|
209438
|
-
"image/wmf": ["wmf"],
|
|
209439
|
-
"message/disposition-notification": ["disposition-notification"],
|
|
209440
|
-
"message/global": ["u8msg"],
|
|
209441
|
-
"message/global-delivery-status": ["u8dsn"],
|
|
209442
|
-
"message/global-disposition-notification": ["u8mdn"],
|
|
209443
|
-
"message/global-headers": ["u8hdr"],
|
|
209444
|
-
"message/rfc822": ["eml", "mime", "mht", "mhtml"],
|
|
209445
|
-
"model/3mf": ["3mf"],
|
|
209446
|
-
"model/gltf+json": ["gltf"],
|
|
209447
|
-
"model/gltf-binary": ["glb"],
|
|
209448
|
-
"model/iges": ["igs", "iges"],
|
|
209449
|
-
"model/jt": ["jt"],
|
|
209450
|
-
"model/mesh": ["msh", "mesh", "silo"],
|
|
209451
|
-
"model/mtl": ["mtl"],
|
|
209452
|
-
"model/obj": ["obj"],
|
|
209453
|
-
"model/prc": ["prc"],
|
|
209454
|
-
"model/step": ["step", "stp", "stpnc", "p21", "210"],
|
|
209455
|
-
"model/step+xml": ["stpx"],
|
|
209456
|
-
"model/step+zip": ["stpz"],
|
|
209457
|
-
"model/step-xml+zip": ["stpxz"],
|
|
209458
|
-
"model/stl": ["stl"],
|
|
209459
|
-
"model/u3d": ["u3d"],
|
|
209460
|
-
"model/vrml": ["wrl", "vrml"],
|
|
209461
|
-
"model/x3d+binary": ["*x3db", "x3dbz"],
|
|
209462
|
-
"model/x3d+fastinfoset": ["x3db"],
|
|
209463
|
-
"model/x3d+vrml": ["*x3dv", "x3dvz"],
|
|
209464
|
-
"model/x3d+xml": ["x3d", "x3dz"],
|
|
209465
|
-
"model/x3d-vrml": ["x3dv"],
|
|
209466
|
-
"text/cache-manifest": ["appcache", "manifest"],
|
|
209467
|
-
"text/calendar": ["ics", "ifb"],
|
|
209468
|
-
"text/coffeescript": ["coffee", "litcoffee"],
|
|
209469
|
-
"text/css": ["css"],
|
|
209470
|
-
"text/csv": ["csv"],
|
|
209471
|
-
"text/html": ["html", "htm", "shtml"],
|
|
209472
|
-
"text/jade": ["jade"],
|
|
209473
|
-
"text/javascript": ["js", "mjs"],
|
|
209474
|
-
"text/jsx": ["jsx"],
|
|
209475
|
-
"text/less": ["less"],
|
|
209476
|
-
"text/markdown": ["md", "markdown"],
|
|
209477
|
-
"text/mathml": ["mml"],
|
|
209478
|
-
"text/mdx": ["mdx"],
|
|
209479
|
-
"text/n3": ["n3"],
|
|
209480
|
-
"text/plain": ["txt", "text", "conf", "def", "list", "log", "in", "ini"],
|
|
209481
|
-
"text/richtext": ["rtx"],
|
|
209482
|
-
"text/rtf": ["*rtf"],
|
|
209483
|
-
"text/sgml": ["sgml", "sgm"],
|
|
209484
|
-
"text/shex": ["shex"],
|
|
209485
|
-
"text/slim": ["slim", "slm"],
|
|
209486
|
-
"text/spdx": ["spdx"],
|
|
209487
|
-
"text/stylus": ["stylus", "styl"],
|
|
209488
|
-
"text/tab-separated-values": ["tsv"],
|
|
209489
|
-
"text/troff": ["t", "tr", "roff", "man", "me", "ms"],
|
|
209490
|
-
"text/turtle": ["ttl"],
|
|
209491
|
-
"text/uri-list": ["uri", "uris", "urls"],
|
|
209492
|
-
"text/vcard": ["vcard"],
|
|
209493
|
-
"text/vtt": ["vtt"],
|
|
209494
|
-
"text/wgsl": ["wgsl"],
|
|
209495
|
-
"text/xml": ["*xml"],
|
|
209496
|
-
"text/yaml": ["yaml", "yml"],
|
|
209497
|
-
"video/3gpp": ["3gp", "3gpp"],
|
|
209498
|
-
"video/3gpp2": ["3g2"],
|
|
209499
|
-
"video/h261": ["h261"],
|
|
209500
|
-
"video/h263": ["h263"],
|
|
209501
|
-
"video/h264": ["h264"],
|
|
209502
|
-
"video/iso.segment": ["m4s"],
|
|
209503
|
-
"video/jpeg": ["jpgv"],
|
|
209504
|
-
"video/jpm": ["*jpm", "*jpgm"],
|
|
209505
|
-
"video/mj2": ["mj2", "mjp2"],
|
|
209506
|
-
"video/mp2t": ["ts", "m2t", "m2ts", "mts"],
|
|
209507
|
-
"video/mp4": ["mp4", "mp4v", "mpg4"],
|
|
209508
|
-
"video/mpeg": ["mpeg", "mpg", "mpe", "m1v", "m2v"],
|
|
209509
|
-
"video/ogg": ["ogv"],
|
|
209510
|
-
"video/quicktime": ["qt", "mov"],
|
|
209511
|
-
"video/webm": ["webm"]
|
|
209512
|
-
};
|
|
209513
|
-
Object.freeze(types2);
|
|
209514
|
-
var standard_default = types2;
|
|
209515
|
-
|
|
209516
|
-
// ../../node_modules/.pnpm/mime@4.1.0/node_modules/mime/dist/src/Mime.js
|
|
209517
|
-
var __classPrivateFieldGet = function(receiver2, state, kind, f) {
|
|
209518
|
-
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
|
209519
|
-
if (typeof state === "function" ? receiver2 !== state || !f : !state.has(receiver2)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
209520
|
-
return kind === "m" ? f : kind === "a" ? f.call(receiver2) : f ? f.value : state.get(receiver2);
|
|
209521
|
-
};
|
|
209522
|
-
var _Mime_extensionToType;
|
|
209523
|
-
var _Mime_typeToExtension;
|
|
209524
|
-
var _Mime_typeToExtensions;
|
|
209525
|
-
var Mime = class {
|
|
209526
|
-
constructor(...args) {
|
|
209527
|
-
_Mime_extensionToType.set(this, /* @__PURE__ */ new Map());
|
|
209528
|
-
_Mime_typeToExtension.set(this, /* @__PURE__ */ new Map());
|
|
209529
|
-
_Mime_typeToExtensions.set(this, /* @__PURE__ */ new Map());
|
|
209530
|
-
for (const arg of args) {
|
|
209531
|
-
this.define(arg);
|
|
209532
|
-
}
|
|
209533
|
-
}
|
|
209534
|
-
define(typeMap, force = false) {
|
|
209535
|
-
for (let [type, extensions] of Object.entries(typeMap)) {
|
|
209536
|
-
type = type.toLowerCase();
|
|
209537
|
-
extensions = extensions.map((ext2) => ext2.toLowerCase());
|
|
209538
|
-
if (!__classPrivateFieldGet(this, _Mime_typeToExtensions, "f").has(type)) {
|
|
209539
|
-
__classPrivateFieldGet(this, _Mime_typeToExtensions, "f").set(type, /* @__PURE__ */ new Set());
|
|
209540
|
-
}
|
|
209541
|
-
const allExtensions = __classPrivateFieldGet(this, _Mime_typeToExtensions, "f").get(type);
|
|
209542
|
-
let first = true;
|
|
209543
|
-
for (let extension of extensions) {
|
|
209544
|
-
const starred = extension.startsWith("*");
|
|
209545
|
-
extension = starred ? extension.slice(1) : extension;
|
|
209546
|
-
allExtensions?.add(extension);
|
|
209547
|
-
if (first) {
|
|
209548
|
-
__classPrivateFieldGet(this, _Mime_typeToExtension, "f").set(type, extension);
|
|
209549
|
-
}
|
|
209550
|
-
first = false;
|
|
209551
|
-
if (starred)
|
|
209552
|
-
continue;
|
|
209553
|
-
const currentType = __classPrivateFieldGet(this, _Mime_extensionToType, "f").get(extension);
|
|
209554
|
-
if (currentType && currentType != type && !force) {
|
|
209555
|
-
throw new Error(`"${type} -> ${extension}" conflicts with "${currentType} -> ${extension}". Pass \`force=true\` to override this definition.`);
|
|
209556
|
-
}
|
|
209557
|
-
__classPrivateFieldGet(this, _Mime_extensionToType, "f").set(extension, type);
|
|
209558
|
-
}
|
|
209559
|
-
}
|
|
209560
|
-
return this;
|
|
209561
|
-
}
|
|
209562
|
-
getType(path17) {
|
|
209563
|
-
if (typeof path17 !== "string")
|
|
209564
|
-
return null;
|
|
209565
|
-
const last4 = path17.replace(/^.*[/\\]/s, "").toLowerCase();
|
|
209566
|
-
const ext2 = last4.replace(/^.*\./s, "").toLowerCase();
|
|
209567
|
-
const hasPath = last4.length < path17.length;
|
|
209568
|
-
const hasDot = ext2.length < last4.length - 1;
|
|
209569
|
-
if (!hasDot && hasPath)
|
|
209570
|
-
return null;
|
|
209571
|
-
return __classPrivateFieldGet(this, _Mime_extensionToType, "f").get(ext2) ?? null;
|
|
209572
|
-
}
|
|
209573
|
-
getExtension(type) {
|
|
209574
|
-
if (typeof type !== "string")
|
|
209575
|
-
return null;
|
|
209576
|
-
type = type?.split?.(";")[0];
|
|
209577
|
-
return (type && __classPrivateFieldGet(this, _Mime_typeToExtension, "f").get(type.trim().toLowerCase())) ?? null;
|
|
209578
|
-
}
|
|
209579
|
-
getAllExtensions(type) {
|
|
209580
|
-
if (typeof type !== "string")
|
|
209581
|
-
return null;
|
|
209582
|
-
return __classPrivateFieldGet(this, _Mime_typeToExtensions, "f").get(type.toLowerCase()) ?? null;
|
|
209583
|
-
}
|
|
209584
|
-
_freeze() {
|
|
209585
|
-
this.define = () => {
|
|
209586
|
-
throw new Error("define() not allowed for built-in Mime objects. See https://github.com/broofa/mime/blob/main/README.md#custom-mime-instances");
|
|
209587
|
-
};
|
|
209588
|
-
Object.freeze(this);
|
|
209589
|
-
for (const extensions of __classPrivateFieldGet(this, _Mime_typeToExtensions, "f").values()) {
|
|
209590
|
-
Object.freeze(extensions);
|
|
209591
|
-
}
|
|
209592
|
-
return this;
|
|
209593
|
-
}
|
|
209594
|
-
_getTestState() {
|
|
209595
|
-
return {
|
|
209596
|
-
types: __classPrivateFieldGet(this, _Mime_extensionToType, "f"),
|
|
209597
|
-
extensions: __classPrivateFieldGet(this, _Mime_typeToExtension, "f")
|
|
209598
|
-
};
|
|
209599
|
-
}
|
|
209600
|
-
};
|
|
209601
|
-
_Mime_extensionToType = /* @__PURE__ */ new WeakMap(), _Mime_typeToExtension = /* @__PURE__ */ new WeakMap(), _Mime_typeToExtensions = /* @__PURE__ */ new WeakMap();
|
|
209602
|
-
var Mime_default = Mime;
|
|
209603
|
-
|
|
209604
|
-
// ../../node_modules/.pnpm/mime@4.1.0/node_modules/mime/dist/src/index.js
|
|
209605
|
-
var src_default = new Mime_default(standard_default, other_default)._freeze();
|
|
209606
|
-
|
|
209607
|
-
// ../util/dist/common/mime.js
|
|
209608
|
-
var compressedMimeTypes = /* @__PURE__ */ new Set([
|
|
209609
|
-
"application/atom+xml",
|
|
209610
|
-
"application/javascript",
|
|
209611
|
-
"application/json",
|
|
209612
|
-
"application/ld+json",
|
|
209613
|
-
"application/manifest+json",
|
|
209614
|
-
"application/rdf+xml",
|
|
209615
|
-
"application/rss+xml",
|
|
209616
|
-
"application/schema+json",
|
|
209617
|
-
"application/vnd.geo+json",
|
|
209618
|
-
"application/vnd.ms-fontobject",
|
|
209619
|
-
"application/x-font-ttf",
|
|
209620
|
-
"application/x-javascript",
|
|
209621
|
-
"application/x-web-app-manifest+json",
|
|
209622
|
-
"application/xhtml+xml",
|
|
209623
|
-
"application/xml",
|
|
209624
|
-
"font/eot",
|
|
209625
|
-
"font/otf",
|
|
209626
|
-
"font/opentype",
|
|
209627
|
-
"image/bmp",
|
|
209628
|
-
"image/svg+xml",
|
|
209629
|
-
"image/vnd.microsoft.icon",
|
|
209630
|
-
"image/x-icon",
|
|
209631
|
-
"text/cache-manifest",
|
|
209632
|
-
"text/css",
|
|
209633
|
-
"text/html",
|
|
209634
|
-
"text/javascript",
|
|
209635
|
-
"text/plain",
|
|
209636
|
-
"text/vcard",
|
|
209637
|
-
"text/vnd.rim.location.xloc",
|
|
209638
|
-
"text/vtt",
|
|
209639
|
-
"text/x-component",
|
|
209640
|
-
"text/x-cross-domain-policy",
|
|
209641
|
-
"text/xml"
|
|
209642
|
-
]);
|
|
209643
|
-
var DEFAULT_TYPE = src_default.getType("bin");
|
|
209644
|
-
function shouldCompress(src) {
|
|
209645
|
-
const mimeType = src_default.getType(src);
|
|
209646
|
-
return Boolean(mimeType && compressedMimeTypes.has(mimeType));
|
|
209647
|
-
}
|
|
209648
|
-
|
|
209649
|
-
// ../util/dist/common/strings.js
|
|
209650
|
-
var import_camelCase = __toESM(require_camelCase(), 1);
|
|
209651
|
-
var import_deburr = __toESM(require_deburr(), 1);
|
|
209652
|
-
var import_isEmpty = __toESM(require_isEmpty(), 1);
|
|
209653
|
-
var import_isNil = __toESM(require_isNil(), 1);
|
|
209654
|
-
var import_isString = __toESM(require_isString(), 1);
|
|
209655
|
-
var import_upperFirst = __toESM(require_upperFirst(), 1);
|
|
209656
|
-
var import_words = __toESM(require_words(), 1);
|
|
209657
|
-
var camelCase = import_camelCase.default;
|
|
209658
|
-
function formatShapeName(str, options2) {
|
|
209659
|
-
const strings = ensureArray2(str);
|
|
209660
|
-
const shapeNameIndex = options2?.shapeNameIndex ?? 0;
|
|
209661
|
-
const shapeName18 = strings.at(shapeNameIndex);
|
|
209662
|
-
if (!shapeName18) {
|
|
209663
|
-
throw new Error(`Could not find a ShapeName at index '${shapeNameIndex}'`);
|
|
209664
|
-
}
|
|
209665
|
-
const prefix = strings.slice(0, Math.max(shapeNameIndex, 0));
|
|
209666
|
-
const suffix = strings.slice(shapeNameIndex + 1);
|
|
209667
|
-
let arr = [];
|
|
209668
|
-
if (prefix) {
|
|
209669
|
-
arr = [...arr, pascalCase(prefix)];
|
|
209670
|
-
}
|
|
209671
|
-
if (shapeName18.length > 2 && shapeName18.startsWith("TS") && shapeName18.charAt(2) === shapeName18.charAt(2).toUpperCase()) {
|
|
209672
|
-
arr = [...arr, shapeName18];
|
|
209673
|
-
} else {
|
|
209674
|
-
arr = [...arr, pascalCase(shapeName18)];
|
|
209675
|
-
}
|
|
209676
|
-
if (suffix) {
|
|
209677
|
-
arr = [...arr, pascalCase(suffix)];
|
|
209678
|
-
}
|
|
209679
|
-
return arr.join("");
|
|
209680
|
-
}
|
|
209681
|
-
function pascalCase(str) {
|
|
209682
|
-
return (0, import_upperFirst.default)(camelCase(str));
|
|
209683
|
-
}
|
|
209684
|
-
function isIntegerLike(value2) {
|
|
209685
|
-
if (typeof value2 === "number") {
|
|
209686
|
-
return true;
|
|
209687
|
-
}
|
|
209688
|
-
return /^\d+$/.test(value2);
|
|
209689
|
-
}
|
|
209690
|
-
|
|
209691
|
-
// ../util/dist/common/visit.js
|
|
209692
|
-
var import_isObject = __toESM(require_isObject(), 1);
|
|
209693
|
-
function visit3(tree, keys, callback) {
|
|
209694
|
-
const traverse = (obj2, path17) => {
|
|
209695
|
-
for (const [key, value2] of Object.entries(obj2)) {
|
|
209696
|
-
if (keys.includes(key)) {
|
|
209697
|
-
callback(value2, [...path17, key]);
|
|
209698
|
-
}
|
|
209699
|
-
if ((0, import_isObject.default)(value2)) {
|
|
209700
|
-
traverse(value2, [...path17, key]);
|
|
209701
|
-
}
|
|
209702
|
-
}
|
|
209703
|
-
};
|
|
209704
|
-
traverse(tree, []);
|
|
209705
|
-
}
|
|
209706
|
-
|
|
209707
|
-
// ../util/dist/node/buffer.js
|
|
209708
|
-
function bufferToArrayBuffer(buffer) {
|
|
209709
|
-
return buffer.buffer.slice(buffer.byteOffset, buffer.byteOffset + buffer.byteLength);
|
|
209710
|
-
}
|
|
209711
|
-
|
|
209712
|
-
// ../util/dist/node/gzip.js
|
|
209713
|
-
var import_node_buffer = require("node:buffer");
|
|
209714
|
-
var import_node_util = require("node:util");
|
|
209715
|
-
var import_node_zlib = __toESM(require("node:zlib"), 1);
|
|
209716
|
-
var _gzip = (0, import_node_util.promisify)(import_node_zlib.default.gzip);
|
|
209717
|
-
function gzip(buffer, options2) {
|
|
209718
|
-
return _gzip(import_node_buffer.Buffer.isBuffer(buffer) ? bufferToArrayBuffer(buffer) : buffer, options2);
|
|
209719
|
-
}
|
|
209720
|
-
var _gunzip = (0, import_node_util.promisify)(import_node_zlib.default.gunzip);
|
|
209721
|
-
|
|
209722
|
-
// ../ssg/dist/gzip.js
|
|
209723
|
-
function gzipContents(renderTemplate) {
|
|
209724
|
-
return async (path17, template, context) => {
|
|
209725
|
-
const item2 = await renderTemplate(path17, template, context);
|
|
209726
|
-
if (shouldCompress(item2.path)) {
|
|
209727
|
-
return {
|
|
209728
|
-
path: item2.path,
|
|
209729
|
-
contents: await gzip(item2.contents)
|
|
209730
|
-
};
|
|
209731
|
-
}
|
|
209732
|
-
return item2;
|
|
209733
|
-
};
|
|
209734
|
-
}
|
|
209735
|
-
|
|
209736
|
-
// ../ssg/dist/nunjucks.js
|
|
209737
|
-
var import_node_path3 = __toESM(require("node:path"), 1);
|
|
209738
|
-
var import_vm_nunjucks2 = __toESM(require_lib12(), 1);
|
|
209739
|
-
|
|
209740
|
-
// ../ssg/dist/filters/array-filters.js
|
|
209741
|
-
var import_intersectionBy = __toESM(require_intersectionBy(), 1);
|
|
209742
|
-
var import_unionBy = __toESM(require_unionBy(), 1);
|
|
209743
|
-
|
|
209744
209744
|
// ../ssg/dist/filters/code-filter.js
|
|
209745
209745
|
var import_vm_nunjucks = __toESM(require_lib12(), 1);
|
|
209746
209746
|
var { SafeString } = import_vm_nunjucks.runtime;
|