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