itsi-scheduler 0.2.14 → 0.2.16

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.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +25 -82
  3. data/ext/itsi_scheduler/Cargo.toml +1 -1
  4. data/ext/itsi_scheduler/extconf.rb +3 -1
  5. data/ext/itsi_server/Cargo.lock +1 -1
  6. data/ext/itsi_server/Cargo.toml +3 -2
  7. data/ext/itsi_server/src/lib.rs +1 -0
  8. data/ext/itsi_server/src/ruby_types/itsi_grpc_call.rs +2 -2
  9. data/ext/itsi_server/src/ruby_types/itsi_http_request.rs +9 -11
  10. data/ext/itsi_server/src/ruby_types/itsi_server/itsi_server_config.rs +6 -1
  11. data/ext/itsi_server/src/server/binds/listener.rs +4 -1
  12. data/ext/itsi_server/src/server/http_message_types.rs +1 -1
  13. data/ext/itsi_server/src/server/middleware_stack/middlewares/error_response/default_responses.rs +32 -34
  14. data/ext/itsi_server/src/server/middleware_stack/middlewares/error_response.rs +3 -4
  15. data/ext/itsi_server/src/server/middleware_stack/middlewares/etag.rs +23 -38
  16. data/ext/itsi_server/src/server/middleware_stack/middlewares/log_requests.rs +65 -14
  17. data/ext/itsi_server/src/server/middleware_stack/middlewares/max_body.rs +1 -1
  18. data/ext/itsi_server/src/server/middleware_stack/middlewares/proxy.rs +1 -1
  19. data/ext/itsi_server/src/server/middleware_stack/middlewares/rate_limit.rs +21 -8
  20. data/ext/itsi_server/src/server/middleware_stack/middlewares/ruby_app.rs +1 -5
  21. data/ext/itsi_server/src/server/middleware_stack/middlewares/static_assets.rs +8 -6
  22. data/ext/itsi_server/src/server/middleware_stack/middlewares/static_response.rs +12 -3
  23. data/ext/itsi_server/src/server/process_worker.rs +2 -1
  24. data/ext/itsi_server/src/server/serve_strategy/acceptor.rs +96 -0
  25. data/ext/itsi_server/src/server/serve_strategy/mod.rs +1 -0
  26. data/ext/itsi_server/src/server/serve_strategy/single_mode.rs +80 -136
  27. data/ext/itsi_server/src/server/thread_worker.rs +10 -3
  28. data/ext/itsi_server/src/services/itsi_http_service.rs +26 -21
  29. data/ext/itsi_server/src/services/mime_types.rs +2893 -1413
  30. data/ext/itsi_server/src/services/rate_limiter.rs +16 -34
  31. data/ext/itsi_server/src/services/static_file_server.rs +147 -121
  32. data/ext/itsi_tracing/Cargo.toml +1 -1
  33. data/lib/itsi/schedule_refinement.rb +2 -2
  34. data/lib/itsi/scheduler/version.rb +1 -1
  35. metadata +3 -2
@@ -1,1416 +1,2896 @@
1
1
  use std::path::Path;
2
2
 
3
- pub fn get_mime_type(path: &Path) -> &'static str {
4
- match path.extension().and_then(|e| e.to_str()).unwrap_or("") {
5
- "123" => "application/vnd.lotus-1-2-3",
6
- "323" => "text/h323",
7
- "3dml" => "text/vnd.in3d.3dml",
8
- "3ds" => "image/x-3ds",
9
- "3g2" => "video/3gpp2",
10
- "3gp" => "video/3gpp",
11
- "3gp2" => "video/3gpp2",
12
- "3gpp" => "video/3gpp",
13
- "7z" => "application/x-7z-compressed",
14
- "aa" => "audio/audible",
15
- "aab" => "application/x-authorware-bin",
16
- "aac" => "audio/aac",
17
- "aaf" => "application/octet-stream",
18
- "aam" => "application/x-authorware-map",
19
- "aas" => "application/x-authorware-seg",
20
- "aax" => "audio/vnd.audible.aax",
21
- "abw" => "application/x-abiword",
22
- "ac" => "application/pkix-attr-cert",
23
- "ac3" => "audio/ac3",
24
- "aca" => "application/octet-stream",
25
- "acc" => "application/vnd.americandynamics.acc",
26
- "accda" => "application/msaccess.addin",
27
- "accdb" => "application/msaccess",
28
- "accdc" => "application/msaccess.cab",
29
- "accde" => "application/msaccess",
30
- "accdr" => "application/msaccess.runtime",
31
- "accdt" => "application/msaccess",
32
- "accdw" => "application/msaccess.webapplication",
33
- "accft" => "application/msaccess.ftemplate",
34
- "ace" => "application/x-ace-compressed",
35
- "acu" => "application/vnd.acucobol",
36
- "acutc" => "application/vnd.acucorp",
37
- "acx" => "application/internet-property-stream",
38
- "addin" => "text/xml",
39
- "ade" => "application/msaccess",
40
- "adobebridge" => "application/x-bridge-url",
41
- "adp" => "application/msaccess",
42
- "adt" => "audio/vnd.dlna.adts",
43
- "adts" => "audio/aac",
44
- "aep" => "application/vnd.audiograph",
45
- "afm" => "application/octet-stream",
46
- "afp" => "application/vnd.ibm.modcap",
47
- "ahead" => "application/vnd.ahead.space",
48
- "ai" => "application/postscript",
49
- "aif" => "audio/aiff",
50
- "aifc" => "audio/aiff",
51
- "aiff" => "audio/aiff",
52
- "air" => "application/vnd.adobe.air-application-installer-package+zip",
53
- "ait" => "application/vnd.dvb.ait",
54
- "amc" => "application/mpeg",
55
- "ami" => "application/vnd.amiga.ami",
56
- "anx" => "application/annodex",
57
- "apk" => "application/vnd.android.package-archive",
58
- "apng" => "image/apng",
59
- "appcache" => "text/cache-manifest",
60
- "application" => "application/x-ms-application",
61
- "apr" => "application/vnd.lotus-approach",
62
- "arc" => "application/x-freearc",
63
- "arj" => "application/x-arj",
64
- "art" => "image/x-jg",
65
- "arw" => "image/x-sony-arw",
66
- "asa" => "application/xml",
67
- "asax" => "application/xml",
68
- "asc" => "application/pgp-signature",
69
- "ascx" => "application/xml",
70
- "asd" => "application/octet-stream",
71
- "asf" => "video/x-ms-asf",
72
- "ashx" => "application/xml",
73
- "asi" => "application/octet-stream",
74
- "asm" => "text/plain",
75
- "asmx" => "application/xml",
76
- "aso" => "application/vnd.accpac.simply.aso",
77
- "aspx" => "application/xml",
78
- "asr" => "video/x-ms-asf",
79
- "asx" => "video/x-ms-asf",
80
- "atc" => "application/vnd.acucorp",
81
- "atom" => "application/atom+xml",
82
- "atomcat" => "application/atomcat+xml",
83
- "atomsvc" => "application/atomsvc+xml",
84
- "atx" => "application/vnd.antix.game-component",
85
- "au" => "audio/basic",
86
- "avi" => "video/x-msvideo",
87
- "avif" => "image/avif",
88
- "avifs" => "image/avif-sequence",
89
- "aw" => "application/applixware",
90
- "axa" => "audio/annodex",
91
- "axs" => "application/olescript",
92
- "axv" => "video/annodex",
93
- "azf" => "application/vnd.airzip.filesecure.azf",
94
- "azs" => "application/vnd.airzip.filesecure.azs",
95
- "azw" => "application/vnd.amazon.ebook",
96
- "bas" => "text/plain",
97
- "bat" => "application/x-msdownload",
98
- "bcpio" => "application/x-bcpio",
99
- "bdf" => "application/x-font-bdf",
100
- "bdm" => "application/vnd.syncml.dm+wbxml",
101
- "bdoc" => "application/bdoc",
102
- "bed" => "application/vnd.realvnc.bed",
103
- "bh2" => "application/vnd.fujitsu.oasysprs",
104
- "bin" => "application/octet-stream",
105
- "blb" => "application/x-blorb",
106
- "blorb" => "application/x-blorb",
107
- "bmi" => "application/vnd.bmi",
108
- "bmp" => "image/bmp",
109
- "book" => "application/vnd.framemaker",
110
- "box" => "application/vnd.previewsystems.box",
111
- "boz" => "application/x-bzip2",
112
- "bpk" => "application/octet-stream",
113
- "btif" => "image/prs.btif",
114
- "buffer" => "application/octet-stream",
115
- "bz" => "application/x-bzip",
116
- "bz2" => "application/x-bzip2",
117
- "c" => "text/plain",
118
- "c11amc" => "application/vnd.cluetrust.cartomobile-config",
119
- "c11amz" => "application/vnd.cluetrust.cartomobile-config-pkg",
120
- "c4d" => "application/vnd.clonk.c4group",
121
- "c4f" => "application/vnd.clonk.c4group",
122
- "c4g" => "application/vnd.clonk.c4group",
123
- "c4p" => "application/vnd.clonk.c4group",
124
- "c4u" => "application/vnd.clonk.c4group",
125
- "cab" => "application/octet-stream",
126
- "caf" => "audio/x-caf",
127
- "calx" => "application/vnd.ms-office.calx",
128
- "cap" => "application/vnd.tcpdump.pcap",
129
- "car" => "application/vnd.curl.car",
130
- "cat" => "application/vnd.ms-pki.seccat",
131
- "cb7" => "application/x-cbr",
132
- "cba" => "application/x-cbr",
133
- "cbr" => "application/x-cbr",
134
- "cbt" => "application/x-cbr",
135
- "cbz" => "application/x-cbr",
136
- "cc" => "text/plain",
137
- "cco" => "application/x-cocoa",
138
- "cct" => "application/x-director",
139
- "ccxml" => "application/ccxml+xml",
140
- "cd" => "text/plain",
141
- "cdbcmsg" => "application/vnd.contact.cmsg",
142
- "cdda" => "audio/aiff",
143
- "cdf" => "application/x-cdf",
144
- "cdkey" => "application/vnd.mediastation.cdkey",
145
- "cdmia" => "application/cdmi-capability",
146
- "cdmic" => "application/cdmi-container",
147
- "cdmid" => "application/cdmi-domain",
148
- "cdmio" => "application/cdmi-object",
149
- "cdmiq" => "application/cdmi-queue",
150
- "cdx" => "chemical/x-cdx",
151
- "cdxml" => "application/vnd.chemdraw+xml",
152
- "cdy" => "application/vnd.cinderella",
153
- "cer" => "application/x-x509-ca-cert",
154
- "cfg" => "text/plain",
155
- "cfs" => "application/x-cfs-compressed",
156
- "cgm" => "image/cgm",
157
- "chat" => "application/x-chat",
158
- "chm" => "application/vnd.ms-htmlhelp",
159
- "chrt" => "application/vnd.kde.kchart",
160
- "cif" => "chemical/x-cif",
161
- "cii" => "application/vnd.anser-web-certificate-issue-initiation",
162
- "cil" => "application/vnd.ms-artgalry",
163
- "cla" => "application/vnd.claymore",
164
- "class" => "application/x-java-applet",
165
- "clkk" => "application/vnd.crick.clicker.keyboard",
166
- "clkp" => "application/vnd.crick.clicker.palette",
167
- "clkt" => "application/vnd.crick.clicker.template",
168
- "clkw" => "application/vnd.crick.clicker.wordbank",
169
- "clkx" => "application/vnd.crick.clicker",
170
- "clp" => "application/x-msclip",
171
- "cmc" => "application/vnd.cosmocaller",
172
- "cmd" => "text/plain",
173
- "cmdf" => "chemical/x-cmdf",
174
- "cml" => "chemical/x-cml",
175
- "cmp" => "application/vnd.yellowriver-custom-menu",
176
- "cmx" => "image/x-cmx",
177
- "cnf" => "text/plain",
178
- "cod" => "image/cis-cod",
179
- "coffee" => "text/coffeescript",
180
- "com" => "application/x-msdownload",
181
- "conf" => "text/plain",
182
- "config" => "application/xml",
183
- "contact" => "text/x-ms-contact",
184
- "coverage" => "application/xml",
185
- "cpio" => "application/x-cpio",
186
- "cpp" => "text/plain",
187
- "cpt" => "application/mac-compactpro",
188
- "cr2" => "image/x-canon-cr2",
189
- "cr3" => "image/x-canon-cr3",
190
- "crd" => "application/x-mscardfile",
191
- "crl" => "application/pkix-crl",
192
- "crt" => "application/x-x509-ca-cert",
193
- "crw" => "image/x-canon-crw",
194
- "crx" => "application/x-chrome-extension",
195
- "cryptonote" => "application/vnd.rig.cryptonote",
196
- "cs" => "text/plain",
197
- "csdproj" => "text/plain",
198
- "csh" => "application/x-csh",
199
- "csl" => "application/vnd.citationstyles.style+xml",
200
- "csml" => "chemical/x-csml",
201
- "csp" => "application/vnd.commonspace",
202
- "csproj" => "text/plain",
203
- "css" => "text/css",
204
- "cst" => "application/x-director",
205
- "csv" => "text/csv",
206
- "cu" => "application/cu-seeme",
207
- "cur" => "application/octet-stream",
208
- "curl" => "text/vnd.curl",
209
- "cww" => "application/prs.cww",
210
- "cxt" => "application/x-director",
211
- "cxx" => "text/plain",
212
- "dae" => "model/vnd.collada+xml",
213
- "daf" => "application/vnd.mobius.daf",
214
- "dart" => "application/vnd.dart",
215
- "dat" => "application/octet-stream",
216
- "dataless" => "application/vnd.fdsn.seed",
217
- "datasource" => "application/xml",
218
- "davmount" => "application/davmount+xml",
219
- "dbk" => "application/docbook+xml",
220
- "dbproj" => "text/plain",
221
- "dcr" => "application/x-director",
222
- "dcurl" => "text/vnd.curl.dcurl",
223
- "dd2" => "application/vnd.oma.dd2+xml",
224
- "ddd" => "application/vnd.fujixerox.ddd",
225
- "deb" => "application/octet-stream",
226
- "def" => "text/plain",
227
- "deploy" => "application/octet-stream",
228
- "der" => "application/x-x509-ca-cert",
229
- "dfac" => "application/vnd.dreamfactory",
230
- "dgc" => "application/x-dgc-compressed",
231
- "dgml" => "application/xml",
232
- "dib" => "image/bmp",
233
- "dic" => "text/x-c",
234
- "dif" => "video/x-dv",
235
- "dir" => "application/x-director",
236
- "dir_list" => "text/html",
237
- "dir_list_json" => "application/json",
238
- "dis" => "application/vnd.mobius.dis",
239
- "disco" => "text/xml",
240
- "disposition-notification" => "message/disposition-notification",
241
- "dist" => "application/octet-stream",
242
- "distz" => "application/octet-stream",
243
- "divx" => "video/divx",
244
- "djv" => "image/vnd.djvu",
245
- "djvu" => "image/vnd.djvu",
246
- "dll" => "application/x-msdownload",
247
- "dlm" => "text/dlm",
248
- "dmg" => "application/octet-stream",
249
- "dmp" => "application/vnd.tcpdump.pcap",
250
- "dms" => "application/octet-stream",
251
- "dna" => "application/vnd.dna",
252
- "dng" => "image/x-adobe-dng",
253
- "doc" => "application/msword",
254
- "docm" => "application/vnd.ms-word.document.macroEnabled.12",
255
- "docx" => "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
256
- "dot" => "application/msword",
257
- "dotm" => "application/vnd.ms-word.template.macroEnabled.12",
258
- "dotx" => "application/vnd.openxmlformats-officedocument.wordprocessingml.template",
259
- "dp" => "application/vnd.osgi.dp",
260
- "dpg" => "application/vnd.dpgraph",
261
- "dra" => "audio/vnd.dra",
262
- "dsc" => "text/prs.lines.tag",
263
- "dsp" => "application/octet-stream",
264
- "dssc" => "application/dssc+der",
265
- "dsw" => "text/plain",
266
- "dtb" => "application/x-dtbook+xml",
267
- "dtd" => "text/xml",
268
- "dts" => "audio/vnd.dts",
269
- "dtsconfig" => "text/xml",
270
- "dtshd" => "audio/vnd.dts.hd",
271
- "dump" => "application/octet-stream",
272
- "dv" => "video/x-dv",
273
- "dvb" => "video/vnd.dvb.file",
274
- "dvi" => "application/x-dvi",
275
- "dwf" => "drawing/x-dwf",
276
- "dwg" => "application/acad",
277
- "dwp" => "application/octet-stream",
278
- "dxf" => "application/x-dxf",
279
- "dxp" => "application/vnd.spotfire.dxp",
280
- "dxr" => "application/x-director",
281
- "ear" => "application/java-archive",
282
- "ecelp4800" => "audio/vnd.nuera.ecelp4800",
283
- "ecelp7470" => "audio/vnd.nuera.ecelp7470",
284
- "ecelp9600" => "audio/vnd.nuera.ecelp9600",
285
- "ecma" => "text/javascript",
286
- "edm" => "application/vnd.novadigm.edm",
287
- "edx" => "application/vnd.novadigm.edx",
288
- "efif" => "application/vnd.picsel",
289
- "ei6" => "application/vnd.pg.osasli",
290
- "elc" => "application/octet-stream",
291
- "emf" => "application/x-msmetafile",
292
- "eml" => "message/rfc822",
293
- "emma" => "application/emma+xml",
294
- "emz" => "application/octet-stream",
295
- "eol" => "audio/vnd.digital-winds",
296
- "eot" => "application/vnd.ms-fontobject",
297
- "eps" => "application/postscript",
298
- "epub" => "application/epub+zip",
299
- "erf" => "application/x-endace-erf",
300
- "es" => "text/javascript",
301
- "es3" => "application/vnd.eszigno3+xml",
302
- "esa" => "application/vnd.osgi.subsystem",
303
- "esf" => "application/vnd.epson.esf",
304
- "et3" => "application/vnd.eszigno3+xml",
305
- "etl" => "application/etl",
306
- "etx" => "text/x-setext",
307
- "eva" => "application/x-eva",
308
- "evy" => "application/envoy",
309
- "exe" => "application/octet-stream",
310
- "exi" => "application/exi",
311
- "ext" => "application/vnd.novadigm.ext",
312
- "ez" => "application/andrew-inset",
313
- "ez2" => "application/vnd.ezpix-album",
314
- "ez3" => "application/vnd.ezpix-package",
315
- "f" => "text/x-fortran",
316
- "f4v" => "video/x-f4v",
317
- "f77" => "text/x-fortran",
318
- "f90" => "text/x-fortran",
319
- "fbs" => "image/vnd.fastbidsheet",
320
- "fcdt" => "application/vnd.adobe.formscentral.fcdt",
321
- "fcs" => "application/vnd.isac.fcs",
322
- "fdf" => "application/vnd.fdf",
323
- "fe_launch" => "application/vnd.denovo.fcselayout-link",
324
- "feature" => "text/x-gherkin",
325
- "fg5" => "application/vnd.fujitsu.oasysgp",
326
- "fgd" => "application/x-director",
327
- "fh" => "image/x-freehand",
328
- "fh4" => "image/x-freehand",
329
- "fh5" => "image/x-freehand",
330
- "fh7" => "image/x-freehand",
331
- "fhc" => "image/x-freehand",
332
- "fif" => "application/fractals",
333
- "fig" => "application/x-xfig",
334
- "filters" => "application/xml",
335
- "fla" => "application/octet-stream",
336
- "flac" => "audio/flac",
337
- "fli" => "video/x-fli",
338
- "flo" => "application/vnd.micrografx.flo",
339
- "flr" => "x-world/x-vrml",
340
- "flv" => "video/x-flv",
341
- "flw" => "application/vnd.kde.kivio",
342
- "flx" => "text/vnd.fmi.flexstor",
343
- "fly" => "text/vnd.fly",
344
- "fm" => "application/vnd.framemaker",
345
- "fnc" => "application/vnd.frogans.fnc",
346
- "for" => "text/x-fortran",
347
- "fpx" => "image/vnd.fpx",
348
- "frame" => "application/vnd.framemaker",
349
- "fsc" => "application/vnd.fsc.weblaunch",
350
- "fsscript" => "application/fsharp-script",
351
- "fst" => "image/vnd.fst",
352
- "fsx" => "application/fsharp-script",
353
- "ftc" => "application/vnd.fluxtime.clip",
354
- "fti" => "application/vnd.anser-web-funds-transfer-initiation",
355
- "fvt" => "video/vnd.fvt",
356
- "fxp" => "application/vnd.adobe.fxp",
357
- "fxpl" => "application/vnd.adobe.fxp",
358
- "fzs" => "application/vnd.fuzzysheet",
359
- "g2w" => "application/vnd.geoplan",
360
- "g3" => "image/g3fax",
361
- "g3w" => "application/vnd.geospace",
362
- "gac" => "application/vnd.groove-account",
363
- "gam" => "application/x-tads",
364
- "gbr" => "application/rpki-ghostbusters",
365
- "gca" => "application/x-gca-compressed",
366
- "gdl" => "model/vnd.gdl",
367
- "gdoc" => "application/vnd.google-apps.document",
368
- "gemini" => "text/gemini",
369
- "generictest" => "application/xml",
370
- "geo" => "application/vnd.dynageo",
371
- "geojson" => "application/geo+json",
372
- "gex" => "application/vnd.geometry-explorer",
373
- "ggb" => "application/vnd.geogebra.file",
374
- "ggt" => "application/vnd.geogebra.tool",
375
- "ghf" => "application/vnd.groove-help",
376
- "gif" => "image/gif",
377
- "gim" => "application/vnd.groove-identity-message",
378
- "glb" => "model/gltf-binary",
379
- "gltf" => "model/gltf+json",
380
- "gmi" => "text/gemini",
381
- "gml" => "application/gml+xml",
382
- "gmx" => "application/vnd.gmx",
383
- "gnumeric" => "application/x-gnumeric",
384
- "gph" => "application/vnd.flographit",
385
- "gpx" => "application/gpx+xml",
386
- "gqf" => "application/vnd.grafeq",
387
- "gqs" => "application/vnd.grafeq",
388
- "gram" => "application/srgs",
389
- "gramps" => "application/x-gramps-xml",
390
- "gre" => "application/vnd.geometry-explorer",
391
- "group" => "text/x-ms-group",
392
- "grv" => "application/vnd.groove-injector",
393
- "grxml" => "application/srgs+xml",
394
- "gsf" => "application/x-font-ghostscript",
395
- "gsheet" => "application/vnd.google-apps.spreadsheet",
396
- "gslides" => "application/vnd.google-apps.presentation",
397
- "gsm" => "audio/x-gsm",
398
- "gtar" => "application/x-gtar",
399
- "gtm" => "application/vnd.groove-tool-message",
400
- "gtw" => "model/vnd.gtw",
401
- "gv" => "text/vnd.graphviz",
402
- "gxf" => "application/gxf",
403
- "gxt" => "application/vnd.geonext",
404
- "gz" => "application/gzip",
405
- "h" => "text/plain",
406
- "h261" => "video/h261",
407
- "h263" => "video/h263",
408
- "h264" => "video/h264",
409
- "hal" => "application/vnd.hal+xml",
410
- "hbci" => "application/vnd.hbci",
411
- "hbs" => "text/x-handlebars-template",
412
- "hdd" => "application/x-virtualbox-hdd",
413
- "hdf" => "application/x-hdf",
414
- "hdml" => "text/x-hdml",
415
- "hdr" => "image/vnd.radiance",
416
- "heic" => "image/heic",
417
- "heics" => "image/heic-sequence",
418
- "heif" => "image/heif",
419
- "heifs" => "image/heif-sequence",
420
- "hh" => "text/plain",
421
- "hhc" => "application/x-oleobject",
422
- "hhk" => "application/octet-stream",
423
- "hhp" => "application/octet-stream",
424
- "hjson" => "application/hjson",
425
- "hlp" => "application/winhlp",
426
- "hpgl" => "application/vnd.hp-hpgl",
427
- "hpid" => "application/vnd.hp-hpid",
428
- "hpp" => "text/plain",
429
- "hps" => "application/vnd.hp-hps",
430
- "hqx" => "application/mac-binhex40",
431
- "hta" => "application/hta",
432
- "htc" => "text/x-component",
433
- "htke" => "application/vnd.kenameaapp",
434
- "htm" => "text/html",
435
- "html" => "text/html",
436
- "htt" => "text/webviewhtml",
437
- "hvd" => "application/vnd.yamaha.hv-dic",
438
- "hvp" => "application/vnd.yamaha.hv-voice",
439
- "hvs" => "application/vnd.yamaha.hv-script",
440
- "hxa" => "application/xml",
441
- "hxc" => "application/xml",
442
- "hxd" => "application/octet-stream",
443
- "hxe" => "application/xml",
444
- "hxf" => "application/xml",
445
- "hxh" => "application/octet-stream",
446
- "hxi" => "application/octet-stream",
447
- "hxk" => "application/xml",
448
- "hxq" => "application/octet-stream",
449
- "hxr" => "application/octet-stream",
450
- "hxs" => "application/octet-stream",
451
- "hxt" => "text/html",
452
- "hxv" => "application/xml",
453
- "hxw" => "application/octet-stream",
454
- "hxx" => "text/plain",
455
- "i" => "text/plain",
456
- "i2g" => "application/vnd.intergeo",
457
- "icc" => "application/vnd.iccprofile",
458
- "ice" => "x-conference/x-cooltalk",
459
- "icm" => "application/vnd.iccprofile",
460
- "ico" => "image/x-icon",
461
- "ics" => "text/calendar",
462
- "idl" => "text/plain",
463
- "ief" => "image/ief",
464
- "ifb" => "text/calendar",
465
- "ifm" => "application/vnd.shana.informed.formdata",
466
- "iges" => "model/iges",
467
- "igl" => "application/vnd.igloader",
468
- "igm" => "application/vnd.insors.igm",
469
- "igs" => "model/iges",
470
- "igx" => "application/vnd.micrografx.igx",
471
- "iif" => "application/vnd.shana.informed.interchange",
472
- "iii" => "application/x-iphone",
473
- "img" => "application/octet-stream",
474
- "imp" => "application/vnd.accpac.simply.imp",
475
- "ims" => "application/vnd.ms-ims",
476
- "in" => "text/plain",
477
- "inc" => "text/plain",
478
- "inf" => "application/octet-stream",
479
- "ini" => "text/plain",
480
- "ink" => "application/inkml+xml",
481
- "inkml" => "application/inkml+xml",
482
- "inl" => "text/plain",
483
- "ins" => "application/x-internet-signup",
484
- "install" => "application/x-install-instructions",
485
- "iota" => "application/vnd.astraea-software.iota",
486
- "ipa" => "application/x-itunes-ipa",
487
- "ipfix" => "application/ipfix",
488
- "ipg" => "application/x-itunes-ipg",
489
- "ipk" => "application/vnd.shana.informed.package",
490
- "ipproj" => "text/plain",
491
- "ipsw" => "application/x-itunes-ipsw",
492
- "iqy" => "text/x-ms-iqy",
493
- "irm" => "application/vnd.ibm.rights-management",
494
- "irp" => "application/vnd.irepository.package+xml",
495
- "iso" => "application/octet-stream",
496
- "isp" => "application/x-internet-signup",
497
- "ite" => "application/x-itunes-ite",
498
- "itlp" => "application/x-itunes-itlp",
499
- "itms" => "application/x-itunes-itms",
500
- "itp" => "application/vnd.shana.informed.formtemplate",
501
- "itpc" => "application/x-itunes-itpc",
502
- "ivf" => "video/x-ivf",
503
- "ivp" => "application/vnd.immervision-ivp",
504
- "ivu" => "application/vnd.immervision-ivu",
505
- "jad" => "text/vnd.sun.j2me.app-descriptor",
506
- "jade" => "text/jade",
507
- "jam" => "application/vnd.jam",
508
- "jar" => "application/java-archive",
509
- "jardiff" => "application/x-java-archive-diff",
510
- "java" => "application/octet-stream",
511
- "jck" => "application/liquidmotion",
512
- "jcz" => "application/liquidmotion",
513
- "jfif" => "image/jpeg",
514
- "jisp" => "application/vnd.jisp",
515
- "jlt" => "application/vnd.hp-jlyt",
516
- "jng" => "image/x-jng",
517
- "jnlp" => "application/x-java-jnlp-file",
518
- "joda" => "application/vnd.joost.joda-archive",
519
- "jp2" => "image/jp2",
520
- "jpb" => "application/octet-stream",
521
- "jpe" => "image/jpeg",
522
- "jpeg" => "image/jpeg",
523
- "jpf" => "image/jpx",
524
- "jpg" => "image/jpeg",
525
- "jpg2" => "image/jp2",
526
- "jpgm" => "video/jpm",
527
- "jpgv" => "video/jpeg",
528
- "jpm" => "image/jpm",
529
- "jpx" => "image/jpx",
530
- "js" => "text/javascript",
531
- "jsm" => "text/javascript",
532
- "json" => "application/json",
533
- "json5" => "application/json5",
534
- "jsonld" => "application/ld+json",
535
- "jsonml" => "application/jsonml+json",
536
- "jsx" => "text/javascript",
537
- "jsxbin" => "text/plain",
538
- "jxl" => "image/jxl",
539
- "k25" => "image/x-kodak-k25",
540
- "kar" => "audio/midi",
541
- "karbon" => "application/vnd.kde.karbon",
542
- "kdc" => "image/x-kodak-kdc",
543
- "kfo" => "application/vnd.kde.kformula",
544
- "kia" => "application/vnd.kidspiration",
545
- "kml" => "application/vnd.google-earth.kml+xml",
546
- "kmz" => "application/vnd.google-earth.kmz",
547
- "kne" => "application/vnd.kinar",
548
- "knp" => "application/vnd.kinar",
549
- "kon" => "application/vnd.kde.kontour",
550
- "kpr" => "application/vnd.kde.kpresenter",
551
- "kpt" => "application/vnd.kde.kpresenter",
552
- "kpxx" => "application/vnd.ds-keypoint",
553
- "ksp" => "application/vnd.kde.kspread",
554
- "ktr" => "application/vnd.kahootz",
555
- "ktx" => "image/ktx",
556
- "ktz" => "application/vnd.kahootz",
557
- "kwd" => "application/vnd.kde.kword",
558
- "kwt" => "application/vnd.kde.kword",
559
- "lasxml" => "application/vnd.las.las+xml",
560
- "latex" => "application/x-latex",
561
- "lbd" => "application/vnd.llamagraphics.life-balance.desktop",
562
- "lbe" => "application/vnd.llamagraphics.life-balance.exchange+xml",
563
- "les" => "application/vnd.hhe.lesson-player",
564
- "less" => "text/less",
565
- "lha" => "application/x-lzh-compressed",
566
- "library-ms" => "application/windows-library+xml",
567
- "link66" => "application/vnd.route66.link66+xml",
568
- "list" => "text/plain",
569
- "list3820" => "application/vnd.ibm.modcap",
570
- "listafp" => "application/vnd.ibm.modcap",
571
- "lit" => "application/x-ms-reader",
572
- "litcoffee" => "text/coffeescript",
573
- "lnk" => "application/x-ms-shortcut",
574
- "loadtest" => "application/xml",
575
- "log" => "text/plain",
576
- "lostxml" => "application/lost+xml",
577
- "lpk" => "application/octet-stream",
578
- "lrf" => "application/octet-stream",
579
- "lrm" => "application/vnd.ms-lrm",
580
- "lsf" => "video/x-la-asf",
581
- "lst" => "text/plain",
582
- "lsx" => "video/x-la-asf",
583
- "ltf" => "application/vnd.frogans.ltf",
584
- "lua" => "text/x-lua",
585
- "luac" => "application/x-lua-bytecode",
586
- "lvp" => "audio/vnd.lucent.voice",
587
- "lwp" => "application/vnd.lotus-wordpro",
588
- "lzh" => "application/octet-stream",
589
- "m13" => "application/x-msmediaview",
590
- "m14" => "application/x-msmediaview",
591
- "m1v" => "video/mpeg",
592
- "m21" => "application/mp21",
593
- "m2a" => "audio/mpeg",
594
- "m2t" => "video/vnd.dlna.mpeg-tts",
595
- "m2ts" => "video/vnd.dlna.mpeg-tts",
596
- "m2v" => "video/mpeg",
597
- "m3a" => "audio/mpeg",
598
- "m3u" => "audio/x-mpegurl",
599
- "m3u8" => "audio/x-mpegurl",
600
- "m4a" => "audio/m4a",
601
- "m4b" => "audio/m4b",
602
- "m4p" => "audio/m4p",
603
- "m4r" => "audio/x-m4r",
604
- "m4u" => "video/vnd.mpegurl",
605
- "m4v" => "video/x-m4v",
606
- "ma" => "application/mathematica",
607
- "mac" => "image/x-macpaint",
608
- "mads" => "application/mads+xml",
609
- "mag" => "application/vnd.ecowin.chart",
610
- "mak" => "text/plain",
611
- "maker" => "application/vnd.framemaker",
612
- "man" => "application/x-troff-man",
613
- "manifest" => "application/x-ms-manifest",
614
- "map" => "text/plain",
615
- "mar" => "application/octet-stream",
616
- "markdown" => "text/markdown",
617
- "master" => "application/xml",
618
- "mathml" => "application/mathml+xml",
619
- "mb" => "application/mathematica",
620
- "mbk" => "application/vnd.mobius.mbk",
621
- "mbox" => "application/mbox",
622
- "mc1" => "application/vnd.medcalcdata",
623
- "mcd" => "application/vnd.mcd",
624
- "mcurl" => "text/vnd.curl.mcurl",
625
- "md" => "text/markdown",
626
- "mda" => "application/msaccess",
627
- "mdb" => "application/x-msaccess",
628
- "mde" => "application/msaccess",
629
- "mdi" => "image/vnd.ms-modi",
630
- "mdp" => "application/octet-stream",
631
- "me" => "application/x-troff-me",
632
- "mesh" => "model/mesh",
633
- "meta4" => "application/metalink4+xml",
634
- "metalink" => "application/metalink+xml",
635
- "mets" => "application/mets+xml",
636
- "mfm" => "application/vnd.mfmp",
637
- "mfp" => "application/x-shockwave-flash",
638
- "mft" => "application/rpki-manifest",
639
- "mgp" => "application/vnd.osgeo.mapguide.package",
640
- "mgz" => "application/vnd.proteus.magazine",
641
- "mht" => "message/rfc822",
642
- "mhtml" => "message/rfc822",
643
- "mid" => "audio/mid",
644
- "midi" => "audio/mid",
645
- "mie" => "application/x-mie",
646
- "mif" => "application/vnd.mif",
647
- "mime" => "message/rfc822",
648
- "mix" => "application/octet-stream",
649
- "mj2" => "video/mj2",
650
- "mjp2" => "video/mj2",
651
- "mjs" => "application/javascript",
652
- "mk" => "text/plain",
653
- "mk3d" => "video/x-matroska",
654
- "mka" => "audio/x-matroska",
655
- "mkd" => "text/x-markdown",
656
- "mks" => "video/x-matroska",
657
- "mkv" => "video/x-matroska",
658
- "mlp" => "application/vnd.dolby.mlp",
659
- "mmd" => "application/vnd.chipnuts.karaoke-mmd",
660
- "mmf" => "application/x-smaf",
661
- "mml" => "text/mathml",
662
- "mmr" => "image/vnd.fujixerox.edmics-mmr",
663
- "mng" => "video/x-mng",
664
- "mno" => "text/xml",
665
- "mny" => "application/x-msmoney",
666
- "mobi" => "application/x-mobipocket-ebook",
667
- "mod" => "video/mpeg",
668
- "mods" => "application/mods+xml",
669
- "mov" => "video/quicktime",
670
- "movie" => "video/x-sgi-movie",
671
- "mp2" => "audio/mpeg",
672
- "mp21" => "application/mp21",
673
- "mp2a" => "audio/mpeg",
674
- "mp2v" => "video/mpeg",
675
- "mp3" => "audio/mpeg",
676
- "mp4" => "video/mp4",
677
- "mp4a" => "audio/mp4",
678
- "mp4s" => "application/mp4",
679
- "mp4v" => "video/mp4",
680
- "mpa" => "video/mpeg",
681
- "mpc" => "application/vnd.mophun.certificate",
682
- "mpd" => "application/dash+xml",
683
- "mpe" => "video/mpeg",
684
- "mpeg" => "video/mpeg",
685
- "mpf" => "application/vnd.ms-mediapackage",
686
- "mpg" => "video/mpeg",
687
- "mpg4" => "video/mp4",
688
- "mpga" => "audio/mpeg",
689
- "mpkg" => "application/vnd.apple.installer+xml",
690
- "mpm" => "application/vnd.blueice.multipass",
691
- "mpn" => "application/vnd.mophun.application",
692
- "mpp" => "application/vnd.ms-project",
693
- "mpt" => "application/vnd.ms-project",
694
- "mpv2" => "video/mpeg",
695
- "mpy" => "application/vnd.ibm.minipay",
696
- "mqv" => "video/quicktime",
697
- "mqy" => "application/vnd.mobius.mqy",
698
- "mrc" => "application/marc",
699
- "mrcx" => "application/marcxml+xml",
700
- "mrw" => "image/x-minolta-mrw",
701
- "ms" => "application/x-troff-ms",
702
- "mscml" => "application/mediaservercontrol+xml",
703
- "mseed" => "application/vnd.fdsn.mseed",
704
- "mseq" => "application/vnd.mseq",
705
- "msf" => "application/vnd.epson.msf",
706
- "msg" => "application/vnd.ms-outlook",
707
- "msh" => "model/mesh",
708
- "msi" => "application/octet-stream",
709
- "msl" => "application/vnd.mobius.msl",
710
- "msm" => "application/octet-stream",
711
- "mso" => "application/octet-stream",
712
- "msp" => "application/octet-stream",
713
- "msty" => "application/vnd.muvee.style",
714
- "mts" => "video/vnd.dlna.mpeg-tts",
715
- "mtx" => "application/xml",
716
- "mus" => "application/vnd.musician",
717
- "musicxml" => "application/vnd.recordare.musicxml+xml",
718
- "mvb" => "application/x-msmediaview",
719
- "mvc" => "application/x-miva-compiled",
720
- "mwf" => "application/vnd.mfer",
721
- "mxf" => "application/mxf",
722
- "mxl" => "application/vnd.recordare.musicxml",
723
- "mxml" => "application/xv+xml",
724
- "mxp" => "application/x-mmxp",
725
- "mxs" => "application/vnd.triscape.mxs",
726
- "mxu" => "video/vnd.mpegurl",
727
- "n-gage" => "application/vnd.nokia.n-gage.symbian.install",
728
- "n3" => "text/n3",
729
- "nb" => "application/mathematica",
730
- "nbp" => "application/vnd.wolfram.player",
731
- "nc" => "application/x-netcdf",
732
- "ncx" => "application/x-dtbncx+xml",
733
- "nef" => "image/x-nikon-nef",
734
- "nfo" => "text/x-nfo",
735
- "ngdat" => "application/vnd.nokia.n-gage.data",
736
- "nitf" => "application/vnd.nitf",
737
- "nlu" => "application/vnd.neurolanguage.nlu",
738
- "nml" => "application/vnd.enliven",
739
- "nnd" => "application/vnd.noblenet-directory",
740
- "nns" => "application/vnd.noblenet-sealer",
741
- "nnw" => "application/vnd.noblenet-web",
742
- "npx" => "image/vnd.net-fpx",
743
- "nq" => "application/n-quads",
744
- "nrw" => "image/x-nikon-nrw",
745
- "nsc" => "video/x-ms-asf",
746
- "nsf" => "application/vnd.lotus-notes",
747
- "nt" => "application/n-triples",
748
- "ntf" => "application/vnd.nitf",
749
- "nws" => "message/rfc822",
750
- "nzb" => "application/x-nzb",
751
- "oa2" => "application/vnd.fujitsu.oasys2",
752
- "oa3" => "application/vnd.fujitsu.oasys3",
753
- "oas" => "application/vnd.fujitsu.oasys",
754
- "obd" => "application/x-msbinder",
755
- "obj" => "application/x-tgif",
756
- "ocx" => "application/octet-stream",
757
- "oda" => "application/oda",
758
- "odb" => "application/vnd.oasis.opendocument.database",
759
- "odc" => "application/vnd.oasis.opendocument.chart",
760
- "odf" => "application/vnd.oasis.opendocument.formula",
761
- "odft" => "application/vnd.oasis.opendocument.formula-template",
762
- "odg" => "application/vnd.oasis.opendocument.graphics",
763
- "odh" => "text/plain",
764
- "odi" => "application/vnd.oasis.opendocument.image",
765
- "odl" => "text/plain",
766
- "odm" => "application/vnd.oasis.opendocument.text-master",
767
- "odp" => "application/vnd.oasis.opendocument.presentation",
768
- "ods" => "application/vnd.oasis.opendocument.spreadsheet",
769
- "odt" => "application/vnd.oasis.opendocument.text",
770
- "oga" => "audio/ogg",
771
- "ogg" => "audio/ogg",
772
- "ogv" => "video/ogg",
773
- "ogx" => "application/ogg",
774
- "omdoc" => "application/omdoc+xml",
775
- "one" => "application/onenote",
776
- "onea" => "application/onenote",
777
- "onepkg" => "application/onenote",
778
- "onetmp" => "application/onenote",
779
- "onetoc" => "application/onenote",
780
- "onetoc2" => "application/onenote",
781
- "opf" => "application/oebps-package+xml",
782
- "opml" => "text/x-opml",
783
- "oprc" => "application/vnd.palm",
784
- "opus" => "audio/ogg",
785
- "orderedtest" => "application/xml",
786
- "orf" => "image/x-olympus-orf",
787
- "org" => "application/vnd.lotus-organizer",
788
- "osdx" => "application/opensearchdescription+xml",
789
- "osf" => "application/vnd.yamaha.openscoreformat",
790
- "osfpvg" => "application/vnd.yamaha.openscoreformat.osfpvg+xml",
791
- "otc" => "application/vnd.oasis.opendocument.chart-template",
792
- "otf" => "application/font-sfnt",
793
- "otg" => "application/vnd.oasis.opendocument.graphics-template",
794
- "oth" => "application/vnd.oasis.opendocument.text-web",
795
- "oti" => "application/vnd.oasis.opendocument.image-template",
796
- "otp" => "application/vnd.oasis.opendocument.presentation-template",
797
- "ots" => "application/vnd.oasis.opendocument.spreadsheet-template",
798
- "ott" => "application/vnd.oasis.opendocument.text-template",
799
- "ova" => "application/x-virtualbox-ova",
800
- "ovf" => "application/x-virtualbox-ovf",
801
- "oxps" => "application/oxps",
802
- "oxt" => "application/vnd.openofficeorg.extension",
803
- "p" => "text/x-pascal",
804
- "p10" => "application/pkcs10",
805
- "p12" => "application/x-pkcs12",
806
- "p7b" => "application/x-pkcs7-certificates",
807
- "p7c" => "application/pkcs7-mime",
808
- "p7m" => "application/pkcs7-mime",
809
- "p7r" => "application/x-pkcs7-certreqresp",
810
- "p7s" => "application/pkcs7-signature",
811
- "p8" => "application/pkcs8",
812
- "pac" => "application/x-ns-proxy-autoconfig",
813
- "parquet" => "application/vnd.apache.parquet",
814
- "pas" => "text/x-pascal",
815
- "paw" => "application/vnd.pawaafile",
816
- "pbd" => "application/vnd.powerbuilder6",
817
- "pbm" => "image/x-portable-bitmap",
818
- "pcap" => "application/vnd.tcpdump.pcap",
819
- "pcast" => "application/x-podcast",
820
- "pcf" => "application/x-font-pcf",
821
- "pcl" => "application/vnd.hp-pcl",
822
- "pclxl" => "application/vnd.hp-pclxl",
823
- "pct" => "image/pict",
824
- "pcurl" => "application/vnd.curl.pcurl",
825
- "pcx" => "application/octet-stream",
826
- "pcz" => "application/octet-stream",
827
- "pdb" => "application/vnd.palm",
828
- "pde" => "text/x-processing",
829
- "pdf" => "application/pdf",
830
- "pef" => "image/x-pentax-pef",
831
- "pem" => "application/x-x509-ca-cert",
832
- "pfa" => "application/x-font-type1",
833
- "pfb" => "application/octet-stream",
834
- "pfm" => "application/octet-stream",
835
- "pfr" => "application/font-tdpfr",
836
- "pfx" => "application/x-pkcs12",
837
- "pgm" => "image/x-portable-graymap",
838
- "pgn" => "application/x-chess-pgn",
839
- "pgp" => "application/pgp-encrypted",
840
- "php" => "application/x-httpd-php",
841
- "pic" => "image/pict",
842
- "pict" => "image/pict",
843
- "pkg" => "application/octet-stream",
844
- "pkgdef" => "text/plain",
845
- "pkgundef" => "text/plain",
846
- "pki" => "application/pkixcmp",
847
- "pkipath" => "application/pkix-pkipath",
848
- "pko" => "application/vnd.ms-pki.pko",
849
- "pkpass" => "application/vnd.apple.pkpass",
850
- "pl" => "application/x-perl",
851
- "plb" => "application/vnd.3gpp.pic-bw-large",
852
- "plc" => "application/vnd.mobius.plc",
853
- "plf" => "application/vnd.pocketlearn",
854
- "pls" => "audio/scpls",
855
- "pm" => "application/x-perl",
856
- "pma" => "application/x-perfmon",
857
- "pmc" => "application/x-perfmon",
858
- "pml" => "application/x-perfmon",
859
- "pmr" => "application/x-perfmon",
860
- "pmw" => "application/x-perfmon",
861
- "png" => "image/png",
862
- "pnm" => "image/x-portable-anymap",
863
- "pnt" => "image/x-macpaint",
864
- "pntg" => "image/x-macpaint",
865
- "pnz" => "image/png",
866
- "portpkg" => "application/vnd.macports.portpkg",
867
- "pot" => "application/vnd.ms-powerpoint",
868
- "potm" => "application/vnd.ms-powerpoint.template.macroEnabled.12",
869
- "potx" => "application/vnd.openxmlformats-officedocument.presentationml.template",
870
- "ppa" => "application/vnd.ms-powerpoint",
871
- "ppam" => "application/vnd.ms-powerpoint.addin.macroEnabled.12",
872
- "ppd" => "application/vnd.cups-ppd",
873
- "ppm" => "image/x-portable-pixmap",
874
- "pps" => "application/vnd.ms-powerpoint",
875
- "ppsm" => "application/vnd.ms-powerpoint.slideshow.macroEnabled.12",
876
- "ppsx" => "application/vnd.openxmlformats-officedocument.presentationml.slideshow",
877
- "ppt" => "application/vnd.ms-powerpoint",
878
- "pptm" => "application/vnd.ms-powerpoint.presentation.macroEnabled.12",
879
- "pptx" => "application/vnd.openxmlformats-officedocument.presentationml.presentation",
880
- "pqa" => "application/vnd.palm",
881
- "prc" => "application/x-mobipocket-ebook",
882
- "pre" => "application/vnd.lotus-freelance",
883
- "prf" => "application/pics-rules",
884
- "prm" => "application/octet-stream",
885
- "prx" => "application/octet-stream",
886
- "ps" => "application/postscript",
887
- "psb" => "application/vnd.3gpp.pic-bw-small",
888
- "psc1" => "application/PowerShell",
889
- "psd" => "application/octet-stream",
890
- "psess" => "application/xml",
891
- "psf" => "application/x-font-linux-psf",
892
- "pskcxml" => "application/pskc+xml",
893
- "psm" => "application/octet-stream",
894
- "psp" => "application/octet-stream",
895
- "pst" => "application/vnd.ms-outlook",
896
- "ptid" => "application/vnd.pvi.ptid1",
897
- "pub" => "application/x-mspublisher",
898
- "pvb" => "application/vnd.3gpp.pic-bw-var",
899
- "pwn" => "application/vnd.3m.post-it-notes",
900
- "pwz" => "application/vnd.ms-powerpoint",
901
- "py" => "text/plain",
902
- "pya" => "audio/vnd.ms-playready.media.pya",
903
- "pyv" => "video/vnd.ms-playready.media.pyv",
904
- "qam" => "application/vnd.epson.quickanime",
905
- "qbo" => "application/vnd.intu.qbo",
906
- "qfx" => "application/vnd.intu.qfx",
907
- "qht" => "text/x-html-insertion",
908
- "qhtm" => "text/x-html-insertion",
909
- "qps" => "application/vnd.publishare-delta-tree",
910
- "qt" => "video/quicktime",
911
- "qti" => "image/x-quicktime",
912
- "qtif" => "image/x-quicktime",
913
- "qtl" => "application/x-quicktimeplayer",
914
- "qwd" => "application/vnd.quark.quarkxpress",
915
- "qwt" => "application/vnd.quark.quarkxpress",
916
- "qxb" => "application/vnd.quark.quarkxpress",
917
- "qxd" => "application/octet-stream",
918
- "qxl" => "application/vnd.quark.quarkxpress",
919
- "qxt" => "application/vnd.quark.quarkxpress",
920
- "ra" => "audio/x-pn-realaudio",
921
- "raf" => "image/x-fuji-raf",
922
- "ram" => "audio/x-pn-realaudio",
923
- "raml" => "application/raml+yaml",
924
- "rar" => "application/x-rar-compressed",
925
- "ras" => "image/x-cmu-raster",
926
- "rat" => "application/rat-file",
927
- "raw" => "image/x-panasonic-rw",
928
- "rb" => "text/plain",
929
- "rc" => "text/plain",
930
- "rc2" => "text/plain",
931
- "rcprofile" => "application/vnd.ipunplugged.rcprofile",
932
- "rct" => "text/plain",
933
- "rdf" => "application/rdf+xml",
934
- "rdlc" => "application/xml",
935
- "rdz" => "application/vnd.data-vision.rdz",
936
- "reg" => "text/plain",
937
- "rep" => "application/vnd.businessobjects",
938
- "res" => "application/x-dtbresource+xml",
939
- "resx" => "application/xml",
940
- "rf" => "image/vnd.rn-realflash",
941
- "rgb" => "image/x-rgb",
942
- "rgs" => "text/plain",
943
- "rif" => "application/reginfo+xml",
944
- "rip" => "audio/vnd.rip",
945
- "ris" => "application/x-research-info-systems",
946
- "rl" => "application/resource-lists+xml",
947
- "rlc" => "image/vnd.fujixerox.edmics-rlc",
948
- "rld" => "application/resource-lists-diff+xml",
949
- "rm" => "application/vnd.rn-realmedia",
950
- "rmi" => "audio/mid",
951
- "rmp" => "application/vnd.rn-rn_music_package",
952
- "rms" => "application/vnd.jcp.javame.midlet-rms",
953
- "rmvb" => "application/vnd.rn-realmedia-vbr",
954
- "rnc" => "application/relax-ng-compact-syntax",
955
- "rng" => "application/xml",
956
- "roa" => "application/rpki-roa",
957
- "roff" => "application/x-troff",
958
- "rp9" => "application/vnd.cloanto.rp9",
959
- "rpm" => "audio/x-pn-realaudio-plugin",
960
- "rpss" => "application/vnd.nokia.radio-presets",
961
- "rpst" => "application/vnd.nokia.radio-preset",
962
- "rq" => "application/sparql-query",
963
- "rqy" => "text/x-ms-rqy",
964
- "rs" => "text/x-rust",
965
- "rsd" => "application/rsd+xml",
966
- "rss" => "application/rss+xml",
967
- "rtf" => "application/rtf",
968
- "rtx" => "text/richtext",
969
- "ruleset" => "application/xml",
970
- "run" => "application/x-makeself",
971
- "rvt" => "application/octet-stream",
972
- "rw2" => "image/x-panasonic-rw2",
973
- "rwl" => "image/x-panasonic-rw2",
974
- "s" => "text/plain",
975
- "s3m" => "audio/s3m",
976
- "saf" => "application/vnd.yamaha.smaf-audio",
977
- "safariextz" => "application/x-safari-safariextz",
978
- "sass" => "text/x-sass",
979
- "sbml" => "application/sbml+xml",
980
- "sc" => "application/vnd.ibm.secure-container",
981
- "scd" => "application/x-msschedule",
982
- "scm" => "application/vnd.lotus-screencam",
983
- "scq" => "application/scvp-cv-request",
984
- "scr" => "text/plain",
985
- "scs" => "application/scvp-cv-response",
986
- "scss" => "text/x-scss",
987
- "sct" => "text/scriptlet",
988
- "scurl" => "text/vnd.curl.scurl",
989
- "sd2" => "audio/x-sd2",
990
- "sda" => "application/vnd.stardivision.draw",
991
- "sdc" => "application/vnd.stardivision.calc",
992
- "sdd" => "application/vnd.stardivision.impress",
993
- "sdkd" => "application/vnd.solent.sdkm+xml",
994
- "sdkm" => "application/vnd.solent.sdkm+xml",
995
- "sdp" => "application/sdp",
996
- "sdw" => "application/vnd.stardivision.writer",
997
- "sea" => "application/octet-stream",
998
- "searchconnector-ms" => "application/windows-search-connector+xml",
999
- "see" => "application/vnd.seemail",
1000
- "seed" => "application/vnd.fdsn.seed",
1001
- "sema" => "application/vnd.sema",
1002
- "semd" => "application/vnd.semd",
1003
- "semf" => "application/vnd.semf",
1004
- "ser" => "application/java-serialized-object",
1005
- "setpay" => "application/set-payment-initiation",
1006
- "setreg" => "application/set-registration-initiation",
1007
- "settings" => "application/xml",
1008
- "sfd-hdstx" => "application/vnd.hydrostatix.sof-data",
1009
- "sfs" => "application/vnd.spotfire.sfs",
1010
- "sfv" => "text/x-sfv",
1011
- "sgi" => "image/sgi",
1012
- "sgimb" => "application/x-sgimb",
1013
- "sgl" => "application/vnd.stardivision.writer-global",
1014
- "sgm" => "text/sgml",
1015
- "sgml" => "text/sgml",
1016
- "sh" => "application/x-sh",
1017
- "shar" => "application/x-shar",
1018
- "shex" => "text/shex",
1019
- "shf" => "application/shf+xml",
1020
- "shtml" => "text/html",
1021
- "sid" => "image/x-mrsid-image",
1022
- "sig" => "application/pgp-signature",
1023
- "sil" => "audio/silk",
1024
- "silo" => "model/mesh",
1025
- "sis" => "application/vnd.symbian.install",
1026
- "sisx" => "application/vnd.symbian.install",
1027
- "sit" => "application/x-stuffit",
1028
- "sitemap" => "application/xml",
1029
- "sitx" => "application/x-stuffitx",
1030
- "skd" => "application/vnd.koan",
1031
- "skin" => "application/xml",
1032
- "skm" => "application/vnd.koan",
1033
- "skp" => "application/x-koan",
1034
- "skt" => "application/vnd.koan",
1035
- "sldm" => "application/vnd.ms-powerpoint.slide.macroEnabled.12",
1036
- "sldx" => "application/vnd.openxmlformats-officedocument.presentationml.slide",
1037
- "slim" => "text/slim",
1038
- "slk" => "application/vnd.ms-excel",
1039
- "slm" => "text/slim",
1040
- "sln" => "text/plain",
1041
- "slt" => "application/vnd.epson.salt",
1042
- "slupkg-ms" => "application/x-ms-license",
1043
- "sm" => "application/vnd.stepmania.stepchart",
1044
- "smd" => "audio/x-smd",
1045
- "smf" => "application/vnd.stardivision.math",
1046
- "smi" => "application/octet-stream",
1047
- "smil" => "application/smil+xml",
1048
- "smv" => "video/x-smv",
1049
- "smx" => "audio/x-smd",
1050
- "smz" => "audio/x-smd",
1051
- "smzip" => "application/vnd.stepmania.package",
1052
- "snd" => "audio/basic",
1053
- "snf" => "application/x-font-snf",
1054
- "snippet" => "application/xml",
1055
- "snp" => "application/octet-stream",
1056
- "so" => "application/octet-stream",
1057
- "sol" => "text/plain",
1058
- "sor" => "text/plain",
1059
- "spc" => "application/x-pkcs7-certificates",
1060
- "spf" => "application/vnd.yamaha.smaf-phrase",
1061
- "spl" => "application/futuresplash",
1062
- "spot" => "text/vnd.in3d.spot",
1063
- "spp" => "application/scvp-vp-response",
1064
- "spq" => "application/scvp-vp-request",
1065
- "spx" => "audio/ogg",
1066
- "sql" => "application/x-sql",
1067
- "sr2" => "image/x-sony-sr2",
1068
- "src" => "application/x-wais-source",
1069
- "srf" => "text/plain",
1070
- "srt" => "application/x-subrip",
1071
- "sru" => "application/sru+xml",
1072
- "srx" => "application/sparql-results+xml",
1073
- "ssdl" => "application/ssdl+xml",
1074
- "sse" => "application/vnd.kodak-descriptor",
1075
- "ssf" => "application/vnd.epson.ssf",
1076
- "ssisdeploymentmanifest" => "text/xml",
1077
- "ssm" => "application/streamingmedia",
1078
- "ssml" => "application/ssml+xml",
1079
- "sst" => "application/vnd.ms-pki.certstore",
1080
- "st" => "application/vnd.sailingtracker.track",
1081
- "stc" => "application/vnd.sun.xml.calc.template",
1082
- "std" => "application/vnd.sun.xml.draw.template",
1083
- "step" => "application/step",
1084
- "stf" => "application/vnd.wt.stf",
1085
- "sti" => "application/vnd.sun.xml.impress.template",
1086
- "stk" => "application/hyperstudio",
1087
- "stl" => "application/vnd.ms-pki.stl",
1088
- "stp" => "application/step",
1089
- "str" => "application/vnd.pg.format",
1090
- "stw" => "application/vnd.sun.xml.writer.template",
1091
- "styl" => "text/stylus",
1092
- "stylus" => "text/stylus",
1093
- "sub" => "text/vnd.dvb.subtitle",
1094
- "sus" => "application/vnd.sus-calendar",
1095
- "susp" => "application/vnd.sus-calendar",
1096
- "sv4cpio" => "application/x-sv4cpio",
1097
- "sv4crc" => "application/x-sv4crc",
1098
- "svc" => "application/xml",
1099
- "svd" => "application/vnd.svd",
1100
- "svg" => "image/svg+xml",
1101
- "svgz" => "image/svg+xml",
1102
- "swa" => "application/x-director",
1103
- "swf" => "application/x-shockwave-flash",
1104
- "swi" => "application/vnd.aristanetworks.swi",
1105
- "sxc" => "application/vnd.sun.xml.calc",
1106
- "sxd" => "application/vnd.sun.xml.draw",
1107
- "sxg" => "application/vnd.sun.xml.writer.global",
1108
- "sxi" => "application/vnd.sun.xml.impress",
1109
- "sxm" => "application/vnd.sun.xml.math",
1110
- "sxw" => "application/vnd.sun.xml.writer",
1111
- "t" => "application/x-troff",
1112
- "t3" => "application/x-t3vm-image",
1113
- "taglet" => "application/vnd.mynfc",
1114
- "tao" => "application/vnd.tao.intent-module-archive",
1115
- "tar" => "application/x-tar",
1116
- "tcap" => "application/vnd.3gpp2.tcap",
1117
- "tcl" => "application/x-tcl",
1118
- "teacher" => "application/vnd.smart.teacher",
1119
- "tei" => "application/tei+xml",
1120
- "teicorpus" => "application/tei+xml",
1121
- "testrunconfig" => "application/xml",
1122
- "testsettings" => "application/xml",
1123
- "tex" => "application/x-tex",
1124
- "texi" => "application/x-texinfo",
1125
- "texinfo" => "application/x-texinfo",
1126
- "text" => "text/plain",
1127
- "tfi" => "application/thraud+xml",
1128
- "tfm" => "application/x-tex-tfm",
1129
- "tga" => "image/x-tga",
1130
- "tgz" => "application/x-compressed",
1131
- "thmx" => "application/vnd.ms-officetheme",
1132
- "thn" => "application/octet-stream",
1133
- "tif" => "image/tiff",
1134
- "tiff" => "image/tiff",
1135
- "tk" => "application/x-tcl",
1136
- "tlh" => "text/plain",
1137
- "tli" => "text/plain",
1138
- "tmo" => "application/vnd.tmobile-livetv",
1139
- "toc" => "application/octet-stream",
1140
- "toml" => "text/x-toml",
1141
- "torrent" => "application/x-bittorrent",
1142
- "tpl" => "application/vnd.groove-tool-template",
1143
- "tpt" => "application/vnd.trid.tpt",
1144
- "tr" => "application/x-troff",
1145
- "tra" => "application/vnd.trueapp",
1146
- "trig" => "application/trig",
1147
- "trm" => "application/x-msterminal",
1148
- "trx" => "application/xml",
1149
- "ts" => "video/vnd.dlna.mpeg-tts",
1150
- "tsd" => "application/timestamped-data",
1151
- "tsv" => "text/tab-separated-values",
1152
- "ttc" => "font/collection",
1153
- "ttf" => "font/ttf",
1154
- "ttl" => "text/turtle",
1155
- "tts" => "video/vnd.dlna.mpeg-tts",
1156
- "twd" => "application/vnd.simtech-mindmapper",
1157
- "twds" => "application/vnd.simtech-mindmapper",
1158
- "txd" => "application/vnd.genomatix.tuxedo",
1159
- "txf" => "application/vnd.mobius.txf",
1160
- "txt" => "text/plain",
1161
- "u32" => "application/octet-stream",
1162
- "u8dsn" => "message/global-delivery-status",
1163
- "u8hdr" => "message/global-headers",
1164
- "u8mdn" => "message/global-disposition-notification",
1165
- "u8msg" => "message/global",
1166
- "udeb" => "application/x-debian-package",
1167
- "ufd" => "application/vnd.ufdl",
1168
- "ufdl" => "application/vnd.ufdl",
1169
- "uls" => "text/iuls",
1170
- "ulx" => "application/x-glulx",
1171
- "umj" => "application/vnd.umajin",
1172
- "unityweb" => "application/vnd.unity",
1173
- "uoml" => "application/vnd.uoml+xml",
1174
- "uri" => "text/uri-list",
1175
- "uris" => "text/uri-list",
1176
- "urls" => "text/uri-list",
1177
- "user" => "text/plain",
1178
- "ustar" => "application/x-ustar",
1179
- "utz" => "application/vnd.uiq.theme",
1180
- "uu" => "text/x-uuencode",
1181
- "uva" => "audio/vnd.dece.audio",
1182
- "uvd" => "application/vnd.dece.data",
1183
- "uvf" => "application/vnd.dece.data",
1184
- "uvg" => "image/vnd.dece.graphic",
1185
- "uvh" => "video/vnd.dece.hd",
1186
- "uvi" => "image/vnd.dece.graphic",
1187
- "uvm" => "video/vnd.dece.mobile",
1188
- "uvp" => "video/vnd.dece.pd",
1189
- "uvs" => "video/vnd.dece.sd",
1190
- "uvt" => "application/vnd.dece.ttml+xml",
1191
- "uvu" => "video/vnd.uvvu.mp4",
1192
- "uvv" => "video/vnd.dece.video",
1193
- "uvva" => "audio/vnd.dece.audio",
1194
- "uvvd" => "application/vnd.dece.data",
1195
- "uvvf" => "application/vnd.dece.data",
1196
- "uvvg" => "image/vnd.dece.graphic",
1197
- "uvvh" => "video/vnd.dece.hd",
1198
- "uvvi" => "image/vnd.dece.graphic",
1199
- "uvvm" => "video/vnd.dece.mobile",
1200
- "uvvp" => "video/vnd.dece.pd",
1201
- "uvvs" => "video/vnd.dece.sd",
1202
- "uvvt" => "application/vnd.dece.ttml+xml",
1203
- "uvvu" => "video/vnd.uvvu.mp4",
1204
- "uvvv" => "video/vnd.dece.video",
1205
- "uvvx" => "application/vnd.dece.unspecified",
1206
- "uvvz" => "application/vnd.dece.zip",
1207
- "uvx" => "application/vnd.dece.unspecified",
1208
- "uvz" => "application/vnd.dece.zip",
1209
- "vb" => "text/plain",
1210
- "vbdproj" => "text/plain",
1211
- "vbk" => "video/mpeg",
1212
- "vbox" => "application/x-virtualbox-vbox",
1213
- "vbox-extpack" => "application/x-virtualbox-vbox-extpack",
1214
- "vbproj" => "text/plain",
1215
- "vbs" => "text/vbscript",
1216
- "vcard" => "text/vcard",
1217
- "vcd" => "application/x-cdlink",
1218
- "vcf" => "text/x-vcard",
1219
- "vcg" => "application/vnd.groove-vcard",
1220
- "vcproj" => "application/xml",
1221
- "vcs" => "text/plain",
1222
- "vcx" => "application/vnd.vcx",
1223
- "vcxproj" => "application/xml",
1224
- "vddproj" => "text/plain",
1225
- "vdi" => "application/x-virtualbox-vdi",
1226
- "vdp" => "text/plain",
1227
- "vdproj" => "text/plain",
1228
- "vdx" => "application/vnd.ms-visio.viewer",
1229
- "vhd" => "application/x-virtualbox-vhd",
1230
- "vis" => "application/vnd.visionary",
1231
- "viv" => "video/vnd.vivo",
1232
- "vmdk" => "application/x-virtualbox-vmdk",
1233
- "vml" => "text/xml",
1234
- "vob" => "video/x-ms-vob",
1235
- "vor" => "application/vnd.stardivision.writer",
1236
- "vox" => "application/x-authorware-bin",
1237
- "vrml" => "model/vrml",
1238
- "vscontent" => "application/xml",
1239
- "vsct" => "text/xml",
1240
- "vsd" => "application/vnd.visio",
1241
- "vsf" => "application/vnd.vsf",
1242
- "vsi" => "application/ms-vsi",
1243
- "vsix" => "application/vsix",
1244
- "vsixlangpack" => "text/xml",
1245
- "vsixmanifest" => "text/xml",
1246
- "vsmdi" => "application/xml",
1247
- "vspscc" => "text/plain",
1248
- "vss" => "application/vnd.visio",
1249
- "vsscc" => "text/plain",
1250
- "vssettings" => "text/xml",
1251
- "vssscc" => "text/plain",
1252
- "vst" => "application/vnd.visio",
1253
- "vstemplate" => "text/xml",
1254
- "vsto" => "application/x-ms-vsto",
1255
- "vsw" => "application/vnd.visio",
1256
- "vsx" => "application/vnd.visio",
1257
- "vtt" => "text/vtt",
1258
- "vtu" => "model/vnd.vtu",
1259
- "vtx" => "application/vnd.visio",
1260
- "vxml" => "application/voicexml+xml",
1261
- "w3d" => "application/x-director",
1262
- "wad" => "application/x-doom",
1263
- "wadl" => "application/vnd.sun.wadl+xml",
1264
- "war" => "application/java-archive",
1265
- "wasm" => "application/wasm",
1266
- "wav" => "audio/wav",
1267
- "wave" => "audio/wav",
1268
- "wax" => "audio/x-ms-wax",
1269
- "wbk" => "application/msword",
1270
- "wbmp" => "image/vnd.wap.wbmp",
1271
- "wbs" => "application/vnd.criticaltools.wbs+xml",
1272
- "wbxml" => "application/vnd.wap.wbxml",
1273
- "wcm" => "application/vnd.ms-works",
1274
- "wdb" => "application/vnd.ms-works",
1275
- "wdp" => "image/vnd.ms-photo",
1276
- "weba" => "audio/webm",
1277
- "webapp" => "application/x-web-app-manifest+json",
1278
- "webarchive" => "application/x-safari-webarchive",
1279
- "webm" => "video/webm",
1280
- "webmanifest" => "application/manifest+json",
1281
- "webp" => "image/webp",
1282
- "webtest" => "application/xml",
1283
- "wg" => "application/vnd.pmi.widget",
1284
- "wgt" => "application/widget",
1285
- "wiq" => "application/xml",
1286
- "wiz" => "application/msword",
1287
- "wks" => "application/vnd.ms-works",
1288
- "wlmp" => "application/wlmoviemaker",
1289
- "wlpginstall" => "application/x-wlpg-detect",
1290
- "wlpginstall3" => "application/x-wlpg3-detect",
1291
- "wm" => "video/x-ms-wm",
1292
- "wma" => "audio/x-ms-wma",
1293
- "wmd" => "application/x-ms-wmd",
1294
- "wmf" => "application/x-msmetafile",
1295
- "wml" => "text/vnd.wap.wml",
1296
- "wmlc" => "application/vnd.wap.wmlc",
1297
- "wmls" => "text/vnd.wap.wmlscript",
1298
- "wmlsc" => "application/vnd.wap.wmlscriptc",
1299
- "wmp" => "video/x-ms-wmp",
1300
- "wmv" => "video/x-ms-wmv",
1301
- "wmx" => "video/x-ms-wmx",
1302
- "wmz" => "application/x-ms-wmz",
1303
- "woff" => "application/font-woff",
1304
- "woff2" => "font/woff2",
1305
- "wpd" => "application/vnd.wordperfect",
1306
- "wpl" => "application/vnd.ms-wpl",
1307
- "wps" => "application/vnd.ms-works",
1308
- "wqd" => "application/vnd.wqd",
1309
- "wri" => "application/x-mswrite",
1310
- "wrl" => "x-world/x-vrml",
1311
- "wrz" => "x-world/x-vrml",
1312
- "wsc" => "text/scriptlet",
1313
- "wsdl" => "text/xml",
1314
- "wspolicy" => "application/wspolicy+xml",
1315
- "wtb" => "application/vnd.webturbo",
1316
- "wvx" => "video/x-ms-wvx",
1317
- "x" => "application/directx",
1318
- "x32" => "application/x-authorware-bin",
1319
- "x3d" => "model/x3d+xml",
1320
- "x3db" => "model/x3d+binary",
1321
- "x3dbz" => "model/x3d+binary",
1322
- "x3dv" => "model/x3d+vrml",
1323
- "x3dvz" => "model/x3d+vrml",
1324
- "x3dz" => "model/x3d+xml",
1325
- "x3f" => "image/x-sigma-x3f",
1326
- "xaf" => "x-world/x-vrml",
1327
- "xaml" => "application/xaml+xml",
1328
- "xap" => "application/x-silverlight-app",
1329
- "xar" => "application/vnd.xara",
1330
- "xbap" => "application/x-ms-xbap",
1331
- "xbd" => "application/vnd.fujixerox.docuworks.binder",
1332
- "xbm" => "image/x-xbitmap",
1333
- "xdf" => "application/xcap-diff+xml",
1334
- "xdm" => "application/vnd.syncml.dm+xml",
1335
- "xdp" => "application/vnd.adobe.xdp+xml",
1336
- "xdr" => "text/plain",
1337
- "xdssc" => "application/dssc+xml",
1338
- "xdw" => "application/vnd.fujixerox.docuworks",
1339
- "xenc" => "application/xenc+xml",
1340
- "xer" => "application/patch-ops-error+xml",
1341
- "xfdf" => "application/vnd.adobe.xfdf",
1342
- "xfdl" => "application/vnd.xfdl",
1343
- "xht" => "application/xhtml+xml",
1344
- "xhtml" => "application/xhtml+xml",
1345
- "xhvml" => "application/xv+xml",
1346
- "xif" => "image/vnd.xiff",
1347
- "xla" => "application/vnd.ms-excel",
1348
- "xlam" => "application/vnd.ms-excel.addin.macroEnabled.12",
1349
- "xlc" => "application/vnd.ms-excel",
1350
- "xld" => "application/vnd.ms-excel",
1351
- "xlf" => "application/x-xliff+xml",
1352
- "xlk" => "application/vnd.ms-excel",
1353
- "xll" => "application/vnd.ms-excel",
1354
- "xlm" => "application/vnd.ms-excel",
1355
- "xls" => "application/vnd.ms-excel",
1356
- "xlsb" => "application/vnd.ms-excel.sheet.binary.macroEnabled.12",
1357
- "xlsm" => "application/vnd.ms-excel.sheet.macroEnabled.12",
1358
- "xlsx" => "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
1359
- "xlt" => "application/vnd.ms-excel",
1360
- "xltm" => "application/vnd.ms-excel.template.macroEnabled.12",
1361
- "xltx" => "application/vnd.openxmlformats-officedocument.spreadsheetml.template",
1362
- "xlw" => "application/vnd.ms-excel",
1363
- "xm" => "audio/xm",
1364
- "xml" => "text/xml",
1365
- "xmp" => "application/octet-stream",
1366
- "xmta" => "application/xml",
1367
- "xo" => "application/vnd.olpc-sugar",
1368
- "xof" => "x-world/x-vrml",
1369
- "xoml" => "text/plain",
1370
- "xop" => "application/xop+xml",
1371
- "xpi" => "application/x-xpinstall",
1372
- "xpl" => "application/xproc+xml",
1373
- "xpm" => "image/x-xpixmap",
1374
- "xpr" => "application/vnd.is-xpr",
1375
- "xps" => "application/vnd.ms-xpsdocument",
1376
- "xpw" => "application/vnd.intercon.formnet",
1377
- "xpx" => "application/vnd.intercon.formnet",
1378
- "xrm-ms" => "text/xml",
1379
- "xsc" => "application/xml",
1380
- "xsd" => "text/xml",
1381
- "xsf" => "text/xml",
1382
- "xsl" => "text/xml",
1383
- "xslt" => "text/xml",
1384
- "xsm" => "application/vnd.syncml+xml",
1385
- "xsn" => "application/octet-stream",
1386
- "xspf" => "application/xspf+xml",
1387
- "xss" => "application/xml",
1388
- "xtp" => "application/octet-stream",
1389
- "xul" => "application/vnd.mozilla.xul+xml",
1390
- "xvm" => "application/xv+xml",
1391
- "xvml" => "application/xv+xml",
1392
- "xwd" => "image/x-xwindowdump",
1393
- "xyz" => "chemical/x-xyz",
1394
- "xz" => "application/x-xz",
1395
- "yaml" => "text/x-yaml",
1396
- "yang" => "application/yang",
1397
- "yin" => "application/yin+xml",
1398
- "yml" => "text/x-yaml",
1399
- "ymp" => "text/x-suse-ymp",
1400
- "z" => "application/x-compress",
1401
- "z1" => "application/x-zmachine",
1402
- "z2" => "application/x-zmachine",
1403
- "z3" => "application/x-zmachine",
1404
- "z4" => "application/x-zmachine",
1405
- "z5" => "application/x-zmachine",
1406
- "z6" => "application/x-zmachine",
1407
- "z7" => "application/x-zmachine",
1408
- "z8" => "application/x-zmachine",
1409
- "zaz" => "application/vnd.zzazz.deck+xml",
1410
- "zip" => "application/zip",
1411
- "zir" => "application/vnd.zul",
1412
- "zirz" => "application/vnd.zul",
1413
- "zmm" => "application/vnd.handheld-entertainment+xml",
1414
- _ => "application/octet-stream",
1415
- }
3
+ use http::HeaderValue;
4
+ use phf::{phf_map, Map};
5
+
6
+ static VAL_123: HeaderValue = HeaderValue::from_static("application/vnd.lotus-1-2-3");
7
+ static VAL_323: HeaderValue = HeaderValue::from_static("text/h323; charset=utf-8");
8
+ static VAL_3DML: HeaderValue = HeaderValue::from_static("text/vnd.in3d.3dml; charset=utf-8");
9
+ static VAL_3DS: HeaderValue = HeaderValue::from_static("image/x-3ds");
10
+ static VAL_3G2: HeaderValue = HeaderValue::from_static("video/3gpp2");
11
+ static VAL_3GP: HeaderValue = HeaderValue::from_static("video/3gpp");
12
+ static VAL_3GP2: HeaderValue = HeaderValue::from_static("video/3gpp2");
13
+ static VAL_3GPP: HeaderValue = HeaderValue::from_static("video/3gpp");
14
+ static VAL_7Z: HeaderValue = HeaderValue::from_static("application/x-7z-compressed");
15
+ static VAL_AA: HeaderValue = HeaderValue::from_static("audio/audible");
16
+ static VAL_AAB: HeaderValue = HeaderValue::from_static("application/x-authorware-bin");
17
+ static VAL_AAC: HeaderValue = HeaderValue::from_static("audio/aac");
18
+ static VAL_AAF: HeaderValue = HeaderValue::from_static("application/octet-stream");
19
+ static VAL_AAM: HeaderValue = HeaderValue::from_static("application/x-authorware-map");
20
+ static VAL_AAS: HeaderValue = HeaderValue::from_static("application/x-authorware-seg");
21
+ static VAL_AAX: HeaderValue = HeaderValue::from_static("audio/vnd.audible.aax");
22
+ static VAL_ABW: HeaderValue = HeaderValue::from_static("application/x-abiword");
23
+ static VAL_AC: HeaderValue = HeaderValue::from_static("application/pkix-attr-cert");
24
+ static VAL_AC3: HeaderValue = HeaderValue::from_static("audio/ac3");
25
+ static VAL_ACA: HeaderValue = HeaderValue::from_static("application/octet-stream");
26
+ static VAL_ACC: HeaderValue = HeaderValue::from_static("application/vnd.americandynamics.acc");
27
+ static VAL_ACCDA: HeaderValue = HeaderValue::from_static("application/msaccess.addin");
28
+ static VAL_ACCDB: HeaderValue = HeaderValue::from_static("application/msaccess");
29
+ static VAL_ACCDC: HeaderValue = HeaderValue::from_static("application/msaccess.cab");
30
+ static VAL_ACCDE: HeaderValue = HeaderValue::from_static("application/msaccess");
31
+ static VAL_ACCDR: HeaderValue = HeaderValue::from_static("application/msaccess.runtime");
32
+ static VAL_ACCDT: HeaderValue = HeaderValue::from_static("application/msaccess");
33
+ static VAL_ACCDW: HeaderValue = HeaderValue::from_static("application/msaccess.webapplication");
34
+ static VAL_ACCFT: HeaderValue = HeaderValue::from_static("application/msaccess.ftemplate");
35
+ static VAL_ACE: HeaderValue = HeaderValue::from_static("application/x-ace-compressed");
36
+ static VAL_ACU: HeaderValue = HeaderValue::from_static("application/vnd.acucobol");
37
+ static VAL_ACUTC: HeaderValue = HeaderValue::from_static("application/vnd.acucorp");
38
+ static VAL_ACX: HeaderValue = HeaderValue::from_static("application/internet-property-stream");
39
+ static VAL_ADDIN: HeaderValue = HeaderValue::from_static("text/xml; charset=utf-8");
40
+ static VAL_ADE: HeaderValue = HeaderValue::from_static("application/msaccess");
41
+ static VAL_ADOBEBRIDGE: HeaderValue = HeaderValue::from_static("application/x-bridge-url");
42
+ static VAL_ADP: HeaderValue = HeaderValue::from_static("application/msaccess");
43
+ static VAL_ADT: HeaderValue = HeaderValue::from_static("audio/vnd.dlna.adts");
44
+ static VAL_ADTS: HeaderValue = HeaderValue::from_static("audio/aac");
45
+ static VAL_AEP: HeaderValue = HeaderValue::from_static("application/vnd.audiograph");
46
+ static VAL_AFM: HeaderValue = HeaderValue::from_static("application/octet-stream");
47
+ static VAL_AFP: HeaderValue = HeaderValue::from_static("application/vnd.ibm.modcap");
48
+ static VAL_AHEAD: HeaderValue = HeaderValue::from_static("application/vnd.ahead.space");
49
+ static VAL_AI: HeaderValue = HeaderValue::from_static("application/postscript");
50
+ static VAL_AIF: HeaderValue = HeaderValue::from_static("audio/aiff");
51
+ static VAL_AIFC: HeaderValue = HeaderValue::from_static("audio/aiff");
52
+ static VAL_AIFF: HeaderValue = HeaderValue::from_static("audio/aiff");
53
+ static VAL_AIR: HeaderValue =
54
+ HeaderValue::from_static("application/vnd.adobe.air-application-installer-package+zip");
55
+ static VAL_AIT: HeaderValue = HeaderValue::from_static("application/vnd.dvb.ait");
56
+ static VAL_AMC: HeaderValue = HeaderValue::from_static("application/mpeg");
57
+ static VAL_AMI: HeaderValue = HeaderValue::from_static("application/vnd.amiga.ami");
58
+ static VAL_ANX: HeaderValue = HeaderValue::from_static("application/annodex");
59
+ static VAL_APK: HeaderValue = HeaderValue::from_static("application/vnd.android.package-archive");
60
+ static VAL_APNG: HeaderValue = HeaderValue::from_static("image/apng");
61
+ static VAL_APPCACHE: HeaderValue = HeaderValue::from_static("text/cache-manifest; charset=utf-8");
62
+ static VAL_APPLICATION: HeaderValue = HeaderValue::from_static("application/x-ms-application");
63
+ static VAL_APR: HeaderValue = HeaderValue::from_static("application/vnd.lotus-approach");
64
+ static VAL_ARC: HeaderValue = HeaderValue::from_static("application/x-freearc");
65
+ static VAL_ARJ: HeaderValue = HeaderValue::from_static("application/x-arj");
66
+ static VAL_ART: HeaderValue = HeaderValue::from_static("image/x-jg");
67
+ static VAL_ARW: HeaderValue = HeaderValue::from_static("image/x-sony-arw");
68
+ static VAL_ASA: HeaderValue = HeaderValue::from_static("application/xml");
69
+ static VAL_ASAX: HeaderValue = HeaderValue::from_static("application/xml");
70
+ static VAL_ASC: HeaderValue = HeaderValue::from_static("application/pgp-signature");
71
+ static VAL_ASCX: HeaderValue = HeaderValue::from_static("application/xml");
72
+ static VAL_ASD: HeaderValue = HeaderValue::from_static("application/octet-stream");
73
+ static VAL_ASF: HeaderValue = HeaderValue::from_static("video/x-ms-asf");
74
+ static VAL_ASHX: HeaderValue = HeaderValue::from_static("application/xml");
75
+ static VAL_ASI: HeaderValue = HeaderValue::from_static("application/octet-stream");
76
+ static VAL_ASM: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
77
+ static VAL_ASMX: HeaderValue = HeaderValue::from_static("application/xml");
78
+ static VAL_ASO: HeaderValue = HeaderValue::from_static("application/vnd.accpac.simply.aso");
79
+ static VAL_ASPX: HeaderValue = HeaderValue::from_static("application/xml");
80
+ static VAL_ASR: HeaderValue = HeaderValue::from_static("video/x-ms-asf");
81
+ static VAL_ASX: HeaderValue = HeaderValue::from_static("video/x-ms-asf");
82
+ static VAL_ATC: HeaderValue = HeaderValue::from_static("application/vnd.acucorp");
83
+ static VAL_ATOM: HeaderValue = HeaderValue::from_static("application/atom+xml");
84
+ static VAL_ATOMCAT: HeaderValue = HeaderValue::from_static("application/atomcat+xml");
85
+ static VAL_ATOMSVC: HeaderValue = HeaderValue::from_static("application/atomsvc+xml");
86
+ static VAL_ATX: HeaderValue = HeaderValue::from_static("application/vnd.antix.game-component");
87
+ static VAL_AU: HeaderValue = HeaderValue::from_static("audio/basic");
88
+ static VAL_AVI: HeaderValue = HeaderValue::from_static("video/x-msvideo");
89
+ static VAL_AVIF: HeaderValue = HeaderValue::from_static("image/avif");
90
+ static VAL_AVIFS: HeaderValue = HeaderValue::from_static("image/avif-sequence");
91
+ static VAL_AW: HeaderValue = HeaderValue::from_static("application/applixware");
92
+ static VAL_AXA: HeaderValue = HeaderValue::from_static("audio/annodex");
93
+ static VAL_AXS: HeaderValue = HeaderValue::from_static("application/olescript");
94
+ static VAL_AXV: HeaderValue = HeaderValue::from_static("video/annodex");
95
+ static VAL_AZF: HeaderValue = HeaderValue::from_static("application/vnd.airzip.filesecure.azf");
96
+ static VAL_AZS: HeaderValue = HeaderValue::from_static("application/vnd.airzip.filesecure.azs");
97
+ static VAL_AZW: HeaderValue = HeaderValue::from_static("application/vnd.amazon.ebook");
98
+ static VAL_BAS: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
99
+ static VAL_BAT: HeaderValue = HeaderValue::from_static("application/x-msdownload");
100
+ static VAL_BCPIO: HeaderValue = HeaderValue::from_static("application/x-bcpio");
101
+ static VAL_BDF: HeaderValue = HeaderValue::from_static("application/x-font-bdf");
102
+ static VAL_BDM: HeaderValue = HeaderValue::from_static("application/vnd.syncml.dm+wbxml");
103
+ static VAL_BDOC: HeaderValue = HeaderValue::from_static("application/bdoc");
104
+ static VAL_BED: HeaderValue = HeaderValue::from_static("application/vnd.realvnc.bed");
105
+ static VAL_BH2: HeaderValue = HeaderValue::from_static("application/vnd.fujitsu.oasysprs");
106
+ static VAL_BIN: HeaderValue = HeaderValue::from_static("application/octet-stream");
107
+ static VAL_BLB: HeaderValue = HeaderValue::from_static("application/x-blorb");
108
+ static VAL_BLORB: HeaderValue = HeaderValue::from_static("application/x-blorb");
109
+ static VAL_BMI: HeaderValue = HeaderValue::from_static("application/vnd.bmi");
110
+ static VAL_BMP: HeaderValue = HeaderValue::from_static("image/bmp");
111
+ static VAL_BOOK: HeaderValue = HeaderValue::from_static("application/vnd.framemaker");
112
+ static VAL_BOX: HeaderValue = HeaderValue::from_static("application/vnd.previewsystems.box");
113
+ static VAL_BOZ: HeaderValue = HeaderValue::from_static("application/x-bzip2");
114
+ static VAL_BPK: HeaderValue = HeaderValue::from_static("application/octet-stream");
115
+ static VAL_BTIF: HeaderValue = HeaderValue::from_static("image/prs.btif");
116
+ static VAL_BUFFER: HeaderValue = HeaderValue::from_static("application/octet-stream");
117
+ static VAL_BZ: HeaderValue = HeaderValue::from_static("application/x-bzip");
118
+ static VAL_BZ2: HeaderValue = HeaderValue::from_static("application/x-bzip2");
119
+ static VAL_C: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
120
+ static VAL_C11AMC: HeaderValue =
121
+ HeaderValue::from_static("application/vnd.cluetrust.cartomobile-config");
122
+ static VAL_C11AMZ: HeaderValue =
123
+ HeaderValue::from_static("application/vnd.cluetrust.cartomobile-config-pkg");
124
+ static VAL_C4D: HeaderValue = HeaderValue::from_static("application/vnd.clonk.c4group");
125
+ static VAL_C4F: HeaderValue = HeaderValue::from_static("application/vnd.clonk.c4group");
126
+ static VAL_C4G: HeaderValue = HeaderValue::from_static("application/vnd.clonk.c4group");
127
+ static VAL_C4P: HeaderValue = HeaderValue::from_static("application/vnd.clonk.c4group");
128
+ static VAL_C4U: HeaderValue = HeaderValue::from_static("application/vnd.clonk.c4group");
129
+ static VAL_CAB: HeaderValue = HeaderValue::from_static("application/octet-stream");
130
+ static VAL_CAF: HeaderValue = HeaderValue::from_static("audio/x-caf");
131
+ static VAL_CALX: HeaderValue = HeaderValue::from_static("application/vnd.ms-office.calx");
132
+ static VAL_CAP: HeaderValue = HeaderValue::from_static("application/vnd.tcpdump.pcap");
133
+ static VAL_CAR: HeaderValue = HeaderValue::from_static("application/vnd.curl.car");
134
+ static VAL_CAT: HeaderValue = HeaderValue::from_static("application/vnd.ms-pki.seccat");
135
+ static VAL_CB7: HeaderValue = HeaderValue::from_static("application/x-cbr");
136
+ static VAL_CBA: HeaderValue = HeaderValue::from_static("application/x-cbr");
137
+ static VAL_CBR: HeaderValue = HeaderValue::from_static("application/x-cbr");
138
+ static VAL_CBT: HeaderValue = HeaderValue::from_static("application/x-cbr");
139
+ static VAL_CBZ: HeaderValue = HeaderValue::from_static("application/x-cbr");
140
+ static VAL_CC: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
141
+ static VAL_CCO: HeaderValue = HeaderValue::from_static("application/x-cocoa");
142
+ static VAL_CCT: HeaderValue = HeaderValue::from_static("application/x-director");
143
+ static VAL_CCXML: HeaderValue = HeaderValue::from_static("application/ccxml+xml");
144
+ static VAL_CD: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
145
+ static VAL_CDBCMSG: HeaderValue = HeaderValue::from_static("application/vnd.contact.cmsg");
146
+ static VAL_CDDA: HeaderValue = HeaderValue::from_static("audio/aiff");
147
+ static VAL_CDF: HeaderValue = HeaderValue::from_static("application/x-cdf");
148
+ static VAL_CDKEY: HeaderValue = HeaderValue::from_static("application/vnd.mediastation.cdkey");
149
+ static VAL_CDMIA: HeaderValue = HeaderValue::from_static("application/cdmi-capability");
150
+ static VAL_CDMIC: HeaderValue = HeaderValue::from_static("application/cdmi-container");
151
+ static VAL_CDMID: HeaderValue = HeaderValue::from_static("application/cdmi-domain");
152
+ static VAL_CDMIO: HeaderValue = HeaderValue::from_static("application/cdmi-object");
153
+ static VAL_CDMIQ: HeaderValue = HeaderValue::from_static("application/cdmi-queue");
154
+ static VAL_CDX: HeaderValue = HeaderValue::from_static("chemical/x-cdx");
155
+ static VAL_CDXML: HeaderValue = HeaderValue::from_static("application/vnd.chemdraw+xml");
156
+ static VAL_CDY: HeaderValue = HeaderValue::from_static("application/vnd.cinderella");
157
+ static VAL_CER: HeaderValue = HeaderValue::from_static("application/x-x509-ca-cert");
158
+ static VAL_CFG: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
159
+ static VAL_CFS: HeaderValue = HeaderValue::from_static("application/x-cfs-compressed");
160
+ static VAL_CGM: HeaderValue = HeaderValue::from_static("image/cgm");
161
+ static VAL_CHAT: HeaderValue = HeaderValue::from_static("application/x-chat");
162
+ static VAL_CHM: HeaderValue = HeaderValue::from_static("application/vnd.ms-htmlhelp");
163
+ static VAL_CHRT: HeaderValue = HeaderValue::from_static("application/vnd.kde.kchart");
164
+ static VAL_CIF: HeaderValue = HeaderValue::from_static("chemical/x-cif");
165
+ static VAL_CII: HeaderValue =
166
+ HeaderValue::from_static("application/vnd.anser-web-certificate-issue-initiation");
167
+ static VAL_CIL: HeaderValue = HeaderValue::from_static("application/vnd.ms-artgalry");
168
+ static VAL_CLA: HeaderValue = HeaderValue::from_static("application/vnd.claymore");
169
+ static VAL_CLASS: HeaderValue = HeaderValue::from_static("application/x-java-applet");
170
+ static VAL_CLKK: HeaderValue = HeaderValue::from_static("application/vnd.crick.clicker.keyboard");
171
+ static VAL_CLKP: HeaderValue = HeaderValue::from_static("application/vnd.crick.clicker.palette");
172
+ static VAL_CLKT: HeaderValue = HeaderValue::from_static("application/vnd.crick.clicker.template");
173
+ static VAL_CLKW: HeaderValue = HeaderValue::from_static("application/vnd.crick.clicker.wordbank");
174
+ static VAL_CLKX: HeaderValue = HeaderValue::from_static("application/vnd.crick.clicker");
175
+ static VAL_CLP: HeaderValue = HeaderValue::from_static("application/x-msclip");
176
+ static VAL_CMC: HeaderValue = HeaderValue::from_static("application/vnd.cosmocaller");
177
+ static VAL_CMD: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
178
+ static VAL_CMDF: HeaderValue = HeaderValue::from_static("chemical/x-cmdf");
179
+ static VAL_CML: HeaderValue = HeaderValue::from_static("chemical/x-cml");
180
+ static VAL_CMP: HeaderValue = HeaderValue::from_static("application/vnd.yellowriver-custom-menu");
181
+ static VAL_CMX: HeaderValue = HeaderValue::from_static("image/x-cmx");
182
+ static VAL_CNF: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
183
+ static VAL_COD: HeaderValue = HeaderValue::from_static("image/cis-cod");
184
+ static VAL_COFFEE: HeaderValue = HeaderValue::from_static("text/coffeescript; charset=utf-8");
185
+ static VAL_COM: HeaderValue = HeaderValue::from_static("application/x-msdownload");
186
+ static VAL_CONF: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
187
+ static VAL_CONFIG: HeaderValue = HeaderValue::from_static("application/xml");
188
+ static VAL_CONTACT: HeaderValue = HeaderValue::from_static("text/x-ms-contact; charset=utf-8");
189
+ static VAL_COVERAGE: HeaderValue = HeaderValue::from_static("application/xml");
190
+ static VAL_CPIO: HeaderValue = HeaderValue::from_static("application/x-cpio");
191
+ static VAL_CPP: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
192
+ static VAL_CPT: HeaderValue = HeaderValue::from_static("application/mac-compactpro");
193
+ static VAL_CR2: HeaderValue = HeaderValue::from_static("image/x-canon-cr2");
194
+ static VAL_CR3: HeaderValue = HeaderValue::from_static("image/x-canon-cr3");
195
+ static VAL_CRD: HeaderValue = HeaderValue::from_static("application/x-mscardfile");
196
+ static VAL_CRL: HeaderValue = HeaderValue::from_static("application/pkix-crl");
197
+ static VAL_CRT: HeaderValue = HeaderValue::from_static("application/x-x509-ca-cert");
198
+ static VAL_CRW: HeaderValue = HeaderValue::from_static("image/x-canon-crw");
199
+ static VAL_CRX: HeaderValue = HeaderValue::from_static("application/x-chrome-extension");
200
+ static VAL_CRYPTONOTE: HeaderValue = HeaderValue::from_static("application/vnd.rig.cryptonote");
201
+ static VAL_CS: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
202
+ static VAL_CSDPROJ: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
203
+ static VAL_CSH: HeaderValue = HeaderValue::from_static("application/x-csh");
204
+ static VAL_CSL: HeaderValue = HeaderValue::from_static("application/vnd.citationstyles.style+xml");
205
+ static VAL_CSML: HeaderValue = HeaderValue::from_static("chemical/x-csml");
206
+ static VAL_CSP: HeaderValue = HeaderValue::from_static("application/vnd.commonspace");
207
+ static VAL_CSPROJ: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
208
+ static VAL_CSS: HeaderValue = HeaderValue::from_static("text/css; charset=utf-8");
209
+ static VAL_CST: HeaderValue = HeaderValue::from_static("application/x-director");
210
+ static VAL_CSV: HeaderValue = HeaderValue::from_static("text/csv; charset=utf-8");
211
+ static VAL_CU: HeaderValue = HeaderValue::from_static("application/cu-seeme");
212
+ static VAL_CUR: HeaderValue = HeaderValue::from_static("application/octet-stream");
213
+ static VAL_CURL: HeaderValue = HeaderValue::from_static("text/vnd.curl; charset=utf-8");
214
+ static VAL_CWW: HeaderValue = HeaderValue::from_static("application/prs.cww");
215
+ static VAL_CXT: HeaderValue = HeaderValue::from_static("application/x-director");
216
+ static VAL_CXX: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
217
+ static VAL_DAE: HeaderValue = HeaderValue::from_static("model/vnd.collada+xml");
218
+ static VAL_DAF: HeaderValue = HeaderValue::from_static("application/vnd.mobius.daf");
219
+ static VAL_DART: HeaderValue = HeaderValue::from_static("application/vnd.dart");
220
+ static VAL_DAT: HeaderValue = HeaderValue::from_static("application/octet-stream");
221
+ static VAL_DATALESS: HeaderValue = HeaderValue::from_static("application/vnd.fdsn.seed");
222
+ static VAL_DATASOURCE: HeaderValue = HeaderValue::from_static("application/xml");
223
+ static VAL_DAVMOUNT: HeaderValue = HeaderValue::from_static("application/davmount+xml");
224
+ static VAL_DBK: HeaderValue = HeaderValue::from_static("application/docbook+xml");
225
+ static VAL_DBPROJ: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
226
+ static VAL_DCR: HeaderValue = HeaderValue::from_static("application/x-director");
227
+ static VAL_DCURL: HeaderValue = HeaderValue::from_static("text/vnd.curl.dcurl; charset=utf-8");
228
+ static VAL_DD2: HeaderValue = HeaderValue::from_static("application/vnd.oma.dd2+xml");
229
+ static VAL_DDD: HeaderValue = HeaderValue::from_static("application/vnd.fujixerox.ddd");
230
+ static VAL_DEB: HeaderValue = HeaderValue::from_static("application/octet-stream");
231
+ static VAL_DEF: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
232
+ static VAL_DEPLOY: HeaderValue = HeaderValue::from_static("application/octet-stream");
233
+ static VAL_DER: HeaderValue = HeaderValue::from_static("application/x-x509-ca-cert");
234
+ static VAL_DFAC: HeaderValue = HeaderValue::from_static("application/vnd.dreamfactory");
235
+ static VAL_DGC: HeaderValue = HeaderValue::from_static("application/x-dgc-compressed");
236
+ static VAL_DGML: HeaderValue = HeaderValue::from_static("application/xml");
237
+ static VAL_DIB: HeaderValue = HeaderValue::from_static("image/bmp");
238
+ static VAL_DIC: HeaderValue = HeaderValue::from_static("text/x-c; charset=utf-8");
239
+ static VAL_DIF: HeaderValue = HeaderValue::from_static("video/x-dv");
240
+ static VAL_DIR: HeaderValue = HeaderValue::from_static("application/x-director");
241
+ static VAL_DIR_LIST: HeaderValue = HeaderValue::from_static("text/html; charset=utf-8");
242
+ static VAL_DIR_LIST_JSON: HeaderValue = HeaderValue::from_static("application/json");
243
+ static VAL_DIS: HeaderValue = HeaderValue::from_static("application/vnd.mobius.dis");
244
+ static VAL_DISCO: HeaderValue = HeaderValue::from_static("text/xml; charset=utf-8");
245
+ static VAL_DISPOSITION: HeaderValue = HeaderValue::from_static("message/disposition-notification");
246
+ static VAL_DIST: HeaderValue = HeaderValue::from_static("application/octet-stream");
247
+ static VAL_DISTZ: HeaderValue = HeaderValue::from_static("application/octet-stream");
248
+ static VAL_DIVX: HeaderValue = HeaderValue::from_static("video/divx");
249
+ static VAL_DJV: HeaderValue = HeaderValue::from_static("image/vnd.djvu");
250
+ static VAL_DJVU: HeaderValue = HeaderValue::from_static("image/vnd.djvu");
251
+ static VAL_DLL: HeaderValue = HeaderValue::from_static("application/x-msdownload");
252
+ static VAL_DLM: HeaderValue = HeaderValue::from_static("text/dlm; charset=utf-8");
253
+ static VAL_DMG: HeaderValue = HeaderValue::from_static("application/octet-stream");
254
+ static VAL_DMP: HeaderValue = HeaderValue::from_static("application/vnd.tcpdump.pcap");
255
+ static VAL_DMS: HeaderValue = HeaderValue::from_static("application/octet-stream");
256
+ static VAL_DNA: HeaderValue = HeaderValue::from_static("application/vnd.dna");
257
+ static VAL_DNG: HeaderValue = HeaderValue::from_static("image/x-adobe-dng");
258
+ static VAL_DOC: HeaderValue = HeaderValue::from_static("application/msword");
259
+ static VAL_DOCM: HeaderValue =
260
+ HeaderValue::from_static("application/vnd.ms-word.document.macroEnabled.12");
261
+ static VAL_DOCX: HeaderValue = HeaderValue::from_static(
262
+ "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
263
+ );
264
+ static VAL_DOT: HeaderValue = HeaderValue::from_static("application/msword");
265
+ static VAL_DOTM: HeaderValue =
266
+ HeaderValue::from_static("application/vnd.ms-word.template.macroEnabled.12");
267
+ static VAL_DOTX: HeaderValue = HeaderValue::from_static(
268
+ "application/vnd.openxmlformats-officedocument.wordprocessingml.template",
269
+ );
270
+ static VAL_DP: HeaderValue = HeaderValue::from_static("application/vnd.osgi.dp");
271
+ static VAL_DPG: HeaderValue = HeaderValue::from_static("application/vnd.dpgraph");
272
+ static VAL_DRA: HeaderValue = HeaderValue::from_static("audio/vnd.dra");
273
+ static VAL_DSC: HeaderValue = HeaderValue::from_static("text/prs.lines.tag; charset=utf-8");
274
+ static VAL_DSP: HeaderValue = HeaderValue::from_static("application/octet-stream");
275
+ static VAL_DSSC: HeaderValue = HeaderValue::from_static("application/dssc+der");
276
+ static VAL_DSW: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
277
+ static VAL_DTB: HeaderValue = HeaderValue::from_static("application/x-dtbook+xml");
278
+ static VAL_DTD: HeaderValue = HeaderValue::from_static("text/xml; charset=utf-8");
279
+ static VAL_DTS: HeaderValue = HeaderValue::from_static("audio/vnd.dts");
280
+ static VAL_DTSCONFIG: HeaderValue = HeaderValue::from_static("text/xml; charset=utf-8");
281
+ static VAL_DTSHD: HeaderValue = HeaderValue::from_static("audio/vnd.dts.hd");
282
+ static VAL_DUMP: HeaderValue = HeaderValue::from_static("application/octet-stream");
283
+ static VAL_DV: HeaderValue = HeaderValue::from_static("video/x-dv");
284
+ static VAL_DVB: HeaderValue = HeaderValue::from_static("video/vnd.dvb.file");
285
+ static VAL_DVI: HeaderValue = HeaderValue::from_static("application/x-dvi");
286
+ static VAL_DWF: HeaderValue = HeaderValue::from_static("drawing/x-dwf");
287
+ static VAL_DWG: HeaderValue = HeaderValue::from_static("application/acad");
288
+ static VAL_DWP: HeaderValue = HeaderValue::from_static("application/octet-stream");
289
+ static VAL_DXF: HeaderValue = HeaderValue::from_static("application/x-dxf");
290
+ static VAL_DXP: HeaderValue = HeaderValue::from_static("application/vnd.spotfire.dxp");
291
+ static VAL_DXR: HeaderValue = HeaderValue::from_static("application/x-director");
292
+ static VAL_EAR: HeaderValue = HeaderValue::from_static("application/java-archive");
293
+ static VAL_ECELP4800: HeaderValue = HeaderValue::from_static("audio/vnd.nuera.ecelp4800");
294
+ static VAL_ECELP7470: HeaderValue = HeaderValue::from_static("audio/vnd.nuera.ecelp7470");
295
+ static VAL_ECELP9600: HeaderValue = HeaderValue::from_static("audio/vnd.nuera.ecelp9600");
296
+ static VAL_ECMA: HeaderValue = HeaderValue::from_static("text/javascript; charset=utf-8");
297
+ static VAL_EDM: HeaderValue = HeaderValue::from_static("application/vnd.novadigm.edm");
298
+ static VAL_EDX: HeaderValue = HeaderValue::from_static("application/vnd.novadigm.edx");
299
+ static VAL_EFIF: HeaderValue = HeaderValue::from_static("application/vnd.picsel");
300
+ static VAL_EI6: HeaderValue = HeaderValue::from_static("application/vnd.pg.osasli");
301
+ static VAL_ELC: HeaderValue = HeaderValue::from_static("application/octet-stream");
302
+ static VAL_EMF: HeaderValue = HeaderValue::from_static("application/x-msmetafile");
303
+ static VAL_EML: HeaderValue = HeaderValue::from_static("message/rfc822");
304
+ static VAL_EMMA: HeaderValue = HeaderValue::from_static("application/emma+xml");
305
+ static VAL_EMZ: HeaderValue = HeaderValue::from_static("application/octet-stream");
306
+ static VAL_EOL: HeaderValue = HeaderValue::from_static("audio/vnd.digital-winds");
307
+ static VAL_EOT: HeaderValue = HeaderValue::from_static("application/vnd.ms-fontobject");
308
+ static VAL_EPS: HeaderValue = HeaderValue::from_static("application/postscript");
309
+ static VAL_EPUB: HeaderValue = HeaderValue::from_static("application/epub+zip");
310
+ static VAL_ERF: HeaderValue = HeaderValue::from_static("application/x-endace-erf");
311
+ static VAL_ES: HeaderValue = HeaderValue::from_static("text/javascript; charset=utf-8");
312
+ static VAL_ES3: HeaderValue = HeaderValue::from_static("application/vnd.eszigno3+xml");
313
+ static VAL_ESA: HeaderValue = HeaderValue::from_static("application/vnd.osgi.subsystem");
314
+ static VAL_ESF: HeaderValue = HeaderValue::from_static("application/vnd.epson.esf");
315
+ static VAL_ET3: HeaderValue = HeaderValue::from_static("application/vnd.eszigno3+xml");
316
+ static VAL_ETL: HeaderValue = HeaderValue::from_static("application/etl");
317
+ static VAL_ETX: HeaderValue = HeaderValue::from_static("text/x-setext; charset=utf-8");
318
+ static VAL_EVA: HeaderValue = HeaderValue::from_static("application/x-eva");
319
+ static VAL_EVY: HeaderValue = HeaderValue::from_static("application/envoy");
320
+ static VAL_EXE: HeaderValue = HeaderValue::from_static("application/octet-stream");
321
+ static VAL_EXI: HeaderValue = HeaderValue::from_static("application/exi");
322
+ static VAL_EXT: HeaderValue = HeaderValue::from_static("application/vnd.novadigm.ext");
323
+ static VAL_EZ: HeaderValue = HeaderValue::from_static("application/andrew-inset");
324
+ static VAL_EZ2: HeaderValue = HeaderValue::from_static("application/vnd.ezpix-album");
325
+ static VAL_EZ3: HeaderValue = HeaderValue::from_static("application/vnd.ezpix-package");
326
+ static VAL_F: HeaderValue = HeaderValue::from_static("text/x-fortran; charset=utf-8");
327
+ static VAL_F4V: HeaderValue = HeaderValue::from_static("video/x-f4v");
328
+ static VAL_F77: HeaderValue = HeaderValue::from_static("text/x-fortran; charset=utf-8");
329
+ static VAL_F90: HeaderValue = HeaderValue::from_static("text/x-fortran; charset=utf-8");
330
+ static VAL_FBS: HeaderValue = HeaderValue::from_static("image/vnd.fastbidsheet");
331
+ static VAL_FCDT: HeaderValue = HeaderValue::from_static("application/vnd.adobe.formscentral.fcdt");
332
+ static VAL_FCS: HeaderValue = HeaderValue::from_static("application/vnd.isac.fcs");
333
+ static VAL_FDF: HeaderValue = HeaderValue::from_static("application/vnd.fdf");
334
+ static VAL_FE_LAUNCH: HeaderValue =
335
+ HeaderValue::from_static("application/vnd.denovo.fcselayout-link");
336
+ static VAL_FEATURE: HeaderValue = HeaderValue::from_static("text/x-gherkin; charset=utf-8");
337
+ static VAL_FG5: HeaderValue = HeaderValue::from_static("application/vnd.fujitsu.oasysgp");
338
+ static VAL_FGD: HeaderValue = HeaderValue::from_static("application/x-director");
339
+ static VAL_FH: HeaderValue = HeaderValue::from_static("image/x-freehand");
340
+ static VAL_FH4: HeaderValue = HeaderValue::from_static("image/x-freehand");
341
+ static VAL_FH5: HeaderValue = HeaderValue::from_static("image/x-freehand");
342
+ static VAL_FH7: HeaderValue = HeaderValue::from_static("image/x-freehand");
343
+ static VAL_FHC: HeaderValue = HeaderValue::from_static("image/x-freehand");
344
+ static VAL_FIF: HeaderValue = HeaderValue::from_static("application/fractals");
345
+ static VAL_FIG: HeaderValue = HeaderValue::from_static("application/x-xfig");
346
+ static VAL_FILTERS: HeaderValue = HeaderValue::from_static("application/xml");
347
+ static VAL_FLA: HeaderValue = HeaderValue::from_static("application/octet-stream");
348
+ static VAL_FLAC: HeaderValue = HeaderValue::from_static("audio/flac");
349
+ static VAL_FLI: HeaderValue = HeaderValue::from_static("video/x-fli");
350
+ static VAL_FLO: HeaderValue = HeaderValue::from_static("application/vnd.micrografx.flo");
351
+ static VAL_FLR: HeaderValue = HeaderValue::from_static("x-world/x-vrml");
352
+ static VAL_FLV: HeaderValue = HeaderValue::from_static("video/x-flv");
353
+ static VAL_FLW: HeaderValue = HeaderValue::from_static("application/vnd.kde.kivio");
354
+ static VAL_FLX: HeaderValue = HeaderValue::from_static("text/vnd.fmi.flexstor; charset=utf-8");
355
+ static VAL_FLY: HeaderValue = HeaderValue::from_static("text/vnd.fly; charset=utf-8");
356
+ static VAL_FM: HeaderValue = HeaderValue::from_static("application/vnd.framemaker");
357
+ static VAL_FNC: HeaderValue = HeaderValue::from_static("application/vnd.frogans.fnc");
358
+ static VAL_FOR: HeaderValue = HeaderValue::from_static("text/x-fortran; charset=utf-8");
359
+ static VAL_FPX: HeaderValue = HeaderValue::from_static("image/vnd.fpx");
360
+ static VAL_FRAME: HeaderValue = HeaderValue::from_static("application/vnd.framemaker");
361
+ static VAL_FSC: HeaderValue = HeaderValue::from_static("application/vnd.fsc.weblaunch");
362
+ static VAL_FSSCRIPT: HeaderValue = HeaderValue::from_static("application/fsharp-script");
363
+ static VAL_FST: HeaderValue = HeaderValue::from_static("image/vnd.fst");
364
+ static VAL_FSX: HeaderValue = HeaderValue::from_static("application/fsharp-script");
365
+ static VAL_FTC: HeaderValue = HeaderValue::from_static("application/vnd.fluxtime.clip");
366
+ static VAL_FTI: HeaderValue =
367
+ HeaderValue::from_static("application/vnd.anser-web-funds-transfer-initiation");
368
+ static VAL_FVT: HeaderValue = HeaderValue::from_static("video/vnd.fvt");
369
+ static VAL_FXP: HeaderValue = HeaderValue::from_static("application/vnd.adobe.fxp");
370
+ static VAL_FXPL: HeaderValue = HeaderValue::from_static("application/vnd.adobe.fxp");
371
+ static VAL_FZS: HeaderValue = HeaderValue::from_static("application/vnd.fuzzysheet");
372
+ static VAL_G2W: HeaderValue = HeaderValue::from_static("application/vnd.geoplan");
373
+ static VAL_G3: HeaderValue = HeaderValue::from_static("image/g3fax");
374
+ static VAL_G3W: HeaderValue = HeaderValue::from_static("application/vnd.geospace");
375
+ static VAL_GAC: HeaderValue = HeaderValue::from_static("application/vnd.groove-account");
376
+ static VAL_GAM: HeaderValue = HeaderValue::from_static("application/x-tads");
377
+ static VAL_GBR: HeaderValue = HeaderValue::from_static("application/rpki-ghostbusters");
378
+ static VAL_GCA: HeaderValue = HeaderValue::from_static("application/x-gca-compressed");
379
+ static VAL_GDL: HeaderValue = HeaderValue::from_static("model/vnd.gdl");
380
+ static VAL_GDOC: HeaderValue = HeaderValue::from_static("application/vnd.google-apps.document");
381
+ static VAL_GEMINI: HeaderValue = HeaderValue::from_static("text/gemini; charset=utf-8");
382
+ static VAL_GENERICTEST: HeaderValue = HeaderValue::from_static("application/xml");
383
+ static VAL_GEO: HeaderValue = HeaderValue::from_static("application/vnd.dynageo");
384
+ static VAL_GEOJSON: HeaderValue = HeaderValue::from_static("application/geo+json");
385
+ static VAL_GEX: HeaderValue = HeaderValue::from_static("application/vnd.geometry-explorer");
386
+ static VAL_GGB: HeaderValue = HeaderValue::from_static("application/vnd.geogebra.file");
387
+ static VAL_GGT: HeaderValue = HeaderValue::from_static("application/vnd.geogebra.tool");
388
+ static VAL_GHF: HeaderValue = HeaderValue::from_static("application/vnd.groove-help");
389
+ static VAL_GIF: HeaderValue = HeaderValue::from_static("image/gif");
390
+ static VAL_GIM: HeaderValue = HeaderValue::from_static("application/vnd.groove-identity-message");
391
+ static VAL_GLB: HeaderValue = HeaderValue::from_static("model/gltf-binary");
392
+ static VAL_GLTF: HeaderValue = HeaderValue::from_static("model/gltf+json");
393
+ static VAL_GMI: HeaderValue = HeaderValue::from_static("text/gemini; charset=utf-8");
394
+ static VAL_GML: HeaderValue = HeaderValue::from_static("application/gml+xml");
395
+ static VAL_GMX: HeaderValue = HeaderValue::from_static("application/vnd.gmx");
396
+ static VAL_GNUMERIC: HeaderValue = HeaderValue::from_static("application/x-gnumeric");
397
+ static VAL_GPH: HeaderValue = HeaderValue::from_static("application/vnd.flographit");
398
+ static VAL_GPX: HeaderValue = HeaderValue::from_static("application/gpx+xml");
399
+ static VAL_GQF: HeaderValue = HeaderValue::from_static("application/vnd.grafeq");
400
+ static VAL_GQS: HeaderValue = HeaderValue::from_static("application/vnd.grafeq");
401
+ static VAL_GRAM: HeaderValue = HeaderValue::from_static("application/srgs");
402
+ static VAL_GRAMPS: HeaderValue = HeaderValue::from_static("application/x-gramps-xml");
403
+ static VAL_GRE: HeaderValue = HeaderValue::from_static("application/vnd.geometry-explorer");
404
+ static VAL_GROUP: HeaderValue = HeaderValue::from_static("text/x-ms-group; charset=utf-8");
405
+ static VAL_GRV: HeaderValue = HeaderValue::from_static("application/vnd.groove-injector");
406
+ static VAL_GRXML: HeaderValue = HeaderValue::from_static("application/srgs+xml");
407
+ static VAL_GSF: HeaderValue = HeaderValue::from_static("application/x-font-ghostscript");
408
+ static VAL_GSHEET: HeaderValue =
409
+ HeaderValue::from_static("application/vnd.google-apps.spreadsheet");
410
+ static VAL_GSLIDES: HeaderValue =
411
+ HeaderValue::from_static("application/vnd.google-apps.presentation");
412
+ static VAL_GSM: HeaderValue = HeaderValue::from_static("audio/x-gsm");
413
+ static VAL_GTAR: HeaderValue = HeaderValue::from_static("application/x-gtar");
414
+ static VAL_GTM: HeaderValue = HeaderValue::from_static("application/vnd.groove-tool-message");
415
+ static VAL_GTW: HeaderValue = HeaderValue::from_static("model/vnd.gtw");
416
+ static VAL_GV: HeaderValue = HeaderValue::from_static("text/vnd.graphviz; charset=utf-8");
417
+ static VAL_GXF: HeaderValue = HeaderValue::from_static("application/gxf");
418
+ static VAL_GXT: HeaderValue = HeaderValue::from_static("application/vnd.geonext");
419
+ static VAL_GZ: HeaderValue = HeaderValue::from_static("application/gzip");
420
+ static VAL_H: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
421
+ static VAL_H261: HeaderValue = HeaderValue::from_static("video/h261");
422
+ static VAL_H263: HeaderValue = HeaderValue::from_static("video/h263");
423
+ static VAL_H264: HeaderValue = HeaderValue::from_static("video/h264");
424
+ static VAL_HAL: HeaderValue = HeaderValue::from_static("application/vnd.hal+xml");
425
+ static VAL_HBCI: HeaderValue = HeaderValue::from_static("application/vnd.hbci");
426
+ static VAL_HBS: HeaderValue = HeaderValue::from_static("text/x-handlebars-template; charset=utf-8");
427
+ static VAL_HDD: HeaderValue = HeaderValue::from_static("application/x-virtualbox-hdd");
428
+ static VAL_HDF: HeaderValue = HeaderValue::from_static("application/x-hdf");
429
+ static VAL_HDML: HeaderValue = HeaderValue::from_static("text/x-hdml; charset=utf-8");
430
+ static VAL_HDR: HeaderValue = HeaderValue::from_static("image/vnd.radiance");
431
+ static VAL_HEIC: HeaderValue = HeaderValue::from_static("image/heic");
432
+ static VAL_HEICS: HeaderValue = HeaderValue::from_static("image/heic-sequence");
433
+ static VAL_HEIF: HeaderValue = HeaderValue::from_static("image/heif");
434
+ static VAL_HEIFS: HeaderValue = HeaderValue::from_static("image/heif-sequence");
435
+ static VAL_HH: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
436
+ static VAL_HHC: HeaderValue = HeaderValue::from_static("application/x-oleobject");
437
+ static VAL_HHK: HeaderValue = HeaderValue::from_static("application/octet-stream");
438
+ static VAL_HHP: HeaderValue = HeaderValue::from_static("application/octet-stream");
439
+ static VAL_HJSON: HeaderValue = HeaderValue::from_static("application/hjson");
440
+ static VAL_HLP: HeaderValue = HeaderValue::from_static("application/winhlp");
441
+ static VAL_HPGL: HeaderValue = HeaderValue::from_static("application/vnd.hp-hpgl");
442
+ static VAL_HPID: HeaderValue = HeaderValue::from_static("application/vnd.hp-hpid");
443
+ static VAL_HPP: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
444
+ static VAL_HPS: HeaderValue = HeaderValue::from_static("application/vnd.hp-hps");
445
+ static VAL_HQX: HeaderValue = HeaderValue::from_static("application/mac-binhex40");
446
+ static VAL_HTA: HeaderValue = HeaderValue::from_static("application/hta");
447
+ static VAL_HTC: HeaderValue = HeaderValue::from_static("text/x-component; charset=utf-8");
448
+ static VAL_HTKE: HeaderValue = HeaderValue::from_static("application/vnd.kenameaapp");
449
+ static VAL_HTM: HeaderValue = HeaderValue::from_static("text/html; charset=utf-8");
450
+ static VAL_HTML: HeaderValue = HeaderValue::from_static("text/html; charset=utf-8");
451
+ static VAL_HTT: HeaderValue = HeaderValue::from_static("text/webviewhtml; charset=utf-8");
452
+ static VAL_HVD: HeaderValue = HeaderValue::from_static("application/vnd.yamaha.hv-dic");
453
+ static VAL_HVP: HeaderValue = HeaderValue::from_static("application/vnd.yamaha.hv-voice");
454
+ static VAL_HVS: HeaderValue = HeaderValue::from_static("application/vnd.yamaha.hv-script");
455
+ static VAL_HXA: HeaderValue = HeaderValue::from_static("application/xml");
456
+ static VAL_HXC: HeaderValue = HeaderValue::from_static("application/xml");
457
+ static VAL_HXD: HeaderValue = HeaderValue::from_static("application/octet-stream");
458
+ static VAL_HXE: HeaderValue = HeaderValue::from_static("application/xml");
459
+ static VAL_HXF: HeaderValue = HeaderValue::from_static("application/xml");
460
+ static VAL_HXH: HeaderValue = HeaderValue::from_static("application/octet-stream");
461
+ static VAL_HXI: HeaderValue = HeaderValue::from_static("application/octet-stream");
462
+ static VAL_HXK: HeaderValue = HeaderValue::from_static("application/xml");
463
+ static VAL_HXQ: HeaderValue = HeaderValue::from_static("application/octet-stream");
464
+ static VAL_HXR: HeaderValue = HeaderValue::from_static("application/octet-stream");
465
+ static VAL_HXS: HeaderValue = HeaderValue::from_static("application/octet-stream");
466
+ static VAL_HXT: HeaderValue = HeaderValue::from_static("text/html; charset=utf-8");
467
+ static VAL_HXV: HeaderValue = HeaderValue::from_static("application/xml");
468
+ static VAL_HXW: HeaderValue = HeaderValue::from_static("application/octet-stream");
469
+ static VAL_HXX: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
470
+ static VAL_I: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
471
+ static VAL_I2G: HeaderValue = HeaderValue::from_static("application/vnd.intergeo");
472
+ static VAL_ICC: HeaderValue = HeaderValue::from_static("application/vnd.iccprofile");
473
+ static VAL_ICE: HeaderValue = HeaderValue::from_static("x-conference/x-cooltalk");
474
+ static VAL_ICM: HeaderValue = HeaderValue::from_static("application/vnd.iccprofile");
475
+ static VAL_ICO: HeaderValue = HeaderValue::from_static("image/x-icon");
476
+ static VAL_ICS: HeaderValue = HeaderValue::from_static("text/calendar; charset=utf-8");
477
+ static VAL_IDL: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
478
+ static VAL_IEF: HeaderValue = HeaderValue::from_static("image/ief");
479
+ static VAL_IFB: HeaderValue = HeaderValue::from_static("text/calendar; charset=utf-8");
480
+ static VAL_IFM: HeaderValue = HeaderValue::from_static("application/vnd.shana.informed.formdata");
481
+ static VAL_IGES: HeaderValue = HeaderValue::from_static("model/iges");
482
+ static VAL_IGL: HeaderValue = HeaderValue::from_static("application/vnd.igloader");
483
+ static VAL_IGM: HeaderValue = HeaderValue::from_static("application/vnd.insors.igm");
484
+ static VAL_IGS: HeaderValue = HeaderValue::from_static("model/iges");
485
+ static VAL_IGX: HeaderValue = HeaderValue::from_static("application/vnd.micrografx.igx");
486
+ static VAL_IIF: HeaderValue =
487
+ HeaderValue::from_static("application/vnd.shana.informed.interchange");
488
+ static VAL_III: HeaderValue = HeaderValue::from_static("application/x-iphone");
489
+ static VAL_IMG: HeaderValue = HeaderValue::from_static("application/octet-stream");
490
+ static VAL_IMP: HeaderValue = HeaderValue::from_static("application/vnd.accpac.simply.imp");
491
+ static VAL_IMS: HeaderValue = HeaderValue::from_static("application/vnd.ms-ims");
492
+ static VAL_IN: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
493
+ static VAL_INC: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
494
+ static VAL_INF: HeaderValue = HeaderValue::from_static("application/octet-stream");
495
+ static VAL_INI: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
496
+ static VAL_INK: HeaderValue = HeaderValue::from_static("application/inkml+xml");
497
+ static VAL_INKML: HeaderValue = HeaderValue::from_static("application/inkml+xml");
498
+ static VAL_INL: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
499
+ static VAL_INS: HeaderValue = HeaderValue::from_static("application/x-internet-signup");
500
+ static VAL_INSTALL: HeaderValue = HeaderValue::from_static("application/x-install-instructions");
501
+ static VAL_IOTA: HeaderValue = HeaderValue::from_static("application/vnd.astraea-software.iota");
502
+ static VAL_IPA: HeaderValue = HeaderValue::from_static("application/x-itunes-ipa");
503
+ static VAL_IPFIX: HeaderValue = HeaderValue::from_static("application/ipfix");
504
+ static VAL_IPG: HeaderValue = HeaderValue::from_static("application/x-itunes-ipg");
505
+ static VAL_IPK: HeaderValue = HeaderValue::from_static("application/vnd.shana.informed.package");
506
+ static VAL_IPPROJ: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
507
+ static VAL_IPSW: HeaderValue = HeaderValue::from_static("application/x-itunes-ipsw");
508
+ static VAL_IQY: HeaderValue = HeaderValue::from_static("text/x-ms-iqy; charset=utf-8");
509
+ static VAL_IRM: HeaderValue = HeaderValue::from_static("application/vnd.ibm.rights-management");
510
+ static VAL_IRP: HeaderValue = HeaderValue::from_static("application/vnd.irepository.package+xml");
511
+ static VAL_ISO: HeaderValue = HeaderValue::from_static("application/octet-stream");
512
+ static VAL_ISP: HeaderValue = HeaderValue::from_static("application/x-internet-signup");
513
+ static VAL_ITE: HeaderValue = HeaderValue::from_static("application/x-itunes-ite");
514
+ static VAL_ITLP: HeaderValue = HeaderValue::from_static("application/x-itunes-itlp");
515
+ static VAL_ITMS: HeaderValue = HeaderValue::from_static("application/x-itunes-itms");
516
+ static VAL_ITP: HeaderValue =
517
+ HeaderValue::from_static("application/vnd.shana.informed.formtemplate");
518
+ static VAL_ITPC: HeaderValue = HeaderValue::from_static("application/x-itunes-itpc");
519
+ static VAL_IVF: HeaderValue = HeaderValue::from_static("video/x-ivf");
520
+ static VAL_IVP: HeaderValue = HeaderValue::from_static("application/vnd.immervision-ivp");
521
+ static VAL_IVU: HeaderValue = HeaderValue::from_static("application/vnd.immervision-ivu");
522
+ static VAL_JAD: HeaderValue =
523
+ HeaderValue::from_static("text/vnd.sun.j2me.app-descriptor; charset=utf-8");
524
+ static VAL_JADE: HeaderValue = HeaderValue::from_static("text/jade; charset=utf-8");
525
+ static VAL_JAM: HeaderValue = HeaderValue::from_static("application/vnd.jam");
526
+ static VAL_JAR: HeaderValue = HeaderValue::from_static("application/java-archive");
527
+ static VAL_JARDIFF: HeaderValue = HeaderValue::from_static("application/x-java-archive-diff");
528
+ static VAL_JAVA: HeaderValue = HeaderValue::from_static("application/octet-stream");
529
+ static VAL_JCK: HeaderValue = HeaderValue::from_static("application/liquidmotion");
530
+ static VAL_JCZ: HeaderValue = HeaderValue::from_static("application/liquidmotion");
531
+ static VAL_JFIF: HeaderValue = HeaderValue::from_static("image/jpeg");
532
+ static VAL_JISP: HeaderValue = HeaderValue::from_static("application/vnd.jisp");
533
+ static VAL_JLT: HeaderValue = HeaderValue::from_static("application/vnd.hp-jlyt");
534
+ static VAL_JNG: HeaderValue = HeaderValue::from_static("image/x-jng");
535
+ static VAL_JNLP: HeaderValue = HeaderValue::from_static("application/x-java-jnlp-file");
536
+ static VAL_JODA: HeaderValue = HeaderValue::from_static("application/vnd.joost.joda-archive");
537
+ static VAL_JP2: HeaderValue = HeaderValue::from_static("image/jp2");
538
+ static VAL_JPB: HeaderValue = HeaderValue::from_static("application/octet-stream");
539
+ static VAL_JPE: HeaderValue = HeaderValue::from_static("image/jpeg");
540
+ static VAL_JPEG: HeaderValue = HeaderValue::from_static("image/jpeg");
541
+ static VAL_JPF: HeaderValue = HeaderValue::from_static("image/jpx");
542
+ static VAL_JPG: HeaderValue = HeaderValue::from_static("image/jpeg");
543
+ static VAL_JPG2: HeaderValue = HeaderValue::from_static("image/jp2");
544
+ static VAL_JPGM: HeaderValue = HeaderValue::from_static("video/jpm");
545
+ static VAL_JPGV: HeaderValue = HeaderValue::from_static("video/jpeg");
546
+ static VAL_JPM: HeaderValue = HeaderValue::from_static("image/jpm");
547
+ static VAL_JPX: HeaderValue = HeaderValue::from_static("image/jpx");
548
+ static VAL_JS: HeaderValue = HeaderValue::from_static("text/javascript; charset=utf-8");
549
+ static VAL_JSM: HeaderValue = HeaderValue::from_static("text/javascript; charset=utf-8");
550
+ static VAL_JSON: HeaderValue = HeaderValue::from_static("application/json");
551
+ static VAL_JSON5: HeaderValue = HeaderValue::from_static("application/json5");
552
+ static VAL_JSONLD: HeaderValue = HeaderValue::from_static("application/ld+json");
553
+ static VAL_JSONML: HeaderValue = HeaderValue::from_static("application/jsonml+json");
554
+ static VAL_JSX: HeaderValue = HeaderValue::from_static("text/javascript; charset=utf-8");
555
+ static VAL_JSXBIN: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
556
+ static VAL_JXL: HeaderValue = HeaderValue::from_static("image/jxl");
557
+ static VAL_K25: HeaderValue = HeaderValue::from_static("image/x-kodak-k25");
558
+ static VAL_KAR: HeaderValue = HeaderValue::from_static("audio/midi");
559
+ static VAL_KARBON: HeaderValue = HeaderValue::from_static("application/vnd.kde.karbon");
560
+ static VAL_KDC: HeaderValue = HeaderValue::from_static("image/x-kodak-kdc");
561
+ static VAL_KFO: HeaderValue = HeaderValue::from_static("application/vnd.kde.kformula");
562
+ static VAL_KIA: HeaderValue = HeaderValue::from_static("application/vnd.kidspiration");
563
+ static VAL_KML: HeaderValue = HeaderValue::from_static("application/vnd.google-earth.kml+xml");
564
+ static VAL_KMZ: HeaderValue = HeaderValue::from_static("application/vnd.google-earth.kmz");
565
+ static VAL_KNE: HeaderValue = HeaderValue::from_static("application/vnd.kinar");
566
+ static VAL_KNP: HeaderValue = HeaderValue::from_static("application/vnd.kinar");
567
+ static VAL_KON: HeaderValue = HeaderValue::from_static("application/vnd.kde.kontour");
568
+ static VAL_KPR: HeaderValue = HeaderValue::from_static("application/vnd.kde.kpresenter");
569
+ static VAL_KPT: HeaderValue = HeaderValue::from_static("application/vnd.kde.kpresenter");
570
+ static VAL_KPXX: HeaderValue = HeaderValue::from_static("application/vnd.ds-keypoint");
571
+ static VAL_KSP: HeaderValue = HeaderValue::from_static("application/vnd.kde.kspread");
572
+ static VAL_KTR: HeaderValue = HeaderValue::from_static("application/vnd.kahootz");
573
+ static VAL_KTX: HeaderValue = HeaderValue::from_static("image/ktx");
574
+ static VAL_KTZ: HeaderValue = HeaderValue::from_static("application/vnd.kahootz");
575
+ static VAL_KWD: HeaderValue = HeaderValue::from_static("application/vnd.kde.kword");
576
+ static VAL_KWT: HeaderValue = HeaderValue::from_static("application/vnd.kde.kword");
577
+ static VAL_LASXML: HeaderValue = HeaderValue::from_static("application/vnd.las.las+xml");
578
+ static VAL_LATEX: HeaderValue = HeaderValue::from_static("application/x-latex");
579
+ static VAL_LBD: HeaderValue =
580
+ HeaderValue::from_static("application/vnd.llamagraphics.life-balance.desktop");
581
+ static VAL_LBE: HeaderValue =
582
+ HeaderValue::from_static("application/vnd.llamagraphics.life-balance.exchange+xml");
583
+ static VAL_LES: HeaderValue = HeaderValue::from_static("application/vnd.hhe.lesson-player");
584
+ static VAL_LESS: HeaderValue = HeaderValue::from_static("text/less; charset=utf-8");
585
+ static VAL_LHA: HeaderValue = HeaderValue::from_static("application/x-lzh-compressed");
586
+ static VAL_LIBRARY: HeaderValue = HeaderValue::from_static("application/windows-library+xml");
587
+ static VAL_LINK66: HeaderValue = HeaderValue::from_static("application/vnd.route66.link66+xml");
588
+ static VAL_LIST: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
589
+ static VAL_LIST3820: HeaderValue = HeaderValue::from_static("application/vnd.ibm.modcap");
590
+ static VAL_LISTAFP: HeaderValue = HeaderValue::from_static("application/vnd.ibm.modcap");
591
+ static VAL_LIT: HeaderValue = HeaderValue::from_static("application/x-ms-reader");
592
+ static VAL_LITCOFFEE: HeaderValue = HeaderValue::from_static("text/coffeescript; charset=utf-8");
593
+ static VAL_LNK: HeaderValue = HeaderValue::from_static("application/x-ms-shortcut");
594
+ static VAL_LOADTEST: HeaderValue = HeaderValue::from_static("application/xml");
595
+ static VAL_LOG: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
596
+ static VAL_LOSTXML: HeaderValue = HeaderValue::from_static("application/lost+xml");
597
+ static VAL_LPK: HeaderValue = HeaderValue::from_static("application/octet-stream");
598
+ static VAL_LRF: HeaderValue = HeaderValue::from_static("application/octet-stream");
599
+ static VAL_LRM: HeaderValue = HeaderValue::from_static("application/vnd.ms-lrm");
600
+ static VAL_LSF: HeaderValue = HeaderValue::from_static("video/x-la-asf");
601
+ static VAL_LST: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
602
+ static VAL_LSX: HeaderValue = HeaderValue::from_static("video/x-la-asf");
603
+ static VAL_LTF: HeaderValue = HeaderValue::from_static("application/vnd.frogans.ltf");
604
+ static VAL_LUA: HeaderValue = HeaderValue::from_static("text/x-lua; charset=utf-8");
605
+ static VAL_LUAC: HeaderValue = HeaderValue::from_static("application/x-lua-bytecode");
606
+ static VAL_LVP: HeaderValue = HeaderValue::from_static("audio/vnd.lucent.voice");
607
+ static VAL_LWP: HeaderValue = HeaderValue::from_static("application/vnd.lotus-wordpro");
608
+ static VAL_LZH: HeaderValue = HeaderValue::from_static("application/octet-stream");
609
+ static VAL_M13: HeaderValue = HeaderValue::from_static("application/x-msmediaview");
610
+ static VAL_M14: HeaderValue = HeaderValue::from_static("application/x-msmediaview");
611
+ static VAL_M1V: HeaderValue = HeaderValue::from_static("video/mpeg");
612
+ static VAL_M21: HeaderValue = HeaderValue::from_static("application/mp21");
613
+ static VAL_M2A: HeaderValue = HeaderValue::from_static("audio/mpeg");
614
+ static VAL_M2T: HeaderValue = HeaderValue::from_static("video/vnd.dlna.mpeg-tts");
615
+ static VAL_M2TS: HeaderValue = HeaderValue::from_static("video/vnd.dlna.mpeg-tts");
616
+ static VAL_M2V: HeaderValue = HeaderValue::from_static("video/mpeg");
617
+ static VAL_M3A: HeaderValue = HeaderValue::from_static("audio/mpeg");
618
+ static VAL_M3U: HeaderValue = HeaderValue::from_static("audio/x-mpegurl");
619
+ static VAL_M3U8: HeaderValue = HeaderValue::from_static("audio/x-mpegurl");
620
+ static VAL_M4A: HeaderValue = HeaderValue::from_static("audio/m4a");
621
+ static VAL_M4B: HeaderValue = HeaderValue::from_static("audio/m4b");
622
+ static VAL_M4P: HeaderValue = HeaderValue::from_static("audio/m4p");
623
+ static VAL_M4R: HeaderValue = HeaderValue::from_static("audio/x-m4r");
624
+ static VAL_M4U: HeaderValue = HeaderValue::from_static("video/vnd.mpegurl");
625
+ static VAL_M4V: HeaderValue = HeaderValue::from_static("video/x-m4v");
626
+ static VAL_MA: HeaderValue = HeaderValue::from_static("application/mathematica");
627
+ static VAL_MAC: HeaderValue = HeaderValue::from_static("image/x-macpaint");
628
+ static VAL_MADS: HeaderValue = HeaderValue::from_static("application/mads+xml");
629
+ static VAL_MAG: HeaderValue = HeaderValue::from_static("application/vnd.ecowin.chart");
630
+ static VAL_MAK: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
631
+ static VAL_MAKER: HeaderValue = HeaderValue::from_static("application/vnd.framemaker");
632
+ static VAL_MAN: HeaderValue = HeaderValue::from_static("application/x-troff-man");
633
+ static VAL_MANIFEST: HeaderValue = HeaderValue::from_static("application/x-ms-manifest");
634
+ static VAL_MAP: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
635
+ static VAL_MAR: HeaderValue = HeaderValue::from_static("application/octet-stream");
636
+ static VAL_MARKDOWN: HeaderValue = HeaderValue::from_static("text/markdown; charset=utf-8");
637
+ static VAL_MASTER: HeaderValue = HeaderValue::from_static("application/xml");
638
+ static VAL_MATHML: HeaderValue = HeaderValue::from_static("application/mathml+xml");
639
+ static VAL_MB: HeaderValue = HeaderValue::from_static("application/mathematica");
640
+ static VAL_MBK: HeaderValue = HeaderValue::from_static("application/vnd.mobius.mbk");
641
+ static VAL_MBOX: HeaderValue = HeaderValue::from_static("application/mbox");
642
+ static VAL_MC1: HeaderValue = HeaderValue::from_static("application/vnd.medcalcdata");
643
+ static VAL_MCD: HeaderValue = HeaderValue::from_static("application/vnd.mcd");
644
+ static VAL_MCURL: HeaderValue = HeaderValue::from_static("text/vnd.curl.mcurl; charset=utf-8");
645
+ static VAL_MD: HeaderValue = HeaderValue::from_static("text/markdown; charset=utf-8");
646
+ static VAL_MDA: HeaderValue = HeaderValue::from_static("application/msaccess");
647
+ static VAL_MDB: HeaderValue = HeaderValue::from_static("application/x-msaccess");
648
+ static VAL_MDE: HeaderValue = HeaderValue::from_static("application/msaccess");
649
+ static VAL_MDI: HeaderValue = HeaderValue::from_static("image/vnd.ms-modi");
650
+ static VAL_MDP: HeaderValue = HeaderValue::from_static("application/octet-stream");
651
+ static VAL_ME: HeaderValue = HeaderValue::from_static("application/x-troff-me");
652
+ static VAL_MESH: HeaderValue = HeaderValue::from_static("model/mesh");
653
+ static VAL_META4: HeaderValue = HeaderValue::from_static("application/metalink4+xml");
654
+ static VAL_METALINK: HeaderValue = HeaderValue::from_static("application/metalink+xml");
655
+ static VAL_METS: HeaderValue = HeaderValue::from_static("application/mets+xml");
656
+ static VAL_MFM: HeaderValue = HeaderValue::from_static("application/vnd.mfmp");
657
+ static VAL_MFP: HeaderValue = HeaderValue::from_static("application/x-shockwave-flash");
658
+ static VAL_MFT: HeaderValue = HeaderValue::from_static("application/rpki-manifest");
659
+ static VAL_MGP: HeaderValue = HeaderValue::from_static("application/vnd.osgeo.mapguide.package");
660
+ static VAL_MGZ: HeaderValue = HeaderValue::from_static("application/vnd.proteus.magazine");
661
+ static VAL_MHT: HeaderValue = HeaderValue::from_static("message/rfc822");
662
+ static VAL_MHTML: HeaderValue = HeaderValue::from_static("message/rfc822");
663
+ static VAL_MID: HeaderValue = HeaderValue::from_static("audio/mid");
664
+ static VAL_MIDI: HeaderValue = HeaderValue::from_static("audio/mid");
665
+ static VAL_MIE: HeaderValue = HeaderValue::from_static("application/x-mie");
666
+ static VAL_MIF: HeaderValue = HeaderValue::from_static("application/vnd.mif");
667
+ static VAL_MIME: HeaderValue = HeaderValue::from_static("message/rfc822");
668
+ static VAL_MIX: HeaderValue = HeaderValue::from_static("application/octet-stream");
669
+ static VAL_MJ2: HeaderValue = HeaderValue::from_static("video/mj2");
670
+ static VAL_MJP2: HeaderValue = HeaderValue::from_static("video/mj2");
671
+ static VAL_MJS: HeaderValue = HeaderValue::from_static("application/javascript; charset=utf-8");
672
+ static VAL_MK: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
673
+ static VAL_MK3D: HeaderValue = HeaderValue::from_static("video/x-matroska");
674
+ static VAL_MKA: HeaderValue = HeaderValue::from_static("audio/x-matroska");
675
+ static VAL_MKD: HeaderValue = HeaderValue::from_static("text/x-markdown; charset=utf-8");
676
+ static VAL_MKS: HeaderValue = HeaderValue::from_static("video/x-matroska");
677
+ static VAL_MKV: HeaderValue = HeaderValue::from_static("video/x-matroska");
678
+ static VAL_MLP: HeaderValue = HeaderValue::from_static("application/vnd.dolby.mlp");
679
+ static VAL_MMD: HeaderValue = HeaderValue::from_static("application/vnd.chipnuts.karaoke-mmd");
680
+ static VAL_MMF: HeaderValue = HeaderValue::from_static("application/x-smaf");
681
+ static VAL_MML: HeaderValue = HeaderValue::from_static("text/mathml; charset=utf-8");
682
+ static VAL_MMR: HeaderValue = HeaderValue::from_static("image/vnd.fujixerox.edmics-mmr");
683
+ static VAL_MNG: HeaderValue = HeaderValue::from_static("video/x-mng");
684
+ static VAL_MNO: HeaderValue = HeaderValue::from_static("text/xml; charset=utf-8");
685
+ static VAL_MNY: HeaderValue = HeaderValue::from_static("application/x-msmoney");
686
+ static VAL_MOBI: HeaderValue = HeaderValue::from_static("application/x-mobipocket-ebook");
687
+ static VAL_MOD: HeaderValue = HeaderValue::from_static("video/mpeg");
688
+ static VAL_MODS: HeaderValue = HeaderValue::from_static("application/mods+xml");
689
+ static VAL_MOV: HeaderValue = HeaderValue::from_static("video/quicktime");
690
+ static VAL_MOVIE: HeaderValue = HeaderValue::from_static("video/x-sgi-movie");
691
+ static VAL_MP2: HeaderValue = HeaderValue::from_static("audio/mpeg");
692
+ static VAL_MP21: HeaderValue = HeaderValue::from_static("application/mp21");
693
+ static VAL_MP2A: HeaderValue = HeaderValue::from_static("audio/mpeg");
694
+ static VAL_MP2V: HeaderValue = HeaderValue::from_static("video/mpeg");
695
+ static VAL_MP3: HeaderValue = HeaderValue::from_static("audio/mpeg");
696
+ static VAL_MP4: HeaderValue = HeaderValue::from_static("video/mp4");
697
+ static VAL_MP4A: HeaderValue = HeaderValue::from_static("audio/mp4");
698
+ static VAL_MP4S: HeaderValue = HeaderValue::from_static("application/mp4");
699
+ static VAL_MP4V: HeaderValue = HeaderValue::from_static("video/mp4");
700
+ static VAL_MPA: HeaderValue = HeaderValue::from_static("video/mpeg");
701
+ static VAL_MPC: HeaderValue = HeaderValue::from_static("application/vnd.mophun.certificate");
702
+ static VAL_MPD: HeaderValue = HeaderValue::from_static("application/dash+xml");
703
+ static VAL_MPE: HeaderValue = HeaderValue::from_static("video/mpeg");
704
+ static VAL_MPEG: HeaderValue = HeaderValue::from_static("video/mpeg");
705
+ static VAL_MPF: HeaderValue = HeaderValue::from_static("application/vnd.ms-mediapackage");
706
+ static VAL_MPG: HeaderValue = HeaderValue::from_static("video/mpeg");
707
+ static VAL_MPG4: HeaderValue = HeaderValue::from_static("video/mp4");
708
+ static VAL_MPGA: HeaderValue = HeaderValue::from_static("audio/mpeg");
709
+ static VAL_MPKG: HeaderValue = HeaderValue::from_static("application/vnd.apple.installer+xml");
710
+ static VAL_MPM: HeaderValue = HeaderValue::from_static("application/vnd.blueice.multipass");
711
+ static VAL_MPN: HeaderValue = HeaderValue::from_static("application/vnd.mophun.application");
712
+ static VAL_MPP: HeaderValue = HeaderValue::from_static("application/vnd.ms-project");
713
+ static VAL_MPT: HeaderValue = HeaderValue::from_static("application/vnd.ms-project");
714
+ static VAL_MPV2: HeaderValue = HeaderValue::from_static("video/mpeg");
715
+ static VAL_MPY: HeaderValue = HeaderValue::from_static("application/vnd.ibm.minipay");
716
+ static VAL_MQV: HeaderValue = HeaderValue::from_static("video/quicktime");
717
+ static VAL_MQY: HeaderValue = HeaderValue::from_static("application/vnd.mobius.mqy");
718
+ static VAL_MRC: HeaderValue = HeaderValue::from_static("application/marc");
719
+ static VAL_MRCX: HeaderValue = HeaderValue::from_static("application/marcxml+xml");
720
+ static VAL_MRW: HeaderValue = HeaderValue::from_static("image/x-minolta-mrw");
721
+ static VAL_MS: HeaderValue = HeaderValue::from_static("application/x-troff-ms");
722
+ static VAL_MSCML: HeaderValue = HeaderValue::from_static("application/mediaservercontrol+xml");
723
+ static VAL_MSEED: HeaderValue = HeaderValue::from_static("application/vnd.fdsn.mseed");
724
+ static VAL_MSEQ: HeaderValue = HeaderValue::from_static("application/vnd.mseq");
725
+ static VAL_MSF: HeaderValue = HeaderValue::from_static("application/vnd.epson.msf");
726
+ static VAL_MSG: HeaderValue = HeaderValue::from_static("application/vnd.ms-outlook");
727
+ static VAL_MSH: HeaderValue = HeaderValue::from_static("model/mesh");
728
+ static VAL_MSI: HeaderValue = HeaderValue::from_static("application/octet-stream");
729
+ static VAL_MSL: HeaderValue = HeaderValue::from_static("application/vnd.mobius.msl");
730
+ static VAL_MSM: HeaderValue = HeaderValue::from_static("application/octet-stream");
731
+ static VAL_MSO: HeaderValue = HeaderValue::from_static("application/octet-stream");
732
+ static VAL_MSP: HeaderValue = HeaderValue::from_static("application/octet-stream");
733
+ static VAL_MSTY: HeaderValue = HeaderValue::from_static("application/vnd.muvee.style");
734
+ static VAL_MTS: HeaderValue = HeaderValue::from_static("video/vnd.dlna.mpeg-tts");
735
+ static VAL_MTX: HeaderValue = HeaderValue::from_static("application/xml");
736
+ static VAL_MUS: HeaderValue = HeaderValue::from_static("application/vnd.musician");
737
+ static VAL_MUSICXML: HeaderValue =
738
+ HeaderValue::from_static("application/vnd.recordare.musicxml+xml");
739
+ static VAL_MVB: HeaderValue = HeaderValue::from_static("application/x-msmediaview");
740
+ static VAL_MVC: HeaderValue = HeaderValue::from_static("application/x-miva-compiled");
741
+ static VAL_MWF: HeaderValue = HeaderValue::from_static("application/vnd.mfer");
742
+ static VAL_MXF: HeaderValue = HeaderValue::from_static("application/mxf");
743
+ static VAL_MXL: HeaderValue = HeaderValue::from_static("application/vnd.recordare.musicxml");
744
+ static VAL_MXML: HeaderValue = HeaderValue::from_static("application/xv+xml");
745
+ static VAL_MXP: HeaderValue = HeaderValue::from_static("application/x-mmxp");
746
+ static VAL_MXS: HeaderValue = HeaderValue::from_static("application/vnd.triscape.mxs");
747
+ static VAL_MXU: HeaderValue = HeaderValue::from_static("video/vnd.mpegurl");
748
+ static VAL_N: HeaderValue =
749
+ HeaderValue::from_static("application/vnd.nokia.n-gage.symbian.install");
750
+ static VAL_N3: HeaderValue = HeaderValue::from_static("text/n3; charset=utf-8");
751
+ static VAL_NB: HeaderValue = HeaderValue::from_static("application/mathematica");
752
+ static VAL_NBP: HeaderValue = HeaderValue::from_static("application/vnd.wolfram.player");
753
+ static VAL_NC: HeaderValue = HeaderValue::from_static("application/x-netcdf");
754
+ static VAL_NCX: HeaderValue = HeaderValue::from_static("application/x-dtbncx+xml");
755
+ static VAL_NEF: HeaderValue = HeaderValue::from_static("image/x-nikon-nef");
756
+ static VAL_NFO: HeaderValue = HeaderValue::from_static("text/x-nfo; charset=utf-8");
757
+ static VAL_NGDAT: HeaderValue = HeaderValue::from_static("application/vnd.nokia.n-gage.data");
758
+ static VAL_NITF: HeaderValue = HeaderValue::from_static("application/vnd.nitf");
759
+ static VAL_NLU: HeaderValue = HeaderValue::from_static("application/vnd.neurolanguage.nlu");
760
+ static VAL_NML: HeaderValue = HeaderValue::from_static("application/vnd.enliven");
761
+ static VAL_NND: HeaderValue = HeaderValue::from_static("application/vnd.noblenet-directory");
762
+ static VAL_NNS: HeaderValue = HeaderValue::from_static("application/vnd.noblenet-sealer");
763
+ static VAL_NNW: HeaderValue = HeaderValue::from_static("application/vnd.noblenet-web");
764
+ static VAL_NPX: HeaderValue = HeaderValue::from_static("image/vnd.net-fpx");
765
+ static VAL_NQ: HeaderValue = HeaderValue::from_static("application/n-quads");
766
+ static VAL_NRW: HeaderValue = HeaderValue::from_static("image/x-nikon-nrw");
767
+ static VAL_NSC: HeaderValue = HeaderValue::from_static("video/x-ms-asf");
768
+ static VAL_NSF: HeaderValue = HeaderValue::from_static("application/vnd.lotus-notes");
769
+ static VAL_NT: HeaderValue = HeaderValue::from_static("application/n-triples");
770
+ static VAL_NTF: HeaderValue = HeaderValue::from_static("application/vnd.nitf");
771
+ static VAL_NWS: HeaderValue = HeaderValue::from_static("message/rfc822");
772
+ static VAL_NZB: HeaderValue = HeaderValue::from_static("application/x-nzb");
773
+ static VAL_OA2: HeaderValue = HeaderValue::from_static("application/vnd.fujitsu.oasys2");
774
+ static VAL_OA3: HeaderValue = HeaderValue::from_static("application/vnd.fujitsu.oasys3");
775
+ static VAL_OAS: HeaderValue = HeaderValue::from_static("application/vnd.fujitsu.oasys");
776
+ static VAL_OBD: HeaderValue = HeaderValue::from_static("application/x-msbinder");
777
+ static VAL_OBJ: HeaderValue = HeaderValue::from_static("application/x-tgif");
778
+ static VAL_OCX: HeaderValue = HeaderValue::from_static("application/octet-stream");
779
+ static VAL_ODA: HeaderValue = HeaderValue::from_static("application/oda");
780
+ static VAL_ODB: HeaderValue =
781
+ HeaderValue::from_static("application/vnd.oasis.opendocument.database");
782
+ static VAL_ODC: HeaderValue = HeaderValue::from_static("application/vnd.oasis.opendocument.chart");
783
+ static VAL_ODF: HeaderValue =
784
+ HeaderValue::from_static("application/vnd.oasis.opendocument.formula");
785
+ static VAL_ODFT: HeaderValue =
786
+ HeaderValue::from_static("application/vnd.oasis.opendocument.formula-template");
787
+ static VAL_ODG: HeaderValue =
788
+ HeaderValue::from_static("application/vnd.oasis.opendocument.graphics");
789
+ static VAL_ODH: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
790
+ static VAL_ODI: HeaderValue = HeaderValue::from_static("application/vnd.oasis.opendocument.image");
791
+ static VAL_ODL: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
792
+ static VAL_ODM: HeaderValue =
793
+ HeaderValue::from_static("application/vnd.oasis.opendocument.text-master");
794
+ static VAL_ODP: HeaderValue =
795
+ HeaderValue::from_static("application/vnd.oasis.opendocument.presentation");
796
+ static VAL_ODS: HeaderValue =
797
+ HeaderValue::from_static("application/vnd.oasis.opendocument.spreadsheet");
798
+ static VAL_ODT: HeaderValue = HeaderValue::from_static("application/vnd.oasis.opendocument.text");
799
+ static VAL_OGA: HeaderValue = HeaderValue::from_static("audio/ogg");
800
+ static VAL_OGG: HeaderValue = HeaderValue::from_static("audio/ogg");
801
+ static VAL_OGV: HeaderValue = HeaderValue::from_static("video/ogg");
802
+ static VAL_OGX: HeaderValue = HeaderValue::from_static("application/ogg");
803
+ static VAL_OMDOC: HeaderValue = HeaderValue::from_static("application/omdoc+xml");
804
+ static VAL_ONE: HeaderValue = HeaderValue::from_static("application/onenote");
805
+ static VAL_ONEA: HeaderValue = HeaderValue::from_static("application/onenote");
806
+ static VAL_ONEPKG: HeaderValue = HeaderValue::from_static("application/onenote");
807
+ static VAL_ONETMP: HeaderValue = HeaderValue::from_static("application/onenote");
808
+ static VAL_ONETOC: HeaderValue = HeaderValue::from_static("application/onenote");
809
+ static VAL_ONETOC2: HeaderValue = HeaderValue::from_static("application/onenote");
810
+ static VAL_OPF: HeaderValue = HeaderValue::from_static("application/oebps-package+xml");
811
+ static VAL_OPML: HeaderValue = HeaderValue::from_static("text/x-opml; charset=utf-8");
812
+ static VAL_OPRC: HeaderValue = HeaderValue::from_static("application/vnd.palm");
813
+ static VAL_OPUS: HeaderValue = HeaderValue::from_static("audio/ogg");
814
+ static VAL_ORDEREDTEST: HeaderValue = HeaderValue::from_static("application/xml");
815
+ static VAL_ORF: HeaderValue = HeaderValue::from_static("image/x-olympus-orf");
816
+ static VAL_ORG: HeaderValue = HeaderValue::from_static("application/vnd.lotus-organizer");
817
+ static VAL_OSDX: HeaderValue = HeaderValue::from_static("application/opensearchdescription+xml");
818
+ static VAL_OSF: HeaderValue = HeaderValue::from_static("application/vnd.yamaha.openscoreformat");
819
+ static VAL_OSFPVG: HeaderValue =
820
+ HeaderValue::from_static("application/vnd.yamaha.openscoreformat.osfpvg+xml");
821
+ static VAL_OTC: HeaderValue =
822
+ HeaderValue::from_static("application/vnd.oasis.opendocument.chart-template");
823
+ static VAL_OTF: HeaderValue = HeaderValue::from_static("application/font-sfnt");
824
+ static VAL_OTG: HeaderValue =
825
+ HeaderValue::from_static("application/vnd.oasis.opendocument.graphics-template");
826
+ static VAL_OTH: HeaderValue =
827
+ HeaderValue::from_static("application/vnd.oasis.opendocument.text-web");
828
+ static VAL_OTI: HeaderValue =
829
+ HeaderValue::from_static("application/vnd.oasis.opendocument.image-template");
830
+ static VAL_OTP: HeaderValue =
831
+ HeaderValue::from_static("application/vnd.oasis.opendocument.presentation-template");
832
+ static VAL_OTS: HeaderValue =
833
+ HeaderValue::from_static("application/vnd.oasis.opendocument.spreadsheet-template");
834
+ static VAL_OTT: HeaderValue =
835
+ HeaderValue::from_static("application/vnd.oasis.opendocument.text-template");
836
+ static VAL_OVA: HeaderValue = HeaderValue::from_static("application/x-virtualbox-ova");
837
+ static VAL_OVF: HeaderValue = HeaderValue::from_static("application/x-virtualbox-ovf");
838
+ static VAL_OXPS: HeaderValue = HeaderValue::from_static("application/oxps");
839
+ static VAL_OXT: HeaderValue = HeaderValue::from_static("application/vnd.openofficeorg.extension");
840
+ static VAL_P: HeaderValue = HeaderValue::from_static("text/x-pascal; charset=utf-8");
841
+ static VAL_P10: HeaderValue = HeaderValue::from_static("application/pkcs10");
842
+ static VAL_P12: HeaderValue = HeaderValue::from_static("application/x-pkcs12");
843
+ static VAL_P7B: HeaderValue = HeaderValue::from_static("application/x-pkcs7-certificates");
844
+ static VAL_P7C: HeaderValue = HeaderValue::from_static("application/pkcs7-mime");
845
+ static VAL_P7M: HeaderValue = HeaderValue::from_static("application/pkcs7-mime");
846
+ static VAL_P7R: HeaderValue = HeaderValue::from_static("application/x-pkcs7-certreqresp");
847
+ static VAL_P7S: HeaderValue = HeaderValue::from_static("application/pkcs7-signature");
848
+ static VAL_P8: HeaderValue = HeaderValue::from_static("application/pkcs8");
849
+ static VAL_PAC: HeaderValue = HeaderValue::from_static("application/x-ns-proxy-autoconfig");
850
+ static VAL_PARQUET: HeaderValue = HeaderValue::from_static("application/vnd.apache.parquet");
851
+ static VAL_PAS: HeaderValue = HeaderValue::from_static("text/x-pascal; charset=utf-8");
852
+ static VAL_PAW: HeaderValue = HeaderValue::from_static("application/vnd.pawaafile");
853
+ static VAL_PBD: HeaderValue = HeaderValue::from_static("application/vnd.powerbuilder6");
854
+ static VAL_PBM: HeaderValue = HeaderValue::from_static("image/x-portable-bitmap");
855
+ static VAL_PCAP: HeaderValue = HeaderValue::from_static("application/vnd.tcpdump.pcap");
856
+ static VAL_PCAST: HeaderValue = HeaderValue::from_static("application/x-podcast");
857
+ static VAL_PCF: HeaderValue = HeaderValue::from_static("application/x-font-pcf");
858
+ static VAL_PCL: HeaderValue = HeaderValue::from_static("application/vnd.hp-pcl");
859
+ static VAL_PCLXL: HeaderValue = HeaderValue::from_static("application/vnd.hp-pclxl");
860
+ static VAL_PCT: HeaderValue = HeaderValue::from_static("image/pict");
861
+ static VAL_PCURL: HeaderValue = HeaderValue::from_static("application/vnd.curl.pcurl");
862
+ static VAL_PCX: HeaderValue = HeaderValue::from_static("application/octet-stream");
863
+ static VAL_PCZ: HeaderValue = HeaderValue::from_static("application/octet-stream");
864
+ static VAL_PDB: HeaderValue = HeaderValue::from_static("application/vnd.palm");
865
+ static VAL_PDE: HeaderValue = HeaderValue::from_static("text/x-processing; charset=utf-8");
866
+ static VAL_PDF: HeaderValue = HeaderValue::from_static("application/pdf");
867
+ static VAL_PEF: HeaderValue = HeaderValue::from_static("image/x-pentax-pef");
868
+ static VAL_PEM: HeaderValue = HeaderValue::from_static("application/x-x509-ca-cert");
869
+ static VAL_PFA: HeaderValue = HeaderValue::from_static("application/x-font-type1");
870
+ static VAL_PFB: HeaderValue = HeaderValue::from_static("application/octet-stream");
871
+ static VAL_PFM: HeaderValue = HeaderValue::from_static("application/octet-stream");
872
+ static VAL_PFR: HeaderValue = HeaderValue::from_static("application/font-tdpfr");
873
+ static VAL_PFX: HeaderValue = HeaderValue::from_static("application/x-pkcs12");
874
+ static VAL_PGM: HeaderValue = HeaderValue::from_static("image/x-portable-graymap");
875
+ static VAL_PGN: HeaderValue = HeaderValue::from_static("application/x-chess-pgn");
876
+ static VAL_PGP: HeaderValue = HeaderValue::from_static("application/pgp-encrypted");
877
+ static VAL_PHP: HeaderValue = HeaderValue::from_static("application/x-httpd-php");
878
+ static VAL_PIC: HeaderValue = HeaderValue::from_static("image/pict");
879
+ static VAL_PICT: HeaderValue = HeaderValue::from_static("image/pict");
880
+ static VAL_PKG: HeaderValue = HeaderValue::from_static("application/octet-stream");
881
+ static VAL_PKGDEF: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
882
+ static VAL_PKGUNDEF: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
883
+ static VAL_PKI: HeaderValue = HeaderValue::from_static("application/pkixcmp");
884
+ static VAL_PKIPATH: HeaderValue = HeaderValue::from_static("application/pkix-pkipath");
885
+ static VAL_PKO: HeaderValue = HeaderValue::from_static("application/vnd.ms-pki.pko");
886
+ static VAL_PKPASS: HeaderValue = HeaderValue::from_static("application/vnd.apple.pkpass");
887
+ static VAL_PL: HeaderValue = HeaderValue::from_static("application/x-perl");
888
+ static VAL_PLB: HeaderValue = HeaderValue::from_static("application/vnd.3gpp.pic-bw-large");
889
+ static VAL_PLC: HeaderValue = HeaderValue::from_static("application/vnd.mobius.plc");
890
+ static VAL_PLF: HeaderValue = HeaderValue::from_static("application/vnd.pocketlearn");
891
+ static VAL_PLS: HeaderValue = HeaderValue::from_static("audio/scpls");
892
+ static VAL_PM: HeaderValue = HeaderValue::from_static("application/x-perl");
893
+ static VAL_PMA: HeaderValue = HeaderValue::from_static("application/x-perfmon");
894
+ static VAL_PMC: HeaderValue = HeaderValue::from_static("application/x-perfmon");
895
+ static VAL_PML: HeaderValue = HeaderValue::from_static("application/x-perfmon");
896
+ static VAL_PMR: HeaderValue = HeaderValue::from_static("application/x-perfmon");
897
+ static VAL_PMW: HeaderValue = HeaderValue::from_static("application/x-perfmon");
898
+ static VAL_PNG: HeaderValue = HeaderValue::from_static("image/png");
899
+ static VAL_PNM: HeaderValue = HeaderValue::from_static("image/x-portable-anymap");
900
+ static VAL_PNT: HeaderValue = HeaderValue::from_static("image/x-macpaint");
901
+ static VAL_PNTG: HeaderValue = HeaderValue::from_static("image/x-macpaint");
902
+ static VAL_PNZ: HeaderValue = HeaderValue::from_static("image/png");
903
+ static VAL_PORTPKG: HeaderValue = HeaderValue::from_static("application/vnd.macports.portpkg");
904
+ static VAL_POT: HeaderValue = HeaderValue::from_static("application/vnd.ms-powerpoint");
905
+ static VAL_POTM: HeaderValue =
906
+ HeaderValue::from_static("application/vnd.ms-powerpoint.template.macroEnabled.12");
907
+ static VAL_POTX: HeaderValue = HeaderValue::from_static(
908
+ "application/vnd.openxmlformats-officedocument.presentationml.template",
909
+ );
910
+ static VAL_PPA: HeaderValue = HeaderValue::from_static("application/vnd.ms-powerpoint");
911
+ static VAL_PPAM: HeaderValue =
912
+ HeaderValue::from_static("application/vnd.ms-powerpoint.addin.macroEnabled.12");
913
+ static VAL_PPD: HeaderValue = HeaderValue::from_static("application/vnd.cups-ppd");
914
+ static VAL_PPM: HeaderValue = HeaderValue::from_static("image/x-portable-pixmap");
915
+ static VAL_PPS: HeaderValue = HeaderValue::from_static("application/vnd.ms-powerpoint");
916
+ static VAL_PPSM: HeaderValue =
917
+ HeaderValue::from_static("application/vnd.ms-powerpoint.slideshow.macroEnabled.12");
918
+ static VAL_PPSX: HeaderValue = HeaderValue::from_static(
919
+ "application/vnd.openxmlformats-officedocument.presentationml.slideshow",
920
+ );
921
+ static VAL_PPT: HeaderValue = HeaderValue::from_static("application/vnd.ms-powerpoint");
922
+ static VAL_PPTM: HeaderValue =
923
+ HeaderValue::from_static("application/vnd.ms-powerpoint.presentation.macroEnabled.12");
924
+ static VAL_PPTX: HeaderValue = HeaderValue::from_static(
925
+ "application/vnd.openxmlformats-officedocument.presentationml.presentation",
926
+ );
927
+ static VAL_PQA: HeaderValue = HeaderValue::from_static("application/vnd.palm");
928
+ static VAL_PRC: HeaderValue = HeaderValue::from_static("application/x-mobipocket-ebook");
929
+ static VAL_PRE: HeaderValue = HeaderValue::from_static("application/vnd.lotus-freelance");
930
+ static VAL_PRF: HeaderValue = HeaderValue::from_static("application/pics-rules");
931
+ static VAL_PRM: HeaderValue = HeaderValue::from_static("application/octet-stream");
932
+ static VAL_PRX: HeaderValue = HeaderValue::from_static("application/octet-stream");
933
+ static VAL_PS: HeaderValue = HeaderValue::from_static("application/postscript");
934
+ static VAL_PSB: HeaderValue = HeaderValue::from_static("application/vnd.3gpp.pic-bw-small");
935
+ static VAL_PSC1: HeaderValue = HeaderValue::from_static("application/PowerShell");
936
+ static VAL_PSD: HeaderValue = HeaderValue::from_static("application/octet-stream");
937
+ static VAL_PSESS: HeaderValue = HeaderValue::from_static("application/xml");
938
+ static VAL_PSF: HeaderValue = HeaderValue::from_static("application/x-font-linux-psf");
939
+ static VAL_PSKCXML: HeaderValue = HeaderValue::from_static("application/pskc+xml");
940
+ static VAL_PSM: HeaderValue = HeaderValue::from_static("application/octet-stream");
941
+ static VAL_PSP: HeaderValue = HeaderValue::from_static("application/octet-stream");
942
+ static VAL_PST: HeaderValue = HeaderValue::from_static("application/vnd.ms-outlook");
943
+ static VAL_PTID: HeaderValue = HeaderValue::from_static("application/vnd.pvi.ptid1");
944
+ static VAL_PUB: HeaderValue = HeaderValue::from_static("application/x-mspublisher");
945
+ static VAL_PVB: HeaderValue = HeaderValue::from_static("application/vnd.3gpp.pic-bw-var");
946
+ static VAL_PWN: HeaderValue = HeaderValue::from_static("application/vnd.3m.post-it-notes");
947
+ static VAL_PWZ: HeaderValue = HeaderValue::from_static("application/vnd.ms-powerpoint");
948
+ static VAL_PY: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
949
+ static VAL_PYA: HeaderValue = HeaderValue::from_static("audio/vnd.ms-playready.media.pya");
950
+ static VAL_PYV: HeaderValue = HeaderValue::from_static("video/vnd.ms-playready.media.pyv");
951
+ static VAL_QAM: HeaderValue = HeaderValue::from_static("application/vnd.epson.quickanime");
952
+ static VAL_QBO: HeaderValue = HeaderValue::from_static("application/vnd.intu.qbo");
953
+ static VAL_QFX: HeaderValue = HeaderValue::from_static("application/vnd.intu.qfx");
954
+ static VAL_QHT: HeaderValue = HeaderValue::from_static("text/x-html-insertion; charset=utf-8");
955
+ static VAL_QHTM: HeaderValue = HeaderValue::from_static("text/x-html-insertion; charset=utf-8");
956
+ static VAL_QPS: HeaderValue = HeaderValue::from_static("application/vnd.publishare-delta-tree");
957
+ static VAL_QT: HeaderValue = HeaderValue::from_static("video/quicktime");
958
+ static VAL_QTI: HeaderValue = HeaderValue::from_static("image/x-quicktime");
959
+ static VAL_QTIF: HeaderValue = HeaderValue::from_static("image/x-quicktime");
960
+ static VAL_QTL: HeaderValue = HeaderValue::from_static("application/x-quicktimeplayer");
961
+ static VAL_QWD: HeaderValue = HeaderValue::from_static("application/vnd.quark.quarkxpress");
962
+ static VAL_QWT: HeaderValue = HeaderValue::from_static("application/vnd.quark.quarkxpress");
963
+ static VAL_QXB: HeaderValue = HeaderValue::from_static("application/vnd.quark.quarkxpress");
964
+ static VAL_QXD: HeaderValue = HeaderValue::from_static("application/octet-stream");
965
+ static VAL_QXL: HeaderValue = HeaderValue::from_static("application/vnd.quark.quarkxpress");
966
+ static VAL_QXT: HeaderValue = HeaderValue::from_static("application/vnd.quark.quarkxpress");
967
+ static VAL_RA: HeaderValue = HeaderValue::from_static("audio/x-pn-realaudio");
968
+ static VAL_RAF: HeaderValue = HeaderValue::from_static("image/x-fuji-raf");
969
+ static VAL_RAM: HeaderValue = HeaderValue::from_static("audio/x-pn-realaudio");
970
+ static VAL_RAML: HeaderValue = HeaderValue::from_static("application/raml+yaml");
971
+ static VAL_RAR: HeaderValue = HeaderValue::from_static("application/x-rar-compressed");
972
+ static VAL_RAS: HeaderValue = HeaderValue::from_static("image/x-cmu-raster");
973
+ static VAL_RAT: HeaderValue = HeaderValue::from_static("application/rat-file");
974
+ static VAL_RAW: HeaderValue = HeaderValue::from_static("image/x-panasonic-rw");
975
+ static VAL_RB: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
976
+ static VAL_RC: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
977
+ static VAL_RC2: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
978
+ static VAL_RCPROFILE: HeaderValue =
979
+ HeaderValue::from_static("application/vnd.ipunplugged.rcprofile");
980
+ static VAL_RCT: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
981
+ static VAL_RDF: HeaderValue = HeaderValue::from_static("application/rdf+xml");
982
+ static VAL_RDLC: HeaderValue = HeaderValue::from_static("application/xml");
983
+ static VAL_RDZ: HeaderValue = HeaderValue::from_static("application/vnd.data-vision.rdz");
984
+ static VAL_REG: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
985
+ static VAL_REP: HeaderValue = HeaderValue::from_static("application/vnd.businessobjects");
986
+ static VAL_RES: HeaderValue = HeaderValue::from_static("application/x-dtbresource+xml");
987
+ static VAL_RESX: HeaderValue = HeaderValue::from_static("application/xml");
988
+ static VAL_RF: HeaderValue = HeaderValue::from_static("image/vnd.rn-realflash");
989
+ static VAL_RGB: HeaderValue = HeaderValue::from_static("image/x-rgb");
990
+ static VAL_RGS: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
991
+ static VAL_RIF: HeaderValue = HeaderValue::from_static("application/reginfo+xml");
992
+ static VAL_RIP: HeaderValue = HeaderValue::from_static("audio/vnd.rip");
993
+ static VAL_RIS: HeaderValue = HeaderValue::from_static("application/x-research-info-systems");
994
+ static VAL_RL: HeaderValue = HeaderValue::from_static("application/resource-lists+xml");
995
+ static VAL_RLC: HeaderValue = HeaderValue::from_static("image/vnd.fujixerox.edmics-rlc");
996
+ static VAL_RLD: HeaderValue = HeaderValue::from_static("application/resource-lists-diff+xml");
997
+ static VAL_RM: HeaderValue = HeaderValue::from_static("application/vnd.rn-realmedia");
998
+ static VAL_RMI: HeaderValue = HeaderValue::from_static("audio/mid");
999
+ static VAL_RMP: HeaderValue = HeaderValue::from_static("application/vnd.rn-rn_music_package");
1000
+ static VAL_RMS: HeaderValue = HeaderValue::from_static("application/vnd.jcp.javame.midlet-rms");
1001
+ static VAL_RMVB: HeaderValue = HeaderValue::from_static("application/vnd.rn-realmedia-vbr");
1002
+ static VAL_RNC: HeaderValue = HeaderValue::from_static("application/relax-ng-compact-syntax");
1003
+ static VAL_RNG: HeaderValue = HeaderValue::from_static("application/xml");
1004
+ static VAL_ROA: HeaderValue = HeaderValue::from_static("application/rpki-roa");
1005
+ static VAL_ROFF: HeaderValue = HeaderValue::from_static("application/x-troff");
1006
+ static VAL_RP9: HeaderValue = HeaderValue::from_static("application/vnd.cloanto.rp9");
1007
+ static VAL_RPM: HeaderValue = HeaderValue::from_static("audio/x-pn-realaudio-plugin");
1008
+ static VAL_RPSS: HeaderValue = HeaderValue::from_static("application/vnd.nokia.radio-presets");
1009
+ static VAL_RPST: HeaderValue = HeaderValue::from_static("application/vnd.nokia.radio-preset");
1010
+ static VAL_RQ: HeaderValue = HeaderValue::from_static("application/sparql-query");
1011
+ static VAL_RQY: HeaderValue = HeaderValue::from_static("text/x-ms-rqy; charset=utf-8");
1012
+ static VAL_RS: HeaderValue = HeaderValue::from_static("text/x-rust; charset=utf-8");
1013
+ static VAL_RSD: HeaderValue = HeaderValue::from_static("application/rsd+xml");
1014
+ static VAL_RSS: HeaderValue = HeaderValue::from_static("application/rss+xml");
1015
+ static VAL_RTF: HeaderValue = HeaderValue::from_static("application/rtf");
1016
+ static VAL_RTX: HeaderValue = HeaderValue::from_static("text/richtext; charset=utf-8");
1017
+ static VAL_RULESET: HeaderValue = HeaderValue::from_static("application/xml");
1018
+ static VAL_RUN: HeaderValue = HeaderValue::from_static("application/x-makeself");
1019
+ static VAL_RVT: HeaderValue = HeaderValue::from_static("application/octet-stream");
1020
+ static VAL_RW2: HeaderValue = HeaderValue::from_static("image/x-panasonic-rw2");
1021
+ static VAL_RWL: HeaderValue = HeaderValue::from_static("image/x-panasonic-rw2");
1022
+ static VAL_S: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
1023
+ static VAL_S3M: HeaderValue = HeaderValue::from_static("audio/s3m");
1024
+ static VAL_SAF: HeaderValue = HeaderValue::from_static("application/vnd.yamaha.smaf-audio");
1025
+ static VAL_SAFARIEXTZ: HeaderValue = HeaderValue::from_static("application/x-safari-safariextz");
1026
+ static VAL_SASS: HeaderValue = HeaderValue::from_static("text/x-sass; charset=utf-8");
1027
+ static VAL_SBML: HeaderValue = HeaderValue::from_static("application/sbml+xml");
1028
+ static VAL_SC: HeaderValue = HeaderValue::from_static("application/vnd.ibm.secure-container");
1029
+ static VAL_SCD: HeaderValue = HeaderValue::from_static("application/x-msschedule");
1030
+ static VAL_SCM: HeaderValue = HeaderValue::from_static("application/vnd.lotus-screencam");
1031
+ static VAL_SCQ: HeaderValue = HeaderValue::from_static("application/scvp-cv-request");
1032
+ static VAL_SCR: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
1033
+ static VAL_SCS: HeaderValue = HeaderValue::from_static("application/scvp-cv-response");
1034
+ static VAL_SCSS: HeaderValue = HeaderValue::from_static("text/x-scss; charset=utf-8");
1035
+ static VAL_SCT: HeaderValue = HeaderValue::from_static("text/scriptlet; charset=utf-8");
1036
+ static VAL_SCURL: HeaderValue = HeaderValue::from_static("text/vnd.curl.scurl; charset=utf-8");
1037
+ static VAL_SD2: HeaderValue = HeaderValue::from_static("audio/x-sd2");
1038
+ static VAL_SDA: HeaderValue = HeaderValue::from_static("application/vnd.stardivision.draw");
1039
+ static VAL_SDC: HeaderValue = HeaderValue::from_static("application/vnd.stardivision.calc");
1040
+ static VAL_SDD: HeaderValue = HeaderValue::from_static("application/vnd.stardivision.impress");
1041
+ static VAL_SDKD: HeaderValue = HeaderValue::from_static("application/vnd.solent.sdkm+xml");
1042
+ static VAL_SDKM: HeaderValue = HeaderValue::from_static("application/vnd.solent.sdkm+xml");
1043
+ static VAL_SDP: HeaderValue = HeaderValue::from_static("application/sdp");
1044
+ static VAL_SDW: HeaderValue = HeaderValue::from_static("application/vnd.stardivision.writer");
1045
+ static VAL_SEA: HeaderValue = HeaderValue::from_static("application/octet-stream");
1046
+ static VAL_SEARCHCONNECTOR: HeaderValue =
1047
+ HeaderValue::from_static("application/windows-search-connector+xml");
1048
+ static VAL_SEE: HeaderValue = HeaderValue::from_static("application/vnd.seemail");
1049
+ static VAL_SEED: HeaderValue = HeaderValue::from_static("application/vnd.fdsn.seed");
1050
+ static VAL_SEMA: HeaderValue = HeaderValue::from_static("application/vnd.sema");
1051
+ static VAL_SEMD: HeaderValue = HeaderValue::from_static("application/vnd.semd");
1052
+ static VAL_SEMF: HeaderValue = HeaderValue::from_static("application/vnd.semf");
1053
+ static VAL_SER: HeaderValue = HeaderValue::from_static("application/java-serialized-object");
1054
+ static VAL_SETPAY: HeaderValue = HeaderValue::from_static("application/set-payment-initiation");
1055
+ static VAL_SETREG: HeaderValue =
1056
+ HeaderValue::from_static("application/set-registration-initiation");
1057
+ static VAL_SETTINGS: HeaderValue = HeaderValue::from_static("application/xml");
1058
+ static VAL_SFD: HeaderValue = HeaderValue::from_static("application/vnd.hydrostatix.sof-data");
1059
+ static VAL_SFS: HeaderValue = HeaderValue::from_static("application/vnd.spotfire.sfs");
1060
+ static VAL_SFV: HeaderValue = HeaderValue::from_static("text/x-sfv; charset=utf-8");
1061
+ static VAL_SGI: HeaderValue = HeaderValue::from_static("image/sgi");
1062
+ static VAL_SGIMB: HeaderValue = HeaderValue::from_static("application/x-sgimb");
1063
+ static VAL_SGL: HeaderValue =
1064
+ HeaderValue::from_static("application/vnd.stardivision.writer-global");
1065
+ static VAL_SGM: HeaderValue = HeaderValue::from_static("text/sgml; charset=utf-8");
1066
+ static VAL_SGML: HeaderValue = HeaderValue::from_static("text/sgml; charset=utf-8");
1067
+ static VAL_SH: HeaderValue = HeaderValue::from_static("application/x-sh");
1068
+ static VAL_SHAR: HeaderValue = HeaderValue::from_static("application/x-shar");
1069
+ static VAL_SHEX: HeaderValue = HeaderValue::from_static("text/shex; charset=utf-8");
1070
+ static VAL_SHF: HeaderValue = HeaderValue::from_static("application/shf+xml");
1071
+ static VAL_SHTML: HeaderValue = HeaderValue::from_static("text/html; charset=utf-8");
1072
+ static VAL_SID: HeaderValue = HeaderValue::from_static("image/x-mrsid-image");
1073
+ static VAL_SIG: HeaderValue = HeaderValue::from_static("application/pgp-signature");
1074
+ static VAL_SIL: HeaderValue = HeaderValue::from_static("audio/silk");
1075
+ static VAL_SILO: HeaderValue = HeaderValue::from_static("model/mesh");
1076
+ static VAL_SIS: HeaderValue = HeaderValue::from_static("application/vnd.symbian.install");
1077
+ static VAL_SISX: HeaderValue = HeaderValue::from_static("application/vnd.symbian.install");
1078
+ static VAL_SIT: HeaderValue = HeaderValue::from_static("application/x-stuffit");
1079
+ static VAL_SITEMAP: HeaderValue = HeaderValue::from_static("application/xml");
1080
+ static VAL_SITX: HeaderValue = HeaderValue::from_static("application/x-stuffitx");
1081
+ static VAL_SKD: HeaderValue = HeaderValue::from_static("application/vnd.koan");
1082
+ static VAL_SKIN: HeaderValue = HeaderValue::from_static("application/xml");
1083
+ static VAL_SKM: HeaderValue = HeaderValue::from_static("application/vnd.koan");
1084
+ static VAL_SKP: HeaderValue = HeaderValue::from_static("application/x-koan");
1085
+ static VAL_SKT: HeaderValue = HeaderValue::from_static("application/vnd.koan");
1086
+ static VAL_SLDM: HeaderValue =
1087
+ HeaderValue::from_static("application/vnd.ms-powerpoint.slide.macroEnabled.12");
1088
+ static VAL_SLDX: HeaderValue =
1089
+ HeaderValue::from_static("application/vnd.openxmlformats-officedocument.presentationml.slide");
1090
+ static VAL_SLIM: HeaderValue = HeaderValue::from_static("text/slim; charset=utf-8");
1091
+ static VAL_SLK: HeaderValue = HeaderValue::from_static("application/vnd.ms-excel");
1092
+ static VAL_SLM: HeaderValue = HeaderValue::from_static("text/slim; charset=utf-8");
1093
+ static VAL_SLN: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
1094
+ static VAL_SLT: HeaderValue = HeaderValue::from_static("application/vnd.epson.salt");
1095
+ static VAL_SLUPKG: HeaderValue = HeaderValue::from_static("application/x-ms-license");
1096
+ static VAL_SM: HeaderValue = HeaderValue::from_static("application/vnd.stepmania.stepchart");
1097
+ static VAL_SMD: HeaderValue = HeaderValue::from_static("audio/x-smd");
1098
+ static VAL_SMF: HeaderValue = HeaderValue::from_static("application/vnd.stardivision.math");
1099
+ static VAL_SMI: HeaderValue = HeaderValue::from_static("application/octet-stream");
1100
+ static VAL_SMIL: HeaderValue = HeaderValue::from_static("application/smil+xml");
1101
+ static VAL_SMV: HeaderValue = HeaderValue::from_static("video/x-smv");
1102
+ static VAL_SMX: HeaderValue = HeaderValue::from_static("audio/x-smd");
1103
+ static VAL_SMZ: HeaderValue = HeaderValue::from_static("audio/x-smd");
1104
+ static VAL_SMZIP: HeaderValue = HeaderValue::from_static("application/vnd.stepmania.package");
1105
+ static VAL_SND: HeaderValue = HeaderValue::from_static("audio/basic");
1106
+ static VAL_SNF: HeaderValue = HeaderValue::from_static("application/x-font-snf");
1107
+ static VAL_SNIPPET: HeaderValue = HeaderValue::from_static("application/xml");
1108
+ static VAL_SNP: HeaderValue = HeaderValue::from_static("application/octet-stream");
1109
+ static VAL_SO: HeaderValue = HeaderValue::from_static("application/octet-stream");
1110
+ static VAL_SOL: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
1111
+ static VAL_SOR: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
1112
+ static VAL_SPC: HeaderValue = HeaderValue::from_static("application/x-pkcs7-certificates");
1113
+ static VAL_SPF: HeaderValue = HeaderValue::from_static("application/vnd.yamaha.smaf-phrase");
1114
+ static VAL_SPL: HeaderValue = HeaderValue::from_static("application/futuresplash");
1115
+ static VAL_SPOT: HeaderValue = HeaderValue::from_static("text/vnd.in3d.spot; charset=utf-8");
1116
+ static VAL_SPP: HeaderValue = HeaderValue::from_static("application/scvp-vp-response");
1117
+ static VAL_SPQ: HeaderValue = HeaderValue::from_static("application/scvp-vp-request");
1118
+ static VAL_SPX: HeaderValue = HeaderValue::from_static("audio/ogg");
1119
+ static VAL_SQL: HeaderValue = HeaderValue::from_static("application/x-sql");
1120
+ static VAL_SR2: HeaderValue = HeaderValue::from_static("image/x-sony-sr2");
1121
+ static VAL_SRC: HeaderValue = HeaderValue::from_static("application/x-wais-source");
1122
+ static VAL_SRF: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
1123
+ static VAL_SRT: HeaderValue = HeaderValue::from_static("application/x-subrip");
1124
+ static VAL_SRU: HeaderValue = HeaderValue::from_static("application/sru+xml");
1125
+ static VAL_SRX: HeaderValue = HeaderValue::from_static("application/sparql-results+xml");
1126
+ static VAL_SSDL: HeaderValue = HeaderValue::from_static("application/ssdl+xml");
1127
+ static VAL_SSE: HeaderValue = HeaderValue::from_static("application/vnd.kodak-descriptor");
1128
+ static VAL_SSF: HeaderValue = HeaderValue::from_static("application/vnd.epson.ssf");
1129
+ static VAL_SSISDEPLOYMENTMANIFEST: HeaderValue =
1130
+ HeaderValue::from_static("text/xml; charset=utf-8");
1131
+ static VAL_SSM: HeaderValue = HeaderValue::from_static("application/streamingmedia");
1132
+ static VAL_SSML: HeaderValue = HeaderValue::from_static("application/ssml+xml");
1133
+ static VAL_SST: HeaderValue = HeaderValue::from_static("application/vnd.ms-pki.certstore");
1134
+ static VAL_ST: HeaderValue = HeaderValue::from_static("application/vnd.sailingtracker.track");
1135
+ static VAL_STC: HeaderValue = HeaderValue::from_static("application/vnd.sun.xml.calc.template");
1136
+ static VAL_STD: HeaderValue = HeaderValue::from_static("application/vnd.sun.xml.draw.template");
1137
+ static VAL_STEP: HeaderValue = HeaderValue::from_static("application/step");
1138
+ static VAL_STF: HeaderValue = HeaderValue::from_static("application/vnd.wt.stf");
1139
+ static VAL_STI: HeaderValue = HeaderValue::from_static("application/vnd.sun.xml.impress.template");
1140
+ static VAL_STK: HeaderValue = HeaderValue::from_static("application/hyperstudio");
1141
+ static VAL_STL: HeaderValue = HeaderValue::from_static("application/vnd.ms-pki.stl");
1142
+ static VAL_STP: HeaderValue = HeaderValue::from_static("application/step");
1143
+ static VAL_STR: HeaderValue = HeaderValue::from_static("application/vnd.pg.format");
1144
+ static VAL_STW: HeaderValue = HeaderValue::from_static("application/vnd.sun.xml.writer.template");
1145
+ static VAL_STYL: HeaderValue = HeaderValue::from_static("text/stylus; charset=utf-8");
1146
+ static VAL_STYLUS: HeaderValue = HeaderValue::from_static("text/stylus; charset=utf-8");
1147
+ static VAL_SUB: HeaderValue = HeaderValue::from_static("text/vnd.dvb.subtitle; charset=utf-8");
1148
+ static VAL_SUS: HeaderValue = HeaderValue::from_static("application/vnd.sus-calendar");
1149
+ static VAL_SUSP: HeaderValue = HeaderValue::from_static("application/vnd.sus-calendar");
1150
+ static VAL_SV4CPIO: HeaderValue = HeaderValue::from_static("application/x-sv4cpio");
1151
+ static VAL_SV4CRC: HeaderValue = HeaderValue::from_static("application/x-sv4crc");
1152
+ static VAL_SVC: HeaderValue = HeaderValue::from_static("application/xml");
1153
+ static VAL_SVD: HeaderValue = HeaderValue::from_static("application/vnd.svd");
1154
+ static VAL_SVG: HeaderValue = HeaderValue::from_static("image/svg+xml");
1155
+ static VAL_SVGZ: HeaderValue = HeaderValue::from_static("image/svg+xml");
1156
+ static VAL_SWA: HeaderValue = HeaderValue::from_static("application/x-director");
1157
+ static VAL_SWF: HeaderValue = HeaderValue::from_static("application/x-shockwave-flash");
1158
+ static VAL_SWI: HeaderValue = HeaderValue::from_static("application/vnd.aristanetworks.swi");
1159
+ static VAL_SXC: HeaderValue = HeaderValue::from_static("application/vnd.sun.xml.calc");
1160
+ static VAL_SXD: HeaderValue = HeaderValue::from_static("application/vnd.sun.xml.draw");
1161
+ static VAL_SXG: HeaderValue = HeaderValue::from_static("application/vnd.sun.xml.writer.global");
1162
+ static VAL_SXI: HeaderValue = HeaderValue::from_static("application/vnd.sun.xml.impress");
1163
+ static VAL_SXM: HeaderValue = HeaderValue::from_static("application/vnd.sun.xml.math");
1164
+ static VAL_SXW: HeaderValue = HeaderValue::from_static("application/vnd.sun.xml.writer");
1165
+ static VAL_T: HeaderValue = HeaderValue::from_static("application/x-troff");
1166
+ static VAL_T3: HeaderValue = HeaderValue::from_static("application/x-t3vm-image");
1167
+ static VAL_TAGLET: HeaderValue = HeaderValue::from_static("application/vnd.mynfc");
1168
+ static VAL_TAO: HeaderValue = HeaderValue::from_static("application/vnd.tao.intent-module-archive");
1169
+ static VAL_TAR: HeaderValue = HeaderValue::from_static("application/x-tar");
1170
+ static VAL_TCAP: HeaderValue = HeaderValue::from_static("application/vnd.3gpp2.tcap");
1171
+ static VAL_TCL: HeaderValue = HeaderValue::from_static("application/x-tcl");
1172
+ static VAL_TEACHER: HeaderValue = HeaderValue::from_static("application/vnd.smart.teacher");
1173
+ static VAL_TEI: HeaderValue = HeaderValue::from_static("application/tei+xml");
1174
+ static VAL_TEICORPUS: HeaderValue = HeaderValue::from_static("application/tei+xml");
1175
+ static VAL_TESTRUNCONFIG: HeaderValue = HeaderValue::from_static("application/xml");
1176
+ static VAL_TESTSETTINGS: HeaderValue = HeaderValue::from_static("application/xml");
1177
+ static VAL_TEX: HeaderValue = HeaderValue::from_static("application/x-tex");
1178
+ static VAL_TEXI: HeaderValue = HeaderValue::from_static("application/x-texinfo");
1179
+ static VAL_TEXINFO: HeaderValue = HeaderValue::from_static("application/x-texinfo");
1180
+ static VAL_TEXT: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
1181
+ static VAL_TFI: HeaderValue = HeaderValue::from_static("application/thraud+xml");
1182
+ static VAL_TFM: HeaderValue = HeaderValue::from_static("application/x-tex-tfm");
1183
+ static VAL_TGA: HeaderValue = HeaderValue::from_static("image/x-tga");
1184
+ static VAL_TGZ: HeaderValue = HeaderValue::from_static("application/x-compressed");
1185
+ static VAL_THMX: HeaderValue = HeaderValue::from_static("application/vnd.ms-officetheme");
1186
+ static VAL_THN: HeaderValue = HeaderValue::from_static("application/octet-stream");
1187
+ static VAL_TIF: HeaderValue = HeaderValue::from_static("image/tiff");
1188
+ static VAL_TIFF: HeaderValue = HeaderValue::from_static("image/tiff");
1189
+ static VAL_TK: HeaderValue = HeaderValue::from_static("application/x-tcl");
1190
+ static VAL_TLH: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
1191
+ static VAL_TLI: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
1192
+ static VAL_TMO: HeaderValue = HeaderValue::from_static("application/vnd.tmobile-livetv");
1193
+ static VAL_TOC: HeaderValue = HeaderValue::from_static("application/octet-stream");
1194
+ static VAL_TOML: HeaderValue = HeaderValue::from_static("text/x-toml; charset=utf-8");
1195
+ static VAL_TORRENT: HeaderValue = HeaderValue::from_static("application/x-bittorrent");
1196
+ static VAL_TPL: HeaderValue = HeaderValue::from_static("application/vnd.groove-tool-template");
1197
+ static VAL_TPT: HeaderValue = HeaderValue::from_static("application/vnd.trid.tpt");
1198
+ static VAL_TR: HeaderValue = HeaderValue::from_static("application/x-troff");
1199
+ static VAL_TRA: HeaderValue = HeaderValue::from_static("application/vnd.trueapp");
1200
+ static VAL_TRIG: HeaderValue = HeaderValue::from_static("application/trig");
1201
+ static VAL_TRM: HeaderValue = HeaderValue::from_static("application/x-msterminal");
1202
+ static VAL_TRX: HeaderValue = HeaderValue::from_static("application/xml");
1203
+ static VAL_TS: HeaderValue = HeaderValue::from_static("video/vnd.dlna.mpeg-tts");
1204
+ static VAL_TSD: HeaderValue = HeaderValue::from_static("application/timestamped-data");
1205
+ static VAL_TSV: HeaderValue = HeaderValue::from_static("text/tab-separated-values; charset=utf-8");
1206
+ static VAL_TTC: HeaderValue = HeaderValue::from_static("font/collection");
1207
+ static VAL_TTF: HeaderValue = HeaderValue::from_static("font/ttf");
1208
+ static VAL_TTL: HeaderValue = HeaderValue::from_static("text/turtle; charset=utf-8");
1209
+ static VAL_TTS: HeaderValue = HeaderValue::from_static("video/vnd.dlna.mpeg-tts");
1210
+ static VAL_TWD: HeaderValue = HeaderValue::from_static("application/vnd.simtech-mindmapper");
1211
+ static VAL_TWDS: HeaderValue = HeaderValue::from_static("application/vnd.simtech-mindmapper");
1212
+ static VAL_TXD: HeaderValue = HeaderValue::from_static("application/vnd.genomatix.tuxedo");
1213
+ static VAL_TXF: HeaderValue = HeaderValue::from_static("application/vnd.mobius.txf");
1214
+ static VAL_TXT: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
1215
+ static VAL_U32: HeaderValue = HeaderValue::from_static("application/octet-stream");
1216
+ static VAL_U8DSN: HeaderValue = HeaderValue::from_static("message/global-delivery-status");
1217
+ static VAL_U8HDR: HeaderValue = HeaderValue::from_static("message/global-headers");
1218
+ static VAL_U8MDN: HeaderValue = HeaderValue::from_static("message/global-disposition-notification");
1219
+ static VAL_U8MSG: HeaderValue = HeaderValue::from_static("message/global");
1220
+ static VAL_UDEB: HeaderValue = HeaderValue::from_static("application/x-debian-package");
1221
+ static VAL_UFD: HeaderValue = HeaderValue::from_static("application/vnd.ufdl");
1222
+ static VAL_UFDL: HeaderValue = HeaderValue::from_static("application/vnd.ufdl");
1223
+ static VAL_ULS: HeaderValue = HeaderValue::from_static("text/iuls; charset=utf-8");
1224
+ static VAL_ULX: HeaderValue = HeaderValue::from_static("application/x-glulx");
1225
+ static VAL_UMJ: HeaderValue = HeaderValue::from_static("application/vnd.umajin");
1226
+ static VAL_UNITYWEB: HeaderValue = HeaderValue::from_static("application/vnd.unity");
1227
+ static VAL_UOML: HeaderValue = HeaderValue::from_static("application/vnd.uoml+xml");
1228
+ static VAL_URI: HeaderValue = HeaderValue::from_static("text/uri-list; charset=utf-8");
1229
+ static VAL_URIS: HeaderValue = HeaderValue::from_static("text/uri-list; charset=utf-8");
1230
+ static VAL_URLS: HeaderValue = HeaderValue::from_static("text/uri-list; charset=utf-8");
1231
+ static VAL_USER: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
1232
+ static VAL_USTAR: HeaderValue = HeaderValue::from_static("application/x-ustar");
1233
+ static VAL_UTZ: HeaderValue = HeaderValue::from_static("application/vnd.uiq.theme");
1234
+ static VAL_UU: HeaderValue = HeaderValue::from_static("text/x-uuencode; charset=utf-8");
1235
+ static VAL_UVA: HeaderValue = HeaderValue::from_static("audio/vnd.dece.audio");
1236
+ static VAL_UVD: HeaderValue = HeaderValue::from_static("application/vnd.dece.data");
1237
+ static VAL_UVF: HeaderValue = HeaderValue::from_static("application/vnd.dece.data");
1238
+ static VAL_UVG: HeaderValue = HeaderValue::from_static("image/vnd.dece.graphic");
1239
+ static VAL_UVH: HeaderValue = HeaderValue::from_static("video/vnd.dece.hd");
1240
+ static VAL_UVI: HeaderValue = HeaderValue::from_static("image/vnd.dece.graphic");
1241
+ static VAL_UVM: HeaderValue = HeaderValue::from_static("video/vnd.dece.mobile");
1242
+ static VAL_UVP: HeaderValue = HeaderValue::from_static("video/vnd.dece.pd");
1243
+ static VAL_UVS: HeaderValue = HeaderValue::from_static("video/vnd.dece.sd");
1244
+ static VAL_UVT: HeaderValue = HeaderValue::from_static("application/vnd.dece.ttml+xml");
1245
+ static VAL_UVU: HeaderValue = HeaderValue::from_static("video/vnd.uvvu.mp4");
1246
+ static VAL_UVV: HeaderValue = HeaderValue::from_static("video/vnd.dece.video");
1247
+ static VAL_UVVA: HeaderValue = HeaderValue::from_static("audio/vnd.dece.audio");
1248
+ static VAL_UVVD: HeaderValue = HeaderValue::from_static("application/vnd.dece.data");
1249
+ static VAL_UVVF: HeaderValue = HeaderValue::from_static("application/vnd.dece.data");
1250
+ static VAL_UVVG: HeaderValue = HeaderValue::from_static("image/vnd.dece.graphic");
1251
+ static VAL_UVVH: HeaderValue = HeaderValue::from_static("video/vnd.dece.hd");
1252
+ static VAL_UVVI: HeaderValue = HeaderValue::from_static("image/vnd.dece.graphic");
1253
+ static VAL_UVVM: HeaderValue = HeaderValue::from_static("video/vnd.dece.mobile");
1254
+ static VAL_UVVP: HeaderValue = HeaderValue::from_static("video/vnd.dece.pd");
1255
+ static VAL_UVVS: HeaderValue = HeaderValue::from_static("video/vnd.dece.sd");
1256
+ static VAL_UVVT: HeaderValue = HeaderValue::from_static("application/vnd.dece.ttml+xml");
1257
+ static VAL_UVVU: HeaderValue = HeaderValue::from_static("video/vnd.uvvu.mp4");
1258
+ static VAL_UVVV: HeaderValue = HeaderValue::from_static("video/vnd.dece.video");
1259
+ static VAL_UVVX: HeaderValue = HeaderValue::from_static("application/vnd.dece.unspecified");
1260
+ static VAL_UVVZ: HeaderValue = HeaderValue::from_static("application/vnd.dece.zip");
1261
+ static VAL_UVX: HeaderValue = HeaderValue::from_static("application/vnd.dece.unspecified");
1262
+ static VAL_UVZ: HeaderValue = HeaderValue::from_static("application/vnd.dece.zip");
1263
+ static VAL_VB: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
1264
+ static VAL_VBDPROJ: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
1265
+ static VAL_VBK: HeaderValue = HeaderValue::from_static("video/mpeg");
1266
+ static VAL_VBOX: HeaderValue = HeaderValue::from_static("application/x-virtualbox-vbox");
1267
+ static VAL_VBPROJ: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
1268
+ static VAL_VBS: HeaderValue = HeaderValue::from_static("text/vbscript; charset=utf-8");
1269
+ static VAL_VCARD: HeaderValue = HeaderValue::from_static("text/vcard; charset=utf-8");
1270
+ static VAL_VCD: HeaderValue = HeaderValue::from_static("application/x-cdlink");
1271
+ static VAL_VCF: HeaderValue = HeaderValue::from_static("text/x-vcard; charset=utf-8");
1272
+ static VAL_VCG: HeaderValue = HeaderValue::from_static("application/vnd.groove-vcard");
1273
+ static VAL_VCPROJ: HeaderValue = HeaderValue::from_static("application/xml");
1274
+ static VAL_VCS: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
1275
+ static VAL_VCX: HeaderValue = HeaderValue::from_static("application/vnd.vcx");
1276
+ static VAL_VCXPROJ: HeaderValue = HeaderValue::from_static("application/xml");
1277
+ static VAL_VDDPROJ: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
1278
+ static VAL_VDI: HeaderValue = HeaderValue::from_static("application/x-virtualbox-vdi");
1279
+ static VAL_VDP: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
1280
+ static VAL_VDPROJ: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
1281
+ static VAL_VDX: HeaderValue = HeaderValue::from_static("application/vnd.ms-visio.viewer");
1282
+ static VAL_VHD: HeaderValue = HeaderValue::from_static("application/x-virtualbox-vhd");
1283
+ static VAL_VIS: HeaderValue = HeaderValue::from_static("application/vnd.visionary");
1284
+ static VAL_VIV: HeaderValue = HeaderValue::from_static("video/vnd.vivo");
1285
+ static VAL_VMDK: HeaderValue = HeaderValue::from_static("application/x-virtualbox-vmdk");
1286
+ static VAL_VML: HeaderValue = HeaderValue::from_static("text/xml; charset=utf-8");
1287
+ static VAL_VOB: HeaderValue = HeaderValue::from_static("video/x-ms-vob");
1288
+ static VAL_VOR: HeaderValue = HeaderValue::from_static("application/vnd.stardivision.writer");
1289
+ static VAL_VOX: HeaderValue = HeaderValue::from_static("application/x-authorware-bin");
1290
+ static VAL_VRML: HeaderValue = HeaderValue::from_static("model/vrml");
1291
+ static VAL_VSCONTENT: HeaderValue = HeaderValue::from_static("application/xml");
1292
+ static VAL_VSCT: HeaderValue = HeaderValue::from_static("text/xml; charset=utf-8");
1293
+ static VAL_VSD: HeaderValue = HeaderValue::from_static("application/vnd.visio");
1294
+ static VAL_VSF: HeaderValue = HeaderValue::from_static("application/vnd.vsf");
1295
+ static VAL_VSI: HeaderValue = HeaderValue::from_static("application/ms-vsi");
1296
+ static VAL_VSIX: HeaderValue = HeaderValue::from_static("application/vsix");
1297
+ static VAL_VSIXLANGPACK: HeaderValue = HeaderValue::from_static("text/xml; charset=utf-8");
1298
+ static VAL_VSIXMANIFEST: HeaderValue = HeaderValue::from_static("text/xml; charset=utf-8");
1299
+ static VAL_VSMDI: HeaderValue = HeaderValue::from_static("application/xml");
1300
+ static VAL_VSPSCC: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
1301
+ static VAL_VSS: HeaderValue = HeaderValue::from_static("application/vnd.visio");
1302
+ static VAL_VSSCC: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
1303
+ static VAL_VSSETTINGS: HeaderValue = HeaderValue::from_static("text/xml; charset=utf-8");
1304
+ static VAL_VSSSCC: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
1305
+ static VAL_VST: HeaderValue = HeaderValue::from_static("application/vnd.visio");
1306
+ static VAL_VSTEMPLATE: HeaderValue = HeaderValue::from_static("text/xml; charset=utf-8");
1307
+ static VAL_VSTO: HeaderValue = HeaderValue::from_static("application/x-ms-vsto");
1308
+ static VAL_VSW: HeaderValue = HeaderValue::from_static("application/vnd.visio");
1309
+ static VAL_VSX: HeaderValue = HeaderValue::from_static("application/vnd.visio");
1310
+ static VAL_VTT: HeaderValue = HeaderValue::from_static("text/vtt; charset=utf-8");
1311
+ static VAL_VTU: HeaderValue = HeaderValue::from_static("model/vnd.vtu");
1312
+ static VAL_VTX: HeaderValue = HeaderValue::from_static("application/vnd.visio");
1313
+ static VAL_VXML: HeaderValue = HeaderValue::from_static("application/voicexml+xml");
1314
+ static VAL_W3D: HeaderValue = HeaderValue::from_static("application/x-director");
1315
+ static VAL_WAD: HeaderValue = HeaderValue::from_static("application/x-doom");
1316
+ static VAL_WADL: HeaderValue = HeaderValue::from_static("application/vnd.sun.wadl+xml");
1317
+ static VAL_WAR: HeaderValue = HeaderValue::from_static("application/java-archive");
1318
+ static VAL_WASM: HeaderValue = HeaderValue::from_static("application/wasm");
1319
+ static VAL_WAV: HeaderValue = HeaderValue::from_static("audio/wav");
1320
+ static VAL_WAVE: HeaderValue = HeaderValue::from_static("audio/wav");
1321
+ static VAL_WAX: HeaderValue = HeaderValue::from_static("audio/x-ms-wax");
1322
+ static VAL_WBK: HeaderValue = HeaderValue::from_static("application/msword");
1323
+ static VAL_WBMP: HeaderValue = HeaderValue::from_static("image/vnd.wap.wbmp");
1324
+ static VAL_WBS: HeaderValue = HeaderValue::from_static("application/vnd.criticaltools.wbs+xml");
1325
+ static VAL_WBXML: HeaderValue = HeaderValue::from_static("application/vnd.wap.wbxml");
1326
+ static VAL_WCM: HeaderValue = HeaderValue::from_static("application/vnd.ms-works");
1327
+ static VAL_WDB: HeaderValue = HeaderValue::from_static("application/vnd.ms-works");
1328
+ static VAL_WDP: HeaderValue = HeaderValue::from_static("image/vnd.ms-photo");
1329
+ static VAL_WEBA: HeaderValue = HeaderValue::from_static("audio/webm");
1330
+ static VAL_WEBAPP: HeaderValue = HeaderValue::from_static("application/x-web-app-manifest+json");
1331
+ static VAL_WEBARCHIVE: HeaderValue = HeaderValue::from_static("application/x-safari-webarchive");
1332
+ static VAL_WEBM: HeaderValue = HeaderValue::from_static("video/webm");
1333
+ static VAL_WEBMANIFEST: HeaderValue = HeaderValue::from_static("application/manifest+json");
1334
+ static VAL_WEBP: HeaderValue = HeaderValue::from_static("image/webp");
1335
+ static VAL_WEBTEST: HeaderValue = HeaderValue::from_static("application/xml");
1336
+ static VAL_WG: HeaderValue = HeaderValue::from_static("application/vnd.pmi.widget");
1337
+ static VAL_WGT: HeaderValue = HeaderValue::from_static("application/widget");
1338
+ static VAL_WIQ: HeaderValue = HeaderValue::from_static("application/xml");
1339
+ static VAL_WIZ: HeaderValue = HeaderValue::from_static("application/msword");
1340
+ static VAL_WKS: HeaderValue = HeaderValue::from_static("application/vnd.ms-works");
1341
+ static VAL_WLMP: HeaderValue = HeaderValue::from_static("application/wlmoviemaker");
1342
+ static VAL_WLPGINSTALL: HeaderValue = HeaderValue::from_static("application/x-wlpg-detect");
1343
+ static VAL_WLPGINSTALL3: HeaderValue = HeaderValue::from_static("application/x-wlpg3-detect");
1344
+ static VAL_WM: HeaderValue = HeaderValue::from_static("video/x-ms-wm");
1345
+ static VAL_WMA: HeaderValue = HeaderValue::from_static("audio/x-ms-wma");
1346
+ static VAL_WMD: HeaderValue = HeaderValue::from_static("application/x-ms-wmd");
1347
+ static VAL_WMF: HeaderValue = HeaderValue::from_static("application/x-msmetafile");
1348
+ static VAL_WML: HeaderValue = HeaderValue::from_static("text/vnd.wap.wml; charset=utf-8");
1349
+ static VAL_WMLC: HeaderValue = HeaderValue::from_static("application/vnd.wap.wmlc");
1350
+ static VAL_WMLS: HeaderValue = HeaderValue::from_static("text/vnd.wap.wmlscript; charset=utf-8");
1351
+ static VAL_WMLSC: HeaderValue = HeaderValue::from_static("application/vnd.wap.wmlscriptc");
1352
+ static VAL_WMP: HeaderValue = HeaderValue::from_static("video/x-ms-wmp");
1353
+ static VAL_WMV: HeaderValue = HeaderValue::from_static("video/x-ms-wmv");
1354
+ static VAL_WMX: HeaderValue = HeaderValue::from_static("video/x-ms-wmx");
1355
+ static VAL_WMZ: HeaderValue = HeaderValue::from_static("application/x-ms-wmz");
1356
+ static VAL_WOFF: HeaderValue = HeaderValue::from_static("application/font-woff");
1357
+ static VAL_WOFF2: HeaderValue = HeaderValue::from_static("font/woff2");
1358
+ static VAL_WPD: HeaderValue = HeaderValue::from_static("application/vnd.wordperfect");
1359
+ static VAL_WPL: HeaderValue = HeaderValue::from_static("application/vnd.ms-wpl");
1360
+ static VAL_WPS: HeaderValue = HeaderValue::from_static("application/vnd.ms-works");
1361
+ static VAL_WQD: HeaderValue = HeaderValue::from_static("application/vnd.wqd");
1362
+ static VAL_WRI: HeaderValue = HeaderValue::from_static("application/x-mswrite");
1363
+ static VAL_WRL: HeaderValue = HeaderValue::from_static("x-world/x-vrml");
1364
+ static VAL_WRZ: HeaderValue = HeaderValue::from_static("x-world/x-vrml");
1365
+ static VAL_WSC: HeaderValue = HeaderValue::from_static("text/scriptlet; charset=utf-8");
1366
+ static VAL_WSDL: HeaderValue = HeaderValue::from_static("text/xml; charset=utf-8");
1367
+ static VAL_WSPOLICY: HeaderValue = HeaderValue::from_static("application/wspolicy+xml");
1368
+ static VAL_WTB: HeaderValue = HeaderValue::from_static("application/vnd.webturbo");
1369
+ static VAL_WVX: HeaderValue = HeaderValue::from_static("video/x-ms-wvx");
1370
+ static VAL_X: HeaderValue = HeaderValue::from_static("application/directx");
1371
+ static VAL_X32: HeaderValue = HeaderValue::from_static("application/x-authorware-bin");
1372
+ static VAL_X3D: HeaderValue = HeaderValue::from_static("model/x3d+xml");
1373
+ static VAL_X3DB: HeaderValue = HeaderValue::from_static("model/x3d+binary");
1374
+ static VAL_X3DBZ: HeaderValue = HeaderValue::from_static("model/x3d+binary");
1375
+ static VAL_X3DV: HeaderValue = HeaderValue::from_static("model/x3d+vrml");
1376
+ static VAL_X3DVZ: HeaderValue = HeaderValue::from_static("model/x3d+vrml");
1377
+ static VAL_X3DZ: HeaderValue = HeaderValue::from_static("model/x3d+xml");
1378
+ static VAL_X3F: HeaderValue = HeaderValue::from_static("image/x-sigma-x3f");
1379
+ static VAL_XAF: HeaderValue = HeaderValue::from_static("x-world/x-vrml");
1380
+ static VAL_XAML: HeaderValue = HeaderValue::from_static("application/xaml+xml");
1381
+ static VAL_XAP: HeaderValue = HeaderValue::from_static("application/x-silverlight-app");
1382
+ static VAL_XAR: HeaderValue = HeaderValue::from_static("application/vnd.xara");
1383
+ static VAL_XBAP: HeaderValue = HeaderValue::from_static("application/x-ms-xbap");
1384
+ static VAL_XBD: HeaderValue =
1385
+ HeaderValue::from_static("application/vnd.fujixerox.docuworks.binder");
1386
+ static VAL_XBM: HeaderValue = HeaderValue::from_static("image/x-xbitmap");
1387
+ static VAL_XDF: HeaderValue = HeaderValue::from_static("application/xcap-diff+xml");
1388
+ static VAL_XDM: HeaderValue = HeaderValue::from_static("application/vnd.syncml.dm+xml");
1389
+ static VAL_XDP: HeaderValue = HeaderValue::from_static("application/vnd.adobe.xdp+xml");
1390
+ static VAL_XDR: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
1391
+ static VAL_XDSSC: HeaderValue = HeaderValue::from_static("application/dssc+xml");
1392
+ static VAL_XDW: HeaderValue = HeaderValue::from_static("application/vnd.fujixerox.docuworks");
1393
+ static VAL_XENC: HeaderValue = HeaderValue::from_static("application/xenc+xml");
1394
+ static VAL_XER: HeaderValue = HeaderValue::from_static("application/patch-ops-error+xml");
1395
+ static VAL_XFDF: HeaderValue = HeaderValue::from_static("application/vnd.adobe.xfdf");
1396
+ static VAL_XFDL: HeaderValue = HeaderValue::from_static("application/vnd.xfdl");
1397
+ static VAL_XHT: HeaderValue = HeaderValue::from_static("application/xhtml+xml");
1398
+ static VAL_XHTML: HeaderValue = HeaderValue::from_static("application/xhtml+xml");
1399
+ static VAL_XHVML: HeaderValue = HeaderValue::from_static("application/xv+xml");
1400
+ static VAL_XIF: HeaderValue = HeaderValue::from_static("image/vnd.xiff");
1401
+ static VAL_XLA: HeaderValue = HeaderValue::from_static("application/vnd.ms-excel");
1402
+ static VAL_XLAM: HeaderValue =
1403
+ HeaderValue::from_static("application/vnd.ms-excel.addin.macroEnabled.12");
1404
+ static VAL_XLC: HeaderValue = HeaderValue::from_static("application/vnd.ms-excel");
1405
+ static VAL_XLD: HeaderValue = HeaderValue::from_static("application/vnd.ms-excel");
1406
+ static VAL_XLF: HeaderValue = HeaderValue::from_static("application/x-xliff+xml");
1407
+ static VAL_XLK: HeaderValue = HeaderValue::from_static("application/vnd.ms-excel");
1408
+ static VAL_XLL: HeaderValue = HeaderValue::from_static("application/vnd.ms-excel");
1409
+ static VAL_XLM: HeaderValue = HeaderValue::from_static("application/vnd.ms-excel");
1410
+ static VAL_XLS: HeaderValue = HeaderValue::from_static("application/vnd.ms-excel");
1411
+ static VAL_XLSB: HeaderValue =
1412
+ HeaderValue::from_static("application/vnd.ms-excel.sheet.binary.macroEnabled.12");
1413
+ static VAL_XLSM: HeaderValue =
1414
+ HeaderValue::from_static("application/vnd.ms-excel.sheet.macroEnabled.12");
1415
+ static VAL_XLSX: HeaderValue =
1416
+ HeaderValue::from_static("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
1417
+ static VAL_XLT: HeaderValue = HeaderValue::from_static("application/vnd.ms-excel");
1418
+ static VAL_XLTM: HeaderValue =
1419
+ HeaderValue::from_static("application/vnd.ms-excel.template.macroEnabled.12");
1420
+ static VAL_XLTX: HeaderValue = HeaderValue::from_static(
1421
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.template",
1422
+ );
1423
+ static VAL_XLW: HeaderValue = HeaderValue::from_static("application/vnd.ms-excel");
1424
+ static VAL_XM: HeaderValue = HeaderValue::from_static("audio/xm");
1425
+ static VAL_XML: HeaderValue = HeaderValue::from_static("text/xml; charset=utf-8");
1426
+ static VAL_XMP: HeaderValue = HeaderValue::from_static("application/octet-stream");
1427
+ static VAL_XMTA: HeaderValue = HeaderValue::from_static("application/xml");
1428
+ static VAL_XO: HeaderValue = HeaderValue::from_static("application/vnd.olpc-sugar");
1429
+ static VAL_XOF: HeaderValue = HeaderValue::from_static("x-world/x-vrml");
1430
+ static VAL_XOML: HeaderValue = HeaderValue::from_static("text/plain; charset=utf-8");
1431
+ static VAL_XOP: HeaderValue = HeaderValue::from_static("application/xop+xml");
1432
+ static VAL_XPI: HeaderValue = HeaderValue::from_static("application/x-xpinstall");
1433
+ static VAL_XPL: HeaderValue = HeaderValue::from_static("application/xproc+xml");
1434
+ static VAL_XPM: HeaderValue = HeaderValue::from_static("image/x-xpixmap");
1435
+ static VAL_XPR: HeaderValue = HeaderValue::from_static("application/vnd.is-xpr");
1436
+ static VAL_XPS: HeaderValue = HeaderValue::from_static("application/vnd.ms-xpsdocument");
1437
+ static VAL_XPW: HeaderValue = HeaderValue::from_static("application/vnd.intercon.formnet");
1438
+ static VAL_XPX: HeaderValue = HeaderValue::from_static("application/vnd.intercon.formnet");
1439
+ static VAL_XRM: HeaderValue = HeaderValue::from_static("text/xml; charset=utf-8");
1440
+ static VAL_XSC: HeaderValue = HeaderValue::from_static("application/xml");
1441
+ static VAL_XSD: HeaderValue = HeaderValue::from_static("text/xml; charset=utf-8");
1442
+ static VAL_XSF: HeaderValue = HeaderValue::from_static("text/xml; charset=utf-8");
1443
+ static VAL_XSL: HeaderValue = HeaderValue::from_static("text/xml; charset=utf-8");
1444
+ static VAL_XSLT: HeaderValue = HeaderValue::from_static("text/xml; charset=utf-8");
1445
+ static VAL_XSM: HeaderValue = HeaderValue::from_static("application/vnd.syncml+xml");
1446
+ static VAL_XSN: HeaderValue = HeaderValue::from_static("application/octet-stream");
1447
+ static VAL_XSPF: HeaderValue = HeaderValue::from_static("application/xspf+xml");
1448
+ static VAL_XSS: HeaderValue = HeaderValue::from_static("application/xml");
1449
+ static VAL_XTP: HeaderValue = HeaderValue::from_static("application/octet-stream");
1450
+ static VAL_XUL: HeaderValue = HeaderValue::from_static("application/vnd.mozilla.xul+xml");
1451
+ static VAL_XVM: HeaderValue = HeaderValue::from_static("application/xv+xml");
1452
+ static VAL_XVML: HeaderValue = HeaderValue::from_static("application/xv+xml");
1453
+ static VAL_XWD: HeaderValue = HeaderValue::from_static("image/x-xwindowdump");
1454
+ static VAL_XYZ: HeaderValue = HeaderValue::from_static("chemical/x-xyz");
1455
+ static VAL_XZ: HeaderValue = HeaderValue::from_static("application/x-xz");
1456
+ static VAL_YAML: HeaderValue = HeaderValue::from_static("text/x-yaml; charset=utf-8");
1457
+ static VAL_YANG: HeaderValue = HeaderValue::from_static("application/yang");
1458
+ static VAL_YIN: HeaderValue = HeaderValue::from_static("application/yin+xml");
1459
+ static VAL_YML: HeaderValue = HeaderValue::from_static("text/x-yaml; charset=utf-8");
1460
+ static VAL_YMP: HeaderValue = HeaderValue::from_static("text/x-suse-ymp; charset=utf-8");
1461
+ static VAL_Z: HeaderValue = HeaderValue::from_static("application/x-compress");
1462
+ static VAL_Z1: HeaderValue = HeaderValue::from_static("application/x-zmachine");
1463
+ static VAL_Z2: HeaderValue = HeaderValue::from_static("application/x-zmachine");
1464
+ static VAL_Z3: HeaderValue = HeaderValue::from_static("application/x-zmachine");
1465
+ static VAL_Z4: HeaderValue = HeaderValue::from_static("application/x-zmachine");
1466
+ static VAL_Z5: HeaderValue = HeaderValue::from_static("application/x-zmachine");
1467
+ static VAL_Z6: HeaderValue = HeaderValue::from_static("application/x-zmachine");
1468
+ static VAL_Z7: HeaderValue = HeaderValue::from_static("application/x-zmachine");
1469
+ static VAL_Z8: HeaderValue = HeaderValue::from_static("application/x-zmachine");
1470
+ static VAL_ZAZ: HeaderValue = HeaderValue::from_static("application/vnd.zzazz.deck+xml");
1471
+ static VAL_ZIP: HeaderValue = HeaderValue::from_static("application/zip");
1472
+ static VAL_ZIR: HeaderValue = HeaderValue::from_static("application/vnd.zul");
1473
+ static VAL_ZIRZ: HeaderValue = HeaderValue::from_static("application/vnd.zul");
1474
+ static VAL_ZMM: HeaderValue =
1475
+ HeaderValue::from_static("application/vnd.handheld-entertainment+xml");
1476
+
1477
+ static MIME_TYPES: Map<&'static str, &'static HeaderValue> = phf_map! {
1478
+ "123" => &VAL_123,
1479
+ "323" => &VAL_323,
1480
+ "3dml" => &VAL_3DML,
1481
+ "3ds" => &VAL_3DS,
1482
+ "3g2" => &VAL_3G2,
1483
+ "3gp" => &VAL_3GP,
1484
+ "3gp2" => &VAL_3GP2,
1485
+ "3gpp" => &VAL_3GPP,
1486
+ "7z" => &VAL_7Z,
1487
+ "aa" => &VAL_AA,
1488
+ "aab" => &VAL_AAB,
1489
+ "aac" => &VAL_AAC,
1490
+ "aaf" => &VAL_AAF,
1491
+ "aam" => &VAL_AAM,
1492
+ "aas" => &VAL_AAS,
1493
+ "aax" => &VAL_AAX,
1494
+ "abw" => &VAL_ABW,
1495
+ "ac" => &VAL_AC,
1496
+ "ac3" => &VAL_AC3,
1497
+ "aca" => &VAL_ACA,
1498
+ "acc" => &VAL_ACC,
1499
+ "accda" => &VAL_ACCDA,
1500
+ "accdb" => &VAL_ACCDB,
1501
+ "accdc" => &VAL_ACCDC,
1502
+ "accde" => &VAL_ACCDE,
1503
+ "accdr" => &VAL_ACCDR,
1504
+ "accdt" => &VAL_ACCDT,
1505
+ "accdw" => &VAL_ACCDW,
1506
+ "accft" => &VAL_ACCFT,
1507
+ "ace" => &VAL_ACE,
1508
+ "acu" => &VAL_ACU,
1509
+ "acutc" => &VAL_ACUTC,
1510
+ "acx" => &VAL_ACX,
1511
+ "addin" => &VAL_ADDIN,
1512
+ "ade" => &VAL_ADE,
1513
+ "adobebridge" => &VAL_ADOBEBRIDGE,
1514
+ "adp" => &VAL_ADP,
1515
+ "adt" => &VAL_ADT,
1516
+ "adts" => &VAL_ADTS,
1517
+ "aep" => &VAL_AEP,
1518
+ "afm" => &VAL_AFM,
1519
+ "afp" => &VAL_AFP,
1520
+ "ahead" => &VAL_AHEAD,
1521
+ "ai" => &VAL_AI,
1522
+ "aif" => &VAL_AIF,
1523
+ "aifc" => &VAL_AIFC,
1524
+ "aiff" => &VAL_AIFF,
1525
+ "air" => &VAL_AIR,
1526
+ "ait" => &VAL_AIT,
1527
+ "amc" => &VAL_AMC,
1528
+ "ami" => &VAL_AMI,
1529
+ "anx" => &VAL_ANX,
1530
+ "apk" => &VAL_APK,
1531
+ "apng" => &VAL_APNG,
1532
+ "appcache" => &VAL_APPCACHE,
1533
+ "application" => &VAL_APPLICATION,
1534
+ "apr" => &VAL_APR,
1535
+ "arc" => &VAL_ARC,
1536
+ "arj" => &VAL_ARJ,
1537
+ "art" => &VAL_ART,
1538
+ "arw" => &VAL_ARW,
1539
+ "asa" => &VAL_ASA,
1540
+ "asax" => &VAL_ASAX,
1541
+ "asc" => &VAL_ASC,
1542
+ "ascx" => &VAL_ASCX,
1543
+ "asd" => &VAL_ASD,
1544
+ "asf" => &VAL_ASF,
1545
+ "ashx" => &VAL_ASHX,
1546
+ "asi" => &VAL_ASI,
1547
+ "asm" => &VAL_ASM,
1548
+ "asmx" => &VAL_ASMX,
1549
+ "aso" => &VAL_ASO,
1550
+ "aspx" => &VAL_ASPX,
1551
+ "asr" => &VAL_ASR,
1552
+ "asx" => &VAL_ASX,
1553
+ "atc" => &VAL_ATC,
1554
+ "atom" => &VAL_ATOM,
1555
+ "atomcat" => &VAL_ATOMCAT,
1556
+ "atomsvc" => &VAL_ATOMSVC,
1557
+ "atx" => &VAL_ATX,
1558
+ "au" => &VAL_AU,
1559
+ "avi" => &VAL_AVI,
1560
+ "avif" => &VAL_AVIF,
1561
+ "avifs" => &VAL_AVIFS,
1562
+ "aw" => &VAL_AW,
1563
+ "axa" => &VAL_AXA,
1564
+ "axs" => &VAL_AXS,
1565
+ "axv" => &VAL_AXV,
1566
+ "azf" => &VAL_AZF,
1567
+ "azs" => &VAL_AZS,
1568
+ "azw" => &VAL_AZW,
1569
+ "bas" => &VAL_BAS,
1570
+ "bat" => &VAL_BAT,
1571
+ "bcpio" => &VAL_BCPIO,
1572
+ "bdf" => &VAL_BDF,
1573
+ "bdm" => &VAL_BDM,
1574
+ "bdoc" => &VAL_BDOC,
1575
+ "bed" => &VAL_BED,
1576
+ "bh2" => &VAL_BH2,
1577
+ "bin" => &VAL_BIN,
1578
+ "blb" => &VAL_BLB,
1579
+ "blorb" => &VAL_BLORB,
1580
+ "bmi" => &VAL_BMI,
1581
+ "bmp" => &VAL_BMP,
1582
+ "book" => &VAL_BOOK,
1583
+ "box" => &VAL_BOX,
1584
+ "boz" => &VAL_BOZ,
1585
+ "bpk" => &VAL_BPK,
1586
+ "btif" => &VAL_BTIF,
1587
+ "buffer" => &VAL_BUFFER,
1588
+ "bz" => &VAL_BZ,
1589
+ "bz2" => &VAL_BZ2,
1590
+ "c" => &VAL_C,
1591
+ "c11amc" => &VAL_C11AMC,
1592
+ "c11amz" => &VAL_C11AMZ,
1593
+ "c4d" => &VAL_C4D,
1594
+ "c4f" => &VAL_C4F,
1595
+ "c4g" => &VAL_C4G,
1596
+ "c4p" => &VAL_C4P,
1597
+ "c4u" => &VAL_C4U,
1598
+ "cab" => &VAL_CAB,
1599
+ "caf" => &VAL_CAF,
1600
+ "calx" => &VAL_CALX,
1601
+ "cap" => &VAL_CAP,
1602
+ "car" => &VAL_CAR,
1603
+ "cat" => &VAL_CAT,
1604
+ "cb7" => &VAL_CB7,
1605
+ "cba" => &VAL_CBA,
1606
+ "cbr" => &VAL_CBR,
1607
+ "cbt" => &VAL_CBT,
1608
+ "cbz" => &VAL_CBZ,
1609
+ "cc" => &VAL_CC,
1610
+ "cco" => &VAL_CCO,
1611
+ "cct" => &VAL_CCT,
1612
+ "ccxml" => &VAL_CCXML,
1613
+ "cd" => &VAL_CD,
1614
+ "cdbcmsg" => &VAL_CDBCMSG,
1615
+ "cdda" => &VAL_CDDA,
1616
+ "cdf" => &VAL_CDF,
1617
+ "cdkey" => &VAL_CDKEY,
1618
+ "cdmia" => &VAL_CDMIA,
1619
+ "cdmic" => &VAL_CDMIC,
1620
+ "cdmid" => &VAL_CDMID,
1621
+ "cdmio" => &VAL_CDMIO,
1622
+ "cdmiq" => &VAL_CDMIQ,
1623
+ "cdx" => &VAL_CDX,
1624
+ "cdxml" => &VAL_CDXML,
1625
+ "cdy" => &VAL_CDY,
1626
+ "cer" => &VAL_CER,
1627
+ "cfg" => &VAL_CFG,
1628
+ "cfs" => &VAL_CFS,
1629
+ "cgm" => &VAL_CGM,
1630
+ "chat" => &VAL_CHAT,
1631
+ "chm" => &VAL_CHM,
1632
+ "chrt" => &VAL_CHRT,
1633
+ "cif" => &VAL_CIF,
1634
+ "cii" => &VAL_CII,
1635
+ "cil" => &VAL_CIL,
1636
+ "cla" => &VAL_CLA,
1637
+ "class" => &VAL_CLASS,
1638
+ "clkk" => &VAL_CLKK,
1639
+ "clkp" => &VAL_CLKP,
1640
+ "clkt" => &VAL_CLKT,
1641
+ "clkw" => &VAL_CLKW,
1642
+ "clkx" => &VAL_CLKX,
1643
+ "clp" => &VAL_CLP,
1644
+ "cmc" => &VAL_CMC,
1645
+ "cmd" => &VAL_CMD,
1646
+ "cmdf" => &VAL_CMDF,
1647
+ "cml" => &VAL_CML,
1648
+ "cmp" => &VAL_CMP,
1649
+ "cmx" => &VAL_CMX,
1650
+ "cnf" => &VAL_CNF,
1651
+ "cod" => &VAL_COD,
1652
+ "coffee" => &VAL_COFFEE,
1653
+ "com" => &VAL_COM,
1654
+ "conf" => &VAL_CONF,
1655
+ "config" => &VAL_CONFIG,
1656
+ "contact" => &VAL_CONTACT,
1657
+ "coverage" => &VAL_COVERAGE,
1658
+ "cpio" => &VAL_CPIO,
1659
+ "cpp" => &VAL_CPP,
1660
+ "cpt" => &VAL_CPT,
1661
+ "cr2" => &VAL_CR2,
1662
+ "cr3" => &VAL_CR3,
1663
+ "crd" => &VAL_CRD,
1664
+ "crl" => &VAL_CRL,
1665
+ "crt" => &VAL_CRT,
1666
+ "crw" => &VAL_CRW,
1667
+ "crx" => &VAL_CRX,
1668
+ "cryptonote" => &VAL_CRYPTONOTE,
1669
+ "cs" => &VAL_CS,
1670
+ "csdproj" => &VAL_CSDPROJ,
1671
+ "csh" => &VAL_CSH,
1672
+ "csl" => &VAL_CSL,
1673
+ "csml" => &VAL_CSML,
1674
+ "csp" => &VAL_CSP,
1675
+ "csproj" => &VAL_CSPROJ,
1676
+ "css" => &VAL_CSS,
1677
+ "cst" => &VAL_CST,
1678
+ "csv" => &VAL_CSV,
1679
+ "cu" => &VAL_CU,
1680
+ "cur" => &VAL_CUR,
1681
+ "curl" => &VAL_CURL,
1682
+ "cww" => &VAL_CWW,
1683
+ "cxt" => &VAL_CXT,
1684
+ "cxx" => &VAL_CXX,
1685
+ "dae" => &VAL_DAE,
1686
+ "daf" => &VAL_DAF,
1687
+ "dart" => &VAL_DART,
1688
+ "dat" => &VAL_DAT,
1689
+ "dataless" => &VAL_DATALESS,
1690
+ "datasource" => &VAL_DATASOURCE,
1691
+ "davmount" => &VAL_DAVMOUNT,
1692
+ "dbk" => &VAL_DBK,
1693
+ "dbproj" => &VAL_DBPROJ,
1694
+ "dcr" => &VAL_DCR,
1695
+ "dcurl" => &VAL_DCURL,
1696
+ "dd2" => &VAL_DD2,
1697
+ "ddd" => &VAL_DDD,
1698
+ "deb" => &VAL_DEB,
1699
+ "def" => &VAL_DEF,
1700
+ "deploy" => &VAL_DEPLOY,
1701
+ "der" => &VAL_DER,
1702
+ "dfac" => &VAL_DFAC,
1703
+ "dgc" => &VAL_DGC,
1704
+ "dgml" => &VAL_DGML,
1705
+ "dib" => &VAL_DIB,
1706
+ "dic" => &VAL_DIC,
1707
+ "dif" => &VAL_DIF,
1708
+ "dir" => &VAL_DIR,
1709
+ "dir_list" => &VAL_DIR_LIST,
1710
+ "dir_list_json" => &VAL_DIR_LIST_JSON,
1711
+ "dis" => &VAL_DIS,
1712
+ "disco" => &VAL_DISCO,
1713
+ "disposition-notification" => &VAL_DISPOSITION,
1714
+ "dist" => &VAL_DIST,
1715
+ "distz" => &VAL_DISTZ,
1716
+ "divx" => &VAL_DIVX,
1717
+ "djv" => &VAL_DJV,
1718
+ "djvu" => &VAL_DJVU,
1719
+ "dll" => &VAL_DLL,
1720
+ "dlm" => &VAL_DLM,
1721
+ "dmg" => &VAL_DMG,
1722
+ "dmp" => &VAL_DMP,
1723
+ "dms" => &VAL_DMS,
1724
+ "dna" => &VAL_DNA,
1725
+ "dng" => &VAL_DNG,
1726
+ "doc" => &VAL_DOC,
1727
+ "docm" => &VAL_DOCM,
1728
+ "docx" => &VAL_DOCX,
1729
+ "dot" => &VAL_DOT,
1730
+ "dotm" => &VAL_DOTM,
1731
+ "dotx" => &VAL_DOTX,
1732
+ "dp" => &VAL_DP,
1733
+ "dpg" => &VAL_DPG,
1734
+ "dra" => &VAL_DRA,
1735
+ "dsc" => &VAL_DSC,
1736
+ "dsp" => &VAL_DSP,
1737
+ "dssc" => &VAL_DSSC,
1738
+ "dsw" => &VAL_DSW,
1739
+ "dtb" => &VAL_DTB,
1740
+ "dtd" => &VAL_DTD,
1741
+ "dts" => &VAL_DTS,
1742
+ "dtsconfig" => &VAL_DTSCONFIG,
1743
+ "dtshd" => &VAL_DTSHD,
1744
+ "dump" => &VAL_DUMP,
1745
+ "dv" => &VAL_DV,
1746
+ "dvb" => &VAL_DVB,
1747
+ "dvi" => &VAL_DVI,
1748
+ "dwf" => &VAL_DWF,
1749
+ "dwg" => &VAL_DWG,
1750
+ "dwp" => &VAL_DWP,
1751
+ "dxf" => &VAL_DXF,
1752
+ "dxp" => &VAL_DXP,
1753
+ "dxr" => &VAL_DXR,
1754
+ "ear" => &VAL_EAR,
1755
+ "ecelp4800" => &VAL_ECELP4800,
1756
+ "ecelp7470" => &VAL_ECELP7470,
1757
+ "ecelp9600" => &VAL_ECELP9600,
1758
+ "ecma" => &VAL_ECMA,
1759
+ "edm" => &VAL_EDM,
1760
+ "edx" => &VAL_EDX,
1761
+ "efif" => &VAL_EFIF,
1762
+ "ei6" => &VAL_EI6,
1763
+ "elc" => &VAL_ELC,
1764
+ "emf" => &VAL_EMF,
1765
+ "eml" => &VAL_EML,
1766
+ "emma" => &VAL_EMMA,
1767
+ "emz" => &VAL_EMZ,
1768
+ "eol" => &VAL_EOL,
1769
+ "eot" => &VAL_EOT,
1770
+ "eps" => &VAL_EPS,
1771
+ "epub" => &VAL_EPUB,
1772
+ "erf" => &VAL_ERF,
1773
+ "es" => &VAL_ES,
1774
+ "es3" => &VAL_ES3,
1775
+ "esa" => &VAL_ESA,
1776
+ "esf" => &VAL_ESF,
1777
+ "et3" => &VAL_ET3,
1778
+ "etl" => &VAL_ETL,
1779
+ "etx" => &VAL_ETX,
1780
+ "eva" => &VAL_EVA,
1781
+ "evy" => &VAL_EVY,
1782
+ "exe" => &VAL_EXE,
1783
+ "exi" => &VAL_EXI,
1784
+ "ext" => &VAL_EXT,
1785
+ "ez" => &VAL_EZ,
1786
+ "ez2" => &VAL_EZ2,
1787
+ "ez3" => &VAL_EZ3,
1788
+ "f" => &VAL_F,
1789
+ "f4v" => &VAL_F4V,
1790
+ "f77" => &VAL_F77,
1791
+ "f90" => &VAL_F90,
1792
+ "fbs" => &VAL_FBS,
1793
+ "fcdt" => &VAL_FCDT,
1794
+ "fcs" => &VAL_FCS,
1795
+ "fdf" => &VAL_FDF,
1796
+ "fe_launch" => &VAL_FE_LAUNCH,
1797
+ "feature" => &VAL_FEATURE,
1798
+ "fg5" => &VAL_FG5,
1799
+ "fgd" => &VAL_FGD,
1800
+ "fh" => &VAL_FH,
1801
+ "fh4" => &VAL_FH4,
1802
+ "fh5" => &VAL_FH5,
1803
+ "fh7" => &VAL_FH7,
1804
+ "fhc" => &VAL_FHC,
1805
+ "fif" => &VAL_FIF,
1806
+ "fig" => &VAL_FIG,
1807
+ "filters" => &VAL_FILTERS,
1808
+ "fla" => &VAL_FLA,
1809
+ "flac" => &VAL_FLAC,
1810
+ "fli" => &VAL_FLI,
1811
+ "flo" => &VAL_FLO,
1812
+ "flr" => &VAL_FLR,
1813
+ "flv" => &VAL_FLV,
1814
+ "flw" => &VAL_FLW,
1815
+ "flx" => &VAL_FLX,
1816
+ "fly" => &VAL_FLY,
1817
+ "fm" => &VAL_FM,
1818
+ "fnc" => &VAL_FNC,
1819
+ "for" => &VAL_FOR,
1820
+ "fpx" => &VAL_FPX,
1821
+ "frame" => &VAL_FRAME,
1822
+ "fsc" => &VAL_FSC,
1823
+ "fsscript" => &VAL_FSSCRIPT,
1824
+ "fst" => &VAL_FST,
1825
+ "fsx" => &VAL_FSX,
1826
+ "ftc" => &VAL_FTC,
1827
+ "fti" => &VAL_FTI,
1828
+ "fvt" => &VAL_FVT,
1829
+ "fxp" => &VAL_FXP,
1830
+ "fxpl" => &VAL_FXPL,
1831
+ "fzs" => &VAL_FZS,
1832
+ "g2w" => &VAL_G2W,
1833
+ "g3" => &VAL_G3,
1834
+ "g3w" => &VAL_G3W,
1835
+ "gac" => &VAL_GAC,
1836
+ "gam" => &VAL_GAM,
1837
+ "gbr" => &VAL_GBR,
1838
+ "gca" => &VAL_GCA,
1839
+ "gdl" => &VAL_GDL,
1840
+ "gdoc" => &VAL_GDOC,
1841
+ "gemini" => &VAL_GEMINI,
1842
+ "generictest" => &VAL_GENERICTEST,
1843
+ "geo" => &VAL_GEO,
1844
+ "geojson" => &VAL_GEOJSON,
1845
+ "gex" => &VAL_GEX,
1846
+ "ggb" => &VAL_GGB,
1847
+ "ggt" => &VAL_GGT,
1848
+ "ghf" => &VAL_GHF,
1849
+ "gif" => &VAL_GIF,
1850
+ "gim" => &VAL_GIM,
1851
+ "glb" => &VAL_GLB,
1852
+ "gltf" => &VAL_GLTF,
1853
+ "gmi" => &VAL_GMI,
1854
+ "gml" => &VAL_GML,
1855
+ "gmx" => &VAL_GMX,
1856
+ "gnumeric" => &VAL_GNUMERIC,
1857
+ "gph" => &VAL_GPH,
1858
+ "gpx" => &VAL_GPX,
1859
+ "gqf" => &VAL_GQF,
1860
+ "gqs" => &VAL_GQS,
1861
+ "gram" => &VAL_GRAM,
1862
+ "gramps" => &VAL_GRAMPS,
1863
+ "gre" => &VAL_GRE,
1864
+ "group" => &VAL_GROUP,
1865
+ "grv" => &VAL_GRV,
1866
+ "grxml" => &VAL_GRXML,
1867
+ "gsf" => &VAL_GSF,
1868
+ "gsheet" => &VAL_GSHEET,
1869
+ "gslides" => &VAL_GSLIDES,
1870
+ "gsm" => &VAL_GSM,
1871
+ "gtar" => &VAL_GTAR,
1872
+ "gtm" => &VAL_GTM,
1873
+ "gtw" => &VAL_GTW,
1874
+ "gv" => &VAL_GV,
1875
+ "gxf" => &VAL_GXF,
1876
+ "gxt" => &VAL_GXT,
1877
+ "gz" => &VAL_GZ,
1878
+ "h" => &VAL_H,
1879
+ "h261" => &VAL_H261,
1880
+ "h263" => &VAL_H263,
1881
+ "h264" => &VAL_H264,
1882
+ "hal" => &VAL_HAL,
1883
+ "hbci" => &VAL_HBCI,
1884
+ "hbs" => &VAL_HBS,
1885
+ "hdd" => &VAL_HDD,
1886
+ "hdf" => &VAL_HDF,
1887
+ "hdml" => &VAL_HDML,
1888
+ "hdr" => &VAL_HDR,
1889
+ "heic" => &VAL_HEIC,
1890
+ "heics" => &VAL_HEICS,
1891
+ "heif" => &VAL_HEIF,
1892
+ "heifs" => &VAL_HEIFS,
1893
+ "hh" => &VAL_HH,
1894
+ "hhc" => &VAL_HHC,
1895
+ "hhk" => &VAL_HHK,
1896
+ "hhp" => &VAL_HHP,
1897
+ "hjson" => &VAL_HJSON,
1898
+ "hlp" => &VAL_HLP,
1899
+ "hpgl" => &VAL_HPGL,
1900
+ "hpid" => &VAL_HPID,
1901
+ "hpp" => &VAL_HPP,
1902
+ "hps" => &VAL_HPS,
1903
+ "hqx" => &VAL_HQX,
1904
+ "hta" => &VAL_HTA,
1905
+ "htc" => &VAL_HTC,
1906
+ "htke" => &VAL_HTKE,
1907
+ "htm" => &VAL_HTM,
1908
+ "html" => &VAL_HTML,
1909
+ "htt" => &VAL_HTT,
1910
+ "hvd" => &VAL_HVD,
1911
+ "hvp" => &VAL_HVP,
1912
+ "hvs" => &VAL_HVS,
1913
+ "hxa" => &VAL_HXA,
1914
+ "hxc" => &VAL_HXC,
1915
+ "hxd" => &VAL_HXD,
1916
+ "hxe" => &VAL_HXE,
1917
+ "hxf" => &VAL_HXF,
1918
+ "hxh" => &VAL_HXH,
1919
+ "hxi" => &VAL_HXI,
1920
+ "hxk" => &VAL_HXK,
1921
+ "hxq" => &VAL_HXQ,
1922
+ "hxr" => &VAL_HXR,
1923
+ "hxs" => &VAL_HXS,
1924
+ "hxt" => &VAL_HXT,
1925
+ "hxv" => &VAL_HXV,
1926
+ "hxw" => &VAL_HXW,
1927
+ "hxx" => &VAL_HXX,
1928
+ "i" => &VAL_I,
1929
+ "i2g" => &VAL_I2G,
1930
+ "icc" => &VAL_ICC,
1931
+ "ice" => &VAL_ICE,
1932
+ "icm" => &VAL_ICM,
1933
+ "ico" => &VAL_ICO,
1934
+ "ics" => &VAL_ICS,
1935
+ "idl" => &VAL_IDL,
1936
+ "ief" => &VAL_IEF,
1937
+ "ifb" => &VAL_IFB,
1938
+ "ifm" => &VAL_IFM,
1939
+ "iges" => &VAL_IGES,
1940
+ "igl" => &VAL_IGL,
1941
+ "igm" => &VAL_IGM,
1942
+ "igs" => &VAL_IGS,
1943
+ "igx" => &VAL_IGX,
1944
+ "iif" => &VAL_IIF,
1945
+ "iii" => &VAL_III,
1946
+ "img" => &VAL_IMG,
1947
+ "imp" => &VAL_IMP,
1948
+ "ims" => &VAL_IMS,
1949
+ "in" => &VAL_IN,
1950
+ "inc" => &VAL_INC,
1951
+ "inf" => &VAL_INF,
1952
+ "ini" => &VAL_INI,
1953
+ "ink" => &VAL_INK,
1954
+ "inkml" => &VAL_INKML,
1955
+ "inl" => &VAL_INL,
1956
+ "ins" => &VAL_INS,
1957
+ "install" => &VAL_INSTALL,
1958
+ "iota" => &VAL_IOTA,
1959
+ "ipa" => &VAL_IPA,
1960
+ "ipfix" => &VAL_IPFIX,
1961
+ "ipg" => &VAL_IPG,
1962
+ "ipk" => &VAL_IPK,
1963
+ "ipproj" => &VAL_IPPROJ,
1964
+ "ipsw" => &VAL_IPSW,
1965
+ "iqy" => &VAL_IQY,
1966
+ "irm" => &VAL_IRM,
1967
+ "irp" => &VAL_IRP,
1968
+ "iso" => &VAL_ISO,
1969
+ "isp" => &VAL_ISP,
1970
+ "ite" => &VAL_ITE,
1971
+ "itlp" => &VAL_ITLP,
1972
+ "itms" => &VAL_ITMS,
1973
+ "itp" => &VAL_ITP,
1974
+ "itpc" => &VAL_ITPC,
1975
+ "ivf" => &VAL_IVF,
1976
+ "ivp" => &VAL_IVP,
1977
+ "ivu" => &VAL_IVU,
1978
+ "jad" => &VAL_JAD,
1979
+ "jade" => &VAL_JADE,
1980
+ "jam" => &VAL_JAM,
1981
+ "jar" => &VAL_JAR,
1982
+ "jardiff" => &VAL_JARDIFF,
1983
+ "java" => &VAL_JAVA,
1984
+ "jck" => &VAL_JCK,
1985
+ "jcz" => &VAL_JCZ,
1986
+ "jfif" => &VAL_JFIF,
1987
+ "jisp" => &VAL_JISP,
1988
+ "jlt" => &VAL_JLT,
1989
+ "jng" => &VAL_JNG,
1990
+ "jnlp" => &VAL_JNLP,
1991
+ "joda" => &VAL_JODA,
1992
+ "jp2" => &VAL_JP2,
1993
+ "jpb" => &VAL_JPB,
1994
+ "jpe" => &VAL_JPE,
1995
+ "jpeg" => &VAL_JPEG,
1996
+ "jpf" => &VAL_JPF,
1997
+ "jpg" => &VAL_JPG,
1998
+ "jpg2" => &VAL_JPG2,
1999
+ "jpgm" => &VAL_JPGM,
2000
+ "jpgv" => &VAL_JPGV,
2001
+ "jpm" => &VAL_JPM,
2002
+ "jpx" => &VAL_JPX,
2003
+ "js" => &VAL_JS,
2004
+ "jsm" => &VAL_JSM,
2005
+ "json" => &VAL_JSON,
2006
+ "json5" => &VAL_JSON5,
2007
+ "jsonld" => &VAL_JSONLD,
2008
+ "jsonml" => &VAL_JSONML,
2009
+ "jsx" => &VAL_JSX,
2010
+ "jsxbin" => &VAL_JSXBIN,
2011
+ "jxl" => &VAL_JXL,
2012
+ "k25" => &VAL_K25,
2013
+ "kar" => &VAL_KAR,
2014
+ "karbon" => &VAL_KARBON,
2015
+ "kdc" => &VAL_KDC,
2016
+ "kfo" => &VAL_KFO,
2017
+ "kia" => &VAL_KIA,
2018
+ "kml" => &VAL_KML,
2019
+ "kmz" => &VAL_KMZ,
2020
+ "kne" => &VAL_KNE,
2021
+ "knp" => &VAL_KNP,
2022
+ "kon" => &VAL_KON,
2023
+ "kpr" => &VAL_KPR,
2024
+ "kpt" => &VAL_KPT,
2025
+ "kpxx" => &VAL_KPXX,
2026
+ "ksp" => &VAL_KSP,
2027
+ "ktr" => &VAL_KTR,
2028
+ "ktx" => &VAL_KTX,
2029
+ "ktz" => &VAL_KTZ,
2030
+ "kwd" => &VAL_KWD,
2031
+ "kwt" => &VAL_KWT,
2032
+ "lasxml" => &VAL_LASXML,
2033
+ "latex" => &VAL_LATEX,
2034
+ "lbd" => &VAL_LBD,
2035
+ "lbe" => &VAL_LBE,
2036
+ "les" => &VAL_LES,
2037
+ "less" => &VAL_LESS,
2038
+ "lha" => &VAL_LHA,
2039
+ "library-ms" => &VAL_LIBRARY,
2040
+ "link66" => &VAL_LINK66,
2041
+ "list" => &VAL_LIST,
2042
+ "list3820" => &VAL_LIST3820,
2043
+ "listafp" => &VAL_LISTAFP,
2044
+ "lit" => &VAL_LIT,
2045
+ "litcoffee" => &VAL_LITCOFFEE,
2046
+ "lnk" => &VAL_LNK,
2047
+ "loadtest" => &VAL_LOADTEST,
2048
+ "log" => &VAL_LOG,
2049
+ "lostxml" => &VAL_LOSTXML,
2050
+ "lpk" => &VAL_LPK,
2051
+ "lrf" => &VAL_LRF,
2052
+ "lrm" => &VAL_LRM,
2053
+ "lsf" => &VAL_LSF,
2054
+ "lst" => &VAL_LST,
2055
+ "lsx" => &VAL_LSX,
2056
+ "ltf" => &VAL_LTF,
2057
+ "lua" => &VAL_LUA,
2058
+ "luac" => &VAL_LUAC,
2059
+ "lvp" => &VAL_LVP,
2060
+ "lwp" => &VAL_LWP,
2061
+ "lzh" => &VAL_LZH,
2062
+ "m13" => &VAL_M13,
2063
+ "m14" => &VAL_M14,
2064
+ "m1v" => &VAL_M1V,
2065
+ "m21" => &VAL_M21,
2066
+ "m2a" => &VAL_M2A,
2067
+ "m2t" => &VAL_M2T,
2068
+ "m2ts" => &VAL_M2TS,
2069
+ "m2v" => &VAL_M2V,
2070
+ "m3a" => &VAL_M3A,
2071
+ "m3u" => &VAL_M3U,
2072
+ "m3u8" => &VAL_M3U8,
2073
+ "m4a" => &VAL_M4A,
2074
+ "m4b" => &VAL_M4B,
2075
+ "m4p" => &VAL_M4P,
2076
+ "m4r" => &VAL_M4R,
2077
+ "m4u" => &VAL_M4U,
2078
+ "m4v" => &VAL_M4V,
2079
+ "ma" => &VAL_MA,
2080
+ "mac" => &VAL_MAC,
2081
+ "mads" => &VAL_MADS,
2082
+ "mag" => &VAL_MAG,
2083
+ "mak" => &VAL_MAK,
2084
+ "maker" => &VAL_MAKER,
2085
+ "man" => &VAL_MAN,
2086
+ "manifest" => &VAL_MANIFEST,
2087
+ "map" => &VAL_MAP,
2088
+ "mar" => &VAL_MAR,
2089
+ "markdown" => &VAL_MARKDOWN,
2090
+ "master" => &VAL_MASTER,
2091
+ "mathml" => &VAL_MATHML,
2092
+ "mb" => &VAL_MB,
2093
+ "mbk" => &VAL_MBK,
2094
+ "mbox" => &VAL_MBOX,
2095
+ "mc1" => &VAL_MC1,
2096
+ "mcd" => &VAL_MCD,
2097
+ "mcurl" => &VAL_MCURL,
2098
+ "md" => &VAL_MD,
2099
+ "mda" => &VAL_MDA,
2100
+ "mdb" => &VAL_MDB,
2101
+ "mde" => &VAL_MDE,
2102
+ "mdi" => &VAL_MDI,
2103
+ "mdp" => &VAL_MDP,
2104
+ "me" => &VAL_ME,
2105
+ "mesh" => &VAL_MESH,
2106
+ "meta4" => &VAL_META4,
2107
+ "metalink" => &VAL_METALINK,
2108
+ "mets" => &VAL_METS,
2109
+ "mfm" => &VAL_MFM,
2110
+ "mfp" => &VAL_MFP,
2111
+ "mft" => &VAL_MFT,
2112
+ "mgp" => &VAL_MGP,
2113
+ "mgz" => &VAL_MGZ,
2114
+ "mht" => &VAL_MHT,
2115
+ "mhtml" => &VAL_MHTML,
2116
+ "mid" => &VAL_MID,
2117
+ "midi" => &VAL_MIDI,
2118
+ "mie" => &VAL_MIE,
2119
+ "mif" => &VAL_MIF,
2120
+ "mime" => &VAL_MIME,
2121
+ "mix" => &VAL_MIX,
2122
+ "mj2" => &VAL_MJ2,
2123
+ "mjp2" => &VAL_MJP2,
2124
+ "mjs" => &VAL_MJS,
2125
+ "mk" => &VAL_MK,
2126
+ "mk3d" => &VAL_MK3D,
2127
+ "mka" => &VAL_MKA,
2128
+ "mkd" => &VAL_MKD,
2129
+ "mks" => &VAL_MKS,
2130
+ "mkv" => &VAL_MKV,
2131
+ "mlp" => &VAL_MLP,
2132
+ "mmd" => &VAL_MMD,
2133
+ "mmf" => &VAL_MMF,
2134
+ "mml" => &VAL_MML,
2135
+ "mmr" => &VAL_MMR,
2136
+ "mng" => &VAL_MNG,
2137
+ "mno" => &VAL_MNO,
2138
+ "mny" => &VAL_MNY,
2139
+ "mobi" => &VAL_MOBI,
2140
+ "mod" => &VAL_MOD,
2141
+ "mods" => &VAL_MODS,
2142
+ "mov" => &VAL_MOV,
2143
+ "movie" => &VAL_MOVIE,
2144
+ "mp2" => &VAL_MP2,
2145
+ "mp21" => &VAL_MP21,
2146
+ "mp2a" => &VAL_MP2A,
2147
+ "mp2v" => &VAL_MP2V,
2148
+ "mp3" => &VAL_MP3,
2149
+ "mp4" => &VAL_MP4,
2150
+ "mp4a" => &VAL_MP4A,
2151
+ "mp4s" => &VAL_MP4S,
2152
+ "mp4v" => &VAL_MP4V,
2153
+ "mpa" => &VAL_MPA,
2154
+ "mpc" => &VAL_MPC,
2155
+ "mpd" => &VAL_MPD,
2156
+ "mpe" => &VAL_MPE,
2157
+ "mpeg" => &VAL_MPEG,
2158
+ "mpf" => &VAL_MPF,
2159
+ "mpg" => &VAL_MPG,
2160
+ "mpg4" => &VAL_MPG4,
2161
+ "mpga" => &VAL_MPGA,
2162
+ "mpkg" => &VAL_MPKG,
2163
+ "mpm" => &VAL_MPM,
2164
+ "mpn" => &VAL_MPN,
2165
+ "mpp" => &VAL_MPP,
2166
+ "mpt" => &VAL_MPT,
2167
+ "mpv2" => &VAL_MPV2,
2168
+ "mpy" => &VAL_MPY,
2169
+ "mqv" => &VAL_MQV,
2170
+ "mqy" => &VAL_MQY,
2171
+ "mrc" => &VAL_MRC,
2172
+ "mrcx" => &VAL_MRCX,
2173
+ "mrw" => &VAL_MRW,
2174
+ "ms" => &VAL_MS,
2175
+ "mscml" => &VAL_MSCML,
2176
+ "mseed" => &VAL_MSEED,
2177
+ "mseq" => &VAL_MSEQ,
2178
+ "msf" => &VAL_MSF,
2179
+ "msg" => &VAL_MSG,
2180
+ "msh" => &VAL_MSH,
2181
+ "msi" => &VAL_MSI,
2182
+ "msl" => &VAL_MSL,
2183
+ "msm" => &VAL_MSM,
2184
+ "mso" => &VAL_MSO,
2185
+ "msp" => &VAL_MSP,
2186
+ "msty" => &VAL_MSTY,
2187
+ "mts" => &VAL_MTS,
2188
+ "mtx" => &VAL_MTX,
2189
+ "mus" => &VAL_MUS,
2190
+ "musicxml" => &VAL_MUSICXML,
2191
+ "mvb" => &VAL_MVB,
2192
+ "mvc" => &VAL_MVC,
2193
+ "mwf" => &VAL_MWF,
2194
+ "mxf" => &VAL_MXF,
2195
+ "mxl" => &VAL_MXL,
2196
+ "mxml" => &VAL_MXML,
2197
+ "mxp" => &VAL_MXP,
2198
+ "mxs" => &VAL_MXS,
2199
+ "mxu" => &VAL_MXU,
2200
+ "n-gage" => &VAL_N,
2201
+ "n3" => &VAL_N3,
2202
+ "nb" => &VAL_NB,
2203
+ "nbp" => &VAL_NBP,
2204
+ "nc" => &VAL_NC,
2205
+ "ncx" => &VAL_NCX,
2206
+ "nef" => &VAL_NEF,
2207
+ "nfo" => &VAL_NFO,
2208
+ "ngdat" => &VAL_NGDAT,
2209
+ "nitf" => &VAL_NITF,
2210
+ "nlu" => &VAL_NLU,
2211
+ "nml" => &VAL_NML,
2212
+ "nnd" => &VAL_NND,
2213
+ "nns" => &VAL_NNS,
2214
+ "nnw" => &VAL_NNW,
2215
+ "npx" => &VAL_NPX,
2216
+ "nq" => &VAL_NQ,
2217
+ "nrw" => &VAL_NRW,
2218
+ "nsc" => &VAL_NSC,
2219
+ "nsf" => &VAL_NSF,
2220
+ "nt" => &VAL_NT,
2221
+ "ntf" => &VAL_NTF,
2222
+ "nws" => &VAL_NWS,
2223
+ "nzb" => &VAL_NZB,
2224
+ "oa2" => &VAL_OA2,
2225
+ "oa3" => &VAL_OA3,
2226
+ "oas" => &VAL_OAS,
2227
+ "obd" => &VAL_OBD,
2228
+ "obj" => &VAL_OBJ,
2229
+ "ocx" => &VAL_OCX,
2230
+ "oda" => &VAL_ODA,
2231
+ "odb" => &VAL_ODB,
2232
+ "odc" => &VAL_ODC,
2233
+ "odf" => &VAL_ODF,
2234
+ "odft" => &VAL_ODFT,
2235
+ "odg" => &VAL_ODG,
2236
+ "odh" => &VAL_ODH,
2237
+ "odi" => &VAL_ODI,
2238
+ "odl" => &VAL_ODL,
2239
+ "odm" => &VAL_ODM,
2240
+ "odp" => &VAL_ODP,
2241
+ "ods" => &VAL_ODS,
2242
+ "odt" => &VAL_ODT,
2243
+ "oga" => &VAL_OGA,
2244
+ "ogg" => &VAL_OGG,
2245
+ "ogv" => &VAL_OGV,
2246
+ "ogx" => &VAL_OGX,
2247
+ "omdoc" => &VAL_OMDOC,
2248
+ "one" => &VAL_ONE,
2249
+ "onea" => &VAL_ONEA,
2250
+ "onepkg" => &VAL_ONEPKG,
2251
+ "onetmp" => &VAL_ONETMP,
2252
+ "onetoc" => &VAL_ONETOC,
2253
+ "onetoc2" => &VAL_ONETOC2,
2254
+ "opf" => &VAL_OPF,
2255
+ "opml" => &VAL_OPML,
2256
+ "oprc" => &VAL_OPRC,
2257
+ "opus" => &VAL_OPUS,
2258
+ "orderedtest" => &VAL_ORDEREDTEST,
2259
+ "orf" => &VAL_ORF,
2260
+ "org" => &VAL_ORG,
2261
+ "osdx" => &VAL_OSDX,
2262
+ "osf" => &VAL_OSF,
2263
+ "osfpvg" => &VAL_OSFPVG,
2264
+ "otc" => &VAL_OTC,
2265
+ "otf" => &VAL_OTF,
2266
+ "otg" => &VAL_OTG,
2267
+ "oth" => &VAL_OTH,
2268
+ "oti" => &VAL_OTI,
2269
+ "otp" => &VAL_OTP,
2270
+ "ots" => &VAL_OTS,
2271
+ "ott" => &VAL_OTT,
2272
+ "ova" => &VAL_OVA,
2273
+ "ovf" => &VAL_OVF,
2274
+ "oxps" => &VAL_OXPS,
2275
+ "oxt" => &VAL_OXT,
2276
+ "p" => &VAL_P,
2277
+ "p10" => &VAL_P10,
2278
+ "p12" => &VAL_P12,
2279
+ "p7b" => &VAL_P7B,
2280
+ "p7c" => &VAL_P7C,
2281
+ "p7m" => &VAL_P7M,
2282
+ "p7r" => &VAL_P7R,
2283
+ "p7s" => &VAL_P7S,
2284
+ "p8" => &VAL_P8,
2285
+ "pac" => &VAL_PAC,
2286
+ "parquet" => &VAL_PARQUET,
2287
+ "pas" => &VAL_PAS,
2288
+ "paw" => &VAL_PAW,
2289
+ "pbd" => &VAL_PBD,
2290
+ "pbm" => &VAL_PBM,
2291
+ "pcap" => &VAL_PCAP,
2292
+ "pcast" => &VAL_PCAST,
2293
+ "pcf" => &VAL_PCF,
2294
+ "pcl" => &VAL_PCL,
2295
+ "pclxl" => &VAL_PCLXL,
2296
+ "pct" => &VAL_PCT,
2297
+ "pcurl" => &VAL_PCURL,
2298
+ "pcx" => &VAL_PCX,
2299
+ "pcz" => &VAL_PCZ,
2300
+ "pdb" => &VAL_PDB,
2301
+ "pde" => &VAL_PDE,
2302
+ "pdf" => &VAL_PDF,
2303
+ "pef" => &VAL_PEF,
2304
+ "pem" => &VAL_PEM,
2305
+ "pfa" => &VAL_PFA,
2306
+ "pfb" => &VAL_PFB,
2307
+ "pfm" => &VAL_PFM,
2308
+ "pfr" => &VAL_PFR,
2309
+ "pfx" => &VAL_PFX,
2310
+ "pgm" => &VAL_PGM,
2311
+ "pgn" => &VAL_PGN,
2312
+ "pgp" => &VAL_PGP,
2313
+ "php" => &VAL_PHP,
2314
+ "pic" => &VAL_PIC,
2315
+ "pict" => &VAL_PICT,
2316
+ "pkg" => &VAL_PKG,
2317
+ "pkgdef" => &VAL_PKGDEF,
2318
+ "pkgundef" => &VAL_PKGUNDEF,
2319
+ "pki" => &VAL_PKI,
2320
+ "pkipath" => &VAL_PKIPATH,
2321
+ "pko" => &VAL_PKO,
2322
+ "pkpass" => &VAL_PKPASS,
2323
+ "pl" => &VAL_PL,
2324
+ "plb" => &VAL_PLB,
2325
+ "plc" => &VAL_PLC,
2326
+ "plf" => &VAL_PLF,
2327
+ "pls" => &VAL_PLS,
2328
+ "pm" => &VAL_PM,
2329
+ "pma" => &VAL_PMA,
2330
+ "pmc" => &VAL_PMC,
2331
+ "pml" => &VAL_PML,
2332
+ "pmr" => &VAL_PMR,
2333
+ "pmw" => &VAL_PMW,
2334
+ "png" => &VAL_PNG,
2335
+ "pnm" => &VAL_PNM,
2336
+ "pnt" => &VAL_PNT,
2337
+ "pntg" => &VAL_PNTG,
2338
+ "pnz" => &VAL_PNZ,
2339
+ "portpkg" => &VAL_PORTPKG,
2340
+ "pot" => &VAL_POT,
2341
+ "potm" => &VAL_POTM,
2342
+ "potx" => &VAL_POTX,
2343
+ "ppa" => &VAL_PPA,
2344
+ "ppam" => &VAL_PPAM,
2345
+ "ppd" => &VAL_PPD,
2346
+ "ppm" => &VAL_PPM,
2347
+ "pps" => &VAL_PPS,
2348
+ "ppsm" => &VAL_PPSM,
2349
+ "ppsx" => &VAL_PPSX,
2350
+ "ppt" => &VAL_PPT,
2351
+ "pptm" => &VAL_PPTM,
2352
+ "pptx" => &VAL_PPTX,
2353
+ "pqa" => &VAL_PQA,
2354
+ "prc" => &VAL_PRC,
2355
+ "pre" => &VAL_PRE,
2356
+ "prf" => &VAL_PRF,
2357
+ "prm" => &VAL_PRM,
2358
+ "prx" => &VAL_PRX,
2359
+ "ps" => &VAL_PS,
2360
+ "psb" => &VAL_PSB,
2361
+ "psc1" => &VAL_PSC1,
2362
+ "psd" => &VAL_PSD,
2363
+ "psess" => &VAL_PSESS,
2364
+ "psf" => &VAL_PSF,
2365
+ "pskcxml" => &VAL_PSKCXML,
2366
+ "psm" => &VAL_PSM,
2367
+ "psp" => &VAL_PSP,
2368
+ "pst" => &VAL_PST,
2369
+ "ptid" => &VAL_PTID,
2370
+ "pub" => &VAL_PUB,
2371
+ "pvb" => &VAL_PVB,
2372
+ "pwn" => &VAL_PWN,
2373
+ "pwz" => &VAL_PWZ,
2374
+ "py" => &VAL_PY,
2375
+ "pya" => &VAL_PYA,
2376
+ "pyv" => &VAL_PYV,
2377
+ "qam" => &VAL_QAM,
2378
+ "qbo" => &VAL_QBO,
2379
+ "qfx" => &VAL_QFX,
2380
+ "qht" => &VAL_QHT,
2381
+ "qhtm" => &VAL_QHTM,
2382
+ "qps" => &VAL_QPS,
2383
+ "qt" => &VAL_QT,
2384
+ "qti" => &VAL_QTI,
2385
+ "qtif" => &VAL_QTIF,
2386
+ "qtl" => &VAL_QTL,
2387
+ "qwd" => &VAL_QWD,
2388
+ "qwt" => &VAL_QWT,
2389
+ "qxb" => &VAL_QXB,
2390
+ "qxd" => &VAL_QXD,
2391
+ "qxl" => &VAL_QXL,
2392
+ "qxt" => &VAL_QXT,
2393
+ "ra" => &VAL_RA,
2394
+ "raf" => &VAL_RAF,
2395
+ "ram" => &VAL_RAM,
2396
+ "raml" => &VAL_RAML,
2397
+ "rar" => &VAL_RAR,
2398
+ "ras" => &VAL_RAS,
2399
+ "rat" => &VAL_RAT,
2400
+ "raw" => &VAL_RAW,
2401
+ "rb" => &VAL_RB,
2402
+ "rc" => &VAL_RC,
2403
+ "rc2" => &VAL_RC2,
2404
+ "rcprofile" => &VAL_RCPROFILE,
2405
+ "rct" => &VAL_RCT,
2406
+ "rdf" => &VAL_RDF,
2407
+ "rdlc" => &VAL_RDLC,
2408
+ "rdz" => &VAL_RDZ,
2409
+ "reg" => &VAL_REG,
2410
+ "rep" => &VAL_REP,
2411
+ "res" => &VAL_RES,
2412
+ "resx" => &VAL_RESX,
2413
+ "rf" => &VAL_RF,
2414
+ "rgb" => &VAL_RGB,
2415
+ "rgs" => &VAL_RGS,
2416
+ "rif" => &VAL_RIF,
2417
+ "rip" => &VAL_RIP,
2418
+ "ris" => &VAL_RIS,
2419
+ "rl" => &VAL_RL,
2420
+ "rlc" => &VAL_RLC,
2421
+ "rld" => &VAL_RLD,
2422
+ "rm" => &VAL_RM,
2423
+ "rmi" => &VAL_RMI,
2424
+ "rmp" => &VAL_RMP,
2425
+ "rms" => &VAL_RMS,
2426
+ "rmvb" => &VAL_RMVB,
2427
+ "rnc" => &VAL_RNC,
2428
+ "rng" => &VAL_RNG,
2429
+ "roa" => &VAL_ROA,
2430
+ "roff" => &VAL_ROFF,
2431
+ "rp9" => &VAL_RP9,
2432
+ "rpm" => &VAL_RPM,
2433
+ "rpss" => &VAL_RPSS,
2434
+ "rpst" => &VAL_RPST,
2435
+ "rq" => &VAL_RQ,
2436
+ "rqy" => &VAL_RQY,
2437
+ "rs" => &VAL_RS,
2438
+ "rsd" => &VAL_RSD,
2439
+ "rss" => &VAL_RSS,
2440
+ "rtf" => &VAL_RTF,
2441
+ "rtx" => &VAL_RTX,
2442
+ "ruleset" => &VAL_RULESET,
2443
+ "run" => &VAL_RUN,
2444
+ "rvt" => &VAL_RVT,
2445
+ "rw2" => &VAL_RW2,
2446
+ "rwl" => &VAL_RWL,
2447
+ "s" => &VAL_S,
2448
+ "s3m" => &VAL_S3M,
2449
+ "saf" => &VAL_SAF,
2450
+ "safariextz" => &VAL_SAFARIEXTZ,
2451
+ "sass" => &VAL_SASS,
2452
+ "sbml" => &VAL_SBML,
2453
+ "sc" => &VAL_SC,
2454
+ "scd" => &VAL_SCD,
2455
+ "scm" => &VAL_SCM,
2456
+ "scq" => &VAL_SCQ,
2457
+ "scr" => &VAL_SCR,
2458
+ "scs" => &VAL_SCS,
2459
+ "scss" => &VAL_SCSS,
2460
+ "sct" => &VAL_SCT,
2461
+ "scurl" => &VAL_SCURL,
2462
+ "sd2" => &VAL_SD2,
2463
+ "sda" => &VAL_SDA,
2464
+ "sdc" => &VAL_SDC,
2465
+ "sdd" => &VAL_SDD,
2466
+ "sdkd" => &VAL_SDKD,
2467
+ "sdkm" => &VAL_SDKM,
2468
+ "sdp" => &VAL_SDP,
2469
+ "sdw" => &VAL_SDW,
2470
+ "sea" => &VAL_SEA,
2471
+ "searchconnector-ms" => &VAL_SEARCHCONNECTOR,
2472
+ "see" => &VAL_SEE,
2473
+ "seed" => &VAL_SEED,
2474
+ "sema" => &VAL_SEMA,
2475
+ "semd" => &VAL_SEMD,
2476
+ "semf" => &VAL_SEMF,
2477
+ "ser" => &VAL_SER,
2478
+ "setpay" => &VAL_SETPAY,
2479
+ "setreg" => &VAL_SETREG,
2480
+ "settings" => &VAL_SETTINGS,
2481
+ "sfd-hdstx" => &VAL_SFD,
2482
+ "sfs" => &VAL_SFS,
2483
+ "sfv" => &VAL_SFV,
2484
+ "sgi" => &VAL_SGI,
2485
+ "sgimb" => &VAL_SGIMB,
2486
+ "sgl" => &VAL_SGL,
2487
+ "sgm" => &VAL_SGM,
2488
+ "sgml" => &VAL_SGML,
2489
+ "sh" => &VAL_SH,
2490
+ "shar" => &VAL_SHAR,
2491
+ "shex" => &VAL_SHEX,
2492
+ "shf" => &VAL_SHF,
2493
+ "shtml" => &VAL_SHTML,
2494
+ "sid" => &VAL_SID,
2495
+ "sig" => &VAL_SIG,
2496
+ "sil" => &VAL_SIL,
2497
+ "silo" => &VAL_SILO,
2498
+ "sis" => &VAL_SIS,
2499
+ "sisx" => &VAL_SISX,
2500
+ "sit" => &VAL_SIT,
2501
+ "sitemap" => &VAL_SITEMAP,
2502
+ "sitx" => &VAL_SITX,
2503
+ "skd" => &VAL_SKD,
2504
+ "skin" => &VAL_SKIN,
2505
+ "skm" => &VAL_SKM,
2506
+ "skp" => &VAL_SKP,
2507
+ "skt" => &VAL_SKT,
2508
+ "sldm" => &VAL_SLDM,
2509
+ "sldx" => &VAL_SLDX,
2510
+ "slim" => &VAL_SLIM,
2511
+ "slk" => &VAL_SLK,
2512
+ "slm" => &VAL_SLM,
2513
+ "sln" => &VAL_SLN,
2514
+ "slt" => &VAL_SLT,
2515
+ "slupkg-ms" => &VAL_SLUPKG,
2516
+ "sm" => &VAL_SM,
2517
+ "smd" => &VAL_SMD,
2518
+ "smf" => &VAL_SMF,
2519
+ "smi" => &VAL_SMI,
2520
+ "smil" => &VAL_SMIL,
2521
+ "smv" => &VAL_SMV,
2522
+ "smx" => &VAL_SMX,
2523
+ "smz" => &VAL_SMZ,
2524
+ "smzip" => &VAL_SMZIP,
2525
+ "snd" => &VAL_SND,
2526
+ "snf" => &VAL_SNF,
2527
+ "snippet" => &VAL_SNIPPET,
2528
+ "snp" => &VAL_SNP,
2529
+ "so" => &VAL_SO,
2530
+ "sol" => &VAL_SOL,
2531
+ "sor" => &VAL_SOR,
2532
+ "spc" => &VAL_SPC,
2533
+ "spf" => &VAL_SPF,
2534
+ "spl" => &VAL_SPL,
2535
+ "spot" => &VAL_SPOT,
2536
+ "spp" => &VAL_SPP,
2537
+ "spq" => &VAL_SPQ,
2538
+ "spx" => &VAL_SPX,
2539
+ "sql" => &VAL_SQL,
2540
+ "sr2" => &VAL_SR2,
2541
+ "src" => &VAL_SRC,
2542
+ "srf" => &VAL_SRF,
2543
+ "srt" => &VAL_SRT,
2544
+ "sru" => &VAL_SRU,
2545
+ "srx" => &VAL_SRX,
2546
+ "ssdl" => &VAL_SSDL,
2547
+ "sse" => &VAL_SSE,
2548
+ "ssf" => &VAL_SSF,
2549
+ "ssisdeploymentmanifest" => &VAL_SSISDEPLOYMENTMANIFEST,
2550
+ "ssm" => &VAL_SSM,
2551
+ "ssml" => &VAL_SSML,
2552
+ "sst" => &VAL_SST,
2553
+ "st" => &VAL_ST,
2554
+ "stc" => &VAL_STC,
2555
+ "std" => &VAL_STD,
2556
+ "step" => &VAL_STEP,
2557
+ "stf" => &VAL_STF,
2558
+ "sti" => &VAL_STI,
2559
+ "stk" => &VAL_STK,
2560
+ "stl" => &VAL_STL,
2561
+ "stp" => &VAL_STP,
2562
+ "str" => &VAL_STR,
2563
+ "stw" => &VAL_STW,
2564
+ "styl" => &VAL_STYL,
2565
+ "stylus" => &VAL_STYLUS,
2566
+ "sub" => &VAL_SUB,
2567
+ "sus" => &VAL_SUS,
2568
+ "susp" => &VAL_SUSP,
2569
+ "sv4cpio" => &VAL_SV4CPIO,
2570
+ "sv4crc" => &VAL_SV4CRC,
2571
+ "svc" => &VAL_SVC,
2572
+ "svd" => &VAL_SVD,
2573
+ "svg" => &VAL_SVG,
2574
+ "svgz" => &VAL_SVGZ,
2575
+ "swa" => &VAL_SWA,
2576
+ "swf" => &VAL_SWF,
2577
+ "swi" => &VAL_SWI,
2578
+ "sxc" => &VAL_SXC,
2579
+ "sxd" => &VAL_SXD,
2580
+ "sxg" => &VAL_SXG,
2581
+ "sxi" => &VAL_SXI,
2582
+ "sxm" => &VAL_SXM,
2583
+ "sxw" => &VAL_SXW,
2584
+ "t" => &VAL_T,
2585
+ "t3" => &VAL_T3,
2586
+ "taglet" => &VAL_TAGLET,
2587
+ "tao" => &VAL_TAO,
2588
+ "tar" => &VAL_TAR,
2589
+ "tcap" => &VAL_TCAP,
2590
+ "tcl" => &VAL_TCL,
2591
+ "teacher" => &VAL_TEACHER,
2592
+ "tei" => &VAL_TEI,
2593
+ "teicorpus" => &VAL_TEICORPUS,
2594
+ "testrunconfig" => &VAL_TESTRUNCONFIG,
2595
+ "testsettings" => &VAL_TESTSETTINGS,
2596
+ "tex" => &VAL_TEX,
2597
+ "texi" => &VAL_TEXI,
2598
+ "texinfo" => &VAL_TEXINFO,
2599
+ "text" => &VAL_TEXT,
2600
+ "tfi" => &VAL_TFI,
2601
+ "tfm" => &VAL_TFM,
2602
+ "tga" => &VAL_TGA,
2603
+ "tgz" => &VAL_TGZ,
2604
+ "thmx" => &VAL_THMX,
2605
+ "thn" => &VAL_THN,
2606
+ "tif" => &VAL_TIF,
2607
+ "tiff" => &VAL_TIFF,
2608
+ "tk" => &VAL_TK,
2609
+ "tlh" => &VAL_TLH,
2610
+ "tli" => &VAL_TLI,
2611
+ "tmo" => &VAL_TMO,
2612
+ "toc" => &VAL_TOC,
2613
+ "toml" => &VAL_TOML,
2614
+ "torrent" => &VAL_TORRENT,
2615
+ "tpl" => &VAL_TPL,
2616
+ "tpt" => &VAL_TPT,
2617
+ "tr" => &VAL_TR,
2618
+ "tra" => &VAL_TRA,
2619
+ "trig" => &VAL_TRIG,
2620
+ "trm" => &VAL_TRM,
2621
+ "trx" => &VAL_TRX,
2622
+ "ts" => &VAL_TS,
2623
+ "tsd" => &VAL_TSD,
2624
+ "tsv" => &VAL_TSV,
2625
+ "ttc" => &VAL_TTC,
2626
+ "ttf" => &VAL_TTF,
2627
+ "ttl" => &VAL_TTL,
2628
+ "tts" => &VAL_TTS,
2629
+ "twd" => &VAL_TWD,
2630
+ "twds" => &VAL_TWDS,
2631
+ "txd" => &VAL_TXD,
2632
+ "txf" => &VAL_TXF,
2633
+ "txt" => &VAL_TXT,
2634
+ "u32" => &VAL_U32,
2635
+ "u8dsn" => &VAL_U8DSN,
2636
+ "u8hdr" => &VAL_U8HDR,
2637
+ "u8mdn" => &VAL_U8MDN,
2638
+ "u8msg" => &VAL_U8MSG,
2639
+ "udeb" => &VAL_UDEB,
2640
+ "ufd" => &VAL_UFD,
2641
+ "ufdl" => &VAL_UFDL,
2642
+ "uls" => &VAL_ULS,
2643
+ "ulx" => &VAL_ULX,
2644
+ "umj" => &VAL_UMJ,
2645
+ "unityweb" => &VAL_UNITYWEB,
2646
+ "uoml" => &VAL_UOML,
2647
+ "uri" => &VAL_URI,
2648
+ "uris" => &VAL_URIS,
2649
+ "urls" => &VAL_URLS,
2650
+ "user" => &VAL_USER,
2651
+ "ustar" => &VAL_USTAR,
2652
+ "utz" => &VAL_UTZ,
2653
+ "uu" => &VAL_UU,
2654
+ "uva" => &VAL_UVA,
2655
+ "uvd" => &VAL_UVD,
2656
+ "uvf" => &VAL_UVF,
2657
+ "uvg" => &VAL_UVG,
2658
+ "uvh" => &VAL_UVH,
2659
+ "uvi" => &VAL_UVI,
2660
+ "uvm" => &VAL_UVM,
2661
+ "uvp" => &VAL_UVP,
2662
+ "uvs" => &VAL_UVS,
2663
+ "uvt" => &VAL_UVT,
2664
+ "uvu" => &VAL_UVU,
2665
+ "uvv" => &VAL_UVV,
2666
+ "uvva" => &VAL_UVVA,
2667
+ "uvvd" => &VAL_UVVD,
2668
+ "uvvf" => &VAL_UVVF,
2669
+ "uvvg" => &VAL_UVVG,
2670
+ "uvvh" => &VAL_UVVH,
2671
+ "uvvi" => &VAL_UVVI,
2672
+ "uvvm" => &VAL_UVVM,
2673
+ "uvvp" => &VAL_UVVP,
2674
+ "uvvs" => &VAL_UVVS,
2675
+ "uvvt" => &VAL_UVVT,
2676
+ "uvvu" => &VAL_UVVU,
2677
+ "uvvv" => &VAL_UVVV,
2678
+ "uvvx" => &VAL_UVVX,
2679
+ "uvvz" => &VAL_UVVZ,
2680
+ "uvx" => &VAL_UVX,
2681
+ "uvz" => &VAL_UVZ,
2682
+ "vb" => &VAL_VB,
2683
+ "vbdproj" => &VAL_VBDPROJ,
2684
+ "vbk" => &VAL_VBK,
2685
+ "vbox" => &VAL_VBOX,
2686
+ "vbox-extpack" => &VAL_VBOX,
2687
+ "vbproj" => &VAL_VBPROJ,
2688
+ "vbs" => &VAL_VBS,
2689
+ "vcard" => &VAL_VCARD,
2690
+ "vcd" => &VAL_VCD,
2691
+ "vcf" => &VAL_VCF,
2692
+ "vcg" => &VAL_VCG,
2693
+ "vcproj" => &VAL_VCPROJ,
2694
+ "vcs" => &VAL_VCS,
2695
+ "vcx" => &VAL_VCX,
2696
+ "vcxproj" => &VAL_VCXPROJ,
2697
+ "vddproj" => &VAL_VDDPROJ,
2698
+ "vdi" => &VAL_VDI,
2699
+ "vdp" => &VAL_VDP,
2700
+ "vdproj" => &VAL_VDPROJ,
2701
+ "vdx" => &VAL_VDX,
2702
+ "vhd" => &VAL_VHD,
2703
+ "vis" => &VAL_VIS,
2704
+ "viv" => &VAL_VIV,
2705
+ "vmdk" => &VAL_VMDK,
2706
+ "vml" => &VAL_VML,
2707
+ "vob" => &VAL_VOB,
2708
+ "vor" => &VAL_VOR,
2709
+ "vox" => &VAL_VOX,
2710
+ "vrml" => &VAL_VRML,
2711
+ "vscontent" => &VAL_VSCONTENT,
2712
+ "vsct" => &VAL_VSCT,
2713
+ "vsd" => &VAL_VSD,
2714
+ "vsf" => &VAL_VSF,
2715
+ "vsi" => &VAL_VSI,
2716
+ "vsix" => &VAL_VSIX,
2717
+ "vsixlangpack" => &VAL_VSIXLANGPACK,
2718
+ "vsixmanifest" => &VAL_VSIXMANIFEST,
2719
+ "vsmdi" => &VAL_VSMDI,
2720
+ "vspscc" => &VAL_VSPSCC,
2721
+ "vss" => &VAL_VSS,
2722
+ "vsscc" => &VAL_VSSCC,
2723
+ "vssettings" => &VAL_VSSETTINGS,
2724
+ "vssscc" => &VAL_VSSSCC,
2725
+ "vst" => &VAL_VST,
2726
+ "vstemplate" => &VAL_VSTEMPLATE,
2727
+ "vsto" => &VAL_VSTO,
2728
+ "vsw" => &VAL_VSW,
2729
+ "vsx" => &VAL_VSX,
2730
+ "vtt" => &VAL_VTT,
2731
+ "vtu" => &VAL_VTU,
2732
+ "vtx" => &VAL_VTX,
2733
+ "vxml" => &VAL_VXML,
2734
+ "w3d" => &VAL_W3D,
2735
+ "wad" => &VAL_WAD,
2736
+ "wadl" => &VAL_WADL,
2737
+ "war" => &VAL_WAR,
2738
+ "wasm" => &VAL_WASM,
2739
+ "wav" => &VAL_WAV,
2740
+ "wave" => &VAL_WAVE,
2741
+ "wax" => &VAL_WAX,
2742
+ "wbk" => &VAL_WBK,
2743
+ "wbmp" => &VAL_WBMP,
2744
+ "wbs" => &VAL_WBS,
2745
+ "wbxml" => &VAL_WBXML,
2746
+ "wcm" => &VAL_WCM,
2747
+ "wdb" => &VAL_WDB,
2748
+ "wdp" => &VAL_WDP,
2749
+ "weba" => &VAL_WEBA,
2750
+ "webapp" => &VAL_WEBAPP,
2751
+ "webarchive" => &VAL_WEBARCHIVE,
2752
+ "webm" => &VAL_WEBM,
2753
+ "webmanifest" => &VAL_WEBMANIFEST,
2754
+ "webp" => &VAL_WEBP,
2755
+ "webtest" => &VAL_WEBTEST,
2756
+ "wg" => &VAL_WG,
2757
+ "wgt" => &VAL_WGT,
2758
+ "wiq" => &VAL_WIQ,
2759
+ "wiz" => &VAL_WIZ,
2760
+ "wks" => &VAL_WKS,
2761
+ "wlmp" => &VAL_WLMP,
2762
+ "wlpginstall" => &VAL_WLPGINSTALL,
2763
+ "wlpginstall3" => &VAL_WLPGINSTALL3,
2764
+ "wm" => &VAL_WM,
2765
+ "wma" => &VAL_WMA,
2766
+ "wmd" => &VAL_WMD,
2767
+ "wmf" => &VAL_WMF,
2768
+ "wml" => &VAL_WML,
2769
+ "wmlc" => &VAL_WMLC,
2770
+ "wmls" => &VAL_WMLS,
2771
+ "wmlsc" => &VAL_WMLSC,
2772
+ "wmp" => &VAL_WMP,
2773
+ "wmv" => &VAL_WMV,
2774
+ "wmx" => &VAL_WMX,
2775
+ "wmz" => &VAL_WMZ,
2776
+ "woff" => &VAL_WOFF,
2777
+ "woff2" => &VAL_WOFF2,
2778
+ "wpd" => &VAL_WPD,
2779
+ "wpl" => &VAL_WPL,
2780
+ "wps" => &VAL_WPS,
2781
+ "wqd" => &VAL_WQD,
2782
+ "wri" => &VAL_WRI,
2783
+ "wrl" => &VAL_WRL,
2784
+ "wrz" => &VAL_WRZ,
2785
+ "wsc" => &VAL_WSC,
2786
+ "wsdl" => &VAL_WSDL,
2787
+ "wspolicy" => &VAL_WSPOLICY,
2788
+ "wtb" => &VAL_WTB,
2789
+ "wvx" => &VAL_WVX,
2790
+ "x" => &VAL_X,
2791
+ "x32" => &VAL_X32,
2792
+ "x3d" => &VAL_X3D,
2793
+ "x3db" => &VAL_X3DB,
2794
+ "x3dbz" => &VAL_X3DBZ,
2795
+ "x3dv" => &VAL_X3DV,
2796
+ "x3dvz" => &VAL_X3DVZ,
2797
+ "x3dz" => &VAL_X3DZ,
2798
+ "x3f" => &VAL_X3F,
2799
+ "xaf" => &VAL_XAF,
2800
+ "xaml" => &VAL_XAML,
2801
+ "xap" => &VAL_XAP,
2802
+ "xar" => &VAL_XAR,
2803
+ "xbap" => &VAL_XBAP,
2804
+ "xbd" => &VAL_XBD,
2805
+ "xbm" => &VAL_XBM,
2806
+ "xdf" => &VAL_XDF,
2807
+ "xdm" => &VAL_XDM,
2808
+ "xdp" => &VAL_XDP,
2809
+ "xdr" => &VAL_XDR,
2810
+ "xdssc" => &VAL_XDSSC,
2811
+ "xdw" => &VAL_XDW,
2812
+ "xenc" => &VAL_XENC,
2813
+ "xer" => &VAL_XER,
2814
+ "xfdf" => &VAL_XFDF,
2815
+ "xfdl" => &VAL_XFDL,
2816
+ "xht" => &VAL_XHT,
2817
+ "xhtml" => &VAL_XHTML,
2818
+ "xhvml" => &VAL_XHVML,
2819
+ "xif" => &VAL_XIF,
2820
+ "xla" => &VAL_XLA,
2821
+ "xlam" => &VAL_XLAM,
2822
+ "xlc" => &VAL_XLC,
2823
+ "xld" => &VAL_XLD,
2824
+ "xlf" => &VAL_XLF,
2825
+ "xlk" => &VAL_XLK,
2826
+ "xll" => &VAL_XLL,
2827
+ "xlm" => &VAL_XLM,
2828
+ "xls" => &VAL_XLS,
2829
+ "xlsb" => &VAL_XLSB,
2830
+ "xlsm" => &VAL_XLSM,
2831
+ "xlsx" => &VAL_XLSX,
2832
+ "xlt" => &VAL_XLT,
2833
+ "xltm" => &VAL_XLTM,
2834
+ "xltx" => &VAL_XLTX,
2835
+ "xlw" => &VAL_XLW,
2836
+ "xm" => &VAL_XM,
2837
+ "xml" => &VAL_XML,
2838
+ "xmp" => &VAL_XMP,
2839
+ "xmta" => &VAL_XMTA,
2840
+ "xo" => &VAL_XO,
2841
+ "xof" => &VAL_XOF,
2842
+ "xoml" => &VAL_XOML,
2843
+ "xop" => &VAL_XOP,
2844
+ "xpi" => &VAL_XPI,
2845
+ "xpl" => &VAL_XPL,
2846
+ "xpm" => &VAL_XPM,
2847
+ "xpr" => &VAL_XPR,
2848
+ "xps" => &VAL_XPS,
2849
+ "xpw" => &VAL_XPW,
2850
+ "xpx" => &VAL_XPX,
2851
+ "xrm-ms" => &VAL_XRM,
2852
+ "xsc" => &VAL_XSC,
2853
+ "xsd" => &VAL_XSD,
2854
+ "xsf" => &VAL_XSF,
2855
+ "xsl" => &VAL_XSL,
2856
+ "xslt" => &VAL_XSLT,
2857
+ "xsm" => &VAL_XSM,
2858
+ "xsn" => &VAL_XSN,
2859
+ "xspf" => &VAL_XSPF,
2860
+ "xss" => &VAL_XSS,
2861
+ "xtp" => &VAL_XTP,
2862
+ "xul" => &VAL_XUL,
2863
+ "xvm" => &VAL_XVM,
2864
+ "xvml" => &VAL_XVML,
2865
+ "xwd" => &VAL_XWD,
2866
+ "xyz" => &VAL_XYZ,
2867
+ "xz" => &VAL_XZ,
2868
+ "yaml" => &VAL_YAML,
2869
+ "yang" => &VAL_YANG,
2870
+ "yin" => &VAL_YIN,
2871
+ "yml" => &VAL_YML,
2872
+ "ymp" => &VAL_YMP,
2873
+ "z" => &VAL_Z,
2874
+ "z1" => &VAL_Z1,
2875
+ "z2" => &VAL_Z2,
2876
+ "z3" => &VAL_Z3,
2877
+ "z4" => &VAL_Z4,
2878
+ "z5" => &VAL_Z5,
2879
+ "z6" => &VAL_Z6,
2880
+ "z7" => &VAL_Z7,
2881
+ "z8" => &VAL_Z8,
2882
+ "zaz" => &VAL_ZAZ,
2883
+ "zip" => &VAL_ZIP,
2884
+ "zir" => &VAL_ZIR,
2885
+ "zirz" => &VAL_ZIRZ,
2886
+ "zmm" => &VAL_ZMM
2887
+ };
2888
+
2889
+ pub fn get_mime_type(path: &Path) -> HeaderValue {
2890
+ path.extension()
2891
+ .and_then(|ext| ext.to_str())
2892
+ .and_then(|ext_str| MIME_TYPES.get(ext_str))
2893
+ .copied()
2894
+ .unwrap_or(&VAL_XTP)
2895
+ .clone()
1416
2896
  }