@hot-updater/standalone 0.17.0 → 0.18.0
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 +1485 -3407
- package/dist/index.d.cts +35 -0
- package/dist/index.d.ts +35 -2
- package/dist/index.js +1482 -3374
- package/package.json +4 -4
- package/dist/standaloneRepository.d.ts +0 -16
- package/dist/standaloneRepository.spec.d.ts +0 -1
- package/dist/standaloneStorage.d.ts +0 -12
package/dist/index.js
CHANGED
|
@@ -1,3378 +1,1486 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
Mime.prototype.define = function(typeMap, force) {
|
|
15
|
-
for(let type in typeMap){
|
|
16
|
-
let extensions = typeMap[type].map(function(t) {
|
|
17
|
-
return t.toLowerCase();
|
|
18
|
-
});
|
|
19
|
-
type = type.toLowerCase();
|
|
20
|
-
for(let i = 0; i < extensions.length; i++){
|
|
21
|
-
const ext = extensions[i];
|
|
22
|
-
if ('*' !== ext[0]) {
|
|
23
|
-
if (!force && ext in this._types) throw new Error('Attempt to change mapping for "' + ext + '" extension from "' + this._types[ext] + '" to "' + type + '". Pass `force=true` to allow this, otherwise remove "' + ext + '" from the list of extensions for "' + type + '".');
|
|
24
|
-
this._types[ext] = type;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
if (force || !this._extensions[type]) {
|
|
28
|
-
const ext = extensions[0];
|
|
29
|
-
this._extensions[type] = '*' !== ext[0] ? ext : ext.substr(1);
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
};
|
|
33
|
-
Mime.prototype.getType = function(path) {
|
|
34
|
-
path = String(path);
|
|
35
|
-
let last = path.replace(/^.*[/\\]/, '').toLowerCase();
|
|
36
|
-
let ext = last.replace(/^.*\./, '').toLowerCase();
|
|
37
|
-
let hasPath = last.length < path.length;
|
|
38
|
-
let hasDot = ext.length < last.length - 1;
|
|
39
|
-
return (hasDot || !hasPath) && this._types[ext] || null;
|
|
40
|
-
};
|
|
41
|
-
Mime.prototype.getExtension = function(type) {
|
|
42
|
-
type = /^\s*([^;\s]*)/.test(type) && RegExp.$1;
|
|
43
|
-
return type && this._extensions[type.toLowerCase()] || null;
|
|
44
|
-
};
|
|
45
|
-
module.exports = Mime;
|
|
46
|
-
},
|
|
47
|
-
"../../node_modules/.pnpm/mime@2.6.0/node_modules/mime/index.js": function(module, __unused_webpack_exports, __webpack_require__) {
|
|
48
|
-
let Mime = __webpack_require__("../../node_modules/.pnpm/mime@2.6.0/node_modules/mime/Mime.js");
|
|
49
|
-
module.exports = new Mime(__webpack_require__("../../node_modules/.pnpm/mime@2.6.0/node_modules/mime/types/standard.js"), __webpack_require__("../../node_modules/.pnpm/mime@2.6.0/node_modules/mime/types/other.js"));
|
|
50
|
-
},
|
|
51
|
-
"../../node_modules/.pnpm/mime@2.6.0/node_modules/mime/types/other.js": function(module) {
|
|
52
|
-
module.exports = {
|
|
53
|
-
"application/prs.cww": [
|
|
54
|
-
"cww"
|
|
55
|
-
],
|
|
56
|
-
"application/vnd.1000minds.decision-model+xml": [
|
|
57
|
-
"1km"
|
|
58
|
-
],
|
|
59
|
-
"application/vnd.3gpp.pic-bw-large": [
|
|
60
|
-
"plb"
|
|
61
|
-
],
|
|
62
|
-
"application/vnd.3gpp.pic-bw-small": [
|
|
63
|
-
"psb"
|
|
64
|
-
],
|
|
65
|
-
"application/vnd.3gpp.pic-bw-var": [
|
|
66
|
-
"pvb"
|
|
67
|
-
],
|
|
68
|
-
"application/vnd.3gpp2.tcap": [
|
|
69
|
-
"tcap"
|
|
70
|
-
],
|
|
71
|
-
"application/vnd.3m.post-it-notes": [
|
|
72
|
-
"pwn"
|
|
73
|
-
],
|
|
74
|
-
"application/vnd.accpac.simply.aso": [
|
|
75
|
-
"aso"
|
|
76
|
-
],
|
|
77
|
-
"application/vnd.accpac.simply.imp": [
|
|
78
|
-
"imp"
|
|
79
|
-
],
|
|
80
|
-
"application/vnd.acucobol": [
|
|
81
|
-
"acu"
|
|
82
|
-
],
|
|
83
|
-
"application/vnd.acucorp": [
|
|
84
|
-
"atc",
|
|
85
|
-
"acutc"
|
|
86
|
-
],
|
|
87
|
-
"application/vnd.adobe.air-application-installer-package+zip": [
|
|
88
|
-
"air"
|
|
89
|
-
],
|
|
90
|
-
"application/vnd.adobe.formscentral.fcdt": [
|
|
91
|
-
"fcdt"
|
|
92
|
-
],
|
|
93
|
-
"application/vnd.adobe.fxp": [
|
|
94
|
-
"fxp",
|
|
95
|
-
"fxpl"
|
|
96
|
-
],
|
|
97
|
-
"application/vnd.adobe.xdp+xml": [
|
|
98
|
-
"xdp"
|
|
99
|
-
],
|
|
100
|
-
"application/vnd.adobe.xfdf": [
|
|
101
|
-
"xfdf"
|
|
102
|
-
],
|
|
103
|
-
"application/vnd.ahead.space": [
|
|
104
|
-
"ahead"
|
|
105
|
-
],
|
|
106
|
-
"application/vnd.airzip.filesecure.azf": [
|
|
107
|
-
"azf"
|
|
108
|
-
],
|
|
109
|
-
"application/vnd.airzip.filesecure.azs": [
|
|
110
|
-
"azs"
|
|
111
|
-
],
|
|
112
|
-
"application/vnd.amazon.ebook": [
|
|
113
|
-
"azw"
|
|
114
|
-
],
|
|
115
|
-
"application/vnd.americandynamics.acc": [
|
|
116
|
-
"acc"
|
|
117
|
-
],
|
|
118
|
-
"application/vnd.amiga.ami": [
|
|
119
|
-
"ami"
|
|
120
|
-
],
|
|
121
|
-
"application/vnd.android.package-archive": [
|
|
122
|
-
"apk"
|
|
123
|
-
],
|
|
124
|
-
"application/vnd.anser-web-certificate-issue-initiation": [
|
|
125
|
-
"cii"
|
|
126
|
-
],
|
|
127
|
-
"application/vnd.anser-web-funds-transfer-initiation": [
|
|
128
|
-
"fti"
|
|
129
|
-
],
|
|
130
|
-
"application/vnd.antix.game-component": [
|
|
131
|
-
"atx"
|
|
132
|
-
],
|
|
133
|
-
"application/vnd.apple.installer+xml": [
|
|
134
|
-
"mpkg"
|
|
135
|
-
],
|
|
136
|
-
"application/vnd.apple.keynote": [
|
|
137
|
-
"key"
|
|
138
|
-
],
|
|
139
|
-
"application/vnd.apple.mpegurl": [
|
|
140
|
-
"m3u8"
|
|
141
|
-
],
|
|
142
|
-
"application/vnd.apple.numbers": [
|
|
143
|
-
"numbers"
|
|
144
|
-
],
|
|
145
|
-
"application/vnd.apple.pages": [
|
|
146
|
-
"pages"
|
|
147
|
-
],
|
|
148
|
-
"application/vnd.apple.pkpass": [
|
|
149
|
-
"pkpass"
|
|
150
|
-
],
|
|
151
|
-
"application/vnd.aristanetworks.swi": [
|
|
152
|
-
"swi"
|
|
153
|
-
],
|
|
154
|
-
"application/vnd.astraea-software.iota": [
|
|
155
|
-
"iota"
|
|
156
|
-
],
|
|
157
|
-
"application/vnd.audiograph": [
|
|
158
|
-
"aep"
|
|
159
|
-
],
|
|
160
|
-
"application/vnd.balsamiq.bmml+xml": [
|
|
161
|
-
"bmml"
|
|
162
|
-
],
|
|
163
|
-
"application/vnd.blueice.multipass": [
|
|
164
|
-
"mpm"
|
|
165
|
-
],
|
|
166
|
-
"application/vnd.bmi": [
|
|
167
|
-
"bmi"
|
|
168
|
-
],
|
|
169
|
-
"application/vnd.businessobjects": [
|
|
170
|
-
"rep"
|
|
171
|
-
],
|
|
172
|
-
"application/vnd.chemdraw+xml": [
|
|
173
|
-
"cdxml"
|
|
174
|
-
],
|
|
175
|
-
"application/vnd.chipnuts.karaoke-mmd": [
|
|
176
|
-
"mmd"
|
|
177
|
-
],
|
|
178
|
-
"application/vnd.cinderella": [
|
|
179
|
-
"cdy"
|
|
180
|
-
],
|
|
181
|
-
"application/vnd.citationstyles.style+xml": [
|
|
182
|
-
"csl"
|
|
183
|
-
],
|
|
184
|
-
"application/vnd.claymore": [
|
|
185
|
-
"cla"
|
|
186
|
-
],
|
|
187
|
-
"application/vnd.cloanto.rp9": [
|
|
188
|
-
"rp9"
|
|
189
|
-
],
|
|
190
|
-
"application/vnd.clonk.c4group": [
|
|
191
|
-
"c4g",
|
|
192
|
-
"c4d",
|
|
193
|
-
"c4f",
|
|
194
|
-
"c4p",
|
|
195
|
-
"c4u"
|
|
196
|
-
],
|
|
197
|
-
"application/vnd.cluetrust.cartomobile-config": [
|
|
198
|
-
"c11amc"
|
|
199
|
-
],
|
|
200
|
-
"application/vnd.cluetrust.cartomobile-config-pkg": [
|
|
201
|
-
"c11amz"
|
|
202
|
-
],
|
|
203
|
-
"application/vnd.commonspace": [
|
|
204
|
-
"csp"
|
|
205
|
-
],
|
|
206
|
-
"application/vnd.contact.cmsg": [
|
|
207
|
-
"cdbcmsg"
|
|
208
|
-
],
|
|
209
|
-
"application/vnd.cosmocaller": [
|
|
210
|
-
"cmc"
|
|
211
|
-
],
|
|
212
|
-
"application/vnd.crick.clicker": [
|
|
213
|
-
"clkx"
|
|
214
|
-
],
|
|
215
|
-
"application/vnd.crick.clicker.keyboard": [
|
|
216
|
-
"clkk"
|
|
217
|
-
],
|
|
218
|
-
"application/vnd.crick.clicker.palette": [
|
|
219
|
-
"clkp"
|
|
220
|
-
],
|
|
221
|
-
"application/vnd.crick.clicker.template": [
|
|
222
|
-
"clkt"
|
|
223
|
-
],
|
|
224
|
-
"application/vnd.crick.clicker.wordbank": [
|
|
225
|
-
"clkw"
|
|
226
|
-
],
|
|
227
|
-
"application/vnd.criticaltools.wbs+xml": [
|
|
228
|
-
"wbs"
|
|
229
|
-
],
|
|
230
|
-
"application/vnd.ctc-posml": [
|
|
231
|
-
"pml"
|
|
232
|
-
],
|
|
233
|
-
"application/vnd.cups-ppd": [
|
|
234
|
-
"ppd"
|
|
235
|
-
],
|
|
236
|
-
"application/vnd.curl.car": [
|
|
237
|
-
"car"
|
|
238
|
-
],
|
|
239
|
-
"application/vnd.curl.pcurl": [
|
|
240
|
-
"pcurl"
|
|
241
|
-
],
|
|
242
|
-
"application/vnd.dart": [
|
|
243
|
-
"dart"
|
|
244
|
-
],
|
|
245
|
-
"application/vnd.data-vision.rdz": [
|
|
246
|
-
"rdz"
|
|
247
|
-
],
|
|
248
|
-
"application/vnd.dbf": [
|
|
249
|
-
"dbf"
|
|
250
|
-
],
|
|
251
|
-
"application/vnd.dece.data": [
|
|
252
|
-
"uvf",
|
|
253
|
-
"uvvf",
|
|
254
|
-
"uvd",
|
|
255
|
-
"uvvd"
|
|
256
|
-
],
|
|
257
|
-
"application/vnd.dece.ttml+xml": [
|
|
258
|
-
"uvt",
|
|
259
|
-
"uvvt"
|
|
260
|
-
],
|
|
261
|
-
"application/vnd.dece.unspecified": [
|
|
262
|
-
"uvx",
|
|
263
|
-
"uvvx"
|
|
264
|
-
],
|
|
265
|
-
"application/vnd.dece.zip": [
|
|
266
|
-
"uvz",
|
|
267
|
-
"uvvz"
|
|
268
|
-
],
|
|
269
|
-
"application/vnd.denovo.fcselayout-link": [
|
|
270
|
-
"fe_launch"
|
|
271
|
-
],
|
|
272
|
-
"application/vnd.dna": [
|
|
273
|
-
"dna"
|
|
274
|
-
],
|
|
275
|
-
"application/vnd.dolby.mlp": [
|
|
276
|
-
"mlp"
|
|
277
|
-
],
|
|
278
|
-
"application/vnd.dpgraph": [
|
|
279
|
-
"dpg"
|
|
280
|
-
],
|
|
281
|
-
"application/vnd.dreamfactory": [
|
|
282
|
-
"dfac"
|
|
283
|
-
],
|
|
284
|
-
"application/vnd.ds-keypoint": [
|
|
285
|
-
"kpxx"
|
|
286
|
-
],
|
|
287
|
-
"application/vnd.dvb.ait": [
|
|
288
|
-
"ait"
|
|
289
|
-
],
|
|
290
|
-
"application/vnd.dvb.service": [
|
|
291
|
-
"svc"
|
|
292
|
-
],
|
|
293
|
-
"application/vnd.dynageo": [
|
|
294
|
-
"geo"
|
|
295
|
-
],
|
|
296
|
-
"application/vnd.ecowin.chart": [
|
|
297
|
-
"mag"
|
|
298
|
-
],
|
|
299
|
-
"application/vnd.enliven": [
|
|
300
|
-
"nml"
|
|
301
|
-
],
|
|
302
|
-
"application/vnd.epson.esf": [
|
|
303
|
-
"esf"
|
|
304
|
-
],
|
|
305
|
-
"application/vnd.epson.msf": [
|
|
306
|
-
"msf"
|
|
307
|
-
],
|
|
308
|
-
"application/vnd.epson.quickanime": [
|
|
309
|
-
"qam"
|
|
310
|
-
],
|
|
311
|
-
"application/vnd.epson.salt": [
|
|
312
|
-
"slt"
|
|
313
|
-
],
|
|
314
|
-
"application/vnd.epson.ssf": [
|
|
315
|
-
"ssf"
|
|
316
|
-
],
|
|
317
|
-
"application/vnd.eszigno3+xml": [
|
|
318
|
-
"es3",
|
|
319
|
-
"et3"
|
|
320
|
-
],
|
|
321
|
-
"application/vnd.ezpix-album": [
|
|
322
|
-
"ez2"
|
|
323
|
-
],
|
|
324
|
-
"application/vnd.ezpix-package": [
|
|
325
|
-
"ez3"
|
|
326
|
-
],
|
|
327
|
-
"application/vnd.fdf": [
|
|
328
|
-
"fdf"
|
|
329
|
-
],
|
|
330
|
-
"application/vnd.fdsn.mseed": [
|
|
331
|
-
"mseed"
|
|
332
|
-
],
|
|
333
|
-
"application/vnd.fdsn.seed": [
|
|
334
|
-
"seed",
|
|
335
|
-
"dataless"
|
|
336
|
-
],
|
|
337
|
-
"application/vnd.flographit": [
|
|
338
|
-
"gph"
|
|
339
|
-
],
|
|
340
|
-
"application/vnd.fluxtime.clip": [
|
|
341
|
-
"ftc"
|
|
342
|
-
],
|
|
343
|
-
"application/vnd.framemaker": [
|
|
344
|
-
"fm",
|
|
345
|
-
"frame",
|
|
346
|
-
"maker",
|
|
347
|
-
"book"
|
|
348
|
-
],
|
|
349
|
-
"application/vnd.frogans.fnc": [
|
|
350
|
-
"fnc"
|
|
351
|
-
],
|
|
352
|
-
"application/vnd.frogans.ltf": [
|
|
353
|
-
"ltf"
|
|
354
|
-
],
|
|
355
|
-
"application/vnd.fsc.weblaunch": [
|
|
356
|
-
"fsc"
|
|
357
|
-
],
|
|
358
|
-
"application/vnd.fujitsu.oasys": [
|
|
359
|
-
"oas"
|
|
360
|
-
],
|
|
361
|
-
"application/vnd.fujitsu.oasys2": [
|
|
362
|
-
"oa2"
|
|
363
|
-
],
|
|
364
|
-
"application/vnd.fujitsu.oasys3": [
|
|
365
|
-
"oa3"
|
|
366
|
-
],
|
|
367
|
-
"application/vnd.fujitsu.oasysgp": [
|
|
368
|
-
"fg5"
|
|
369
|
-
],
|
|
370
|
-
"application/vnd.fujitsu.oasysprs": [
|
|
371
|
-
"bh2"
|
|
372
|
-
],
|
|
373
|
-
"application/vnd.fujixerox.ddd": [
|
|
374
|
-
"ddd"
|
|
375
|
-
],
|
|
376
|
-
"application/vnd.fujixerox.docuworks": [
|
|
377
|
-
"xdw"
|
|
378
|
-
],
|
|
379
|
-
"application/vnd.fujixerox.docuworks.binder": [
|
|
380
|
-
"xbd"
|
|
381
|
-
],
|
|
382
|
-
"application/vnd.fuzzysheet": [
|
|
383
|
-
"fzs"
|
|
384
|
-
],
|
|
385
|
-
"application/vnd.genomatix.tuxedo": [
|
|
386
|
-
"txd"
|
|
387
|
-
],
|
|
388
|
-
"application/vnd.geogebra.file": [
|
|
389
|
-
"ggb"
|
|
390
|
-
],
|
|
391
|
-
"application/vnd.geogebra.tool": [
|
|
392
|
-
"ggt"
|
|
393
|
-
],
|
|
394
|
-
"application/vnd.geometry-explorer": [
|
|
395
|
-
"gex",
|
|
396
|
-
"gre"
|
|
397
|
-
],
|
|
398
|
-
"application/vnd.geonext": [
|
|
399
|
-
"gxt"
|
|
400
|
-
],
|
|
401
|
-
"application/vnd.geoplan": [
|
|
402
|
-
"g2w"
|
|
403
|
-
],
|
|
404
|
-
"application/vnd.geospace": [
|
|
405
|
-
"g3w"
|
|
406
|
-
],
|
|
407
|
-
"application/vnd.gmx": [
|
|
408
|
-
"gmx"
|
|
409
|
-
],
|
|
410
|
-
"application/vnd.google-apps.document": [
|
|
411
|
-
"gdoc"
|
|
412
|
-
],
|
|
413
|
-
"application/vnd.google-apps.presentation": [
|
|
414
|
-
"gslides"
|
|
415
|
-
],
|
|
416
|
-
"application/vnd.google-apps.spreadsheet": [
|
|
417
|
-
"gsheet"
|
|
418
|
-
],
|
|
419
|
-
"application/vnd.google-earth.kml+xml": [
|
|
420
|
-
"kml"
|
|
421
|
-
],
|
|
422
|
-
"application/vnd.google-earth.kmz": [
|
|
423
|
-
"kmz"
|
|
424
|
-
],
|
|
425
|
-
"application/vnd.grafeq": [
|
|
426
|
-
"gqf",
|
|
427
|
-
"gqs"
|
|
428
|
-
],
|
|
429
|
-
"application/vnd.groove-account": [
|
|
430
|
-
"gac"
|
|
431
|
-
],
|
|
432
|
-
"application/vnd.groove-help": [
|
|
433
|
-
"ghf"
|
|
434
|
-
],
|
|
435
|
-
"application/vnd.groove-identity-message": [
|
|
436
|
-
"gim"
|
|
437
|
-
],
|
|
438
|
-
"application/vnd.groove-injector": [
|
|
439
|
-
"grv"
|
|
440
|
-
],
|
|
441
|
-
"application/vnd.groove-tool-message": [
|
|
442
|
-
"gtm"
|
|
443
|
-
],
|
|
444
|
-
"application/vnd.groove-tool-template": [
|
|
445
|
-
"tpl"
|
|
446
|
-
],
|
|
447
|
-
"application/vnd.groove-vcard": [
|
|
448
|
-
"vcg"
|
|
449
|
-
],
|
|
450
|
-
"application/vnd.hal+xml": [
|
|
451
|
-
"hal"
|
|
452
|
-
],
|
|
453
|
-
"application/vnd.handheld-entertainment+xml": [
|
|
454
|
-
"zmm"
|
|
455
|
-
],
|
|
456
|
-
"application/vnd.hbci": [
|
|
457
|
-
"hbci"
|
|
458
|
-
],
|
|
459
|
-
"application/vnd.hhe.lesson-player": [
|
|
460
|
-
"les"
|
|
461
|
-
],
|
|
462
|
-
"application/vnd.hp-hpgl": [
|
|
463
|
-
"hpgl"
|
|
464
|
-
],
|
|
465
|
-
"application/vnd.hp-hpid": [
|
|
466
|
-
"hpid"
|
|
467
|
-
],
|
|
468
|
-
"application/vnd.hp-hps": [
|
|
469
|
-
"hps"
|
|
470
|
-
],
|
|
471
|
-
"application/vnd.hp-jlyt": [
|
|
472
|
-
"jlt"
|
|
473
|
-
],
|
|
474
|
-
"application/vnd.hp-pcl": [
|
|
475
|
-
"pcl"
|
|
476
|
-
],
|
|
477
|
-
"application/vnd.hp-pclxl": [
|
|
478
|
-
"pclxl"
|
|
479
|
-
],
|
|
480
|
-
"application/vnd.hydrostatix.sof-data": [
|
|
481
|
-
"sfd-hdstx"
|
|
482
|
-
],
|
|
483
|
-
"application/vnd.ibm.minipay": [
|
|
484
|
-
"mpy"
|
|
485
|
-
],
|
|
486
|
-
"application/vnd.ibm.modcap": [
|
|
487
|
-
"afp",
|
|
488
|
-
"listafp",
|
|
489
|
-
"list3820"
|
|
490
|
-
],
|
|
491
|
-
"application/vnd.ibm.rights-management": [
|
|
492
|
-
"irm"
|
|
493
|
-
],
|
|
494
|
-
"application/vnd.ibm.secure-container": [
|
|
495
|
-
"sc"
|
|
496
|
-
],
|
|
497
|
-
"application/vnd.iccprofile": [
|
|
498
|
-
"icc",
|
|
499
|
-
"icm"
|
|
500
|
-
],
|
|
501
|
-
"application/vnd.igloader": [
|
|
502
|
-
"igl"
|
|
503
|
-
],
|
|
504
|
-
"application/vnd.immervision-ivp": [
|
|
505
|
-
"ivp"
|
|
506
|
-
],
|
|
507
|
-
"application/vnd.immervision-ivu": [
|
|
508
|
-
"ivu"
|
|
509
|
-
],
|
|
510
|
-
"application/vnd.insors.igm": [
|
|
511
|
-
"igm"
|
|
512
|
-
],
|
|
513
|
-
"application/vnd.intercon.formnet": [
|
|
514
|
-
"xpw",
|
|
515
|
-
"xpx"
|
|
516
|
-
],
|
|
517
|
-
"application/vnd.intergeo": [
|
|
518
|
-
"i2g"
|
|
519
|
-
],
|
|
520
|
-
"application/vnd.intu.qbo": [
|
|
521
|
-
"qbo"
|
|
522
|
-
],
|
|
523
|
-
"application/vnd.intu.qfx": [
|
|
524
|
-
"qfx"
|
|
525
|
-
],
|
|
526
|
-
"application/vnd.ipunplugged.rcprofile": [
|
|
527
|
-
"rcprofile"
|
|
528
|
-
],
|
|
529
|
-
"application/vnd.irepository.package+xml": [
|
|
530
|
-
"irp"
|
|
531
|
-
],
|
|
532
|
-
"application/vnd.is-xpr": [
|
|
533
|
-
"xpr"
|
|
534
|
-
],
|
|
535
|
-
"application/vnd.isac.fcs": [
|
|
536
|
-
"fcs"
|
|
537
|
-
],
|
|
538
|
-
"application/vnd.jam": [
|
|
539
|
-
"jam"
|
|
540
|
-
],
|
|
541
|
-
"application/vnd.jcp.javame.midlet-rms": [
|
|
542
|
-
"rms"
|
|
543
|
-
],
|
|
544
|
-
"application/vnd.jisp": [
|
|
545
|
-
"jisp"
|
|
546
|
-
],
|
|
547
|
-
"application/vnd.joost.joda-archive": [
|
|
548
|
-
"joda"
|
|
549
|
-
],
|
|
550
|
-
"application/vnd.kahootz": [
|
|
551
|
-
"ktz",
|
|
552
|
-
"ktr"
|
|
553
|
-
],
|
|
554
|
-
"application/vnd.kde.karbon": [
|
|
555
|
-
"karbon"
|
|
556
|
-
],
|
|
557
|
-
"application/vnd.kde.kchart": [
|
|
558
|
-
"chrt"
|
|
559
|
-
],
|
|
560
|
-
"application/vnd.kde.kformula": [
|
|
561
|
-
"kfo"
|
|
562
|
-
],
|
|
563
|
-
"application/vnd.kde.kivio": [
|
|
564
|
-
"flw"
|
|
565
|
-
],
|
|
566
|
-
"application/vnd.kde.kontour": [
|
|
567
|
-
"kon"
|
|
568
|
-
],
|
|
569
|
-
"application/vnd.kde.kpresenter": [
|
|
570
|
-
"kpr",
|
|
571
|
-
"kpt"
|
|
572
|
-
],
|
|
573
|
-
"application/vnd.kde.kspread": [
|
|
574
|
-
"ksp"
|
|
575
|
-
],
|
|
576
|
-
"application/vnd.kde.kword": [
|
|
577
|
-
"kwd",
|
|
578
|
-
"kwt"
|
|
579
|
-
],
|
|
580
|
-
"application/vnd.kenameaapp": [
|
|
581
|
-
"htke"
|
|
582
|
-
],
|
|
583
|
-
"application/vnd.kidspiration": [
|
|
584
|
-
"kia"
|
|
585
|
-
],
|
|
586
|
-
"application/vnd.kinar": [
|
|
587
|
-
"kne",
|
|
588
|
-
"knp"
|
|
589
|
-
],
|
|
590
|
-
"application/vnd.koan": [
|
|
591
|
-
"skp",
|
|
592
|
-
"skd",
|
|
593
|
-
"skt",
|
|
594
|
-
"skm"
|
|
595
|
-
],
|
|
596
|
-
"application/vnd.kodak-descriptor": [
|
|
597
|
-
"sse"
|
|
598
|
-
],
|
|
599
|
-
"application/vnd.las.las+xml": [
|
|
600
|
-
"lasxml"
|
|
601
|
-
],
|
|
602
|
-
"application/vnd.llamagraphics.life-balance.desktop": [
|
|
603
|
-
"lbd"
|
|
604
|
-
],
|
|
605
|
-
"application/vnd.llamagraphics.life-balance.exchange+xml": [
|
|
606
|
-
"lbe"
|
|
607
|
-
],
|
|
608
|
-
"application/vnd.lotus-1-2-3": [
|
|
609
|
-
"123"
|
|
610
|
-
],
|
|
611
|
-
"application/vnd.lotus-approach": [
|
|
612
|
-
"apr"
|
|
613
|
-
],
|
|
614
|
-
"application/vnd.lotus-freelance": [
|
|
615
|
-
"pre"
|
|
616
|
-
],
|
|
617
|
-
"application/vnd.lotus-notes": [
|
|
618
|
-
"nsf"
|
|
619
|
-
],
|
|
620
|
-
"application/vnd.lotus-organizer": [
|
|
621
|
-
"org"
|
|
622
|
-
],
|
|
623
|
-
"application/vnd.lotus-screencam": [
|
|
624
|
-
"scm"
|
|
625
|
-
],
|
|
626
|
-
"application/vnd.lotus-wordpro": [
|
|
627
|
-
"lwp"
|
|
628
|
-
],
|
|
629
|
-
"application/vnd.macports.portpkg": [
|
|
630
|
-
"portpkg"
|
|
631
|
-
],
|
|
632
|
-
"application/vnd.mapbox-vector-tile": [
|
|
633
|
-
"mvt"
|
|
634
|
-
],
|
|
635
|
-
"application/vnd.mcd": [
|
|
636
|
-
"mcd"
|
|
637
|
-
],
|
|
638
|
-
"application/vnd.medcalcdata": [
|
|
639
|
-
"mc1"
|
|
640
|
-
],
|
|
641
|
-
"application/vnd.mediastation.cdkey": [
|
|
642
|
-
"cdkey"
|
|
643
|
-
],
|
|
644
|
-
"application/vnd.mfer": [
|
|
645
|
-
"mwf"
|
|
646
|
-
],
|
|
647
|
-
"application/vnd.mfmp": [
|
|
648
|
-
"mfm"
|
|
649
|
-
],
|
|
650
|
-
"application/vnd.micrografx.flo": [
|
|
651
|
-
"flo"
|
|
652
|
-
],
|
|
653
|
-
"application/vnd.micrografx.igx": [
|
|
654
|
-
"igx"
|
|
655
|
-
],
|
|
656
|
-
"application/vnd.mif": [
|
|
657
|
-
"mif"
|
|
658
|
-
],
|
|
659
|
-
"application/vnd.mobius.daf": [
|
|
660
|
-
"daf"
|
|
661
|
-
],
|
|
662
|
-
"application/vnd.mobius.dis": [
|
|
663
|
-
"dis"
|
|
664
|
-
],
|
|
665
|
-
"application/vnd.mobius.mbk": [
|
|
666
|
-
"mbk"
|
|
667
|
-
],
|
|
668
|
-
"application/vnd.mobius.mqy": [
|
|
669
|
-
"mqy"
|
|
670
|
-
],
|
|
671
|
-
"application/vnd.mobius.msl": [
|
|
672
|
-
"msl"
|
|
673
|
-
],
|
|
674
|
-
"application/vnd.mobius.plc": [
|
|
675
|
-
"plc"
|
|
676
|
-
],
|
|
677
|
-
"application/vnd.mobius.txf": [
|
|
678
|
-
"txf"
|
|
679
|
-
],
|
|
680
|
-
"application/vnd.mophun.application": [
|
|
681
|
-
"mpn"
|
|
682
|
-
],
|
|
683
|
-
"application/vnd.mophun.certificate": [
|
|
684
|
-
"mpc"
|
|
685
|
-
],
|
|
686
|
-
"application/vnd.mozilla.xul+xml": [
|
|
687
|
-
"xul"
|
|
688
|
-
],
|
|
689
|
-
"application/vnd.ms-artgalry": [
|
|
690
|
-
"cil"
|
|
691
|
-
],
|
|
692
|
-
"application/vnd.ms-cab-compressed": [
|
|
693
|
-
"cab"
|
|
694
|
-
],
|
|
695
|
-
"application/vnd.ms-excel": [
|
|
696
|
-
"xls",
|
|
697
|
-
"xlm",
|
|
698
|
-
"xla",
|
|
699
|
-
"xlc",
|
|
700
|
-
"xlt",
|
|
701
|
-
"xlw"
|
|
702
|
-
],
|
|
703
|
-
"application/vnd.ms-excel.addin.macroenabled.12": [
|
|
704
|
-
"xlam"
|
|
705
|
-
],
|
|
706
|
-
"application/vnd.ms-excel.sheet.binary.macroenabled.12": [
|
|
707
|
-
"xlsb"
|
|
708
|
-
],
|
|
709
|
-
"application/vnd.ms-excel.sheet.macroenabled.12": [
|
|
710
|
-
"xlsm"
|
|
711
|
-
],
|
|
712
|
-
"application/vnd.ms-excel.template.macroenabled.12": [
|
|
713
|
-
"xltm"
|
|
714
|
-
],
|
|
715
|
-
"application/vnd.ms-fontobject": [
|
|
716
|
-
"eot"
|
|
717
|
-
],
|
|
718
|
-
"application/vnd.ms-htmlhelp": [
|
|
719
|
-
"chm"
|
|
720
|
-
],
|
|
721
|
-
"application/vnd.ms-ims": [
|
|
722
|
-
"ims"
|
|
723
|
-
],
|
|
724
|
-
"application/vnd.ms-lrm": [
|
|
725
|
-
"lrm"
|
|
726
|
-
],
|
|
727
|
-
"application/vnd.ms-officetheme": [
|
|
728
|
-
"thmx"
|
|
729
|
-
],
|
|
730
|
-
"application/vnd.ms-outlook": [
|
|
731
|
-
"msg"
|
|
732
|
-
],
|
|
733
|
-
"application/vnd.ms-pki.seccat": [
|
|
734
|
-
"cat"
|
|
735
|
-
],
|
|
736
|
-
"application/vnd.ms-pki.stl": [
|
|
737
|
-
"*stl"
|
|
738
|
-
],
|
|
739
|
-
"application/vnd.ms-powerpoint": [
|
|
740
|
-
"ppt",
|
|
741
|
-
"pps",
|
|
742
|
-
"pot"
|
|
743
|
-
],
|
|
744
|
-
"application/vnd.ms-powerpoint.addin.macroenabled.12": [
|
|
745
|
-
"ppam"
|
|
746
|
-
],
|
|
747
|
-
"application/vnd.ms-powerpoint.presentation.macroenabled.12": [
|
|
748
|
-
"pptm"
|
|
749
|
-
],
|
|
750
|
-
"application/vnd.ms-powerpoint.slide.macroenabled.12": [
|
|
751
|
-
"sldm"
|
|
752
|
-
],
|
|
753
|
-
"application/vnd.ms-powerpoint.slideshow.macroenabled.12": [
|
|
754
|
-
"ppsm"
|
|
755
|
-
],
|
|
756
|
-
"application/vnd.ms-powerpoint.template.macroenabled.12": [
|
|
757
|
-
"potm"
|
|
758
|
-
],
|
|
759
|
-
"application/vnd.ms-project": [
|
|
760
|
-
"mpp",
|
|
761
|
-
"mpt"
|
|
762
|
-
],
|
|
763
|
-
"application/vnd.ms-word.document.macroenabled.12": [
|
|
764
|
-
"docm"
|
|
765
|
-
],
|
|
766
|
-
"application/vnd.ms-word.template.macroenabled.12": [
|
|
767
|
-
"dotm"
|
|
768
|
-
],
|
|
769
|
-
"application/vnd.ms-works": [
|
|
770
|
-
"wps",
|
|
771
|
-
"wks",
|
|
772
|
-
"wcm",
|
|
773
|
-
"wdb"
|
|
774
|
-
],
|
|
775
|
-
"application/vnd.ms-wpl": [
|
|
776
|
-
"wpl"
|
|
777
|
-
],
|
|
778
|
-
"application/vnd.ms-xpsdocument": [
|
|
779
|
-
"xps"
|
|
780
|
-
],
|
|
781
|
-
"application/vnd.mseq": [
|
|
782
|
-
"mseq"
|
|
783
|
-
],
|
|
784
|
-
"application/vnd.musician": [
|
|
785
|
-
"mus"
|
|
786
|
-
],
|
|
787
|
-
"application/vnd.muvee.style": [
|
|
788
|
-
"msty"
|
|
789
|
-
],
|
|
790
|
-
"application/vnd.mynfc": [
|
|
791
|
-
"taglet"
|
|
792
|
-
],
|
|
793
|
-
"application/vnd.neurolanguage.nlu": [
|
|
794
|
-
"nlu"
|
|
795
|
-
],
|
|
796
|
-
"application/vnd.nitf": [
|
|
797
|
-
"ntf",
|
|
798
|
-
"nitf"
|
|
799
|
-
],
|
|
800
|
-
"application/vnd.noblenet-directory": [
|
|
801
|
-
"nnd"
|
|
802
|
-
],
|
|
803
|
-
"application/vnd.noblenet-sealer": [
|
|
804
|
-
"nns"
|
|
805
|
-
],
|
|
806
|
-
"application/vnd.noblenet-web": [
|
|
807
|
-
"nnw"
|
|
808
|
-
],
|
|
809
|
-
"application/vnd.nokia.n-gage.ac+xml": [
|
|
810
|
-
"*ac"
|
|
811
|
-
],
|
|
812
|
-
"application/vnd.nokia.n-gage.data": [
|
|
813
|
-
"ngdat"
|
|
814
|
-
],
|
|
815
|
-
"application/vnd.nokia.n-gage.symbian.install": [
|
|
816
|
-
"n-gage"
|
|
817
|
-
],
|
|
818
|
-
"application/vnd.nokia.radio-preset": [
|
|
819
|
-
"rpst"
|
|
820
|
-
],
|
|
821
|
-
"application/vnd.nokia.radio-presets": [
|
|
822
|
-
"rpss"
|
|
823
|
-
],
|
|
824
|
-
"application/vnd.novadigm.edm": [
|
|
825
|
-
"edm"
|
|
826
|
-
],
|
|
827
|
-
"application/vnd.novadigm.edx": [
|
|
828
|
-
"edx"
|
|
829
|
-
],
|
|
830
|
-
"application/vnd.novadigm.ext": [
|
|
831
|
-
"ext"
|
|
832
|
-
],
|
|
833
|
-
"application/vnd.oasis.opendocument.chart": [
|
|
834
|
-
"odc"
|
|
835
|
-
],
|
|
836
|
-
"application/vnd.oasis.opendocument.chart-template": [
|
|
837
|
-
"otc"
|
|
838
|
-
],
|
|
839
|
-
"application/vnd.oasis.opendocument.database": [
|
|
840
|
-
"odb"
|
|
841
|
-
],
|
|
842
|
-
"application/vnd.oasis.opendocument.formula": [
|
|
843
|
-
"odf"
|
|
844
|
-
],
|
|
845
|
-
"application/vnd.oasis.opendocument.formula-template": [
|
|
846
|
-
"odft"
|
|
847
|
-
],
|
|
848
|
-
"application/vnd.oasis.opendocument.graphics": [
|
|
849
|
-
"odg"
|
|
850
|
-
],
|
|
851
|
-
"application/vnd.oasis.opendocument.graphics-template": [
|
|
852
|
-
"otg"
|
|
853
|
-
],
|
|
854
|
-
"application/vnd.oasis.opendocument.image": [
|
|
855
|
-
"odi"
|
|
856
|
-
],
|
|
857
|
-
"application/vnd.oasis.opendocument.image-template": [
|
|
858
|
-
"oti"
|
|
859
|
-
],
|
|
860
|
-
"application/vnd.oasis.opendocument.presentation": [
|
|
861
|
-
"odp"
|
|
862
|
-
],
|
|
863
|
-
"application/vnd.oasis.opendocument.presentation-template": [
|
|
864
|
-
"otp"
|
|
865
|
-
],
|
|
866
|
-
"application/vnd.oasis.opendocument.spreadsheet": [
|
|
867
|
-
"ods"
|
|
868
|
-
],
|
|
869
|
-
"application/vnd.oasis.opendocument.spreadsheet-template": [
|
|
870
|
-
"ots"
|
|
871
|
-
],
|
|
872
|
-
"application/vnd.oasis.opendocument.text": [
|
|
873
|
-
"odt"
|
|
874
|
-
],
|
|
875
|
-
"application/vnd.oasis.opendocument.text-master": [
|
|
876
|
-
"odm"
|
|
877
|
-
],
|
|
878
|
-
"application/vnd.oasis.opendocument.text-template": [
|
|
879
|
-
"ott"
|
|
880
|
-
],
|
|
881
|
-
"application/vnd.oasis.opendocument.text-web": [
|
|
882
|
-
"oth"
|
|
883
|
-
],
|
|
884
|
-
"application/vnd.olpc-sugar": [
|
|
885
|
-
"xo"
|
|
886
|
-
],
|
|
887
|
-
"application/vnd.oma.dd2+xml": [
|
|
888
|
-
"dd2"
|
|
889
|
-
],
|
|
890
|
-
"application/vnd.openblox.game+xml": [
|
|
891
|
-
"obgx"
|
|
892
|
-
],
|
|
893
|
-
"application/vnd.openofficeorg.extension": [
|
|
894
|
-
"oxt"
|
|
895
|
-
],
|
|
896
|
-
"application/vnd.openstreetmap.data+xml": [
|
|
897
|
-
"osm"
|
|
898
|
-
],
|
|
899
|
-
"application/vnd.openxmlformats-officedocument.presentationml.presentation": [
|
|
900
|
-
"pptx"
|
|
901
|
-
],
|
|
902
|
-
"application/vnd.openxmlformats-officedocument.presentationml.slide": [
|
|
903
|
-
"sldx"
|
|
904
|
-
],
|
|
905
|
-
"application/vnd.openxmlformats-officedocument.presentationml.slideshow": [
|
|
906
|
-
"ppsx"
|
|
907
|
-
],
|
|
908
|
-
"application/vnd.openxmlformats-officedocument.presentationml.template": [
|
|
909
|
-
"potx"
|
|
910
|
-
],
|
|
911
|
-
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": [
|
|
912
|
-
"xlsx"
|
|
913
|
-
],
|
|
914
|
-
"application/vnd.openxmlformats-officedocument.spreadsheetml.template": [
|
|
915
|
-
"xltx"
|
|
916
|
-
],
|
|
917
|
-
"application/vnd.openxmlformats-officedocument.wordprocessingml.document": [
|
|
918
|
-
"docx"
|
|
919
|
-
],
|
|
920
|
-
"application/vnd.openxmlformats-officedocument.wordprocessingml.template": [
|
|
921
|
-
"dotx"
|
|
922
|
-
],
|
|
923
|
-
"application/vnd.osgeo.mapguide.package": [
|
|
924
|
-
"mgp"
|
|
925
|
-
],
|
|
926
|
-
"application/vnd.osgi.dp": [
|
|
927
|
-
"dp"
|
|
928
|
-
],
|
|
929
|
-
"application/vnd.osgi.subsystem": [
|
|
930
|
-
"esa"
|
|
931
|
-
],
|
|
932
|
-
"application/vnd.palm": [
|
|
933
|
-
"pdb",
|
|
934
|
-
"pqa",
|
|
935
|
-
"oprc"
|
|
936
|
-
],
|
|
937
|
-
"application/vnd.pawaafile": [
|
|
938
|
-
"paw"
|
|
939
|
-
],
|
|
940
|
-
"application/vnd.pg.format": [
|
|
941
|
-
"str"
|
|
942
|
-
],
|
|
943
|
-
"application/vnd.pg.osasli": [
|
|
944
|
-
"ei6"
|
|
945
|
-
],
|
|
946
|
-
"application/vnd.picsel": [
|
|
947
|
-
"efif"
|
|
948
|
-
],
|
|
949
|
-
"application/vnd.pmi.widget": [
|
|
950
|
-
"wg"
|
|
951
|
-
],
|
|
952
|
-
"application/vnd.pocketlearn": [
|
|
953
|
-
"plf"
|
|
954
|
-
],
|
|
955
|
-
"application/vnd.powerbuilder6": [
|
|
956
|
-
"pbd"
|
|
957
|
-
],
|
|
958
|
-
"application/vnd.previewsystems.box": [
|
|
959
|
-
"box"
|
|
960
|
-
],
|
|
961
|
-
"application/vnd.proteus.magazine": [
|
|
962
|
-
"mgz"
|
|
963
|
-
],
|
|
964
|
-
"application/vnd.publishare-delta-tree": [
|
|
965
|
-
"qps"
|
|
966
|
-
],
|
|
967
|
-
"application/vnd.pvi.ptid1": [
|
|
968
|
-
"ptid"
|
|
969
|
-
],
|
|
970
|
-
"application/vnd.quark.quarkxpress": [
|
|
971
|
-
"qxd",
|
|
972
|
-
"qxt",
|
|
973
|
-
"qwd",
|
|
974
|
-
"qwt",
|
|
975
|
-
"qxl",
|
|
976
|
-
"qxb"
|
|
977
|
-
],
|
|
978
|
-
"application/vnd.rar": [
|
|
979
|
-
"rar"
|
|
980
|
-
],
|
|
981
|
-
"application/vnd.realvnc.bed": [
|
|
982
|
-
"bed"
|
|
983
|
-
],
|
|
984
|
-
"application/vnd.recordare.musicxml": [
|
|
985
|
-
"mxl"
|
|
986
|
-
],
|
|
987
|
-
"application/vnd.recordare.musicxml+xml": [
|
|
988
|
-
"musicxml"
|
|
989
|
-
],
|
|
990
|
-
"application/vnd.rig.cryptonote": [
|
|
991
|
-
"cryptonote"
|
|
992
|
-
],
|
|
993
|
-
"application/vnd.rim.cod": [
|
|
994
|
-
"cod"
|
|
995
|
-
],
|
|
996
|
-
"application/vnd.rn-realmedia": [
|
|
997
|
-
"rm"
|
|
998
|
-
],
|
|
999
|
-
"application/vnd.rn-realmedia-vbr": [
|
|
1000
|
-
"rmvb"
|
|
1001
|
-
],
|
|
1002
|
-
"application/vnd.route66.link66+xml": [
|
|
1003
|
-
"link66"
|
|
1004
|
-
],
|
|
1005
|
-
"application/vnd.sailingtracker.track": [
|
|
1006
|
-
"st"
|
|
1007
|
-
],
|
|
1008
|
-
"application/vnd.seemail": [
|
|
1009
|
-
"see"
|
|
1010
|
-
],
|
|
1011
|
-
"application/vnd.sema": [
|
|
1012
|
-
"sema"
|
|
1013
|
-
],
|
|
1014
|
-
"application/vnd.semd": [
|
|
1015
|
-
"semd"
|
|
1016
|
-
],
|
|
1017
|
-
"application/vnd.semf": [
|
|
1018
|
-
"semf"
|
|
1019
|
-
],
|
|
1020
|
-
"application/vnd.shana.informed.formdata": [
|
|
1021
|
-
"ifm"
|
|
1022
|
-
],
|
|
1023
|
-
"application/vnd.shana.informed.formtemplate": [
|
|
1024
|
-
"itp"
|
|
1025
|
-
],
|
|
1026
|
-
"application/vnd.shana.informed.interchange": [
|
|
1027
|
-
"iif"
|
|
1028
|
-
],
|
|
1029
|
-
"application/vnd.shana.informed.package": [
|
|
1030
|
-
"ipk"
|
|
1031
|
-
],
|
|
1032
|
-
"application/vnd.simtech-mindmapper": [
|
|
1033
|
-
"twd",
|
|
1034
|
-
"twds"
|
|
1035
|
-
],
|
|
1036
|
-
"application/vnd.smaf": [
|
|
1037
|
-
"mmf"
|
|
1038
|
-
],
|
|
1039
|
-
"application/vnd.smart.teacher": [
|
|
1040
|
-
"teacher"
|
|
1041
|
-
],
|
|
1042
|
-
"application/vnd.software602.filler.form+xml": [
|
|
1043
|
-
"fo"
|
|
1044
|
-
],
|
|
1045
|
-
"application/vnd.solent.sdkm+xml": [
|
|
1046
|
-
"sdkm",
|
|
1047
|
-
"sdkd"
|
|
1048
|
-
],
|
|
1049
|
-
"application/vnd.spotfire.dxp": [
|
|
1050
|
-
"dxp"
|
|
1051
|
-
],
|
|
1052
|
-
"application/vnd.spotfire.sfs": [
|
|
1053
|
-
"sfs"
|
|
1054
|
-
],
|
|
1055
|
-
"application/vnd.stardivision.calc": [
|
|
1056
|
-
"sdc"
|
|
1057
|
-
],
|
|
1058
|
-
"application/vnd.stardivision.draw": [
|
|
1059
|
-
"sda"
|
|
1060
|
-
],
|
|
1061
|
-
"application/vnd.stardivision.impress": [
|
|
1062
|
-
"sdd"
|
|
1063
|
-
],
|
|
1064
|
-
"application/vnd.stardivision.math": [
|
|
1065
|
-
"smf"
|
|
1066
|
-
],
|
|
1067
|
-
"application/vnd.stardivision.writer": [
|
|
1068
|
-
"sdw",
|
|
1069
|
-
"vor"
|
|
1070
|
-
],
|
|
1071
|
-
"application/vnd.stardivision.writer-global": [
|
|
1072
|
-
"sgl"
|
|
1073
|
-
],
|
|
1074
|
-
"application/vnd.stepmania.package": [
|
|
1075
|
-
"smzip"
|
|
1076
|
-
],
|
|
1077
|
-
"application/vnd.stepmania.stepchart": [
|
|
1078
|
-
"sm"
|
|
1079
|
-
],
|
|
1080
|
-
"application/vnd.sun.wadl+xml": [
|
|
1081
|
-
"wadl"
|
|
1082
|
-
],
|
|
1083
|
-
"application/vnd.sun.xml.calc": [
|
|
1084
|
-
"sxc"
|
|
1085
|
-
],
|
|
1086
|
-
"application/vnd.sun.xml.calc.template": [
|
|
1087
|
-
"stc"
|
|
1088
|
-
],
|
|
1089
|
-
"application/vnd.sun.xml.draw": [
|
|
1090
|
-
"sxd"
|
|
1091
|
-
],
|
|
1092
|
-
"application/vnd.sun.xml.draw.template": [
|
|
1093
|
-
"std"
|
|
1094
|
-
],
|
|
1095
|
-
"application/vnd.sun.xml.impress": [
|
|
1096
|
-
"sxi"
|
|
1097
|
-
],
|
|
1098
|
-
"application/vnd.sun.xml.impress.template": [
|
|
1099
|
-
"sti"
|
|
1100
|
-
],
|
|
1101
|
-
"application/vnd.sun.xml.math": [
|
|
1102
|
-
"sxm"
|
|
1103
|
-
],
|
|
1104
|
-
"application/vnd.sun.xml.writer": [
|
|
1105
|
-
"sxw"
|
|
1106
|
-
],
|
|
1107
|
-
"application/vnd.sun.xml.writer.global": [
|
|
1108
|
-
"sxg"
|
|
1109
|
-
],
|
|
1110
|
-
"application/vnd.sun.xml.writer.template": [
|
|
1111
|
-
"stw"
|
|
1112
|
-
],
|
|
1113
|
-
"application/vnd.sus-calendar": [
|
|
1114
|
-
"sus",
|
|
1115
|
-
"susp"
|
|
1116
|
-
],
|
|
1117
|
-
"application/vnd.svd": [
|
|
1118
|
-
"svd"
|
|
1119
|
-
],
|
|
1120
|
-
"application/vnd.symbian.install": [
|
|
1121
|
-
"sis",
|
|
1122
|
-
"sisx"
|
|
1123
|
-
],
|
|
1124
|
-
"application/vnd.syncml+xml": [
|
|
1125
|
-
"xsm"
|
|
1126
|
-
],
|
|
1127
|
-
"application/vnd.syncml.dm+wbxml": [
|
|
1128
|
-
"bdm"
|
|
1129
|
-
],
|
|
1130
|
-
"application/vnd.syncml.dm+xml": [
|
|
1131
|
-
"xdm"
|
|
1132
|
-
],
|
|
1133
|
-
"application/vnd.syncml.dmddf+xml": [
|
|
1134
|
-
"ddf"
|
|
1135
|
-
],
|
|
1136
|
-
"application/vnd.tao.intent-module-archive": [
|
|
1137
|
-
"tao"
|
|
1138
|
-
],
|
|
1139
|
-
"application/vnd.tcpdump.pcap": [
|
|
1140
|
-
"pcap",
|
|
1141
|
-
"cap",
|
|
1142
|
-
"dmp"
|
|
1143
|
-
],
|
|
1144
|
-
"application/vnd.tmobile-livetv": [
|
|
1145
|
-
"tmo"
|
|
1146
|
-
],
|
|
1147
|
-
"application/vnd.trid.tpt": [
|
|
1148
|
-
"tpt"
|
|
1149
|
-
],
|
|
1150
|
-
"application/vnd.triscape.mxs": [
|
|
1151
|
-
"mxs"
|
|
1152
|
-
],
|
|
1153
|
-
"application/vnd.trueapp": [
|
|
1154
|
-
"tra"
|
|
1155
|
-
],
|
|
1156
|
-
"application/vnd.ufdl": [
|
|
1157
|
-
"ufd",
|
|
1158
|
-
"ufdl"
|
|
1159
|
-
],
|
|
1160
|
-
"application/vnd.uiq.theme": [
|
|
1161
|
-
"utz"
|
|
1162
|
-
],
|
|
1163
|
-
"application/vnd.umajin": [
|
|
1164
|
-
"umj"
|
|
1165
|
-
],
|
|
1166
|
-
"application/vnd.unity": [
|
|
1167
|
-
"unityweb"
|
|
1168
|
-
],
|
|
1169
|
-
"application/vnd.uoml+xml": [
|
|
1170
|
-
"uoml"
|
|
1171
|
-
],
|
|
1172
|
-
"application/vnd.vcx": [
|
|
1173
|
-
"vcx"
|
|
1174
|
-
],
|
|
1175
|
-
"application/vnd.visio": [
|
|
1176
|
-
"vsd",
|
|
1177
|
-
"vst",
|
|
1178
|
-
"vss",
|
|
1179
|
-
"vsw"
|
|
1180
|
-
],
|
|
1181
|
-
"application/vnd.visionary": [
|
|
1182
|
-
"vis"
|
|
1183
|
-
],
|
|
1184
|
-
"application/vnd.vsf": [
|
|
1185
|
-
"vsf"
|
|
1186
|
-
],
|
|
1187
|
-
"application/vnd.wap.wbxml": [
|
|
1188
|
-
"wbxml"
|
|
1189
|
-
],
|
|
1190
|
-
"application/vnd.wap.wmlc": [
|
|
1191
|
-
"wmlc"
|
|
1192
|
-
],
|
|
1193
|
-
"application/vnd.wap.wmlscriptc": [
|
|
1194
|
-
"wmlsc"
|
|
1195
|
-
],
|
|
1196
|
-
"application/vnd.webturbo": [
|
|
1197
|
-
"wtb"
|
|
1198
|
-
],
|
|
1199
|
-
"application/vnd.wolfram.player": [
|
|
1200
|
-
"nbp"
|
|
1201
|
-
],
|
|
1202
|
-
"application/vnd.wordperfect": [
|
|
1203
|
-
"wpd"
|
|
1204
|
-
],
|
|
1205
|
-
"application/vnd.wqd": [
|
|
1206
|
-
"wqd"
|
|
1207
|
-
],
|
|
1208
|
-
"application/vnd.wt.stf": [
|
|
1209
|
-
"stf"
|
|
1210
|
-
],
|
|
1211
|
-
"application/vnd.xara": [
|
|
1212
|
-
"xar"
|
|
1213
|
-
],
|
|
1214
|
-
"application/vnd.xfdl": [
|
|
1215
|
-
"xfdl"
|
|
1216
|
-
],
|
|
1217
|
-
"application/vnd.yamaha.hv-dic": [
|
|
1218
|
-
"hvd"
|
|
1219
|
-
],
|
|
1220
|
-
"application/vnd.yamaha.hv-script": [
|
|
1221
|
-
"hvs"
|
|
1222
|
-
],
|
|
1223
|
-
"application/vnd.yamaha.hv-voice": [
|
|
1224
|
-
"hvp"
|
|
1225
|
-
],
|
|
1226
|
-
"application/vnd.yamaha.openscoreformat": [
|
|
1227
|
-
"osf"
|
|
1228
|
-
],
|
|
1229
|
-
"application/vnd.yamaha.openscoreformat.osfpvg+xml": [
|
|
1230
|
-
"osfpvg"
|
|
1231
|
-
],
|
|
1232
|
-
"application/vnd.yamaha.smaf-audio": [
|
|
1233
|
-
"saf"
|
|
1234
|
-
],
|
|
1235
|
-
"application/vnd.yamaha.smaf-phrase": [
|
|
1236
|
-
"spf"
|
|
1237
|
-
],
|
|
1238
|
-
"application/vnd.yellowriver-custom-menu": [
|
|
1239
|
-
"cmp"
|
|
1240
|
-
],
|
|
1241
|
-
"application/vnd.zul": [
|
|
1242
|
-
"zir",
|
|
1243
|
-
"zirz"
|
|
1244
|
-
],
|
|
1245
|
-
"application/vnd.zzazz.deck+xml": [
|
|
1246
|
-
"zaz"
|
|
1247
|
-
],
|
|
1248
|
-
"application/x-7z-compressed": [
|
|
1249
|
-
"7z"
|
|
1250
|
-
],
|
|
1251
|
-
"application/x-abiword": [
|
|
1252
|
-
"abw"
|
|
1253
|
-
],
|
|
1254
|
-
"application/x-ace-compressed": [
|
|
1255
|
-
"ace"
|
|
1256
|
-
],
|
|
1257
|
-
"application/x-apple-diskimage": [
|
|
1258
|
-
"*dmg"
|
|
1259
|
-
],
|
|
1260
|
-
"application/x-arj": [
|
|
1261
|
-
"arj"
|
|
1262
|
-
],
|
|
1263
|
-
"application/x-authorware-bin": [
|
|
1264
|
-
"aab",
|
|
1265
|
-
"x32",
|
|
1266
|
-
"u32",
|
|
1267
|
-
"vox"
|
|
1268
|
-
],
|
|
1269
|
-
"application/x-authorware-map": [
|
|
1270
|
-
"aam"
|
|
1271
|
-
],
|
|
1272
|
-
"application/x-authorware-seg": [
|
|
1273
|
-
"aas"
|
|
1274
|
-
],
|
|
1275
|
-
"application/x-bcpio": [
|
|
1276
|
-
"bcpio"
|
|
1277
|
-
],
|
|
1278
|
-
"application/x-bdoc": [
|
|
1279
|
-
"*bdoc"
|
|
1280
|
-
],
|
|
1281
|
-
"application/x-bittorrent": [
|
|
1282
|
-
"torrent"
|
|
1283
|
-
],
|
|
1284
|
-
"application/x-blorb": [
|
|
1285
|
-
"blb",
|
|
1286
|
-
"blorb"
|
|
1287
|
-
],
|
|
1288
|
-
"application/x-bzip": [
|
|
1289
|
-
"bz"
|
|
1290
|
-
],
|
|
1291
|
-
"application/x-bzip2": [
|
|
1292
|
-
"bz2",
|
|
1293
|
-
"boz"
|
|
1294
|
-
],
|
|
1295
|
-
"application/x-cbr": [
|
|
1296
|
-
"cbr",
|
|
1297
|
-
"cba",
|
|
1298
|
-
"cbt",
|
|
1299
|
-
"cbz",
|
|
1300
|
-
"cb7"
|
|
1301
|
-
],
|
|
1302
|
-
"application/x-cdlink": [
|
|
1303
|
-
"vcd"
|
|
1304
|
-
],
|
|
1305
|
-
"application/x-cfs-compressed": [
|
|
1306
|
-
"cfs"
|
|
1307
|
-
],
|
|
1308
|
-
"application/x-chat": [
|
|
1309
|
-
"chat"
|
|
1310
|
-
],
|
|
1311
|
-
"application/x-chess-pgn": [
|
|
1312
|
-
"pgn"
|
|
1313
|
-
],
|
|
1314
|
-
"application/x-chrome-extension": [
|
|
1315
|
-
"crx"
|
|
1316
|
-
],
|
|
1317
|
-
"application/x-cocoa": [
|
|
1318
|
-
"cco"
|
|
1319
|
-
],
|
|
1320
|
-
"application/x-conference": [
|
|
1321
|
-
"nsc"
|
|
1322
|
-
],
|
|
1323
|
-
"application/x-cpio": [
|
|
1324
|
-
"cpio"
|
|
1325
|
-
],
|
|
1326
|
-
"application/x-csh": [
|
|
1327
|
-
"csh"
|
|
1328
|
-
],
|
|
1329
|
-
"application/x-debian-package": [
|
|
1330
|
-
"*deb",
|
|
1331
|
-
"udeb"
|
|
1332
|
-
],
|
|
1333
|
-
"application/x-dgc-compressed": [
|
|
1334
|
-
"dgc"
|
|
1335
|
-
],
|
|
1336
|
-
"application/x-director": [
|
|
1337
|
-
"dir",
|
|
1338
|
-
"dcr",
|
|
1339
|
-
"dxr",
|
|
1340
|
-
"cst",
|
|
1341
|
-
"cct",
|
|
1342
|
-
"cxt",
|
|
1343
|
-
"w3d",
|
|
1344
|
-
"fgd",
|
|
1345
|
-
"swa"
|
|
1346
|
-
],
|
|
1347
|
-
"application/x-doom": [
|
|
1348
|
-
"wad"
|
|
1349
|
-
],
|
|
1350
|
-
"application/x-dtbncx+xml": [
|
|
1351
|
-
"ncx"
|
|
1352
|
-
],
|
|
1353
|
-
"application/x-dtbook+xml": [
|
|
1354
|
-
"dtb"
|
|
1355
|
-
],
|
|
1356
|
-
"application/x-dtbresource+xml": [
|
|
1357
|
-
"res"
|
|
1358
|
-
],
|
|
1359
|
-
"application/x-dvi": [
|
|
1360
|
-
"dvi"
|
|
1361
|
-
],
|
|
1362
|
-
"application/x-envoy": [
|
|
1363
|
-
"evy"
|
|
1364
|
-
],
|
|
1365
|
-
"application/x-eva": [
|
|
1366
|
-
"eva"
|
|
1367
|
-
],
|
|
1368
|
-
"application/x-font-bdf": [
|
|
1369
|
-
"bdf"
|
|
1370
|
-
],
|
|
1371
|
-
"application/x-font-ghostscript": [
|
|
1372
|
-
"gsf"
|
|
1373
|
-
],
|
|
1374
|
-
"application/x-font-linux-psf": [
|
|
1375
|
-
"psf"
|
|
1376
|
-
],
|
|
1377
|
-
"application/x-font-pcf": [
|
|
1378
|
-
"pcf"
|
|
1379
|
-
],
|
|
1380
|
-
"application/x-font-snf": [
|
|
1381
|
-
"snf"
|
|
1382
|
-
],
|
|
1383
|
-
"application/x-font-type1": [
|
|
1384
|
-
"pfa",
|
|
1385
|
-
"pfb",
|
|
1386
|
-
"pfm",
|
|
1387
|
-
"afm"
|
|
1388
|
-
],
|
|
1389
|
-
"application/x-freearc": [
|
|
1390
|
-
"arc"
|
|
1391
|
-
],
|
|
1392
|
-
"application/x-futuresplash": [
|
|
1393
|
-
"spl"
|
|
1394
|
-
],
|
|
1395
|
-
"application/x-gca-compressed": [
|
|
1396
|
-
"gca"
|
|
1397
|
-
],
|
|
1398
|
-
"application/x-glulx": [
|
|
1399
|
-
"ulx"
|
|
1400
|
-
],
|
|
1401
|
-
"application/x-gnumeric": [
|
|
1402
|
-
"gnumeric"
|
|
1403
|
-
],
|
|
1404
|
-
"application/x-gramps-xml": [
|
|
1405
|
-
"gramps"
|
|
1406
|
-
],
|
|
1407
|
-
"application/x-gtar": [
|
|
1408
|
-
"gtar"
|
|
1409
|
-
],
|
|
1410
|
-
"application/x-hdf": [
|
|
1411
|
-
"hdf"
|
|
1412
|
-
],
|
|
1413
|
-
"application/x-httpd-php": [
|
|
1414
|
-
"php"
|
|
1415
|
-
],
|
|
1416
|
-
"application/x-install-instructions": [
|
|
1417
|
-
"install"
|
|
1418
|
-
],
|
|
1419
|
-
"application/x-iso9660-image": [
|
|
1420
|
-
"*iso"
|
|
1421
|
-
],
|
|
1422
|
-
"application/x-iwork-keynote-sffkey": [
|
|
1423
|
-
"*key"
|
|
1424
|
-
],
|
|
1425
|
-
"application/x-iwork-numbers-sffnumbers": [
|
|
1426
|
-
"*numbers"
|
|
1427
|
-
],
|
|
1428
|
-
"application/x-iwork-pages-sffpages": [
|
|
1429
|
-
"*pages"
|
|
1430
|
-
],
|
|
1431
|
-
"application/x-java-archive-diff": [
|
|
1432
|
-
"jardiff"
|
|
1433
|
-
],
|
|
1434
|
-
"application/x-java-jnlp-file": [
|
|
1435
|
-
"jnlp"
|
|
1436
|
-
],
|
|
1437
|
-
"application/x-keepass2": [
|
|
1438
|
-
"kdbx"
|
|
1439
|
-
],
|
|
1440
|
-
"application/x-latex": [
|
|
1441
|
-
"latex"
|
|
1442
|
-
],
|
|
1443
|
-
"application/x-lua-bytecode": [
|
|
1444
|
-
"luac"
|
|
1445
|
-
],
|
|
1446
|
-
"application/x-lzh-compressed": [
|
|
1447
|
-
"lzh",
|
|
1448
|
-
"lha"
|
|
1449
|
-
],
|
|
1450
|
-
"application/x-makeself": [
|
|
1451
|
-
"run"
|
|
1452
|
-
],
|
|
1453
|
-
"application/x-mie": [
|
|
1454
|
-
"mie"
|
|
1455
|
-
],
|
|
1456
|
-
"application/x-mobipocket-ebook": [
|
|
1457
|
-
"prc",
|
|
1458
|
-
"mobi"
|
|
1459
|
-
],
|
|
1460
|
-
"application/x-ms-application": [
|
|
1461
|
-
"application"
|
|
1462
|
-
],
|
|
1463
|
-
"application/x-ms-shortcut": [
|
|
1464
|
-
"lnk"
|
|
1465
|
-
],
|
|
1466
|
-
"application/x-ms-wmd": [
|
|
1467
|
-
"wmd"
|
|
1468
|
-
],
|
|
1469
|
-
"application/x-ms-wmz": [
|
|
1470
|
-
"wmz"
|
|
1471
|
-
],
|
|
1472
|
-
"application/x-ms-xbap": [
|
|
1473
|
-
"xbap"
|
|
1474
|
-
],
|
|
1475
|
-
"application/x-msaccess": [
|
|
1476
|
-
"mdb"
|
|
1477
|
-
],
|
|
1478
|
-
"application/x-msbinder": [
|
|
1479
|
-
"obd"
|
|
1480
|
-
],
|
|
1481
|
-
"application/x-mscardfile": [
|
|
1482
|
-
"crd"
|
|
1483
|
-
],
|
|
1484
|
-
"application/x-msclip": [
|
|
1485
|
-
"clp"
|
|
1486
|
-
],
|
|
1487
|
-
"application/x-msdos-program": [
|
|
1488
|
-
"*exe"
|
|
1489
|
-
],
|
|
1490
|
-
"application/x-msdownload": [
|
|
1491
|
-
"*exe",
|
|
1492
|
-
"*dll",
|
|
1493
|
-
"com",
|
|
1494
|
-
"bat",
|
|
1495
|
-
"*msi"
|
|
1496
|
-
],
|
|
1497
|
-
"application/x-msmediaview": [
|
|
1498
|
-
"mvb",
|
|
1499
|
-
"m13",
|
|
1500
|
-
"m14"
|
|
1501
|
-
],
|
|
1502
|
-
"application/x-msmetafile": [
|
|
1503
|
-
"*wmf",
|
|
1504
|
-
"*wmz",
|
|
1505
|
-
"*emf",
|
|
1506
|
-
"emz"
|
|
1507
|
-
],
|
|
1508
|
-
"application/x-msmoney": [
|
|
1509
|
-
"mny"
|
|
1510
|
-
],
|
|
1511
|
-
"application/x-mspublisher": [
|
|
1512
|
-
"pub"
|
|
1513
|
-
],
|
|
1514
|
-
"application/x-msschedule": [
|
|
1515
|
-
"scd"
|
|
1516
|
-
],
|
|
1517
|
-
"application/x-msterminal": [
|
|
1518
|
-
"trm"
|
|
1519
|
-
],
|
|
1520
|
-
"application/x-mswrite": [
|
|
1521
|
-
"wri"
|
|
1522
|
-
],
|
|
1523
|
-
"application/x-netcdf": [
|
|
1524
|
-
"nc",
|
|
1525
|
-
"cdf"
|
|
1526
|
-
],
|
|
1527
|
-
"application/x-ns-proxy-autoconfig": [
|
|
1528
|
-
"pac"
|
|
1529
|
-
],
|
|
1530
|
-
"application/x-nzb": [
|
|
1531
|
-
"nzb"
|
|
1532
|
-
],
|
|
1533
|
-
"application/x-perl": [
|
|
1534
|
-
"pl",
|
|
1535
|
-
"pm"
|
|
1536
|
-
],
|
|
1537
|
-
"application/x-pilot": [
|
|
1538
|
-
"*prc",
|
|
1539
|
-
"*pdb"
|
|
1540
|
-
],
|
|
1541
|
-
"application/x-pkcs12": [
|
|
1542
|
-
"p12",
|
|
1543
|
-
"pfx"
|
|
1544
|
-
],
|
|
1545
|
-
"application/x-pkcs7-certificates": [
|
|
1546
|
-
"p7b",
|
|
1547
|
-
"spc"
|
|
1548
|
-
],
|
|
1549
|
-
"application/x-pkcs7-certreqresp": [
|
|
1550
|
-
"p7r"
|
|
1551
|
-
],
|
|
1552
|
-
"application/x-rar-compressed": [
|
|
1553
|
-
"*rar"
|
|
1554
|
-
],
|
|
1555
|
-
"application/x-redhat-package-manager": [
|
|
1556
|
-
"rpm"
|
|
1557
|
-
],
|
|
1558
|
-
"application/x-research-info-systems": [
|
|
1559
|
-
"ris"
|
|
1560
|
-
],
|
|
1561
|
-
"application/x-sea": [
|
|
1562
|
-
"sea"
|
|
1563
|
-
],
|
|
1564
|
-
"application/x-sh": [
|
|
1565
|
-
"sh"
|
|
1566
|
-
],
|
|
1567
|
-
"application/x-shar": [
|
|
1568
|
-
"shar"
|
|
1569
|
-
],
|
|
1570
|
-
"application/x-shockwave-flash": [
|
|
1571
|
-
"swf"
|
|
1572
|
-
],
|
|
1573
|
-
"application/x-silverlight-app": [
|
|
1574
|
-
"xap"
|
|
1575
|
-
],
|
|
1576
|
-
"application/x-sql": [
|
|
1577
|
-
"sql"
|
|
1578
|
-
],
|
|
1579
|
-
"application/x-stuffit": [
|
|
1580
|
-
"sit"
|
|
1581
|
-
],
|
|
1582
|
-
"application/x-stuffitx": [
|
|
1583
|
-
"sitx"
|
|
1584
|
-
],
|
|
1585
|
-
"application/x-subrip": [
|
|
1586
|
-
"srt"
|
|
1587
|
-
],
|
|
1588
|
-
"application/x-sv4cpio": [
|
|
1589
|
-
"sv4cpio"
|
|
1590
|
-
],
|
|
1591
|
-
"application/x-sv4crc": [
|
|
1592
|
-
"sv4crc"
|
|
1593
|
-
],
|
|
1594
|
-
"application/x-t3vm-image": [
|
|
1595
|
-
"t3"
|
|
1596
|
-
],
|
|
1597
|
-
"application/x-tads": [
|
|
1598
|
-
"gam"
|
|
1599
|
-
],
|
|
1600
|
-
"application/x-tar": [
|
|
1601
|
-
"tar"
|
|
1602
|
-
],
|
|
1603
|
-
"application/x-tcl": [
|
|
1604
|
-
"tcl",
|
|
1605
|
-
"tk"
|
|
1606
|
-
],
|
|
1607
|
-
"application/x-tex": [
|
|
1608
|
-
"tex"
|
|
1609
|
-
],
|
|
1610
|
-
"application/x-tex-tfm": [
|
|
1611
|
-
"tfm"
|
|
1612
|
-
],
|
|
1613
|
-
"application/x-texinfo": [
|
|
1614
|
-
"texinfo",
|
|
1615
|
-
"texi"
|
|
1616
|
-
],
|
|
1617
|
-
"application/x-tgif": [
|
|
1618
|
-
"*obj"
|
|
1619
|
-
],
|
|
1620
|
-
"application/x-ustar": [
|
|
1621
|
-
"ustar"
|
|
1622
|
-
],
|
|
1623
|
-
"application/x-virtualbox-hdd": [
|
|
1624
|
-
"hdd"
|
|
1625
|
-
],
|
|
1626
|
-
"application/x-virtualbox-ova": [
|
|
1627
|
-
"ova"
|
|
1628
|
-
],
|
|
1629
|
-
"application/x-virtualbox-ovf": [
|
|
1630
|
-
"ovf"
|
|
1631
|
-
],
|
|
1632
|
-
"application/x-virtualbox-vbox": [
|
|
1633
|
-
"vbox"
|
|
1634
|
-
],
|
|
1635
|
-
"application/x-virtualbox-vbox-extpack": [
|
|
1636
|
-
"vbox-extpack"
|
|
1637
|
-
],
|
|
1638
|
-
"application/x-virtualbox-vdi": [
|
|
1639
|
-
"vdi"
|
|
1640
|
-
],
|
|
1641
|
-
"application/x-virtualbox-vhd": [
|
|
1642
|
-
"vhd"
|
|
1643
|
-
],
|
|
1644
|
-
"application/x-virtualbox-vmdk": [
|
|
1645
|
-
"vmdk"
|
|
1646
|
-
],
|
|
1647
|
-
"application/x-wais-source": [
|
|
1648
|
-
"src"
|
|
1649
|
-
],
|
|
1650
|
-
"application/x-web-app-manifest+json": [
|
|
1651
|
-
"webapp"
|
|
1652
|
-
],
|
|
1653
|
-
"application/x-x509-ca-cert": [
|
|
1654
|
-
"der",
|
|
1655
|
-
"crt",
|
|
1656
|
-
"pem"
|
|
1657
|
-
],
|
|
1658
|
-
"application/x-xfig": [
|
|
1659
|
-
"fig"
|
|
1660
|
-
],
|
|
1661
|
-
"application/x-xliff+xml": [
|
|
1662
|
-
"*xlf"
|
|
1663
|
-
],
|
|
1664
|
-
"application/x-xpinstall": [
|
|
1665
|
-
"xpi"
|
|
1666
|
-
],
|
|
1667
|
-
"application/x-xz": [
|
|
1668
|
-
"xz"
|
|
1669
|
-
],
|
|
1670
|
-
"application/x-zmachine": [
|
|
1671
|
-
"z1",
|
|
1672
|
-
"z2",
|
|
1673
|
-
"z3",
|
|
1674
|
-
"z4",
|
|
1675
|
-
"z5",
|
|
1676
|
-
"z6",
|
|
1677
|
-
"z7",
|
|
1678
|
-
"z8"
|
|
1679
|
-
],
|
|
1680
|
-
"audio/vnd.dece.audio": [
|
|
1681
|
-
"uva",
|
|
1682
|
-
"uvva"
|
|
1683
|
-
],
|
|
1684
|
-
"audio/vnd.digital-winds": [
|
|
1685
|
-
"eol"
|
|
1686
|
-
],
|
|
1687
|
-
"audio/vnd.dra": [
|
|
1688
|
-
"dra"
|
|
1689
|
-
],
|
|
1690
|
-
"audio/vnd.dts": [
|
|
1691
|
-
"dts"
|
|
1692
|
-
],
|
|
1693
|
-
"audio/vnd.dts.hd": [
|
|
1694
|
-
"dtshd"
|
|
1695
|
-
],
|
|
1696
|
-
"audio/vnd.lucent.voice": [
|
|
1697
|
-
"lvp"
|
|
1698
|
-
],
|
|
1699
|
-
"audio/vnd.ms-playready.media.pya": [
|
|
1700
|
-
"pya"
|
|
1701
|
-
],
|
|
1702
|
-
"audio/vnd.nuera.ecelp4800": [
|
|
1703
|
-
"ecelp4800"
|
|
1704
|
-
],
|
|
1705
|
-
"audio/vnd.nuera.ecelp7470": [
|
|
1706
|
-
"ecelp7470"
|
|
1707
|
-
],
|
|
1708
|
-
"audio/vnd.nuera.ecelp9600": [
|
|
1709
|
-
"ecelp9600"
|
|
1710
|
-
],
|
|
1711
|
-
"audio/vnd.rip": [
|
|
1712
|
-
"rip"
|
|
1713
|
-
],
|
|
1714
|
-
"audio/x-aac": [
|
|
1715
|
-
"aac"
|
|
1716
|
-
],
|
|
1717
|
-
"audio/x-aiff": [
|
|
1718
|
-
"aif",
|
|
1719
|
-
"aiff",
|
|
1720
|
-
"aifc"
|
|
1721
|
-
],
|
|
1722
|
-
"audio/x-caf": [
|
|
1723
|
-
"caf"
|
|
1724
|
-
],
|
|
1725
|
-
"audio/x-flac": [
|
|
1726
|
-
"flac"
|
|
1727
|
-
],
|
|
1728
|
-
"audio/x-m4a": [
|
|
1729
|
-
"*m4a"
|
|
1730
|
-
],
|
|
1731
|
-
"audio/x-matroska": [
|
|
1732
|
-
"mka"
|
|
1733
|
-
],
|
|
1734
|
-
"audio/x-mpegurl": [
|
|
1735
|
-
"m3u"
|
|
1736
|
-
],
|
|
1737
|
-
"audio/x-ms-wax": [
|
|
1738
|
-
"wax"
|
|
1739
|
-
],
|
|
1740
|
-
"audio/x-ms-wma": [
|
|
1741
|
-
"wma"
|
|
1742
|
-
],
|
|
1743
|
-
"audio/x-pn-realaudio": [
|
|
1744
|
-
"ram",
|
|
1745
|
-
"ra"
|
|
1746
|
-
],
|
|
1747
|
-
"audio/x-pn-realaudio-plugin": [
|
|
1748
|
-
"rmp"
|
|
1749
|
-
],
|
|
1750
|
-
"audio/x-realaudio": [
|
|
1751
|
-
"*ra"
|
|
1752
|
-
],
|
|
1753
|
-
"audio/x-wav": [
|
|
1754
|
-
"*wav"
|
|
1755
|
-
],
|
|
1756
|
-
"chemical/x-cdx": [
|
|
1757
|
-
"cdx"
|
|
1758
|
-
],
|
|
1759
|
-
"chemical/x-cif": [
|
|
1760
|
-
"cif"
|
|
1761
|
-
],
|
|
1762
|
-
"chemical/x-cmdf": [
|
|
1763
|
-
"cmdf"
|
|
1764
|
-
],
|
|
1765
|
-
"chemical/x-cml": [
|
|
1766
|
-
"cml"
|
|
1767
|
-
],
|
|
1768
|
-
"chemical/x-csml": [
|
|
1769
|
-
"csml"
|
|
1770
|
-
],
|
|
1771
|
-
"chemical/x-xyz": [
|
|
1772
|
-
"xyz"
|
|
1773
|
-
],
|
|
1774
|
-
"image/prs.btif": [
|
|
1775
|
-
"btif"
|
|
1776
|
-
],
|
|
1777
|
-
"image/prs.pti": [
|
|
1778
|
-
"pti"
|
|
1779
|
-
],
|
|
1780
|
-
"image/vnd.adobe.photoshop": [
|
|
1781
|
-
"psd"
|
|
1782
|
-
],
|
|
1783
|
-
"image/vnd.airzip.accelerator.azv": [
|
|
1784
|
-
"azv"
|
|
1785
|
-
],
|
|
1786
|
-
"image/vnd.dece.graphic": [
|
|
1787
|
-
"uvi",
|
|
1788
|
-
"uvvi",
|
|
1789
|
-
"uvg",
|
|
1790
|
-
"uvvg"
|
|
1791
|
-
],
|
|
1792
|
-
"image/vnd.djvu": [
|
|
1793
|
-
"djvu",
|
|
1794
|
-
"djv"
|
|
1795
|
-
],
|
|
1796
|
-
"image/vnd.dvb.subtitle": [
|
|
1797
|
-
"*sub"
|
|
1798
|
-
],
|
|
1799
|
-
"image/vnd.dwg": [
|
|
1800
|
-
"dwg"
|
|
1801
|
-
],
|
|
1802
|
-
"image/vnd.dxf": [
|
|
1803
|
-
"dxf"
|
|
1804
|
-
],
|
|
1805
|
-
"image/vnd.fastbidsheet": [
|
|
1806
|
-
"fbs"
|
|
1807
|
-
],
|
|
1808
|
-
"image/vnd.fpx": [
|
|
1809
|
-
"fpx"
|
|
1810
|
-
],
|
|
1811
|
-
"image/vnd.fst": [
|
|
1812
|
-
"fst"
|
|
1813
|
-
],
|
|
1814
|
-
"image/vnd.fujixerox.edmics-mmr": [
|
|
1815
|
-
"mmr"
|
|
1816
|
-
],
|
|
1817
|
-
"image/vnd.fujixerox.edmics-rlc": [
|
|
1818
|
-
"rlc"
|
|
1819
|
-
],
|
|
1820
|
-
"image/vnd.microsoft.icon": [
|
|
1821
|
-
"ico"
|
|
1822
|
-
],
|
|
1823
|
-
"image/vnd.ms-dds": [
|
|
1824
|
-
"dds"
|
|
1825
|
-
],
|
|
1826
|
-
"image/vnd.ms-modi": [
|
|
1827
|
-
"mdi"
|
|
1828
|
-
],
|
|
1829
|
-
"image/vnd.ms-photo": [
|
|
1830
|
-
"wdp"
|
|
1831
|
-
],
|
|
1832
|
-
"image/vnd.net-fpx": [
|
|
1833
|
-
"npx"
|
|
1834
|
-
],
|
|
1835
|
-
"image/vnd.pco.b16": [
|
|
1836
|
-
"b16"
|
|
1837
|
-
],
|
|
1838
|
-
"image/vnd.tencent.tap": [
|
|
1839
|
-
"tap"
|
|
1840
|
-
],
|
|
1841
|
-
"image/vnd.valve.source.texture": [
|
|
1842
|
-
"vtf"
|
|
1843
|
-
],
|
|
1844
|
-
"image/vnd.wap.wbmp": [
|
|
1845
|
-
"wbmp"
|
|
1846
|
-
],
|
|
1847
|
-
"image/vnd.xiff": [
|
|
1848
|
-
"xif"
|
|
1849
|
-
],
|
|
1850
|
-
"image/vnd.zbrush.pcx": [
|
|
1851
|
-
"pcx"
|
|
1852
|
-
],
|
|
1853
|
-
"image/x-3ds": [
|
|
1854
|
-
"3ds"
|
|
1855
|
-
],
|
|
1856
|
-
"image/x-cmu-raster": [
|
|
1857
|
-
"ras"
|
|
1858
|
-
],
|
|
1859
|
-
"image/x-cmx": [
|
|
1860
|
-
"cmx"
|
|
1861
|
-
],
|
|
1862
|
-
"image/x-freehand": [
|
|
1863
|
-
"fh",
|
|
1864
|
-
"fhc",
|
|
1865
|
-
"fh4",
|
|
1866
|
-
"fh5",
|
|
1867
|
-
"fh7"
|
|
1868
|
-
],
|
|
1869
|
-
"image/x-icon": [
|
|
1870
|
-
"*ico"
|
|
1871
|
-
],
|
|
1872
|
-
"image/x-jng": [
|
|
1873
|
-
"jng"
|
|
1874
|
-
],
|
|
1875
|
-
"image/x-mrsid-image": [
|
|
1876
|
-
"sid"
|
|
1877
|
-
],
|
|
1878
|
-
"image/x-ms-bmp": [
|
|
1879
|
-
"*bmp"
|
|
1880
|
-
],
|
|
1881
|
-
"image/x-pcx": [
|
|
1882
|
-
"*pcx"
|
|
1883
|
-
],
|
|
1884
|
-
"image/x-pict": [
|
|
1885
|
-
"pic",
|
|
1886
|
-
"pct"
|
|
1887
|
-
],
|
|
1888
|
-
"image/x-portable-anymap": [
|
|
1889
|
-
"pnm"
|
|
1890
|
-
],
|
|
1891
|
-
"image/x-portable-bitmap": [
|
|
1892
|
-
"pbm"
|
|
1893
|
-
],
|
|
1894
|
-
"image/x-portable-graymap": [
|
|
1895
|
-
"pgm"
|
|
1896
|
-
],
|
|
1897
|
-
"image/x-portable-pixmap": [
|
|
1898
|
-
"ppm"
|
|
1899
|
-
],
|
|
1900
|
-
"image/x-rgb": [
|
|
1901
|
-
"rgb"
|
|
1902
|
-
],
|
|
1903
|
-
"image/x-tga": [
|
|
1904
|
-
"tga"
|
|
1905
|
-
],
|
|
1906
|
-
"image/x-xbitmap": [
|
|
1907
|
-
"xbm"
|
|
1908
|
-
],
|
|
1909
|
-
"image/x-xpixmap": [
|
|
1910
|
-
"xpm"
|
|
1911
|
-
],
|
|
1912
|
-
"image/x-xwindowdump": [
|
|
1913
|
-
"xwd"
|
|
1914
|
-
],
|
|
1915
|
-
"message/vnd.wfa.wsc": [
|
|
1916
|
-
"wsc"
|
|
1917
|
-
],
|
|
1918
|
-
"model/vnd.collada+xml": [
|
|
1919
|
-
"dae"
|
|
1920
|
-
],
|
|
1921
|
-
"model/vnd.dwf": [
|
|
1922
|
-
"dwf"
|
|
1923
|
-
],
|
|
1924
|
-
"model/vnd.gdl": [
|
|
1925
|
-
"gdl"
|
|
1926
|
-
],
|
|
1927
|
-
"model/vnd.gtw": [
|
|
1928
|
-
"gtw"
|
|
1929
|
-
],
|
|
1930
|
-
"model/vnd.mts": [
|
|
1931
|
-
"mts"
|
|
1932
|
-
],
|
|
1933
|
-
"model/vnd.opengex": [
|
|
1934
|
-
"ogex"
|
|
1935
|
-
],
|
|
1936
|
-
"model/vnd.parasolid.transmit.binary": [
|
|
1937
|
-
"x_b"
|
|
1938
|
-
],
|
|
1939
|
-
"model/vnd.parasolid.transmit.text": [
|
|
1940
|
-
"x_t"
|
|
1941
|
-
],
|
|
1942
|
-
"model/vnd.sap.vds": [
|
|
1943
|
-
"vds"
|
|
1944
|
-
],
|
|
1945
|
-
"model/vnd.usdz+zip": [
|
|
1946
|
-
"usdz"
|
|
1947
|
-
],
|
|
1948
|
-
"model/vnd.valve.source.compiled-map": [
|
|
1949
|
-
"bsp"
|
|
1950
|
-
],
|
|
1951
|
-
"model/vnd.vtu": [
|
|
1952
|
-
"vtu"
|
|
1953
|
-
],
|
|
1954
|
-
"text/prs.lines.tag": [
|
|
1955
|
-
"dsc"
|
|
1956
|
-
],
|
|
1957
|
-
"text/vnd.curl": [
|
|
1958
|
-
"curl"
|
|
1959
|
-
],
|
|
1960
|
-
"text/vnd.curl.dcurl": [
|
|
1961
|
-
"dcurl"
|
|
1962
|
-
],
|
|
1963
|
-
"text/vnd.curl.mcurl": [
|
|
1964
|
-
"mcurl"
|
|
1965
|
-
],
|
|
1966
|
-
"text/vnd.curl.scurl": [
|
|
1967
|
-
"scurl"
|
|
1968
|
-
],
|
|
1969
|
-
"text/vnd.dvb.subtitle": [
|
|
1970
|
-
"sub"
|
|
1971
|
-
],
|
|
1972
|
-
"text/vnd.fly": [
|
|
1973
|
-
"fly"
|
|
1974
|
-
],
|
|
1975
|
-
"text/vnd.fmi.flexstor": [
|
|
1976
|
-
"flx"
|
|
1977
|
-
],
|
|
1978
|
-
"text/vnd.graphviz": [
|
|
1979
|
-
"gv"
|
|
1980
|
-
],
|
|
1981
|
-
"text/vnd.in3d.3dml": [
|
|
1982
|
-
"3dml"
|
|
1983
|
-
],
|
|
1984
|
-
"text/vnd.in3d.spot": [
|
|
1985
|
-
"spot"
|
|
1986
|
-
],
|
|
1987
|
-
"text/vnd.sun.j2me.app-descriptor": [
|
|
1988
|
-
"jad"
|
|
1989
|
-
],
|
|
1990
|
-
"text/vnd.wap.wml": [
|
|
1991
|
-
"wml"
|
|
1992
|
-
],
|
|
1993
|
-
"text/vnd.wap.wmlscript": [
|
|
1994
|
-
"wmls"
|
|
1995
|
-
],
|
|
1996
|
-
"text/x-asm": [
|
|
1997
|
-
"s",
|
|
1998
|
-
"asm"
|
|
1999
|
-
],
|
|
2000
|
-
"text/x-c": [
|
|
2001
|
-
"c",
|
|
2002
|
-
"cc",
|
|
2003
|
-
"cxx",
|
|
2004
|
-
"cpp",
|
|
2005
|
-
"h",
|
|
2006
|
-
"hh",
|
|
2007
|
-
"dic"
|
|
2008
|
-
],
|
|
2009
|
-
"text/x-component": [
|
|
2010
|
-
"htc"
|
|
2011
|
-
],
|
|
2012
|
-
"text/x-fortran": [
|
|
2013
|
-
"f",
|
|
2014
|
-
"for",
|
|
2015
|
-
"f77",
|
|
2016
|
-
"f90"
|
|
2017
|
-
],
|
|
2018
|
-
"text/x-handlebars-template": [
|
|
2019
|
-
"hbs"
|
|
2020
|
-
],
|
|
2021
|
-
"text/x-java-source": [
|
|
2022
|
-
"java"
|
|
2023
|
-
],
|
|
2024
|
-
"text/x-lua": [
|
|
2025
|
-
"lua"
|
|
2026
|
-
],
|
|
2027
|
-
"text/x-markdown": [
|
|
2028
|
-
"mkd"
|
|
2029
|
-
],
|
|
2030
|
-
"text/x-nfo": [
|
|
2031
|
-
"nfo"
|
|
2032
|
-
],
|
|
2033
|
-
"text/x-opml": [
|
|
2034
|
-
"opml"
|
|
2035
|
-
],
|
|
2036
|
-
"text/x-org": [
|
|
2037
|
-
"*org"
|
|
2038
|
-
],
|
|
2039
|
-
"text/x-pascal": [
|
|
2040
|
-
"p",
|
|
2041
|
-
"pas"
|
|
2042
|
-
],
|
|
2043
|
-
"text/x-processing": [
|
|
2044
|
-
"pde"
|
|
2045
|
-
],
|
|
2046
|
-
"text/x-sass": [
|
|
2047
|
-
"sass"
|
|
2048
|
-
],
|
|
2049
|
-
"text/x-scss": [
|
|
2050
|
-
"scss"
|
|
2051
|
-
],
|
|
2052
|
-
"text/x-setext": [
|
|
2053
|
-
"etx"
|
|
2054
|
-
],
|
|
2055
|
-
"text/x-sfv": [
|
|
2056
|
-
"sfv"
|
|
2057
|
-
],
|
|
2058
|
-
"text/x-suse-ymp": [
|
|
2059
|
-
"ymp"
|
|
2060
|
-
],
|
|
2061
|
-
"text/x-uuencode": [
|
|
2062
|
-
"uu"
|
|
2063
|
-
],
|
|
2064
|
-
"text/x-vcalendar": [
|
|
2065
|
-
"vcs"
|
|
2066
|
-
],
|
|
2067
|
-
"text/x-vcard": [
|
|
2068
|
-
"vcf"
|
|
2069
|
-
],
|
|
2070
|
-
"video/vnd.dece.hd": [
|
|
2071
|
-
"uvh",
|
|
2072
|
-
"uvvh"
|
|
2073
|
-
],
|
|
2074
|
-
"video/vnd.dece.mobile": [
|
|
2075
|
-
"uvm",
|
|
2076
|
-
"uvvm"
|
|
2077
|
-
],
|
|
2078
|
-
"video/vnd.dece.pd": [
|
|
2079
|
-
"uvp",
|
|
2080
|
-
"uvvp"
|
|
2081
|
-
],
|
|
2082
|
-
"video/vnd.dece.sd": [
|
|
2083
|
-
"uvs",
|
|
2084
|
-
"uvvs"
|
|
2085
|
-
],
|
|
2086
|
-
"video/vnd.dece.video": [
|
|
2087
|
-
"uvv",
|
|
2088
|
-
"uvvv"
|
|
2089
|
-
],
|
|
2090
|
-
"video/vnd.dvb.file": [
|
|
2091
|
-
"dvb"
|
|
2092
|
-
],
|
|
2093
|
-
"video/vnd.fvt": [
|
|
2094
|
-
"fvt"
|
|
2095
|
-
],
|
|
2096
|
-
"video/vnd.mpegurl": [
|
|
2097
|
-
"mxu",
|
|
2098
|
-
"m4u"
|
|
2099
|
-
],
|
|
2100
|
-
"video/vnd.ms-playready.media.pyv": [
|
|
2101
|
-
"pyv"
|
|
2102
|
-
],
|
|
2103
|
-
"video/vnd.uvvu.mp4": [
|
|
2104
|
-
"uvu",
|
|
2105
|
-
"uvvu"
|
|
2106
|
-
],
|
|
2107
|
-
"video/vnd.vivo": [
|
|
2108
|
-
"viv"
|
|
2109
|
-
],
|
|
2110
|
-
"video/x-f4v": [
|
|
2111
|
-
"f4v"
|
|
2112
|
-
],
|
|
2113
|
-
"video/x-fli": [
|
|
2114
|
-
"fli"
|
|
2115
|
-
],
|
|
2116
|
-
"video/x-flv": [
|
|
2117
|
-
"flv"
|
|
2118
|
-
],
|
|
2119
|
-
"video/x-m4v": [
|
|
2120
|
-
"m4v"
|
|
2121
|
-
],
|
|
2122
|
-
"video/x-matroska": [
|
|
2123
|
-
"mkv",
|
|
2124
|
-
"mk3d",
|
|
2125
|
-
"mks"
|
|
2126
|
-
],
|
|
2127
|
-
"video/x-mng": [
|
|
2128
|
-
"mng"
|
|
2129
|
-
],
|
|
2130
|
-
"video/x-ms-asf": [
|
|
2131
|
-
"asf",
|
|
2132
|
-
"asx"
|
|
2133
|
-
],
|
|
2134
|
-
"video/x-ms-vob": [
|
|
2135
|
-
"vob"
|
|
2136
|
-
],
|
|
2137
|
-
"video/x-ms-wm": [
|
|
2138
|
-
"wm"
|
|
2139
|
-
],
|
|
2140
|
-
"video/x-ms-wmv": [
|
|
2141
|
-
"wmv"
|
|
2142
|
-
],
|
|
2143
|
-
"video/x-ms-wmx": [
|
|
2144
|
-
"wmx"
|
|
2145
|
-
],
|
|
2146
|
-
"video/x-ms-wvx": [
|
|
2147
|
-
"wvx"
|
|
2148
|
-
],
|
|
2149
|
-
"video/x-msvideo": [
|
|
2150
|
-
"avi"
|
|
2151
|
-
],
|
|
2152
|
-
"video/x-sgi-movie": [
|
|
2153
|
-
"movie"
|
|
2154
|
-
],
|
|
2155
|
-
"video/x-smv": [
|
|
2156
|
-
"smv"
|
|
2157
|
-
],
|
|
2158
|
-
"x-conference/x-cooltalk": [
|
|
2159
|
-
"ice"
|
|
2160
|
-
]
|
|
2161
|
-
};
|
|
2162
|
-
},
|
|
2163
|
-
"../../node_modules/.pnpm/mime@2.6.0/node_modules/mime/types/standard.js": function(module) {
|
|
2164
|
-
module.exports = {
|
|
2165
|
-
"application/andrew-inset": [
|
|
2166
|
-
"ez"
|
|
2167
|
-
],
|
|
2168
|
-
"application/applixware": [
|
|
2169
|
-
"aw"
|
|
2170
|
-
],
|
|
2171
|
-
"application/atom+xml": [
|
|
2172
|
-
"atom"
|
|
2173
|
-
],
|
|
2174
|
-
"application/atomcat+xml": [
|
|
2175
|
-
"atomcat"
|
|
2176
|
-
],
|
|
2177
|
-
"application/atomdeleted+xml": [
|
|
2178
|
-
"atomdeleted"
|
|
2179
|
-
],
|
|
2180
|
-
"application/atomsvc+xml": [
|
|
2181
|
-
"atomsvc"
|
|
2182
|
-
],
|
|
2183
|
-
"application/atsc-dwd+xml": [
|
|
2184
|
-
"dwd"
|
|
2185
|
-
],
|
|
2186
|
-
"application/atsc-held+xml": [
|
|
2187
|
-
"held"
|
|
2188
|
-
],
|
|
2189
|
-
"application/atsc-rsat+xml": [
|
|
2190
|
-
"rsat"
|
|
2191
|
-
],
|
|
2192
|
-
"application/bdoc": [
|
|
2193
|
-
"bdoc"
|
|
2194
|
-
],
|
|
2195
|
-
"application/calendar+xml": [
|
|
2196
|
-
"xcs"
|
|
2197
|
-
],
|
|
2198
|
-
"application/ccxml+xml": [
|
|
2199
|
-
"ccxml"
|
|
2200
|
-
],
|
|
2201
|
-
"application/cdfx+xml": [
|
|
2202
|
-
"cdfx"
|
|
2203
|
-
],
|
|
2204
|
-
"application/cdmi-capability": [
|
|
2205
|
-
"cdmia"
|
|
2206
|
-
],
|
|
2207
|
-
"application/cdmi-container": [
|
|
2208
|
-
"cdmic"
|
|
2209
|
-
],
|
|
2210
|
-
"application/cdmi-domain": [
|
|
2211
|
-
"cdmid"
|
|
2212
|
-
],
|
|
2213
|
-
"application/cdmi-object": [
|
|
2214
|
-
"cdmio"
|
|
2215
|
-
],
|
|
2216
|
-
"application/cdmi-queue": [
|
|
2217
|
-
"cdmiq"
|
|
2218
|
-
],
|
|
2219
|
-
"application/cu-seeme": [
|
|
2220
|
-
"cu"
|
|
2221
|
-
],
|
|
2222
|
-
"application/dash+xml": [
|
|
2223
|
-
"mpd"
|
|
2224
|
-
],
|
|
2225
|
-
"application/davmount+xml": [
|
|
2226
|
-
"davmount"
|
|
2227
|
-
],
|
|
2228
|
-
"application/docbook+xml": [
|
|
2229
|
-
"dbk"
|
|
2230
|
-
],
|
|
2231
|
-
"application/dssc+der": [
|
|
2232
|
-
"dssc"
|
|
2233
|
-
],
|
|
2234
|
-
"application/dssc+xml": [
|
|
2235
|
-
"xdssc"
|
|
2236
|
-
],
|
|
2237
|
-
"application/ecmascript": [
|
|
2238
|
-
"es",
|
|
2239
|
-
"ecma"
|
|
2240
|
-
],
|
|
2241
|
-
"application/emma+xml": [
|
|
2242
|
-
"emma"
|
|
2243
|
-
],
|
|
2244
|
-
"application/emotionml+xml": [
|
|
2245
|
-
"emotionml"
|
|
2246
|
-
],
|
|
2247
|
-
"application/epub+zip": [
|
|
2248
|
-
"epub"
|
|
2249
|
-
],
|
|
2250
|
-
"application/exi": [
|
|
2251
|
-
"exi"
|
|
2252
|
-
],
|
|
2253
|
-
"application/express": [
|
|
2254
|
-
"exp"
|
|
2255
|
-
],
|
|
2256
|
-
"application/fdt+xml": [
|
|
2257
|
-
"fdt"
|
|
2258
|
-
],
|
|
2259
|
-
"application/font-tdpfr": [
|
|
2260
|
-
"pfr"
|
|
2261
|
-
],
|
|
2262
|
-
"application/geo+json": [
|
|
2263
|
-
"geojson"
|
|
2264
|
-
],
|
|
2265
|
-
"application/gml+xml": [
|
|
2266
|
-
"gml"
|
|
2267
|
-
],
|
|
2268
|
-
"application/gpx+xml": [
|
|
2269
|
-
"gpx"
|
|
2270
|
-
],
|
|
2271
|
-
"application/gxf": [
|
|
2272
|
-
"gxf"
|
|
2273
|
-
],
|
|
2274
|
-
"application/gzip": [
|
|
2275
|
-
"gz"
|
|
2276
|
-
],
|
|
2277
|
-
"application/hjson": [
|
|
2278
|
-
"hjson"
|
|
2279
|
-
],
|
|
2280
|
-
"application/hyperstudio": [
|
|
2281
|
-
"stk"
|
|
2282
|
-
],
|
|
2283
|
-
"application/inkml+xml": [
|
|
2284
|
-
"ink",
|
|
2285
|
-
"inkml"
|
|
2286
|
-
],
|
|
2287
|
-
"application/ipfix": [
|
|
2288
|
-
"ipfix"
|
|
2289
|
-
],
|
|
2290
|
-
"application/its+xml": [
|
|
2291
|
-
"its"
|
|
2292
|
-
],
|
|
2293
|
-
"application/java-archive": [
|
|
2294
|
-
"jar",
|
|
2295
|
-
"war",
|
|
2296
|
-
"ear"
|
|
2297
|
-
],
|
|
2298
|
-
"application/java-serialized-object": [
|
|
2299
|
-
"ser"
|
|
2300
|
-
],
|
|
2301
|
-
"application/java-vm": [
|
|
2302
|
-
"class"
|
|
2303
|
-
],
|
|
2304
|
-
"application/javascript": [
|
|
2305
|
-
"js",
|
|
2306
|
-
"mjs"
|
|
2307
|
-
],
|
|
2308
|
-
"application/json": [
|
|
2309
|
-
"json",
|
|
2310
|
-
"map"
|
|
2311
|
-
],
|
|
2312
|
-
"application/json5": [
|
|
2313
|
-
"json5"
|
|
2314
|
-
],
|
|
2315
|
-
"application/jsonml+json": [
|
|
2316
|
-
"jsonml"
|
|
2317
|
-
],
|
|
2318
|
-
"application/ld+json": [
|
|
2319
|
-
"jsonld"
|
|
2320
|
-
],
|
|
2321
|
-
"application/lgr+xml": [
|
|
2322
|
-
"lgr"
|
|
2323
|
-
],
|
|
2324
|
-
"application/lost+xml": [
|
|
2325
|
-
"lostxml"
|
|
2326
|
-
],
|
|
2327
|
-
"application/mac-binhex40": [
|
|
2328
|
-
"hqx"
|
|
2329
|
-
],
|
|
2330
|
-
"application/mac-compactpro": [
|
|
2331
|
-
"cpt"
|
|
2332
|
-
],
|
|
2333
|
-
"application/mads+xml": [
|
|
2334
|
-
"mads"
|
|
2335
|
-
],
|
|
2336
|
-
"application/manifest+json": [
|
|
2337
|
-
"webmanifest"
|
|
2338
|
-
],
|
|
2339
|
-
"application/marc": [
|
|
2340
|
-
"mrc"
|
|
2341
|
-
],
|
|
2342
|
-
"application/marcxml+xml": [
|
|
2343
|
-
"mrcx"
|
|
2344
|
-
],
|
|
2345
|
-
"application/mathematica": [
|
|
2346
|
-
"ma",
|
|
2347
|
-
"nb",
|
|
2348
|
-
"mb"
|
|
2349
|
-
],
|
|
2350
|
-
"application/mathml+xml": [
|
|
2351
|
-
"mathml"
|
|
2352
|
-
],
|
|
2353
|
-
"application/mbox": [
|
|
2354
|
-
"mbox"
|
|
2355
|
-
],
|
|
2356
|
-
"application/mediaservercontrol+xml": [
|
|
2357
|
-
"mscml"
|
|
2358
|
-
],
|
|
2359
|
-
"application/metalink+xml": [
|
|
2360
|
-
"metalink"
|
|
2361
|
-
],
|
|
2362
|
-
"application/metalink4+xml": [
|
|
2363
|
-
"meta4"
|
|
2364
|
-
],
|
|
2365
|
-
"application/mets+xml": [
|
|
2366
|
-
"mets"
|
|
2367
|
-
],
|
|
2368
|
-
"application/mmt-aei+xml": [
|
|
2369
|
-
"maei"
|
|
2370
|
-
],
|
|
2371
|
-
"application/mmt-usd+xml": [
|
|
2372
|
-
"musd"
|
|
2373
|
-
],
|
|
2374
|
-
"application/mods+xml": [
|
|
2375
|
-
"mods"
|
|
2376
|
-
],
|
|
2377
|
-
"application/mp21": [
|
|
2378
|
-
"m21",
|
|
2379
|
-
"mp21"
|
|
2380
|
-
],
|
|
2381
|
-
"application/mp4": [
|
|
2382
|
-
"mp4s",
|
|
2383
|
-
"m4p"
|
|
2384
|
-
],
|
|
2385
|
-
"application/msword": [
|
|
2386
|
-
"doc",
|
|
2387
|
-
"dot"
|
|
2388
|
-
],
|
|
2389
|
-
"application/mxf": [
|
|
2390
|
-
"mxf"
|
|
2391
|
-
],
|
|
2392
|
-
"application/n-quads": [
|
|
2393
|
-
"nq"
|
|
2394
|
-
],
|
|
2395
|
-
"application/n-triples": [
|
|
2396
|
-
"nt"
|
|
2397
|
-
],
|
|
2398
|
-
"application/node": [
|
|
2399
|
-
"cjs"
|
|
2400
|
-
],
|
|
2401
|
-
"application/octet-stream": [
|
|
2402
|
-
"bin",
|
|
2403
|
-
"dms",
|
|
2404
|
-
"lrf",
|
|
2405
|
-
"mar",
|
|
2406
|
-
"so",
|
|
2407
|
-
"dist",
|
|
2408
|
-
"distz",
|
|
2409
|
-
"pkg",
|
|
2410
|
-
"bpk",
|
|
2411
|
-
"dump",
|
|
2412
|
-
"elc",
|
|
2413
|
-
"deploy",
|
|
2414
|
-
"exe",
|
|
2415
|
-
"dll",
|
|
2416
|
-
"deb",
|
|
2417
|
-
"dmg",
|
|
2418
|
-
"iso",
|
|
2419
|
-
"img",
|
|
2420
|
-
"msi",
|
|
2421
|
-
"msp",
|
|
2422
|
-
"msm",
|
|
2423
|
-
"buffer"
|
|
2424
|
-
],
|
|
2425
|
-
"application/oda": [
|
|
2426
|
-
"oda"
|
|
2427
|
-
],
|
|
2428
|
-
"application/oebps-package+xml": [
|
|
2429
|
-
"opf"
|
|
2430
|
-
],
|
|
2431
|
-
"application/ogg": [
|
|
2432
|
-
"ogx"
|
|
2433
|
-
],
|
|
2434
|
-
"application/omdoc+xml": [
|
|
2435
|
-
"omdoc"
|
|
2436
|
-
],
|
|
2437
|
-
"application/onenote": [
|
|
2438
|
-
"onetoc",
|
|
2439
|
-
"onetoc2",
|
|
2440
|
-
"onetmp",
|
|
2441
|
-
"onepkg"
|
|
2442
|
-
],
|
|
2443
|
-
"application/oxps": [
|
|
2444
|
-
"oxps"
|
|
2445
|
-
],
|
|
2446
|
-
"application/p2p-overlay+xml": [
|
|
2447
|
-
"relo"
|
|
2448
|
-
],
|
|
2449
|
-
"application/patch-ops-error+xml": [
|
|
2450
|
-
"xer"
|
|
2451
|
-
],
|
|
2452
|
-
"application/pdf": [
|
|
2453
|
-
"pdf"
|
|
2454
|
-
],
|
|
2455
|
-
"application/pgp-encrypted": [
|
|
2456
|
-
"pgp"
|
|
2457
|
-
],
|
|
2458
|
-
"application/pgp-signature": [
|
|
2459
|
-
"asc",
|
|
2460
|
-
"sig"
|
|
2461
|
-
],
|
|
2462
|
-
"application/pics-rules": [
|
|
2463
|
-
"prf"
|
|
2464
|
-
],
|
|
2465
|
-
"application/pkcs10": [
|
|
2466
|
-
"p10"
|
|
2467
|
-
],
|
|
2468
|
-
"application/pkcs7-mime": [
|
|
2469
|
-
"p7m",
|
|
2470
|
-
"p7c"
|
|
2471
|
-
],
|
|
2472
|
-
"application/pkcs7-signature": [
|
|
2473
|
-
"p7s"
|
|
2474
|
-
],
|
|
2475
|
-
"application/pkcs8": [
|
|
2476
|
-
"p8"
|
|
2477
|
-
],
|
|
2478
|
-
"application/pkix-attr-cert": [
|
|
2479
|
-
"ac"
|
|
2480
|
-
],
|
|
2481
|
-
"application/pkix-cert": [
|
|
2482
|
-
"cer"
|
|
2483
|
-
],
|
|
2484
|
-
"application/pkix-crl": [
|
|
2485
|
-
"crl"
|
|
2486
|
-
],
|
|
2487
|
-
"application/pkix-pkipath": [
|
|
2488
|
-
"pkipath"
|
|
2489
|
-
],
|
|
2490
|
-
"application/pkixcmp": [
|
|
2491
|
-
"pki"
|
|
2492
|
-
],
|
|
2493
|
-
"application/pls+xml": [
|
|
2494
|
-
"pls"
|
|
2495
|
-
],
|
|
2496
|
-
"application/postscript": [
|
|
2497
|
-
"ai",
|
|
2498
|
-
"eps",
|
|
2499
|
-
"ps"
|
|
2500
|
-
],
|
|
2501
|
-
"application/provenance+xml": [
|
|
2502
|
-
"provx"
|
|
2503
|
-
],
|
|
2504
|
-
"application/pskc+xml": [
|
|
2505
|
-
"pskcxml"
|
|
2506
|
-
],
|
|
2507
|
-
"application/raml+yaml": [
|
|
2508
|
-
"raml"
|
|
2509
|
-
],
|
|
2510
|
-
"application/rdf+xml": [
|
|
2511
|
-
"rdf",
|
|
2512
|
-
"owl"
|
|
2513
|
-
],
|
|
2514
|
-
"application/reginfo+xml": [
|
|
2515
|
-
"rif"
|
|
2516
|
-
],
|
|
2517
|
-
"application/relax-ng-compact-syntax": [
|
|
2518
|
-
"rnc"
|
|
2519
|
-
],
|
|
2520
|
-
"application/resource-lists+xml": [
|
|
2521
|
-
"rl"
|
|
2522
|
-
],
|
|
2523
|
-
"application/resource-lists-diff+xml": [
|
|
2524
|
-
"rld"
|
|
2525
|
-
],
|
|
2526
|
-
"application/rls-services+xml": [
|
|
2527
|
-
"rs"
|
|
2528
|
-
],
|
|
2529
|
-
"application/route-apd+xml": [
|
|
2530
|
-
"rapd"
|
|
2531
|
-
],
|
|
2532
|
-
"application/route-s-tsid+xml": [
|
|
2533
|
-
"sls"
|
|
2534
|
-
],
|
|
2535
|
-
"application/route-usd+xml": [
|
|
2536
|
-
"rusd"
|
|
2537
|
-
],
|
|
2538
|
-
"application/rpki-ghostbusters": [
|
|
2539
|
-
"gbr"
|
|
2540
|
-
],
|
|
2541
|
-
"application/rpki-manifest": [
|
|
2542
|
-
"mft"
|
|
2543
|
-
],
|
|
2544
|
-
"application/rpki-roa": [
|
|
2545
|
-
"roa"
|
|
2546
|
-
],
|
|
2547
|
-
"application/rsd+xml": [
|
|
2548
|
-
"rsd"
|
|
2549
|
-
],
|
|
2550
|
-
"application/rss+xml": [
|
|
2551
|
-
"rss"
|
|
2552
|
-
],
|
|
2553
|
-
"application/rtf": [
|
|
2554
|
-
"rtf"
|
|
2555
|
-
],
|
|
2556
|
-
"application/sbml+xml": [
|
|
2557
|
-
"sbml"
|
|
2558
|
-
],
|
|
2559
|
-
"application/scvp-cv-request": [
|
|
2560
|
-
"scq"
|
|
2561
|
-
],
|
|
2562
|
-
"application/scvp-cv-response": [
|
|
2563
|
-
"scs"
|
|
2564
|
-
],
|
|
2565
|
-
"application/scvp-vp-request": [
|
|
2566
|
-
"spq"
|
|
2567
|
-
],
|
|
2568
|
-
"application/scvp-vp-response": [
|
|
2569
|
-
"spp"
|
|
2570
|
-
],
|
|
2571
|
-
"application/sdp": [
|
|
2572
|
-
"sdp"
|
|
2573
|
-
],
|
|
2574
|
-
"application/senml+xml": [
|
|
2575
|
-
"senmlx"
|
|
2576
|
-
],
|
|
2577
|
-
"application/sensml+xml": [
|
|
2578
|
-
"sensmlx"
|
|
2579
|
-
],
|
|
2580
|
-
"application/set-payment-initiation": [
|
|
2581
|
-
"setpay"
|
|
2582
|
-
],
|
|
2583
|
-
"application/set-registration-initiation": [
|
|
2584
|
-
"setreg"
|
|
2585
|
-
],
|
|
2586
|
-
"application/shf+xml": [
|
|
2587
|
-
"shf"
|
|
2588
|
-
],
|
|
2589
|
-
"application/sieve": [
|
|
2590
|
-
"siv",
|
|
2591
|
-
"sieve"
|
|
2592
|
-
],
|
|
2593
|
-
"application/smil+xml": [
|
|
2594
|
-
"smi",
|
|
2595
|
-
"smil"
|
|
2596
|
-
],
|
|
2597
|
-
"application/sparql-query": [
|
|
2598
|
-
"rq"
|
|
2599
|
-
],
|
|
2600
|
-
"application/sparql-results+xml": [
|
|
2601
|
-
"srx"
|
|
2602
|
-
],
|
|
2603
|
-
"application/srgs": [
|
|
2604
|
-
"gram"
|
|
2605
|
-
],
|
|
2606
|
-
"application/srgs+xml": [
|
|
2607
|
-
"grxml"
|
|
2608
|
-
],
|
|
2609
|
-
"application/sru+xml": [
|
|
2610
|
-
"sru"
|
|
2611
|
-
],
|
|
2612
|
-
"application/ssdl+xml": [
|
|
2613
|
-
"ssdl"
|
|
2614
|
-
],
|
|
2615
|
-
"application/ssml+xml": [
|
|
2616
|
-
"ssml"
|
|
2617
|
-
],
|
|
2618
|
-
"application/swid+xml": [
|
|
2619
|
-
"swidtag"
|
|
2620
|
-
],
|
|
2621
|
-
"application/tei+xml": [
|
|
2622
|
-
"tei",
|
|
2623
|
-
"teicorpus"
|
|
2624
|
-
],
|
|
2625
|
-
"application/thraud+xml": [
|
|
2626
|
-
"tfi"
|
|
2627
|
-
],
|
|
2628
|
-
"application/timestamped-data": [
|
|
2629
|
-
"tsd"
|
|
2630
|
-
],
|
|
2631
|
-
"application/toml": [
|
|
2632
|
-
"toml"
|
|
2633
|
-
],
|
|
2634
|
-
"application/trig": [
|
|
2635
|
-
"trig"
|
|
2636
|
-
],
|
|
2637
|
-
"application/ttml+xml": [
|
|
2638
|
-
"ttml"
|
|
2639
|
-
],
|
|
2640
|
-
"application/ubjson": [
|
|
2641
|
-
"ubj"
|
|
2642
|
-
],
|
|
2643
|
-
"application/urc-ressheet+xml": [
|
|
2644
|
-
"rsheet"
|
|
2645
|
-
],
|
|
2646
|
-
"application/urc-targetdesc+xml": [
|
|
2647
|
-
"td"
|
|
2648
|
-
],
|
|
2649
|
-
"application/voicexml+xml": [
|
|
2650
|
-
"vxml"
|
|
2651
|
-
],
|
|
2652
|
-
"application/wasm": [
|
|
2653
|
-
"wasm"
|
|
2654
|
-
],
|
|
2655
|
-
"application/widget": [
|
|
2656
|
-
"wgt"
|
|
2657
|
-
],
|
|
2658
|
-
"application/winhlp": [
|
|
2659
|
-
"hlp"
|
|
2660
|
-
],
|
|
2661
|
-
"application/wsdl+xml": [
|
|
2662
|
-
"wsdl"
|
|
2663
|
-
],
|
|
2664
|
-
"application/wspolicy+xml": [
|
|
2665
|
-
"wspolicy"
|
|
2666
|
-
],
|
|
2667
|
-
"application/xaml+xml": [
|
|
2668
|
-
"xaml"
|
|
2669
|
-
],
|
|
2670
|
-
"application/xcap-att+xml": [
|
|
2671
|
-
"xav"
|
|
2672
|
-
],
|
|
2673
|
-
"application/xcap-caps+xml": [
|
|
2674
|
-
"xca"
|
|
2675
|
-
],
|
|
2676
|
-
"application/xcap-diff+xml": [
|
|
2677
|
-
"xdf"
|
|
2678
|
-
],
|
|
2679
|
-
"application/xcap-el+xml": [
|
|
2680
|
-
"xel"
|
|
2681
|
-
],
|
|
2682
|
-
"application/xcap-ns+xml": [
|
|
2683
|
-
"xns"
|
|
2684
|
-
],
|
|
2685
|
-
"application/xenc+xml": [
|
|
2686
|
-
"xenc"
|
|
2687
|
-
],
|
|
2688
|
-
"application/xhtml+xml": [
|
|
2689
|
-
"xhtml",
|
|
2690
|
-
"xht"
|
|
2691
|
-
],
|
|
2692
|
-
"application/xliff+xml": [
|
|
2693
|
-
"xlf"
|
|
2694
|
-
],
|
|
2695
|
-
"application/xml": [
|
|
2696
|
-
"xml",
|
|
2697
|
-
"xsl",
|
|
2698
|
-
"xsd",
|
|
2699
|
-
"rng"
|
|
2700
|
-
],
|
|
2701
|
-
"application/xml-dtd": [
|
|
2702
|
-
"dtd"
|
|
2703
|
-
],
|
|
2704
|
-
"application/xop+xml": [
|
|
2705
|
-
"xop"
|
|
2706
|
-
],
|
|
2707
|
-
"application/xproc+xml": [
|
|
2708
|
-
"xpl"
|
|
2709
|
-
],
|
|
2710
|
-
"application/xslt+xml": [
|
|
2711
|
-
"*xsl",
|
|
2712
|
-
"xslt"
|
|
2713
|
-
],
|
|
2714
|
-
"application/xspf+xml": [
|
|
2715
|
-
"xspf"
|
|
2716
|
-
],
|
|
2717
|
-
"application/xv+xml": [
|
|
2718
|
-
"mxml",
|
|
2719
|
-
"xhvml",
|
|
2720
|
-
"xvml",
|
|
2721
|
-
"xvm"
|
|
2722
|
-
],
|
|
2723
|
-
"application/yang": [
|
|
2724
|
-
"yang"
|
|
2725
|
-
],
|
|
2726
|
-
"application/yin+xml": [
|
|
2727
|
-
"yin"
|
|
2728
|
-
],
|
|
2729
|
-
"application/zip": [
|
|
2730
|
-
"zip"
|
|
2731
|
-
],
|
|
2732
|
-
"audio/3gpp": [
|
|
2733
|
-
"*3gpp"
|
|
2734
|
-
],
|
|
2735
|
-
"audio/adpcm": [
|
|
2736
|
-
"adp"
|
|
2737
|
-
],
|
|
2738
|
-
"audio/amr": [
|
|
2739
|
-
"amr"
|
|
2740
|
-
],
|
|
2741
|
-
"audio/basic": [
|
|
2742
|
-
"au",
|
|
2743
|
-
"snd"
|
|
2744
|
-
],
|
|
2745
|
-
"audio/midi": [
|
|
2746
|
-
"mid",
|
|
2747
|
-
"midi",
|
|
2748
|
-
"kar",
|
|
2749
|
-
"rmi"
|
|
2750
|
-
],
|
|
2751
|
-
"audio/mobile-xmf": [
|
|
2752
|
-
"mxmf"
|
|
2753
|
-
],
|
|
2754
|
-
"audio/mp3": [
|
|
2755
|
-
"*mp3"
|
|
2756
|
-
],
|
|
2757
|
-
"audio/mp4": [
|
|
2758
|
-
"m4a",
|
|
2759
|
-
"mp4a"
|
|
2760
|
-
],
|
|
2761
|
-
"audio/mpeg": [
|
|
2762
|
-
"mpga",
|
|
2763
|
-
"mp2",
|
|
2764
|
-
"mp2a",
|
|
2765
|
-
"mp3",
|
|
2766
|
-
"m2a",
|
|
2767
|
-
"m3a"
|
|
2768
|
-
],
|
|
2769
|
-
"audio/ogg": [
|
|
2770
|
-
"oga",
|
|
2771
|
-
"ogg",
|
|
2772
|
-
"spx",
|
|
2773
|
-
"opus"
|
|
2774
|
-
],
|
|
2775
|
-
"audio/s3m": [
|
|
2776
|
-
"s3m"
|
|
2777
|
-
],
|
|
2778
|
-
"audio/silk": [
|
|
2779
|
-
"sil"
|
|
2780
|
-
],
|
|
2781
|
-
"audio/wav": [
|
|
2782
|
-
"wav"
|
|
2783
|
-
],
|
|
2784
|
-
"audio/wave": [
|
|
2785
|
-
"*wav"
|
|
2786
|
-
],
|
|
2787
|
-
"audio/webm": [
|
|
2788
|
-
"weba"
|
|
2789
|
-
],
|
|
2790
|
-
"audio/xm": [
|
|
2791
|
-
"xm"
|
|
2792
|
-
],
|
|
2793
|
-
"font/collection": [
|
|
2794
|
-
"ttc"
|
|
2795
|
-
],
|
|
2796
|
-
"font/otf": [
|
|
2797
|
-
"otf"
|
|
2798
|
-
],
|
|
2799
|
-
"font/ttf": [
|
|
2800
|
-
"ttf"
|
|
2801
|
-
],
|
|
2802
|
-
"font/woff": [
|
|
2803
|
-
"woff"
|
|
2804
|
-
],
|
|
2805
|
-
"font/woff2": [
|
|
2806
|
-
"woff2"
|
|
2807
|
-
],
|
|
2808
|
-
"image/aces": [
|
|
2809
|
-
"exr"
|
|
2810
|
-
],
|
|
2811
|
-
"image/apng": [
|
|
2812
|
-
"apng"
|
|
2813
|
-
],
|
|
2814
|
-
"image/avif": [
|
|
2815
|
-
"avif"
|
|
2816
|
-
],
|
|
2817
|
-
"image/bmp": [
|
|
2818
|
-
"bmp"
|
|
2819
|
-
],
|
|
2820
|
-
"image/cgm": [
|
|
2821
|
-
"cgm"
|
|
2822
|
-
],
|
|
2823
|
-
"image/dicom-rle": [
|
|
2824
|
-
"drle"
|
|
2825
|
-
],
|
|
2826
|
-
"image/emf": [
|
|
2827
|
-
"emf"
|
|
2828
|
-
],
|
|
2829
|
-
"image/fits": [
|
|
2830
|
-
"fits"
|
|
2831
|
-
],
|
|
2832
|
-
"image/g3fax": [
|
|
2833
|
-
"g3"
|
|
2834
|
-
],
|
|
2835
|
-
"image/gif": [
|
|
2836
|
-
"gif"
|
|
2837
|
-
],
|
|
2838
|
-
"image/heic": [
|
|
2839
|
-
"heic"
|
|
2840
|
-
],
|
|
2841
|
-
"image/heic-sequence": [
|
|
2842
|
-
"heics"
|
|
2843
|
-
],
|
|
2844
|
-
"image/heif": [
|
|
2845
|
-
"heif"
|
|
2846
|
-
],
|
|
2847
|
-
"image/heif-sequence": [
|
|
2848
|
-
"heifs"
|
|
2849
|
-
],
|
|
2850
|
-
"image/hej2k": [
|
|
2851
|
-
"hej2"
|
|
2852
|
-
],
|
|
2853
|
-
"image/hsj2": [
|
|
2854
|
-
"hsj2"
|
|
2855
|
-
],
|
|
2856
|
-
"image/ief": [
|
|
2857
|
-
"ief"
|
|
2858
|
-
],
|
|
2859
|
-
"image/jls": [
|
|
2860
|
-
"jls"
|
|
2861
|
-
],
|
|
2862
|
-
"image/jp2": [
|
|
2863
|
-
"jp2",
|
|
2864
|
-
"jpg2"
|
|
2865
|
-
],
|
|
2866
|
-
"image/jpeg": [
|
|
2867
|
-
"jpeg",
|
|
2868
|
-
"jpg",
|
|
2869
|
-
"jpe"
|
|
2870
|
-
],
|
|
2871
|
-
"image/jph": [
|
|
2872
|
-
"jph"
|
|
2873
|
-
],
|
|
2874
|
-
"image/jphc": [
|
|
2875
|
-
"jhc"
|
|
2876
|
-
],
|
|
2877
|
-
"image/jpm": [
|
|
2878
|
-
"jpm"
|
|
2879
|
-
],
|
|
2880
|
-
"image/jpx": [
|
|
2881
|
-
"jpx",
|
|
2882
|
-
"jpf"
|
|
2883
|
-
],
|
|
2884
|
-
"image/jxr": [
|
|
2885
|
-
"jxr"
|
|
2886
|
-
],
|
|
2887
|
-
"image/jxra": [
|
|
2888
|
-
"jxra"
|
|
2889
|
-
],
|
|
2890
|
-
"image/jxrs": [
|
|
2891
|
-
"jxrs"
|
|
2892
|
-
],
|
|
2893
|
-
"image/jxs": [
|
|
2894
|
-
"jxs"
|
|
2895
|
-
],
|
|
2896
|
-
"image/jxsc": [
|
|
2897
|
-
"jxsc"
|
|
2898
|
-
],
|
|
2899
|
-
"image/jxsi": [
|
|
2900
|
-
"jxsi"
|
|
2901
|
-
],
|
|
2902
|
-
"image/jxss": [
|
|
2903
|
-
"jxss"
|
|
2904
|
-
],
|
|
2905
|
-
"image/ktx": [
|
|
2906
|
-
"ktx"
|
|
2907
|
-
],
|
|
2908
|
-
"image/ktx2": [
|
|
2909
|
-
"ktx2"
|
|
2910
|
-
],
|
|
2911
|
-
"image/png": [
|
|
2912
|
-
"png"
|
|
2913
|
-
],
|
|
2914
|
-
"image/sgi": [
|
|
2915
|
-
"sgi"
|
|
2916
|
-
],
|
|
2917
|
-
"image/svg+xml": [
|
|
2918
|
-
"svg",
|
|
2919
|
-
"svgz"
|
|
2920
|
-
],
|
|
2921
|
-
"image/t38": [
|
|
2922
|
-
"t38"
|
|
2923
|
-
],
|
|
2924
|
-
"image/tiff": [
|
|
2925
|
-
"tif",
|
|
2926
|
-
"tiff"
|
|
2927
|
-
],
|
|
2928
|
-
"image/tiff-fx": [
|
|
2929
|
-
"tfx"
|
|
2930
|
-
],
|
|
2931
|
-
"image/webp": [
|
|
2932
|
-
"webp"
|
|
2933
|
-
],
|
|
2934
|
-
"image/wmf": [
|
|
2935
|
-
"wmf"
|
|
2936
|
-
],
|
|
2937
|
-
"message/disposition-notification": [
|
|
2938
|
-
"disposition-notification"
|
|
2939
|
-
],
|
|
2940
|
-
"message/global": [
|
|
2941
|
-
"u8msg"
|
|
2942
|
-
],
|
|
2943
|
-
"message/global-delivery-status": [
|
|
2944
|
-
"u8dsn"
|
|
2945
|
-
],
|
|
2946
|
-
"message/global-disposition-notification": [
|
|
2947
|
-
"u8mdn"
|
|
2948
|
-
],
|
|
2949
|
-
"message/global-headers": [
|
|
2950
|
-
"u8hdr"
|
|
2951
|
-
],
|
|
2952
|
-
"message/rfc822": [
|
|
2953
|
-
"eml",
|
|
2954
|
-
"mime"
|
|
2955
|
-
],
|
|
2956
|
-
"model/3mf": [
|
|
2957
|
-
"3mf"
|
|
2958
|
-
],
|
|
2959
|
-
"model/gltf+json": [
|
|
2960
|
-
"gltf"
|
|
2961
|
-
],
|
|
2962
|
-
"model/gltf-binary": [
|
|
2963
|
-
"glb"
|
|
2964
|
-
],
|
|
2965
|
-
"model/iges": [
|
|
2966
|
-
"igs",
|
|
2967
|
-
"iges"
|
|
2968
|
-
],
|
|
2969
|
-
"model/mesh": [
|
|
2970
|
-
"msh",
|
|
2971
|
-
"mesh",
|
|
2972
|
-
"silo"
|
|
2973
|
-
],
|
|
2974
|
-
"model/mtl": [
|
|
2975
|
-
"mtl"
|
|
2976
|
-
],
|
|
2977
|
-
"model/obj": [
|
|
2978
|
-
"obj"
|
|
2979
|
-
],
|
|
2980
|
-
"model/step+xml": [
|
|
2981
|
-
"stpx"
|
|
2982
|
-
],
|
|
2983
|
-
"model/step+zip": [
|
|
2984
|
-
"stpz"
|
|
2985
|
-
],
|
|
2986
|
-
"model/step-xml+zip": [
|
|
2987
|
-
"stpxz"
|
|
2988
|
-
],
|
|
2989
|
-
"model/stl": [
|
|
2990
|
-
"stl"
|
|
2991
|
-
],
|
|
2992
|
-
"model/vrml": [
|
|
2993
|
-
"wrl",
|
|
2994
|
-
"vrml"
|
|
2995
|
-
],
|
|
2996
|
-
"model/x3d+binary": [
|
|
2997
|
-
"*x3db",
|
|
2998
|
-
"x3dbz"
|
|
2999
|
-
],
|
|
3000
|
-
"model/x3d+fastinfoset": [
|
|
3001
|
-
"x3db"
|
|
3002
|
-
],
|
|
3003
|
-
"model/x3d+vrml": [
|
|
3004
|
-
"*x3dv",
|
|
3005
|
-
"x3dvz"
|
|
3006
|
-
],
|
|
3007
|
-
"model/x3d+xml": [
|
|
3008
|
-
"x3d",
|
|
3009
|
-
"x3dz"
|
|
3010
|
-
],
|
|
3011
|
-
"model/x3d-vrml": [
|
|
3012
|
-
"x3dv"
|
|
3013
|
-
],
|
|
3014
|
-
"text/cache-manifest": [
|
|
3015
|
-
"appcache",
|
|
3016
|
-
"manifest"
|
|
3017
|
-
],
|
|
3018
|
-
"text/calendar": [
|
|
3019
|
-
"ics",
|
|
3020
|
-
"ifb"
|
|
3021
|
-
],
|
|
3022
|
-
"text/coffeescript": [
|
|
3023
|
-
"coffee",
|
|
3024
|
-
"litcoffee"
|
|
3025
|
-
],
|
|
3026
|
-
"text/css": [
|
|
3027
|
-
"css"
|
|
3028
|
-
],
|
|
3029
|
-
"text/csv": [
|
|
3030
|
-
"csv"
|
|
3031
|
-
],
|
|
3032
|
-
"text/html": [
|
|
3033
|
-
"html",
|
|
3034
|
-
"htm",
|
|
3035
|
-
"shtml"
|
|
3036
|
-
],
|
|
3037
|
-
"text/jade": [
|
|
3038
|
-
"jade"
|
|
3039
|
-
],
|
|
3040
|
-
"text/jsx": [
|
|
3041
|
-
"jsx"
|
|
3042
|
-
],
|
|
3043
|
-
"text/less": [
|
|
3044
|
-
"less"
|
|
3045
|
-
],
|
|
3046
|
-
"text/markdown": [
|
|
3047
|
-
"markdown",
|
|
3048
|
-
"md"
|
|
3049
|
-
],
|
|
3050
|
-
"text/mathml": [
|
|
3051
|
-
"mml"
|
|
3052
|
-
],
|
|
3053
|
-
"text/mdx": [
|
|
3054
|
-
"mdx"
|
|
3055
|
-
],
|
|
3056
|
-
"text/n3": [
|
|
3057
|
-
"n3"
|
|
3058
|
-
],
|
|
3059
|
-
"text/plain": [
|
|
3060
|
-
"txt",
|
|
3061
|
-
"text",
|
|
3062
|
-
"conf",
|
|
3063
|
-
"def",
|
|
3064
|
-
"list",
|
|
3065
|
-
"log",
|
|
3066
|
-
"in",
|
|
3067
|
-
"ini"
|
|
3068
|
-
],
|
|
3069
|
-
"text/richtext": [
|
|
3070
|
-
"rtx"
|
|
3071
|
-
],
|
|
3072
|
-
"text/rtf": [
|
|
3073
|
-
"*rtf"
|
|
3074
|
-
],
|
|
3075
|
-
"text/sgml": [
|
|
3076
|
-
"sgml",
|
|
3077
|
-
"sgm"
|
|
3078
|
-
],
|
|
3079
|
-
"text/shex": [
|
|
3080
|
-
"shex"
|
|
3081
|
-
],
|
|
3082
|
-
"text/slim": [
|
|
3083
|
-
"slim",
|
|
3084
|
-
"slm"
|
|
3085
|
-
],
|
|
3086
|
-
"text/spdx": [
|
|
3087
|
-
"spdx"
|
|
3088
|
-
],
|
|
3089
|
-
"text/stylus": [
|
|
3090
|
-
"stylus",
|
|
3091
|
-
"styl"
|
|
3092
|
-
],
|
|
3093
|
-
"text/tab-separated-values": [
|
|
3094
|
-
"tsv"
|
|
3095
|
-
],
|
|
3096
|
-
"text/troff": [
|
|
3097
|
-
"t",
|
|
3098
|
-
"tr",
|
|
3099
|
-
"roff",
|
|
3100
|
-
"man",
|
|
3101
|
-
"me",
|
|
3102
|
-
"ms"
|
|
3103
|
-
],
|
|
3104
|
-
"text/turtle": [
|
|
3105
|
-
"ttl"
|
|
3106
|
-
],
|
|
3107
|
-
"text/uri-list": [
|
|
3108
|
-
"uri",
|
|
3109
|
-
"uris",
|
|
3110
|
-
"urls"
|
|
3111
|
-
],
|
|
3112
|
-
"text/vcard": [
|
|
3113
|
-
"vcard"
|
|
3114
|
-
],
|
|
3115
|
-
"text/vtt": [
|
|
3116
|
-
"vtt"
|
|
3117
|
-
],
|
|
3118
|
-
"text/xml": [
|
|
3119
|
-
"*xml"
|
|
3120
|
-
],
|
|
3121
|
-
"text/yaml": [
|
|
3122
|
-
"yaml",
|
|
3123
|
-
"yml"
|
|
3124
|
-
],
|
|
3125
|
-
"video/3gpp": [
|
|
3126
|
-
"3gp",
|
|
3127
|
-
"3gpp"
|
|
3128
|
-
],
|
|
3129
|
-
"video/3gpp2": [
|
|
3130
|
-
"3g2"
|
|
3131
|
-
],
|
|
3132
|
-
"video/h261": [
|
|
3133
|
-
"h261"
|
|
3134
|
-
],
|
|
3135
|
-
"video/h263": [
|
|
3136
|
-
"h263"
|
|
3137
|
-
],
|
|
3138
|
-
"video/h264": [
|
|
3139
|
-
"h264"
|
|
3140
|
-
],
|
|
3141
|
-
"video/iso.segment": [
|
|
3142
|
-
"m4s"
|
|
3143
|
-
],
|
|
3144
|
-
"video/jpeg": [
|
|
3145
|
-
"jpgv"
|
|
3146
|
-
],
|
|
3147
|
-
"video/jpm": [
|
|
3148
|
-
"*jpm",
|
|
3149
|
-
"jpgm"
|
|
3150
|
-
],
|
|
3151
|
-
"video/mj2": [
|
|
3152
|
-
"mj2",
|
|
3153
|
-
"mjp2"
|
|
3154
|
-
],
|
|
3155
|
-
"video/mp2t": [
|
|
3156
|
-
"ts"
|
|
3157
|
-
],
|
|
3158
|
-
"video/mp4": [
|
|
3159
|
-
"mp4",
|
|
3160
|
-
"mp4v",
|
|
3161
|
-
"mpg4"
|
|
3162
|
-
],
|
|
3163
|
-
"video/mpeg": [
|
|
3164
|
-
"mpeg",
|
|
3165
|
-
"mpg",
|
|
3166
|
-
"mpe",
|
|
3167
|
-
"m1v",
|
|
3168
|
-
"m2v"
|
|
3169
|
-
],
|
|
3170
|
-
"video/ogg": [
|
|
3171
|
-
"ogv"
|
|
3172
|
-
],
|
|
3173
|
-
"video/quicktime": [
|
|
3174
|
-
"qt",
|
|
3175
|
-
"mov"
|
|
3176
|
-
],
|
|
3177
|
-
"video/webm": [
|
|
3178
|
-
"webm"
|
|
3179
|
-
]
|
|
3180
|
-
};
|
|
3181
|
-
}
|
|
1
|
+
import path from "path";
|
|
2
|
+
import fs from "fs/promises";
|
|
3
|
+
import { createDatabasePlugin } from "@hot-updater/plugin-core";
|
|
4
|
+
|
|
5
|
+
//#region rolldown:runtime
|
|
6
|
+
var __create = Object.create;
|
|
7
|
+
var __defProp = Object.defineProperty;
|
|
8
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
9
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
10
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
11
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
12
|
+
var __commonJS = (cb, mod) => function() {
|
|
13
|
+
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
3182
14
|
};
|
|
3183
|
-
var
|
|
3184
|
-
function
|
|
3185
|
-
|
|
3186
|
-
|
|
3187
|
-
|
|
3188
|
-
|
|
3189
|
-
|
|
3190
|
-
|
|
3191
|
-
|
|
3192
|
-
}
|
|
3193
|
-
(()
|
|
3194
|
-
|
|
3195
|
-
|
|
3196
|
-
|
|
3197
|
-
|
|
3198
|
-
|
|
3199
|
-
|
|
3200
|
-
|
|
3201
|
-
|
|
3202
|
-
|
|
3203
|
-
|
|
3204
|
-
|
|
3205
|
-
|
|
3206
|
-
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
|
-
|
|
3210
|
-
(
|
|
3211
|
-
|
|
3212
|
-
}
|
|
3213
|
-
|
|
3214
|
-
|
|
3215
|
-
|
|
3216
|
-
|
|
3217
|
-
|
|
3218
|
-
|
|
3219
|
-
|
|
3220
|
-
|
|
3221
|
-
|
|
15
|
+
var __copyProps = (to, from, except, desc) => {
|
|
16
|
+
if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
17
|
+
key = keys[i];
|
|
18
|
+
if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
19
|
+
get: ((k) => from[k]).bind(null, key),
|
|
20
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
return to;
|
|
24
|
+
};
|
|
25
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
26
|
+
value: mod,
|
|
27
|
+
enumerable: true
|
|
28
|
+
}) : target, mod));
|
|
29
|
+
|
|
30
|
+
//#endregion
|
|
31
|
+
//#region ../../node_modules/.pnpm/mime@2.6.0/node_modules/mime/Mime.js
|
|
32
|
+
var require_Mime = __commonJS({ "../../node_modules/.pnpm/mime@2.6.0/node_modules/mime/Mime.js"(exports, module) {
|
|
33
|
+
/**
|
|
34
|
+
* @param typeMap [Object] Map of MIME type -> Array[extensions]
|
|
35
|
+
* @param ...
|
|
36
|
+
*/
|
|
37
|
+
function Mime$1() {
|
|
38
|
+
this._types = Object.create(null);
|
|
39
|
+
this._extensions = Object.create(null);
|
|
40
|
+
for (let i = 0; i < arguments.length; i++) this.define(arguments[i]);
|
|
41
|
+
this.define = this.define.bind(this);
|
|
42
|
+
this.getType = this.getType.bind(this);
|
|
43
|
+
this.getExtension = this.getExtension.bind(this);
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Define mimetype -> extension mappings. Each key is a mime-type that maps
|
|
47
|
+
* to an array of extensions associated with the type. The first extension is
|
|
48
|
+
* used as the default extension for the type.
|
|
49
|
+
*
|
|
50
|
+
* e.g. mime.define({'audio/ogg', ['oga', 'ogg', 'spx']});
|
|
51
|
+
*
|
|
52
|
+
* If a type declares an extension that has already been defined, an error will
|
|
53
|
+
* be thrown. To suppress this error and force the extension to be associated
|
|
54
|
+
* with the new type, pass `force`=true. Alternatively, you may prefix the
|
|
55
|
+
* extension with "*" to map the type to extension, without mapping the
|
|
56
|
+
* extension to the type.
|
|
57
|
+
*
|
|
58
|
+
* e.g. mime.define({'audio/wav', ['wav']}, {'audio/x-wav', ['*wav']});
|
|
59
|
+
*
|
|
60
|
+
*
|
|
61
|
+
* @param map (Object) type definitions
|
|
62
|
+
* @param force (Boolean) if true, force overriding of existing definitions
|
|
63
|
+
*/
|
|
64
|
+
Mime$1.prototype.define = function(typeMap, force) {
|
|
65
|
+
for (let type in typeMap) {
|
|
66
|
+
let extensions = typeMap[type].map(function(t) {
|
|
67
|
+
return t.toLowerCase();
|
|
68
|
+
});
|
|
69
|
+
type = type.toLowerCase();
|
|
70
|
+
for (let i = 0; i < extensions.length; i++) {
|
|
71
|
+
const ext = extensions[i];
|
|
72
|
+
if (ext[0] === "*") continue;
|
|
73
|
+
if (!force && ext in this._types) throw new Error("Attempt to change mapping for \"" + ext + "\" extension from \"" + this._types[ext] + "\" to \"" + type + "\". Pass `force=true` to allow this, otherwise remove \"" + ext + "\" from the list of extensions for \"" + type + "\".");
|
|
74
|
+
this._types[ext] = type;
|
|
75
|
+
}
|
|
76
|
+
if (force || !this._extensions[type]) {
|
|
77
|
+
const ext = extensions[0];
|
|
78
|
+
this._extensions[type] = ext[0] !== "*" ? ext : ext.substr(1);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* Lookup a mime type based on extension
|
|
84
|
+
*/
|
|
85
|
+
Mime$1.prototype.getType = function(path$1) {
|
|
86
|
+
path$1 = String(path$1);
|
|
87
|
+
let last = path$1.replace(/^.*[/\\]/, "").toLowerCase();
|
|
88
|
+
let ext = last.replace(/^.*\./, "").toLowerCase();
|
|
89
|
+
let hasPath = last.length < path$1.length;
|
|
90
|
+
let hasDot = ext.length < last.length - 1;
|
|
91
|
+
return (hasDot || !hasPath) && this._types[ext] || null;
|
|
92
|
+
};
|
|
93
|
+
/**
|
|
94
|
+
* Return file extension associated with a mime type
|
|
95
|
+
*/
|
|
96
|
+
Mime$1.prototype.getExtension = function(type) {
|
|
97
|
+
type = /^\s*([^;\s]*)/.test(type) && RegExp.$1;
|
|
98
|
+
return type && this._extensions[type.toLowerCase()] || null;
|
|
99
|
+
};
|
|
100
|
+
module.exports = Mime$1;
|
|
101
|
+
} });
|
|
102
|
+
|
|
103
|
+
//#endregion
|
|
104
|
+
//#region ../../node_modules/.pnpm/mime@2.6.0/node_modules/mime/types/standard.js
|
|
105
|
+
var require_standard = __commonJS({ "../../node_modules/.pnpm/mime@2.6.0/node_modules/mime/types/standard.js"(exports, module) {
|
|
106
|
+
module.exports = {
|
|
107
|
+
"application/andrew-inset": ["ez"],
|
|
108
|
+
"application/applixware": ["aw"],
|
|
109
|
+
"application/atom+xml": ["atom"],
|
|
110
|
+
"application/atomcat+xml": ["atomcat"],
|
|
111
|
+
"application/atomdeleted+xml": ["atomdeleted"],
|
|
112
|
+
"application/atomsvc+xml": ["atomsvc"],
|
|
113
|
+
"application/atsc-dwd+xml": ["dwd"],
|
|
114
|
+
"application/atsc-held+xml": ["held"],
|
|
115
|
+
"application/atsc-rsat+xml": ["rsat"],
|
|
116
|
+
"application/bdoc": ["bdoc"],
|
|
117
|
+
"application/calendar+xml": ["xcs"],
|
|
118
|
+
"application/ccxml+xml": ["ccxml"],
|
|
119
|
+
"application/cdfx+xml": ["cdfx"],
|
|
120
|
+
"application/cdmi-capability": ["cdmia"],
|
|
121
|
+
"application/cdmi-container": ["cdmic"],
|
|
122
|
+
"application/cdmi-domain": ["cdmid"],
|
|
123
|
+
"application/cdmi-object": ["cdmio"],
|
|
124
|
+
"application/cdmi-queue": ["cdmiq"],
|
|
125
|
+
"application/cu-seeme": ["cu"],
|
|
126
|
+
"application/dash+xml": ["mpd"],
|
|
127
|
+
"application/davmount+xml": ["davmount"],
|
|
128
|
+
"application/docbook+xml": ["dbk"],
|
|
129
|
+
"application/dssc+der": ["dssc"],
|
|
130
|
+
"application/dssc+xml": ["xdssc"],
|
|
131
|
+
"application/ecmascript": ["es", "ecma"],
|
|
132
|
+
"application/emma+xml": ["emma"],
|
|
133
|
+
"application/emotionml+xml": ["emotionml"],
|
|
134
|
+
"application/epub+zip": ["epub"],
|
|
135
|
+
"application/exi": ["exi"],
|
|
136
|
+
"application/express": ["exp"],
|
|
137
|
+
"application/fdt+xml": ["fdt"],
|
|
138
|
+
"application/font-tdpfr": ["pfr"],
|
|
139
|
+
"application/geo+json": ["geojson"],
|
|
140
|
+
"application/gml+xml": ["gml"],
|
|
141
|
+
"application/gpx+xml": ["gpx"],
|
|
142
|
+
"application/gxf": ["gxf"],
|
|
143
|
+
"application/gzip": ["gz"],
|
|
144
|
+
"application/hjson": ["hjson"],
|
|
145
|
+
"application/hyperstudio": ["stk"],
|
|
146
|
+
"application/inkml+xml": ["ink", "inkml"],
|
|
147
|
+
"application/ipfix": ["ipfix"],
|
|
148
|
+
"application/its+xml": ["its"],
|
|
149
|
+
"application/java-archive": [
|
|
150
|
+
"jar",
|
|
151
|
+
"war",
|
|
152
|
+
"ear"
|
|
153
|
+
],
|
|
154
|
+
"application/java-serialized-object": ["ser"],
|
|
155
|
+
"application/java-vm": ["class"],
|
|
156
|
+
"application/javascript": ["js", "mjs"],
|
|
157
|
+
"application/json": ["json", "map"],
|
|
158
|
+
"application/json5": ["json5"],
|
|
159
|
+
"application/jsonml+json": ["jsonml"],
|
|
160
|
+
"application/ld+json": ["jsonld"],
|
|
161
|
+
"application/lgr+xml": ["lgr"],
|
|
162
|
+
"application/lost+xml": ["lostxml"],
|
|
163
|
+
"application/mac-binhex40": ["hqx"],
|
|
164
|
+
"application/mac-compactpro": ["cpt"],
|
|
165
|
+
"application/mads+xml": ["mads"],
|
|
166
|
+
"application/manifest+json": ["webmanifest"],
|
|
167
|
+
"application/marc": ["mrc"],
|
|
168
|
+
"application/marcxml+xml": ["mrcx"],
|
|
169
|
+
"application/mathematica": [
|
|
170
|
+
"ma",
|
|
171
|
+
"nb",
|
|
172
|
+
"mb"
|
|
173
|
+
],
|
|
174
|
+
"application/mathml+xml": ["mathml"],
|
|
175
|
+
"application/mbox": ["mbox"],
|
|
176
|
+
"application/mediaservercontrol+xml": ["mscml"],
|
|
177
|
+
"application/metalink+xml": ["metalink"],
|
|
178
|
+
"application/metalink4+xml": ["meta4"],
|
|
179
|
+
"application/mets+xml": ["mets"],
|
|
180
|
+
"application/mmt-aei+xml": ["maei"],
|
|
181
|
+
"application/mmt-usd+xml": ["musd"],
|
|
182
|
+
"application/mods+xml": ["mods"],
|
|
183
|
+
"application/mp21": ["m21", "mp21"],
|
|
184
|
+
"application/mp4": ["mp4s", "m4p"],
|
|
185
|
+
"application/msword": ["doc", "dot"],
|
|
186
|
+
"application/mxf": ["mxf"],
|
|
187
|
+
"application/n-quads": ["nq"],
|
|
188
|
+
"application/n-triples": ["nt"],
|
|
189
|
+
"application/node": ["cjs"],
|
|
190
|
+
"application/octet-stream": [
|
|
191
|
+
"bin",
|
|
192
|
+
"dms",
|
|
193
|
+
"lrf",
|
|
194
|
+
"mar",
|
|
195
|
+
"so",
|
|
196
|
+
"dist",
|
|
197
|
+
"distz",
|
|
198
|
+
"pkg",
|
|
199
|
+
"bpk",
|
|
200
|
+
"dump",
|
|
201
|
+
"elc",
|
|
202
|
+
"deploy",
|
|
203
|
+
"exe",
|
|
204
|
+
"dll",
|
|
205
|
+
"deb",
|
|
206
|
+
"dmg",
|
|
207
|
+
"iso",
|
|
208
|
+
"img",
|
|
209
|
+
"msi",
|
|
210
|
+
"msp",
|
|
211
|
+
"msm",
|
|
212
|
+
"buffer"
|
|
213
|
+
],
|
|
214
|
+
"application/oda": ["oda"],
|
|
215
|
+
"application/oebps-package+xml": ["opf"],
|
|
216
|
+
"application/ogg": ["ogx"],
|
|
217
|
+
"application/omdoc+xml": ["omdoc"],
|
|
218
|
+
"application/onenote": [
|
|
219
|
+
"onetoc",
|
|
220
|
+
"onetoc2",
|
|
221
|
+
"onetmp",
|
|
222
|
+
"onepkg"
|
|
223
|
+
],
|
|
224
|
+
"application/oxps": ["oxps"],
|
|
225
|
+
"application/p2p-overlay+xml": ["relo"],
|
|
226
|
+
"application/patch-ops-error+xml": ["xer"],
|
|
227
|
+
"application/pdf": ["pdf"],
|
|
228
|
+
"application/pgp-encrypted": ["pgp"],
|
|
229
|
+
"application/pgp-signature": ["asc", "sig"],
|
|
230
|
+
"application/pics-rules": ["prf"],
|
|
231
|
+
"application/pkcs10": ["p10"],
|
|
232
|
+
"application/pkcs7-mime": ["p7m", "p7c"],
|
|
233
|
+
"application/pkcs7-signature": ["p7s"],
|
|
234
|
+
"application/pkcs8": ["p8"],
|
|
235
|
+
"application/pkix-attr-cert": ["ac"],
|
|
236
|
+
"application/pkix-cert": ["cer"],
|
|
237
|
+
"application/pkix-crl": ["crl"],
|
|
238
|
+
"application/pkix-pkipath": ["pkipath"],
|
|
239
|
+
"application/pkixcmp": ["pki"],
|
|
240
|
+
"application/pls+xml": ["pls"],
|
|
241
|
+
"application/postscript": [
|
|
242
|
+
"ai",
|
|
243
|
+
"eps",
|
|
244
|
+
"ps"
|
|
245
|
+
],
|
|
246
|
+
"application/provenance+xml": ["provx"],
|
|
247
|
+
"application/pskc+xml": ["pskcxml"],
|
|
248
|
+
"application/raml+yaml": ["raml"],
|
|
249
|
+
"application/rdf+xml": ["rdf", "owl"],
|
|
250
|
+
"application/reginfo+xml": ["rif"],
|
|
251
|
+
"application/relax-ng-compact-syntax": ["rnc"],
|
|
252
|
+
"application/resource-lists+xml": ["rl"],
|
|
253
|
+
"application/resource-lists-diff+xml": ["rld"],
|
|
254
|
+
"application/rls-services+xml": ["rs"],
|
|
255
|
+
"application/route-apd+xml": ["rapd"],
|
|
256
|
+
"application/route-s-tsid+xml": ["sls"],
|
|
257
|
+
"application/route-usd+xml": ["rusd"],
|
|
258
|
+
"application/rpki-ghostbusters": ["gbr"],
|
|
259
|
+
"application/rpki-manifest": ["mft"],
|
|
260
|
+
"application/rpki-roa": ["roa"],
|
|
261
|
+
"application/rsd+xml": ["rsd"],
|
|
262
|
+
"application/rss+xml": ["rss"],
|
|
263
|
+
"application/rtf": ["rtf"],
|
|
264
|
+
"application/sbml+xml": ["sbml"],
|
|
265
|
+
"application/scvp-cv-request": ["scq"],
|
|
266
|
+
"application/scvp-cv-response": ["scs"],
|
|
267
|
+
"application/scvp-vp-request": ["spq"],
|
|
268
|
+
"application/scvp-vp-response": ["spp"],
|
|
269
|
+
"application/sdp": ["sdp"],
|
|
270
|
+
"application/senml+xml": ["senmlx"],
|
|
271
|
+
"application/sensml+xml": ["sensmlx"],
|
|
272
|
+
"application/set-payment-initiation": ["setpay"],
|
|
273
|
+
"application/set-registration-initiation": ["setreg"],
|
|
274
|
+
"application/shf+xml": ["shf"],
|
|
275
|
+
"application/sieve": ["siv", "sieve"],
|
|
276
|
+
"application/smil+xml": ["smi", "smil"],
|
|
277
|
+
"application/sparql-query": ["rq"],
|
|
278
|
+
"application/sparql-results+xml": ["srx"],
|
|
279
|
+
"application/srgs": ["gram"],
|
|
280
|
+
"application/srgs+xml": ["grxml"],
|
|
281
|
+
"application/sru+xml": ["sru"],
|
|
282
|
+
"application/ssdl+xml": ["ssdl"],
|
|
283
|
+
"application/ssml+xml": ["ssml"],
|
|
284
|
+
"application/swid+xml": ["swidtag"],
|
|
285
|
+
"application/tei+xml": ["tei", "teicorpus"],
|
|
286
|
+
"application/thraud+xml": ["tfi"],
|
|
287
|
+
"application/timestamped-data": ["tsd"],
|
|
288
|
+
"application/toml": ["toml"],
|
|
289
|
+
"application/trig": ["trig"],
|
|
290
|
+
"application/ttml+xml": ["ttml"],
|
|
291
|
+
"application/ubjson": ["ubj"],
|
|
292
|
+
"application/urc-ressheet+xml": ["rsheet"],
|
|
293
|
+
"application/urc-targetdesc+xml": ["td"],
|
|
294
|
+
"application/voicexml+xml": ["vxml"],
|
|
295
|
+
"application/wasm": ["wasm"],
|
|
296
|
+
"application/widget": ["wgt"],
|
|
297
|
+
"application/winhlp": ["hlp"],
|
|
298
|
+
"application/wsdl+xml": ["wsdl"],
|
|
299
|
+
"application/wspolicy+xml": ["wspolicy"],
|
|
300
|
+
"application/xaml+xml": ["xaml"],
|
|
301
|
+
"application/xcap-att+xml": ["xav"],
|
|
302
|
+
"application/xcap-caps+xml": ["xca"],
|
|
303
|
+
"application/xcap-diff+xml": ["xdf"],
|
|
304
|
+
"application/xcap-el+xml": ["xel"],
|
|
305
|
+
"application/xcap-ns+xml": ["xns"],
|
|
306
|
+
"application/xenc+xml": ["xenc"],
|
|
307
|
+
"application/xhtml+xml": ["xhtml", "xht"],
|
|
308
|
+
"application/xliff+xml": ["xlf"],
|
|
309
|
+
"application/xml": [
|
|
310
|
+
"xml",
|
|
311
|
+
"xsl",
|
|
312
|
+
"xsd",
|
|
313
|
+
"rng"
|
|
314
|
+
],
|
|
315
|
+
"application/xml-dtd": ["dtd"],
|
|
316
|
+
"application/xop+xml": ["xop"],
|
|
317
|
+
"application/xproc+xml": ["xpl"],
|
|
318
|
+
"application/xslt+xml": ["*xsl", "xslt"],
|
|
319
|
+
"application/xspf+xml": ["xspf"],
|
|
320
|
+
"application/xv+xml": [
|
|
321
|
+
"mxml",
|
|
322
|
+
"xhvml",
|
|
323
|
+
"xvml",
|
|
324
|
+
"xvm"
|
|
325
|
+
],
|
|
326
|
+
"application/yang": ["yang"],
|
|
327
|
+
"application/yin+xml": ["yin"],
|
|
328
|
+
"application/zip": ["zip"],
|
|
329
|
+
"audio/3gpp": ["*3gpp"],
|
|
330
|
+
"audio/adpcm": ["adp"],
|
|
331
|
+
"audio/amr": ["amr"],
|
|
332
|
+
"audio/basic": ["au", "snd"],
|
|
333
|
+
"audio/midi": [
|
|
334
|
+
"mid",
|
|
335
|
+
"midi",
|
|
336
|
+
"kar",
|
|
337
|
+
"rmi"
|
|
338
|
+
],
|
|
339
|
+
"audio/mobile-xmf": ["mxmf"],
|
|
340
|
+
"audio/mp3": ["*mp3"],
|
|
341
|
+
"audio/mp4": ["m4a", "mp4a"],
|
|
342
|
+
"audio/mpeg": [
|
|
343
|
+
"mpga",
|
|
344
|
+
"mp2",
|
|
345
|
+
"mp2a",
|
|
346
|
+
"mp3",
|
|
347
|
+
"m2a",
|
|
348
|
+
"m3a"
|
|
349
|
+
],
|
|
350
|
+
"audio/ogg": [
|
|
351
|
+
"oga",
|
|
352
|
+
"ogg",
|
|
353
|
+
"spx",
|
|
354
|
+
"opus"
|
|
355
|
+
],
|
|
356
|
+
"audio/s3m": ["s3m"],
|
|
357
|
+
"audio/silk": ["sil"],
|
|
358
|
+
"audio/wav": ["wav"],
|
|
359
|
+
"audio/wave": ["*wav"],
|
|
360
|
+
"audio/webm": ["weba"],
|
|
361
|
+
"audio/xm": ["xm"],
|
|
362
|
+
"font/collection": ["ttc"],
|
|
363
|
+
"font/otf": ["otf"],
|
|
364
|
+
"font/ttf": ["ttf"],
|
|
365
|
+
"font/woff": ["woff"],
|
|
366
|
+
"font/woff2": ["woff2"],
|
|
367
|
+
"image/aces": ["exr"],
|
|
368
|
+
"image/apng": ["apng"],
|
|
369
|
+
"image/avif": ["avif"],
|
|
370
|
+
"image/bmp": ["bmp"],
|
|
371
|
+
"image/cgm": ["cgm"],
|
|
372
|
+
"image/dicom-rle": ["drle"],
|
|
373
|
+
"image/emf": ["emf"],
|
|
374
|
+
"image/fits": ["fits"],
|
|
375
|
+
"image/g3fax": ["g3"],
|
|
376
|
+
"image/gif": ["gif"],
|
|
377
|
+
"image/heic": ["heic"],
|
|
378
|
+
"image/heic-sequence": ["heics"],
|
|
379
|
+
"image/heif": ["heif"],
|
|
380
|
+
"image/heif-sequence": ["heifs"],
|
|
381
|
+
"image/hej2k": ["hej2"],
|
|
382
|
+
"image/hsj2": ["hsj2"],
|
|
383
|
+
"image/ief": ["ief"],
|
|
384
|
+
"image/jls": ["jls"],
|
|
385
|
+
"image/jp2": ["jp2", "jpg2"],
|
|
386
|
+
"image/jpeg": [
|
|
387
|
+
"jpeg",
|
|
388
|
+
"jpg",
|
|
389
|
+
"jpe"
|
|
390
|
+
],
|
|
391
|
+
"image/jph": ["jph"],
|
|
392
|
+
"image/jphc": ["jhc"],
|
|
393
|
+
"image/jpm": ["jpm"],
|
|
394
|
+
"image/jpx": ["jpx", "jpf"],
|
|
395
|
+
"image/jxr": ["jxr"],
|
|
396
|
+
"image/jxra": ["jxra"],
|
|
397
|
+
"image/jxrs": ["jxrs"],
|
|
398
|
+
"image/jxs": ["jxs"],
|
|
399
|
+
"image/jxsc": ["jxsc"],
|
|
400
|
+
"image/jxsi": ["jxsi"],
|
|
401
|
+
"image/jxss": ["jxss"],
|
|
402
|
+
"image/ktx": ["ktx"],
|
|
403
|
+
"image/ktx2": ["ktx2"],
|
|
404
|
+
"image/png": ["png"],
|
|
405
|
+
"image/sgi": ["sgi"],
|
|
406
|
+
"image/svg+xml": ["svg", "svgz"],
|
|
407
|
+
"image/t38": ["t38"],
|
|
408
|
+
"image/tiff": ["tif", "tiff"],
|
|
409
|
+
"image/tiff-fx": ["tfx"],
|
|
410
|
+
"image/webp": ["webp"],
|
|
411
|
+
"image/wmf": ["wmf"],
|
|
412
|
+
"message/disposition-notification": ["disposition-notification"],
|
|
413
|
+
"message/global": ["u8msg"],
|
|
414
|
+
"message/global-delivery-status": ["u8dsn"],
|
|
415
|
+
"message/global-disposition-notification": ["u8mdn"],
|
|
416
|
+
"message/global-headers": ["u8hdr"],
|
|
417
|
+
"message/rfc822": ["eml", "mime"],
|
|
418
|
+
"model/3mf": ["3mf"],
|
|
419
|
+
"model/gltf+json": ["gltf"],
|
|
420
|
+
"model/gltf-binary": ["glb"],
|
|
421
|
+
"model/iges": ["igs", "iges"],
|
|
422
|
+
"model/mesh": [
|
|
423
|
+
"msh",
|
|
424
|
+
"mesh",
|
|
425
|
+
"silo"
|
|
426
|
+
],
|
|
427
|
+
"model/mtl": ["mtl"],
|
|
428
|
+
"model/obj": ["obj"],
|
|
429
|
+
"model/step+xml": ["stpx"],
|
|
430
|
+
"model/step+zip": ["stpz"],
|
|
431
|
+
"model/step-xml+zip": ["stpxz"],
|
|
432
|
+
"model/stl": ["stl"],
|
|
433
|
+
"model/vrml": ["wrl", "vrml"],
|
|
434
|
+
"model/x3d+binary": ["*x3db", "x3dbz"],
|
|
435
|
+
"model/x3d+fastinfoset": ["x3db"],
|
|
436
|
+
"model/x3d+vrml": ["*x3dv", "x3dvz"],
|
|
437
|
+
"model/x3d+xml": ["x3d", "x3dz"],
|
|
438
|
+
"model/x3d-vrml": ["x3dv"],
|
|
439
|
+
"text/cache-manifest": ["appcache", "manifest"],
|
|
440
|
+
"text/calendar": ["ics", "ifb"],
|
|
441
|
+
"text/coffeescript": ["coffee", "litcoffee"],
|
|
442
|
+
"text/css": ["css"],
|
|
443
|
+
"text/csv": ["csv"],
|
|
444
|
+
"text/html": [
|
|
445
|
+
"html",
|
|
446
|
+
"htm",
|
|
447
|
+
"shtml"
|
|
448
|
+
],
|
|
449
|
+
"text/jade": ["jade"],
|
|
450
|
+
"text/jsx": ["jsx"],
|
|
451
|
+
"text/less": ["less"],
|
|
452
|
+
"text/markdown": ["markdown", "md"],
|
|
453
|
+
"text/mathml": ["mml"],
|
|
454
|
+
"text/mdx": ["mdx"],
|
|
455
|
+
"text/n3": ["n3"],
|
|
456
|
+
"text/plain": [
|
|
457
|
+
"txt",
|
|
458
|
+
"text",
|
|
459
|
+
"conf",
|
|
460
|
+
"def",
|
|
461
|
+
"list",
|
|
462
|
+
"log",
|
|
463
|
+
"in",
|
|
464
|
+
"ini"
|
|
465
|
+
],
|
|
466
|
+
"text/richtext": ["rtx"],
|
|
467
|
+
"text/rtf": ["*rtf"],
|
|
468
|
+
"text/sgml": ["sgml", "sgm"],
|
|
469
|
+
"text/shex": ["shex"],
|
|
470
|
+
"text/slim": ["slim", "slm"],
|
|
471
|
+
"text/spdx": ["spdx"],
|
|
472
|
+
"text/stylus": ["stylus", "styl"],
|
|
473
|
+
"text/tab-separated-values": ["tsv"],
|
|
474
|
+
"text/troff": [
|
|
475
|
+
"t",
|
|
476
|
+
"tr",
|
|
477
|
+
"roff",
|
|
478
|
+
"man",
|
|
479
|
+
"me",
|
|
480
|
+
"ms"
|
|
481
|
+
],
|
|
482
|
+
"text/turtle": ["ttl"],
|
|
483
|
+
"text/uri-list": [
|
|
484
|
+
"uri",
|
|
485
|
+
"uris",
|
|
486
|
+
"urls"
|
|
487
|
+
],
|
|
488
|
+
"text/vcard": ["vcard"],
|
|
489
|
+
"text/vtt": ["vtt"],
|
|
490
|
+
"text/xml": ["*xml"],
|
|
491
|
+
"text/yaml": ["yaml", "yml"],
|
|
492
|
+
"video/3gpp": ["3gp", "3gpp"],
|
|
493
|
+
"video/3gpp2": ["3g2"],
|
|
494
|
+
"video/h261": ["h261"],
|
|
495
|
+
"video/h263": ["h263"],
|
|
496
|
+
"video/h264": ["h264"],
|
|
497
|
+
"video/iso.segment": ["m4s"],
|
|
498
|
+
"video/jpeg": ["jpgv"],
|
|
499
|
+
"video/jpm": ["*jpm", "jpgm"],
|
|
500
|
+
"video/mj2": ["mj2", "mjp2"],
|
|
501
|
+
"video/mp2t": ["ts"],
|
|
502
|
+
"video/mp4": [
|
|
503
|
+
"mp4",
|
|
504
|
+
"mp4v",
|
|
505
|
+
"mpg4"
|
|
506
|
+
],
|
|
507
|
+
"video/mpeg": [
|
|
508
|
+
"mpeg",
|
|
509
|
+
"mpg",
|
|
510
|
+
"mpe",
|
|
511
|
+
"m1v",
|
|
512
|
+
"m2v"
|
|
513
|
+
],
|
|
514
|
+
"video/ogg": ["ogv"],
|
|
515
|
+
"video/quicktime": ["qt", "mov"],
|
|
516
|
+
"video/webm": ["webm"]
|
|
517
|
+
};
|
|
518
|
+
} });
|
|
519
|
+
|
|
520
|
+
//#endregion
|
|
521
|
+
//#region ../../node_modules/.pnpm/mime@2.6.0/node_modules/mime/types/other.js
|
|
522
|
+
var require_other = __commonJS({ "../../node_modules/.pnpm/mime@2.6.0/node_modules/mime/types/other.js"(exports, module) {
|
|
523
|
+
module.exports = {
|
|
524
|
+
"application/prs.cww": ["cww"],
|
|
525
|
+
"application/vnd.1000minds.decision-model+xml": ["1km"],
|
|
526
|
+
"application/vnd.3gpp.pic-bw-large": ["plb"],
|
|
527
|
+
"application/vnd.3gpp.pic-bw-small": ["psb"],
|
|
528
|
+
"application/vnd.3gpp.pic-bw-var": ["pvb"],
|
|
529
|
+
"application/vnd.3gpp2.tcap": ["tcap"],
|
|
530
|
+
"application/vnd.3m.post-it-notes": ["pwn"],
|
|
531
|
+
"application/vnd.accpac.simply.aso": ["aso"],
|
|
532
|
+
"application/vnd.accpac.simply.imp": ["imp"],
|
|
533
|
+
"application/vnd.acucobol": ["acu"],
|
|
534
|
+
"application/vnd.acucorp": ["atc", "acutc"],
|
|
535
|
+
"application/vnd.adobe.air-application-installer-package+zip": ["air"],
|
|
536
|
+
"application/vnd.adobe.formscentral.fcdt": ["fcdt"],
|
|
537
|
+
"application/vnd.adobe.fxp": ["fxp", "fxpl"],
|
|
538
|
+
"application/vnd.adobe.xdp+xml": ["xdp"],
|
|
539
|
+
"application/vnd.adobe.xfdf": ["xfdf"],
|
|
540
|
+
"application/vnd.ahead.space": ["ahead"],
|
|
541
|
+
"application/vnd.airzip.filesecure.azf": ["azf"],
|
|
542
|
+
"application/vnd.airzip.filesecure.azs": ["azs"],
|
|
543
|
+
"application/vnd.amazon.ebook": ["azw"],
|
|
544
|
+
"application/vnd.americandynamics.acc": ["acc"],
|
|
545
|
+
"application/vnd.amiga.ami": ["ami"],
|
|
546
|
+
"application/vnd.android.package-archive": ["apk"],
|
|
547
|
+
"application/vnd.anser-web-certificate-issue-initiation": ["cii"],
|
|
548
|
+
"application/vnd.anser-web-funds-transfer-initiation": ["fti"],
|
|
549
|
+
"application/vnd.antix.game-component": ["atx"],
|
|
550
|
+
"application/vnd.apple.installer+xml": ["mpkg"],
|
|
551
|
+
"application/vnd.apple.keynote": ["key"],
|
|
552
|
+
"application/vnd.apple.mpegurl": ["m3u8"],
|
|
553
|
+
"application/vnd.apple.numbers": ["numbers"],
|
|
554
|
+
"application/vnd.apple.pages": ["pages"],
|
|
555
|
+
"application/vnd.apple.pkpass": ["pkpass"],
|
|
556
|
+
"application/vnd.aristanetworks.swi": ["swi"],
|
|
557
|
+
"application/vnd.astraea-software.iota": ["iota"],
|
|
558
|
+
"application/vnd.audiograph": ["aep"],
|
|
559
|
+
"application/vnd.balsamiq.bmml+xml": ["bmml"],
|
|
560
|
+
"application/vnd.blueice.multipass": ["mpm"],
|
|
561
|
+
"application/vnd.bmi": ["bmi"],
|
|
562
|
+
"application/vnd.businessobjects": ["rep"],
|
|
563
|
+
"application/vnd.chemdraw+xml": ["cdxml"],
|
|
564
|
+
"application/vnd.chipnuts.karaoke-mmd": ["mmd"],
|
|
565
|
+
"application/vnd.cinderella": ["cdy"],
|
|
566
|
+
"application/vnd.citationstyles.style+xml": ["csl"],
|
|
567
|
+
"application/vnd.claymore": ["cla"],
|
|
568
|
+
"application/vnd.cloanto.rp9": ["rp9"],
|
|
569
|
+
"application/vnd.clonk.c4group": [
|
|
570
|
+
"c4g",
|
|
571
|
+
"c4d",
|
|
572
|
+
"c4f",
|
|
573
|
+
"c4p",
|
|
574
|
+
"c4u"
|
|
575
|
+
],
|
|
576
|
+
"application/vnd.cluetrust.cartomobile-config": ["c11amc"],
|
|
577
|
+
"application/vnd.cluetrust.cartomobile-config-pkg": ["c11amz"],
|
|
578
|
+
"application/vnd.commonspace": ["csp"],
|
|
579
|
+
"application/vnd.contact.cmsg": ["cdbcmsg"],
|
|
580
|
+
"application/vnd.cosmocaller": ["cmc"],
|
|
581
|
+
"application/vnd.crick.clicker": ["clkx"],
|
|
582
|
+
"application/vnd.crick.clicker.keyboard": ["clkk"],
|
|
583
|
+
"application/vnd.crick.clicker.palette": ["clkp"],
|
|
584
|
+
"application/vnd.crick.clicker.template": ["clkt"],
|
|
585
|
+
"application/vnd.crick.clicker.wordbank": ["clkw"],
|
|
586
|
+
"application/vnd.criticaltools.wbs+xml": ["wbs"],
|
|
587
|
+
"application/vnd.ctc-posml": ["pml"],
|
|
588
|
+
"application/vnd.cups-ppd": ["ppd"],
|
|
589
|
+
"application/vnd.curl.car": ["car"],
|
|
590
|
+
"application/vnd.curl.pcurl": ["pcurl"],
|
|
591
|
+
"application/vnd.dart": ["dart"],
|
|
592
|
+
"application/vnd.data-vision.rdz": ["rdz"],
|
|
593
|
+
"application/vnd.dbf": ["dbf"],
|
|
594
|
+
"application/vnd.dece.data": [
|
|
595
|
+
"uvf",
|
|
596
|
+
"uvvf",
|
|
597
|
+
"uvd",
|
|
598
|
+
"uvvd"
|
|
599
|
+
],
|
|
600
|
+
"application/vnd.dece.ttml+xml": ["uvt", "uvvt"],
|
|
601
|
+
"application/vnd.dece.unspecified": ["uvx", "uvvx"],
|
|
602
|
+
"application/vnd.dece.zip": ["uvz", "uvvz"],
|
|
603
|
+
"application/vnd.denovo.fcselayout-link": ["fe_launch"],
|
|
604
|
+
"application/vnd.dna": ["dna"],
|
|
605
|
+
"application/vnd.dolby.mlp": ["mlp"],
|
|
606
|
+
"application/vnd.dpgraph": ["dpg"],
|
|
607
|
+
"application/vnd.dreamfactory": ["dfac"],
|
|
608
|
+
"application/vnd.ds-keypoint": ["kpxx"],
|
|
609
|
+
"application/vnd.dvb.ait": ["ait"],
|
|
610
|
+
"application/vnd.dvb.service": ["svc"],
|
|
611
|
+
"application/vnd.dynageo": ["geo"],
|
|
612
|
+
"application/vnd.ecowin.chart": ["mag"],
|
|
613
|
+
"application/vnd.enliven": ["nml"],
|
|
614
|
+
"application/vnd.epson.esf": ["esf"],
|
|
615
|
+
"application/vnd.epson.msf": ["msf"],
|
|
616
|
+
"application/vnd.epson.quickanime": ["qam"],
|
|
617
|
+
"application/vnd.epson.salt": ["slt"],
|
|
618
|
+
"application/vnd.epson.ssf": ["ssf"],
|
|
619
|
+
"application/vnd.eszigno3+xml": ["es3", "et3"],
|
|
620
|
+
"application/vnd.ezpix-album": ["ez2"],
|
|
621
|
+
"application/vnd.ezpix-package": ["ez3"],
|
|
622
|
+
"application/vnd.fdf": ["fdf"],
|
|
623
|
+
"application/vnd.fdsn.mseed": ["mseed"],
|
|
624
|
+
"application/vnd.fdsn.seed": ["seed", "dataless"],
|
|
625
|
+
"application/vnd.flographit": ["gph"],
|
|
626
|
+
"application/vnd.fluxtime.clip": ["ftc"],
|
|
627
|
+
"application/vnd.framemaker": [
|
|
628
|
+
"fm",
|
|
629
|
+
"frame",
|
|
630
|
+
"maker",
|
|
631
|
+
"book"
|
|
632
|
+
],
|
|
633
|
+
"application/vnd.frogans.fnc": ["fnc"],
|
|
634
|
+
"application/vnd.frogans.ltf": ["ltf"],
|
|
635
|
+
"application/vnd.fsc.weblaunch": ["fsc"],
|
|
636
|
+
"application/vnd.fujitsu.oasys": ["oas"],
|
|
637
|
+
"application/vnd.fujitsu.oasys2": ["oa2"],
|
|
638
|
+
"application/vnd.fujitsu.oasys3": ["oa3"],
|
|
639
|
+
"application/vnd.fujitsu.oasysgp": ["fg5"],
|
|
640
|
+
"application/vnd.fujitsu.oasysprs": ["bh2"],
|
|
641
|
+
"application/vnd.fujixerox.ddd": ["ddd"],
|
|
642
|
+
"application/vnd.fujixerox.docuworks": ["xdw"],
|
|
643
|
+
"application/vnd.fujixerox.docuworks.binder": ["xbd"],
|
|
644
|
+
"application/vnd.fuzzysheet": ["fzs"],
|
|
645
|
+
"application/vnd.genomatix.tuxedo": ["txd"],
|
|
646
|
+
"application/vnd.geogebra.file": ["ggb"],
|
|
647
|
+
"application/vnd.geogebra.tool": ["ggt"],
|
|
648
|
+
"application/vnd.geometry-explorer": ["gex", "gre"],
|
|
649
|
+
"application/vnd.geonext": ["gxt"],
|
|
650
|
+
"application/vnd.geoplan": ["g2w"],
|
|
651
|
+
"application/vnd.geospace": ["g3w"],
|
|
652
|
+
"application/vnd.gmx": ["gmx"],
|
|
653
|
+
"application/vnd.google-apps.document": ["gdoc"],
|
|
654
|
+
"application/vnd.google-apps.presentation": ["gslides"],
|
|
655
|
+
"application/vnd.google-apps.spreadsheet": ["gsheet"],
|
|
656
|
+
"application/vnd.google-earth.kml+xml": ["kml"],
|
|
657
|
+
"application/vnd.google-earth.kmz": ["kmz"],
|
|
658
|
+
"application/vnd.grafeq": ["gqf", "gqs"],
|
|
659
|
+
"application/vnd.groove-account": ["gac"],
|
|
660
|
+
"application/vnd.groove-help": ["ghf"],
|
|
661
|
+
"application/vnd.groove-identity-message": ["gim"],
|
|
662
|
+
"application/vnd.groove-injector": ["grv"],
|
|
663
|
+
"application/vnd.groove-tool-message": ["gtm"],
|
|
664
|
+
"application/vnd.groove-tool-template": ["tpl"],
|
|
665
|
+
"application/vnd.groove-vcard": ["vcg"],
|
|
666
|
+
"application/vnd.hal+xml": ["hal"],
|
|
667
|
+
"application/vnd.handheld-entertainment+xml": ["zmm"],
|
|
668
|
+
"application/vnd.hbci": ["hbci"],
|
|
669
|
+
"application/vnd.hhe.lesson-player": ["les"],
|
|
670
|
+
"application/vnd.hp-hpgl": ["hpgl"],
|
|
671
|
+
"application/vnd.hp-hpid": ["hpid"],
|
|
672
|
+
"application/vnd.hp-hps": ["hps"],
|
|
673
|
+
"application/vnd.hp-jlyt": ["jlt"],
|
|
674
|
+
"application/vnd.hp-pcl": ["pcl"],
|
|
675
|
+
"application/vnd.hp-pclxl": ["pclxl"],
|
|
676
|
+
"application/vnd.hydrostatix.sof-data": ["sfd-hdstx"],
|
|
677
|
+
"application/vnd.ibm.minipay": ["mpy"],
|
|
678
|
+
"application/vnd.ibm.modcap": [
|
|
679
|
+
"afp",
|
|
680
|
+
"listafp",
|
|
681
|
+
"list3820"
|
|
682
|
+
],
|
|
683
|
+
"application/vnd.ibm.rights-management": ["irm"],
|
|
684
|
+
"application/vnd.ibm.secure-container": ["sc"],
|
|
685
|
+
"application/vnd.iccprofile": ["icc", "icm"],
|
|
686
|
+
"application/vnd.igloader": ["igl"],
|
|
687
|
+
"application/vnd.immervision-ivp": ["ivp"],
|
|
688
|
+
"application/vnd.immervision-ivu": ["ivu"],
|
|
689
|
+
"application/vnd.insors.igm": ["igm"],
|
|
690
|
+
"application/vnd.intercon.formnet": ["xpw", "xpx"],
|
|
691
|
+
"application/vnd.intergeo": ["i2g"],
|
|
692
|
+
"application/vnd.intu.qbo": ["qbo"],
|
|
693
|
+
"application/vnd.intu.qfx": ["qfx"],
|
|
694
|
+
"application/vnd.ipunplugged.rcprofile": ["rcprofile"],
|
|
695
|
+
"application/vnd.irepository.package+xml": ["irp"],
|
|
696
|
+
"application/vnd.is-xpr": ["xpr"],
|
|
697
|
+
"application/vnd.isac.fcs": ["fcs"],
|
|
698
|
+
"application/vnd.jam": ["jam"],
|
|
699
|
+
"application/vnd.jcp.javame.midlet-rms": ["rms"],
|
|
700
|
+
"application/vnd.jisp": ["jisp"],
|
|
701
|
+
"application/vnd.joost.joda-archive": ["joda"],
|
|
702
|
+
"application/vnd.kahootz": ["ktz", "ktr"],
|
|
703
|
+
"application/vnd.kde.karbon": ["karbon"],
|
|
704
|
+
"application/vnd.kde.kchart": ["chrt"],
|
|
705
|
+
"application/vnd.kde.kformula": ["kfo"],
|
|
706
|
+
"application/vnd.kde.kivio": ["flw"],
|
|
707
|
+
"application/vnd.kde.kontour": ["kon"],
|
|
708
|
+
"application/vnd.kde.kpresenter": ["kpr", "kpt"],
|
|
709
|
+
"application/vnd.kde.kspread": ["ksp"],
|
|
710
|
+
"application/vnd.kde.kword": ["kwd", "kwt"],
|
|
711
|
+
"application/vnd.kenameaapp": ["htke"],
|
|
712
|
+
"application/vnd.kidspiration": ["kia"],
|
|
713
|
+
"application/vnd.kinar": ["kne", "knp"],
|
|
714
|
+
"application/vnd.koan": [
|
|
715
|
+
"skp",
|
|
716
|
+
"skd",
|
|
717
|
+
"skt",
|
|
718
|
+
"skm"
|
|
719
|
+
],
|
|
720
|
+
"application/vnd.kodak-descriptor": ["sse"],
|
|
721
|
+
"application/vnd.las.las+xml": ["lasxml"],
|
|
722
|
+
"application/vnd.llamagraphics.life-balance.desktop": ["lbd"],
|
|
723
|
+
"application/vnd.llamagraphics.life-balance.exchange+xml": ["lbe"],
|
|
724
|
+
"application/vnd.lotus-1-2-3": ["123"],
|
|
725
|
+
"application/vnd.lotus-approach": ["apr"],
|
|
726
|
+
"application/vnd.lotus-freelance": ["pre"],
|
|
727
|
+
"application/vnd.lotus-notes": ["nsf"],
|
|
728
|
+
"application/vnd.lotus-organizer": ["org"],
|
|
729
|
+
"application/vnd.lotus-screencam": ["scm"],
|
|
730
|
+
"application/vnd.lotus-wordpro": ["lwp"],
|
|
731
|
+
"application/vnd.macports.portpkg": ["portpkg"],
|
|
732
|
+
"application/vnd.mapbox-vector-tile": ["mvt"],
|
|
733
|
+
"application/vnd.mcd": ["mcd"],
|
|
734
|
+
"application/vnd.medcalcdata": ["mc1"],
|
|
735
|
+
"application/vnd.mediastation.cdkey": ["cdkey"],
|
|
736
|
+
"application/vnd.mfer": ["mwf"],
|
|
737
|
+
"application/vnd.mfmp": ["mfm"],
|
|
738
|
+
"application/vnd.micrografx.flo": ["flo"],
|
|
739
|
+
"application/vnd.micrografx.igx": ["igx"],
|
|
740
|
+
"application/vnd.mif": ["mif"],
|
|
741
|
+
"application/vnd.mobius.daf": ["daf"],
|
|
742
|
+
"application/vnd.mobius.dis": ["dis"],
|
|
743
|
+
"application/vnd.mobius.mbk": ["mbk"],
|
|
744
|
+
"application/vnd.mobius.mqy": ["mqy"],
|
|
745
|
+
"application/vnd.mobius.msl": ["msl"],
|
|
746
|
+
"application/vnd.mobius.plc": ["plc"],
|
|
747
|
+
"application/vnd.mobius.txf": ["txf"],
|
|
748
|
+
"application/vnd.mophun.application": ["mpn"],
|
|
749
|
+
"application/vnd.mophun.certificate": ["mpc"],
|
|
750
|
+
"application/vnd.mozilla.xul+xml": ["xul"],
|
|
751
|
+
"application/vnd.ms-artgalry": ["cil"],
|
|
752
|
+
"application/vnd.ms-cab-compressed": ["cab"],
|
|
753
|
+
"application/vnd.ms-excel": [
|
|
754
|
+
"xls",
|
|
755
|
+
"xlm",
|
|
756
|
+
"xla",
|
|
757
|
+
"xlc",
|
|
758
|
+
"xlt",
|
|
759
|
+
"xlw"
|
|
760
|
+
],
|
|
761
|
+
"application/vnd.ms-excel.addin.macroenabled.12": ["xlam"],
|
|
762
|
+
"application/vnd.ms-excel.sheet.binary.macroenabled.12": ["xlsb"],
|
|
763
|
+
"application/vnd.ms-excel.sheet.macroenabled.12": ["xlsm"],
|
|
764
|
+
"application/vnd.ms-excel.template.macroenabled.12": ["xltm"],
|
|
765
|
+
"application/vnd.ms-fontobject": ["eot"],
|
|
766
|
+
"application/vnd.ms-htmlhelp": ["chm"],
|
|
767
|
+
"application/vnd.ms-ims": ["ims"],
|
|
768
|
+
"application/vnd.ms-lrm": ["lrm"],
|
|
769
|
+
"application/vnd.ms-officetheme": ["thmx"],
|
|
770
|
+
"application/vnd.ms-outlook": ["msg"],
|
|
771
|
+
"application/vnd.ms-pki.seccat": ["cat"],
|
|
772
|
+
"application/vnd.ms-pki.stl": ["*stl"],
|
|
773
|
+
"application/vnd.ms-powerpoint": [
|
|
774
|
+
"ppt",
|
|
775
|
+
"pps",
|
|
776
|
+
"pot"
|
|
777
|
+
],
|
|
778
|
+
"application/vnd.ms-powerpoint.addin.macroenabled.12": ["ppam"],
|
|
779
|
+
"application/vnd.ms-powerpoint.presentation.macroenabled.12": ["pptm"],
|
|
780
|
+
"application/vnd.ms-powerpoint.slide.macroenabled.12": ["sldm"],
|
|
781
|
+
"application/vnd.ms-powerpoint.slideshow.macroenabled.12": ["ppsm"],
|
|
782
|
+
"application/vnd.ms-powerpoint.template.macroenabled.12": ["potm"],
|
|
783
|
+
"application/vnd.ms-project": ["mpp", "mpt"],
|
|
784
|
+
"application/vnd.ms-word.document.macroenabled.12": ["docm"],
|
|
785
|
+
"application/vnd.ms-word.template.macroenabled.12": ["dotm"],
|
|
786
|
+
"application/vnd.ms-works": [
|
|
787
|
+
"wps",
|
|
788
|
+
"wks",
|
|
789
|
+
"wcm",
|
|
790
|
+
"wdb"
|
|
791
|
+
],
|
|
792
|
+
"application/vnd.ms-wpl": ["wpl"],
|
|
793
|
+
"application/vnd.ms-xpsdocument": ["xps"],
|
|
794
|
+
"application/vnd.mseq": ["mseq"],
|
|
795
|
+
"application/vnd.musician": ["mus"],
|
|
796
|
+
"application/vnd.muvee.style": ["msty"],
|
|
797
|
+
"application/vnd.mynfc": ["taglet"],
|
|
798
|
+
"application/vnd.neurolanguage.nlu": ["nlu"],
|
|
799
|
+
"application/vnd.nitf": ["ntf", "nitf"],
|
|
800
|
+
"application/vnd.noblenet-directory": ["nnd"],
|
|
801
|
+
"application/vnd.noblenet-sealer": ["nns"],
|
|
802
|
+
"application/vnd.noblenet-web": ["nnw"],
|
|
803
|
+
"application/vnd.nokia.n-gage.ac+xml": ["*ac"],
|
|
804
|
+
"application/vnd.nokia.n-gage.data": ["ngdat"],
|
|
805
|
+
"application/vnd.nokia.n-gage.symbian.install": ["n-gage"],
|
|
806
|
+
"application/vnd.nokia.radio-preset": ["rpst"],
|
|
807
|
+
"application/vnd.nokia.radio-presets": ["rpss"],
|
|
808
|
+
"application/vnd.novadigm.edm": ["edm"],
|
|
809
|
+
"application/vnd.novadigm.edx": ["edx"],
|
|
810
|
+
"application/vnd.novadigm.ext": ["ext"],
|
|
811
|
+
"application/vnd.oasis.opendocument.chart": ["odc"],
|
|
812
|
+
"application/vnd.oasis.opendocument.chart-template": ["otc"],
|
|
813
|
+
"application/vnd.oasis.opendocument.database": ["odb"],
|
|
814
|
+
"application/vnd.oasis.opendocument.formula": ["odf"],
|
|
815
|
+
"application/vnd.oasis.opendocument.formula-template": ["odft"],
|
|
816
|
+
"application/vnd.oasis.opendocument.graphics": ["odg"],
|
|
817
|
+
"application/vnd.oasis.opendocument.graphics-template": ["otg"],
|
|
818
|
+
"application/vnd.oasis.opendocument.image": ["odi"],
|
|
819
|
+
"application/vnd.oasis.opendocument.image-template": ["oti"],
|
|
820
|
+
"application/vnd.oasis.opendocument.presentation": ["odp"],
|
|
821
|
+
"application/vnd.oasis.opendocument.presentation-template": ["otp"],
|
|
822
|
+
"application/vnd.oasis.opendocument.spreadsheet": ["ods"],
|
|
823
|
+
"application/vnd.oasis.opendocument.spreadsheet-template": ["ots"],
|
|
824
|
+
"application/vnd.oasis.opendocument.text": ["odt"],
|
|
825
|
+
"application/vnd.oasis.opendocument.text-master": ["odm"],
|
|
826
|
+
"application/vnd.oasis.opendocument.text-template": ["ott"],
|
|
827
|
+
"application/vnd.oasis.opendocument.text-web": ["oth"],
|
|
828
|
+
"application/vnd.olpc-sugar": ["xo"],
|
|
829
|
+
"application/vnd.oma.dd2+xml": ["dd2"],
|
|
830
|
+
"application/vnd.openblox.game+xml": ["obgx"],
|
|
831
|
+
"application/vnd.openofficeorg.extension": ["oxt"],
|
|
832
|
+
"application/vnd.openstreetmap.data+xml": ["osm"],
|
|
833
|
+
"application/vnd.openxmlformats-officedocument.presentationml.presentation": ["pptx"],
|
|
834
|
+
"application/vnd.openxmlformats-officedocument.presentationml.slide": ["sldx"],
|
|
835
|
+
"application/vnd.openxmlformats-officedocument.presentationml.slideshow": ["ppsx"],
|
|
836
|
+
"application/vnd.openxmlformats-officedocument.presentationml.template": ["potx"],
|
|
837
|
+
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": ["xlsx"],
|
|
838
|
+
"application/vnd.openxmlformats-officedocument.spreadsheetml.template": ["xltx"],
|
|
839
|
+
"application/vnd.openxmlformats-officedocument.wordprocessingml.document": ["docx"],
|
|
840
|
+
"application/vnd.openxmlformats-officedocument.wordprocessingml.template": ["dotx"],
|
|
841
|
+
"application/vnd.osgeo.mapguide.package": ["mgp"],
|
|
842
|
+
"application/vnd.osgi.dp": ["dp"],
|
|
843
|
+
"application/vnd.osgi.subsystem": ["esa"],
|
|
844
|
+
"application/vnd.palm": [
|
|
845
|
+
"pdb",
|
|
846
|
+
"pqa",
|
|
847
|
+
"oprc"
|
|
848
|
+
],
|
|
849
|
+
"application/vnd.pawaafile": ["paw"],
|
|
850
|
+
"application/vnd.pg.format": ["str"],
|
|
851
|
+
"application/vnd.pg.osasli": ["ei6"],
|
|
852
|
+
"application/vnd.picsel": ["efif"],
|
|
853
|
+
"application/vnd.pmi.widget": ["wg"],
|
|
854
|
+
"application/vnd.pocketlearn": ["plf"],
|
|
855
|
+
"application/vnd.powerbuilder6": ["pbd"],
|
|
856
|
+
"application/vnd.previewsystems.box": ["box"],
|
|
857
|
+
"application/vnd.proteus.magazine": ["mgz"],
|
|
858
|
+
"application/vnd.publishare-delta-tree": ["qps"],
|
|
859
|
+
"application/vnd.pvi.ptid1": ["ptid"],
|
|
860
|
+
"application/vnd.quark.quarkxpress": [
|
|
861
|
+
"qxd",
|
|
862
|
+
"qxt",
|
|
863
|
+
"qwd",
|
|
864
|
+
"qwt",
|
|
865
|
+
"qxl",
|
|
866
|
+
"qxb"
|
|
867
|
+
],
|
|
868
|
+
"application/vnd.rar": ["rar"],
|
|
869
|
+
"application/vnd.realvnc.bed": ["bed"],
|
|
870
|
+
"application/vnd.recordare.musicxml": ["mxl"],
|
|
871
|
+
"application/vnd.recordare.musicxml+xml": ["musicxml"],
|
|
872
|
+
"application/vnd.rig.cryptonote": ["cryptonote"],
|
|
873
|
+
"application/vnd.rim.cod": ["cod"],
|
|
874
|
+
"application/vnd.rn-realmedia": ["rm"],
|
|
875
|
+
"application/vnd.rn-realmedia-vbr": ["rmvb"],
|
|
876
|
+
"application/vnd.route66.link66+xml": ["link66"],
|
|
877
|
+
"application/vnd.sailingtracker.track": ["st"],
|
|
878
|
+
"application/vnd.seemail": ["see"],
|
|
879
|
+
"application/vnd.sema": ["sema"],
|
|
880
|
+
"application/vnd.semd": ["semd"],
|
|
881
|
+
"application/vnd.semf": ["semf"],
|
|
882
|
+
"application/vnd.shana.informed.formdata": ["ifm"],
|
|
883
|
+
"application/vnd.shana.informed.formtemplate": ["itp"],
|
|
884
|
+
"application/vnd.shana.informed.interchange": ["iif"],
|
|
885
|
+
"application/vnd.shana.informed.package": ["ipk"],
|
|
886
|
+
"application/vnd.simtech-mindmapper": ["twd", "twds"],
|
|
887
|
+
"application/vnd.smaf": ["mmf"],
|
|
888
|
+
"application/vnd.smart.teacher": ["teacher"],
|
|
889
|
+
"application/vnd.software602.filler.form+xml": ["fo"],
|
|
890
|
+
"application/vnd.solent.sdkm+xml": ["sdkm", "sdkd"],
|
|
891
|
+
"application/vnd.spotfire.dxp": ["dxp"],
|
|
892
|
+
"application/vnd.spotfire.sfs": ["sfs"],
|
|
893
|
+
"application/vnd.stardivision.calc": ["sdc"],
|
|
894
|
+
"application/vnd.stardivision.draw": ["sda"],
|
|
895
|
+
"application/vnd.stardivision.impress": ["sdd"],
|
|
896
|
+
"application/vnd.stardivision.math": ["smf"],
|
|
897
|
+
"application/vnd.stardivision.writer": ["sdw", "vor"],
|
|
898
|
+
"application/vnd.stardivision.writer-global": ["sgl"],
|
|
899
|
+
"application/vnd.stepmania.package": ["smzip"],
|
|
900
|
+
"application/vnd.stepmania.stepchart": ["sm"],
|
|
901
|
+
"application/vnd.sun.wadl+xml": ["wadl"],
|
|
902
|
+
"application/vnd.sun.xml.calc": ["sxc"],
|
|
903
|
+
"application/vnd.sun.xml.calc.template": ["stc"],
|
|
904
|
+
"application/vnd.sun.xml.draw": ["sxd"],
|
|
905
|
+
"application/vnd.sun.xml.draw.template": ["std"],
|
|
906
|
+
"application/vnd.sun.xml.impress": ["sxi"],
|
|
907
|
+
"application/vnd.sun.xml.impress.template": ["sti"],
|
|
908
|
+
"application/vnd.sun.xml.math": ["sxm"],
|
|
909
|
+
"application/vnd.sun.xml.writer": ["sxw"],
|
|
910
|
+
"application/vnd.sun.xml.writer.global": ["sxg"],
|
|
911
|
+
"application/vnd.sun.xml.writer.template": ["stw"],
|
|
912
|
+
"application/vnd.sus-calendar": ["sus", "susp"],
|
|
913
|
+
"application/vnd.svd": ["svd"],
|
|
914
|
+
"application/vnd.symbian.install": ["sis", "sisx"],
|
|
915
|
+
"application/vnd.syncml+xml": ["xsm"],
|
|
916
|
+
"application/vnd.syncml.dm+wbxml": ["bdm"],
|
|
917
|
+
"application/vnd.syncml.dm+xml": ["xdm"],
|
|
918
|
+
"application/vnd.syncml.dmddf+xml": ["ddf"],
|
|
919
|
+
"application/vnd.tao.intent-module-archive": ["tao"],
|
|
920
|
+
"application/vnd.tcpdump.pcap": [
|
|
921
|
+
"pcap",
|
|
922
|
+
"cap",
|
|
923
|
+
"dmp"
|
|
924
|
+
],
|
|
925
|
+
"application/vnd.tmobile-livetv": ["tmo"],
|
|
926
|
+
"application/vnd.trid.tpt": ["tpt"],
|
|
927
|
+
"application/vnd.triscape.mxs": ["mxs"],
|
|
928
|
+
"application/vnd.trueapp": ["tra"],
|
|
929
|
+
"application/vnd.ufdl": ["ufd", "ufdl"],
|
|
930
|
+
"application/vnd.uiq.theme": ["utz"],
|
|
931
|
+
"application/vnd.umajin": ["umj"],
|
|
932
|
+
"application/vnd.unity": ["unityweb"],
|
|
933
|
+
"application/vnd.uoml+xml": ["uoml"],
|
|
934
|
+
"application/vnd.vcx": ["vcx"],
|
|
935
|
+
"application/vnd.visio": [
|
|
936
|
+
"vsd",
|
|
937
|
+
"vst",
|
|
938
|
+
"vss",
|
|
939
|
+
"vsw"
|
|
940
|
+
],
|
|
941
|
+
"application/vnd.visionary": ["vis"],
|
|
942
|
+
"application/vnd.vsf": ["vsf"],
|
|
943
|
+
"application/vnd.wap.wbxml": ["wbxml"],
|
|
944
|
+
"application/vnd.wap.wmlc": ["wmlc"],
|
|
945
|
+
"application/vnd.wap.wmlscriptc": ["wmlsc"],
|
|
946
|
+
"application/vnd.webturbo": ["wtb"],
|
|
947
|
+
"application/vnd.wolfram.player": ["nbp"],
|
|
948
|
+
"application/vnd.wordperfect": ["wpd"],
|
|
949
|
+
"application/vnd.wqd": ["wqd"],
|
|
950
|
+
"application/vnd.wt.stf": ["stf"],
|
|
951
|
+
"application/vnd.xara": ["xar"],
|
|
952
|
+
"application/vnd.xfdl": ["xfdl"],
|
|
953
|
+
"application/vnd.yamaha.hv-dic": ["hvd"],
|
|
954
|
+
"application/vnd.yamaha.hv-script": ["hvs"],
|
|
955
|
+
"application/vnd.yamaha.hv-voice": ["hvp"],
|
|
956
|
+
"application/vnd.yamaha.openscoreformat": ["osf"],
|
|
957
|
+
"application/vnd.yamaha.openscoreformat.osfpvg+xml": ["osfpvg"],
|
|
958
|
+
"application/vnd.yamaha.smaf-audio": ["saf"],
|
|
959
|
+
"application/vnd.yamaha.smaf-phrase": ["spf"],
|
|
960
|
+
"application/vnd.yellowriver-custom-menu": ["cmp"],
|
|
961
|
+
"application/vnd.zul": ["zir", "zirz"],
|
|
962
|
+
"application/vnd.zzazz.deck+xml": ["zaz"],
|
|
963
|
+
"application/x-7z-compressed": ["7z"],
|
|
964
|
+
"application/x-abiword": ["abw"],
|
|
965
|
+
"application/x-ace-compressed": ["ace"],
|
|
966
|
+
"application/x-apple-diskimage": ["*dmg"],
|
|
967
|
+
"application/x-arj": ["arj"],
|
|
968
|
+
"application/x-authorware-bin": [
|
|
969
|
+
"aab",
|
|
970
|
+
"x32",
|
|
971
|
+
"u32",
|
|
972
|
+
"vox"
|
|
973
|
+
],
|
|
974
|
+
"application/x-authorware-map": ["aam"],
|
|
975
|
+
"application/x-authorware-seg": ["aas"],
|
|
976
|
+
"application/x-bcpio": ["bcpio"],
|
|
977
|
+
"application/x-bdoc": ["*bdoc"],
|
|
978
|
+
"application/x-bittorrent": ["torrent"],
|
|
979
|
+
"application/x-blorb": ["blb", "blorb"],
|
|
980
|
+
"application/x-bzip": ["bz"],
|
|
981
|
+
"application/x-bzip2": ["bz2", "boz"],
|
|
982
|
+
"application/x-cbr": [
|
|
983
|
+
"cbr",
|
|
984
|
+
"cba",
|
|
985
|
+
"cbt",
|
|
986
|
+
"cbz",
|
|
987
|
+
"cb7"
|
|
988
|
+
],
|
|
989
|
+
"application/x-cdlink": ["vcd"],
|
|
990
|
+
"application/x-cfs-compressed": ["cfs"],
|
|
991
|
+
"application/x-chat": ["chat"],
|
|
992
|
+
"application/x-chess-pgn": ["pgn"],
|
|
993
|
+
"application/x-chrome-extension": ["crx"],
|
|
994
|
+
"application/x-cocoa": ["cco"],
|
|
995
|
+
"application/x-conference": ["nsc"],
|
|
996
|
+
"application/x-cpio": ["cpio"],
|
|
997
|
+
"application/x-csh": ["csh"],
|
|
998
|
+
"application/x-debian-package": ["*deb", "udeb"],
|
|
999
|
+
"application/x-dgc-compressed": ["dgc"],
|
|
1000
|
+
"application/x-director": [
|
|
1001
|
+
"dir",
|
|
1002
|
+
"dcr",
|
|
1003
|
+
"dxr",
|
|
1004
|
+
"cst",
|
|
1005
|
+
"cct",
|
|
1006
|
+
"cxt",
|
|
1007
|
+
"w3d",
|
|
1008
|
+
"fgd",
|
|
1009
|
+
"swa"
|
|
1010
|
+
],
|
|
1011
|
+
"application/x-doom": ["wad"],
|
|
1012
|
+
"application/x-dtbncx+xml": ["ncx"],
|
|
1013
|
+
"application/x-dtbook+xml": ["dtb"],
|
|
1014
|
+
"application/x-dtbresource+xml": ["res"],
|
|
1015
|
+
"application/x-dvi": ["dvi"],
|
|
1016
|
+
"application/x-envoy": ["evy"],
|
|
1017
|
+
"application/x-eva": ["eva"],
|
|
1018
|
+
"application/x-font-bdf": ["bdf"],
|
|
1019
|
+
"application/x-font-ghostscript": ["gsf"],
|
|
1020
|
+
"application/x-font-linux-psf": ["psf"],
|
|
1021
|
+
"application/x-font-pcf": ["pcf"],
|
|
1022
|
+
"application/x-font-snf": ["snf"],
|
|
1023
|
+
"application/x-font-type1": [
|
|
1024
|
+
"pfa",
|
|
1025
|
+
"pfb",
|
|
1026
|
+
"pfm",
|
|
1027
|
+
"afm"
|
|
1028
|
+
],
|
|
1029
|
+
"application/x-freearc": ["arc"],
|
|
1030
|
+
"application/x-futuresplash": ["spl"],
|
|
1031
|
+
"application/x-gca-compressed": ["gca"],
|
|
1032
|
+
"application/x-glulx": ["ulx"],
|
|
1033
|
+
"application/x-gnumeric": ["gnumeric"],
|
|
1034
|
+
"application/x-gramps-xml": ["gramps"],
|
|
1035
|
+
"application/x-gtar": ["gtar"],
|
|
1036
|
+
"application/x-hdf": ["hdf"],
|
|
1037
|
+
"application/x-httpd-php": ["php"],
|
|
1038
|
+
"application/x-install-instructions": ["install"],
|
|
1039
|
+
"application/x-iso9660-image": ["*iso"],
|
|
1040
|
+
"application/x-iwork-keynote-sffkey": ["*key"],
|
|
1041
|
+
"application/x-iwork-numbers-sffnumbers": ["*numbers"],
|
|
1042
|
+
"application/x-iwork-pages-sffpages": ["*pages"],
|
|
1043
|
+
"application/x-java-archive-diff": ["jardiff"],
|
|
1044
|
+
"application/x-java-jnlp-file": ["jnlp"],
|
|
1045
|
+
"application/x-keepass2": ["kdbx"],
|
|
1046
|
+
"application/x-latex": ["latex"],
|
|
1047
|
+
"application/x-lua-bytecode": ["luac"],
|
|
1048
|
+
"application/x-lzh-compressed": ["lzh", "lha"],
|
|
1049
|
+
"application/x-makeself": ["run"],
|
|
1050
|
+
"application/x-mie": ["mie"],
|
|
1051
|
+
"application/x-mobipocket-ebook": ["prc", "mobi"],
|
|
1052
|
+
"application/x-ms-application": ["application"],
|
|
1053
|
+
"application/x-ms-shortcut": ["lnk"],
|
|
1054
|
+
"application/x-ms-wmd": ["wmd"],
|
|
1055
|
+
"application/x-ms-wmz": ["wmz"],
|
|
1056
|
+
"application/x-ms-xbap": ["xbap"],
|
|
1057
|
+
"application/x-msaccess": ["mdb"],
|
|
1058
|
+
"application/x-msbinder": ["obd"],
|
|
1059
|
+
"application/x-mscardfile": ["crd"],
|
|
1060
|
+
"application/x-msclip": ["clp"],
|
|
1061
|
+
"application/x-msdos-program": ["*exe"],
|
|
1062
|
+
"application/x-msdownload": [
|
|
1063
|
+
"*exe",
|
|
1064
|
+
"*dll",
|
|
1065
|
+
"com",
|
|
1066
|
+
"bat",
|
|
1067
|
+
"*msi"
|
|
1068
|
+
],
|
|
1069
|
+
"application/x-msmediaview": [
|
|
1070
|
+
"mvb",
|
|
1071
|
+
"m13",
|
|
1072
|
+
"m14"
|
|
1073
|
+
],
|
|
1074
|
+
"application/x-msmetafile": [
|
|
1075
|
+
"*wmf",
|
|
1076
|
+
"*wmz",
|
|
1077
|
+
"*emf",
|
|
1078
|
+
"emz"
|
|
1079
|
+
],
|
|
1080
|
+
"application/x-msmoney": ["mny"],
|
|
1081
|
+
"application/x-mspublisher": ["pub"],
|
|
1082
|
+
"application/x-msschedule": ["scd"],
|
|
1083
|
+
"application/x-msterminal": ["trm"],
|
|
1084
|
+
"application/x-mswrite": ["wri"],
|
|
1085
|
+
"application/x-netcdf": ["nc", "cdf"],
|
|
1086
|
+
"application/x-ns-proxy-autoconfig": ["pac"],
|
|
1087
|
+
"application/x-nzb": ["nzb"],
|
|
1088
|
+
"application/x-perl": ["pl", "pm"],
|
|
1089
|
+
"application/x-pilot": ["*prc", "*pdb"],
|
|
1090
|
+
"application/x-pkcs12": ["p12", "pfx"],
|
|
1091
|
+
"application/x-pkcs7-certificates": ["p7b", "spc"],
|
|
1092
|
+
"application/x-pkcs7-certreqresp": ["p7r"],
|
|
1093
|
+
"application/x-rar-compressed": ["*rar"],
|
|
1094
|
+
"application/x-redhat-package-manager": ["rpm"],
|
|
1095
|
+
"application/x-research-info-systems": ["ris"],
|
|
1096
|
+
"application/x-sea": ["sea"],
|
|
1097
|
+
"application/x-sh": ["sh"],
|
|
1098
|
+
"application/x-shar": ["shar"],
|
|
1099
|
+
"application/x-shockwave-flash": ["swf"],
|
|
1100
|
+
"application/x-silverlight-app": ["xap"],
|
|
1101
|
+
"application/x-sql": ["sql"],
|
|
1102
|
+
"application/x-stuffit": ["sit"],
|
|
1103
|
+
"application/x-stuffitx": ["sitx"],
|
|
1104
|
+
"application/x-subrip": ["srt"],
|
|
1105
|
+
"application/x-sv4cpio": ["sv4cpio"],
|
|
1106
|
+
"application/x-sv4crc": ["sv4crc"],
|
|
1107
|
+
"application/x-t3vm-image": ["t3"],
|
|
1108
|
+
"application/x-tads": ["gam"],
|
|
1109
|
+
"application/x-tar": ["tar"],
|
|
1110
|
+
"application/x-tcl": ["tcl", "tk"],
|
|
1111
|
+
"application/x-tex": ["tex"],
|
|
1112
|
+
"application/x-tex-tfm": ["tfm"],
|
|
1113
|
+
"application/x-texinfo": ["texinfo", "texi"],
|
|
1114
|
+
"application/x-tgif": ["*obj"],
|
|
1115
|
+
"application/x-ustar": ["ustar"],
|
|
1116
|
+
"application/x-virtualbox-hdd": ["hdd"],
|
|
1117
|
+
"application/x-virtualbox-ova": ["ova"],
|
|
1118
|
+
"application/x-virtualbox-ovf": ["ovf"],
|
|
1119
|
+
"application/x-virtualbox-vbox": ["vbox"],
|
|
1120
|
+
"application/x-virtualbox-vbox-extpack": ["vbox-extpack"],
|
|
1121
|
+
"application/x-virtualbox-vdi": ["vdi"],
|
|
1122
|
+
"application/x-virtualbox-vhd": ["vhd"],
|
|
1123
|
+
"application/x-virtualbox-vmdk": ["vmdk"],
|
|
1124
|
+
"application/x-wais-source": ["src"],
|
|
1125
|
+
"application/x-web-app-manifest+json": ["webapp"],
|
|
1126
|
+
"application/x-x509-ca-cert": [
|
|
1127
|
+
"der",
|
|
1128
|
+
"crt",
|
|
1129
|
+
"pem"
|
|
1130
|
+
],
|
|
1131
|
+
"application/x-xfig": ["fig"],
|
|
1132
|
+
"application/x-xliff+xml": ["*xlf"],
|
|
1133
|
+
"application/x-xpinstall": ["xpi"],
|
|
1134
|
+
"application/x-xz": ["xz"],
|
|
1135
|
+
"application/x-zmachine": [
|
|
1136
|
+
"z1",
|
|
1137
|
+
"z2",
|
|
1138
|
+
"z3",
|
|
1139
|
+
"z4",
|
|
1140
|
+
"z5",
|
|
1141
|
+
"z6",
|
|
1142
|
+
"z7",
|
|
1143
|
+
"z8"
|
|
1144
|
+
],
|
|
1145
|
+
"audio/vnd.dece.audio": ["uva", "uvva"],
|
|
1146
|
+
"audio/vnd.digital-winds": ["eol"],
|
|
1147
|
+
"audio/vnd.dra": ["dra"],
|
|
1148
|
+
"audio/vnd.dts": ["dts"],
|
|
1149
|
+
"audio/vnd.dts.hd": ["dtshd"],
|
|
1150
|
+
"audio/vnd.lucent.voice": ["lvp"],
|
|
1151
|
+
"audio/vnd.ms-playready.media.pya": ["pya"],
|
|
1152
|
+
"audio/vnd.nuera.ecelp4800": ["ecelp4800"],
|
|
1153
|
+
"audio/vnd.nuera.ecelp7470": ["ecelp7470"],
|
|
1154
|
+
"audio/vnd.nuera.ecelp9600": ["ecelp9600"],
|
|
1155
|
+
"audio/vnd.rip": ["rip"],
|
|
1156
|
+
"audio/x-aac": ["aac"],
|
|
1157
|
+
"audio/x-aiff": [
|
|
1158
|
+
"aif",
|
|
1159
|
+
"aiff",
|
|
1160
|
+
"aifc"
|
|
1161
|
+
],
|
|
1162
|
+
"audio/x-caf": ["caf"],
|
|
1163
|
+
"audio/x-flac": ["flac"],
|
|
1164
|
+
"audio/x-m4a": ["*m4a"],
|
|
1165
|
+
"audio/x-matroska": ["mka"],
|
|
1166
|
+
"audio/x-mpegurl": ["m3u"],
|
|
1167
|
+
"audio/x-ms-wax": ["wax"],
|
|
1168
|
+
"audio/x-ms-wma": ["wma"],
|
|
1169
|
+
"audio/x-pn-realaudio": ["ram", "ra"],
|
|
1170
|
+
"audio/x-pn-realaudio-plugin": ["rmp"],
|
|
1171
|
+
"audio/x-realaudio": ["*ra"],
|
|
1172
|
+
"audio/x-wav": ["*wav"],
|
|
1173
|
+
"chemical/x-cdx": ["cdx"],
|
|
1174
|
+
"chemical/x-cif": ["cif"],
|
|
1175
|
+
"chemical/x-cmdf": ["cmdf"],
|
|
1176
|
+
"chemical/x-cml": ["cml"],
|
|
1177
|
+
"chemical/x-csml": ["csml"],
|
|
1178
|
+
"chemical/x-xyz": ["xyz"],
|
|
1179
|
+
"image/prs.btif": ["btif"],
|
|
1180
|
+
"image/prs.pti": ["pti"],
|
|
1181
|
+
"image/vnd.adobe.photoshop": ["psd"],
|
|
1182
|
+
"image/vnd.airzip.accelerator.azv": ["azv"],
|
|
1183
|
+
"image/vnd.dece.graphic": [
|
|
1184
|
+
"uvi",
|
|
1185
|
+
"uvvi",
|
|
1186
|
+
"uvg",
|
|
1187
|
+
"uvvg"
|
|
1188
|
+
],
|
|
1189
|
+
"image/vnd.djvu": ["djvu", "djv"],
|
|
1190
|
+
"image/vnd.dvb.subtitle": ["*sub"],
|
|
1191
|
+
"image/vnd.dwg": ["dwg"],
|
|
1192
|
+
"image/vnd.dxf": ["dxf"],
|
|
1193
|
+
"image/vnd.fastbidsheet": ["fbs"],
|
|
1194
|
+
"image/vnd.fpx": ["fpx"],
|
|
1195
|
+
"image/vnd.fst": ["fst"],
|
|
1196
|
+
"image/vnd.fujixerox.edmics-mmr": ["mmr"],
|
|
1197
|
+
"image/vnd.fujixerox.edmics-rlc": ["rlc"],
|
|
1198
|
+
"image/vnd.microsoft.icon": ["ico"],
|
|
1199
|
+
"image/vnd.ms-dds": ["dds"],
|
|
1200
|
+
"image/vnd.ms-modi": ["mdi"],
|
|
1201
|
+
"image/vnd.ms-photo": ["wdp"],
|
|
1202
|
+
"image/vnd.net-fpx": ["npx"],
|
|
1203
|
+
"image/vnd.pco.b16": ["b16"],
|
|
1204
|
+
"image/vnd.tencent.tap": ["tap"],
|
|
1205
|
+
"image/vnd.valve.source.texture": ["vtf"],
|
|
1206
|
+
"image/vnd.wap.wbmp": ["wbmp"],
|
|
1207
|
+
"image/vnd.xiff": ["xif"],
|
|
1208
|
+
"image/vnd.zbrush.pcx": ["pcx"],
|
|
1209
|
+
"image/x-3ds": ["3ds"],
|
|
1210
|
+
"image/x-cmu-raster": ["ras"],
|
|
1211
|
+
"image/x-cmx": ["cmx"],
|
|
1212
|
+
"image/x-freehand": [
|
|
1213
|
+
"fh",
|
|
1214
|
+
"fhc",
|
|
1215
|
+
"fh4",
|
|
1216
|
+
"fh5",
|
|
1217
|
+
"fh7"
|
|
1218
|
+
],
|
|
1219
|
+
"image/x-icon": ["*ico"],
|
|
1220
|
+
"image/x-jng": ["jng"],
|
|
1221
|
+
"image/x-mrsid-image": ["sid"],
|
|
1222
|
+
"image/x-ms-bmp": ["*bmp"],
|
|
1223
|
+
"image/x-pcx": ["*pcx"],
|
|
1224
|
+
"image/x-pict": ["pic", "pct"],
|
|
1225
|
+
"image/x-portable-anymap": ["pnm"],
|
|
1226
|
+
"image/x-portable-bitmap": ["pbm"],
|
|
1227
|
+
"image/x-portable-graymap": ["pgm"],
|
|
1228
|
+
"image/x-portable-pixmap": ["ppm"],
|
|
1229
|
+
"image/x-rgb": ["rgb"],
|
|
1230
|
+
"image/x-tga": ["tga"],
|
|
1231
|
+
"image/x-xbitmap": ["xbm"],
|
|
1232
|
+
"image/x-xpixmap": ["xpm"],
|
|
1233
|
+
"image/x-xwindowdump": ["xwd"],
|
|
1234
|
+
"message/vnd.wfa.wsc": ["wsc"],
|
|
1235
|
+
"model/vnd.collada+xml": ["dae"],
|
|
1236
|
+
"model/vnd.dwf": ["dwf"],
|
|
1237
|
+
"model/vnd.gdl": ["gdl"],
|
|
1238
|
+
"model/vnd.gtw": ["gtw"],
|
|
1239
|
+
"model/vnd.mts": ["mts"],
|
|
1240
|
+
"model/vnd.opengex": ["ogex"],
|
|
1241
|
+
"model/vnd.parasolid.transmit.binary": ["x_b"],
|
|
1242
|
+
"model/vnd.parasolid.transmit.text": ["x_t"],
|
|
1243
|
+
"model/vnd.sap.vds": ["vds"],
|
|
1244
|
+
"model/vnd.usdz+zip": ["usdz"],
|
|
1245
|
+
"model/vnd.valve.source.compiled-map": ["bsp"],
|
|
1246
|
+
"model/vnd.vtu": ["vtu"],
|
|
1247
|
+
"text/prs.lines.tag": ["dsc"],
|
|
1248
|
+
"text/vnd.curl": ["curl"],
|
|
1249
|
+
"text/vnd.curl.dcurl": ["dcurl"],
|
|
1250
|
+
"text/vnd.curl.mcurl": ["mcurl"],
|
|
1251
|
+
"text/vnd.curl.scurl": ["scurl"],
|
|
1252
|
+
"text/vnd.dvb.subtitle": ["sub"],
|
|
1253
|
+
"text/vnd.fly": ["fly"],
|
|
1254
|
+
"text/vnd.fmi.flexstor": ["flx"],
|
|
1255
|
+
"text/vnd.graphviz": ["gv"],
|
|
1256
|
+
"text/vnd.in3d.3dml": ["3dml"],
|
|
1257
|
+
"text/vnd.in3d.spot": ["spot"],
|
|
1258
|
+
"text/vnd.sun.j2me.app-descriptor": ["jad"],
|
|
1259
|
+
"text/vnd.wap.wml": ["wml"],
|
|
1260
|
+
"text/vnd.wap.wmlscript": ["wmls"],
|
|
1261
|
+
"text/x-asm": ["s", "asm"],
|
|
1262
|
+
"text/x-c": [
|
|
1263
|
+
"c",
|
|
1264
|
+
"cc",
|
|
1265
|
+
"cxx",
|
|
1266
|
+
"cpp",
|
|
1267
|
+
"h",
|
|
1268
|
+
"hh",
|
|
1269
|
+
"dic"
|
|
1270
|
+
],
|
|
1271
|
+
"text/x-component": ["htc"],
|
|
1272
|
+
"text/x-fortran": [
|
|
1273
|
+
"f",
|
|
1274
|
+
"for",
|
|
1275
|
+
"f77",
|
|
1276
|
+
"f90"
|
|
1277
|
+
],
|
|
1278
|
+
"text/x-handlebars-template": ["hbs"],
|
|
1279
|
+
"text/x-java-source": ["java"],
|
|
1280
|
+
"text/x-lua": ["lua"],
|
|
1281
|
+
"text/x-markdown": ["mkd"],
|
|
1282
|
+
"text/x-nfo": ["nfo"],
|
|
1283
|
+
"text/x-opml": ["opml"],
|
|
1284
|
+
"text/x-org": ["*org"],
|
|
1285
|
+
"text/x-pascal": ["p", "pas"],
|
|
1286
|
+
"text/x-processing": ["pde"],
|
|
1287
|
+
"text/x-sass": ["sass"],
|
|
1288
|
+
"text/x-scss": ["scss"],
|
|
1289
|
+
"text/x-setext": ["etx"],
|
|
1290
|
+
"text/x-sfv": ["sfv"],
|
|
1291
|
+
"text/x-suse-ymp": ["ymp"],
|
|
1292
|
+
"text/x-uuencode": ["uu"],
|
|
1293
|
+
"text/x-vcalendar": ["vcs"],
|
|
1294
|
+
"text/x-vcard": ["vcf"],
|
|
1295
|
+
"video/vnd.dece.hd": ["uvh", "uvvh"],
|
|
1296
|
+
"video/vnd.dece.mobile": ["uvm", "uvvm"],
|
|
1297
|
+
"video/vnd.dece.pd": ["uvp", "uvvp"],
|
|
1298
|
+
"video/vnd.dece.sd": ["uvs", "uvvs"],
|
|
1299
|
+
"video/vnd.dece.video": ["uvv", "uvvv"],
|
|
1300
|
+
"video/vnd.dvb.file": ["dvb"],
|
|
1301
|
+
"video/vnd.fvt": ["fvt"],
|
|
1302
|
+
"video/vnd.mpegurl": ["mxu", "m4u"],
|
|
1303
|
+
"video/vnd.ms-playready.media.pyv": ["pyv"],
|
|
1304
|
+
"video/vnd.uvvu.mp4": ["uvu", "uvvu"],
|
|
1305
|
+
"video/vnd.vivo": ["viv"],
|
|
1306
|
+
"video/x-f4v": ["f4v"],
|
|
1307
|
+
"video/x-fli": ["fli"],
|
|
1308
|
+
"video/x-flv": ["flv"],
|
|
1309
|
+
"video/x-m4v": ["m4v"],
|
|
1310
|
+
"video/x-matroska": [
|
|
1311
|
+
"mkv",
|
|
1312
|
+
"mk3d",
|
|
1313
|
+
"mks"
|
|
1314
|
+
],
|
|
1315
|
+
"video/x-mng": ["mng"],
|
|
1316
|
+
"video/x-ms-asf": ["asf", "asx"],
|
|
1317
|
+
"video/x-ms-vob": ["vob"],
|
|
1318
|
+
"video/x-ms-wm": ["wm"],
|
|
1319
|
+
"video/x-ms-wmv": ["wmv"],
|
|
1320
|
+
"video/x-ms-wmx": ["wmx"],
|
|
1321
|
+
"video/x-ms-wvx": ["wvx"],
|
|
1322
|
+
"video/x-msvideo": ["avi"],
|
|
1323
|
+
"video/x-sgi-movie": ["movie"],
|
|
1324
|
+
"video/x-smv": ["smv"],
|
|
1325
|
+
"x-conference/x-cooltalk": ["ice"]
|
|
1326
|
+
};
|
|
1327
|
+
} });
|
|
1328
|
+
|
|
1329
|
+
//#endregion
|
|
1330
|
+
//#region ../../node_modules/.pnpm/mime@2.6.0/node_modules/mime/index.js
|
|
1331
|
+
var require_mime = __commonJS({ "../../node_modules/.pnpm/mime@2.6.0/node_modules/mime/index.js"(exports, module) {
|
|
1332
|
+
let Mime = require_Mime();
|
|
1333
|
+
module.exports = new Mime(require_standard(), require_other());
|
|
1334
|
+
} });
|
|
1335
|
+
|
|
1336
|
+
//#endregion
|
|
1337
|
+
//#region src/standaloneStorage.ts
|
|
1338
|
+
var import_mime = __toESM(require_mime(), 1);
|
|
1339
|
+
const defaultRoutes$1 = {
|
|
1340
|
+
uploadBundle: (bundleId, bundlePath) => ({ path: "/uploadBundle" }),
|
|
1341
|
+
deleteBundle: (bundleId) => ({ path: "/deleteBundle" })
|
|
3222
1342
|
};
|
|
3223
|
-
const createRoute = (defaultRoute, customRoute)=>({
|
|
3224
|
-
|
|
3225
|
-
|
|
3226
|
-
|
|
3227
|
-
|
|
3228
|
-
|
|
3229
|
-
|
|
3230
|
-
const standaloneStorage = (config, hooks)=>(_)=>{
|
|
3231
|
-
|
|
3232
|
-
|
|
3233
|
-
|
|
3234
|
-
|
|
3235
|
-
|
|
3236
|
-
|
|
3237
|
-
|
|
3238
|
-
|
|
3239
|
-
|
|
3240
|
-
|
|
3241
|
-
|
|
3242
|
-
|
|
3243
|
-
|
|
3244
|
-
|
|
3245
|
-
|
|
3246
|
-
|
|
3247
|
-
|
|
3248
|
-
|
|
3249
|
-
|
|
3250
|
-
|
|
3251
|
-
|
|
3252
|
-
|
|
3253
|
-
|
|
3254
|
-
|
|
3255
|
-
|
|
3256
|
-
|
|
3257
|
-
|
|
3258
|
-
|
|
3259
|
-
|
|
3260
|
-
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
|
|
3265
|
-
|
|
3266
|
-
|
|
3267
|
-
|
|
3268
|
-
|
|
3269
|
-
|
|
3270
|
-
|
|
3271
|
-
|
|
3272
|
-
|
|
3273
|
-
|
|
3274
|
-
|
|
3275
|
-
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
|
|
3284
|
-
|
|
3285
|
-
|
|
3286
|
-
|
|
3287
|
-
|
|
3288
|
-
|
|
3289
|
-
|
|
3290
|
-
|
|
3291
|
-
|
|
3292
|
-
|
|
3293
|
-
|
|
3294
|
-
|
|
3295
|
-
|
|
3296
|
-
|
|
3297
|
-
list: ()=>({
|
|
3298
|
-
path: "/bundles",
|
|
3299
|
-
headers: {
|
|
3300
|
-
"Cache-Control": "no-cache"
|
|
3301
|
-
}
|
|
3302
|
-
}),
|
|
3303
|
-
retrieve: (bundleId)=>({
|
|
3304
|
-
path: `/bundles/${bundleId}`,
|
|
3305
|
-
headers: {
|
|
3306
|
-
Accept: "application/json"
|
|
3307
|
-
}
|
|
3308
|
-
})
|
|
1343
|
+
const createRoute$1 = (defaultRoute, customRoute) => ({
|
|
1344
|
+
path: customRoute?.path ?? defaultRoute.path,
|
|
1345
|
+
headers: {
|
|
1346
|
+
...defaultRoute.headers,
|
|
1347
|
+
...customRoute?.headers
|
|
1348
|
+
}
|
|
1349
|
+
});
|
|
1350
|
+
const standaloneStorage = (config, hooks) => (_) => {
|
|
1351
|
+
const routes = {
|
|
1352
|
+
uploadBundle: (bundleId, bundlePath) => createRoute$1(defaultRoutes$1.uploadBundle(bundleId, bundlePath), config.routes?.uploadBundle?.(bundleId, bundlePath)),
|
|
1353
|
+
deleteBundle: (bundleId) => createRoute$1(defaultRoutes$1.deleteBundle(bundleId), config.routes?.deleteBundle?.(bundleId))
|
|
1354
|
+
};
|
|
1355
|
+
const getHeaders = (routeHeaders) => ({
|
|
1356
|
+
...config.commonHeaders,
|
|
1357
|
+
...routeHeaders
|
|
1358
|
+
});
|
|
1359
|
+
return {
|
|
1360
|
+
name: "standaloneStorage",
|
|
1361
|
+
async deleteBundle(bundleId) {
|
|
1362
|
+
const { path: routePath, headers: routeHeaders } = routes.deleteBundle(bundleId);
|
|
1363
|
+
const response = await fetch(`${config.baseUrl}${routePath}`, {
|
|
1364
|
+
method: "POST",
|
|
1365
|
+
headers: getHeaders(routeHeaders),
|
|
1366
|
+
body: JSON.stringify({ bundleId })
|
|
1367
|
+
});
|
|
1368
|
+
if (!response.ok) {
|
|
1369
|
+
const error = new Error(`Failed to delete bundle: ${response.statusText}`);
|
|
1370
|
+
console.error(error);
|
|
1371
|
+
throw error;
|
|
1372
|
+
}
|
|
1373
|
+
return bundleId;
|
|
1374
|
+
},
|
|
1375
|
+
async uploadBundle(bundleId, bundlePath) {
|
|
1376
|
+
const fileContent = await fs.readFile(bundlePath);
|
|
1377
|
+
const contentType = import_mime.default.getType(bundlePath) ?? "application/octet-stream";
|
|
1378
|
+
const filename = path.basename(bundlePath);
|
|
1379
|
+
const { path: routePath, headers: routeHeaders } = routes.uploadBundle(bundleId, bundlePath);
|
|
1380
|
+
const formData = new FormData();
|
|
1381
|
+
formData.append("file", new Blob([fileContent], { type: contentType }), filename);
|
|
1382
|
+
formData.append("bundleId", bundleId);
|
|
1383
|
+
const response = await fetch(`${config.baseUrl}${routePath}`, {
|
|
1384
|
+
method: "POST",
|
|
1385
|
+
headers: getHeaders(routeHeaders),
|
|
1386
|
+
body: formData
|
|
1387
|
+
});
|
|
1388
|
+
if (!response.ok) {
|
|
1389
|
+
const error = `Failed to upload bundle: ${response.statusText}`;
|
|
1390
|
+
console.error(`[uploadBundle] ${error}`);
|
|
1391
|
+
throw new Error(error);
|
|
1392
|
+
}
|
|
1393
|
+
const result = await response.json();
|
|
1394
|
+
if (!result.storageUri) {
|
|
1395
|
+
const error = "Failed to upload bundle - no storageUri in response";
|
|
1396
|
+
console.error(`[uploadBundle] ${error}`);
|
|
1397
|
+
throw new Error(error);
|
|
1398
|
+
}
|
|
1399
|
+
hooks?.onStorageUploaded?.();
|
|
1400
|
+
return { storageUri: result.storageUri };
|
|
1401
|
+
}
|
|
1402
|
+
};
|
|
1403
|
+
};
|
|
1404
|
+
|
|
1405
|
+
//#endregion
|
|
1406
|
+
//#region src/standaloneRepository.ts
|
|
1407
|
+
const defaultRoutes = {
|
|
1408
|
+
upsert: () => ({ path: "/bundles" }),
|
|
1409
|
+
list: () => ({
|
|
1410
|
+
path: "/bundles",
|
|
1411
|
+
headers: { "Cache-Control": "no-cache" }
|
|
1412
|
+
}),
|
|
1413
|
+
retrieve: (bundleId) => ({
|
|
1414
|
+
path: `/bundles/${bundleId}`,
|
|
1415
|
+
headers: { Accept: "application/json" }
|
|
1416
|
+
})
|
|
3309
1417
|
};
|
|
3310
|
-
const
|
|
3311
|
-
|
|
3312
|
-
|
|
3313
|
-
|
|
3314
|
-
|
|
3315
|
-
|
|
3316
|
-
|
|
3317
|
-
const standaloneRepository = (config, hooks)=>{
|
|
3318
|
-
|
|
3319
|
-
|
|
3320
|
-
|
|
3321
|
-
|
|
3322
|
-
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
|
|
3326
|
-
|
|
3327
|
-
|
|
3328
|
-
|
|
3329
|
-
|
|
3330
|
-
|
|
3331
|
-
|
|
3332
|
-
|
|
3333
|
-
|
|
3334
|
-
|
|
3335
|
-
|
|
3336
|
-
|
|
3337
|
-
|
|
3338
|
-
|
|
3339
|
-
|
|
3340
|
-
|
|
3341
|
-
|
|
3342
|
-
|
|
3343
|
-
|
|
3344
|
-
|
|
3345
|
-
|
|
3346
|
-
|
|
3347
|
-
|
|
3348
|
-
|
|
3349
|
-
|
|
3350
|
-
|
|
3351
|
-
|
|
3352
|
-
|
|
3353
|
-
|
|
3354
|
-
|
|
3355
|
-
|
|
3356
|
-
|
|
3357
|
-
|
|
3358
|
-
|
|
3359
|
-
|
|
3360
|
-
|
|
3361
|
-
|
|
3362
|
-
|
|
3363
|
-
|
|
3364
|
-
|
|
3365
|
-
|
|
3366
|
-
|
|
3367
|
-
|
|
3368
|
-
|
|
3369
|
-
|
|
3370
|
-
|
|
3371
|
-
|
|
3372
|
-
|
|
3373
|
-
|
|
3374
|
-
|
|
3375
|
-
}
|
|
3376
|
-
}, hooks);
|
|
1418
|
+
const createRoute = (defaultRoute, customRoute) => ({
|
|
1419
|
+
path: customRoute?.path ?? defaultRoute.path,
|
|
1420
|
+
headers: {
|
|
1421
|
+
...defaultRoute.headers,
|
|
1422
|
+
...customRoute?.headers
|
|
1423
|
+
}
|
|
1424
|
+
});
|
|
1425
|
+
const standaloneRepository = (config, hooks) => {
|
|
1426
|
+
const routes = {
|
|
1427
|
+
upsert: () => createRoute(defaultRoutes.upsert(), config.routes?.upsert?.()),
|
|
1428
|
+
list: () => createRoute(defaultRoutes.list(), config.routes?.list?.()),
|
|
1429
|
+
retrieve: (bundleId) => createRoute(defaultRoutes.retrieve(bundleId), config.routes?.retrieve?.(bundleId))
|
|
1430
|
+
};
|
|
1431
|
+
const getHeaders = (routeHeaders) => ({
|
|
1432
|
+
"Content-Type": "application/json",
|
|
1433
|
+
...config.commonHeaders,
|
|
1434
|
+
...routeHeaders
|
|
1435
|
+
});
|
|
1436
|
+
return createDatabasePlugin("standalone-repository", {
|
|
1437
|
+
async getBundleById(_, bundleId) {
|
|
1438
|
+
try {
|
|
1439
|
+
const { path: path$1, headers: routeHeaders } = routes.retrieve(bundleId);
|
|
1440
|
+
const response = await fetch(`${config.baseUrl}${path$1}`, {
|
|
1441
|
+
method: "GET",
|
|
1442
|
+
headers: getHeaders(routeHeaders)
|
|
1443
|
+
});
|
|
1444
|
+
if (!response.ok) return null;
|
|
1445
|
+
return await response.json();
|
|
1446
|
+
} catch (error) {
|
|
1447
|
+
return null;
|
|
1448
|
+
}
|
|
1449
|
+
},
|
|
1450
|
+
async getBundles(_, options) {
|
|
1451
|
+
const { where, limit, offset = 0 } = options ?? {};
|
|
1452
|
+
const { path: path$1, headers: routeHeaders } = routes.list();
|
|
1453
|
+
const response = await fetch(`${config.baseUrl}${path$1}`, {
|
|
1454
|
+
method: "GET",
|
|
1455
|
+
headers: getHeaders(routeHeaders)
|
|
1456
|
+
});
|
|
1457
|
+
if (!response.ok) throw new Error(`API Error: ${response.statusText}`);
|
|
1458
|
+
const bundles = await response.json();
|
|
1459
|
+
let filteredBundles = bundles;
|
|
1460
|
+
if (where?.channel) filteredBundles = filteredBundles.filter((b) => b.channel === where.channel);
|
|
1461
|
+
if (where?.platform) filteredBundles = filteredBundles.filter((b) => b.platform === where.platform);
|
|
1462
|
+
if (limit) return filteredBundles.slice(offset, offset + limit);
|
|
1463
|
+
return filteredBundles;
|
|
1464
|
+
},
|
|
1465
|
+
async getChannels(_) {
|
|
1466
|
+
const allBundles = await this.getBundles(_);
|
|
1467
|
+
return [...new Set(allBundles.map((b) => b.channel))];
|
|
1468
|
+
},
|
|
1469
|
+
async commitBundle(_, { changedSets }) {
|
|
1470
|
+
const changedBundles = changedSets.map((set) => set.data);
|
|
1471
|
+
if (changedBundles.length === 0) return;
|
|
1472
|
+
const { path: path$1, headers: routeHeaders } = routes.upsert();
|
|
1473
|
+
const response = await fetch(`${config.baseUrl}${path$1}`, {
|
|
1474
|
+
method: "POST",
|
|
1475
|
+
headers: getHeaders(routeHeaders),
|
|
1476
|
+
body: JSON.stringify(changedBundles)
|
|
1477
|
+
});
|
|
1478
|
+
if (!response.ok) throw new Error(`API Error: ${response.statusText}`);
|
|
1479
|
+
const result = await response.json();
|
|
1480
|
+
if (!result.success) throw new Error("Failed to commit bundles");
|
|
1481
|
+
}
|
|
1482
|
+
}, hooks);
|
|
3377
1483
|
};
|
|
3378
|
-
|
|
1484
|
+
|
|
1485
|
+
//#endregion
|
|
1486
|
+
export { standaloneRepository, standaloneStorage };
|