forked from RamseyK/httpserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMimeTypes.inc
More file actions
executable file
·984 lines (984 loc) · 43.2 KB
/
MimeTypes.inc
File metadata and controls
executable file
·984 lines (984 loc) · 43.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
STR_PAIR("ez", "application/andrew-inset"),
STR_PAIR("aw", "application/applixware"),
STR_PAIR("atom", "application/atom+xml"),
STR_PAIR("atomcat", "application/atomcat+xml"),
STR_PAIR("atomsvc", "application/atomsvc+xml"),
STR_PAIR("ccxml", "application/ccxml+xml"),
STR_PAIR("cdmia", "application/cdmi-capability"),
STR_PAIR("cdmic", "application/cdmi-container"),
STR_PAIR("cdmid", "application/cdmi-domain"),
STR_PAIR("cdmio", "application/cdmi-object"),
STR_PAIR("cdmiq", "application/cdmi-queue"),
STR_PAIR("cu", "application/cu-seeme"),
STR_PAIR("davmount", "application/davmount+xml"),
STR_PAIR("dbk", "application/docbook+xml"),
STR_PAIR("dssc", "application/dssc+der"),
STR_PAIR("xdssc", "application/dssc+xml"),
STR_PAIR("ecma", "application/ecmascript"),
STR_PAIR("emma", "application/emma+xml"),
STR_PAIR("epub", "application/epub+zip"),
STR_PAIR("exi", "application/exi"),
STR_PAIR("pfr", "application/font-tdpfr"),
STR_PAIR("gml", "application/gml+xml"),
STR_PAIR("gpx", "application/gpx+xml"),
STR_PAIR("gxf", "application/gxf"),
STR_PAIR("stk", "application/hyperstudio"),
STR_PAIR("ink", "application/inkml+xml"),
STR_PAIR("inkml", "application/inkml+xml"),
STR_PAIR("ipfix", "application/ipfix"),
STR_PAIR("jar", "application/java-archive"),
STR_PAIR("ser", "application/java-serialized-object"),
STR_PAIR("class", "application/java-vm"),
STR_PAIR("js", "application/javascript"),
STR_PAIR("json", "application/json"),
STR_PAIR("jsonml", "application/jsonml+json"),
STR_PAIR("lostxml", "application/lost+xml"),
STR_PAIR("hqx", "application/mac-binhex40"),
STR_PAIR("cpt", "application/mac-compactpro"),
STR_PAIR("mads", "application/mads+xml"),
STR_PAIR("mrc", "application/marc"),
STR_PAIR("mrcx", "application/marcxml+xml"),
STR_PAIR("ma", "application/mathematica"),
STR_PAIR("nb", "application/mathematica"),
STR_PAIR("mb", "application/mathematica"),
STR_PAIR("mathml", "application/mathml+xml"),
STR_PAIR("mbox", "application/mbox"),
STR_PAIR("mscml", "application/mediaservercontrol+xml"),
STR_PAIR("metalink", "application/metalink+xml"),
STR_PAIR("meta4", "application/metalink4+xml"),
STR_PAIR("mets", "application/mets+xml"),
STR_PAIR("mods", "application/mods+xml"),
STR_PAIR("m21", "application/mp21"),
STR_PAIR("mp21", "application/mp21"),
STR_PAIR("mp4s", "application/mp4"),
STR_PAIR("doc", "application/msword"),
STR_PAIR("dot", "application/msword"),
STR_PAIR("mxf", "application/mxf"),
STR_PAIR("bin", "application/octet-stream"),
STR_PAIR("dms", "application/octet-stream"),
STR_PAIR("lrf", "application/octet-stream"),
STR_PAIR("mar", "application/octet-stream"),
STR_PAIR("so", "application/octet-stream"),
STR_PAIR("dist", "application/octet-stream"),
STR_PAIR("distz", "application/octet-stream"),
STR_PAIR("pkg", "application/octet-stream"),
STR_PAIR("bpk", "application/octet-stream"),
STR_PAIR("dump", "application/octet-stream"),
STR_PAIR("elc", "application/octet-stream"),
STR_PAIR("deploy", "application/octet-stream"),
STR_PAIR("oda", "application/oda"),
STR_PAIR("opf", "application/oebps-package+xml"),
STR_PAIR("ogx", "application/ogg"),
STR_PAIR("omdoc", "application/omdoc+xml"),
STR_PAIR("onetoc", "application/onenote"),
STR_PAIR("onetoc2", "application/onenote"),
STR_PAIR("onetmp", "application/onenote"),
STR_PAIR("onepkg", "application/onenote"),
STR_PAIR("oxps", "application/oxps"),
STR_PAIR("xer", "application/patch-ops-error+xml"),
STR_PAIR("pdf", "application/pdf"),
STR_PAIR("pgp", "application/pgp-encrypted"),
STR_PAIR("asc", "application/pgp-signature"),
STR_PAIR("sig", "application/pgp-signature"),
STR_PAIR("prf", "application/pics-rules"),
STR_PAIR("p10", "application/pkcs10"),
STR_PAIR("p7m", "application/pkcs7-mime"),
STR_PAIR("p7c", "application/pkcs7-mime"),
STR_PAIR("p7s", "application/pkcs7-signature"),
STR_PAIR("p8", "application/pkcs8"),
STR_PAIR("ac", "application/pkix-attr-cert"),
STR_PAIR("cer", "application/pkix-cert"),
STR_PAIR("crl", "application/pkix-crl"),
STR_PAIR("pkipath", "application/pkix-pkipath"),
STR_PAIR("pki", "application/pkixcmp"),
STR_PAIR("pls", "application/pls+xml"),
STR_PAIR("ai", "application/postscript"),
STR_PAIR("eps", "application/postscript"),
STR_PAIR("ps", "application/postscript"),
STR_PAIR("cww", "application/prs.cww"),
STR_PAIR("pskcxml", "application/pskc+xml"),
STR_PAIR("rdf", "application/rdf+xml"),
STR_PAIR("rif", "application/reginfo+xml"),
STR_PAIR("rnc", "application/relax-ng-compact-syntax"),
STR_PAIR("rl", "application/resource-lists+xml"),
STR_PAIR("rld", "application/resource-lists-diff+xml"),
STR_PAIR("rs", "application/rls-services+xml"),
STR_PAIR("gbr", "application/rpki-ghostbusters"),
STR_PAIR("mft", "application/rpki-manifest"),
STR_PAIR("roa", "application/rpki-roa"),
STR_PAIR("rsd", "application/rsd+xml"),
STR_PAIR("rss", "application/rss+xml"),
STR_PAIR("rtf", "application/rtf"),
STR_PAIR("sbml", "application/sbml+xml"),
STR_PAIR("scq", "application/scvp-cv-request"),
STR_PAIR("scs", "application/scvp-cv-response"),
STR_PAIR("spq", "application/scvp-vp-request"),
STR_PAIR("spp", "application/scvp-vp-response"),
STR_PAIR("sdp", "application/sdp"),
STR_PAIR("setpay", "application/set-payment-initiation"),
STR_PAIR("setreg", "application/set-registration-initiation"),
STR_PAIR("shf", "application/shf+xml"),
STR_PAIR("smi", "application/smil+xml"),
STR_PAIR("smil", "application/smil+xml"),
STR_PAIR("rq", "application/sparql-query"),
STR_PAIR("srx", "application/sparql-results+xml"),
STR_PAIR("gram", "application/srgs"),
STR_PAIR("grxml", "application/srgs+xml"),
STR_PAIR("sru", "application/sru+xml"),
STR_PAIR("ssdl", "application/ssdl+xml"),
STR_PAIR("ssml", "application/ssml+xml"),
STR_PAIR("tei", "application/tei+xml"),
STR_PAIR("teicorpus", "application/tei+xml"),
STR_PAIR("tfi", "application/thraud+xml"),
STR_PAIR("tsd", "application/timestamped-data"),
STR_PAIR("plb", "application/vnd.3gpp.pic-bw-large"),
STR_PAIR("psb", "application/vnd.3gpp.pic-bw-small"),
STR_PAIR("pvb", "application/vnd.3gpp.pic-bw-var"),
STR_PAIR("tcap", "application/vnd.3gpp2.tcap"),
STR_PAIR("pwn", "application/vnd.3m.post-it-notes"),
STR_PAIR("aso", "application/vnd.accpac.simply.aso"),
STR_PAIR("imp", "application/vnd.accpac.simply.imp"),
STR_PAIR("acu", "application/vnd.acucobol"),
STR_PAIR("atc", "application/vnd.acucorp"),
STR_PAIR("acutc", "application/vnd.acucorp"),
STR_PAIR("air", "application/vnd.adobe.air-application-installer-package+zip"),
STR_PAIR("fcdt", "application/vnd.adobe.formscentral.fcdt"),
STR_PAIR("fxp", "application/vnd.adobe.fxp"),
STR_PAIR("fxpl", "application/vnd.adobe.fxp"),
STR_PAIR("xdp", "application/vnd.adobe.xdp+xml"),
STR_PAIR("xfdf", "application/vnd.adobe.xfdf"),
STR_PAIR("ahead", "application/vnd.ahead.space"),
STR_PAIR("azf", "application/vnd.airzip.filesecure.azf"),
STR_PAIR("azs", "application/vnd.airzip.filesecure.azs"),
STR_PAIR("azw", "application/vnd.amazon.ebook"),
STR_PAIR("acc", "application/vnd.americandynamics.acc"),
STR_PAIR("ami", "application/vnd.amiga.ami"),
STR_PAIR("apk", "application/vnd.android.package-archive"),
STR_PAIR("cii", "application/vnd.anser-web-certificate-issue-initiation"),
STR_PAIR("fti", "application/vnd.anser-web-funds-transfer-initiation"),
STR_PAIR("atx", "application/vnd.antix.game-component"),
STR_PAIR("mpkg", "application/vnd.apple.installer+xml"),
STR_PAIR("m3u8", "application/vnd.apple.mpegurl"),
STR_PAIR("swi", "application/vnd.aristanetworks.swi"),
STR_PAIR("iota", "application/vnd.astraea-software.iota"),
STR_PAIR("aep", "application/vnd.audiograph"),
STR_PAIR("mpm", "application/vnd.blueice.multipass"),
STR_PAIR("bmi", "application/vnd.bmi"),
STR_PAIR("rep", "application/vnd.businessobjects"),
STR_PAIR("cdxml", "application/vnd.chemdraw+xml"),
STR_PAIR("mmd", "application/vnd.chipnuts.karaoke-mmd"),
STR_PAIR("cdy", "application/vnd.cinderella"),
STR_PAIR("cla", "application/vnd.claymore"),
STR_PAIR("rp9", "application/vnd.cloanto.rp9"),
STR_PAIR("c4g", "application/vnd.clonk.c4group"),
STR_PAIR("c4d", "application/vnd.clonk.c4group"),
STR_PAIR("c4f", "application/vnd.clonk.c4group"),
STR_PAIR("c4p", "application/vnd.clonk.c4group"),
STR_PAIR("c4u", "application/vnd.clonk.c4group"),
STR_PAIR("c11amc", "application/vnd.cluetrust.cartomobile-config"),
STR_PAIR("c11amz", "application/vnd.cluetrust.cartomobile-config-pkg"),
STR_PAIR("csp", "application/vnd.commonspace"),
STR_PAIR("cdbcmsg", "application/vnd.contact.cmsg"),
STR_PAIR("cmc", "application/vnd.cosmocaller"),
STR_PAIR("clkx", "application/vnd.crick.clicker"),
STR_PAIR("clkk", "application/vnd.crick.clicker.keyboard"),
STR_PAIR("clkp", "application/vnd.crick.clicker.palette"),
STR_PAIR("clkt", "application/vnd.crick.clicker.template"),
STR_PAIR("clkw", "application/vnd.crick.clicker.wordbank"),
STR_PAIR("wbs", "application/vnd.criticaltools.wbs+xml"),
STR_PAIR("pml", "application/vnd.ctc-posml"),
STR_PAIR("ppd", "application/vnd.cups-ppd"),
STR_PAIR("car", "application/vnd.curl.car"),
STR_PAIR("pcurl", "application/vnd.curl.pcurl"),
STR_PAIR("dart", "application/vnd.dart"),
STR_PAIR("rdz", "application/vnd.data-vision.rdz"),
STR_PAIR("uvf", "application/vnd.dece.data"),
STR_PAIR("uvvf", "application/vnd.dece.data"),
STR_PAIR("uvd", "application/vnd.dece.data"),
STR_PAIR("uvvd", "application/vnd.dece.data"),
STR_PAIR("uvt", "application/vnd.dece.ttml+xml"),
STR_PAIR("uvvt", "application/vnd.dece.ttml+xml"),
STR_PAIR("uvx", "application/vnd.dece.unspecified"),
STR_PAIR("uvvx", "application/vnd.dece.unspecified"),
STR_PAIR("uvz", "application/vnd.dece.zip"),
STR_PAIR("uvvz", "application/vnd.dece.zip"),
STR_PAIR("fe_launch", "application/vnd.denovo.fcselayout-link"),
STR_PAIR("dna", "application/vnd.dna"),
STR_PAIR("mlp", "application/vnd.dolby.mlp"),
STR_PAIR("dpg", "application/vnd.dpgraph"),
STR_PAIR("dfac", "application/vnd.dreamfactory"),
STR_PAIR("kpxx", "application/vnd.ds-keypoint"),
STR_PAIR("ait", "application/vnd.dvb.ait"),
STR_PAIR("svc", "application/vnd.dvb.service"),
STR_PAIR("geo", "application/vnd.dynageo"),
STR_PAIR("mag", "application/vnd.ecowin.chart"),
STR_PAIR("nml", "application/vnd.enliven"),
STR_PAIR("esf", "application/vnd.epson.esf"),
STR_PAIR("msf", "application/vnd.epson.msf"),
STR_PAIR("qam", "application/vnd.epson.quickanime"),
STR_PAIR("slt", "application/vnd.epson.salt"),
STR_PAIR("ssf", "application/vnd.epson.ssf"),
STR_PAIR("es3", "application/vnd.eszigno3+xml"),
STR_PAIR("et3", "application/vnd.eszigno3+xml"),
STR_PAIR("ez2", "application/vnd.ezpix-album"),
STR_PAIR("ez3", "application/vnd.ezpix-package"),
STR_PAIR("fdf", "application/vnd.fdf"),
STR_PAIR("mseed", "application/vnd.fdsn.mseed"),
STR_PAIR("seed", "application/vnd.fdsn.seed"),
STR_PAIR("dataless", "application/vnd.fdsn.seed"),
STR_PAIR("gph", "application/vnd.flographit"),
STR_PAIR("ftc", "application/vnd.fluxtime.clip"),
STR_PAIR("fm", "application/vnd.framemaker"),
STR_PAIR("frame", "application/vnd.framemaker"),
STR_PAIR("maker", "application/vnd.framemaker"),
STR_PAIR("book", "application/vnd.framemaker"),
STR_PAIR("fnc", "application/vnd.frogans.fnc"),
STR_PAIR("ltf", "application/vnd.frogans.ltf"),
STR_PAIR("fsc", "application/vnd.fsc.weblaunch"),
STR_PAIR("oas", "application/vnd.fujitsu.oasys"),
STR_PAIR("oa2", "application/vnd.fujitsu.oasys2"),
STR_PAIR("oa3", "application/vnd.fujitsu.oasys3"),
STR_PAIR("fg5", "application/vnd.fujitsu.oasysgp"),
STR_PAIR("bh2", "application/vnd.fujitsu.oasysprs"),
STR_PAIR("ddd", "application/vnd.fujixerox.ddd"),
STR_PAIR("xdw", "application/vnd.fujixerox.docuworks"),
STR_PAIR("xbd", "application/vnd.fujixerox.docuworks.binder"),
STR_PAIR("fzs", "application/vnd.fuzzysheet"),
STR_PAIR("txd", "application/vnd.genomatix.tuxedo"),
STR_PAIR("ggb", "application/vnd.geogebra.file"),
STR_PAIR("ggt", "application/vnd.geogebra.tool"),
STR_PAIR("gex", "application/vnd.geometry-explorer"),
STR_PAIR("gre", "application/vnd.geometry-explorer"),
STR_PAIR("gxt", "application/vnd.geonext"),
STR_PAIR("g2w", "application/vnd.geoplan"),
STR_PAIR("g3w", "application/vnd.geospace"),
STR_PAIR("gmx", "application/vnd.gmx"),
STR_PAIR("kml", "application/vnd.google-earth.kml+xml"),
STR_PAIR("kmz", "application/vnd.google-earth.kmz"),
STR_PAIR("gqf", "application/vnd.grafeq"),
STR_PAIR("gqs", "application/vnd.grafeq"),
STR_PAIR("gac", "application/vnd.groove-account"),
STR_PAIR("ghf", "application/vnd.groove-help"),
STR_PAIR("gim", "application/vnd.groove-identity-message"),
STR_PAIR("grv", "application/vnd.groove-injector"),
STR_PAIR("gtm", "application/vnd.groove-tool-message"),
STR_PAIR("tpl", "application/vnd.groove-tool-template"),
STR_PAIR("vcg", "application/vnd.groove-vcard"),
STR_PAIR("hal", "application/vnd.hal+xml"),
STR_PAIR("zmm", "application/vnd.handheld-entertainment+xml"),
STR_PAIR("hbci", "application/vnd.hbci"),
STR_PAIR("les", "application/vnd.hhe.lesson-player"),
STR_PAIR("hpgl", "application/vnd.hp-hpgl"),
STR_PAIR("hpid", "application/vnd.hp-hpid"),
STR_PAIR("hps", "application/vnd.hp-hps"),
STR_PAIR("jlt", "application/vnd.hp-jlyt"),
STR_PAIR("pcl", "application/vnd.hp-pcl"),
STR_PAIR("pclxl", "application/vnd.hp-pclxl"),
STR_PAIR("sfd-hdstx", "application/vnd.hydrostatix.sof-data"),
STR_PAIR("mpy", "application/vnd.ibm.minipay"),
STR_PAIR("afp", "application/vnd.ibm.modcap"),
STR_PAIR("listafp", "application/vnd.ibm.modcap"),
STR_PAIR("list3820", "application/vnd.ibm.modcap"),
STR_PAIR("irm", "application/vnd.ibm.rights-management"),
STR_PAIR("sc", "application/vnd.ibm.secure-container"),
STR_PAIR("icc", "application/vnd.iccprofile"),
STR_PAIR("icm", "application/vnd.iccprofile"),
STR_PAIR("igl", "application/vnd.igloader"),
STR_PAIR("ivp", "application/vnd.immervision-ivp"),
STR_PAIR("ivu", "application/vnd.immervision-ivu"),
STR_PAIR("igm", "application/vnd.insors.igm"),
STR_PAIR("xpw", "application/vnd.intercon.formnet"),
STR_PAIR("xpx", "application/vnd.intercon.formnet"),
STR_PAIR("i2g", "application/vnd.intergeo"),
STR_PAIR("qbo", "application/vnd.intu.qbo"),
STR_PAIR("qfx", "application/vnd.intu.qfx"),
STR_PAIR("rcprofile", "application/vnd.ipunplugged.rcprofile"),
STR_PAIR("irp", "application/vnd.irepository.package+xml"),
STR_PAIR("xpr", "application/vnd.is-xpr"),
STR_PAIR("fcs", "application/vnd.isac.fcs"),
STR_PAIR("jam", "application/vnd.jam"),
STR_PAIR("rms", "application/vnd.jcp.javame.midlet-rms"),
STR_PAIR("jisp", "application/vnd.jisp"),
STR_PAIR("joda", "application/vnd.joost.joda-archive"),
STR_PAIR("ktz", "application/vnd.kahootz"),
STR_PAIR("ktr", "application/vnd.kahootz"),
STR_PAIR("karbon", "application/vnd.kde.karbon"),
STR_PAIR("chrt", "application/vnd.kde.kchart"),
STR_PAIR("kfo", "application/vnd.kde.kformula"),
STR_PAIR("flw", "application/vnd.kde.kivio"),
STR_PAIR("kon", "application/vnd.kde.kontour"),
STR_PAIR("kpr", "application/vnd.kde.kpresenter"),
STR_PAIR("kpt", "application/vnd.kde.kpresenter"),
STR_PAIR("ksp", "application/vnd.kde.kspread"),
STR_PAIR("kwd", "application/vnd.kde.kword"),
STR_PAIR("kwt", "application/vnd.kde.kword"),
STR_PAIR("htke", "application/vnd.kenameaapp"),
STR_PAIR("kia", "application/vnd.kidspiration"),
STR_PAIR("kne", "application/vnd.kinar"),
STR_PAIR("knp", "application/vnd.kinar"),
STR_PAIR("skp", "application/vnd.koan"),
STR_PAIR("skd", "application/vnd.koan"),
STR_PAIR("skt", "application/vnd.koan"),
STR_PAIR("skm", "application/vnd.koan"),
STR_PAIR("sse", "application/vnd.kodak-descriptor"),
STR_PAIR("lasxml", "application/vnd.las.las+xml"),
STR_PAIR("lbd", "application/vnd.llamagraphics.life-balance.desktop"),
STR_PAIR("lbe", "application/vnd.llamagraphics.life-balance.exchange+xml"),
STR_PAIR("123", "application/vnd.lotus-1-2-3"),
STR_PAIR("apr", "application/vnd.lotus-approach"),
STR_PAIR("pre", "application/vnd.lotus-freelance"),
STR_PAIR("nsf", "application/vnd.lotus-notes"),
STR_PAIR("org", "application/vnd.lotus-organizer"),
STR_PAIR("scm", "application/vnd.lotus-screencam"),
STR_PAIR("lwp", "application/vnd.lotus-wordpro"),
STR_PAIR("portpkg", "application/vnd.macports.portpkg"),
STR_PAIR("mcd", "application/vnd.mcd"),
STR_PAIR("mc1", "application/vnd.medcalcdata"),
STR_PAIR("cdkey", "application/vnd.mediastation.cdkey"),
STR_PAIR("mwf", "application/vnd.mfer"),
STR_PAIR("mfm", "application/vnd.mfmp"),
STR_PAIR("flo", "application/vnd.micrografx.flo"),
STR_PAIR("igx", "application/vnd.micrografx.igx"),
STR_PAIR("mif", "application/vnd.mif"),
STR_PAIR("daf", "application/vnd.mobius.daf"),
STR_PAIR("dis", "application/vnd.mobius.dis"),
STR_PAIR("mbk", "application/vnd.mobius.mbk"),
STR_PAIR("mqy", "application/vnd.mobius.mqy"),
STR_PAIR("msl", "application/vnd.mobius.msl"),
STR_PAIR("plc", "application/vnd.mobius.plc"),
STR_PAIR("txf", "application/vnd.mobius.txf"),
STR_PAIR("mpn", "application/vnd.mophun.application"),
STR_PAIR("mpc", "application/vnd.mophun.certificate"),
STR_PAIR("xul", "application/vnd.mozilla.xul+xml"),
STR_PAIR("cil", "application/vnd.ms-artgalry"),
STR_PAIR("cab", "application/vnd.ms-cab-compressed"),
STR_PAIR("xls", "application/vnd.ms-excel"),
STR_PAIR("xlm", "application/vnd.ms-excel"),
STR_PAIR("xla", "application/vnd.ms-excel"),
STR_PAIR("xlc", "application/vnd.ms-excel"),
STR_PAIR("xlt", "application/vnd.ms-excel"),
STR_PAIR("xlw", "application/vnd.ms-excel"),
STR_PAIR("xlam", "application/vnd.ms-excel.addin.macroenabled.12"),
STR_PAIR("xlsb", "application/vnd.ms-excel.sheet.binary.macroenabled.12"),
STR_PAIR("xlsm", "application/vnd.ms-excel.sheet.macroenabled.12"),
STR_PAIR("xltm", "application/vnd.ms-excel.template.macroenabled.12"),
STR_PAIR("eot", "application/vnd.ms-fontobject"),
STR_PAIR("chm", "application/vnd.ms-htmlhelp"),
STR_PAIR("ims", "application/vnd.ms-ims"),
STR_PAIR("lrm", "application/vnd.ms-lrm"),
STR_PAIR("thmx", "application/vnd.ms-officetheme"),
STR_PAIR("cat", "application/vnd.ms-pki.seccat"),
STR_PAIR("stl", "application/vnd.ms-pki.stl"),
STR_PAIR("ppt", "application/vnd.ms-powerpoint"),
STR_PAIR("pps", "application/vnd.ms-powerpoint"),
STR_PAIR("pot", "application/vnd.ms-powerpoint"),
STR_PAIR("ppam", "application/vnd.ms-powerpoint.addin.macroenabled.12"),
STR_PAIR("pptm", "application/vnd.ms-powerpoint.presentation.macroenabled.12"),
STR_PAIR("sldm", "application/vnd.ms-powerpoint.slide.macroenabled.12"),
STR_PAIR("ppsm", "application/vnd.ms-powerpoint.slideshow.macroenabled.12"),
STR_PAIR("potm", "application/vnd.ms-powerpoint.template.macroenabled.12"),
STR_PAIR("mpp", "application/vnd.ms-project"),
STR_PAIR("mpt", "application/vnd.ms-project"),
STR_PAIR("docm", "application/vnd.ms-word.document.macroenabled.12"),
STR_PAIR("dotm", "application/vnd.ms-word.template.macroenabled.12"),
STR_PAIR("wps", "application/vnd.ms-works"),
STR_PAIR("wks", "application/vnd.ms-works"),
STR_PAIR("wcm", "application/vnd.ms-works"),
STR_PAIR("wdb", "application/vnd.ms-works"),
STR_PAIR("wpl", "application/vnd.ms-wpl"),
STR_PAIR("xps", "application/vnd.ms-xpsdocument"),
STR_PAIR("mseq", "application/vnd.mseq"),
STR_PAIR("mus", "application/vnd.musician"),
STR_PAIR("msty", "application/vnd.muvee.style"),
STR_PAIR("taglet", "application/vnd.mynfc"),
STR_PAIR("nlu", "application/vnd.neurolanguage.nlu"),
STR_PAIR("ntf", "application/vnd.nitf"),
STR_PAIR("nitf", "application/vnd.nitf"),
STR_PAIR("nnd", "application/vnd.noblenet-directory"),
STR_PAIR("nns", "application/vnd.noblenet-sealer"),
STR_PAIR("nnw", "application/vnd.noblenet-web"),
STR_PAIR("ngdat", "application/vnd.nokia.n-gage.data"),
STR_PAIR("n-gage", "application/vnd.nokia.n-gage.symbian.install"),
STR_PAIR("rpst", "application/vnd.nokia.radio-preset"),
STR_PAIR("rpss", "application/vnd.nokia.radio-presets"),
STR_PAIR("edm", "application/vnd.novadigm.edm"),
STR_PAIR("edx", "application/vnd.novadigm.edx"),
STR_PAIR("ext", "application/vnd.novadigm.ext"),
STR_PAIR("odc", "application/vnd.oasis.opendocument.chart"),
STR_PAIR("otc", "application/vnd.oasis.opendocument.chart-template"),
STR_PAIR("odb", "application/vnd.oasis.opendocument.database"),
STR_PAIR("odf", "application/vnd.oasis.opendocument.formula"),
STR_PAIR("odft", "application/vnd.oasis.opendocument.formula-template"),
STR_PAIR("odg", "application/vnd.oasis.opendocument.graphics"),
STR_PAIR("otg", "application/vnd.oasis.opendocument.graphics-template"),
STR_PAIR("odi", "application/vnd.oasis.opendocument.image"),
STR_PAIR("oti", "application/vnd.oasis.opendocument.image-template"),
STR_PAIR("odp", "application/vnd.oasis.opendocument.presentation"),
STR_PAIR("otp", "application/vnd.oasis.opendocument.presentation-template"),
STR_PAIR("ods", "application/vnd.oasis.opendocument.spreadsheet"),
STR_PAIR("ots", "application/vnd.oasis.opendocument.spreadsheet-template"),
STR_PAIR("odt", "application/vnd.oasis.opendocument.text"),
STR_PAIR("odm", "application/vnd.oasis.opendocument.text-master"),
STR_PAIR("ott", "application/vnd.oasis.opendocument.text-template"),
STR_PAIR("oth", "application/vnd.oasis.opendocument.text-web"),
STR_PAIR("xo", "application/vnd.olpc-sugar"),
STR_PAIR("dd2", "application/vnd.oma.dd2+xml"),
STR_PAIR("oxt", "application/vnd.openofficeorg.extension"),
STR_PAIR("pptx", "application/vnd.openxmlformats-officedocument.presentationml.presentation"),
STR_PAIR("sldx", "application/vnd.openxmlformats-officedocument.presentationml.slide"),
STR_PAIR("ppsx", "application/vnd.openxmlformats-officedocument.presentationml.slideshow"),
STR_PAIR("potx", "application/vnd.openxmlformats-officedocument.presentationml.template"),
STR_PAIR("xlsx", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"),
STR_PAIR("xltx", "application/vnd.openxmlformats-officedocument.spreadsheetml.template"),
STR_PAIR("docx", "application/vnd.openxmlformats-officedocument.wordprocessingml.document"),
STR_PAIR("dotx", "application/vnd.openxmlformats-officedocument.wordprocessingml.template"),
STR_PAIR("mgp", "application/vnd.osgeo.mapguide.package"),
STR_PAIR("dp", "application/vnd.osgi.dp"),
STR_PAIR("esa", "application/vnd.osgi.subsystem"),
STR_PAIR("pdb", "application/vnd.palm"),
STR_PAIR("pqa", "application/vnd.palm"),
STR_PAIR("oprc", "application/vnd.palm"),
STR_PAIR("paw", "application/vnd.pawaafile"),
STR_PAIR("str", "application/vnd.pg.format"),
STR_PAIR("ei6", "application/vnd.pg.osasli"),
STR_PAIR("efif", "application/vnd.picsel"),
STR_PAIR("wg", "application/vnd.pmi.widget"),
STR_PAIR("plf", "application/vnd.pocketlearn"),
STR_PAIR("pbd", "application/vnd.powerbuilder6"),
STR_PAIR("box", "application/vnd.previewsystems.box"),
STR_PAIR("mgz", "application/vnd.proteus.magazine"),
STR_PAIR("qps", "application/vnd.publishare-delta-tree"),
STR_PAIR("ptid", "application/vnd.pvi.ptid1"),
STR_PAIR("qxd", "application/vnd.quark.quarkxpress"),
STR_PAIR("qxt", "application/vnd.quark.quarkxpress"),
STR_PAIR("qwd", "application/vnd.quark.quarkxpress"),
STR_PAIR("qwt", "application/vnd.quark.quarkxpress"),
STR_PAIR("qxl", "application/vnd.quark.quarkxpress"),
STR_PAIR("qxb", "application/vnd.quark.quarkxpress"),
STR_PAIR("bed", "application/vnd.realvnc.bed"),
STR_PAIR("mxl", "application/vnd.recordare.musicxml"),
STR_PAIR("musicxml", "application/vnd.recordare.musicxml+xml"),
STR_PAIR("cryptonote", "application/vnd.rig.cryptonote"),
STR_PAIR("cod", "application/vnd.rim.cod"),
STR_PAIR("rm", "application/vnd.rn-realmedia"),
STR_PAIR("rmvb", "application/vnd.rn-realmedia-vbr"),
STR_PAIR("link66", "application/vnd.route66.link66+xml"),
STR_PAIR("st", "application/vnd.sailingtracker.track"),
STR_PAIR("see", "application/vnd.seemail"),
STR_PAIR("sema", "application/vnd.sema"),
STR_PAIR("semd", "application/vnd.semd"),
STR_PAIR("semf", "application/vnd.semf"),
STR_PAIR("ifm", "application/vnd.shana.informed.formdata"),
STR_PAIR("itp", "application/vnd.shana.informed.formtemplate"),
STR_PAIR("iif", "application/vnd.shana.informed.interchange"),
STR_PAIR("ipk", "application/vnd.shana.informed.package"),
STR_PAIR("twd", "application/vnd.simtech-mindmapper"),
STR_PAIR("twds", "application/vnd.simtech-mindmapper"),
STR_PAIR("mmf", "application/vnd.smaf"),
STR_PAIR("teacher", "application/vnd.smart.teacher"),
STR_PAIR("sdkm", "application/vnd.solent.sdkm+xml"),
STR_PAIR("sdkd", "application/vnd.solent.sdkm+xml"),
STR_PAIR("dxp", "application/vnd.spotfire.dxp"),
STR_PAIR("sfs", "application/vnd.spotfire.sfs"),
STR_PAIR("sdc", "application/vnd.stardivision.calc"),
STR_PAIR("sda", "application/vnd.stardivision.draw"),
STR_PAIR("sdd", "application/vnd.stardivision.impress"),
STR_PAIR("smf", "application/vnd.stardivision.math"),
STR_PAIR("sdw", "application/vnd.stardivision.writer"),
STR_PAIR("vor", "application/vnd.stardivision.writer"),
STR_PAIR("sgl", "application/vnd.stardivision.writer-global"),
STR_PAIR("smzip", "application/vnd.stepmania.package"),
STR_PAIR("sm", "application/vnd.stepmania.stepchart"),
STR_PAIR("sxc", "application/vnd.sun.xml.calc"),
STR_PAIR("stc", "application/vnd.sun.xml.calc.template"),
STR_PAIR("sxd", "application/vnd.sun.xml.draw"),
STR_PAIR("std", "application/vnd.sun.xml.draw.template"),
STR_PAIR("sxi", "application/vnd.sun.xml.impress"),
STR_PAIR("sti", "application/vnd.sun.xml.impress.template"),
STR_PAIR("sxm", "application/vnd.sun.xml.math"),
STR_PAIR("sxw", "application/vnd.sun.xml.writer"),
STR_PAIR("sxg", "application/vnd.sun.xml.writer.global"),
STR_PAIR("stw", "application/vnd.sun.xml.writer.template"),
STR_PAIR("sus", "application/vnd.sus-calendar"),
STR_PAIR("susp", "application/vnd.sus-calendar"),
STR_PAIR("svd", "application/vnd.svd"),
STR_PAIR("sis", "application/vnd.symbian.install"),
STR_PAIR("sisx", "application/vnd.symbian.install"),
STR_PAIR("xsm", "application/vnd.syncml+xml"),
STR_PAIR("bdm", "application/vnd.syncml.dm+wbxml"),
STR_PAIR("xdm", "application/vnd.syncml.dm+xml"),
STR_PAIR("tao", "application/vnd.tao.intent-module-archive"),
STR_PAIR("pcap", "application/vnd.tcpdump.pcap"),
STR_PAIR("cap", "application/vnd.tcpdump.pcap"),
STR_PAIR("dmp", "application/vnd.tcpdump.pcap"),
STR_PAIR("tmo", "application/vnd.tmobile-livetv"),
STR_PAIR("tpt", "application/vnd.trid.tpt"),
STR_PAIR("mxs", "application/vnd.triscape.mxs"),
STR_PAIR("tra", "application/vnd.trueapp"),
STR_PAIR("ufd", "application/vnd.ufdl"),
STR_PAIR("ufdl", "application/vnd.ufdl"),
STR_PAIR("utz", "application/vnd.uiq.theme"),
STR_PAIR("umj", "application/vnd.umajin"),
STR_PAIR("unityweb", "application/vnd.unity"),
STR_PAIR("uoml", "application/vnd.uoml+xml"),
STR_PAIR("vcx", "application/vnd.vcx"),
STR_PAIR("vsd", "application/vnd.visio"),
STR_PAIR("vst", "application/vnd.visio"),
STR_PAIR("vss", "application/vnd.visio"),
STR_PAIR("vsw", "application/vnd.visio"),
STR_PAIR("vis", "application/vnd.visionary"),
STR_PAIR("vsf", "application/vnd.vsf"),
STR_PAIR("wbxml", "application/vnd.wap.wbxml"),
STR_PAIR("wmlc", "application/vnd.wap.wmlc"),
STR_PAIR("wmlsc", "application/vnd.wap.wmlscriptc"),
STR_PAIR("wtb", "application/vnd.webturbo"),
STR_PAIR("nbp", "application/vnd.wolfram.player"),
STR_PAIR("wpd", "application/vnd.wordperfect"),
STR_PAIR("wqd", "application/vnd.wqd"),
STR_PAIR("stf", "application/vnd.wt.stf"),
STR_PAIR("xar", "application/vnd.xara"),
STR_PAIR("xfdl", "application/vnd.xfdl"),
STR_PAIR("hvd", "application/vnd.yamaha.hv-dic"),
STR_PAIR("hvs", "application/vnd.yamaha.hv-script"),
STR_PAIR("hvp", "application/vnd.yamaha.hv-voice"),
STR_PAIR("osf", "application/vnd.yamaha.openscoreformat"),
STR_PAIR("osfpvg", "application/vnd.yamaha.openscoreformat.osfpvg+xml"),
STR_PAIR("saf", "application/vnd.yamaha.smaf-audio"),
STR_PAIR("spf", "application/vnd.yamaha.smaf-phrase"),
STR_PAIR("cmp", "application/vnd.yellowriver-custom-menu"),
STR_PAIR("zir", "application/vnd.zul"),
STR_PAIR("zirz", "application/vnd.zul"),
STR_PAIR("zaz", "application/vnd.zzazz.deck+xml"),
STR_PAIR("vxml", "application/voicexml+xml"),
STR_PAIR("wgt", "application/widget"),
STR_PAIR("hlp", "application/winhlp"),
STR_PAIR("wsdl", "application/wsdl+xml"),
STR_PAIR("wspolicy", "application/wspolicy+xml"),
STR_PAIR("7z", "application/x-7z-compressed"),
STR_PAIR("abw", "application/x-abiword"),
STR_PAIR("ace", "application/x-ace-compressed"),
STR_PAIR("dmg", "application/x-apple-diskimage"),
STR_PAIR("aab", "application/x-authorware-bin"),
STR_PAIR("x32", "application/x-authorware-bin"),
STR_PAIR("u32", "application/x-authorware-bin"),
STR_PAIR("vox", "application/x-authorware-bin"),
STR_PAIR("aam", "application/x-authorware-map"),
STR_PAIR("aas", "application/x-authorware-seg"),
STR_PAIR("bcpio", "application/x-bcpio"),
STR_PAIR("torrent", "application/x-bittorrent"),
STR_PAIR("blb", "application/x-blorb"),
STR_PAIR("blorb", "application/x-blorb"),
STR_PAIR("bz", "application/x-bzip"),
STR_PAIR("bz2", "application/x-bzip2"),
STR_PAIR("boz", "application/x-bzip2"),
STR_PAIR("cbr", "application/x-cbr"),
STR_PAIR("cba", "application/x-cbr"),
STR_PAIR("cbt", "application/x-cbr"),
STR_PAIR("cbz", "application/x-cbr"),
STR_PAIR("cb7", "application/x-cbr"),
STR_PAIR("vcd", "application/x-cdlink"),
STR_PAIR("cfs", "application/x-cfs-compressed"),
STR_PAIR("chat", "application/x-chat"),
STR_PAIR("pgn", "application/x-chess-pgn"),
STR_PAIR("nsc", "application/x-conference"),
STR_PAIR("cpio", "application/x-cpio"),
STR_PAIR("csh", "application/x-csh"),
STR_PAIR("deb", "application/x-debian-package"),
STR_PAIR("udeb", "application/x-debian-package"),
STR_PAIR("dgc", "application/x-dgc-compressed"),
STR_PAIR("dir", "application/x-director"),
STR_PAIR("dcr", "application/x-director"),
STR_PAIR("dxr", "application/x-director"),
STR_PAIR("cst", "application/x-director"),
STR_PAIR("cct", "application/x-director"),
STR_PAIR("cxt", "application/x-director"),
STR_PAIR("w3d", "application/x-director"),
STR_PAIR("fgd", "application/x-director"),
STR_PAIR("swa", "application/x-director"),
STR_PAIR("wad", "application/x-doom"),
STR_PAIR("ncx", "application/x-dtbncx+xml"),
STR_PAIR("dtb", "application/x-dtbook+xml"),
STR_PAIR("res", "application/x-dtbresource+xml"),
STR_PAIR("dvi", "application/x-dvi"),
STR_PAIR("evy", "application/x-envoy"),
STR_PAIR("eva", "application/x-eva"),
STR_PAIR("bdf", "application/x-font-bdf"),
STR_PAIR("gsf", "application/x-font-ghostscript"),
STR_PAIR("psf", "application/x-font-linux-psf"),
STR_PAIR("pcf", "application/x-font-pcf"),
STR_PAIR("snf", "application/x-font-snf"),
STR_PAIR("pfa", "application/x-font-type1"),
STR_PAIR("pfb", "application/x-font-type1"),
STR_PAIR("pfm", "application/x-font-type1"),
STR_PAIR("afm", "application/x-font-type1"),
STR_PAIR("arc", "application/x-freearc"),
STR_PAIR("spl", "application/x-futuresplash"),
STR_PAIR("gca", "application/x-gca-compressed"),
STR_PAIR("ulx", "application/x-glulx"),
STR_PAIR("gnumeric", "application/x-gnumeric"),
STR_PAIR("gramps", "application/x-gramps-xml"),
STR_PAIR("gtar", "application/x-gtar"),
STR_PAIR("hdf", "application/x-hdf"),
STR_PAIR("install", "application/x-install-instructions"),
STR_PAIR("iso", "application/x-iso9660-image"),
STR_PAIR("jnlp", "application/x-java-jnlp-file"),
STR_PAIR("latex", "application/x-latex"),
STR_PAIR("lzh", "application/x-lzh-compressed"),
STR_PAIR("lha", "application/x-lzh-compressed"),
STR_PAIR("mie", "application/x-mie"),
STR_PAIR("prc", "application/x-mobipocket-ebook"),
STR_PAIR("mobi", "application/x-mobipocket-ebook"),
STR_PAIR("application", "application/x-ms-application"),
STR_PAIR("lnk", "application/x-ms-shortcut"),
STR_PAIR("wmd", "application/x-ms-wmd"),
STR_PAIR("wmz", "application/x-msmetafile"),
STR_PAIR("xbap", "application/x-ms-xbap"),
STR_PAIR("mdb", "application/x-msaccess"),
STR_PAIR("obd", "application/x-msbinder"),
STR_PAIR("crd", "application/x-mscardfile"),
STR_PAIR("clp", "application/x-msclip"),
STR_PAIR("exe", "application/x-msdownload"),
STR_PAIR("dll", "application/x-msdownload"),
STR_PAIR("com", "application/x-msdownload"),
STR_PAIR("bat", "application/x-msdownload"),
STR_PAIR("msi", "application/x-msdownload"),
STR_PAIR("mvb", "application/x-msmediaview"),
STR_PAIR("m13", "application/x-msmediaview"),
STR_PAIR("m14", "application/x-msmediaview"),
STR_PAIR("wmf", "application/x-msmetafile"),
STR_PAIR("emf", "application/x-msmetafile"),
STR_PAIR("emz", "application/x-msmetafile"),
STR_PAIR("mny", "application/x-msmoney"),
STR_PAIR("pub", "application/x-mspublisher"),
STR_PAIR("scd", "application/x-msschedule"),
STR_PAIR("trm", "application/x-msterminal"),
STR_PAIR("wri", "application/x-mswrite"),
STR_PAIR("nc", "application/x-netcdf"),
STR_PAIR("cdf", "application/x-netcdf"),
STR_PAIR("nzb", "application/x-nzb"),
STR_PAIR("p12", "application/x-pkcs12"),
STR_PAIR("pfx", "application/x-pkcs12"),
STR_PAIR("p7b", "application/x-pkcs7-certificates"),
STR_PAIR("spc", "application/x-pkcs7-certificates"),
STR_PAIR("p7r", "application/x-pkcs7-certreqresp"),
STR_PAIR("rar", "application/x-rar-compressed"),
STR_PAIR("ris", "application/x-research-info-systems"),
STR_PAIR("sh", "application/x-sh"),
STR_PAIR("shar", "application/x-shar"),
STR_PAIR("swf", "application/x-shockwave-flash"),
STR_PAIR("xap", "application/x-silverlight-app"),
STR_PAIR("sql", "application/x-sql"),
STR_PAIR("sit", "application/x-stuffit"),
STR_PAIR("sitx", "application/x-stuffitx"),
STR_PAIR("srt", "application/x-subrip"),
STR_PAIR("sv4cpio", "application/x-sv4cpio"),
STR_PAIR("sv4crc", "application/x-sv4crc"),
STR_PAIR("t3", "application/x-t3vm-image"),
STR_PAIR("gam", "application/x-tads"),
STR_PAIR("tar", "application/x-tar"),
STR_PAIR("tcl", "application/x-tcl"),
STR_PAIR("tex", "application/x-tex"),
STR_PAIR("tfm", "application/x-tex-tfm"),
STR_PAIR("texinfo", "application/x-texinfo"),
STR_PAIR("texi", "application/x-texinfo"),
STR_PAIR("obj", "application/x-tgif"),
STR_PAIR("ustar", "application/x-ustar"),
STR_PAIR("src", "application/x-wais-source"),
STR_PAIR("der", "application/x-x509-ca-cert"),
STR_PAIR("crt", "application/x-x509-ca-cert"),
STR_PAIR("fig", "application/x-xfig"),
STR_PAIR("xlf", "application/x-xliff+xml"),
STR_PAIR("xpi", "application/x-xpinstall"),
STR_PAIR("xz", "application/x-xz"),
STR_PAIR("z1", "application/x-zmachine"),
STR_PAIR("z2", "application/x-zmachine"),
STR_PAIR("z3", "application/x-zmachine"),
STR_PAIR("z4", "application/x-zmachine"),
STR_PAIR("z5", "application/x-zmachine"),
STR_PAIR("z6", "application/x-zmachine"),
STR_PAIR("z7", "application/x-zmachine"),
STR_PAIR("z8", "application/x-zmachine"),
STR_PAIR("xaml", "application/xaml+xml"),
STR_PAIR("xdf", "application/xcap-diff+xml"),
STR_PAIR("xenc", "application/xenc+xml"),
STR_PAIR("xhtml", "application/xhtml+xml"),
STR_PAIR("xht", "application/xhtml+xml"),
STR_PAIR("xml", "application/xml"),
STR_PAIR("xsl", "application/xml"),
STR_PAIR("dtd", "application/xml-dtd"),
STR_PAIR("xop", "application/xop+xml"),
STR_PAIR("xpl", "application/xproc+xml"),
STR_PAIR("xslt", "application/xslt+xml"),
STR_PAIR("xspf", "application/xspf+xml"),
STR_PAIR("mxml", "application/xv+xml"),
STR_PAIR("xhvml", "application/xv+xml"),
STR_PAIR("xvml", "application/xv+xml"),
STR_PAIR("xvm", "application/xv+xml"),
STR_PAIR("yang", "application/yang"),
STR_PAIR("yin", "application/yin+xml"),
STR_PAIR("zip", "application/zip"),
STR_PAIR("adp", "audio/adpcm"),
STR_PAIR("au", "audio/basic"),
STR_PAIR("snd", "audio/basic"),
STR_PAIR("mid", "audio/midi"),
STR_PAIR("midi", "audio/midi"),
STR_PAIR("kar", "audio/midi"),
STR_PAIR("rmi", "audio/midi"),
STR_PAIR("m4a", "audio/mp4"),
STR_PAIR("mp4a", "audio/mp4"),
STR_PAIR("mpga", "audio/mpeg"),
STR_PAIR("mp2", "audio/mpeg"),
STR_PAIR("mp2a", "audio/mpeg"),
STR_PAIR("mp3", "audio/mpeg"),
STR_PAIR("m2a", "audio/mpeg"),
STR_PAIR("m3a", "audio/mpeg"),
STR_PAIR("oga", "audio/ogg"),
STR_PAIR("ogg", "audio/ogg"),
STR_PAIR("spx", "audio/ogg"),
STR_PAIR("opus", "audio/ogg"),
STR_PAIR("s3m", "audio/s3m"),
STR_PAIR("sil", "audio/silk"),
STR_PAIR("uva", "audio/vnd.dece.audio"),
STR_PAIR("uvva", "audio/vnd.dece.audio"),
STR_PAIR("eol", "audio/vnd.digital-winds"),
STR_PAIR("dra", "audio/vnd.dra"),
STR_PAIR("dts", "audio/vnd.dts"),
STR_PAIR("dtshd", "audio/vnd.dts.hd"),
STR_PAIR("lvp", "audio/vnd.lucent.voice"),
STR_PAIR("pya", "audio/vnd.ms-playready.media.pya"),
STR_PAIR("ecelp4800", "audio/vnd.nuera.ecelp4800"),
STR_PAIR("ecelp7470", "audio/vnd.nuera.ecelp7470"),
STR_PAIR("ecelp9600", "audio/vnd.nuera.ecelp9600"),
STR_PAIR("rip", "audio/vnd.rip"),
STR_PAIR("weba", "audio/webm"),
STR_PAIR("aac", "audio/x-aac"),
STR_PAIR("aif", "audio/x-aiff"),
STR_PAIR("aiff", "audio/x-aiff"),
STR_PAIR("aifc", "audio/x-aiff"),
STR_PAIR("caf", "audio/x-caf"),
STR_PAIR("flac", "audio/x-flac"),
STR_PAIR("mka", "audio/x-matroska"),
STR_PAIR("m3u", "audio/x-mpegurl"),
STR_PAIR("wax", "audio/x-ms-wax"),
STR_PAIR("wma", "audio/x-ms-wma"),
STR_PAIR("ram", "audio/x-pn-realaudio"),
STR_PAIR("ra", "audio/x-pn-realaudio"),
STR_PAIR("rmp", "audio/x-pn-realaudio-plugin"),
STR_PAIR("wav", "audio/x-wav"),
STR_PAIR("xm", "audio/xm"),
STR_PAIR("cdx", "chemical/x-cdx"),
STR_PAIR("cif", "chemical/x-cif"),
STR_PAIR("cmdf", "chemical/x-cmdf"),
STR_PAIR("cml", "chemical/x-cml"),
STR_PAIR("csml", "chemical/x-csml"),
STR_PAIR("xyz", "chemical/x-xyz"),
STR_PAIR("ttc", "font/collection"),
STR_PAIR("otf", "font/otf"),
STR_PAIR("ttf", "font/ttf"),
STR_PAIR("woff", "font/woff"),
STR_PAIR("woff2", "font/woff2"),
STR_PAIR("bmp", "image/bmp"),
STR_PAIR("cgm", "image/cgm"),
STR_PAIR("g3", "image/g3fax"),
STR_PAIR("gif", "image/gif"),
STR_PAIR("ief", "image/ief"),
STR_PAIR("jpeg", "image/jpeg"),
STR_PAIR("jpg", "image/jpeg"),
STR_PAIR("jpe", "image/jpeg"),
STR_PAIR("ktx", "image/ktx"),
STR_PAIR("png", "image/png"),
STR_PAIR("btif", "image/prs.btif"),
STR_PAIR("sgi", "image/sgi"),
STR_PAIR("svg", "image/svg+xml"),
STR_PAIR("svgz", "image/svg+xml"),
STR_PAIR("tiff", "image/tiff"),
STR_PAIR("tif", "image/tiff"),
STR_PAIR("psd", "image/vnd.adobe.photoshop"),
STR_PAIR("uvi", "image/vnd.dece.graphic"),
STR_PAIR("uvvi", "image/vnd.dece.graphic"),
STR_PAIR("uvg", "image/vnd.dece.graphic"),
STR_PAIR("uvvg", "image/vnd.dece.graphic"),
STR_PAIR("djvu", "image/vnd.djvu"),
STR_PAIR("djv", "image/vnd.djvu"),
STR_PAIR("sub", "text/vnd.dvb.subtitle"),
STR_PAIR("dwg", "image/vnd.dwg"),
STR_PAIR("dxf", "image/vnd.dxf"),
STR_PAIR("fbs", "image/vnd.fastbidsheet"),
STR_PAIR("fpx", "image/vnd.fpx"),
STR_PAIR("fst", "image/vnd.fst"),
STR_PAIR("mmr", "image/vnd.fujixerox.edmics-mmr"),
STR_PAIR("rlc", "image/vnd.fujixerox.edmics-rlc"),
STR_PAIR("mdi", "image/vnd.ms-modi"),
STR_PAIR("wdp", "image/vnd.ms-photo"),
STR_PAIR("npx", "image/vnd.net-fpx"),
STR_PAIR("wbmp", "image/vnd.wap.wbmp"),
STR_PAIR("xif", "image/vnd.xiff"),
STR_PAIR("webp", "image/webp"),
STR_PAIR("3ds", "image/x-3ds"),
STR_PAIR("ras", "image/x-cmu-raster"),
STR_PAIR("cmx", "image/x-cmx"),
STR_PAIR("fh", "image/x-freehand"),
STR_PAIR("fhc", "image/x-freehand"),
STR_PAIR("fh4", "image/x-freehand"),
STR_PAIR("fh5", "image/x-freehand"),
STR_PAIR("fh7", "image/x-freehand"),
STR_PAIR("ico", "image/x-icon"),
STR_PAIR("sid", "image/x-mrsid-image"),
STR_PAIR("pcx", "image/x-pcx"),
STR_PAIR("pic", "image/x-pict"),
STR_PAIR("pct", "image/x-pict"),
STR_PAIR("pnm", "image/x-portable-anymap"),
STR_PAIR("pbm", "image/x-portable-bitmap"),
STR_PAIR("pgm", "image/x-portable-graymap"),
STR_PAIR("ppm", "image/x-portable-pixmap"),
STR_PAIR("rgb", "image/x-rgb"),
STR_PAIR("tga", "image/x-tga"),
STR_PAIR("xbm", "image/x-xbitmap"),
STR_PAIR("xpm", "image/x-xpixmap"),
STR_PAIR("xwd", "image/x-xwindowdump"),
STR_PAIR("eml", "message/rfc822"),
STR_PAIR("mime", "message/rfc822"),
STR_PAIR("igs", "model/iges"),
STR_PAIR("iges", "model/iges"),
STR_PAIR("msh", "model/mesh"),
STR_PAIR("mesh", "model/mesh"),
STR_PAIR("silo", "model/mesh"),
STR_PAIR("dae", "model/vnd.collada+xml"),
STR_PAIR("dwf", "model/vnd.dwf"),
STR_PAIR("gdl", "model/vnd.gdl"),
STR_PAIR("gtw", "model/vnd.gtw"),
STR_PAIR("mts", "model/vnd.mts"),
STR_PAIR("vtu", "model/vnd.vtu"),
STR_PAIR("wrl", "model/vrml"),
STR_PAIR("vrml", "model/vrml"),
STR_PAIR("x3db", "model/x3d+binary"),
STR_PAIR("x3dbz", "model/x3d+binary"),
STR_PAIR("x3dv", "model/x3d+vrml"),
STR_PAIR("x3dvz", "model/x3d+vrml"),
STR_PAIR("x3d", "model/x3d+xml"),
STR_PAIR("x3dz", "model/x3d+xml"),
STR_PAIR("appcache", "text/cache-manifest"),
STR_PAIR("ics", "text/calendar"),
STR_PAIR("ifb", "text/calendar"),
STR_PAIR("css", "text/css"),
STR_PAIR("csv", "text/csv"),
STR_PAIR("html", "text/html"),
STR_PAIR("htm", "text/html"),
STR_PAIR("n3", "text/n3"),
STR_PAIR("txt", "text/plain"),
STR_PAIR("text", "text/plain"),
STR_PAIR("conf", "text/plain"),
STR_PAIR("def", "text/plain"),
STR_PAIR("list", "text/plain"),
STR_PAIR("log", "text/plain"),
STR_PAIR("in", "text/plain"),
STR_PAIR("dsc", "text/prs.lines.tag"),
STR_PAIR("rtx", "text/richtext"),
STR_PAIR("sgml", "text/sgml"),
STR_PAIR("sgm", "text/sgml"),
STR_PAIR("tsv", "text/tab-separated-values"),
STR_PAIR("t", "text/troff"),
STR_PAIR("tr", "text/troff"),
STR_PAIR("roff", "text/troff"),
STR_PAIR("man", "text/troff"),
STR_PAIR("me", "text/troff"),
STR_PAIR("ms", "text/troff"),
STR_PAIR("ttl", "text/turtle"),
STR_PAIR("uri", "text/uri-list"),
STR_PAIR("uris", "text/uri-list"),
STR_PAIR("urls", "text/uri-list"),
STR_PAIR("vcard", "text/vcard"),
STR_PAIR("curl", "text/vnd.curl"),
STR_PAIR("dcurl", "text/vnd.curl.dcurl"),
STR_PAIR("mcurl", "text/vnd.curl.mcurl"),
STR_PAIR("scurl", "text/vnd.curl.scurl"),
STR_PAIR("fly", "text/vnd.fly"),
STR_PAIR("flx", "text/vnd.fmi.flexstor"),
STR_PAIR("gv", "text/vnd.graphviz"),
STR_PAIR("3dml", "text/vnd.in3d.3dml"),
STR_PAIR("spot", "text/vnd.in3d.spot"),
STR_PAIR("jad", "text/vnd.sun.j2me.app-descriptor"),
STR_PAIR("wml", "text/vnd.wap.wml"),
STR_PAIR("wmls", "text/vnd.wap.wmlscript"),
STR_PAIR("s", "text/x-asm"),
STR_PAIR("asm", "text/x-asm"),
STR_PAIR("c", "text/x-c"),
STR_PAIR("cc", "text/x-c"),
STR_PAIR("cxx", "text/x-c"),
STR_PAIR("cpp", "text/x-c"),
STR_PAIR("h", "text/x-c"),
STR_PAIR("hh", "text/x-c"),
STR_PAIR("dic", "text/x-c"),
STR_PAIR("f", "text/x-fortran"),
STR_PAIR("for", "text/x-fortran"),
STR_PAIR("f77", "text/x-fortran"),
STR_PAIR("f90", "text/x-fortran"),
STR_PAIR("java", "text/x-java-source"),
STR_PAIR("nfo", "text/x-nfo"),
STR_PAIR("opml", "text/x-opml"),
STR_PAIR("p", "text/x-pascal"),
STR_PAIR("pas", "text/x-pascal"),
STR_PAIR("etx", "text/x-setext"),
STR_PAIR("sfv", "text/x-sfv"),
STR_PAIR("uu", "text/x-uuencode"),
STR_PAIR("vcs", "text/x-vcalendar"),
STR_PAIR("vcf", "text/x-vcard"),
STR_PAIR("3gp", "video/3gpp"),
STR_PAIR("3g2", "video/3gpp2"),
STR_PAIR("h261", "video/h261"),
STR_PAIR("h263", "video/h263"),
STR_PAIR("h264", "video/h264"),
STR_PAIR("jpgv", "video/jpeg"),
STR_PAIR("jpm", "video/jpm"),
STR_PAIR("jpgm", "video/jpm"),
STR_PAIR("mj2", "video/mj2"),
STR_PAIR("mjp2", "video/mj2"),
STR_PAIR("mp4", "video/mp4"),
STR_PAIR("mp4v", "video/mp4"),
STR_PAIR("mpg4", "video/mp4"),
STR_PAIR("mpeg", "video/mpeg"),
STR_PAIR("mpg", "video/mpeg"),
STR_PAIR("mpe", "video/mpeg"),
STR_PAIR("m1v", "video/mpeg"),
STR_PAIR("m2v", "video/mpeg"),
STR_PAIR("ogv", "video/ogg"),
STR_PAIR("qt", "video/quicktime"),
STR_PAIR("mov", "video/quicktime"),
STR_PAIR("uvh", "video/vnd.dece.hd"),
STR_PAIR("uvvh", "video/vnd.dece.hd"),
STR_PAIR("uvm", "video/vnd.dece.mobile"),
STR_PAIR("uvvm", "video/vnd.dece.mobile"),
STR_PAIR("uvp", "video/vnd.dece.pd"),
STR_PAIR("uvvp", "video/vnd.dece.pd"),
STR_PAIR("uvs", "video/vnd.dece.sd"),
STR_PAIR("uvvs", "video/vnd.dece.sd"),
STR_PAIR("uvv", "video/vnd.dece.video"),
STR_PAIR("uvvv", "video/vnd.dece.video"),
STR_PAIR("dvb", "video/vnd.dvb.file"),
STR_PAIR("fvt", "video/vnd.fvt"),
STR_PAIR("mxu", "video/vnd.mpegurl"),
STR_PAIR("m4u", "video/vnd.mpegurl"),
STR_PAIR("pyv", "video/vnd.ms-playready.media.pyv"),
STR_PAIR("uvu", "video/vnd.uvvu.mp4"),
STR_PAIR("uvvu", "video/vnd.uvvu.mp4"),
STR_PAIR("viv", "video/vnd.vivo"),
STR_PAIR("webm", "video/webm"),
STR_PAIR("f4v", "video/x-f4v"),
STR_PAIR("fli", "video/x-fli"),
STR_PAIR("flv", "video/x-flv"),
STR_PAIR("m4v", "video/x-m4v"),
STR_PAIR("mkv", "video/x-matroska"),
STR_PAIR("mk3d", "video/x-matroska"),
STR_PAIR("mks", "video/x-matroska"),
STR_PAIR("mng", "video/x-mng"),
STR_PAIR("asf", "video/x-ms-asf"),
STR_PAIR("asx", "video/x-ms-asf"),
STR_PAIR("vob", "video/x-ms-vob"),
STR_PAIR("wm", "video/x-ms-wm"),
STR_PAIR("wmv", "video/x-ms-wmv"),
STR_PAIR("wmx", "video/x-ms-wmx"),
STR_PAIR("wvx", "video/x-ms-wvx"),
STR_PAIR("avi", "video/x-msvideo"),
STR_PAIR("movie", "video/x-sgi-movie"),
STR_PAIR("smv", "video/x-smv"),
STR_PAIR("ice", "x-conference/x-cooltalk")