mime-types 1.16 → 1.17

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 (50) hide show
  1. data/.gemtest +0 -0
  2. data/.hoerc +12 -0
  3. data/{History.txt → History.rdoc} +17 -0
  4. data/Licence.rdoc +10 -0
  5. data/Manifest.txt +36 -6
  6. data/README.rdoc +19 -0
  7. data/Rakefile +138 -255
  8. data/lib/mime/types.rb +117 -25
  9. data/lib/mime/{types.rb.data → types/application} +306 -690
  10. data/lib/mime/types/application.mac +2 -0
  11. data/lib/mime/types/application.nonstandard +114 -0
  12. data/lib/mime/types/application.obsolete +40 -0
  13. data/lib/mime/types/audio +131 -0
  14. data/lib/mime/types/audio.nonstandard +10 -0
  15. data/lib/mime/types/audio.obsolete +1 -0
  16. data/lib/mime/types/image +43 -0
  17. data/lib/mime/types/image.nonstandard +17 -0
  18. data/lib/mime/types/image.obsolete +5 -0
  19. data/lib/mime/types/message +19 -0
  20. data/lib/mime/types/message.obsolete +1 -0
  21. data/lib/mime/types/model +15 -0
  22. data/lib/mime/types/multipart +14 -0
  23. data/lib/mime/types/multipart.nonstandard +1 -0
  24. data/lib/mime/types/multipart.obsolete +7 -0
  25. data/lib/mime/types/other.nonstandard +8 -0
  26. data/lib/mime/types/text +54 -0
  27. data/lib/mime/types/text.nonstandard +5 -0
  28. data/lib/mime/types/text.obsolete +7 -0
  29. data/lib/mime/types/text.vms +1 -0
  30. data/lib/mime/types/video +68 -0
  31. data/lib/mime/types/video.nonstandard +11 -0
  32. data/lib/mime/types/video.obsolete +3 -0
  33. data/mime-types.gemspec +40 -26
  34. data/test/test_mime_type.rb +262 -300
  35. data/test/test_mime_types.rb +74 -97
  36. data/type-lists/application.txt +951 -0
  37. data/type-lists/audio.txt +132 -0
  38. data/type-lists/image.txt +43 -0
  39. data/type-lists/message.txt +20 -0
  40. data/type-lists/model.txt +15 -0
  41. data/type-lists/multipart.txt +14 -0
  42. data/type-lists/text.txt +57 -0
  43. data/type-lists/video.txt +67 -0
  44. metadata +205 -64
  45. data.tar.gz.sig +0 -2
  46. data/Install.txt +0 -17
  47. data/Licence.txt +0 -15
  48. data/README.txt +0 -28
  49. data/setup.rb +0 -1585
  50. metadata.gz.sig +0 -0
@@ -1,122 +1,99 @@
1
- #! /usr/bin/env ruby
2
- #--
3
- # MIME::Types
4
- # A Ruby implementation of a MIME Types information library. Based in spirit
5
- # on the Perl MIME::Types information library by Mark Overmeer.
6
- # http://rubyforge.org/projects/mime-types/
7
- #
8
- # Licensed under the Ruby disjunctive licence with the GNU GPL or the Perl
9
- # Artistic licence. See Licence.txt for more information.
10
- #
11
- # Copyright 2003 - 2009 Austin Ziegler
12
- #++
13
1
  $LOAD_PATH.unshift("#{File.dirname(__FILE__)}/../lib") if __FILE__ == $0
14
2
 
15
3
  require 'mime/types'
16
- require 'test/unit' unless defined? $ZENTEST and $ZENTEST
17
-
18
- module TestMIME
19
- class TestTypes < Test::Unit::TestCase #:nodoc:
20
- def test_class_index_1
21
- text_plain = MIME::Type.new('text/plain') do |t|
22
- t.encoding = '8bit'
23
- t.extensions = %w(asc txt c cc h hh cpp hpp dat hlp)
24
- end
25
- text_plain_vms = MIME::Type.new('text/plain') do |t|
26
- t.encoding = '8bit'
27
- t.extensions = %w(doc)
28
- t.system = 'vms'
29
- end
30
-
31
- assert_equal(MIME::Types['text/plain'], [text_plain, text_plain_vms])
32
- end
33
4
 
34
- def test_class_index_2
35
- tst_bmp = MIME::Types["image/x-bmp"] +
36
- MIME::Types["image/vnd.wap.wbmp"] + MIME::Types["image/x-win-bmp"]
5
+ class TestMIME_Types < MiniTest::Unit::TestCase #:nodoc:
6
+ def test_class_index_1
7
+ text_plain = MIME::Type.new('text/plain') do |t|
8
+ t.encoding = '8bit'
9
+ t.extensions = %w(asc txt c cc h hh cpp hpp dat hlp)
10
+ end
11
+ text_plain_vms = MIME::Type.new('text/plain') do |t|
12
+ t.encoding = '8bit'
13
+ t.extensions = %w(doc)
14
+ t.system = 'vms'
15
+ end
37
16
 
38
- assert_equal(tst_bmp.sort, MIME::Types[/bmp$/].sort)
17
+ assert_equal(MIME::Types['text/plain'], [text_plain, text_plain_vms])
18
+ end
39
19
 
40
- assert_nothing_raised {
41
- MIME::Types['image/bmp'][0].system = RUBY_PLATFORM
42
- }
20
+ def test_class_index_2
21
+ tst_bmp = MIME::Types["image/x-bmp"] +
22
+ MIME::Types["image/vnd.wap.wbmp"] + MIME::Types["image/x-win-bmp"]
43
23
 
44
- assert_equal([MIME::Type.from_array('image/x-bmp', ['bmp'])],
45
- MIME::Types[/bmp$/, { :platform => true }])
46
- end
24
+ assert_equal(tst_bmp.sort, MIME::Types[/bmp$/].sort)
47
25
 
48
- def test_class_index_3
49
- assert(MIME::Types['text/vnd.fly', { :complete => true }].empty?)
50
- assert(!MIME::Types['text/plain', { :complete => true} ].empty?)
51
- end
26
+ MIME::Types['image/bmp'][0].system = RUBY_PLATFORM
52
27
 
53
- def _test_class_index_extensions
54
- raise NotImplementedError, 'Need to write test_class_index_extensions'
55
- end
28
+ assert_equal([MIME::Type.from_array('image/x-bmp', ['bmp'])],
29
+ MIME::Types[/bmp$/, { :platform => true }])
30
+ end
56
31
 
57
- def _test_class_add
58
- assert_nothing_raised do
59
- @eruby = MIME::Type.new("application/x-eruby") do |t|
60
- t.extensions = "rhtml"
61
- t.encoding = "8bit"
62
- end
32
+ def test_class_index_3
33
+ assert(MIME::Types['text/vnd.fly', { :complete => true }].empty?)
34
+ assert(!MIME::Types['text/plain', { :complete => true} ].empty?)
35
+ end
63
36
 
64
- MIME::Types.add(@eruby)
65
- end
37
+ def _test_class_index_extensions
38
+ raise NotImplementedError, 'Need to write test_class_index_extensions'
39
+ end
66
40
 
67
- assert_equal(MIME::Types['application/x-eruby'], [@eruby])
41
+ def test_class_add
42
+ eruby = MIME::Type.new("application/x-eruby") do |t|
43
+ t.extensions = "rhtml"
44
+ t.encoding = "8bit"
68
45
  end
69
46
 
70
- def _test_class_add_type_variant
71
- raise NotImplementedError, 'Need to write test_class_add_type_variant'
72
- end
47
+ MIME::Types.add(eruby)
73
48
 
74
- def test_class_type_for
75
- assert_equal(MIME::Types.type_for('xml').sort, [ MIME::Types['text/xml'], MIME::Types['application/xml'] ].sort)
76
- assert_equal(MIME::Types.type_for('gif'), MIME::Types['image/gif'])
77
- assert_nothing_raised do
78
- MIME::Types['image/gif'][0].system = RUBY_PLATFORM
79
- end
80
- assert_equal(MIME::Types.type_for('gif', true), MIME::Types['image/gif'])
81
- assert(MIME::Types.type_for('zzz').empty?)
82
- end
49
+ assert_equal(MIME::Types['application/x-eruby'], [eruby])
50
+ end
83
51
 
84
- def test_class_of
85
- assert_equal(MIME::Types.of('xml').sort, [ MIME::Types['text/xml'], MIME::Types['application/xml'] ].sort)
86
- assert_equal(MIME::Types.of('gif'), MIME::Types['image/gif'])
87
- assert_nothing_raised do
88
- MIME::Types['image/gif'][0].system = RUBY_PLATFORM
89
- end
90
- assert_equal(MIME::Types.of('gif', true), MIME::Types['image/gif'])
91
- assert(MIME::Types.of('zzz').empty?)
92
- end
52
+ def _test_class_add_type_variant
53
+ raise NotImplementedError, 'Need to write test_class_add_type_variant'
54
+ end
93
55
 
94
- def _test_add
95
- raise NotImplementedError, 'Need to write test_add'
96
- end
56
+ def test_class_type_for
57
+ assert_equal(MIME::Types.type_for('xml').sort, [ MIME::Types['text/xml'], MIME::Types['application/xml'] ].sort)
58
+ assert_equal(MIME::Types.type_for('gif'), MIME::Types['image/gif'])
59
+ MIME::Types['image/gif'][0].system = RUBY_PLATFORM
60
+ assert_equal(MIME::Types.type_for('gif', true), MIME::Types['image/gif'])
61
+ assert(MIME::Types.type_for('zzz').empty?)
62
+ end
97
63
 
98
- def _test_add_type_variant
99
- raise NotImplementedError, 'Need to write test_add_type_variant'
100
- end
64
+ def test_class_of
65
+ assert_equal(MIME::Types.of('xml').sort, [ MIME::Types['text/xml'], MIME::Types['application/xml'] ].sort)
66
+ assert_equal(MIME::Types.of('gif'), MIME::Types['image/gif'])
67
+ MIME::Types['image/gif'][0].system = RUBY_PLATFORM
68
+ assert_equal(MIME::Types.of('gif', true), MIME::Types['image/gif'])
69
+ assert(MIME::Types.of('zzz').empty?)
70
+ end
101
71
 
102
- def _test_data_version
103
- raise NotImplementedError, 'Need to write test_data_version'
104
- end
72
+ def _test_add
73
+ raise NotImplementedError, 'Need to write test_add'
74
+ end
105
75
 
106
- def _test_index
107
- raise NotImplementedError, 'Need to write test_index'
108
- end
76
+ def _test_add_type_variant
77
+ raise NotImplementedError, 'Need to write test_add_type_variant'
78
+ end
109
79
 
110
- def _test_index_extensions
111
- raise NotImplementedError, 'Need to write test_index_extensions'
112
- end
80
+ def _test_data_version
81
+ raise NotImplementedError, 'Need to write test_data_version'
82
+ end
113
83
 
114
- def _test_of
115
- raise NotImplementedError, 'Need to write test_of'
116
- end
84
+ def _test_index
85
+ raise NotImplementedError, 'Need to write test_index'
86
+ end
117
87
 
118
- def _test_type_for
119
- raise NotImplementedError, 'Need to write test_type_for'
120
- end
88
+ def _test_index_extensions
89
+ raise NotImplementedError, 'Need to write test_index_extensions'
90
+ end
91
+
92
+ def _test_of
93
+ raise NotImplementedError, 'Need to write test_of'
94
+ end
95
+
96
+ def _test_type_for
97
+ raise NotImplementedError, 'Need to write test_type_for'
121
98
  end
122
99
  end
@@ -0,0 +1,951 @@
1
+ application/1d-interleaved-parityfec 'IANA,RFC6015
2
+ application/3gpp-ims+xml 'IANA,[Meredith]
3
+ application/activemessage 'IANA,[Shapiro]
4
+ application/andrew-inset 'IANA,[Borenstein]
5
+ application/applefile 'IANA,[Faltstrom]
6
+ application/atom+xml 'IANA,RFC4287,RFC5023
7
+ application/atomicmail 'IANA,[Borenstein]
8
+ application/atomcat+xml 'IANA,RFC5023
9
+ application/atomsvc+xml 'IANA,RFC5023
10
+ application/auth-policy+xml 'IANA,RFC4745
11
+ application/batch-SMTP 'IANA,RFC2442
12
+ application/beep+xml 'IANA,RFC3080
13
+ application/calendar+xml 'IANA,RFC6321
14
+ application/cals-1840 'IANA,RFC1895
15
+ application/ccmp+xml 'IANA,{RFC-ietf-xcon-ccmp-15.txt=http://http://tools.ietf.org/html/draft-ietf-xcon-ccmp}
16
+ application/ccxml+xml 'IANA,RFC4267
17
+ application/cdmi-capability 'IANA,RFC6208
18
+ application/cdmi-container 'IANA,RFC6208
19
+ application/cdmi-domain 'IANA,RFC6208
20
+ application/cdmi-object 'IANA,RFC6208
21
+ application/cdmi-queue 'IANA,RFC6208
22
+ application/cea-2018+xml 'IANA,[Zimmermann]
23
+ application/cellml+xml 'IANA,RFC4708
24
+ application/cfw 'IANA,RFC6230
25
+ application/cnrp+xml 'IANA,RFC3367
26
+ application/commonground 'IANA,[Glazer]
27
+ application/conference-info+xml 'IANA,RFC4575
28
+ application/cpl+xml 'IANA,RFC3880
29
+ application/csta+xml 'IANA,[Ecma International Helpdesk]
30
+ application/CSTAdata+xml 'IANA,[Ecma International Helpdesk]
31
+ application/cybercash 'IANA,[Eastlake]
32
+ application/davmount+xml 'IANA,RFC4709
33
+ application/dca-rft 'IANA,[Campbell]
34
+ application/dec-dx 'IANA,[Campbell]
35
+ application/dialog-info+xml 'IANA,RFC4235
36
+ application/dicom 'IANA,RFC3240
37
+ application/dns 'IANA,RFC4027
38
+ application/dskpp+xml 'IANA,RFC6063
39
+ application/dssc+der 'IANA,RFC5698
40
+ application/dssc+xml 'IANA,RFC5698
41
+ application/dvcs 'IANA,RFC3029
42
+ application/ecmascript 'IANA,RFC4329
43
+ application/EDI-Consent 'IANA,RFC1767
44
+ application/EDIFACT 'IANA,RFC1767
45
+ application/EDI-X12 'IANA,RFC1767
46
+ application/emma+xml 'IANA,[W3C]
47
+ application/epp+xml 'IANA,RFC5730
48
+ application/eshop 'IANA,[Katz]
49
+ application/example 'IANA,RFC4735
50
+ application/exi 'IANA,[W3C]
51
+ application/fastinfoset 'IANA,[ITU-T ASN.1 Rapporteur]
52
+ application/fastsoap 'IANA,[ITU-T ASN.1 Rapporteur]
53
+ application/fits 'IANA,RFC4047
54
+ application/font-tdpfr 'IANA,RFC3073
55
+ application/framework-attributes+xml 'IANA,RFC6230
56
+ application/H224 'IANA,RFC4573
57
+ application/held+xml 'IANA,RFC5985
58
+ application/http 'IANA,RFC2616
59
+ application/hyperstudio 'IANA,[Domino]
60
+ application/ibe-key-request+xml 'IANA,RFC5408
61
+ application/ibe-pkg-reply+xml 'IANA,RFC5408
62
+ application/ibe-pp-data 'IANA,RFC5408
63
+ application/iges 'IANA,[Parks]
64
+ application/im-iscomposing+xml 'IANA,RFC3994
65
+ application/index 'IANA,RFC2652
66
+ application/index.cmd 'IANA,RFC2652
67
+ application/index.obj 'IANA,RFC2652
68
+ application/index.response 'IANA,RFC2652
69
+ application/index.vnd 'IANA,RFC2652
70
+ application/inkml+xml 'IANA,[Ashimura]
71
+ application/iotp 'IANA,RFC2935
72
+ application/ipfix 'IANA,RFC5655
73
+ application/ipp 'IANA,RFC2910
74
+ application/isup 'IANA,RFC3204
75
+ application/javascript 'IANA,RFC4329
76
+ application/json 'IANA,RFC4627
77
+ application/kpml-request+xml 'IANA,RFC4730
78
+ application/kpml-response+xml 'IANA,RFC4730
79
+ application/lost+xml 'IANA,RFC5222
80
+ application/mac-binhex40 'IANA,[Faltstrom]
81
+ application/macwriteii 'IANA,[Lindner]
82
+ application/mads+xml 'IANA,RFC6207
83
+ application/marc 'IANA,RFC2220
84
+ application/marcxml+xml 'IANA,RFC6207
85
+ application/mathematica 'IANA,[Wolfram]
86
+ application/mathml-content+xml 'IANA,[W3C]
87
+ application/mathml-presentation+xml 'IANA,[W3C]
88
+ application/mathml+xml 'IANA,[W3C]
89
+ application/mbms-associated-procedure-description+xml 'IANA,[3GPP]
90
+ application/mbms-deregister+xml 'IANA,[3GPP]
91
+ application/mbms-envelope+xml 'IANA,[3GPP]
92
+ application/mbms-msk-response+xml 'IANA,[3GPP]
93
+ application/mbms-msk+xml 'IANA,[3GPP]
94
+ application/mbms-protection-description+xml 'IANA,[3GPP]
95
+ application/mbms-reception-report+xml 'IANA,[3GPP]
96
+ application/mbms-register-response+xml 'IANA,[3GPP]
97
+ application/mbms-register+xml 'IANA,[3GPP]
98
+ application/mbms-user-service-description+xml 'IANA,[3GPP]
99
+ application/mbox 'IANA,RFC4155
100
+ application/media_control+xml 'IANA,RFC5168
101
+ application/mediaservercontrol+xml 'IANA,RFC5022
102
+ application/metalink4+xml 'IANA,RFC5854
103
+ application/mets+xml 'IANA,RFC6207
104
+ application/mikey 'IANA,RFC3830
105
+ application/mods+xml 'IANA,RFC6207
106
+ application/moss-keys 'IANA,RFC1848
107
+ application/moss-signature 'IANA,RFC1848
108
+ application/mosskey-data 'IANA,RFC1848
109
+ application/mosskey-request 'IANA,RFC1848
110
+ application/mp21 'IANA,RFC6381,[Singer]
111
+ application/mp4 'IANA,RFC4337,RFC6381
112
+ application/mpeg4-generic 'IANA,RFC3640
113
+ application/mpeg4-iod 'IANA,RFC4337
114
+ application/mpeg4-iod-xmt 'IANA,RFC4337
115
+ application/msc-ivr+xml 'IANA,RFC6231
116
+ application/msc-mixer+xml 'IANA,{RFC-ietf-mediactrl-mixer-control-package-14=http://tools.ietf.org/html/draft-ietf-mediactrl-mixer-control-package}
117
+ application/msword 'IANA,[Lindner]
118
+ application/mxf 'IANA,RFC4539
119
+ application/nasdata 'IANA,RFC4707
120
+ application/news-checkgroups 'IANA,RFC5537
121
+ application/news-groupinfo 'IANA,RFC5537
122
+ application/news-transmission 'IANA,RFC5537
123
+ application/nss 'IANA,[Hammer]
124
+ application/ocsp-request 'IANA,RFC2560
125
+ application/ocsp-response 'IANA,RFC2560
126
+ application/octet-stream 'IANA,RFC2045,RFC2046
127
+ application/oda 'IANA,RFC2045,RFC2046
128
+ application/oebps-package+xml 'IANA,RFC4839
129
+ application/ogg 'IANA,RFC5334
130
+ application/oxps 'IANA,[Ecma International Helpdesk]
131
+ application/parityfec 'IANA,RFC5109
132
+ application/patch-ops-error+xml 'IANA,RFC5261
133
+ application/pdf 'IANA,RFC3778
134
+ application/pgp-encrypted 'IANA,RFC3156
135
+ application/pgp-keys 'IANA,RFC3156
136
+ application/pgp-signature 'IANA,RFC3156
137
+ application/pidf+xml 'IANA,RFC3863
138
+ application/pidf-diff+xml 'IANA,RFC5262
139
+ application/pkcs10 'IANA,RFC5967
140
+ application/pkcs7-mime 'IANA,RFC5751
141
+ application/pkcs7-signature 'IANA,RFC5751
142
+ application/pkcs8 'IANA,RFC5958
143
+ application/pkix-attr-cert 'IANA,RFC5877
144
+ application/pkix-cert 'IANA,RFC2585
145
+ application/pkixcmp 'IANA,RFC2510
146
+ application/pkix-crl 'IANA,RFC2585
147
+ application/pkix-pkipath 'IANA,RFC6066
148
+ application/pls+xml 'IANA,RFC4267
149
+ application/poc-settings+xml 'IANA,RFC4354
150
+ application/postscript 'IANA,RFC2045,RFC2046
151
+ application/prs.alvestrand.titrax-sheet 'IANA,[Alvestrand]
152
+ application/prs.cww 'IANA,[Rungchavalnont]
153
+ application/prs.nprend 'IANA,[Doggett]
154
+ application/prs.plucker 'IANA,[Janssen]
155
+ application/prs.rdf-xml-crypt 'IANA,[Inkster]
156
+ application/prs.xsf+xml 'IANA,[Stührenberg=Stuhrenberg]
157
+ application/pskc+xml 'IANA,RFC6030
158
+ application/rdf+xml 'IANA,RFC3870
159
+ application/qsig 'IANA,RFC3204
160
+ application/reginfo+xml 'IANA,RFC3680
161
+ application/relax-ng-compact-syntax 'IANA,{ISO/IEC 19757-2:2003/FDAM-1=http://www.jtc1sc34.org/repository/0661.pdf}
162
+ application/remote-printing 'IANA,RFC1486,[Rose]
163
+ application/resource-lists-diff+xml 'IANA,RFC5362
164
+ application/resource-lists+xml 'IANA,RFC4826
165
+ application/riscos 'IANA,[Smith]
166
+ application/rlmi+xml 'IANA,RFC4662
167
+ application/rls-services+xml 'IANA,RFC4826
168
+ application/rpki-manifest 'IANA,{RFC-ietf-sidr-repos-struct-09.txt=http://tools.ietf.org/html/draft-ietf-sidr-repos-struct}
169
+ application/rpki-roa 'IANA,{RFC-ietf-sidr-repos-struct-09.txt=http://tools.ietf.org/html/draft-ietf-sidr-repos-struct}
170
+ application/rpki-updown 'IANA,{RFC-ietf-sidr-rescerts-provisioning-11.txt=http://tools.ietf.org/html/draft-ietf-sidr-rescerts-provisioning}
171
+ application/rtf 'IANA,[Lindner]
172
+ application/rtx 'IANA,RFC4588
173
+ application/samlassertion+xml 'IANA,[OASIS Security Services Technical Committee (SSTC)]
174
+ application/samlmetadata+xml 'IANA,[OASIS Security Services Technical Committee (SSTC)]
175
+ application/sbml+xml 'IANA,RFC3823
176
+ application/scvp-cv-request 'IANA,RFC5055
177
+ application/scvp-cv-response 'IANA,RFC5055
178
+ application/scvp-vp-request 'IANA,RFC5055
179
+ application/scvp-vp-response 'IANA,RFC5055
180
+ application/sdp 'IANA,RFC4566
181
+ application/set-payment 'IANA,[Korver]
182
+ application/set-payment-initiation 'IANA,[Korver]
183
+ application/set-registration 'IANA,[Korver]
184
+ application/set-registration-initiation 'IANA,[Korver]
185
+ application/sgml 'IANA,RFC1874
186
+ application/sgml-open-catalog 'IANA,[Grosso]
187
+ application/shf+xml 'IANA,RFC4194
188
+ application/sieve 'IANA,RFC5228
189
+ application/simple-filter+xml 'IANA,RFC4661
190
+ application/simple-message-summary 'IANA,{RFC3842=http://www.rfc-editor.org/rfc/rfcxxxx.txt}
191
+ application/simpleSymbolContainer 'IANA,[3GPP]
192
+ application/slate 'IANA,[Crowley]
193
+ application/smil (OBSOLETE) 'IANA,RFC4536
194
+ application/smil+xml 'IANA,RFC4536
195
+ application/soap+fastinfoset 'IANA,[ITU-T ASN.1 Rapporteur]
196
+ application/soap+xml 'IANA,RFC3902
197
+ application/sparql-query 'IANA,[W3C]
198
+ application/sparql-results+xml 'IANA,[W3C]
199
+ application/spirits-event+xml 'IANA,RFC3910
200
+ application/srgs 'IANA,RFC4267
201
+ application/srgs+xml 'IANA,RFC4267
202
+ application/sru+xml 'IANA,RFC6207
203
+ application/ssml+xml 'IANA,RFC4267
204
+ application/tamp-apex-update 'IANA,RFC5934
205
+ application/tamp-apex-update-confirm 'IANA,RFC5934
206
+ application/tamp-community-update 'IANA,RFC5934
207
+ application/tamp-community-update-confirm 'IANA,RFC5934
208
+ application/tamp-error 'IANA,RFC5934
209
+ application/tamp-sequence-adjust 'IANA,RFC5934
210
+ application/tamp-sequence-adjust-confirm 'IANA,RFC5934
211
+ application/tamp-status-query 'IANA,RFC5934
212
+ application/tamp-status-response 'IANA,RFC5934
213
+ application/tamp-update 'IANA,RFC5934
214
+ application/tamp-update-confirm 'IANA,RFC5934
215
+ application/tei+xml 'IANA,RFC6129
216
+ application/thraud+xml 'IANA,RFC5941
217
+ application/timestamp-query 'IANA,RFC3161
218
+ application/timestamp-reply 'IANA,RFC3161
219
+ application/timestamped-data 'IANA,RFC5955
220
+ application/tve-trigger 'IANA,[Welsh]
221
+ application/ulpfec 'IANA,RFC5109
222
+ application/vcard+xml 'IANA,RFC6351
223
+ application/vemmi 'IANA,RFC2122
224
+ application/vnd.3gpp.bsf+xml 'IANA,[Meredith]
225
+ application/vnd.3gpp.pic-bw-large 'IANA,[Meredith]
226
+ application/vnd.3gpp.pic-bw-small 'IANA,[Meredith]
227
+ application/vnd.3gpp.pic-bw-var 'IANA,[Meredith]
228
+ application/vnd.3gpp.sms 'IANA,[Meredith]
229
+ application/vnd.3gpp2.bcmcsinfo+xml 'IANA,[Dryden]
230
+ application/vnd.3gpp2.sms 'IANA,[Mahendran]
231
+ application/vnd.3gpp2.tcap 'IANA,[Mahendran]
232
+ application/vnd.3M.Post-it-Notes 'IANA,[O'Brien]
233
+ application/vnd.accpac.simply.aso 'IANA,[Leow]
234
+ application/vnd.accpac.simply.imp 'IANA,[Leow]
235
+ application/vnd.acucobol 'IANA,[Lubin]
236
+ application/vnd.acucorp 'IANA,[Lubin]
237
+ application/vnd.adobe.fxp 'IANA,[Brambley],[Heintz]
238
+ application/vnd.adobe.partial-upload 'IANA,[Otala]
239
+ application/vnd.adobe.xdp+xml 'IANA,[Brinkman]
240
+ application/vnd.adobe.xfdf 'IANA,[Perelman]
241
+ application/vnd.aether.imp 'IANA,[Moskowitz]
242
+ application/vnd.ah-barcode 'IANA,[Ichinose]
243
+ application/vnd.ahead.space 'IANA,[Kristensen]
244
+ application/vnd.airzip.filesecure.azf 'IANA,[Mould],[Clueit]
245
+ application/vnd.airzip.filesecure.azs 'IANA,[Mould],[Clueit]
246
+ application/vnd.americandynamics.acc 'IANA,[Sands]
247
+ application/vnd.amiga.ami 'IANA,[Blumberg]
248
+ application/vnd.amundsen.maze+xml 'IANA,[Amundsen]
249
+ application/vnd.anser-web-certificate-issue-initiation 'IANA,[Mori]
250
+ application/vnd.antix.game-component 'IANA,[Shelton]
251
+ application/vnd.apple.mpegurl 'IANA,[Singer],[Pantos]
252
+ application/vnd.apple.installer+xml 'IANA,[Bierman]
253
+ application/vnd.arastra.swi (OBSOLETE) 'IANA,[Fenner]
254
+ application/vnd.aristanetworks.swi 'IANA,[Fenner]
255
+ application/vnd.astraea-software.iota 'IANA,[Snazell]
256
+ application/vnd.audiograph 'IANA,[Slusanschi]
257
+ application/vnd.autopackage 'IANA,[Hearn]
258
+ application/vnd.avistar+xml 'IANA,[Vysotsky]
259
+ application/vnd.blueice.multipass 'IANA,[Holmstrom]
260
+ application/vnd.bluetooth.ep.oob 'IANA,[Foley]
261
+ application/vnd.bmi 'IANA,[Gotoh]
262
+ application/vnd.businessobjects 'IANA,[Imoucha]
263
+ application/vnd.cab-jscript 'IANA,[Falkenberg]
264
+ application/vnd.canon-cpdl 'IANA,[Muto]
265
+ application/vnd.canon-lips 'IANA,[Muto]
266
+ application/vnd.cendio.thinlinc.clientconf 'IANA,[Åstrand=Astrand]
267
+ application/vnd.chemdraw+xml 'IANA,[Howes]
268
+ application/vnd.chipnuts.karaoke-mmd 'IANA,[Xiong]
269
+ application/vnd.cinderella 'IANA,[Kortenkamp]
270
+ application/vnd.cirpack.isdn-ext 'IANA,[Mayeux]
271
+ application/vnd.claymore 'IANA,[Simpson]
272
+ application/vnd.cloanto.rp9 'IANA,[Labatt]
273
+ application/vnd.clonk.c4group 'IANA,[Brammer]
274
+ application/vnd.cluetrust.cartomobile-config 'IANA,[Paulsen]
275
+ application/vnd.cluetrust.cartomobile-config-pkg 'IANA,[Paulsen]
276
+ application/vnd.collection+json 'IANA,[Amundsen]
277
+ application/vnd.commerce-battelle 'IANA,[Applebaum]
278
+ application/vnd.commonspace 'IANA,[Chandhok]
279
+ application/vnd.cosmocaller 'IANA,[Dellutri]
280
+ application/vnd.contact.cmsg 'IANA,[Patz]
281
+ application/vnd.crick.clicker 'IANA,[Burt]
282
+ application/vnd.crick.clicker.keyboard 'IANA,[Burt]
283
+ application/vnd.crick.clicker.palette 'IANA,[Burt]
284
+ application/vnd.crick.clicker.template 'IANA,[Burt]
285
+ application/vnd.crick.clicker.wordbank 'IANA,[Burt]
286
+ application/vnd.criticaltools.wbs+xml 'IANA,[Spiller]
287
+ application/vnd.ctc-posml 'IANA,[Kohlhepp]
288
+ application/vnd.ctct.ws+xml 'IANA,[Ancona]
289
+ application/vnd.cups-pdf 'IANA,[Sweet]
290
+ application/vnd.cups-postscript 'IANA,[Sweet]
291
+ application/vnd.cups-ppd 'IANA,[Sweet]
292
+ application/vnd.cups-raster 'IANA,[Sweet]
293
+ application/vnd.cups-raw 'IANA,[Sweet]
294
+ application/vnd.curl 'IANA,[Byrnes]
295
+ application/vnd.cybank 'IANA,[Helmee]
296
+ application/vnd.data-vision.rdz 'IANA,[Fields]
297
+ application/vnd.dece.data 'IANA,[Dolan]
298
+ application/vnd.dece.ttml+xml 'IANA,[Dolan]
299
+ application/vnd.dece.unspecified 'IANA,[Dolan]
300
+ application/vnd.dece.zip 'IANA,[Dolan]
301
+ application/vnd.denovo.fcselayout-link 'IANA,[Dixon]
302
+ application/vnd.dir-bi.plate-dl-nosuffix 'IANA,[Yamanaka]
303
+ application/vnd.dna 'IANA,[Searcy]
304
+ application/vnd.dolby.mobile.1 'IANA,[Hattersley]
305
+ application/vnd.dolby.mobile.2 'IANA,[Hattersley]
306
+ application/vnd.dpgraph 'IANA,[Parker]
307
+ application/vnd.dreamfactory 'IANA,[Appleton]
308
+ application/vnd.dvb.ait 'IANA,[Siebert],[Lagally]
309
+ application/vnd.dvb.dvbj 'IANA,[Siebert],[Lagally]
310
+ application/vnd.dvb.esgcontainer 'IANA,[Heuer]
311
+ application/vnd.dvb.ipdcdftnotifaccess 'IANA,[Yue]
312
+ application/vnd.dvb.ipdcesgaccess 'IANA,[Heuer]
313
+ application/vnd.dvb.ipdcesgaccess2 'IANA,[Marcon]
314
+ application/vnd.dvb.ipdcesgpdd 'IANA,[Marcon]
315
+ application/vnd.dvb.ipdcroaming 'IANA,[Xu]
316
+ application/vnd.dvb.iptv.alfec-base 'IANA,[Henry]
317
+ application/vnd.dvb.iptv.alfec-enhancement 'IANA,[Henry]
318
+ application/vnd.dvb.notif-aggregate-root+xml 'IANA,[Yue]
319
+ application/vnd.dvb.notif-container+xml 'IANA,[Yue]
320
+ application/vnd.dvb.notif-generic+xml 'IANA,[Yue]
321
+ application/vnd.dvb.notif-ia-msglist+xml 'IANA,[Yue]
322
+ application/vnd.dvb.notif-ia-registration-request+xml 'IANA,[Yue]
323
+ application/vnd.dvb.notif-ia-registration-response+xml 'IANA,[Yue]
324
+ application/vnd.dvb.notif-init+xml 'IANA,[Yue]
325
+ application/vnd.dvb.pfr 'IANA,[Siebert],[Lagally]
326
+ application/vnd.dvb.service 'IANA,[Siebert],[Lagally]
327
+ application/vnd.dxr 'IANA,[Duffy]
328
+ application/vnd.dynageo 'IANA,[Mechling]
329
+ application/vnd.easykaraoke.cdgdownload 'IANA,[Downs]
330
+ application/vnd.ecdis-update 'IANA,[Buettgenbach]
331
+ application/vnd.ecowin.chart 'IANA,[Olsson]
332
+ application/vnd.ecowin.filerequest 'IANA,[Olsson]
333
+ application/vnd.ecowin.fileupdate 'IANA,[Olsson]
334
+ application/vnd.ecowin.series 'IANA,[Olsson]
335
+ application/vnd.ecowin.seriesrequest 'IANA,[Olsson]
336
+ application/vnd.ecowin.seriesupdate 'IANA,[Olsson]
337
+ application/vnd.emclient.accessrequest+xml 'IANA,[Navara]
338
+ application/vnd.enliven 'IANA,[Santinelli]
339
+ application/vnd.eprints.data+xml 'IANA,[Brody]
340
+ application/vnd.epson.esf 'IANA,[Hoshina]
341
+ application/vnd.epson.msf 'IANA,[Hoshina]
342
+ application/vnd.epson.quickanime 'IANA,[Gu]
343
+ application/vnd.epson.salt 'IANA,[Nagatomo]
344
+ application/vnd.epson.ssf 'IANA,[Hoshina]
345
+ application/vnd.ericsson.quickcall 'IANA,[Tidwell]
346
+ application/vnd.eszigno3+xml 'IANA,[Tóth=Toth]
347
+ application/vnd.etsi.aoc+xml 'IANA,[Hu]
348
+ application/vnd.etsi.cug+xml 'IANA,[Hu]
349
+ application/vnd.etsi.iptvcommand+xml 'IANA,[Hu]
350
+ application/vnd.etsi.iptvdiscovery+xml 'IANA,[Hu]
351
+ application/vnd.etsi.iptvprofile+xml 'IANA,[Hu]
352
+ application/vnd.etsi.iptvsad-bc+xml 'IANA,[Hu]
353
+ application/vnd.etsi.iptvsad-cod+xml 'IANA,[Hu]
354
+ application/vnd.etsi.iptvsad-npvr+xml 'IANA,[Hu]
355
+ application/vnd.etsi.iptvservice+xml 'IANA,[Ortega]
356
+ application/vnd.etsi.iptvsync+xml 'IANA,[Ortega]
357
+ application/vnd.etsi.iptvueprofile+xml 'IANA,[Hu]
358
+ application/vnd.etsi.mcid+xml 'IANA,[Hu]
359
+ application/vnd.etsi.overload-control-policy-dataset+xml 'IANA,[Ortega]
360
+ application/vnd.etsi.sci+xml 'IANA,[Hu]
361
+ application/vnd.etsi.simservs+xml 'IANA,[Hu]
362
+ application/vnd.etsi.tsl+xml 'IANA,[Hu]
363
+ application/vnd.etsi.tsl.der 'IANA,[Hu]
364
+ application/vnd.eudora.data 'IANA,[Resnick]
365
+ application/vnd.ezpix-album 'IANA,[Electronic Zombie, Corp.]
366
+ application/vnd.ezpix-package 'IANA,[Electronic Zombie, Corp.=ElectronicZombieCorp]
367
+ application/vnd.f-secure.mobile 'IANA,[Sarivaara]
368
+ application/vnd.fdf 'IANA,[Zilles]
369
+ application/vnd.fdsn.mseed 'IANA,[Trabant]
370
+ application/vnd.fdsn.seed 'IANA,[Trabant]
371
+ application/vnd.ffsns 'IANA,[Holstage]
372
+ application/vnd.fints 'IANA,[Hammann]
373
+ application/vnd.FloGraphIt 'IANA,[Floersch]
374
+ application/vnd.fluxtime.clip 'IANA,[Winter]
375
+ application/vnd.font-fontforge-sfd 'IANA,[Williams]
376
+ application/vnd.framemaker 'IANA,[Wexler]
377
+ application/vnd.frogans.fnc 'IANA,[Tamas]
378
+ application/vnd.frogans.ltf 'IANA,[Tamas]
379
+ application/vnd.fsc.weblaunch 'IANA,[D.Smith]
380
+ application/vnd.fujitsu.oasys 'IANA,[Togashi]
381
+ application/vnd.fujitsu.oasys2 'IANA,[Togashi]
382
+ application/vnd.fujitsu.oasys3 'IANA,[Okudaira]
383
+ application/vnd.fujitsu.oasysgp 'IANA,[Sugimoto]
384
+ application/vnd.fujitsu.oasysprs 'IANA,[Ogita]
385
+ application/vnd.fujixerox.ART4 'IANA,[Tanabe]
386
+ application/vnd.fujixerox.ART-EX 'IANA,[Tanabe]
387
+ application/vnd.fujixerox.ddd 'IANA,[Onda]
388
+ application/vnd.fujixerox.docuworks 'IANA,[Taguchi]
389
+ application/vnd.fujixerox.docuworks.binder 'IANA,[Matsumoto]
390
+ application/vnd.fujixerox.HBPL 'IANA,[Tanabe]
391
+ application/vnd.fut-misnet 'IANA,[Pruulmann]
392
+ application/vnd.fuzzysheet 'IANA,[Birtwistle]
393
+ application/vnd.genomatix.tuxedo 'IANA,[Frey]
394
+ application/vnd.geocube+xml 'IANA,[Pirsch]
395
+ application/vnd.geogebra.file 'IANA,[GeoGebra],[Kreis]
396
+ application/vnd.geogebra.tool 'IANA,[GeoGebra],[Kreis]
397
+ application/vnd.geometry-explorer 'IANA,[Hvidsten]
398
+ application/vnd.geonext 'IANA,[Ehmann]
399
+ application/vnd.geoplan 'IANA,[Mercat]
400
+ application/vnd.geospace 'IANA,[Mercat]
401
+ application/vnd.globalplatform.card-content-mgt 'IANA,[Bernabeu]
402
+ application/vnd.globalplatform.card-content-mgt-response 'IANA,[Bernabeu]
403
+ application/vnd.gmx (OBSOLETE) 'IANA,[Sciberras]
404
+ application/vnd.google-earth.kml+xml 'IANA,[Ashbridge]
405
+ application/vnd.google-earth.kmz 'IANA,[Ashbridge]
406
+ application/vnd.grafeq 'IANA,[Tupper]
407
+ application/vnd.gridmp 'IANA,[Lawson]
408
+ application/vnd.groove-account 'IANA,[Joseph]
409
+ application/vnd.groove-help 'IANA,[Joseph]
410
+ application/vnd.groove-identity-message 'IANA,[Joseph]
411
+ application/vnd.groove-injector 'IANA,[Joseph]
412
+ application/vnd.groove-tool-message 'IANA,[Joseph]
413
+ application/vnd.groove-tool-template 'IANA,[Joseph]
414
+ application/vnd.groove-vcard 'IANA,[Joseph]
415
+ application/vnd.hal+json 'IANA,[Kelly]
416
+ application/vnd.hal+xml 'IANA,[Kelly]
417
+ application/vnd.HandHeld-Entertainment+xml 'IANA,[Hamilton]
418
+ application/vnd.hbci 'IANA,[Hammann]
419
+ application/vnd.hcl-bireports 'IANA,[Serres]
420
+ application/vnd.hhe.lesson-player 'IANA,[Jones]
421
+ application/vnd.hp-HPGL 'IANA,[Pentecost]
422
+ application/vnd.hp-hpid 'IANA,[Gupta]
423
+ application/vnd.hp-hps 'IANA,[Aubrey]
424
+ application/vnd.hp-jlyt 'IANA,[Gaash]
425
+ application/vnd.hp-PCL 'IANA,[Pentecost]
426
+ application/vnd.hp-PCLXL 'IANA,[Pentecost]
427
+ application/vnd.httphone 'IANA,[Lefevre]
428
+ application/vnd.hydrostatix.sof-data 'IANA,[Gillam]
429
+ application/vnd.hzn-3d-crossword 'IANA,[Minnis]
430
+ application/vnd.ibm.afplinedata 'IANA,[Buis]
431
+ application/vnd.ibm.electronic-media 'IANA,[Tantlinger]
432
+ application/vnd.ibm.MiniPay 'IANA,[Herzberg]
433
+ application/vnd.ibm.modcap 'IANA,[Hohensee]
434
+ application/vnd.ibm.rights-management 'IANA,[Tantlinger]
435
+ application/vnd.ibm.secure-container 'IANA,[Tantlinger]
436
+ application/vnd.iccprofile 'IANA,[Green]
437
+ application/vnd.igloader 'IANA,[Fisher]
438
+ application/vnd.immervision-ivp 'IANA,[Villegas]
439
+ application/vnd.immervision-ivu 'IANA,[Villegas]
440
+ application/vnd.informedcontrol.rms+xml 'IANA,[Wahl]
441
+ application/vnd.infotech.project 'IANA,[Engelke]
442
+ application/vnd.infotech.project+xml 'IANA,[Engelke]
443
+ application/vnd.informix-visionary 'IANA,[Gales]
444
+ application/vnd.insors.igm 'IANA,[Swanson]
445
+ application/vnd.intercon.formnet 'IANA,[Gurak]
446
+ application/vnd.intergeo 'IANA,[Kreis=Kreis2]
447
+ application/vnd.intertrust.digibox 'IANA,[Tomasello]
448
+ application/vnd.intertrust.nncp 'IANA,[Tomasello]
449
+ application/vnd.intu.qbo 'IANA,[Scratchley]
450
+ application/vnd.intu.qfx 'IANA,[Scratchley]
451
+ application/vnd.iptc.g2.conceptitem+xml 'IANA,[Steidl]
452
+ application/vnd.iptc.g2.knowledgeitem+xml 'IANA,[Steidl]
453
+ application/vnd.iptc.g2.newsitem+xml 'IANA,[Steidl]
454
+ application/vnd.iptc.g2.packageitem+xml 'IANA,[Steidl]
455
+ application/vnd.ipunplugged.rcprofile 'IANA,[Ersson]
456
+ application/vnd.irepository.package+xml 'IANA,[Knowles]
457
+ application/vnd.is-xpr 'IANA,[Natarajan]
458
+ application/vnd.isac.fcs 'IANA,[RBrinkman]
459
+ application/vnd.jam 'IANA,[B.Kumar]
460
+ application/vnd.japannet-directory-service 'IANA,[Fujii]
461
+ application/vnd.japannet-jpnstore-wakeup 'IANA,[Yoshitake]
462
+ application/vnd.japannet-payment-wakeup 'IANA,[Fujii]
463
+ application/vnd.japannet-registration 'IANA,[Yoshitake]
464
+ application/vnd.japannet-registration-wakeup 'IANA,[Fujii]
465
+ application/vnd.japannet-setstore-wakeup 'IANA,[Yoshitake]
466
+ application/vnd.japannet-verification 'IANA,[Yoshitake]
467
+ application/vnd.japannet-verification-wakeup 'IANA,[Fujii]
468
+ application/vnd.jcp.javame.midlet-rms 'IANA,[Gorshenev]
469
+ application/vnd.jisp 'IANA,[Deckers]
470
+ application/vnd.joost.joda-archive 'IANA,[Joost]
471
+ application/vnd.kahootz 'IANA,[Macdonald]
472
+ application/vnd.kde.karbon 'IANA,[Faure]
473
+ application/vnd.kde.kchart 'IANA,[Faure]
474
+ application/vnd.kde.kformula 'IANA,[Faure]
475
+ application/vnd.kde.kivio 'IANA,[Faure]
476
+ application/vnd.kde.kontour 'IANA,[Faure]
477
+ application/vnd.kde.kpresenter 'IANA,[Faure]
478
+ application/vnd.kde.kspread 'IANA,[Faure]
479
+ application/vnd.kde.kword 'IANA,[Faure]
480
+ application/vnd.kenameaapp 'IANA,[DiGiorgio-Haag]
481
+ application/vnd.kidspiration 'IANA,[Bennett]
482
+ application/vnd.Kinar 'IANA,[Thakkar]
483
+ application/vnd.koan 'IANA,[Cole]
484
+ application/vnd.kodak-descriptor 'IANA,[Donahue]
485
+ application/vnd.las.las+xml 'IANA,[Bailey=RBailey]
486
+ application/vnd.liberty-request+xml 'IANA,[McDowell]
487
+ application/vnd.llamagraphics.life-balance.desktop 'IANA,[White]
488
+ application/vnd.llamagraphics.life-balance.exchange+xml 'IANA,[White]
489
+ application/vnd.lotus-1-2-3 'IANA,[Wattenberger]
490
+ application/vnd.lotus-approach 'IANA,[Wattenberger]
491
+ application/vnd.lotus-freelance 'IANA,[Wattenberger]
492
+ application/vnd.lotus-notes 'IANA,[Laramie]
493
+ application/vnd.lotus-organizer 'IANA,[Wattenberger]
494
+ application/vnd.lotus-screencam 'IANA,[Wattenberger]
495
+ application/vnd.lotus-wordpro 'IANA,[Wattenberger]
496
+ application/vnd.macports.portpkg 'IANA,[Berry]
497
+ application/vnd.marlin.drm.actiontoken+xml 'IANA,[Ellison]
498
+ application/vnd.marlin.drm.conftoken+xml 'IANA,[Ellison]
499
+ application/vnd.marlin.drm.license+xml 'IANA,[Ellison]
500
+ application/vnd.marlin.drm.mdcf 'IANA,[Ellison]
501
+ application/vnd.mcd 'IANA,[Gotoh]
502
+ application/vnd.medcalcdata 'IANA,[Schoonjans]
503
+ application/vnd.mediastation.cdkey 'IANA,[Flurry]
504
+ application/vnd.meridian-slingshot 'IANA,[Wedel]
505
+ application/vnd.MFER 'IANA,[Hirai]
506
+ application/vnd.mfmp 'IANA,[Ikeda]
507
+ application/vnd.micrografx.flo 'IANA,[Prevo]
508
+ application/vnd.micrografx.igx 'IANA,[Prevo]
509
+ application/vnd.mif 'IANA,[Wexler]
510
+ application/vnd.minisoft-hp3000-save 'IANA,[Bartram]
511
+ application/vnd.mitsubishi.misty-guard.trustweb 'IANA,[Tanaka]
512
+ application/vnd.Mobius.DAF 'IANA,[Kabayama]
513
+ application/vnd.Mobius.DIS 'IANA,[Kabayama]
514
+ application/vnd.Mobius.MBK 'IANA,[Devasia]
515
+ application/vnd.Mobius.MQY 'IANA,[Devasia]
516
+ application/vnd.Mobius.MSL 'IANA,[Kabayama]
517
+ application/vnd.Mobius.PLC 'IANA,[Kabayama]
518
+ application/vnd.Mobius.TXF 'IANA,[Kabayama]
519
+ application/vnd.mophun.application 'IANA,[Wennerstrom]
520
+ application/vnd.mophun.certificate 'IANA,[Wennerstrom]
521
+ application/vnd.motorola.flexsuite 'IANA,[Patton]
522
+ application/vnd.motorola.flexsuite.adsi 'IANA,[Patton]
523
+ application/vnd.motorola.flexsuite.fis 'IANA,[Patton]
524
+ application/vnd.motorola.flexsuite.gotap 'IANA,[Patton]
525
+ application/vnd.motorola.flexsuite.kmr 'IANA,[Patton]
526
+ application/vnd.motorola.flexsuite.ttc 'IANA,[Patton]
527
+ application/vnd.motorola.flexsuite.wem 'IANA,[Patton]
528
+ application/vnd.motorola.iprm 'IANA,[Shamsaasef]
529
+ application/vnd.mozilla.xul+xml 'IANA,[McDaniel]
530
+ application/vnd.ms-artgalry 'IANA,[Slawson]
531
+ application/vnd.ms-asf 'IANA,[Fleischman]
532
+ application/vnd.ms-cab-compressed 'IANA,[Scarborough]
533
+ application/vnd.mseq 'IANA,[Le Bodic]
534
+ application/vnd.ms-excel 'IANA,[Gill]
535
+ application/vnd.ms-excel.addin.macroEnabled.12 'IANA,[Rae]
536
+ application/vnd.ms-excel.sheet.binary.macroEnabled.12 'IANA,[Rae]
537
+ application/vnd.ms-excel.sheet.macroEnabled.12 'IANA,[Rae]
538
+ application/vnd.ms-excel.template.macroEnabled.12 'IANA,[Rae]
539
+ application/vnd.ms-fontobject 'IANA,[Scarborough]
540
+ application/vnd.ms-htmlhelp 'IANA,[Techtonik]
541
+ application/vnd.ms-ims 'IANA,[Ledoux]
542
+ application/vnd.ms-lrm 'IANA,[Ledoux]
543
+ application/vnd.ms-office.activeX+xml 'IANA,[Rae]
544
+ application/vnd.ms-officetheme 'IANA,[Rae]
545
+ application/vnd.ms-playready.initiator+xml 'IANA,[Schneider]
546
+ application/vnd.ms-powerpoint 'IANA,[Gill]
547
+ application/vnd.ms-powerpoint.addin.macroEnabled.12 'IANA,[Rae]
548
+ application/vnd.ms-powerpoint.presentation.macroEnabled.12 'IANA,[Rae]
549
+ application/vnd.ms-powerpoint.slide.macroEnabled.12 'IANA,[Rae]
550
+ application/vnd.ms-powerpoint.slideshow.macroEnabled.12 'IANA,[Rae]
551
+ application/vnd.ms-powerpoint.template.macroEnabled.12 'IANA,[Rae]
552
+ application/vnd.ms-project 'IANA,[Gill]
553
+ application/vnd.ms-tnef 'IANA,[Gill]
554
+ application/vnd.ms-wmdrm.lic-chlg-req 'IANA,[Lau]
555
+ application/vnd.ms-wmdrm.lic-resp 'IANA,[Lau]
556
+ application/vnd.ms-wmdrm.meter-chlg-req 'IANA,[Lau]
557
+ application/vnd.ms-wmdrm.meter-resp 'IANA,[Lau]
558
+ application/vnd.ms-word.document.macroEnabled.12 'IANA,[Rae]
559
+ application/vnd.ms-word.template.macroEnabled.12 'IANA,[Rae]
560
+ application/vnd.ms-works 'IANA,[Gill]
561
+ application/vnd.ms-wpl 'IANA,[Plastina]
562
+ application/vnd.ms-xpsdocument 'IANA,[McGatha]
563
+ application/vnd.msign 'IANA,[Borcherding]
564
+ application/vnd.multiad.creator 'IANA,[Mills]
565
+ application/vnd.multiad.creator.cif 'IANA,[Mills]
566
+ application/vnd.musician 'IANA,[Adams]
567
+ application/vnd.music-niff 'IANA,[Butler]
568
+ application/vnd.muvee.style 'IANA,[Anantharamu]
569
+ application/vnd.mynfc 'IANA,[Lefevre]
570
+ application/vnd.ncd.control 'IANA,[Tarkkala]
571
+ application/vnd.ncd.reference 'IANA,[Tarkkala]
572
+ application/vnd.nervana 'IANA,[Judkins]
573
+ application/vnd.netfpx 'IANA,[Mutz]
574
+ application/vnd.neurolanguage.nlu 'IANA,[DuFeu]
575
+ application/vnd.noblenet-directory 'IANA,[Solomon]
576
+ application/vnd.noblenet-sealer 'IANA,[Solomon]
577
+ application/vnd.noblenet-web 'IANA,[Solomon]
578
+ application/vnd.nokia.catalogs 'IANA,[Nokia]
579
+ application/vnd.nokia.conml+wbxml 'IANA,[Nokia]
580
+ application/vnd.nokia.conml+xml 'IANA,[Nokia]
581
+ application/vnd.nokia.iptv.config+xml 'IANA,[Nokia]
582
+ application/vnd.nokia.iSDS-radio-presets 'IANA,[Nokia]
583
+ application/vnd.nokia.landmark+wbxml 'IANA,[Nokia]
584
+ application/vnd.nokia.landmark+xml 'IANA,[Nokia]
585
+ application/vnd.nokia.landmarkcollection+xml 'IANA,[Nokia]
586
+ application/vnd.nokia.ncd 'IANA,[Nokia]
587
+ application/vnd.nokia.n-gage.ac+xml 'IANA,[Nokia]
588
+ application/vnd.nokia.n-gage.data 'IANA,[Nokia]
589
+ application/vnd.nokia.n-gage.symbian.install 'IANA,[Nokia]
590
+ application/vnd.nokia.pcd+wbxml 'IANA,[Nokia]
591
+ application/vnd.nokia.pcd+xml 'IANA,[Nokia]
592
+ application/vnd.nokia.radio-preset 'IANA,[Nokia]
593
+ application/vnd.nokia.radio-presets 'IANA,[Nokia]
594
+ application/vnd.novadigm.EDM 'IANA,[Swenson]
595
+ application/vnd.novadigm.EDX 'IANA,[Swenson]
596
+ application/vnd.novadigm.EXT 'IANA,[Swenson]
597
+ application/vnd.ntt-local.file-transfer 'IANA,[NTT-local]
598
+ application/vnd.ntt-local.sip-ta_remote 'IANA,[NTT-local]
599
+ application/vnd.ntt-local.sip-ta_tcp_stream 'IANA,[NTT-local]
600
+ application/vnd.oasis.opendocument.chart 'IANA,[Schubert],[OASIS]
601
+ application/vnd.oasis.opendocument.chart-template 'IANA,[Schubert],[OASIS]
602
+ application/vnd.oasis.opendocument.database 'IANA,[Schubert],[OASIS]
603
+ application/vnd.oasis.opendocument.formula 'IANA,[Schubert],[OASIS]
604
+ application/vnd.oasis.opendocument.formula-template 'IANA,[Schubert],[OASIS]
605
+ application/vnd.oasis.opendocument.graphics 'IANA,[Schubert],[OASIS]
606
+ application/vnd.oasis.opendocument.graphics-template 'IANA,[Schubert],[OASIS]
607
+ application/vnd.oasis.opendocument.image 'IANA,[Schubert],[OASIS]
608
+ application/vnd.oasis.opendocument.image-template 'IANA,[Schubert],[OASIS]
609
+ application/vnd.oasis.opendocument.presentation 'IANA,[Schubert],[OASIS]
610
+ application/vnd.oasis.opendocument.presentation-template 'IANA,[Schubert],[OASIS]
611
+ application/vnd.oasis.opendocument.spreadsheet 'IANA,[Schubert],[OASIS]
612
+ application/vnd.oasis.opendocument.spreadsheet-template 'IANA,[Schubert],[OASIS]
613
+ application/vnd.oasis.opendocument.text 'IANA,[Schubert],[OASIS]
614
+ application/vnd.oasis.opendocument.text-master 'IANA,[Schubert],[OASIS]
615
+ application/vnd.oasis.opendocument.text-template 'IANA,[Schubert],[OASIS]
616
+ application/vnd.oasis.opendocument.text-web 'IANA,[Schubert],[OASIS]
617
+ application/vnd.obn 'IANA,[Hessling]
618
+ application/vnd.oftn.l10n+json 'IANA,[Grey]
619
+ application/vnd.oipf.contentaccessdownload+xml 'IANA,[D'Esclercs=DEsclercs]
620
+ application/vnd.oipf.contentaccessstreaming+xml 'IANA,[D'Esclercs=DEsclercs]
621
+ application/vnd.oipf.cspg-hexbinary 'IANA,[D'Esclercs=DEsclercs]
622
+ application/vnd.oipf.dae.svg+xml 'IANA,[D'Esclercs=DEsclercs]
623
+ application/vnd.oipf.dae.xhtml+xml 'IANA,[D'Esclercs=DEsclercs]
624
+ application/vnd.oipf.mippvcontrolmessage+xml 'IANA,[D'Esclercs=DEsclercs]
625
+ application/vnd.oipf.pae.gem 'IANA,[D'Esclercs=DEsclercs]
626
+ application/vnd.oipf.spdiscovery+xml 'IANA,[D'Esclercs=DEsclercs]
627
+ application/vnd.oipf.spdlist+xml 'IANA,[D'Esclercs=DEsclercs]
628
+ application/vnd.oipf.ueprofile+xml 'IANA,[D'Esclercs=DEsclercs]
629
+ application/vnd.oipf.userprofile+xml 'IANA,[D'Esclercs=DEsclercs]
630
+ application/vnd.olpc-sugar 'IANA,[Palmieri]
631
+ application/vnd.oma.bcast.associated-procedure-parameter+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
632
+ application/vnd.oma.bcast.drm-trigger+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
633
+ application/vnd.oma.bcast.imd+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
634
+ application/vnd.oma.bcast.ltkm 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
635
+ application/vnd.oma.bcast.notification+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
636
+ application/vnd.oma.bcast.provisioningtrigger 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
637
+ application/vnd.oma.bcast.sgboot 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
638
+ application/vnd.oma.bcast.sgdd+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
639
+ application/vnd.oma.bcast.sgdu 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
640
+ application/vnd.oma.bcast.simple-symbol-container 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
641
+ application/vnd.oma.bcast.smartcard-trigger+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
642
+ application/vnd.oma.bcast.sprov+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
643
+ application/vnd.oma.bcast.stkm 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
644
+ application/vnd.oma.cab-address-book+xml 'IANA,[Wang],[OMA]
645
+ application/vnd.oma.cab-pcc+xml 'IANA,[Wang],[OMA]
646
+ application/vnd.oma.dcd 'IANA,[Primo],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
647
+ application/vnd.oma.dcdc 'IANA,[Primo],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
648
+ application/vnd.oma.dd2+xml 'IANA,[Sato],[Open Mobile Alliance's BAC DLDRM Working Group]
649
+ application/vnd.oma.drm.risd+xml 'IANA,[Rauschenbach],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
650
+ application/vnd.oma.group-usage-list+xml 'IANA,[Kelley],[OMA Presence and Availability (PAG) Working Group]
651
+ application/vnd.oma.pal+xml 'IANA,[McColgan],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
652
+ application/vnd.oma.poc.detailed-progress-report+xml 'IANA,[OMA Push to Talk over Cellular (POC) Working Group]
653
+ application/vnd.oma.poc.final-report+xml 'IANA,[OMA Push to Talk over Cellular (POC) Working Group]
654
+ application/vnd.oma.poc.groups+xml 'IANA,[Kelley],[OMA Push to Talk over Cellular (POC) Working Group]
655
+ application/vnd.oma.poc.invocation-descriptor+xml 'IANA,[OMA Push to Talk over Cellular (POC) Working Group]
656
+ application/vnd.oma.poc.optimized-progress-report+xml 'IANA,[OMA Push to Talk over Cellular (POC) Working Group]
657
+ application/vnd.oma.push 'IANA,[Sullivan],[OMA]
658
+ application/vnd.oma.scidm.messages+xml 'IANA,[Zeng],[OMNA - Open Mobile Naming Authority=OMNA-OpenMobileNamingAuthority]
659
+ application/vnd.oma.xcap-directory+xml 'IANA,[Kelley],[OMA Presence and Availability (PAG) Working Group]
660
+ application/vnd.omads-email+xml 'IANA,[OMA Data Synchronization Working Group]
661
+ application/vnd.omads-file+xml 'IANA,[OMA Data Synchronization Working Group]
662
+ application/vnd.omads-folder+xml 'IANA,[OMA Data Synchronization Working Group]
663
+ application/vnd.omaloc-supl-init 'IANA,[Grange]
664
+ application/vnd.oma-scws-config 'IANA,[Mahalal]
665
+ application/vnd.oma-scws-http-request 'IANA,[Mahalal]
666
+ application/vnd.oma-scws-http-response 'IANA,[Mahalal]
667
+ application/vnd.openofficeorg.extension 'IANA,[Lingner]
668
+ application/vnd.openxmlformats-officedocument.custom-properties+xml 'IANA,[Murata]
669
+ application/vnd.openxmlformats-officedocument.customXmlProperties+xml 'IANA,[Murata]
670
+ application/vnd.openxmlformats-officedocument.drawing+xml 'IANA,[Murata]
671
+ application/vnd.openxmlformats-officedocument.drawingml.chart+xml 'IANA,[Murata]
672
+ application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml 'IANA,[Murata]
673
+ application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml 'IANA,[Murata]
674
+ application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml 'IANA,[Murata]
675
+ application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml 'IANA,[Murata]
676
+ application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml 'IANA,[Murata]
677
+ application/vnd.openxmlformats-officedocument.extended-properties+xml 'IANA,[Murata]
678
+ application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml 'IANA,[Murata]
679
+ application/vnd.openxmlformats-officedocument.presentationml.comments+xml 'IANA,[Murata]
680
+ application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml 'IANA,[Murata]
681
+ application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml 'IANA,[Murata]
682
+ application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml 'IANA,[Murata]
683
+ application/vnd.openxmlformats-officedocument.presentationml.presentation 'IANA,[Murata]
684
+ application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml 'IANA,[Murata]
685
+ application/vnd.openxmlformats-officedocument.presentationml.presProps+xml 'IANA,[Murata]
686
+ application/vnd.openxmlformats-officedocument.presentationml.slide 'IANA,[Murata]
687
+ application/vnd.openxmlformats-officedocument.presentationml.slide+xml 'IANA,[Murata]
688
+ application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml 'IANA,[Murata]
689
+ application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml 'IANA,[Murata]
690
+ application/vnd.openxmlformats-officedocument.presentationml.slideshow 'IANA,[Murata]
691
+ application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml 'IANA,[Murata]
692
+ application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml 'IANA,[Murata]
693
+ application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml 'IANA,[Murata]
694
+ application/vnd.openxmlformats-officedocument.presentationml.tags+xml 'IANA,[Murata]
695
+ application/vnd.openxmlformats-officedocument.presentationml.template 'IANA,[Murata]
696
+ application/vnd.openxmlformats-officedocument.presentationml.template.main+xml 'IANA,[Murata]
697
+ application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml 'IANA,[Murata]
698
+ application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml 'IANA,[Murata]
699
+ application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml 'IANA,[Murata]
700
+ application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml 'IANA,[Murata]
701
+ application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml 'IANA,[Murata]
702
+ application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml 'IANA,[Murata]
703
+ application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml 'IANA,[Murata]
704
+ application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml 'IANA,[Murata]
705
+ application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml 'IANA,[Murata]
706
+ application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml 'IANA,[Murata]
707
+ application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml 'IANA,[Murata]
708
+ application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml 'IANA,[Murata]
709
+ application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml 'IANA,[Murata]
710
+ application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml 'IANA,[Murata]
711
+ application/vnd.openxmlformats-officedocument.spreadsheetml.sheet 'IANA,[Murata]
712
+ application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml 'IANA,[Murata]
713
+ application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml 'IANA,[Murata]
714
+ application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml 'IANA,[Murata]
715
+ application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml 'IANA,[Murata]
716
+ application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml 'IANA,[Murata]
717
+ application/vnd.openxmlformats-officedocument.spreadsheetml.template 'IANA,[Murata]
718
+ application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml 'IANA,[Murata]
719
+ application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml 'IANA,[Murata]
720
+ application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml 'IANA,[Murata]
721
+ application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml 'IANA,[Murata]
722
+ application/vnd.openxmlformats-officedocument.theme+xml 'IANA,[Murata]
723
+ application/vnd.openxmlformats-officedocument.themeOverride+xml 'IANA,[Murata]
724
+ application/vnd.openxmlformats-officedocument.vmlDrawing 'IANA,[Murata]
725
+ application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml 'IANA,[Murata]
726
+ application/vnd.openxmlformats-officedocument.wordprocessingml.document 'IANA,[Murata]
727
+ application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml 'IANA,[Murata]
728
+ application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml 'IANA,[Murata]
729
+ application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml 'IANA,[Murata]
730
+ application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml 'IANA,[Murata]
731
+ application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml 'IANA,[Murata]
732
+ application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml 'IANA,[Murata]
733
+ application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml 'IANA,[Murata]
734
+ application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml 'IANA,[Murata]
735
+ application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml 'IANA,[Murata]
736
+ application/vnd.openxmlformats-officedocument.wordprocessingml.template 'IANA,[Murata]
737
+ application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml 'IANA,[Murata]
738
+ application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml 'IANA,[Murata]
739
+ application/vnd.openxmlformats-package.core-properties+xml 'IANA,[Murata]
740
+ application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml 'IANA,[Murata]
741
+ application/vnd.openxmlformats-package.relationships+xml 'IANA,[Murata]
742
+ application/vnd.osa.netdeploy 'IANA,[Klos]
743
+ application/vnd.osgeo.mapguide.package 'IANA,[Birch]
744
+ application/vnd.osgi.bundle 'IANA,[Kriens]
745
+ application/vnd.osgi.dp 'IANA,[Kriens]
746
+ application/vnd.otps.ct-kip+xml 'IANA,[Nyström=Nystrom]
747
+ application/vnd.palm 'IANA,[Peacock]
748
+ application/vnd.paos.xml 'IANA,[Kemp]
749
+ application/vnd.pawaafile 'IANA,[Baskaran]
750
+ application/vnd.pg.format 'IANA,[Gandert]
751
+ application/vnd.pg.osasli 'IANA,[Gandert]
752
+ application/vnd.piaccess.application-licence 'IANA,[Maneos]
753
+ application/vnd.picsel 'IANA,[Naccarato]
754
+ application/vnd.pmi.widget 'IANA,[Lewis]
755
+ application/vnd.poc.group-advertisement+xml 'IANA,[Kelley],[OMA Push to Talk over Cellular (POC) Working Group]
756
+ application/vnd.pocketlearn 'IANA,[Pando]
757
+ application/vnd.powerbuilder6 'IANA,[Guy]
758
+ application/vnd.powerbuilder6-s 'IANA,[Guy]
759
+ application/vnd.powerbuilder7 'IANA,[Shilts]
760
+ application/vnd.powerbuilder75 'IANA,[Shilts]
761
+ application/vnd.powerbuilder75-s 'IANA,[Shilts]
762
+ application/vnd.powerbuilder7-s 'IANA,[Shilts]
763
+ application/vnd.preminet 'IANA,[Tenhunen]
764
+ application/vnd.previewsystems.box 'IANA,[Smolgovsky]
765
+ application/vnd.proteus.magazine 'IANA,[Hoch]
766
+ application/vnd.publishare-delta-tree 'IANA,[Ben-Kiki]
767
+ application/vnd.pvi.ptid1 'IANA,[Lamb]
768
+ application/vnd.pwg-multiplexed 'IANA,RFC3391
769
+ application/vnd.pwg-xhtml-print+xml 'IANA,[Wright]
770
+ application/vnd.qualcomm.brew-app-res 'IANA,[Forrester]
771
+ application/vnd.Quark.QuarkXPress 'IANA,[Scheidler]
772
+ application/vnd.quobject-quoxdocument 'IANA,[Ludwig]
773
+ application/vnd.radisys.moml+xml 'IANA,RFC5707
774
+ application/vnd.radisys.msml-audit-conf+xml 'IANA,RFC5707
775
+ application/vnd.radisys.msml-audit-conn+xml 'IANA,RFC5707
776
+ application/vnd.radisys.msml-audit-dialog+xml 'IANA,RFC5707
777
+ application/vnd.radisys.msml-audit-stream+xml 'IANA,RFC5707
778
+ application/vnd.radisys.msml-audit+xml 'IANA,RFC5707
779
+ application/vnd.radisys.msml-conf+xml 'IANA,RFC5707
780
+ application/vnd.radisys.msml-dialog-base+xml 'IANA,RFC5707
781
+ application/vnd.radisys.msml-dialog-fax-detect+xml 'IANA,RFC5707
782
+ application/vnd.radisys.msml-dialog-fax-sendrecv+xml 'IANA,RFC5707
783
+ application/vnd.radisys.msml-dialog-group+xml 'IANA,RFC5707
784
+ application/vnd.radisys.msml-dialog-speech+xml 'IANA,RFC5707
785
+ application/vnd.radisys.msml-dialog-transform+xml 'IANA,RFC5707
786
+ application/vnd.radisys.msml-dialog+xml 'IANA,RFC5707
787
+ application/vnd.radisys.msml+xml 'IANA,RFC5707
788
+ application/vnd.rainstor.data 'IANA,[Crook]
789
+ application/vnd.rapid 'IANA,[Szekely]
790
+ application/vnd.realvnc.bed 'IANA,[Reeves]
791
+ application/vnd.recordare.musicxml 'IANA,[Good]
792
+ application/vnd.recordare.musicxml+xml 'IANA,[Good]
793
+ application/vnd.RenLearn.rlprint 'IANA,[Wick]
794
+ application/vnd.rig.cryptonote 'IANA,[Jibiki]
795
+ application/vnd.route66.link66+xml 'IANA,[Kikstra]
796
+ application/vnd.ruckus.download 'IANA,[Harris]
797
+ application/vnd.s3sms 'IANA,[Tarkkala]
798
+ application/vnd.sailingtracker.track 'IANA,[Vesalainen]
799
+ application/vnd.sbm.cid 'IANA,[Kusakari]
800
+ application/vnd.sbm.mid2 'IANA,[Murai]
801
+ application/vnd.scribus 'IANA,[Bradney]
802
+ application/vnd.sealed.3df 'IANA,[Kwan]
803
+ application/vnd.sealed.csf 'IANA,[Kwan]
804
+ application/vnd.sealed.doc 'IANA,[Petersen]
805
+ application/vnd.sealed.eml 'IANA,[Petersen]
806
+ application/vnd.sealed.mht 'IANA,[Petersen]
807
+ application/vnd.sealed.net 'IANA,[Lambert]
808
+ application/vnd.sealed.ppt 'IANA,[Petersen]
809
+ application/vnd.sealed.tiff 'IANA,[Kwan],[Lambert]
810
+ application/vnd.sealed.xls 'IANA,[Petersen]
811
+ application/vnd.sealedmedia.softseal.html 'IANA,[Petersen]
812
+ application/vnd.sealedmedia.softseal.pdf 'IANA,[Petersen]
813
+ application/vnd.seemail 'IANA,[Webb]
814
+ application/vnd.sema 'IANA,[Hansson]
815
+ application/vnd.semd 'IANA,[Hansson]
816
+ application/vnd.semf 'IANA,[Hansson]
817
+ application/vnd.shana.informed.formdata 'IANA,[Selzler]
818
+ application/vnd.shana.informed.formtemplate 'IANA,[Selzler]
819
+ application/vnd.shana.informed.interchange 'IANA,[Selzler]
820
+ application/vnd.shana.informed.package 'IANA,[Selzler]
821
+ application/vnd.SimTech-MindMapper 'IANA,[Koh]
822
+ application/vnd.smaf 'IANA,[Takahashi]
823
+ application/vnd.smart.notebook 'IANA,[Neitz]
824
+ application/vnd.smart.teacher 'IANA,[Boyle]
825
+ application/vnd.software602.filler.form+xml 'IANA,[Hytka],[Vondrous]
826
+ application/vnd.software602.filler.form-xml-zip 'IANA,[Hytka],[Vondrous]
827
+ application/vnd.solent.sdkm+xml 'IANA,[Gauntlett]
828
+ application/vnd.spotfire.dxp 'IANA,[Jernberg]
829
+ application/vnd.spotfire.sfs 'IANA,[Jernberg]
830
+ application/vnd.sss-cod 'IANA,[Dani]
831
+ application/vnd.sss-dtf 'IANA,[Bruno]
832
+ application/vnd.sss-ntf 'IANA,[Bruno]
833
+ application/vnd.stepmania.package 'IANA,[Andersson]
834
+ application/vnd.stepmania.stepchart 'IANA,[Andersson]
835
+ application/vnd.street-stream 'IANA,[Levitt]
836
+ application/vnd.sun.wadl+xml 'IANA,[Hadley]
837
+ application/vnd.sus-calendar 'IANA,[Niedfeldt]
838
+ application/vnd.svd 'IANA,[Becker]
839
+ application/vnd.swiftview-ics 'IANA,[Widener]
840
+ application/vnd.syncml.dm.notification 'IANA,[Thompson],[OMA-DM Work Group]
841
+ application/vnd.syncml.dm+wbxml 'IANA,[OMA-DM Work Group]
842
+ application/vnd.syncml.dm+xml 'IANA,[Rao],[OMA-DM Work Group]
843
+ application/vnd.syncml.ds.notification 'IANA,[OMA Data Synchronization Working Group]
844
+ application/vnd.syncml+xml 'IANA,[OMA Data Synchronization Working Group]
845
+ application/vnd.tao.intent-module-archive 'IANA,[Shelton]
846
+ application/vnd.tmobile-livetv 'IANA,[Helin]
847
+ application/vnd.trid.tpt 'IANA,[Cusack]
848
+ application/vnd.triscape.mxs 'IANA,[Simonoff]
849
+ application/vnd.trueapp 'IANA,[Hepler]
850
+ application/vnd.truedoc 'IANA,[Chase]
851
+ application/vnd.ubisoft.webplayer 'IANA,[Talbot]
852
+ application/vnd.ufdl 'IANA,[Manning]
853
+ application/vnd.uiq.theme 'IANA,[Ocock]
854
+ application/vnd.umajin 'IANA,[Riden]
855
+ application/vnd.unity 'IANA,[Unity3d]
856
+ application/vnd.uoml+xml 'IANA,[Gerdes]
857
+ application/vnd.uplanet.alert 'IANA,[Martin]
858
+ application/vnd.uplanet.alert-wbxml 'IANA,[Martin]
859
+ application/vnd.uplanet.bearer-choice 'IANA,[Martin]
860
+ application/vnd.uplanet.bearer-choice-wbxml 'IANA,[Martin]
861
+ application/vnd.uplanet.cacheop 'IANA,[Martin]
862
+ application/vnd.uplanet.cacheop-wbxml 'IANA,[Martin]
863
+ application/vnd.uplanet.channel 'IANA,[Martin]
864
+ application/vnd.uplanet.channel-wbxml 'IANA,[Martin]
865
+ application/vnd.uplanet.list 'IANA,[Martin]
866
+ application/vnd.uplanet.listcmd 'IANA,[Martin]
867
+ application/vnd.uplanet.listcmd-wbxml 'IANA,[Martin]
868
+ application/vnd.uplanet.list-wbxml 'IANA,[Martin]
869
+ application/vnd.uplanet.signal 'IANA,[Martin]
870
+ application/vnd.vcx 'IANA,[T.Sugimoto]
871
+ application/vnd.vd-study 'IANA,[Rogge]
872
+ application/vnd.vectorworks 'IANA,[Ferguson],[Sarkar]
873
+ application/vnd.verimatrix.vcas 'IANA,[Peterka]
874
+ application/vnd.vidsoft.vidconference 'IANA,[Hess]
875
+ application/vnd.visio 'IANA,[Sandal]
876
+ application/vnd.visionary 'IANA,[Aravindakumar]
877
+ application/vnd.vividence.scriptfile 'IANA,[Risher]
878
+ application/vnd.vsf 'IANA,[Rowe]
879
+ application/vnd.wap.sic 'IANA,[WAP-Forum]
880
+ application/vnd.wap.slc 'IANA,[WAP-Forum]
881
+ application/vnd.wap.wbxml 'IANA,[Stark]
882
+ application/vnd.wap.wmlc 'IANA,[Stark]
883
+ application/vnd.wap.wmlscriptc 'IANA,[Stark]
884
+ application/vnd.webturbo 'IANA,[Rehem]
885
+ application/vnd.wfa.wsc 'IANA,[Wi-Fi Alliance]
886
+ application/vnd.wmc 'IANA,[Kjørnes=Kjornes]
887
+ application/vnd.wmf.bootstrap 'IANA,[Nguyenphu],[Iyer]
888
+ application/vnd.wolfram.mathematica 'IANA,[Wolfram]
889
+ application/vnd.wolfram.mathematica.package 'IANA,[Wolfram]
890
+ application/vnd.wolfram.player 'IANA,[Wolfram]
891
+ application/vnd.wordperfect 'IANA,[Scarborough]
892
+ application/vnd.wqd 'IANA,[Bostrom]
893
+ application/vnd.wrq-hp3000-labelled 'IANA,[Bartram]
894
+ application/vnd.wt.stf 'IANA,[Wohler]
895
+ application/vnd.wv.csp+xml 'IANA,[Ingimundarson]
896
+ application/vnd.wv.csp+wbxml 'IANA,[Salmi]
897
+ application/vnd.wv.ssp+xml 'IANA,[Ingimundarson]
898
+ application/vnd.xara 'IANA,[Matthewman]
899
+ application/vnd.xfdl 'IANA,[Manning]
900
+ application/vnd.xfdl.webform 'IANA,[Mansell]
901
+ application/vnd.xmi+xml 'IANA,[Waskiewicz]
902
+ application/vnd.xmpie.cpkg 'IANA,[Sherwin]
903
+ application/vnd.xmpie.dpkg 'IANA,[Sherwin]
904
+ application/vnd.xmpie.plan 'IANA,[Sherwin]
905
+ application/vnd.xmpie.ppkg 'IANA,[Sherwin]
906
+ application/vnd.xmpie.xlim 'IANA,[Sherwin]
907
+ application/vnd.yamaha.hv-dic 'IANA,[Yamamoto]
908
+ application/vnd.yamaha.hv-script 'IANA,[Yamamoto]
909
+ application/vnd.yamaha.hv-voice 'IANA,[Yamamoto]
910
+ application/vnd.yamaha.openscoreformat.osfpvg+xml 'IANA,[Olleson]
911
+ application/vnd.yamaha.openscoreformat 'IANA,[Olleson]
912
+ application/vnd.yamaha.remote-setup 'IANA,[Sukizaki]
913
+ application/vnd.yamaha.smaf-audio 'IANA,[Shinoda]
914
+ application/vnd.yamaha.smaf-phrase 'IANA,[Shinoda]
915
+ application/vnd.yamaha.through-ngn 'IANA,[Sukizaki]
916
+ application/vnd.yamaha.tunnel-udpencap 'IANA,[Sukizaki]
917
+ application/vnd.yellowriver-custom-menu 'IANA,[Yellow]
918
+ application/vnd.zul 'IANA,[Grothmann]
919
+ application/vnd.zzazz.deck+xml 'IANA,[Hewett]
920
+ application/voicexml+xml 'IANA,RFC4267
921
+ application/vq-rtcpxr 'IANA,RFC6035
922
+ application/watcherinfo+xml 'IANA,RFC3858
923
+ application/whoispp-query 'IANA,RFC2957
924
+ application/whoispp-response 'IANA,RFC2958
925
+ application/widget 'IANA,[W3C],[Pemberton]
926
+ application/wita 'IANA,[Campbell]
927
+ application/wordperfect5.1 'IANA,[Lindner]
928
+ application/wsdl+xml 'IANA,[W3C]
929
+ application/wspolicy+xml 'IANA,[W3C]
930
+ application/x400-bp 'IANA,RFC1494
931
+ application/xcap-att+xml 'IANA,RFC4825
932
+ application/xcap-caps+xml 'IANA,RFC4825
933
+ application/xcap-diff+xml 'IANA,RFC5874
934
+ application/xcap-el+xml 'IANA,RFC4825
935
+ application/xcap-error+xml 'IANA,RFC4825
936
+ application/xcap-ns+xml 'IANA,RFC4825
937
+ application/xcon-conference-info-diff+xml 'IANA,{RFC-ietf-xcon-event-package-01.txt=http://tools.ietf.org/html/draft-ietf-xcon-event-package}
938
+ application/xcon-conference-info+xml 'IANA,{RFC-ietf-xcon-event-package-01.txt=http://tools.ietf.org/html/draft-ietf-xcon-event-package}
939
+ application/xenc+xml 'IANA,[Reagle],[XENC Working Group]
940
+ application/xhtml-voice+xml (Obsolete) 'IANA,{RFC-mccobb-xplusv-media-type-04.txt=https://datatracker.ietf.org/public/idindex.cgi?command=id_detail&filename=draft-mccobb-xplusv-media-type}
941
+ application/xhtml+xml 'IANA,RFC3236
942
+ application/xml 'IANA,RFC3023
943
+ application/xml-dtd 'IANA,RFC3023
944
+ application/xml-external-parsed-entity 'IANA,RFC3023
945
+ application/xmpp+xml 'IANA,RFC3923
946
+ application/xop+xml 'IANA,[Nottingham]
947
+ application/xslt+xml 'IANA,[W3C]
948
+ application/xv+xml 'IANA,RFC4374
949
+ application/yang 'IANA,RFC6020
950
+ application/yin+xml 'IANA,RFC6020
951
+ application/zip 'IANA,[Lindner]