mime-types-data 3.2015.1120

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.
@@ -0,0 +1,25 @@
1
+ ## Licence
2
+
3
+ * Copyright 2003–2015 Austin Ziegler.
4
+
5
+ The software in this repository is made available under the MIT license.
6
+
7
+ ### MIT License
8
+
9
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
10
+ this software and associated documentation files (the "Software"), to deal in
11
+ the Software without restriction, including without limitation the rights to
12
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
13
+ of the Software, and to permit persons to whom the Software is furnished to do
14
+ so, subject to the following conditions:
15
+
16
+ The above copyright notice and this permission notice shall be included in all
17
+ copies or substantial portions of the Software.
18
+
19
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
+ SOFTWARE.
@@ -0,0 +1,20 @@
1
+ .gitignore
2
+ .hoerc
3
+ Code-of-Conduct.md
4
+ Contributing.md
5
+ History.md
6
+ Licence.md
7
+ Manifest.txt
8
+ README.md
9
+ Rakefile
10
+ data/mime-types.json
11
+ data/mime.content_type.column
12
+ data/mime.docs.column
13
+ data/mime.encoding.column
14
+ data/mime.flags.column
15
+ data/mime.friendly.column
16
+ data/mime.pext.column
17
+ data/mime.use_instead.column
18
+ data/mime.xrefs.column
19
+ lib/mime-types-data.rb
20
+ lib/mime/types/data.rb
@@ -0,0 +1,61 @@
1
+ # mime-types-data
2
+
3
+ * home :: https://github.com/mime-types/mime-types-data/
4
+ * code :: https://github.com/mime-types/mime-types-data/
5
+ * issues :: https://github.com/mime-types/mime-types-data/issues
6
+
7
+ ## Description
8
+
9
+ mime-types-data provides a registry for information about MIME media type
10
+ definitions. It can be used with the Ruby mime-types library or other software
11
+ to determine defined filename extensions for MIME types, or to use filename
12
+ extensions to look up the likely MIME type definitions.
13
+
14
+ ### About MIME Media Types
15
+
16
+ MIME media types are used in MIME-compliant communications, as in e-mail or
17
+ HTTP traffic, to indicate the type of content which is transmitted. The
18
+ registry provided in mime-types-data contains detailed information about MIME
19
+ entities. There are many types defined by RFCs and vendors, so the list is long
20
+ but invariably; don't hesitate to offer additional type definitions for
21
+ consideration. MIME type definitions found in mime-types are from RFCs, W3C
22
+ recommendations, the [IANA Media Types registry][registry], and user
23
+ contributions. It conforms to RFCs 2045 and 2231.
24
+
25
+ ### Data Formats Supported in this Registry
26
+
27
+ This registry contains the MIME media types in three formats:
28
+
29
+ * A YAML format matching the Ruby mime-types library objects (MIME::Type).
30
+ This is the primary user-editable format.
31
+ * A JSON format converted from the YAML format. Prior to Ruby mime-types 3.0,
32
+ this was the main consumption format and is still recommended for any
33
+ implementation that does not wish to implement the columnar format.
34
+ * An encoded text format splitting the data for each MIME type across
35
+ multiple files. This columnar data format reduces the minimal data load
36
+ substantially, resulting in a performance improvement at the cost of more
37
+ complex code for loading the data on-demand. This is the default format for
38
+ Ruby mime-types 3.0.
39
+
40
+ ## mime-types-data Modified Semantic Versioning
41
+
42
+ mime-types-data uses a heavily modified [Semantic Versioning][] scheme to
43
+ indicate that the data formats compatibility based on a `SCHEMA` version and
44
+ the date of the data update: `SCHEMA.YEAR.MONTHDAY`.
45
+
46
+ 1. If an incompatible data format change is made to any of the supported
47
+ formts, `SCHEMA` will be incremented. The current `SCHEMA` is 3, supporting
48
+ the YAML, JSON, and columnar formats required for Ruby mime-types 3.0.
49
+
50
+ 2. When the data is updated, the `YEAR.MONTHDAY` combination will be updated.
51
+ An update on the last day of October 2015 would be written as `2015.1031`,
52
+ resulting in the full version of `3.2015.1031`.
53
+
54
+ 3. If multiple versions of the data need to be released on the same day due to
55
+ error, there will be an additional `REVISION` field incremented on the end
56
+ of the version. Thus, if three revisions need to be published on October
57
+ 31st, 2015, the last release would be `3.2015.1031.2` (remember that the
58
+ first release has an implied `0`.)
59
+
60
+ [registry]: https://www.iana.org/assignments/media-types/media-types.xhtml
61
+ [Semantic Versioning]: http://semver.org/
@@ -0,0 +1,77 @@
1
+ # -*- ruby encoding: utf-8 -*-
2
+
3
+ require 'rubygems'
4
+ require 'hoe'
5
+ require 'rake/clean'
6
+
7
+ Hoe.plugin :doofus
8
+ Hoe.plugin :gemspec2
9
+ Hoe.plugin :git
10
+ Hoe.plugin :travis
11
+ Hoe.plugin :email unless ENV['CI'] or ENV['TRAVIS']
12
+
13
+ Hoe.spec 'mime-types-data' do
14
+ developer('Austin Ziegler', 'halostatue@gmail.com')
15
+
16
+ require_ruby_version '>= 2.0'
17
+
18
+ self.history_file = 'History.md'
19
+ self.readme_file = 'README.md'
20
+ # self.extra_rdoc_files = FileList['*.rdoc'].to_a
21
+
22
+ license 'MIT'
23
+
24
+ extra_dev_deps << ['nokogiri', '~> 1.6']
25
+ extra_dev_deps << ['hoe-doofus', '~> 1.0']
26
+ extra_dev_deps << ['hoe-gemspec2', '~> 1.1']
27
+ extra_dev_deps << ['hoe-git', '~> 1.6']
28
+ extra_dev_deps << ['hoe-rubygems', '~> 1.0']
29
+ extra_dev_deps << ['rake', '~> 10.0']
30
+ extra_dev_deps << ['mime-types', '~> 3.0']
31
+ end
32
+
33
+ $LOAD_PATH.unshift 'lib'
34
+ $LOAD_PATH.unshift 'support'
35
+
36
+ namespace :mime do
37
+ desc 'Download the current MIME type registrations from IANA.'
38
+ task :iana, [ :destination ] do |_, args|
39
+ require 'iana_registry'
40
+ IANARegistry.download(to: args.destination)
41
+ end
42
+
43
+ desc 'Download the current MIME type configuration from Apache.'
44
+ task :apache, [ :destination ] do |_, args|
45
+ require 'apache_mime_types'
46
+ ApacheMIMETypes.download(to: args.destination)
47
+ end
48
+ end
49
+
50
+ namespace :convert do
51
+ namespace :yaml do
52
+ desc 'Convert from YAML to JSON'
53
+ task :json, [ :source, :destination, :multiple_files ] => :support do |_, args|
54
+ require 'convert'
55
+ Convert.from_yaml_to_json(args)
56
+ end
57
+
58
+ desc 'Convert from YAML to Columnar'
59
+ task :columnar, [ :source, :destination ] => :support do |_, args|
60
+ require 'convert/columnar'
61
+ Convert::Columnar.from_yaml_to_columnar(args)
62
+ end
63
+ end
64
+
65
+ namespace :json do
66
+ desc 'Convert from JSON to YAML'
67
+ task :yaml, [ :source, :destination, :multiple_files ] => :support do |_, args|
68
+ require 'convert'
69
+ Convert.from_json_to_yaml(args)
70
+ end
71
+ end
72
+ end
73
+
74
+ desc 'Default conversion from YAML to JSON and Columnar'
75
+ task convert: [ 'convert:yaml:json', 'convert:yaml:columnar' ]
76
+
77
+ # vim: syntax=ruby
@@ -0,0 +1 @@
1
+ [{"content-type":"application/1d-interleaved-parityfec","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d0d9068>","template":"#<Set:0x007fe00d0d8f28>"},"registered":true},{"content-type":"application/3gpdash-qoe-report+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d0d3780>","template":"#<Set:0x007fe00d0d3618>"},"registered":true},{"content-type":"application/3gpp-ims+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d0d2178>","template":"#<Set:0x007fe00d0d2038>"},"registered":true},{"content-type":"application/A2L","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d0d0aa8>","template":"#<Set:0x007fe00d0d0918>"},"registered":true},{"content-type":"application/acad","encoding":"base64","registered":false},{"content-type":"application/access","encoding":"base64","extensions":["mdf","mda","mdb","mde"],"obsolete":true,"use-instead":"application/x-msaccess","registered":false},{"content-type":"application/activemessage","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d0c8a88>","template":"#<Set:0x007fe00d0c8948>"},"registered":true},{"content-type":"application/alto-costmap+json","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d0c3470>","template":"#<Set:0x007fe00d0c3308>"},"registered":true},{"content-type":"application/alto-costmapfilter+json","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d0c1e40>","template":"#<Set:0x007fe00d0c1d00>"},"registered":true},{"content-type":"application/alto-directory+json","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d0c08d8>","template":"#<Set:0x007fe00d0c0770>"},"registered":true},{"content-type":"application/alto-endpointcost+json","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d0bae88>","template":"#<Set:0x007fe00d0bad20>"},"registered":true},{"content-type":"application/alto-endpointcostparams+json","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d0b9880>","template":"#<Set:0x007fe00d0b9718>"},"registered":true},{"content-type":"application/alto-endpointprop+json","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d0b8278>","template":"#<Set:0x007fe00d0b8110>"},"registered":true},{"content-type":"application/alto-endpointpropparams+json","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d0b2c88>","template":"#<Set:0x007fe00d0b2b48>"},"registered":true},{"content-type":"application/alto-error+json","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d0b1720>","template":"#<Set:0x007fe00d0b15e0>"},"registered":true},{"content-type":"application/alto-networkmap+json","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d0a9098>","template":"#<Set:0x007fe00d0a8f08>"},"registered":true},{"content-type":"application/alto-networkmapfilter+json","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d0a1578>","template":"#<Set:0x007fe00d09bfb0>"},"registered":true},{"content-type":"application/AML","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d09ab60>","template":"#<Set:0x007fe00d09a9d0>"},"registered":true},{"content-type":"application/andrew-inset","friendly":{"en":"Andrew Toolkit"},"encoding":"base64","extensions":["ez"],"xrefs":{"person":"#<Set:0x007fe00d098838>","template":"#<Set:0x007fe00d098680>"},"registered":true},{"content-type":"application/appledouble","encoding":"base64","registered":false},{"content-type":"application/applefile","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d091f10>","template":"#<Set:0x007fe00d091dd0>"},"registered":true},{"content-type":"application/applixware","friendly":{"en":"Applixware"},"encoding":"base64","extensions":["aw"],"registered":false},{"content-type":"application/ATF","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d089ae0>","template":"#<Set:0x007fe00d089978>"},"registered":true},{"content-type":"application/ATFX","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d088370>","template":"#<Set:0x007fe00d0881e0>"},"registered":true},{"content-type":"application/atom+xml","friendly":{"en":"Atom Syndication Format"},"encoding":"8bit","extensions":["atom"],"xrefs":{"rfc":"#<Set:0x007fe00d082678>","template":"#<Set:0x007fe00d0824e8>"},"registered":true},{"content-type":"application/atomcat+xml","friendly":{"en":"Atom Publishing Protocol"},"encoding":"8bit","extensions":["atomcat"],"xrefs":{"rfc":"#<Set:0x007fe00d080dc8>","template":"#<Set:0x007fe00d080c60>"},"registered":true},{"content-type":"application/atomdeleted+xml","encoding":"8bit","xrefs":{"rfc":"#<Set:0x007fe00d073678>","template":"#<Set:0x007fe00d073538>"},"registered":true},{"content-type":"application/atomicmail","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d071f80>","template":"#<Set:0x007fe00d071df0>"},"registered":true},{"content-type":"application/atomsvc+xml","friendly":{"en":"Atom Publishing Protocol Service Document"},"encoding":"8bit","extensions":["atomsvc"],"xrefs":{"rfc":"#<Set:0x007fe00d0704c8>","template":"#<Set:0x007fe00d070338>"},"registered":true},{"content-type":"application/ATXML","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d06acf8>","template":"#<Set:0x007fe00d06ab40>"},"registered":true},{"content-type":"application/auth-policy+xml","encoding":"8bit","xrefs":{"rfc":"#<Set:0x007fe00d0695b0>","template":"#<Set:0x007fe00d069420>"},"registered":true},{"content-type":"application/bacnet-xdd+zip","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cc63d58>","template":"#<Set:0x007fe00cc63bf0>"},"registered":true},{"content-type":"application/batch-SMTP","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cc62458>","template":"#<Set:0x007fe00cc621b0>"},"registered":true},{"content-type":"application/beep+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cc5bbd0>","template":"#<Set:0x007fe00cc5ba90>"},"registered":true},{"content-type":"application/bleeper","encoding":"base64","extensions":["bleep"],"obsolete":true,"use-instead":"application/x-bleeper","registered":false},{"content-type":"application/calendar+json","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cc592b8>","template":"#<Set:0x007fe00cc59178>"},"registered":true},{"content-type":"application/calendar+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cc53c00>","template":"#<Set:0x007fe00cc53ac0>"},"registered":true},{"content-type":"application/call-completion","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cc524e0>","template":"#<Set:0x007fe00cc52378>"},"registered":true},{"content-type":"application/cals-1840","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cc50d98>","template":"#<Set:0x007fe00cc50c58>"},"registered":true},{"content-type":"application/cals1840","encoding":"base64","obsolete":true,"use-instead":"application/cals-1840","registered":false},{"content-type":"application/cbor","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cc4a790>","template":"#<Set:0x007fe00cc4a650>"},"registered":true},{"content-type":"application/ccmp+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cc487b0>","template":"#<Set:0x007fe00cc48620>"},"registered":true},{"content-type":"application/ccxml+xml","friendly":{"en":"Voice Browser Call Control"},"encoding":"base64","extensions":["ccxml"],"xrefs":{"rfc":"#<Set:0x007fe00cc42cc0>","template":"#<Set:0x007fe00cc42b80>"},"registered":true},{"content-type":"application/CDFX+XML","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cc416b8>","template":"#<Set:0x007fe00cc41550>"},"registered":true},{"content-type":"application/cdmi-capability","friendly":{"en":"Cloud Data Management Interface (CDMI) - Capability"},"encoding":"base64","extensions":["cdmia"],"xrefs":{"rfc":"#<Set:0x007fe00cc3bda8>","template":"#<Set:0x007fe00cc3bc18>"},"registered":true},{"content-type":"application/cdmi-container","friendly":{"en":"Cloud Data Management Interface (CDMI) - Contaimer"},"encoding":"base64","extensions":["cdmic"],"xrefs":{"rfc":"#<Set:0x007fe00cc3a4f8>","template":"#<Set:0x007fe00cc3a390>"},"registered":true},{"content-type":"application/cdmi-domain","friendly":{"en":"Cloud Data Management Interface (CDMI) - Domain"},"encoding":"base64","extensions":["cdmid"],"xrefs":{"rfc":"#<Set:0x007fe00cc38b08>","template":"#<Set:0x007fe00cc38720>"},"registered":true},{"content-type":"application/cdmi-object","friendly":{"en":"Cloud Data Management Interface (CDMI) - Object"},"encoding":"base64","extensions":["cdmio"],"xrefs":{"rfc":"#<Set:0x007fe00cc32b40>","template":"#<Set:0x007fe00cc32a00>"},"registered":true},{"content-type":"application/cdmi-queue","friendly":{"en":"Cloud Data Management Interface (CDMI) - Queue"},"encoding":"base64","extensions":["cdmiq"],"xrefs":{"rfc":"#<Set:0x007fe00cc311f0>","template":"#<Set:0x007fe00cc310b0>"},"registered":true},{"content-type":"application/cdni","encoding":"base64","xrefs":{"draft":"#<Set:0x007fe00cc2ba20>","template":"#<Set:0x007fe00cc2b908>"},"registered":true},{"content-type":"application/CEA","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cc2a4e0>","template":"#<Set:0x007fe00cc2a350>"},"registered":true},{"content-type":"application/cea-2018+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cc28f28>","template":"#<Set:0x007fe00cc28de8>"},"registered":true},{"content-type":"application/cellml+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cc23348>","template":"#<Set:0x007fe00cc23208>"},"registered":true},{"content-type":"application/cfw","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cc21bd8>","template":"#<Set:0x007fe00cc21a98>"},"registered":true},{"content-type":"application/clariscad","encoding":"base64","registered":false},{"content-type":"application/cms","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cc1b7b0>","template":"#<Set:0x007fe00cc1b5f8>"},"registered":true},{"content-type":"application/cnrp+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cc1a0e0>","template":"#<Set:0x007fe00cc19f78>"},"registered":true},{"content-type":"application/coap-group+json","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cc18a60>","template":"#<Set:0x007fe00cc18920>"},"registered":true},{"content-type":"application/commonground","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cc130d8>","template":"#<Set:0x007fe00cc12f98>"},"registered":true},{"content-type":"application/conference-info+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cc11b20>","template":"#<Set:0x007fe00cc119e0>"},"registered":true},{"content-type":"application/cpl+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cc10518>","template":"#<Set:0x007fe00cc103b0>"},"registered":true},{"content-type":"application/csrattrs","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cc0ae10>","template":"#<Set:0x007fe00cc0acd0>"},"registered":true},{"content-type":"application/csta+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cc09790>","template":"#<Set:0x007fe00cc09650>"},"registered":true},{"content-type":"application/CSTAdata+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cc08250>","template":"#<Set:0x007fe00cc080e8>"},"registered":true},{"content-type":"application/csvm+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cc02a58>","template":"#<Set:0x007fe00cc028f0>"},"registered":true},{"content-type":"application/cu-seeme","friendly":{"en":"CU-SeeMe"},"encoding":"base64","extensions":["cu"],"registered":false},{"content-type":"application/cybercash","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cc00078>","template":"#<Set:0x007fe00cbfbf00>"},"registered":true},{"content-type":"application/dash+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cbf8968>","template":"#<Set:0x007fe00cbf8800>"},"registered":true},{"content-type":"application/dashdelta","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cbf2fe0>","template":"#<Set:0x007fe00cbf2ea0>"},"registered":true},{"content-type":"application/davmount+xml","friendly":{"en":"Web Distributed Authoring and Versioning"},"encoding":"base64","extensions":["davmount"],"xrefs":{"rfc":"#<Set:0x007fe00cbf17d0>","template":"#<Set:0x007fe00cbf1690>"},"registered":true},{"content-type":"application/dca-rft","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cbf0178>","template":"#<Set:0x007fe00cbf0038>"},"registered":true},{"content-type":"application/DCD","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cbeaa98>","template":"#<Set:0x007fe00cbea930>"},"registered":true},{"content-type":"application/dec-dx","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cbe9490>","template":"#<Set:0x007fe00cbe9350>"},"registered":true},{"content-type":"application/dialog-info+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cbe3e28>","template":"#<Set:0x007fe00cbe3cc0>"},"registered":true},{"content-type":"application/dicom","encoding":"base64","extensions":["dcm"],"xrefs":{"rfc":"#<Set:0x007fe00cbe25f0>","template":"#<Set:0x007fe00cbe2488>"},"registered":true},{"content-type":"application/DII","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cbe1010>","template":"#<Set:0x007fe00cbe0d18>"},"registered":true},{"content-type":"application/DIT","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cbdb200>","template":"#<Set:0x007fe00cbdb070>"},"registered":true},{"content-type":"application/dns","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cbd9b58>","template":"#<Set:0x007fe00cbd9a18>"},"registered":true},{"content-type":"application/docbook+xml","encoding":"base64","extensions":["dbk"],"registered":false},{"content-type":"application/drafting","encoding":"base64","registered":false},{"content-type":"application/dskpp+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cbd2150>","template":"#<Set:0x007fe00cbd2010>"},"registered":true},{"content-type":"application/dssc+der","friendly":{"en":"Data Structure for the Security Suitability of Cryptographic Algorithms"},"encoding":"base64","extensions":["dssc"],"xrefs":{"rfc":"#<Set:0x007fe00cbd07d8>","template":"#<Set:0x007fe00cbd0670>"},"registered":true},{"content-type":"application/dssc+xml","friendly":{"en":"Data Structure for the Security Suitability of Cryptographic Algorithms"},"encoding":"base64","extensions":["xdssc"],"xrefs":{"rfc":"#<Set:0x007fe00cbcacc0>","template":"#<Set:0x007fe00cbcab80>"},"registered":true},{"content-type":"application/dvcs","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cbc95a0>","template":"#<Set:0x007fe00cbc9460>"},"registered":true},{"content-type":"application/dxf","encoding":"base64","registered":false},{"content-type":"application/ecmascript","friendly":{"en":"ECMAScript"},"encoding":"base64","extensions":["ecma"],"xrefs":{"rfc":"#<Set:0x007fe00cbc1e90>","template":"#<Set:0x007fe00cbc1d00>"},"registered":true},{"content-type":"application/EDI-consent","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cbc05b8>","template":"#<Set:0x007fe00cbc0450>"},"registered":true},{"content-type":"application/EDI-X12","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00caa2a28>","template":"#<Set:0x007fe00caa2578>"},"registered":true},{"content-type":"application/EDIFACT","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00caa0908>","template":"#<Set:0x007fe00caa07c8>"},"registered":true},{"content-type":"application/emma+xml","friendly":{"en":"Extensible MultiModal Annotation"},"encoding":"base64","extensions":["emma"],"xrefs":{"person":"#<Set:0x007fe00c160208>","uri":"#<Set:0x007fe00c15bf28>"},"registered":true},{"content-type":"application/emotionml+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c15a3f8>","template":"#<Set:0x007fe00c15a218>"},"registered":true},{"content-type":"application/encaprtp","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c158738>","template":"#<Set:0x007fe00c158508>"},"registered":true},{"content-type":"application/epp+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cb3a8f0>","template":"#<Set:0x007fe00cb3a710>"},"registered":true},{"content-type":"application/epub+zip","friendly":{"en":"Electronic Publication"},"encoding":"base64","extensions":["epub"],"xrefs":{"person":"#<Set:0x007fe00cb38230>","template":"#<Set:0x007fe00cb23c40>"},"registered":true},{"content-type":"application/eshop","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cb22138>","template":"#<Set:0x007fe00cb21fa8>"},"registered":true},{"content-type":"application/example","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cb20798>","template":"#<Set:0x007fe00cb205e0>"},"registered":true},{"content-type":"application/excel","encoding":"base64","extensions":["xls","xlt"],"obsolete":true,"use-instead":"application/vnd.ms-excel","registered":false},{"content-type":"application/exi","friendly":{"en":"Efficient XML Interchange"},"encoding":"base64","extensions":["exi"],"xrefs":{"person":"#<Set:0x007fe00b9eb630>","uri":"#<Set:0x007fe00b9eb450>"},"registered":true},{"content-type":"application/fastinfoset","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00b9e9240>","template":"#<Set:0x007fe00b9e9060>"},"registered":true},{"content-type":"application/fastsoap","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00b9b31e0>","template":"#<Set:0x007fe00b9b2f60>"},"registered":true},{"content-type":"application/fdt+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00b9b1390>","template":"#<Set:0x007fe00b9b1160>"},"registered":true},{"content-type":"application/fits","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00b99ad70>","template":"#<Set:0x007fe00b99ab40>"},"registered":true},{"content-type":"application/font-sfnt","encoding":"base64","extensions":["otf","ttf"],"xrefs":{"person":"#<Set:0x007fe00b998a48>","template":"#<Set:0x007fe00b998890>"},"registered":true},{"content-type":"application/font-tdpfr","friendly":{"en":"Portable Font Resource"},"encoding":"base64","extensions":["pfr"],"xrefs":{"rfc":"#<Set:0x007fe00c1c1850>","template":"#<Set:0x007fe00c1c16c0>"},"registered":true},{"content-type":"application/font-woff","friendly":{"en":"Web Open Font Format"},"encoding":"base64","extensions":["woff","woff2"],"xrefs":{"person":"#<Set:0x007fe00c1b2f80>","template":"#<Set:0x007fe00c1b2d28>"},"registered":true},{"content-type":"application/fractals","encoding":"base64","registered":false},{"content-type":"application/framework-attributes+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c179d70>","template":"#<Set:0x007fe00c179be0>"},"registered":true},{"content-type":"application/futuresplash","encoding":"base64","extensions":["spl"],"obsolete":true,"use-instead":"application/x-futuresplash","registered":false},{"content-type":"application/ghostview","encoding":"base64","obsolete":true,"use-instead":"application/x-ghostview","registered":false},{"content-type":"application/gml+xml","encoding":"base64","extensions":["gml"],"registered":false},{"content-type":"application/gpx+xml","encoding":"base64","extensions":["gpx"],"registered":false},{"content-type":"application/gxf","encoding":"base64","extensions":["gxf"],"registered":false},{"content-type":"application/gzip","encoding":"base64","extensions":["gz"],"xrefs":{"rfc":"#<Set:0x007fe00c105c90>","template":"#<Set:0x007fe00c1059e8>"},"registered":true},{"content-type":"application/H224","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00ca22f08>","template":"#<Set:0x007fe00ca22a80>"},"registered":true},{"content-type":"application/held+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00ca20140>","template":"#<Set:0x007fe00c9f3f00>"},"registered":true},{"content-type":"application/hep","encoding":"base64","extensions":["hep"],"obsolete":true,"use-instead":"application/x-hep","registered":false},{"content-type":"application/http","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c9f0fd0>","template":"#<Set:0x007fe00c9f0dc8>"},"registered":true},{"content-type":"application/hyperstudio","friendly":{"en":"Hyperstudio"},"encoding":"base64","extensions":["stk"],"xrefs":{"person":"#<Set:0x007fe00cbb3138>","template":"#<Set:0x007fe00cbb2e90>"},"registered":true},{"content-type":"application/i-deas","encoding":"base64","registered":false},{"content-type":"application/ibe-key-request+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cba28d8>","template":"#<Set:0x007fe00cba2770>"},"registered":true},{"content-type":"application/ibe-pkg-reply+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cb93540>","template":"#<Set:0x007fe00cb93220>"},"registered":true},{"content-type":"application/ibe-pp-data","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cb91420>","template":"#<Set:0x007fe00cb91240>"},"registered":true},{"content-type":"application/iges","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cb8a8f0>","template":"#<Set:0x007fe00cb8a738>"},"registered":true},{"content-type":"application/im-iscomposing+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cb83550>","template":"#<Set:0x007fe00cb83230>"},"registered":true},{"content-type":"application/imagemap","encoding":"8bit","extensions":["imagemap","imap"],"obsolete":true,"use-instead":"application/x-imagemap","registered":false},{"content-type":"application/index","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cb7b5f8>","template":"#<Set:0x007fe00cb7b2d8>"},"registered":true},{"content-type":"application/index.cmd","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cb78830>","template":"#<Set:0x007fe00cb78628>"},"registered":true},{"content-type":"application/index.obj","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cb70748>","template":"#<Set:0x007fe00cb70130>"},"registered":true},{"content-type":"application/index.response","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cb6a460>","template":"#<Set:0x007fe00cb6a280>"},"registered":true},{"content-type":"application/index.vnd","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cb62300>","template":"#<Set:0x007fe00cb62120>"},"registered":true},{"content-type":"application/inkml+xml","encoding":"base64","extensions":["ink","inkml"],"xrefs":{"person":"#<Set:0x007fe00cb5ad58>","template":"#<Set:0x007fe00cb5ab50>"},"registered":true},{"content-type":"application/iotp","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cb52388>","template":"#<Set:0x007fe00cb52090>"},"registered":true},{"content-type":"application/ipfix","friendly":{"en":"Internet Protocol Flow Information Export"},"encoding":"base64","extensions":["ipfix"],"xrefs":{"rfc":"#<Set:0x007fe00cb498f0>","template":"#<Set:0x007fe00cb49490>"},"registered":true},{"content-type":"application/ipp","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cb42000>","template":"#<Set:0x007fe00cb41dd0>"},"registered":true},{"content-type":"application/isup","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cb31930>","template":"#<Set:0x007fe00cb312f0>"},"registered":true},{"content-type":"application/its+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cb2a3b0>","template":"#<Set:0x007fe00cb29ff0>"},"registered":true},{"content-type":"application/java-archive","friendly":{"en":"Java Archive"},"encoding":"base64","extensions":["jar"],"registered":false},{"content-type":"application/java-serialized-object","friendly":{"en":"Java Serialized Object"},"encoding":"base64","extensions":["ser"],"registered":false},{"content-type":"application/java-vm","friendly":{"en":"Java Bytecode File"},"encoding":"base64","extensions":["class"],"registered":false},{"content-type":"application/javascript","friendly":{"en":"JavaScript"},"encoding":"8bit","extensions":["js","sj"],"xrefs":{"rfc":"#<Set:0x007fe00cb10398>","template":"#<Set:0x007fe00cb101e0>"},"registered":true},{"content-type":"application/jose","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cb09980>","template":"#<Set:0x007fe00cb09570>"},"registered":true},{"content-type":"application/jose+json","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cb01460>","template":"#<Set:0x007fe00cb009c0>"},"registered":true},{"content-type":"application/jrd+json","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00caf9940>","template":"#<Set:0x007fe00caf9738>"},"registered":true},{"content-type":"application/json","friendly":{"en":"JavaScript Object Notation (JSON)"},"encoding":"8bit","extensions":["json"],"xrefs":{"rfc":"#<Set:0x007fe00caebc50>","template":"#<Set:0x007fe00caeb7c8>"},"registered":true},{"content-type":"application/json-patch+json","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cae8be0>","template":"#<Set:0x007fe00cae89d8>"},"registered":true},{"content-type":"application/json-seq","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cadbc60>","template":"#<Set:0x007fe00cadba58>"},"registered":true},{"content-type":"application/jsonml+json","encoding":"base64","extensions":["jsonml"],"registered":false},{"content-type":"application/jwk+json","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cad3038>","template":"#<Set:0x007fe00cad2db8>"},"registered":true},{"content-type":"application/jwk-set+json","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cacaca8>","template":"#<Set:0x007fe00cacaaa0>"},"registered":true},{"content-type":"application/jwt","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cac8a48>","template":"#<Set:0x007fe00cac88e0>"},"registered":true},{"content-type":"application/kpml-request+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cac2b20>","template":"#<Set:0x007fe00cac2940>"},"registered":true},{"content-type":"application/kpml-response+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cac0230>","template":"#<Set:0x007fe00cab3f58>"},"registered":true},{"content-type":"application/ld+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cab1938>","template":"#<Set:0x007fe00cab1488>"},"registered":true},{"content-type":"application/link-format","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00caa8db0>","template":"#<Set:0x007fe00caa89a0>"},"registered":true},{"content-type":"application/load-control+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00ca98140>","template":"#<Set:0x007fe00ca93be0>"},"registered":true},{"content-type":"application/lost+xml","encoding":"base64","extensions":["lostxml"],"xrefs":{"rfc":"#<Set:0x007fe00ca910e8>","template":"#<Set:0x007fe00ca90f08>"},"registered":true},{"content-type":"application/lostsync+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00ca8a8d8>","template":"#<Set:0x007fe00ca8a6a8>"},"registered":true},{"content-type":"application/lotus-123","encoding":"base64","extensions":["wks"],"obsolete":true,"use-instead":"application/vnd.lotus-1-2-3","registered":false},{"content-type":"application/LXF","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ca81f58>","template":"#<Set:0x007fe00ca81d28>"},"registered":true},{"content-type":"application/mac-binhex40","friendly":{"en":"Macintosh BinHex 4.0"},"encoding":"8bit","extensions":["hqx"],"xrefs":{"person":"#<Set:0x007fe00ca7b310>","template":"#<Set:0x007fe00ca7afc8>"},"registered":true},{"content-type":"application/mac-compactpro","friendly":{"en":"Compact Pro"},"encoding":"base64","extensions":["cpt"],"obsolete":true,"use-instead":"application/x-mac-compactpro","registered":false},{"content-type":"application/macbinary","encoding":"base64","registered":false},{"content-type":"application/macwriteii","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ca687d8>","template":"#<Set:0x007fe00ca68490>"},"registered":true},{"content-type":"application/mads+xml","friendly":{"en":"Metadata Authority Description Schema"},"encoding":"base64","extensions":["mads"],"xrefs":{"rfc":"#<Set:0x007fe00ca60970>","template":"#<Set:0x007fe00ca606c8>"},"registered":true},{"content-type":"application/marc","friendly":{"en":"MARC Formats"},"encoding":"base64","extensions":["mrc"],"xrefs":{"rfc":"#<Set:0x007fe00ca59508>","template":"#<Set:0x007fe00ca59288>"},"registered":true},{"content-type":"application/marcxml+xml","friendly":{"en":"MARC21 XML Schema"},"encoding":"base64","extensions":["mrcx"],"xrefs":{"rfc":"#<Set:0x007fe00ca51d80>","template":"#<Set:0x007fe00ca518f8>"},"registered":true},{"content-type":"application/mathcad","encoding":"base64","extensions":["mcd"],"obsolete":true,"use-instead":"application/vnd.mcd","registered":false},{"content-type":"application/mathematica","friendly":{"en":"Mathematica Notebooks"},"encoding":"base64","extensions":["ma","mb","nb"],"xrefs":{"person":"#<Set:0x007fe00ca487d0>","template":"#<Set:0x007fe00ca485c8>"},"registered":true},{"content-type":"application/mathematica-old","encoding":"base64","obsolete":true,"use-instead":"application/x-mathematica-old","registered":false},{"content-type":"application/mathml+xml","friendly":{"en":"Mathematical Markup Language"},"encoding":"base64","extensions":["mathml"],"xrefs":{"person":"#<Set:0x007fe00ca397f8>","uri":"#<Set:0x007fe00ca39618>"},"registered":true},{"content-type":"application/mathml-content+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ca33a88>","uri":"#<Set:0x007fe00ca337e0>"},"registered":true},{"content-type":"application/mathml-presentation+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ba02ee8>","uri":"#<Set:0x007fe00ba02ba0>"},"registered":true},{"content-type":"application/mbms-associated-procedure-description+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ba00a80>","template":"#<Set:0x007fe00ba00878>"},"registered":true},{"content-type":"application/mbms-deregister+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00b9f9348>","template":"#<Set:0x007fe00b9f8ec0>"},"registered":true},{"content-type":"application/mbms-envelope+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00b9f19e0>","template":"#<Set:0x007fe00b9f1738>"},"registered":true},{"content-type":"application/mbms-msk+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00b9e2918>","template":"#<Set:0x007fe00b9e2440>"},"registered":true},{"content-type":"application/mbms-msk-response+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00b9dbf28>","template":"#<Set:0x007fe00b9dbd48>"},"registered":true},{"content-type":"application/mbms-protection-description+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00b9d3c10>","template":"#<Set:0x007fe00b9d3968>"},"registered":true},{"content-type":"application/mbms-reception-report+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00b9d0df8>","template":"#<Set:0x007fe00b9d0c18>"},"registered":true},{"content-type":"application/mbms-register+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00b9c9580>","template":"#<Set:0x007fe00b9c9288>"},"registered":true},{"content-type":"application/mbms-register-response+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00b9c2118>","template":"#<Set:0x007fe00b9c1ee8>"},"registered":true},{"content-type":"application/mbms-schedule+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00b9c00e8>","template":"#<Set:0x007fe00b9bbf70>"},"registered":true},{"content-type":"application/mbms-user-service-description+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00b9b9ae0>","template":"#<Set:0x007fe00b9b97c0>"},"registered":true},{"content-type":"application/mbox","friendly":{"en":"Mbox database files"},"encoding":"base64","extensions":["mbox"],"xrefs":{"rfc":"#<Set:0x007fe00b9aa1a8>","template":"#<Set:0x007fe00b9a9e60>"},"registered":true},{"content-type":"application/media-policy-dataset+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00b9a2598>","template":"#<Set:0x007fe00b9a2160>"},"registered":true},{"content-type":"application/media_control+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00b992350>","template":"#<Set:0x007fe00b991fb8>"},"registered":true},{"content-type":"application/mediaservercontrol+xml","friendly":{"en":"Media Server Control Markup Language"},"encoding":"base64","extensions":["mscml"],"xrefs":{"rfc":"#<Set:0x007fe00b98b118>","template":"#<Set:0x007fe00b98afb0>"},"registered":true},{"content-type":"application/merge-patch+json","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00b989048>","template":"#<Set:0x007fe00b988d50>"},"registered":true},{"content-type":"application/metalink+xml","encoding":"base64","extensions":["metalink"],"registered":false},{"content-type":"application/metalink4+xml","friendly":{"en":"Metalink"},"encoding":"base64","extensions":["meta4"],"xrefs":{"rfc":"#<Set:0x007fe00b97a548>","template":"#<Set:0x007fe00b97a160>"},"registered":true},{"content-type":"application/mets+xml","friendly":{"en":"Metadata Encoding and Transmission Standard"},"encoding":"base64","extensions":["mets"],"xrefs":{"rfc":"#<Set:0x007fe00b972460>","template":"#<Set:0x007fe00b9722a8>"},"registered":true},{"content-type":"application/MF4","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c1cbfa8>","template":"#<Set:0x007fe00c1cb7b0>"},"registered":true},{"content-type":"application/mikey","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c1bb888>","template":"#<Set:0x007fe00c1bb568>"},"registered":true},{"content-type":"application/mods+xml","friendly":{"en":"Metadata Object Description Schema"},"encoding":"base64","extensions":["mods"],"xrefs":{"rfc":"#<Set:0x007fe00c1abcd0>","template":"#<Set:0x007fe00c1abaf0>"},"registered":true},{"content-type":"application/moss-keys","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c1a9b60>","template":"#<Set:0x007fe00c1a9840>"},"registered":true},{"content-type":"application/moss-signature","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c1a3710>","template":"#<Set:0x007fe00c1a35d0>"},"registered":true},{"content-type":"application/mosskey-data","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c1a1cd0>","template":"#<Set:0x007fe00c1a1b40>"},"registered":true},{"content-type":"application/mosskey-request","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c19be48>","template":"#<Set:0x007fe00c19bce0>"},"registered":true},{"content-type":"application/mp21","friendly":{"en":"MPEG-21"},"encoding":"base64","extensions":["m21","mp21"],"xrefs":{"rfc":"#<Set:0x007fe00c198608>","person":"#<Set:0x007fe00c198400>","template":"#<Set:0x007fe00c1981f8>"},"registered":true},{"content-type":"application/mp4","friendly":{"en":"MPEG4"},"encoding":"base64","extensions":["mp4","mpg4","mp4s"],"xrefs":{"rfc":"#<Set:0x007fe00c190ea8>","template":"#<Set:0x007fe00c190cc8>"},"registered":true},{"content-type":"application/mpeg4-generic","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c18a990>","template":"#<Set:0x007fe00c18a738>"},"registered":true},{"content-type":"application/mpeg4-iod","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c1888c0>","template":"#<Set:0x007fe00c1886e0>"},"registered":true},{"content-type":"application/mpeg4-iod-xmt","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c182740>","template":"#<Set:0x007fe00c182448>"},"registered":true},{"content-type":"application/mrb-consumer+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c173470>","template":"#<Set:0x007fe00c173150>"},"registered":true},{"content-type":"application/mrb-publish+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c169628>","template":"#<Set:0x007fe00c1693d0>"},"registered":true},{"content-type":"application/msc-ivr+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c1534e0>","template":"#<Set:0x007fe00c1530d0>"},"registered":true},{"content-type":"application/msc-mixer+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c143838>","template":"#<Set:0x007fe00c143310>"},"registered":true},{"content-type":"application/msword","friendly":{"en":"Microsoft Word"},"encoding":"base64","extensions":["doc","dot","wrd"],"xrefs":{"person":"#<Set:0x007fe00c140a98>","template":"#<Set:0x007fe00c1408e0>"},"registered":true},{"content-type":"application/mxf","friendly":{"en":"Material Exchange Format"},"encoding":"base64","extensions":["mxf"],"xrefs":{"rfc":"#<Set:0x007fe00c13acd8>","template":"#<Set:0x007fe00c13ab98>"},"registered":true},{"content-type":"application/nasdata","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c138a28>","template":"#<Set:0x007fe00c13af30>"},"registered":true},{"content-type":"application/netcdf","encoding":"base64","extensions":["nc","cdf"],"registered":false},{"content-type":"application/news-checkgroups","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c128538>","template":"#<Set:0x007fe00c1280b0>"},"registered":true},{"content-type":"application/news-groupinfo","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c118ae8>","template":"#<Set:0x007fe00c1187a0>"},"registered":true},{"content-type":"application/news-message-id","encoding":"base64","obsolete":true,"registered":false},{"content-type":"application/news-transmission","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00ca291c8>","template":"#<Set:0x007fe00ca28fc0>"},"registered":true},{"content-type":"application/nlsml+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00ca1a330>","template":"#<Set:0x007fe00ca19ed0>"},"registered":true},{"content-type":"application/nss","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ca13558>","template":"#<Set:0x007fe00ca133f0>"},"registered":true},{"content-type":"application/ocsp-request","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00ca10880>","template":"#<Set:0x007fe00ca10150>"},"registered":true},{"content-type":"application/ocsp-response","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00ca095f8>","template":"#<Set:0x007fe00ca09378>"},"registered":true},{"content-type":"application/octet-stream","friendly":{"en":"Binary Data"},"encoding":"base64","extensions":["bin","dms","lha","lzh","exe","class","ani","pgp","so","dll","dylib","bpk","deploy","dist","distz","dump","elc","lrf","mar","pkg"],"xrefs":{"rfc":"#<Set:0x007fe00ca00160>","template":"#<Set:0x007fe00c9fbef8>"},"registered":true},{"content-type":"application/oda","friendly":{"en":"Office Document Architecture"},"encoding":"base64","extensions":["oda"],"xrefs":{"rfc":"#<Set:0x007fe00c9e9708>","template":"#<Set:0x007fe00c9e94d8>"},"registered":true},{"content-type":"application/ODX","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c9e0b08>","template":"#<Set:0x007fe00c9e11e8>"},"registered":true},{"content-type":"application/oebps-package+xml","friendly":{"en":"Open eBook Publication Structure"},"encoding":"base64","extensions":["opf"],"xrefs":{"rfc":"#<Set:0x007fe00c9d1888>","template":"#<Set:0x007fe00c9d14c8>"},"registered":true},{"content-type":"application/ogg","friendly":{"en":"Ogg"},"encoding":"base64","extensions":["ogx"],"xrefs":{"rfc":"#<Set:0x007fe00c9c8580>","template":"#<Set:0x007fe00c9c83c8>"},"registered":true},{"content-type":"application/omdoc+xml","encoding":"base64","extensions":["omdoc"],"registered":false},{"content-type":"application/onenote","friendly":{"en":"Microsoft OneNote"},"encoding":"base64","extensions":["onepkg","onetmp","onetoc","onetoc2"],"registered":false},{"content-type":"application/oxps","encoding":"base64","extensions":["oxps"],"xrefs":{"person":"#<Set:0x007fe00c9a2fb0>","template":"#<Set:0x007fe00c9a2da8>"},"registered":true},{"content-type":"application/p2p-overlay+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c99b558>","template":"#<Set:0x007fe00c99a900>"},"registered":true},{"content-type":"application/parityfec","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c9827b0>"},"registered":true},{"content-type":"application/patch-ops-error+xml","friendly":{"en":"XML Patch Framework"},"encoding":"base64","extensions":["xer"],"xrefs":{"rfc":"#<Set:0x007fe00c978760>","template":"#<Set:0x007fe00c9781e8>"},"registered":true},{"content-type":"application/pdf","friendly":{"en":"Adobe Portable Document Format"},"encoding":"base64","extensions":["pdf"],"xrefs":{"rfc":"#<Set:0x007fe00c969ee0>","template":"#<Set:0x007fe00c9698a0>"},"registered":true},{"content-type":"application/PDX","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c951f48>","template":"#<Set:0x007fe00c951a70>"},"registered":true},{"content-type":"application/pgp-encrypted","friendly":{"en":"Pretty Good Privacy"},"encoding":"7bit","extensions":["pgp"],"xrefs":{"rfc":"#<Set:0x007fe00c942520>","template":"#<Set:0x007fe00c942250>"},"registered":true},{"content-type":"application/pgp-keys","encoding":"7bit","xrefs":{"rfc":"#<Set:0x007fe00c9388e0>"},"registered":true,"signature":true},{"content-type":"application/pgp-signature","friendly":{"en":"Pretty Good Privacy - Signature"},"encoding":"base64","extensions":["asc","sig"],"xrefs":{"rfc":"#<Set:0x007fe00c0f8fe0>","template":"#<Set:0x007fe00c0f8ba8>"},"registered":true,"signature":true},{"content-type":"application/pics-rules","friendly":{"en":"PICSRules"},"encoding":"base64","extensions":["prf"],"registered":false},{"content-type":"application/pidf+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c9214d8>","template":"#<Set:0x007fe00c921140>"},"registered":true},{"content-type":"application/pidf-diff+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c913f90>","template":"#<Set:0x007fe00c913d10>"},"registered":true},{"content-type":"application/pkcs10","friendly":{"en":"PKCS #10 - Certification Request Standard"},"encoding":"base64","extensions":["p10"],"xrefs":{"rfc":"#<Set:0x007fe00c90b2f0>","template":"#<Set:0x007fe00c90ae90>"},"registered":true,"signature":true},{"content-type":"application/pkcs12","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c8f9410>","template":"#<Set:0x007fe00c8f9168>"},"registered":true},{"content-type":"application/pkcs7-mime","friendly":{"en":"PKCS #7 - Cryptographic Message Syntax Standard"},"encoding":"base64","extensions":["p7m","p7c"],"xrefs":{"rfc":"#<Set:0x007fe00c8f20e8>","template":"#<Set:0x007fe00c8f1d78>"},"registered":true,"signature":true},{"content-type":"application/pkcs7-signature","friendly":{"en":"PKCS #7 - Cryptographic Message Syntax Standard"},"encoding":"base64","extensions":["p7s"],"xrefs":{"rfc":"#<Set:0x007fe00c8e1ef0>","template":"#<Set:0x007fe00c8e1b08>"},"registered":true,"signature":true},{"content-type":"application/pkcs8","friendly":{"en":"PKCS #8 - Private-Key Information Syntax Standard"},"encoding":"base64","extensions":["p8"],"xrefs":{"rfc":"#<Set:0x007fe00c8d2388>","template":"#<Set:0x007fe00c8d20e0>"},"registered":true},{"content-type":"application/pkix-attr-cert","friendly":{"en":"Attribute Certificate"},"encoding":"base64","extensions":["ac"],"xrefs":{"rfc":"#<Set:0x007fe00c8c9558>","template":"#<Set:0x007fe00c8c9288>"},"registered":true},{"content-type":"application/pkix-cert","friendly":{"en":"Internet Public Key Infrastructure - Certificate"},"encoding":"base64","extensions":["cer"],"xrefs":{"rfc":"#<Set:0x007fe00c8c1bf0>","template":"#<Set:0x007fe00c8c1a38>"},"registered":true},{"content-type":"application/pkix-crl","friendly":{"en":"Internet Public Key Infrastructure - Certificate Revocation Lists"},"encoding":"base64","extensions":["crl"],"xrefs":{"rfc":"#<Set:0x007fe00c8bbbb0>","template":"#<Set:0x007fe00c8bb9a8>"},"registered":true},{"content-type":"application/pkix-pkipath","friendly":{"en":"Internet Public Key Infrastructure - Certification Path"},"encoding":"base64","extensions":["pkipath"],"xrefs":{"rfc":"#<Set:0x007fe00c8b9900>","template":"#<Set:0x007fe00c8b97c0>"},"registered":true},{"content-type":"application/pkixcmp","friendly":{"en":"Internet Public Key Infrastructure - Certificate Management Protocole"},"encoding":"base64","extensions":["pki"],"xrefs":{"rfc":"#<Set:0x007fe00c8aace8>","template":"#<Set:0x007fe00c8a9528>"},"registered":true},{"content-type":"application/pls+xml","friendly":{"en":"Pronunciation Lexicon Specification"},"encoding":"base64","extensions":["pls"],"xrefs":{"rfc":"#<Set:0x007fe00b95aa90>","template":"#<Set:0x007fe00b959b68>"},"registered":true},{"content-type":"application/poc-settings+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00b948a98>","template":"#<Set:0x007fe00b9481d8>"},"registered":true},{"content-type":"application/postscript","friendly":{"en":"PostScript"},"encoding":"8bit","extensions":["ai","eps","ps"],"xrefs":{"rfc":"#<Set:0x007fe00b93b780>","template":"#<Set:0x007fe00b93b550>"},"registered":true},{"content-type":"application/powerpoint","encoding":"base64","extensions":["ppt","pps","pot"],"registered":false},{"content-type":"application/pro_eng","encoding":"base64","registered":false},{"content-type":"application/provenance+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d0316b0>","template":"#<Set:0x007fe00c0f3c98>"},"registered":true},{"content-type":"application/prs.alvestrand.titrax-sheet","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c0e1340>","template":"#<Set:0x007fe00c0e0dc8>"},"registered":true},{"content-type":"application/prs.cww","friendly":{"en":"CU-Writer"},"encoding":"base64","extensions":["cw","cww"],"xrefs":{"person":"#<Set:0x007fe00c0c2940>","template":"#<Set:0x007fe00c0c2440>"},"registered":true},{"content-type":"application/prs.hpub+zip","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c0b3dc8>","template":"#<Set:0x007fe00c0b38a0>"},"registered":true},{"content-type":"application/prs.nprend","encoding":"base64","extensions":["rnd","rct"],"xrefs":{"person":"#<Set:0x007fe00c877730>","template":"#<Set:0x007fe00c876c40>"},"registered":true},{"content-type":"application/prs.plucker","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c8570c0>","template":"#<Set:0x007fe00c856ad0>"},"registered":true},{"content-type":"application/prs.rdf-xml-crypt","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c84e1f0>","template":"#<Set:0x007fe00c84c328>"},"registered":true},{"content-type":"application/prs.xsf+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c835a38>","template":"#<Set:0x007fe00c834390>"},"registered":true},{"content-type":"application/pskc+xml","friendly":{"en":"Portable Symmetric Key Container"},"encoding":"base64","extensions":["pskcxml"],"xrefs":{"rfc":"#<Set:0x007fe00c093d98>","template":"#<Set:0x007fe00c092df8>"},"registered":true},{"content-type":"application/qsig","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c06a740>","template":"#<Set:0x007fe00c069930>"},"registered":true},{"content-type":"application/quicktimeplayer","encoding":"base64","extensions":["qtl"],"obsolete":true,"use-instead":"application/x-quicktimeplayer","registered":false},{"content-type":"application/raptorfec","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00bafbca0>","template":"#<Set:0x007fe00bafbb60>"},"registered":true},{"content-type":"application/rdap+json","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00bafa850>","template":"#<Set:0x007fe00bafa710>"},"registered":true},{"content-type":"application/rdf+xml","friendly":{"en":"Resource Description Framework"},"encoding":"8bit","extensions":["rdf"],"xrefs":{"rfc":"#<Set:0x007fe00baf9040>","template":"#<Set:0x007fe00baf8f00>"},"registered":true},{"content-type":"application/reginfo+xml","friendly":{"en":"IMS Networks"},"encoding":"base64","extensions":["rif"],"xrefs":{"rfc":"#<Set:0x007fe00c3fb7b0>","template":"#<Set:0x007fe00c3fb670>"},"registered":true},{"content-type":"application/relax-ng-compact-syntax","friendly":{"en":"Relax NG Compact Syntax"},"encoding":"base64","extensions":["rnc"],"xrefs":{"uri":"#<Set:0x007fe00c3f9fa0>","template":"#<Set:0x007fe00c3f9e88>"},"registered":true},{"content-type":"application/remote-printing","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c3f89c0>","person":"#<Set:0x007fe00c3f8880>","template":"#<Set:0x007fe00c3f8740>"},"registered":true},{"content-type":"application/remote_printing","encoding":"base64","obsolete":true,"use-instead":"application/remote-printing","registered":false},{"content-type":"application/reputon+json","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c3ea438>","template":"#<Set:0x007fe00c3ea2f8>"},"registered":true},{"content-type":"application/resource-lists+xml","friendly":{"en":"XML Resource Lists"},"encoding":"base64","extensions":["rl"],"xrefs":{"rfc":"#<Set:0x007fe00c3e8c50>","template":"#<Set:0x007fe00c3e8b10>"},"registered":true},{"content-type":"application/resource-lists-diff+xml","friendly":{"en":"XML Resource Lists Diff"},"encoding":"base64","extensions":["rld"],"xrefs":{"rfc":"#<Set:0x007fe00c3bf418>","template":"#<Set:0x007fe00c3bf2d8>"},"registered":true},{"content-type":"application/rfc+xml","encoding":"base64","xrefs":{"draft":"#<Set:0x007fe00c3bdf00>","template":"#<Set:0x007fe00c3bddc0>"},"registered":true},{"content-type":"application/riscos","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c3bc9e8>","template":"#<Set:0x007fe00c3bc8a8>"},"registered":true},{"content-type":"application/rlmi+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c3ef5a0>","template":"#<Set:0x007fe00c3ef460>"},"registered":true},{"content-type":"application/rls-services+xml","friendly":{"en":"XML Resource Lists"},"encoding":"base64","extensions":["rs"],"xrefs":{"rfc":"#<Set:0x007fe00c3eded0>","template":"#<Set:0x007fe00c3edd90>"},"registered":true},{"content-type":"application/rpki-ghostbusters","encoding":"base64","extensions":["gbr"],"xrefs":{"rfc":"#<Set:0x007fe00c3ec8a0>","template":"#<Set:0x007fe00c3ec760>"},"registered":true},{"content-type":"application/rpki-manifest","encoding":"base64","extensions":["mft"],"xrefs":{"rfc":"#<Set:0x007fe00c3c3220>","template":"#<Set:0x007fe00c3c30e0>"},"registered":true},{"content-type":"application/rpki-roa","encoding":"base64","extensions":["roa"],"xrefs":{"rfc":"#<Set:0x007fe00c3c1c40>","template":"#<Set:0x007fe00c3c1b00>"},"registered":true},{"content-type":"application/rpki-updown","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c3c06d8>","template":"#<Set:0x007fe00c3c0598>"},"registered":true},{"content-type":"application/rsd+xml","friendly":{"en":"Really Simple Discovery"},"encoding":"base64","extensions":["rsd"],"registered":false},{"content-type":"application/rss+xml","friendly":{"en":"RSS - Really Simple Syndication"},"encoding":"base64","extensions":["rss"],"registered":false},{"content-type":"application/rtf","friendly":{"en":"Rich Text Format"},"encoding":"base64","extensions":["rtf"],"xrefs":{"person":"#<Set:0x007fe00c3d0c40>","template":"#<Set:0x007fe00c3d0b00>"},"registered":true},{"content-type":"application/rtploopback","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d0d9450>","template":"#<Set:0x007fe00d0d9270>"},"registered":true},{"content-type":"application/rtx","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c3c79b0>","template":"#<Set:0x007fe00c3c7870>"},"registered":true},{"content-type":"application/samlassertion+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c3c65b0>","template":"#<Set:0x007fe00c3c6498>"},"registered":true},{"content-type":"application/samlmetadata+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c3c51b0>","template":"#<Set:0x007fe00c3c5070>"},"registered":true},{"content-type":"application/sbml+xml","friendly":{"en":"Systems Biology Markup Language"},"encoding":"base64","extensions":["sbml"],"xrefs":{"rfc":"#<Set:0x007fe00d0d37f8>","template":"#<Set:0x007fe00d0d35a0>"},"registered":true},{"content-type":"application/scaip+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d0d1a98>","template":"#<Set:0x007fe00d0d1840>"},"registered":true},{"content-type":"application/scim+json","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c3d7c20>","template":"#<Set:0x007fe00c3d7ae0>"},"registered":true},{"content-type":"application/scvp-cv-request","friendly":{"en":"Server-Based Certificate Validation Protocol - Validation Request"},"encoding":"base64","extensions":["scq"],"xrefs":{"rfc":"#<Set:0x007fe00c3d6438>","template":"#<Set:0x007fe00c3d62f8>"},"registered":true},{"content-type":"application/scvp-cv-response","friendly":{"en":"Server-Based Certificate Validation Protocol - Validation Response"},"encoding":"base64","extensions":["scs"],"xrefs":{"rfc":"#<Set:0x007fe00c3d4cf0>","template":"#<Set:0x007fe00c3d4bb0>"},"registered":true},{"content-type":"application/scvp-vp-request","friendly":{"en":"Server-Based Certificate Validation Protocol - Validation Policies - Request"},"encoding":"base64","extensions":["spq"],"xrefs":{"rfc":"#<Set:0x007fe00d0cb260>","template":"#<Set:0x007fe00d0cb008>"},"registered":true},{"content-type":"application/scvp-vp-response","friendly":{"en":"Server-Based Certificate Validation Protocol - Validation Policies - Response"},"encoding":"base64","extensions":["spp"],"xrefs":{"rfc":"#<Set:0x007fe00d0c9050>","template":"#<Set:0x007fe00d0c8e70>"},"registered":true},{"content-type":"application/sdp","friendly":{"en":"Session Description Protocol"},"encoding":"base64","extensions":["sdp"],"xrefs":{"rfc":"#<Set:0x007fe00c3db370>","template":"#<Set:0x007fe00c3db230>"},"registered":true},{"content-type":"application/sep+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c3d9e58>","template":"#<Set:0x007fe00c3d9cf0>"},"registered":true},{"content-type":"application/sep-exi","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c3d89b8>","template":"#<Set:0x007fe00c3d8850>"},"registered":true},{"content-type":"application/session-info","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d0c3088>","template":"#<Set:0x007fe00d0c2e58>"},"registered":true},{"content-type":"application/set","encoding":"base64","registered":false},{"content-type":"application/set-payment","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d0c0180>","template":"#<Set:0x007fe00c407f88>"},"registered":true},{"content-type":"application/set-payment-initiation","friendly":{"en":"Secure Electronic Transaction - Payment"},"encoding":"base64","extensions":["setpay"],"xrefs":{"person":"#<Set:0x007fe00c4069a8>","template":"#<Set:0x007fe00c406868>"},"registered":true},{"content-type":"application/set-registration","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c405558>","template":"#<Set:0x007fe00c405418>"},"registered":true},{"content-type":"application/set-registration-initiation","friendly":{"en":"Secure Electronic Transaction - Registration"},"encoding":"base64","extensions":["setreg"],"xrefs":{"person":"#<Set:0x007fe00d0bb928>","template":"#<Set:0x007fe00d0bb7c0>"},"registered":true},{"content-type":"application/sgml","encoding":"base64","extensions":["sgml"],"xrefs":{"rfc":"#<Set:0x007fe00d0b9a88>","template":"#<Set:0x007fe00d0b98f8>"},"registered":true},{"content-type":"application/sgml-open-catalog","encoding":"base64","extensions":["soc"],"xrefs":{"person":"#<Set:0x007fe00c3dfce0>","template":"#<Set:0x007fe00c3dfba0>"},"registered":true},{"content-type":"application/shf+xml","friendly":{"en":"S Hexdump Format"},"encoding":"base64","extensions":["shf"],"xrefs":{"rfc":"#<Set:0x007fe00c3de480>","template":"#<Set:0x007fe00c3de340>"},"registered":true},{"content-type":"application/sieve","encoding":"base64","extensions":["siv"],"xrefs":{"rfc":"#<Set:0x007fe00c3dce00>","template":"#<Set:0x007fe00c3dccc0>"},"registered":true},{"content-type":"application/simple-filter+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d0b3750>","template":"#<Set:0x007fe00d0b35c0>"},"registered":true},{"content-type":"application/simple-message-summary","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d0b1b58>","template":"#<Set:0x007fe00d0b19c8>"},"registered":true},{"content-type":"application/simpleSymbolContainer","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c40b9f8>","template":"#<Set:0x007fe00c40b8b8>"},"registered":true},{"content-type":"application/SLA","encoding":"base64","registered":false},{"content-type":"application/slate","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c409860>","template":"#<Set:0x007fe00c409720>"},"registered":true},{"content-type":"application/smil","encoding":"8bit","extensions":["smi","smil"],"obsolete":true,"use-instead":"application/smil+xml","xrefs":{"rfc":"#<Set:0x007fe00d0a95c0>","template":"#<Set:0x007fe00d0a93e0>","notes":"#<Set:0x007fe00d0a9250>"},"registered":true},{"content-type":"application/smil+xml","friendly":{"en":"Synchronized Multimedia Integration Language"},"encoding":"8bit","extensions":["smi","smil"],"xrefs":{"rfc":"#<Set:0x007fe00c413838>","template":"#<Set:0x007fe00c4136f8>"},"registered":true},{"content-type":"application/smpte336m","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c412320>","template":"#<Set:0x007fe00c4121e0>"},"registered":true},{"content-type":"application/soap+fastinfoset","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c410f98>","template":"#<Set:0x007fe00c410e58>"},"registered":true},{"content-type":"application/soap+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c42bf28>","template":"#<Set:0x007fe00c42bde8>"},"registered":true},{"content-type":"application/solids","encoding":"base64","registered":false},{"content-type":"application/sparql-query","friendly":{"en":"SPARQL - Query"},"encoding":"base64","extensions":["rq"],"xrefs":{"person":"#<Set:0x007fe00c4299d0>","uri":"#<Set:0x007fe00c429890>"},"registered":true},{"content-type":"application/sparql-results+xml","friendly":{"en":"SPARQL - Results"},"encoding":"base64","extensions":["srx"],"xrefs":{"person":"#<Set:0x007fe00c428210>","uri":"#<Set:0x007fe00c4280d0>"},"registered":true},{"content-type":"application/spirits-event+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d09a6b0>","template":"#<Set:0x007fe00d09a4f8>"},"registered":true},{"content-type":"application/sql","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c433e58>","template":"#<Set:0x007fe00c433d18>"},"registered":true},{"content-type":"application/srgs","friendly":{"en":"Speech Recognition Grammar Specification"},"encoding":"base64","extensions":["gram"],"xrefs":{"rfc":"#<Set:0x007fe00c4327b0>","template":"#<Set:0x007fe00c432670>"},"registered":true},{"content-type":"application/srgs+xml","friendly":{"en":"Speech Recognition Grammar Specification - XML"},"encoding":"base64","extensions":["grxml"],"xrefs":{"rfc":"#<Set:0x007fe00c4310e0>","template":"#<Set:0x007fe00c430fa0>"},"registered":true},{"content-type":"application/sru+xml","friendly":{"en":"Search/Retrieve via URL Response Format"},"encoding":"base64","extensions":["sru"],"xrefs":{"rfc":"#<Set:0x007fe00d093540>","template":"#<Set:0x007fe00d0933b0>"},"registered":true},{"content-type":"application/ssdl+xml","encoding":"base64","extensions":["ssdl"],"registered":false},{"content-type":"application/ssml+xml","friendly":{"en":"Speech Synthesis Markup Language"},"encoding":"base64","extensions":["ssml"],"xrefs":{"rfc":"#<Set:0x007fe00c43b680>","template":"#<Set:0x007fe00c43b540>"},"registered":true},{"content-type":"application/STEP","encoding":"base64","registered":false},{"content-type":"application/tamp-apex-update","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c4393f8>","template":"#<Set:0x007fe00c4392b8>"},"registered":true},{"content-type":"application/tamp-apex-update-confirm","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d08be08>","template":"#<Set:0x007fe00d08b868>"},"registered":true},{"content-type":"application/tamp-community-update","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d089400>","template":"#<Set:0x007fe00d089180>"},"registered":true},{"content-type":"application/tamp-community-update-confirm","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c4438d0>","template":"#<Set:0x007fe00c443790>"},"registered":true},{"content-type":"application/tamp-error","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c4424a8>","template":"#<Set:0x007fe00c442368>"},"registered":true},{"content-type":"application/tamp-sequence-adjust","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c441058>","template":"#<Set:0x007fe00c440f18>"},"registered":true},{"content-type":"application/tamp-sequence-adjust-confirm","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d0839d8>","template":"#<Set:0x007fe00d0837d0>"},"registered":true},{"content-type":"application/tamp-status-query","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d081e58>","template":"#<Set:0x007fe00d081c28>"},"registered":true},{"content-type":"application/tamp-status-response","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d0802d8>","template":"#<Set:0x007fe00d0800f8>"},"registered":true},{"content-type":"application/tamp-update","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c49ad10>","template":"#<Set:0x007fe00c49abd0>"},"registered":true},{"content-type":"application/tamp-update-confirm","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c4998c0>","template":"#<Set:0x007fe00c499780>"},"registered":true},{"content-type":"application/tei+xml","friendly":{"en":"Text Encoding and Interchange"},"encoding":"base64","extensions":["tei","teicorpus"],"xrefs":{"rfc":"#<Set:0x007fe00c498060>","template":"#<Set:0x007fe00d073e98>"},"registered":true},{"content-type":"application/thraud+xml","friendly":{"en":"Sharing Transaction Fraud Data"},"encoding":"base64","extensions":["tfi"],"xrefs":{"rfc":"#<Set:0x007fe00d071d50>","template":"#<Set:0x007fe00d071bc0>"},"registered":true},{"content-type":"application/timestamp-query","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c4a3eb0>","template":"#<Set:0x007fe00c4a3d70>"},"registered":true},{"content-type":"application/timestamp-reply","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c4a2a88>","template":"#<Set:0x007fe00c4a2948>"},"registered":true},{"content-type":"application/timestamped-data","friendly":{"en":"Time Stamped Data Envelope"},"encoding":"base64","extensions":["tsd"],"xrefs":{"rfc":"#<Set:0x007fe00c4a12f0>","template":"#<Set:0x007fe00c4a11b0>"},"registered":true},{"content-type":"application/toolbook","encoding":"base64","extensions":["tbk"],"obsolete":true,"use-instead":"application/x-toolbook","registered":false},{"content-type":"application/ttml+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d06a3e8>","template":"#<Set:0x007fe00d06a258>"},"registered":true},{"content-type":"application/tve-trigger","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d068570>","template":"#<Set:0x007fe00d068390>"},"registered":true},{"content-type":"application/ulpfec","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c4aaf80>","template":"#<Set:0x007fe00c4aae40>"},"registered":true},{"content-type":"application/urc-grpsheet+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c4a9bf8>","template":"#<Set:0x007fe00c4a9ab8>"},"registered":true},{"content-type":"application/urc-ressheet+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c4a87d0>","template":"#<Set:0x007fe00c4a8690>"},"registered":true},{"content-type":"application/urc-targetdesc+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cc62e58>","template":"#<Set:0x007fe00cc62cf0>"},"registered":true},{"content-type":"application/urc-uisocketdesc+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c4b3f90>","template":"#<Set:0x007fe00c4b3e50>"},"registered":true},{"content-type":"application/vcard+json","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c4b2aa0>","template":"#<Set:0x007fe00c4b2960>"},"registered":true},{"content-type":"application/vcard+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c4b1588>","template":"#<Set:0x007fe00c4b1448>"},"registered":true},{"content-type":"application/vda","encoding":"base64","registered":false},{"content-type":"application/vemmi","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cc5ad70>","template":"#<Set:0x007fe00cc5abe0>"},"registered":true},{"content-type":"application/VMSBACKUP","encoding":"base64","extensions":["bck"],"obsolete":true,"use-instead":"application/x-VMSBACKUP","registered":false},{"content-type":"application/vnd.3gpp-prose+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c4bbce0>","template":"#<Set:0x007fe00c4bbba0>"},"registered":true},{"content-type":"application/vnd.3gpp-prose-pc3ch+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c4ba8b8>","template":"#<Set:0x007fe00c4ba778>"},"registered":true},{"content-type":"application/vnd.3gpp.access-transfer-events+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c4b94b8>","template":"#<Set:0x007fe00c4b9378>"},"registered":true},{"content-type":"application/vnd.3gpp.bsf+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c4b80b8>","template":"#<Set:0x007fe00cc53f20>"},"registered":true},{"content-type":"application/vnd.3gpp.mid-call+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cc52508>","template":"#<Set:0x007fe00cc522d8>"},"registered":true},{"content-type":"application/vnd.3gpp.pic-bw-large","friendly":{"en":"3rd Generation Partnership Project - Pic Large"},"encoding":"base64","extensions":["plb"],"xrefs":{"person":"#<Set:0x007fe00cc505c8>","template":"#<Set:0x007fe00cc50370>"},"registered":true},{"content-type":"application/vnd.3gpp.pic-bw-small","friendly":{"en":"3rd Generation Partnership Project - Pic Small"},"encoding":"base64","extensions":["psb"],"xrefs":{"person":"#<Set:0x007fe00c4c2ba8>","template":"#<Set:0x007fe00c4c2a68>"},"registered":true},{"content-type":"application/vnd.3gpp.pic-bw-var","friendly":{"en":"3rd Generation Partnership Project - Pic Var"},"encoding":"base64","extensions":["pvb"],"xrefs":{"person":"#<Set:0x007fe00c4c1410>","template":"#<Set:0x007fe00c4c12d0>"},"registered":true},{"content-type":"application/vnd.3gpp.sms","encoding":"base64","extensions":["sms"],"xrefs":{"person":"#<Set:0x007fe00cc4be10>","template":"#<Set:0x007fe00cc4bc80>"},"registered":true},{"content-type":"application/vnd.3gpp.srvcc-ext+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cc4a3f8>","template":"#<Set:0x007fe00cc4a290>"},"registered":true},{"content-type":"application/vnd.3gpp.SRVCC-info+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c4cbed8>","template":"#<Set:0x007fe00c4cbd98>"},"registered":true},{"content-type":"application/vnd.3gpp.state-and-event-info+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c4caab0>","template":"#<Set:0x007fe00c4ca970>"},"registered":true},{"content-type":"application/vnd.3gpp.ussd+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c4c96b0>","template":"#<Set:0x007fe00c4c9570>"},"registered":true},{"content-type":"application/vnd.3gpp2.bcmcsinfo+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c4c81e8>","template":"#<Set:0x007fe00c4c80a8>"},"registered":true},{"content-type":"application/vnd.3gpp2.sms","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cc425b8>","template":"#<Set:0x007fe00cc42450>"},"registered":true},{"content-type":"application/vnd.3gpp2.tcap","friendly":{"en":"3rd Generation Partnership Project - Transaction Capabilities Application Part"},"encoding":"base64","extensions":["tcap"],"xrefs":{"person":"#<Set:0x007fe00cc40628>","template":"#<Set:0x007fe00cc404c0>"},"registered":true},{"content-type":"application/vnd.3M.Post-it-Notes","friendly":{"en":"3M Post It Notes"},"encoding":"base64","extensions":["pwn"],"xrefs":{"person":"#<Set:0x007fe00c4d2cb0>","template":"#<Set:0x007fe00c4d2b70>"},"registered":true},{"content-type":"application/vnd.accpac.simply.aso","friendly":{"en":"Simply Accounting"},"encoding":"base64","extensions":["aso"],"xrefs":{"person":"#<Set:0x007fe00c4d14a0>","template":"#<Set:0x007fe00c4d1360>"},"registered":true},{"content-type":"application/vnd.accpac.simply.imp","friendly":{"en":"Simply Accounting - Data Import"},"encoding":"base64","extensions":["imp"],"xrefs":{"person":"#<Set:0x007fe00cc3bb50>","template":"#<Set:0x007fe00cc3b9e8>"},"registered":true},{"content-type":"application/vnd.acucobol","friendly":{"en":"ACU Cobol"},"encoding":"base64","extensions":["acu"],"xrefs":{"person":"#<Set:0x007fe00cc39ad0>","template":"#<Set:0x007fe00cc398c8>"},"registered":true},{"content-type":"application/vnd.acucorp","friendly":{"en":"ACU Cobol"},"encoding":"7bit","extensions":["atc","acutc"],"xrefs":{"person":"#<Set:0x007fe00c4db6f8>","template":"#<Set:0x007fe00c4db5b8>"},"registered":true},{"content-type":"application/vnd.adobe.air-application-installer-package+zip","friendly":{"en":"Adobe AIR Application"},"encoding":"base64","extensions":["air"],"registered":false},{"content-type":"application/vnd.adobe.flash.movie","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c4d8fe8>","template":"#<Set:0x007fe00c4d8ea8>"},"registered":true},{"content-type":"application/vnd.adobe.formscentral.fcdt","encoding":"base64","extensions":["fcdt"],"xrefs":{"person":"#<Set:0x007fe00cc33658>","template":"#<Set:0x007fe00cc33478>"},"registered":true},{"content-type":"application/vnd.adobe.fxp","friendly":{"en":"Adobe Flex Project"},"encoding":"base64","extensions":["fxp","fxpl"],"xrefs":{"person":"#<Set:0x007fe00cc314c0>","template":"#<Set:0x007fe00cc312e0>"},"registered":true},{"content-type":"application/vnd.adobe.partial-upload","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c4e3970>","template":"#<Set:0x007fe00c4e3830>"},"registered":true},{"content-type":"application/vnd.adobe.xdp+xml","friendly":{"en":"Adobe XML Data Package"},"encoding":"base64","extensions":["xdp"],"xrefs":{"person":"#<Set:0x007fe00c4e21b0>","template":"#<Set:0x007fe00c4e2070>"},"registered":true},{"content-type":"application/vnd.adobe.xfdf","friendly":{"en":"Adobe XML Forms Data Format"},"encoding":"base64","extensions":["xfdf"],"xrefs":{"person":"#<Set:0x007fe00c4e09c8>","template":"#<Set:0x007fe00c4e0888>"},"registered":true},{"content-type":"application/vnd.aether.imp","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cc2b098>","template":"#<Set:0x007fe00cc2aee0>"},"registered":true},{"content-type":"application/vnd.ah-barcode","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cc293b0>","template":"#<Set:0x007fe00cc29248>"},"registered":true},{"content-type":"application/vnd.ahead.space","friendly":{"en":"Ahead AIR Application"},"encoding":"base64","extensions":["ahead"],"xrefs":{"person":"#<Set:0x007fe00c4eb648>","template":"#<Set:0x007fe00c4eb508>"},"registered":true},{"content-type":"application/vnd.airzip.filesecure.azf","friendly":{"en":"AirZip FileSECURE"},"encoding":"base64","extensions":["azf"],"xrefs":{"person":"#<Set:0x007fe00c4e9d98>","template":"#<Set:0x007fe00c4e9c30>"},"registered":true},{"content-type":"application/vnd.airzip.filesecure.azs","friendly":{"en":"AirZip FileSECURE"},"encoding":"base64","extensions":["azs"],"xrefs":{"person":"#<Set:0x007fe00c4e86c8>","template":"#<Set:0x007fe00c4e8560>"},"registered":true},{"content-type":"application/vnd.amazon.ebook","friendly":{"en":"Amazon Kindle eBook format"},"encoding":"base64","extensions":["azw"],"registered":false},{"content-type":"application/vnd.americandynamics.acc","friendly":{"en":"Active Content Compression"},"encoding":"base64","extensions":["acc"],"xrefs":{"person":"#<Set:0x007fe00cc20cb0>","template":"#<Set:0x007fe00cc20b48>"},"registered":true},{"content-type":"application/vnd.amiga.ami","friendly":{"en":"AmigaDE"},"encoding":"base64","extensions":["ami"],"xrefs":{"person":"#<Set:0x007fe00c4f3168>","template":"#<Set:0x007fe00c4f3028>"},"registered":true},{"content-type":"application/vnd.amundsen.maze+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c4f1c78>","template":"#<Set:0x007fe00c4f1b38>"},"registered":true},{"content-type":"application/vnd.android.package-archive","friendly":{"en":"Android Package Archive"},"encoding":"base64","extensions":["apk"],"registered":false},{"content-type":"application/vnd.anki","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cc1b1e8>","template":"#<Set:0x007fe00cc1b030>"},"registered":true},{"content-type":"application/vnd.anser-web-certificate-issue-initiation","friendly":{"en":"ANSER-WEB Terminal Client - Certificate Issue"},"encoding":"base64","extensions":["cii"],"xrefs":{"person":"#<Set:0x007fe00cc19118>","template":"#<Set:0x007fe00cc18fb0>"},"registered":true},{"content-type":"application/vnd.anser-web-funds-transfer-initiation","friendly":{"en":"ANSER-WEB Terminal Client - Web Funds Transfer"},"encoding":"base64","extensions":["fti"],"registered":false},{"content-type":"application/vnd.antix.game-component","friendly":{"en":"Antix Game Player"},"encoding":"base64","extensions":["atx"],"xrefs":{"person":"#<Set:0x007fe00c4fa288>","template":"#<Set:0x007fe00c4fa148>"},"registered":true},{"content-type":"application/vnd.apache.thrift.binary","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c4f8dc0>","template":"#<Set:0x007fe00c4f8c80>"},"registered":true},{"content-type":"application/vnd.apache.thrift.compact","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cc13678>","template":"#<Set:0x007fe00cc134c0>"},"registered":true},{"content-type":"application/vnd.apache.thrift.json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cc11ad0>","template":"#<Set:0x007fe00cc118c8>"},"registered":true},{"content-type":"application/vnd.api+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c503f68>","template":"#<Set:0x007fe00c503e28>"},"registered":true},{"content-type":"application/vnd.apple.installer+xml","friendly":{"en":"Apple Installer Package"},"encoding":"base64","extensions":["mpkg"],"xrefs":{"person":"#<Set:0x007fe00c502780>","template":"#<Set:0x007fe00c502640>"},"registered":true},{"content-type":"application/vnd.apple.mpegurl","friendly":{"en":"Multimedia Playlist Unicode"},"encoding":"base64","extensions":["m3u8"],"xrefs":{"person":"#<Set:0x007fe00c500f98>","template":"#<Set:0x007fe00c500e30>"},"registered":true},{"content-type":"application/vnd.apple.pkpass","encoding":"base64","extensions":["pkpass"],"registered":false},{"content-type":"application/vnd.arastra.swi","encoding":"base64","obsolete":true,"use-instead":"application/vnd.aristanetworks.swi","xrefs":{"person":"#<Set:0x007fe00cc09ee8>","template":"#<Set:0x007fe00cc09d58>","notes":"#<Set:0x007fe00cc09ba0>"},"registered":true},{"content-type":"application/vnd.aristanetworks.swi","friendly":{"en":"Arista Networks Software Image"},"encoding":"base64","extensions":["swi"],"xrefs":{"person":"#<Set:0x007fe00c50bf10>","template":"#<Set:0x007fe00c50bdd0>"},"registered":true},{"content-type":"application/vnd.artsquare","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c50a9f8>","template":"#<Set:0x007fe00c50a8b8>"},"registered":true},{"content-type":"application/vnd.astraea-software.iota","encoding":"base64","extensions":["iota"],"xrefs":{"person":"#<Set:0x007fe00c5093f0>","template":"#<Set:0x007fe00c5092b0>"},"registered":true},{"content-type":"application/vnd.audiograph","friendly":{"en":"Audiograph"},"encoding":"base64","extensions":["aep"],"xrefs":{"person":"#<Set:0x007fe00cc03a98>","template":"#<Set:0x007fe00cc03908>"},"registered":true},{"content-type":"application/vnd.autopackage","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cc01e78>","template":"#<Set:0x007fe00cc01c98>"},"registered":true},{"content-type":"application/vnd.avistar+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cc00258>","template":"#<Set:0x007fe00cc000c8>"},"registered":true},{"content-type":"application/vnd.balsamiq.bmml+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c512c98>","template":"#<Set:0x007fe00c512b58>"},"registered":true},{"content-type":"application/vnd.balsamiq.bmpr","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c511870>","template":"#<Set:0x007fe00c511730>"},"registered":true},{"content-type":"application/vnd.bekitzur-stech+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5103a8>","template":"#<Set:0x007fe00c510268>"},"registered":true},{"content-type":"application/vnd.biopax.rdf+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cbf8788>","template":"#<Set:0x007fe00cbf8620>"},"registered":true},{"content-type":"application/vnd.blueice.multipass","friendly":{"en":"Blueice Research Multipass"},"encoding":"base64","extensions":["mpm"],"xrefs":{"person":"#<Set:0x007fe00c51ac18>","template":"#<Set:0x007fe00c51aad8>"},"registered":true},{"content-type":"application/vnd.bluetooth.ep.oob","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c519728>","template":"#<Set:0x007fe00c5195e8>"},"registered":true},{"content-type":"application/vnd.bluetooth.le.oob","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c518260>","template":"#<Set:0x007fe00c518120>"},"registered":true},{"content-type":"application/vnd.bmi","friendly":{"en":"BMI Drawing Data Interchange"},"encoding":"base64","extensions":["bmi"],"xrefs":{"person":"#<Set:0x007fe00cbf2270>","template":"#<Set:0x007fe00cbf20e0>"},"registered":true},{"content-type":"application/vnd.businessobjects","friendly":{"en":"BusinessObjects"},"encoding":"base64","extensions":["rep"],"xrefs":{"person":"#<Set:0x007fe00cbf0268>","template":"#<Set:0x007fe00cbf00d8>"},"registered":true},{"content-type":"application/vnd.cab-jscript","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c522c60>","template":"#<Set:0x007fe00c522b20>"},"registered":true},{"content-type":"application/vnd.canon-cpdl","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c521798>","template":"#<Set:0x007fe00c521658>"},"registered":true},{"content-type":"application/vnd.canon-lips","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c520370>","template":"#<Set:0x007fe00c520230>"},"registered":true},{"content-type":"application/vnd.cendio.thinlinc.clientconf","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cbea7a0>","template":"#<Set:0x007fe00cbea660>"},"registered":true},{"content-type":"application/vnd.century-systems.tcp_stream","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cbe8b80>","template":"#<Set:0x007fe00cbe8a18>"},"registered":true},{"content-type":"application/vnd.chemdraw+xml","friendly":{"en":"CambridgeSoft Chem Draw"},"encoding":"base64","extensions":["cdxml"],"xrefs":{"person":"#<Set:0x007fe00c52b090>","template":"#<Set:0x007fe00c52af50>"},"registered":true},{"content-type":"application/vnd.chipnuts.karaoke-mmd","friendly":{"en":"Karaoke on Chipnuts Chipsets"},"encoding":"base64","extensions":["mmd"],"xrefs":{"person":"#<Set:0x007fe00c5298a8>","template":"#<Set:0x007fe00c529768>"},"registered":true},{"content-type":"application/vnd.cinderella","friendly":{"en":"Interactive Geometry Software Cinderella"},"encoding":"base64","extensions":["cdy"],"xrefs":{"person":"#<Set:0x007fe00c5280e8>","template":"#<Set:0x007fe00cbe3f18>"},"registered":true},{"content-type":"application/vnd.cirpack.isdn-ext","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cbe2410>","template":"#<Set:0x007fe00cbe2280>"},"registered":true},{"content-type":"application/vnd.citationstyles.style+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c533f38>","template":"#<Set:0x007fe00c533df8>"},"registered":true},{"content-type":"application/vnd.claymore","friendly":{"en":"Claymore Data Files"},"encoding":"base64","extensions":["cla"],"xrefs":{"person":"#<Set:0x007fe00c532778>","template":"#<Set:0x007fe00c532638>"},"registered":true},{"content-type":"application/vnd.cloanto.rp9","friendly":{"en":"RetroPlatform Player"},"encoding":"base64","extensions":["rp9"],"xrefs":{"person":"#<Set:0x007fe00c530f68>","template":"#<Set:0x007fe00c530e28>"},"registered":true},{"content-type":"application/vnd.clonk.c4group","friendly":{"en":"Clonk Game"},"encoding":"base64","extensions":["c4d","c4f","c4g","c4p","c4u"],"xrefs":{"person":"#<Set:0x007fe00cbdaf08>","template":"#<Set:0x007fe00cbdad78>"},"registered":true},{"content-type":"application/vnd.cluetrust.cartomobile-config","friendly":{"en":"ClueTrust CartoMobile - Config"},"encoding":"base64","extensions":["c11amc"],"xrefs":{"person":"#<Set:0x007fe00cbd8be0>","template":"#<Set:0x007fe00cbd8a78>"},"registered":true},{"content-type":"application/vnd.cluetrust.cartomobile-config-pkg","friendly":{"en":"ClueTrust CartoMobile - Config Package"},"encoding":"base64","extensions":["c11amz"],"xrefs":{"person":"#<Set:0x007fe00c53b148>","template":"#<Set:0x007fe00c53b008>"},"registered":true},{"content-type":"application/vnd.coffeescript","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c539c80>","template":"#<Set:0x007fe00c539b40>"},"registered":true},{"content-type":"application/vnd.collection+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c538858>","template":"#<Set:0x007fe00c538718>"},"registered":true},{"content-type":"application/vnd.collection.doc+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cbd29e8>","template":"#<Set:0x007fe00cbd2880>"},"registered":true},{"content-type":"application/vnd.collection.next+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cbd0eb8>","template":"#<Set:0x007fe00cbd0d78>"},"registered":true},{"content-type":"application/vnd.commerce-battelle","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5434d8>","template":"#<Set:0x007fe00c543398>"},"registered":true},{"content-type":"application/vnd.commonspace","friendly":{"en":"Sixth Floor Media - CommonSpace"},"encoding":"base64","extensions":["csp"],"xrefs":{"person":"#<Set:0x007fe00c541d18>","template":"#<Set:0x007fe00c541bd8>"},"registered":true},{"content-type":"application/vnd.contact.cmsg","friendly":{"en":"CIM Database"},"encoding":"base64","extensions":["cdbcmsg"],"xrefs":{"person":"#<Set:0x007fe00c540530>","template":"#<Set:0x007fe00c5403f0>"},"registered":true},{"content-type":"application/vnd.cosmocaller","friendly":{"en":"CosmoCaller"},"encoding":"base64","extensions":["cmc"],"xrefs":{"person":"#<Set:0x007fe00cbca630>","template":"#<Set:0x007fe00cbca4c8>"},"registered":true},{"content-type":"application/vnd.crick.clicker","friendly":{"en":"CrickSoftware - Clicker"},"encoding":"base64","extensions":["clkx"],"xrefs":{"person":"#<Set:0x007fe00cbc8448>","template":"#<Set:0x007fe00cbc8308>"},"registered":true},{"content-type":"application/vnd.crick.clicker.keyboard","friendly":{"en":"CrickSoftware - Clicker - Keyboard"},"encoding":"base64","extensions":["clkk"],"xrefs":{"person":"#<Set:0x007fe00c54ac10>","template":"#<Set:0x007fe00c54aad0>"},"registered":true},{"content-type":"application/vnd.crick.clicker.palette","friendly":{"en":"CrickSoftware - Clicker - Palette"},"encoding":"base64","extensions":["clkp"],"xrefs":{"person":"#<Set:0x007fe00c5494f0>","template":"#<Set:0x007fe00c5493b0>"},"registered":true},{"content-type":"application/vnd.crick.clicker.template","friendly":{"en":"CrickSoftware - Clicker - Template"},"encoding":"base64","extensions":["clkt"],"xrefs":{"person":"#<Set:0x007fe00cbc3998>","template":"#<Set:0x007fe00cbc3768>"},"registered":true},{"content-type":"application/vnd.crick.clicker.wordbank","friendly":{"en":"CrickSoftware - Clicker - Wordbank"},"encoding":"base64","extensions":["clkw"],"xrefs":{"person":"#<Set:0x007fe00cbc0ae0>","template":"#<Set:0x007fe00cbc0950>"},"registered":true},{"content-type":"application/vnd.criticaltools.wbs+xml","friendly":{"en":"Critical Tools - PERT Chart EXPERT"},"encoding":"base64","extensions":["wbs"],"xrefs":{"person":"#<Set:0x007fe00c552fc8>","template":"#<Set:0x007fe00c552e88>"},"registered":true},{"content-type":"application/vnd.ctc-posml","friendly":{"en":"PosML"},"encoding":"base64","extensions":["pml"],"xrefs":{"person":"#<Set:0x007fe00c5517b8>","template":"#<Set:0x007fe00c551678>"},"registered":true},{"content-type":"application/vnd.ctct.ws+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5502c8>","template":"#<Set:0x007fe00c550188>"},"registered":true},{"content-type":"application/vnd.cups-pdf","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00caa1d80>","template":"#<Set:0x007fe00caa1ad8>"},"registered":true},{"content-type":"application/vnd.cups-postscript","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c55bad8>","template":"#<Set:0x007fe00c55b998>"},"registered":true},{"content-type":"application/vnd.cups-ppd","friendly":{"en":"Adobe PostScript Printer Description File Format"},"encoding":"base64","extensions":["ppd"],"xrefs":{"person":"#<Set:0x007fe00c55a3b8>","template":"#<Set:0x007fe00c55a278>"},"registered":true},{"content-type":"application/vnd.cups-raster","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c558f68>","template":"#<Set:0x007fe00c558e28>"},"registered":true},{"content-type":"application/vnd.cups-raw","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c162aa8>","template":"#<Set:0x007fe00c162558>"},"registered":true},{"content-type":"application/vnd.curl","encoding":"base64","extensions":["curl"],"xrefs":{"person":"#<Set:0x007fe00c563328>","template":"#<Set:0x007fe00c5631e8>"},"registered":true},{"content-type":"application/vnd.curl.car","friendly":{"en":"CURL Applet"},"encoding":"base64","extensions":["car"],"registered":false},{"content-type":"application/vnd.curl.pcurl","friendly":{"en":"CURL Applet"},"encoding":"base64","extensions":["pcurl"],"registered":false},{"content-type":"application/vnd.cyan.dean.root+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c15b988>","template":"#<Set:0x007fe00c15b7d0>"},"registered":true},{"content-type":"application/vnd.cybank","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c159430>","template":"#<Set:0x007fe00c159138>"},"registered":true},{"content-type":"application/vnd.dart","encoding":"base64","extensions":["dart"],"xrefs":{"person":"#<Set:0x007fe00c56b500>","template":"#<Set:0x007fe00c56b3c0>"},"registered":true},{"content-type":"application/vnd.data-vision.rdz","friendly":{"en":"RemoteDocs R-Viewer"},"encoding":"base64","extensions":["rdz"],"xrefs":{"person":"#<Set:0x007fe00c569ca0>","template":"#<Set:0x007fe00c569b60>"},"registered":true},{"content-type":"application/vnd.debian.binary-package","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5687b0>","template":"#<Set:0x007fe00c568670>"},"registered":true},{"content-type":"application/vnd.dece.data","encoding":"base64","extensions":["uvd","uvf","uvvd","uvvf"],"xrefs":{"person":"#<Set:0x007fe00cb3a0a8>","template":"#<Set:0x007fe00cb39f40>"},"registered":true},{"content-type":"application/vnd.dece.ttml+xml","encoding":"base64","extensions":["uvt","uvvt"],"xrefs":{"person":"#<Set:0x007fe00c573700>","template":"#<Set:0x007fe00c5735c0>"},"registered":true},{"content-type":"application/vnd.dece.unspecified","encoding":"base64","extensions":["uvvx","uvx"],"xrefs":{"person":"#<Set:0x007fe00c572008>","template":"#<Set:0x007fe00c571ec8>"},"registered":true},{"content-type":"application/vnd.dece.zip","encoding":"base64","extensions":["uvvz","uvz"],"xrefs":{"person":"#<Set:0x007fe00c570898>","template":"#<Set:0x007fe00c570758>"},"registered":true},{"content-type":"application/vnd.denovo.fcselayout-link","friendly":{"en":"FCS Express Layout Link"},"encoding":"base64","extensions":["fe_launch"],"xrefs":{"person":"#<Set:0x007fe00cb221d8>","template":"#<Set:0x007fe00cb21f58>"},"registered":true},{"content-type":"application/vnd.desmume.movie","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cb20068>","template":"#<Set:0x007fe00c57bec8>"},"registered":true},{"content-type":"application/vnd.dir-bi.plate-dl-nosuffix","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c57ab68>","template":"#<Set:0x007fe00c57aa28>"},"registered":true},{"content-type":"application/vnd.dm.delegation+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5796c8>","template":"#<Set:0x007fe00c579588>"},"registered":true},{"content-type":"application/vnd.dna","friendly":{"en":"New Moon Liftoff/DNA"},"encoding":"base64","extensions":["dna"],"xrefs":{"person":"#<Set:0x007fe00cabbb90>","template":"#<Set:0x007fe00cabb8c0>"},"registered":true},{"content-type":"application/vnd.document+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cab8148>","template":"#<Set:0x007fe00c583f38>"},"registered":true},{"content-type":"application/vnd.dolby.mlp","friendly":{"en":"Dolby Meridian Lossless Packing"},"encoding":"base64","extensions":["mlp"],"registered":false},{"content-type":"application/vnd.dolby.mobile.1","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c581aa8>","template":"#<Set:0x007fe00c581968>"},"registered":true},{"content-type":"application/vnd.dolby.mobile.2","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c580680>","template":"#<Set:0x007fe00c580540>"},"registered":true},{"content-type":"application/vnd.doremir.scorecloud-binary-document","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00b9e9e70>","template":"#<Set:0x007fe00b9e9c18>"},"registered":true},{"content-type":"application/vnd.dpgraph","friendly":{"en":"DPGraph"},"encoding":"base64","extensions":["dpg"],"xrefs":{"person":"#<Set:0x007fe00c58b788>","template":"#<Set:0x007fe00c58b648>"},"registered":true},{"content-type":"application/vnd.dreamfactory","friendly":{"en":"DreamFactory"},"encoding":"base64","extensions":["dfac"],"xrefs":{"person":"#<Set:0x007fe00c589f50>","template":"#<Set:0x007fe00c589e10>"},"registered":true},{"content-type":"application/vnd.drive+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c588a60>","template":"#<Set:0x007fe00c588920>"},"registered":true},{"content-type":"application/vnd.ds-keypoint","encoding":"base64","extensions":["kpxx"],"registered":false},{"content-type":"application/vnd.dtg.local","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00b9b0b48>","template":"#<Set:0x007fe00b9b07b0>"},"registered":true},{"content-type":"application/vnd.dtg.local.flash","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c593000>","template":"#<Set:0x007fe00c592ec0>"},"registered":true},{"content-type":"application/vnd.dtg.local.html","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c591b60>","template":"#<Set:0x007fe00c591a20>"},"registered":true},{"content-type":"application/vnd.dvb.ait","friendly":{"en":"Digital Video Broadcasting"},"encoding":"base64","extensions":["ait"],"xrefs":{"person":"#<Set:0x007fe00c590300>","template":"#<Set:0x007fe00c590198>"},"registered":true},{"content-type":"application/vnd.dvb.dvbj","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00b999ab0>","template":"#<Set:0x007fe00b999768>"},"registered":true},{"content-type":"application/vnd.dvb.esgcontainer","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c59b840>","template":"#<Set:0x007fe00c59b700>"},"registered":true},{"content-type":"application/vnd.dvb.ipdcdftnotifaccess","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c59a378>","template":"#<Set:0x007fe00c59a238>"},"registered":true},{"content-type":"application/vnd.dvb.ipdcesgaccess","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c598f78>","template":"#<Set:0x007fe00c598e38>"},"registered":true},{"content-type":"application/vnd.dvb.ipdcesgaccess2","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c1c28b8>","template":"#<Set:0x007fe00c1c2700>"},"registered":true},{"content-type":"application/vnd.dvb.ipdcesgpdd","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c1c0130>","template":"#<Set:0x007fe00c5a3f40>"},"registered":true},{"content-type":"application/vnd.dvb.ipdcroaming","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5a2bb8>","template":"#<Set:0x007fe00c5a2a78>"},"registered":true},{"content-type":"application/vnd.dvb.iptv.alfec-base","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5a16f0>","template":"#<Set:0x007fe00c5a15b0>"},"registered":true},{"content-type":"application/vnd.dvb.iptv.alfec-enhancement","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5a02c8>","template":"#<Set:0x007fe00c5a0188>"},"registered":true},{"content-type":"application/vnd.dvb.notif-aggregate-root+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c1b13b0>","template":"#<Set:0x007fe00c1b0fc8>"},"registered":true},{"content-type":"application/vnd.dvb.notif-container+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5ab268>","template":"#<Set:0x007fe00c5ab128>"},"registered":true},{"content-type":"application/vnd.dvb.notif-generic+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5a9e68>","template":"#<Set:0x007fe00c5a9d28>"},"registered":true},{"content-type":"application/vnd.dvb.notif-ia-msglist+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5a8a68>","template":"#<Set:0x007fe00c5a8928>"},"registered":true},{"content-type":"application/vnd.dvb.notif-ia-registration-request+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c179e88>","template":"#<Set:0x007fe00c179cd0>"},"registered":true},{"content-type":"application/vnd.dvb.notif-ia-registration-response+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c1782e0>","template":"#<Set:0x007fe00c1780b0>"},"registered":true},{"content-type":"application/vnd.dvb.notif-init+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5b2d60>","template":"#<Set:0x007fe00c5b2c20>"},"registered":true},{"content-type":"application/vnd.dvb.pfr","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5b1910>","template":"#<Set:0x007fe00c5b17a8>"},"registered":true},{"content-type":"application/vnd.dvb.service","friendly":{"en":"Digital Video Broadcasting"},"encoding":"base64","extensions":["svc"],"xrefs":{"person":"#<Set:0x007fe00c5b01a0>","template":"#<Set:0x007fe00c5b0038>"},"registered":true},{"content-type":"application/vnd.dxr","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c149828>","template":"#<Set:0x007fe00c1495f8>"},"registered":true},{"content-type":"application/vnd.dynageo","friendly":{"en":"DynaGeo"},"encoding":"base64","extensions":["geo"],"xrefs":{"person":"#<Set:0x007fe00c5bb190>","template":"#<Set:0x007fe00c5bb050>"},"registered":true},{"content-type":"application/vnd.dzr","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5b9c50>","template":"#<Set:0x007fe00c5b9b10>"},"registered":true},{"content-type":"application/vnd.easykaraoke.cdgdownload","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5b8760>","template":"#<Set:0x007fe00c5b8620>"},"registered":true},{"content-type":"application/vnd.ecdis-update","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5c3ea8>","template":"#<Set:0x007fe00c5c3d68>"},"registered":true},{"content-type":"application/vnd.ecowin.chart","friendly":{"en":"EcoWin Chart"},"encoding":"base64","extensions":["mag"],"xrefs":{"person":"#<Set:0x007fe00c5c26c0>","template":"#<Set:0x007fe00c5c2580>"},"registered":true},{"content-type":"application/vnd.ecowin.filerequest","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5c1270>","template":"#<Set:0x007fe00c5c1130>"},"registered":true},{"content-type":"application/vnd.ecowin.fileupdate","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c107ce8>","template":"#<Set:0x007fe00c107b58>"},"registered":true},{"content-type":"application/vnd.ecowin.series","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c104fe8>","template":"#<Set:0x007fe00c1049a8>"},"registered":true},{"content-type":"application/vnd.ecowin.seriesrequest","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5cb180>","template":"#<Set:0x007fe00c5cb040>"},"registered":true},{"content-type":"application/vnd.ecowin.seriesupdate","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5c9d80>","template":"#<Set:0x007fe00c5c9c40>"},"registered":true},{"content-type":"application/vnd.emclient.accessrequest+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5c88b8>","template":"#<Set:0x007fe00c5c8778>"},"registered":true},{"content-type":"application/vnd.enliven","friendly":{"en":"Enliven Viewer"},"encoding":"base64","extensions":["nml"],"xrefs":{"person":"#<Set:0x007fe00ca211d0>","template":"#<Set:0x007fe00ca20f50>"},"registered":true},{"content-type":"application/vnd.enphase.envoy","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5d3128>","template":"#<Set:0x007fe00c5d2fe8>"},"registered":true},{"content-type":"application/vnd.eprints.data+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5d1c60>","template":"#<Set:0x007fe00c5d1b20>"},"registered":true},{"content-type":"application/vnd.epson.esf","friendly":{"en":"QUASS Stream Player"},"encoding":"base64","extensions":["esf"],"xrefs":{"person":"#<Set:0x007fe00c5d0478>","template":"#<Set:0x007fe00c5d0338>"},"registered":true},{"content-type":"application/vnd.epson.msf","friendly":{"en":"QUASS Stream Player"},"encoding":"base64","extensions":["msf"],"xrefs":{"person":"#<Set:0x007fe00c9f24e8>","template":"#<Set:0x007fe00c9f22b8>"},"registered":true},{"content-type":"application/vnd.epson.quickanime","friendly":{"en":"QuickAnime Player"},"encoding":"base64","extensions":["qam"],"xrefs":{"person":"#<Set:0x007fe00c5db8a0>","template":"#<Set:0x007fe00c5db760>"},"registered":true},{"content-type":"application/vnd.epson.salt","friendly":{"en":"SimpleAnimeLite Player"},"encoding":"base64","extensions":["slt"],"xrefs":{"person":"#<Set:0x007fe00c5da090>","template":"#<Set:0x007fe00c5d9f50>"},"registered":true},{"content-type":"application/vnd.epson.ssf","friendly":{"en":"QUASS Stream Player"},"encoding":"base64","extensions":["ssf"],"xrefs":{"person":"#<Set:0x007fe00c5d89c0>","template":"#<Set:0x007fe00c5d8880>"},"registered":true},{"content-type":"application/vnd.ericsson.quickcall","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5e3c58>","template":"#<Set:0x007fe00c5e3b18>"},"registered":true},{"content-type":"application/vnd.eszigno3+xml","friendly":{"en":"MICROSEC e-Szign¢"},"encoding":"base64","extensions":["es3","et3"],"xrefs":{"person":"#<Set:0x007fe00c5e23a8>","template":"#<Set:0x007fe00c5e2268>"},"registered":true},{"content-type":"application/vnd.etsi.aoc+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5e0e40>","template":"#<Set:0x007fe00c5e0d00>"},"registered":true},{"content-type":"application/vnd.etsi.asic-e+zip","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cbb2f08>","template":"#<Set:0x007fe00cbb2ad0>"},"registered":true},{"content-type":"application/vnd.etsi.asic-s+zip","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5ebcc8>","template":"#<Set:0x007fe00c5ebb88>"},"registered":true},{"content-type":"application/vnd.etsi.cug+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5ea8a0>","template":"#<Set:0x007fe00c5ea760>"},"registered":true},{"content-type":"application/vnd.etsi.iptvcommand+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5e9478>","template":"#<Set:0x007fe00c5e9338>"},"registered":true},{"content-type":"application/vnd.etsi.iptvdiscovery+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5e8078>","template":"#<Set:0x007fe00cba3aa8>"},"registered":true},{"content-type":"application/vnd.etsi.iptvprofile+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cba0bf0>","template":"#<Set:0x007fe00cba0880>"},"registered":true},{"content-type":"application/vnd.etsi.iptvsad-bc+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5f2e38>","template":"#<Set:0x007fe00c5f2cf8>"},"registered":true},{"content-type":"application/vnd.etsi.iptvsad-cod+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5f1a10>","template":"#<Set:0x007fe00c5f18d0>"},"registered":true},{"content-type":"application/vnd.etsi.iptvsad-npvr+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5f0610>","template":"#<Set:0x007fe00c5f04d0>"},"registered":true},{"content-type":"application/vnd.etsi.iptvservice+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cb91e98>","template":"#<Set:0x007fe00cb91d08>"},"registered":true},{"content-type":"application/vnd.etsi.iptvsync+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5fb830>","template":"#<Set:0x007fe00c5fb6f0>"},"registered":true},{"content-type":"application/vnd.etsi.iptvueprofile+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5fa408>","template":"#<Set:0x007fe00c5fa2c8>"},"registered":true},{"content-type":"application/vnd.etsi.mcid+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5f9008>","template":"#<Set:0x007fe00c5f8ec8>"},"registered":true},{"content-type":"application/vnd.etsi.mheg5","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cb8b2a0>","template":"#<Set:0x007fe00cb8aff8>"},"registered":true},{"content-type":"application/vnd.etsi.overload-control-policy-dataset+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c603f08>","template":"#<Set:0x007fe00c603dc8>"},"registered":true},{"content-type":"application/vnd.etsi.pstn+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c6029c8>","template":"#<Set:0x007fe00c602860>"},"registered":true},{"content-type":"application/vnd.etsi.sci+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c601578>","template":"#<Set:0x007fe00c601438>"},"registered":true},{"content-type":"application/vnd.etsi.simservs+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c600150>","template":"#<Set:0x007fe00c600010>"},"registered":true},{"content-type":"application/vnd.etsi.timestamp-token","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cb81228>","template":"#<Set:0x007fe00cb81098>"},"registered":true},{"content-type":"application/vnd.etsi.tsl+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c60b5c8>","template":"#<Set:0x007fe00c60b488>"},"registered":true},{"content-type":"application/vnd.etsi.tsl.der","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c60a1a0>","template":"#<Set:0x007fe00c60a060>"},"registered":true},{"content-type":"application/vnd.eudora.data","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c608cd8>","template":"#<Set:0x007fe00c608b98>"},"registered":true},{"content-type":"application/vnd.ezpix-album","friendly":{"en":"EZPix Secure Photo Album"},"encoding":"base64","extensions":["ez2"],"xrefs":{"person":"#<Set:0x007fe00cb79ca8>","template":"#<Set:0x007fe00cb79a00>"},"registered":true},{"content-type":"application/vnd.ezpix-package","friendly":{"en":"EZPix Secure Photo Album"},"encoding":"base64","extensions":["ez3"],"xrefs":{"person":"#<Set:0x007fe00c613520>","template":"#<Set:0x007fe00c6133e0>"},"registered":true},{"content-type":"application/vnd.f-secure.mobile","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c612030>","template":"#<Set:0x007fe00c611ef0>"},"registered":true},{"content-type":"application/vnd.fastcopy-disk-image","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c610b68>","template":"#<Set:0x007fe00c610a28>"},"registered":true},{"content-type":"application/vnd.fdf","friendly":{"en":"Forms Data Format"},"encoding":"base64","extensions":["fdf"],"xrefs":{"person":"#<Set:0x007fe00cb70590>","template":"#<Set:0x007fe00c61bf68>"},"registered":true},{"content-type":"application/vnd.fdsn.mseed","encoding":"base64","extensions":["mseed"],"xrefs":{"person":"#<Set:0x007fe00c61aa50>","template":"#<Set:0x007fe00c61a910>"},"registered":true},{"content-type":"application/vnd.fdsn.seed","friendly":{"en":"Digital Siesmograph Networks - SEED Datafiles"},"encoding":"base64","extensions":["dataless","seed"],"xrefs":{"person":"#<Set:0x007fe00c619240>","template":"#<Set:0x007fe00c619100>"},"registered":true},{"content-type":"application/vnd.ffsns","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cb6b7e8>","template":"#<Set:0x007fe00cb6b5b8>"},"registered":true},{"content-type":"application/vnd.fints","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c623ab0>","template":"#<Set:0x007fe00c623970>"},"registered":true},{"content-type":"application/vnd.firemonkeys.cloudcell","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c6225c0>","template":"#<Set:0x007fe00c622480>"},"registered":true},{"content-type":"application/vnd.FloGraphIt","friendly":{"en":"NpGraphIt"},"encoding":"base64","extensions":["gph"],"xrefs":{"person":"#<Set:0x007fe00c620e00>","template":"#<Set:0x007fe00c620cc0>"},"registered":true},{"content-type":"application/vnd.fluxtime.clip","friendly":{"en":"FluxTime Clip"},"encoding":"base64","extensions":["ftc"],"xrefs":{"person":"#<Set:0x007fe00cb627b0>","template":"#<Set:0x007fe00cb62468>"},"registered":true},{"content-type":"application/vnd.font-fontforge-sfd","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c62ba80>","template":"#<Set:0x007fe00c62b940>"},"registered":true},{"content-type":"application/vnd.framemaker","friendly":{"en":"FrameMaker Normal Format"},"encoding":"base64","extensions":["frm","maker","frame","fm","fb","book","fbdoc"],"xrefs":{"person":"#<Set:0x007fe00c629ed8>","template":"#<Set:0x007fe00c629d98>"},"registered":true},{"content-type":"application/vnd.frogans.fnc","friendly":{"en":"Frogans Player"},"encoding":"base64","extensions":["fnc"],"xrefs":{"person":"#<Set:0x007fe00c6283f8>","template":"#<Set:0x007fe00c6282b8>"},"registered":true},{"content-type":"application/vnd.frogans.ltf","friendly":{"en":"Frogans Player"},"encoding":"base64","extensions":["ltf"],"xrefs":{"person":"#<Set:0x007fe00c633b18>","template":"#<Set:0x007fe00c6339d8>"},"registered":true},{"content-type":"application/vnd.fsc.weblaunch","friendly":{"en":"Friendly Software Corporation"},"encoding":"7bit","extensions":["fsc"],"xrefs":{"person":"#<Set:0x007fe00c632358>","template":"#<Set:0x007fe00c632218>"},"registered":true},{"content-type":"application/vnd.fujitsu.oasys","friendly":{"en":"Fujitsu Oasys"},"encoding":"base64","extensions":["oas"],"xrefs":{"person":"#<Set:0x007fe00c630b70>","template":"#<Set:0x007fe00c630a30>"},"registered":true},{"content-type":"application/vnd.fujitsu.oasys2","friendly":{"en":"Fujitsu Oasys"},"encoding":"base64","extensions":["oa2"],"xrefs":{"person":"#<Set:0x007fe00cb51820>","template":"#<Set:0x007fe00cb513c0>"},"registered":true},{"content-type":"application/vnd.fujitsu.oasys3","friendly":{"en":"Fujitsu Oasys"},"encoding":"base64","extensions":["oa3"],"xrefs":{"person":"#<Set:0x007fe00c63afd0>","template":"#<Set:0x007fe00c63ae90>"},"registered":true},{"content-type":"application/vnd.fujitsu.oasysgp","friendly":{"en":"Fujitsu Oasys"},"encoding":"base64","extensions":["fg5"],"xrefs":{"person":"#<Set:0x007fe00c639888>","template":"#<Set:0x007fe00c639748>"},"registered":true},{"content-type":"application/vnd.fujitsu.oasysprs","friendly":{"en":"Fujitsu Oasys"},"encoding":"base64","extensions":["bh2"],"xrefs":{"person":"#<Set:0x007fe00c638118>","template":"#<Set:0x007fe00cb4bd08>"},"registered":true},{"content-type":"application/vnd.fujixerox.ART-EX","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c6434f0>","template":"#<Set:0x007fe00c6433b0>"},"registered":true},{"content-type":"application/vnd.fujixerox.ART4","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c6420c8>","template":"#<Set:0x007fe00c641f88>"},"registered":true},{"content-type":"application/vnd.fujixerox.ddd","friendly":{"en":"Fujitsu - Xerox 2D CAD Data"},"encoding":"base64","extensions":["ddd"],"xrefs":{"person":"#<Set:0x007fe00c640908>","template":"#<Set:0x007fe00c6407c8>"},"registered":true},{"content-type":"application/vnd.fujixerox.docuworks","friendly":{"en":"Fujitsu - Xerox DocuWorks"},"encoding":"base64","extensions":["xdw"],"xrefs":{"person":"#<Set:0x007fe00cb41ce0>","template":"#<Set:0x007fe00cb41a88>"},"registered":true},{"content-type":"application/vnd.fujixerox.docuworks.binder","friendly":{"en":"Fujitsu - Xerox DocuWorks Binder"},"encoding":"base64","extensions":["xbd"],"xrefs":{"person":"#<Set:0x007fe00c64b308>","template":"#<Set:0x007fe00c64b1c8>"},"registered":true},{"content-type":"application/vnd.fujixerox.docuworks.container","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c649e40>","template":"#<Set:0x007fe00c649d00>"},"registered":true},{"content-type":"application/vnd.fujixerox.HBPL","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c648a40>","template":"#<Set:0x007fe00c648900>"},"registered":true},{"content-type":"application/vnd.fut-misnet","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c653f30>","template":"#<Set:0x007fe00c653df0>"},"registered":true},{"content-type":"application/vnd.fuzzysheet","friendly":{"en":"FuzzySheet"},"encoding":"base64","extensions":["fzs"],"xrefs":{"person":"#<Set:0x007fe00c652770>","template":"#<Set:0x007fe00c652630>"},"registered":true},{"content-type":"application/vnd.genomatix.tuxedo","friendly":{"en":"Genomatix Tuxedo Framework"},"encoding":"base64","extensions":["txd"],"xrefs":{"person":"#<Set:0x007fe00c650fb0>","template":"#<Set:0x007fe00c650e70>"},"registered":true},{"content-type":"application/vnd.geo+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cb2b260>","template":"#<Set:0x007fe00cb2af68>"},"registered":true},{"content-type":"application/vnd.geocube+xml","encoding":"8bit","obsolete":true,"xrefs":{"person":"#<Set:0x007fe00cb280b0>","template":"#<Set:0x007fe00c65bf00>","notes":"#<Set:0x007fe00c65bdc0>"},"registered":true},{"content-type":"application/vnd.geogebra.file","friendly":{"en":"GeoGebra"},"encoding":"base64","extensions":["ggb"],"xrefs":{"person":"#<Set:0x007fe00c65a718>","template":"#<Set:0x007fe00c65a5b0>"},"registered":true},{"content-type":"application/vnd.geogebra.tool","friendly":{"en":"GeoGebra"},"encoding":"base64","extensions":["ggt"],"xrefs":{"person":"#<Set:0x007fe00c659020>","template":"#<Set:0x007fe00c658eb8>"},"registered":true},{"content-type":"application/vnd.geometry-explorer","friendly":{"en":"GeoMetry Explorer"},"encoding":"base64","extensions":["gex","gre"],"xrefs":{"person":"#<Set:0x007fe00cb1a140>","template":"#<Set:0x007fe00cb19f10>"},"registered":true},{"content-type":"application/vnd.geonext","friendly":{"en":"GEONExT and JSXGraph"},"encoding":"base64","extensions":["gxt"],"xrefs":{"person":"#<Set:0x007fe00c663408>","template":"#<Set:0x007fe00c6632c8>"},"registered":true},{"content-type":"application/vnd.geoplan","friendly":{"en":"GeoplanW"},"encoding":"base64","extensions":["g2w"],"xrefs":{"person":"#<Set:0x007fe00c661ba8>","template":"#<Set:0x007fe00c661a68>"},"registered":true},{"content-type":"application/vnd.geospace","friendly":{"en":"GeospacW"},"encoding":"base64","extensions":["g3w"],"xrefs":{"person":"#<Set:0x007fe00c660410>","template":"#<Set:0x007fe00c6602d0>"},"registered":true},{"content-type":"application/vnd.gerber","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cb10a00>","template":"#<Set:0x007fe00cb107f8>"},"registered":true},{"content-type":"application/vnd.globalplatform.card-content-mgt","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c66b040>","template":"#<Set:0x007fe00c66af00>"},"registered":true},{"content-type":"application/vnd.globalplatform.card-content-mgt-response","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c669c40>","template":"#<Set:0x007fe00c669b00>"},"registered":true},{"content-type":"application/vnd.gmx","friendly":{"en":"GameMaker ActiveX"},"encoding":"base64","extensions":["gmx"],"obsolete":true,"xrefs":{"person":"#<Set:0x007fe00c6682c8>","template":"#<Set:0x007fe00c668188>","notes":"#<Set:0x007fe00c668048>"},"registered":true},{"content-type":"application/vnd.google-earth.kml+xml","friendly":{"en":"Google Earth - KML"},"encoding":"8bit","extensions":["kml"],"xrefs":{"person":"#<Set:0x007fe00c673f10>","template":"#<Set:0x007fe00c673dd0>"},"registered":true},{"content-type":"application/vnd.google-earth.kmz","friendly":{"en":"Google Earth - Zipped KML"},"encoding":"8bit","extensions":["kmz"],"xrefs":{"person":"#<Set:0x007fe00c6727f0>","template":"#<Set:0x007fe00c6726b0>"},"registered":true},{"content-type":"application/vnd.gov.sk.e-form+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c671260>","template":"#<Set:0x007fe00c6710f8>"},"registered":true},{"content-type":"application/vnd.gov.sk.e-form+zip","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cb03198>","template":"#<Set:0x007fe00cb02d10>"},"registered":true},{"content-type":"application/vnd.gov.sk.xmldatacontainer+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c67b350>","template":"#<Set:0x007fe00c67b1e8>"},"registered":true},{"content-type":"application/vnd.grafeq","friendly":{"en":"GrafEq"},"encoding":"base64","extensions":["gqf","gqs"],"xrefs":{"person":"#<Set:0x007fe00c679a78>","template":"#<Set:0x007fe00c679938>"},"registered":true},{"content-type":"application/vnd.gridmp","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c6784c0>","template":"#<Set:0x007fe00c678380>"},"registered":true},{"content-type":"application/vnd.groove-account","friendly":{"en":"Groove - Account"},"encoding":"base64","extensions":["gac"],"xrefs":{"person":"#<Set:0x007fe00caf90d0>","template":"#<Set:0x007fe00caf8e28>"},"registered":true},{"content-type":"application/vnd.groove-help","friendly":{"en":"Groove - Help"},"encoding":"base64","extensions":["ghf"],"xrefs":{"person":"#<Set:0x007fe00c682ee8>","template":"#<Set:0x007fe00c682da8>"},"registered":true},{"content-type":"application/vnd.groove-identity-message","friendly":{"en":"Groove - Identity Message"},"encoding":"base64","extensions":["gim"],"xrefs":{"person":"#<Set:0x007fe00c6817a0>","template":"#<Set:0x007fe00c681660>"},"registered":true},{"content-type":"application/vnd.groove-injector","friendly":{"en":"Groove - Injector"},"encoding":"base64","extensions":["grv"],"xrefs":{"person":"#<Set:0x007fe00c680058>","template":"#<Set:0x007fe00caf3db0>"},"registered":true},{"content-type":"application/vnd.groove-tool-message","friendly":{"en":"Groove - Tool Message"},"encoding":"base64","extensions":["gtm"],"xrefs":{"person":"#<Set:0x007fe00c68b070>","template":"#<Set:0x007fe00c68af30>"},"registered":true},{"content-type":"application/vnd.groove-tool-template","friendly":{"en":"Groove - Tool Template"},"encoding":"base64","extensions":["tpl"],"xrefs":{"person":"#<Set:0x007fe00c689928>","template":"#<Set:0x007fe00c6897e8>"},"registered":true},{"content-type":"application/vnd.groove-vcard","friendly":{"en":"Groove - Vcard"},"encoding":"base64","extensions":["vcg"],"xrefs":{"person":"#<Set:0x007fe00c6881e0>","template":"#<Set:0x007fe00c6880a0>"},"registered":true},{"content-type":"application/vnd.hal+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cae85a0>","template":"#<Set:0x007fe00cae8280>"},"registered":true},{"content-type":"application/vnd.hal+xml","friendly":{"en":"Hypertext Application Language"},"encoding":"base64","extensions":["hal"],"xrefs":{"person":"#<Set:0x007fe00c692b68>","template":"#<Set:0x007fe00c692a28>"},"registered":true},{"content-type":"application/vnd.HandHeld-Entertainment+xml","friendly":{"en":"ZVUE Media Manager"},"encoding":"base64","extensions":["zmm"],"xrefs":{"person":"#<Set:0x007fe00c691330>","template":"#<Set:0x007fe00c6911f0>"},"registered":true},{"content-type":"application/vnd.hbci","friendly":{"en":"Homebanking Computer Interface (HBCI)"},"encoding":"base64","extensions":["hbci","hbc","kom","upa","pkd","bpd"],"xrefs":{"person":"#<Set:0x007fe00cae02b0>","template":"#<Set:0x007fe00c69bf38>"},"registered":true},{"content-type":"application/vnd.hcl-bireports","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c69a8e0>","template":"#<Set:0x007fe00c69a7a0>"},"registered":true},{"content-type":"application/vnd.heroku+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c699418>","template":"#<Set:0x007fe00c6992d8>"},"registered":true},{"content-type":"application/vnd.hhe.lesson-player","friendly":{"en":"Archipelago Lesson Player"},"encoding":"base64","extensions":["les"],"xrefs":{"person":"#<Set:0x007fe00cadb8a0>","template":"#<Set:0x007fe00cadb698>"},"registered":true},{"content-type":"application/vnd.hp-HPGL","friendly":{"en":"HP-GL/2 and HP RTL"},"encoding":"base64","extensions":["plt","hpgl"],"xrefs":{"person":"#<Set:0x007fe00c6a3e18>","template":"#<Set:0x007fe00c6a3cd8>"},"registered":true},{"content-type":"application/vnd.hp-hpid","friendly":{"en":"Hewlett Packard Instant Delivery"},"encoding":"base64","extensions":["hpid"],"xrefs":{"person":"#<Set:0x007fe00c6a2568>","template":"#<Set:0x007fe00c6a2428>"},"registered":true},{"content-type":"application/vnd.hp-hps","friendly":{"en":"Hewlett-Packard's WebPrintSmart"},"encoding":"base64","extensions":["hps"],"xrefs":{"person":"#<Set:0x007fe00c6a0d30>","template":"#<Set:0x007fe00c6a0bf0>"},"registered":true},{"content-type":"application/vnd.hp-jlyt","friendly":{"en":"HP Indigo Digital Press - Job Layout Languate"},"encoding":"base64","extensions":["jlt"],"xrefs":{"person":"#<Set:0x007fe00cad0928>","template":"#<Set:0x007fe00cad0360>"},"registered":true},{"content-type":"application/vnd.hp-PCL","friendly":{"en":"HP Printer Command Language"},"encoding":"base64","extensions":["pcl"],"xrefs":{"person":"#<Set:0x007fe00c6aaa10>","template":"#<Set:0x007fe00c6aa8d0>"},"registered":true},{"content-type":"application/vnd.hp-PCLXL","friendly":{"en":"PCL 6 Enhanced (Formely PCL XL)"},"encoding":"base64","extensions":["pclxl"],"xrefs":{"person":"#<Set:0x007fe00c6a92a0>","template":"#<Set:0x007fe00c6a9160>"},"registered":true},{"content-type":"application/vnd.httphone","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cacb838>","template":"#<Set:0x007fe00cacb4f0>"},"registered":true},{"content-type":"application/vnd.hydrostatix.sof-data","friendly":{"en":"Hydrostatix Master Suite"},"encoding":"base64","extensions":["sfd-hdstx"],"xrefs":{"person":"#<Set:0x007fe00cac8728>","template":"#<Set:0x007fe00cac85c0>"},"registered":true},{"content-type":"application/vnd.hyperdrive+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c6b2f58>","template":"#<Set:0x007fe00c6b2e18>"},"registered":true},{"content-type":"application/vnd.hzn-3d-crossword","friendly":{"en":"3D Crossword Plugin"},"encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c6b1888>","template":"#<Set:0x007fe00c6b1748>"},"registered":true},{"content-type":"application/vnd.ibm.afplinedata","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c6b03e8>","template":"#<Set:0x007fe00c6b02a8>"},"registered":true},{"content-type":"application/vnd.ibm.electronic-media","encoding":"base64","extensions":["emm"],"xrefs":{"person":"#<Set:0x007fe00cac17c0>","template":"#<Set:0x007fe00cac1450>"},"registered":true},{"content-type":"application/vnd.ibm.MiniPay","friendly":{"en":"MiniPay"},"encoding":"base64","extensions":["mpy"],"xrefs":{"person":"#<Set:0x007fe00c6baff0>","template":"#<Set:0x007fe00c6baeb0>"},"registered":true},{"content-type":"application/vnd.ibm.modcap","friendly":{"en":"MO:DCA-P"},"encoding":"base64","extensions":["afp","list3820","listafp"],"xrefs":{"person":"#<Set:0x007fe00c6b96a0>","template":"#<Set:0x007fe00c6b9560>"},"registered":true},{"content-type":"application/vnd.ibm.rights-management","friendly":{"en":"IBM DB2 Rights Manager"},"encoding":"base64","extensions":["irm"],"xrefs":{"person":"#<Set:0x007fe00cab3af8>","template":"#<Set:0x007fe00cab38c8>"},"registered":true},{"content-type":"application/vnd.ibm.secure-container","friendly":{"en":"IBM Electronic Media Management System - Secure Container"},"encoding":"base64","extensions":["sc"],"xrefs":{"person":"#<Set:0x007fe00c6c3e48>","template":"#<Set:0x007fe00c6c3d08>"},"registered":true},{"content-type":"application/vnd.iccprofile","friendly":{"en":"ICC profile"},"encoding":"base64","extensions":["icc","icm"],"xrefs":{"person":"#<Set:0x007fe00c6c2598>","template":"#<Set:0x007fe00c6c2458>"},"registered":true},{"content-type":"application/vnd.ieee.1905","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c6c1030>","template":"#<Set:0x007fe00c6c0ef0>"},"registered":true},{"content-type":"application/vnd.igloader","friendly":{"en":"igLoader"},"encoding":"base64","extensions":["igl"],"xrefs":{"person":"#<Set:0x007fe00caa92b0>","template":"#<Set:0x007fe00caa8ea0>"},"registered":true},{"content-type":"application/vnd.immervision-ivp","friendly":{"en":"ImmerVision PURE Players"},"encoding":"base64","extensions":["ivp"],"xrefs":{"person":"#<Set:0x007fe00c6ca9f0>","template":"#<Set:0x007fe00c6ca8b0>"},"registered":true},{"content-type":"application/vnd.immervision-ivu","friendly":{"en":"ImmerVision PURE Players"},"encoding":"base64","extensions":["ivu"],"xrefs":{"person":"#<Set:0x007fe00c6c9320>","template":"#<Set:0x007fe00c6c91e0>"},"registered":true},{"content-type":"application/vnd.ims.imsccv1p1","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ca9b868>","template":"#<Set:0x007fe00ca9b570>"},"registered":true},{"content-type":"application/vnd.ims.imsccv1p2","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c6d3a00>","template":"#<Set:0x007fe00c6d38c0>"},"registered":true},{"content-type":"application/vnd.ims.imsccv1p3","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c6d25d8>","template":"#<Set:0x007fe00c6d2498>"},"registered":true},{"content-type":"application/vnd.ims.lis.v2.result+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c6d11b0>","template":"#<Set:0x007fe00c6d1070>"},"registered":true},{"content-type":"application/vnd.ims.lti.v2.toolconsumerprofile+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ca93460>","template":"#<Set:0x007fe00ca92f60>"},"registered":true},{"content-type":"application/vnd.ims.lti.v2.toolproxy+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ca90710>","template":"#<Set:0x007fe00ca90418>"},"registered":true},{"content-type":"application/vnd.ims.lti.v2.toolproxy.id+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c6dae90>","template":"#<Set:0x007fe00c6dad50>"},"registered":true},{"content-type":"application/vnd.ims.lti.v2.toolsettings+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c6d9a90>","template":"#<Set:0x007fe00c6d9950>"},"registered":true},{"content-type":"application/vnd.ims.lti.v2.toolsettings.simple+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c6d8690>","template":"#<Set:0x007fe00c6d8550>"},"registered":true},{"content-type":"application/vnd.informedcontrol.rms+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ca89d20>","template":"#<Set:0x007fe00ca898c0>"},"registered":true},{"content-type":"application/vnd.informix-visionary","encoding":"base64","obsolete":true,"use-instead":"application/vnd.visionary","xrefs":{"person":"#<Set:0x007fe00c6e34c8>","template":"#<Set:0x007fe00c6e3388>","notes":"#<Set:0x007fe00c6e3248>"},"registered":true},{"content-type":"application/vnd.infotech.project","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c6e1ec0>","template":"#<Set:0x007fe00c6e1d80>"},"registered":true},{"content-type":"application/vnd.infotech.project+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c6e0a98>","template":"#<Set:0x007fe00c6e0958>"},"registered":true},{"content-type":"application/vnd.innopath.wamp.notification","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ca82520>","template":"#<Set:0x007fe00ca82278>"},"registered":true},{"content-type":"application/vnd.insors.igm","friendly":{"en":"IOCOM Visimeet"},"encoding":"base64","extensions":["igm"],"xrefs":{"person":"#<Set:0x007fe00c6eb7b8>","template":"#<Set:0x007fe00c6eb678>"},"registered":true},{"content-type":"application/vnd.intercon.formnet","friendly":{"en":"Intercon FormNet"},"encoding":"base64","extensions":["xpw","xpx"],"xrefs":{"person":"#<Set:0x007fe00c6e9ee0>","template":"#<Set:0x007fe00c6e9da0>"},"registered":true},{"content-type":"application/vnd.intergeo","friendly":{"en":"Interactive Geometry Software"},"encoding":"base64","extensions":["i2g"],"xrefs":{"person":"#<Set:0x007fe00c6e8680>","template":"#<Set:0x007fe00c6e8540>"},"registered":true},{"content-type":"application/vnd.intertrust.digibox","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c6f3d78>","template":"#<Set:0x007fe00c6f3c38>"},"registered":true},{"content-type":"application/vnd.intertrust.nncp","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c6f2950>","template":"#<Set:0x007fe00c6f2810>"},"registered":true},{"content-type":"application/vnd.intu.qbo","friendly":{"en":"Open Financial Exchange"},"encoding":"base64","extensions":["qbo"],"xrefs":{"person":"#<Set:0x007fe00c6f1168>","template":"#<Set:0x007fe00c6f1028>"},"registered":true},{"content-type":"application/vnd.intu.qfx","friendly":{"en":"Quicken"},"encoding":"base64","extensions":["qfx"],"xrefs":{"person":"#<Set:0x007fe00ca718d8>","template":"#<Set:0x007fe00ca712c0>"},"registered":true},{"content-type":"application/vnd.iptc.g2.catalogitem+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c6fb370>","template":"#<Set:0x007fe00c6fb230>"},"registered":true},{"content-type":"application/vnd.iptc.g2.conceptitem+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c6f9f70>","template":"#<Set:0x007fe00c6f9e30>"},"registered":true},{"content-type":"application/vnd.iptc.g2.knowledgeitem+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c6f8b70>","template":"#<Set:0x007fe00c6f8a30>"},"registered":true},{"content-type":"application/vnd.iptc.g2.newsitem+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ca6a8f8>","template":"#<Set:0x007fe00ca6a628>"},"registered":true},{"content-type":"application/vnd.iptc.g2.newsmessage+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7039d0>","template":"#<Set:0x007fe00c703890>"},"registered":true},{"content-type":"application/vnd.iptc.g2.packageitem+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7025d0>","template":"#<Set:0x007fe00c702490>"},"registered":true},{"content-type":"application/vnd.iptc.g2.planningitem+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7011d0>","template":"#<Set:0x007fe00c701090>"},"registered":true},{"content-type":"application/vnd.ipunplugged.rcprofile","friendly":{"en":"IP Unplugged Roaming Client"},"encoding":"base64","extensions":["rcprofile"],"xrefs":{"person":"#<Set:0x007fe00ca62ea0>","template":"#<Set:0x007fe00ca62b80>"},"registered":true},{"content-type":"application/vnd.irepository.package+xml","friendly":{"en":"iRepository / Lucidoc Editor"},"encoding":"base64","extensions":["irp"],"xrefs":{"person":"#<Set:0x007fe00c70b5e0>","template":"#<Set:0x007fe00c70b4a0>"},"registered":true},{"content-type":"application/vnd.is-xpr","friendly":{"en":"Express by Infoseek"},"encoding":"base64","extensions":["xpr"],"xrefs":{"person":"#<Set:0x007fe00c709dd0>","template":"#<Set:0x007fe00c709c90>"},"registered":true},{"content-type":"application/vnd.isac.fcs","friendly":{"en":"International Society for Advancement of Cytometry"},"encoding":"base64","extensions":["fcs"],"xrefs":{"person":"#<Set:0x007fe00c7085e8>","template":"#<Set:0x007fe00c7084a8>"},"registered":true},{"content-type":"application/vnd.jam","friendly":{"en":"Lightspeed Audio Lab"},"encoding":"base64","extensions":["jam"],"xrefs":{"person":"#<Set:0x007fe00ca58e50>","template":"#<Set:0x007fe00ca58c20>"},"registered":true},{"content-type":"application/vnd.japannet-directory-service","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7130b0>","template":"#<Set:0x007fe00c712f70>"},"registered":true},{"content-type":"application/vnd.japannet-jpnstore-wakeup","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c711c10>","template":"#<Set:0x007fe00c711ad0>"},"registered":true},{"content-type":"application/vnd.japannet-payment-wakeup","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c710810>","template":"#<Set:0x007fe00c7106d0>"},"registered":true},{"content-type":"application/vnd.japannet-registration","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ca515d8>","template":"#<Set:0x007fe00ca51240>"},"registered":true},{"content-type":"application/vnd.japannet-registration-wakeup","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c71b288>","template":"#<Set:0x007fe00c71b148>"},"registered":true},{"content-type":"application/vnd.japannet-setstore-wakeup","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c719e88>","template":"#<Set:0x007fe00c719d48>"},"registered":true},{"content-type":"application/vnd.japannet-verification","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c718a88>","template":"#<Set:0x007fe00c718948>"},"registered":true},{"content-type":"application/vnd.japannet-verification-wakeup","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ca4a710>","template":"#<Set:0x007fe00ca4a4b8>"},"registered":true},{"content-type":"application/vnd.jcp.javame.midlet-rms","friendly":{"en":"Mobile Information Device Profile"},"encoding":"base64","extensions":["rms"],"xrefs":{"person":"#<Set:0x007fe00c723b68>","template":"#<Set:0x007fe00c723a28>"},"registered":true},{"content-type":"application/vnd.jisp","friendly":{"en":"RhymBox"},"encoding":"base64","extensions":["jisp"],"xrefs":{"person":"#<Set:0x007fe00c722358>","template":"#<Set:0x007fe00c722218>"},"registered":true},{"content-type":"application/vnd.joost.joda-archive","friendly":{"en":"Joda Archive"},"encoding":"base64","extensions":["joda"],"xrefs":{"person":"#<Set:0x007fe00c720af8>","template":"#<Set:0x007fe00c7209b8>"},"registered":true},{"content-type":"application/vnd.jsk.isdn-ngn","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c72bf70>","template":"#<Set:0x007fe00c72be30>"},"registered":true},{"content-type":"application/vnd.kahootz","friendly":{"en":"Kahootz"},"encoding":"base64","extensions":["ktr","ktz"],"xrefs":{"person":"#<Set:0x007fe00c72a698>","template":"#<Set:0x007fe00c72a558>"},"registered":true},{"content-type":"application/vnd.kde.karbon","friendly":{"en":"KDE KOffice Office Suite - Karbon"},"encoding":"base64","extensions":["karbon"],"xrefs":{"person":"#<Set:0x007fe00c728e38>","template":"#<Set:0x007fe00c728cf8>"},"registered":true},{"content-type":"application/vnd.kde.kchart","friendly":{"en":"KDE KOffice Office Suite - KChart"},"encoding":"base64","extensions":["chrt"],"xrefs":{"person":"#<Set:0x007fe00ca3a798>","template":"#<Set:0x007fe00ca3a540>"},"registered":true},{"content-type":"application/vnd.kde.kformula","friendly":{"en":"KDE KOffice Office Suite - Kformula"},"encoding":"base64","extensions":["kfo"],"xrefs":{"person":"#<Set:0x007fe00c733ef0>","template":"#<Set:0x007fe00c733db0>"},"registered":true},{"content-type":"application/vnd.kde.kivio","friendly":{"en":"KDE KOffice Office Suite - Kivio"},"encoding":"base64","extensions":["flw"],"xrefs":{"person":"#<Set:0x007fe00c7327d0>","template":"#<Set:0x007fe00c732690>"},"registered":true},{"content-type":"application/vnd.kde.kontour","friendly":{"en":"KDE KOffice Office Suite - Kontour"},"encoding":"base64","extensions":["kon"],"xrefs":{"person":"#<Set:0x007fe00c731088>","template":"#<Set:0x007fe00c730f48>"},"registered":true},{"content-type":"application/vnd.kde.kpresenter","friendly":{"en":"KDE KOffice Office Suite - Kpresenter"},"encoding":"base64","extensions":["kpr","kpt"],"xrefs":{"person":"#<Set:0x007fe00ca32b10>","template":"#<Set:0x007fe00ca32430>"},"registered":true},{"content-type":"application/vnd.kde.kspread","friendly":{"en":"KDE KOffice Office Suite - Kspread"},"encoding":"base64","extensions":["ksp"],"xrefs":{"person":"#<Set:0x007fe00c73ae58>","template":"#<Set:0x007fe00c73ad18>"},"registered":true},{"content-type":"application/vnd.kde.kword","friendly":{"en":"KDE KOffice Office Suite - Kword"},"encoding":"base64","extensions":["kwd","kwt"],"xrefs":{"person":"#<Set:0x007fe00c739648>","template":"#<Set:0x007fe00c739508>"},"registered":true},{"content-type":"application/vnd.kenameaapp","friendly":{"en":"Kenamea App"},"encoding":"base64","extensions":["htke"],"xrefs":{"person":"#<Set:0x007fe00ba03618>","template":"#<Set:0x007fe00ba03190>"},"registered":true},{"content-type":"application/vnd.kidspiration","friendly":{"en":"Kidspiration"},"encoding":"base64","extensions":["kia"],"xrefs":{"person":"#<Set:0x007fe00c743e90>","template":"#<Set:0x007fe00c743d50>"},"registered":true},{"content-type":"application/vnd.Kinar","friendly":{"en":"Kinar Applications"},"encoding":"base64","extensions":["kne","knp","sdf"],"xrefs":{"person":"#<Set:0x007fe00c7424c8>","template":"#<Set:0x007fe00c742388>"},"registered":true},{"content-type":"application/vnd.koan","friendly":{"en":"SSEYO Koan Play File"},"encoding":"base64","extensions":["skd","skm","skp","skt"],"xrefs":{"person":"#<Set:0x007fe00c740920>","template":"#<Set:0x007fe00c7407e0>"},"registered":true},{"content-type":"application/vnd.kodak-descriptor","friendly":{"en":"Kodak Storyshare"},"encoding":"base64","extensions":["sse"],"xrefs":{"person":"#<Set:0x007fe00b9f8240>","template":"#<Set:0x007fe00c74bfa0>"},"registered":true},{"content-type":"application/vnd.las.las+xml","friendly":{"en":"Laser App Enterprise"},"encoding":"base64","extensions":["lasxml"],"xrefs":{"person":"#<Set:0x007fe00c74a8f8>","template":"#<Set:0x007fe00c74a7b8>"},"registered":true},{"content-type":"application/vnd.liberty-request+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c749408>","template":"#<Set:0x007fe00c7492c8>"},"registered":true},{"content-type":"application/vnd.llamagraphics.life-balance.desktop","friendly":{"en":"Life Balance - Desktop Edition"},"encoding":"base64","extensions":["lbd"],"xrefs":{"person":"#<Set:0x007fe00b9f3128>","template":"#<Set:0x007fe00b9f26b0>"},"registered":true},{"content-type":"application/vnd.llamagraphics.life-balance.exchange+xml","friendly":{"en":"Life Balance - Exchange Format"},"encoding":"base64","extensions":["lbe"],"xrefs":{"person":"#<Set:0x007fe00c753818>","template":"#<Set:0x007fe00c7536d8>"},"registered":true},{"content-type":"application/vnd.lotus-1-2-3","friendly":{"en":"Lotus 1-2-3"},"encoding":"base64","extensions":["wks","123"],"xrefs":{"person":"#<Set:0x007fe00c752170>","template":"#<Set:0x007fe00c752030>"},"registered":true},{"content-type":"application/vnd.lotus-approach","friendly":{"en":"Lotus Approach"},"encoding":"base64","extensions":["apr"],"xrefs":{"person":"#<Set:0x007fe00c7509b0>","template":"#<Set:0x007fe00c750870>"},"registered":true},{"content-type":"application/vnd.lotus-freelance","friendly":{"en":"Lotus Freelance"},"encoding":"base64","extensions":["pre"],"xrefs":{"person":"#<Set:0x007fe00b9e10e0>","template":"#<Set:0x007fe00b9e0ed8>"},"registered":true},{"content-type":"application/vnd.lotus-notes","friendly":{"en":"Lotus Notes"},"encoding":"base64","extensions":["nsf"],"xrefs":{"person":"#<Set:0x007fe00c75b040>","template":"#<Set:0x007fe00c75af00>"},"registered":true},{"content-type":"application/vnd.lotus-organizer","friendly":{"en":"Lotus Organizer"},"encoding":"base64","extensions":["org"],"xrefs":{"person":"#<Set:0x007fe00c7598f8>","template":"#<Set:0x007fe00c7597b8>"},"registered":true},{"content-type":"application/vnd.lotus-screencam","friendly":{"en":"Lotus Screencam"},"encoding":"base64","extensions":["scm"],"xrefs":{"person":"#<Set:0x007fe00c758188>","template":"#<Set:0x007fe00c758048>"},"registered":true},{"content-type":"application/vnd.lotus-wordpro","friendly":{"en":"Lotus Wordpro"},"encoding":"base64","extensions":["lwp"],"xrefs":{"person":"#<Set:0x007fe00c763948>","template":"#<Set:0x007fe00c763808>"},"registered":true},{"content-type":"application/vnd.macports.portpkg","friendly":{"en":"MacPorts Port System"},"encoding":"base64","extensions":["portpkg"],"xrefs":{"person":"#<Set:0x007fe00c762160>","template":"#<Set:0x007fe00c762020>"},"registered":true},{"content-type":"application/vnd.marlin.drm.actiontoken+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c760c70>","template":"#<Set:0x007fe00c760b30>"},"registered":true},{"content-type":"application/vnd.marlin.drm.conftoken+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00b9d2310>","template":"#<Set:0x007fe00b9d1e38>"},"registered":true},{"content-type":"application/vnd.marlin.drm.license+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c76bb48>","template":"#<Set:0x007fe00c76ba08>"},"registered":true},{"content-type":"application/vnd.marlin.drm.mdcf","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c76a748>","template":"#<Set:0x007fe00c76a608>"},"registered":true},{"content-type":"application/vnd.mason+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c769280>","template":"#<Set:0x007fe00c769140>"},"registered":true},{"content-type":"application/vnd.maxmind.maxmind-db","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00b9cb718>","template":"#<Set:0x007fe00b9cae80>"},"registered":true},{"content-type":"application/vnd.mcd","friendly":{"en":"Micro CADAM Helix D&D"},"encoding":"base64","extensions":["mcd"],"xrefs":{"person":"#<Set:0x007fe00c773780>","template":"#<Set:0x007fe00c773640>"},"registered":true},{"content-type":"application/vnd.medcalcdata","friendly":{"en":"MedCalc"},"encoding":"base64","extensions":["mc1"],"xrefs":{"person":"#<Set:0x007fe00c771f98>","template":"#<Set:0x007fe00c771e58>"},"registered":true},{"content-type":"application/vnd.mediastation.cdkey","friendly":{"en":"MediaRemote"},"encoding":"base64","extensions":["cdkey"],"xrefs":{"person":"#<Set:0x007fe00c770788>","template":"#<Set:0x007fe00c770648>"},"registered":true},{"content-type":"application/vnd.meridian-slingshot","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00b9c1970>","template":"#<Set:0x007fe00b9c15d8>"},"registered":true},{"content-type":"application/vnd.MFER","friendly":{"en":"Medical Waveform Encoding Format"},"encoding":"base64","extensions":["mwf"],"xrefs":{"person":"#<Set:0x007fe00c77b548>","template":"#<Set:0x007fe00c77b408>"},"registered":true},{"content-type":"application/vnd.mfmp","friendly":{"en":"Melody Format for Mobile Platform"},"encoding":"base64","extensions":["mfm"],"xrefs":{"person":"#<Set:0x007fe00c779d10>","template":"#<Set:0x007fe00c779bd0>"},"registered":true},{"content-type":"application/vnd.micro+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7787f8>","template":"#<Set:0x007fe00c7786b8>"},"registered":true},{"content-type":"application/vnd.micrografx.flo","friendly":{"en":"Micrografx"},"encoding":"base64","extensions":["flo"],"xrefs":{"person":"#<Set:0x007fe00b9b9a90>","template":"#<Set:0x007fe00b9b96f8>"},"registered":true},{"content-type":"application/vnd.micrografx.igx","friendly":{"en":"Micrografx iGrafx Professional"},"encoding":"base64","extensions":["igx"],"xrefs":{"person":"#<Set:0x007fe00c783090>","template":"#<Set:0x007fe00c782f50>"},"registered":true},{"content-type":"application/vnd.microsoft.portable-executable","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c781c68>","template":"#<Set:0x007fe00c781b28>"},"registered":true},{"content-type":"application/vnd.miele+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7807c8>","template":"#<Set:0x007fe00c780688>"},"registered":true},{"content-type":"application/vnd.mif","friendly":{"en":"FrameMaker Interchange Format"},"encoding":"base64","extensions":["mif"],"xrefs":{"person":"#<Set:0x007fe00b9a88a8>","template":"#<Set:0x007fe00b9a80d8>"},"registered":true},{"content-type":"application/vnd.minisoft-hp3000-save","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c78ac28>","template":"#<Set:0x007fe00c78aae8>"},"registered":true},{"content-type":"application/vnd.mitsubishi.misty-guard.trustweb","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c789788>","template":"#<Set:0x007fe00c789648>"},"registered":true},{"content-type":"application/vnd.Mobius.DAF","friendly":{"en":"Mobius Management Systems - UniversalArchive"},"encoding":"base64","extensions":["daf"],"xrefs":{"person":"#<Set:0x007fe00b9a3f60>","template":"#<Set:0x007fe00b9a3ab0>"},"registered":true},{"content-type":"application/vnd.Mobius.DIS","friendly":{"en":"Mobius Management Systems - Distribution Database"},"encoding":"base64","extensions":["dis"],"xrefs":{"person":"#<Set:0x007fe00c793698>","template":"#<Set:0x007fe00c793558>"},"registered":true},{"content-type":"application/vnd.Mobius.MBK","friendly":{"en":"Mobius Management Systems - Basket file"},"encoding":"base64","extensions":["mbk"],"xrefs":{"person":"#<Set:0x007fe00c791eb0>","template":"#<Set:0x007fe00c791d70>"},"registered":true},{"content-type":"application/vnd.Mobius.MQY","friendly":{"en":"Mobius Management Systems - Query File"},"encoding":"base64","extensions":["mqy"],"xrefs":{"person":"#<Set:0x007fe00c790768>","template":"#<Set:0x007fe00c790628>"},"registered":true},{"content-type":"application/vnd.Mobius.MSL","friendly":{"en":"Mobius Management Systems - Script Language"},"encoding":"base64","extensions":["msl"],"xrefs":{"person":"#<Set:0x007fe00b991040>","template":"#<Set:0x007fe00b990a28>"},"registered":true},{"content-type":"application/vnd.Mobius.PLC","friendly":{"en":"Mobius Management Systems - Policy Definition Language File"},"encoding":"base64","extensions":["plc"],"xrefs":{"person":"#<Set:0x007fe00c79ad80>","template":"#<Set:0x007fe00c79ac40>"},"registered":true},{"content-type":"application/vnd.Mobius.TXF","friendly":{"en":"Mobius Management Systems - Topic Index File"},"encoding":"base64","extensions":["txf"],"xrefs":{"person":"#<Set:0x007fe00c799660>","template":"#<Set:0x007fe00c799520>"},"registered":true},{"content-type":"application/vnd.mophun.application","friendly":{"en":"Mophun VM"},"encoding":"base64","extensions":["mpn"],"xrefs":{"person":"#<Set:0x007fe00b98bbe0>","template":"#<Set:0x007fe00b98b988>"},"registered":true},{"content-type":"application/vnd.mophun.certificate","friendly":{"en":"Mophun Certificate"},"encoding":"base64","extensions":["mpc"],"xrefs":{"person":"#<Set:0x007fe00b988f58>","template":"#<Set:0x007fe00b988b48>"},"registered":true},{"content-type":"application/vnd.motorola.flexsuite","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7a3138>","template":"#<Set:0x007fe00c7a2ff8>"},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.adsi","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7a1d10>","template":"#<Set:0x007fe00c7a1bd0>"},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.fis","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7a0910>","template":"#<Set:0x007fe00c7a07d0>"},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.gotap","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00b9814d8>","template":"#<Set:0x007fe00b980f88>"},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.kmr","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7ab310>","template":"#<Set:0x007fe00c7ab1d0>"},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.ttc","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7a9f10>","template":"#<Set:0x007fe00c7a9dd0>"},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.wem","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7a8b10>","template":"#<Set:0x007fe00c7a89d0>"},"registered":true},{"content-type":"application/vnd.motorola.iprm","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00b9788d8>","template":"#<Set:0x007fe00b978590>"},"registered":true},{"content-type":"application/vnd.mozilla.xul+xml","friendly":{"en":"XUL - XML User Interface Language"},"encoding":"base64","extensions":["xul"],"xrefs":{"person":"#<Set:0x007fe00c7b2ae8>","template":"#<Set:0x007fe00c7b29a8>"},"registered":true},{"content-type":"application/vnd.ms-3mfdocument","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7b15f8>","template":"#<Set:0x007fe00c7b14b8>"},"registered":true},{"content-type":"application/vnd.ms-artgalry","friendly":{"en":"Microsoft Artgalry"},"encoding":"base64","extensions":["cil"],"xrefs":{"person":"#<Set:0x007fe00b9739a0>","template":"#<Set:0x007fe00b973518>"},"registered":true},{"content-type":"application/vnd.ms-asf","encoding":"base64","extensions":["asf"],"xrefs":{"person":"#<Set:0x007fe00b970db8>","template":"#<Set:0x007fe00b970908>"},"registered":true},{"content-type":"application/vnd.ms-cab-compressed","friendly":{"en":"Microsoft Cabinet File"},"encoding":"base64","extensions":["cab"],"xrefs":{"person":"#<Set:0x007fe00c7baae0>","template":"#<Set:0x007fe00c7ba9a0>"},"registered":true},{"content-type":"application/vnd.ms-excel","friendly":{"en":"Microsoft Excel"},"encoding":"base64","extensions":["xls","xlt","xla","xlc","xlm","xlw"],"xrefs":{"person":"#<Set:0x007fe00c7b90f0>","template":"#<Set:0x007fe00c7b8fb0>"},"registered":true},{"content-type":"application/vnd.ms-excel.addin.macroEnabled.12","friendly":{"en":"Microsoft Excel - Add-In File"},"encoding":"base64","extensions":["xlam"],"xrefs":{"person":"#<Set:0x007fe00c1c8e70>","template":"#<Set:0x007fe00c1c8bc8>"},"registered":true},{"content-type":"application/vnd.ms-excel.sheet.binary.macroEnabled.12","friendly":{"en":"Microsoft Excel - Binary Workbook"},"encoding":"base64","extensions":["xlsb"],"xrefs":{"person":"#<Set:0x007fe00c7c2e98>","template":"#<Set:0x007fe00c7c2d58>"},"registered":true},{"content-type":"application/vnd.ms-excel.sheet.macroEnabled.12","friendly":{"en":"Microsoft Excel - Macro-Enabled Workbook"},"encoding":"base64","extensions":["xlsm"],"xrefs":{"person":"#<Set:0x007fe00c7c1778>","template":"#<Set:0x007fe00c7c1638>"},"registered":true},{"content-type":"application/vnd.ms-excel.template.macroEnabled.12","friendly":{"en":"Microsoft Excel - Macro-Enabled Template File"},"encoding":"base64","extensions":["xltm"],"xrefs":{"person":"#<Set:0x007fe00c7c0058>","template":"#<Set:0x007fe00c1bb900>"},"registered":true},{"content-type":"application/vnd.ms-fontobject","friendly":{"en":"Microsoft Embedded OpenType"},"encoding":"base64","extensions":["eot"],"xrefs":{"person":"#<Set:0x007fe00c7cbac0>","template":"#<Set:0x007fe00c7cb980>"},"registered":true},{"content-type":"application/vnd.ms-htmlhelp","friendly":{"en":"Microsoft Html Help File"},"encoding":"base64","extensions":["chm"],"xrefs":{"person":"#<Set:0x007fe00c7ca2d8>","template":"#<Set:0x007fe00c7ca198>"},"registered":true},{"content-type":"application/vnd.ms-ims","friendly":{"en":"Microsoft Class Server"},"encoding":"base64","extensions":["ims"],"xrefs":{"person":"#<Set:0x007fe00c7c8aa0>","template":"#<Set:0x007fe00c7c8960>"},"registered":true},{"content-type":"application/vnd.ms-lrm","friendly":{"en":"Microsoft Learning Resource Module"},"encoding":"base64","extensions":["lrm"],"xrefs":{"person":"#<Set:0x007fe00c1aa6a0>","template":"#<Set:0x007fe00c1aa4e8>"},"registered":true},{"content-type":"application/vnd.ms-office.activeX+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7d3b80>","template":"#<Set:0x007fe00c7d3a40>"},"registered":true},{"content-type":"application/vnd.ms-officetheme","friendly":{"en":"Microsoft Office System Release Theme"},"encoding":"base64","extensions":["thmx"],"xrefs":{"person":"#<Set:0x007fe00c7d24b0>","template":"#<Set:0x007fe00c7d2370>"},"registered":true},{"content-type":"application/vnd.ms-outlook","encoding":"base64","extensions":["msg"],"registered":false},{"content-type":"application/vnd.ms-pki.seccat","friendly":{"en":"Microsoft Trust UI Provider - Security Catalog"},"encoding":"base64","extensions":["cat"],"registered":false},{"content-type":"application/vnd.ms-pki.stl","friendly":{"en":"Microsoft Trust UI Provider - Certificate Trust Link"},"encoding":"base64","extensions":["stl"],"registered":false},{"content-type":"application/vnd.ms-playready.initiator+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c1a03f8>","template":"#<Set:0x007fe00c1a0218>"},"registered":true},{"content-type":"application/vnd.ms-powerpoint","friendly":{"en":"Microsoft PowerPoint"},"encoding":"base64","extensions":["ppt","pps","pot"],"xrefs":{"person":"#<Set:0x007fe00c7dac00>","template":"#<Set:0x007fe00c7daac0>"},"registered":true},{"content-type":"application/vnd.ms-powerpoint.addin.macroEnabled.12","friendly":{"en":"Microsoft PowerPoint - Add-in file"},"encoding":"base64","extensions":["ppam"],"xrefs":{"person":"#<Set:0x007fe00c7d94b8>","template":"#<Set:0x007fe00c7d9378>"},"registered":true},{"content-type":"application/vnd.ms-powerpoint.presentation.macroEnabled.12","friendly":{"en":"Microsoft PowerPoint - Macro-Enabled Presentation File"},"encoding":"base64","extensions":["pptm"],"xrefs":{"person":"#<Set:0x007fe00c19bb78>","template":"#<Set:0x007fe00c19b998>"},"registered":true},{"content-type":"application/vnd.ms-powerpoint.slide.macroEnabled.12","friendly":{"en":"Microsoft PowerPoint - Macro-Enabled Open XML Slide"},"encoding":"base64","extensions":["sldm"],"xrefs":{"person":"#<Set:0x007fe00c7e3df0>","template":"#<Set:0x007fe00c7e3cb0>"},"registered":true},{"content-type":"application/vnd.ms-powerpoint.slideshow.macroEnabled.12","friendly":{"en":"Microsoft PowerPoint - Macro-Enabled Slide Show File"},"encoding":"base64","extensions":["ppsm"],"xrefs":{"person":"#<Set:0x007fe00c7e26d0>","template":"#<Set:0x007fe00c7e2590>"},"registered":true},{"content-type":"application/vnd.ms-powerpoint.template.macroEnabled.12","friendly":{"en":"Micosoft PowerPoint - Macro-Enabled Template File"},"encoding":"base64","extensions":["potm"],"xrefs":{"person":"#<Set:0x007fe00c7e0fb0>","template":"#<Set:0x007fe00c7e0e70>"},"registered":true},{"content-type":"application/vnd.ms-project","friendly":{"en":"Microsoft Project"},"encoding":"base64","extensions":["mpp","mpt"],"xrefs":{"person":"#<Set:0x007fe00c191f60>","template":"#<Set:0x007fe00c191d30>"},"registered":true},{"content-type":"application/vnd.ms-tnef","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7ebcf8>","template":"#<Set:0x007fe00c7ebbb8>"},"registered":true},{"content-type":"application/vnd.ms-windows.devicepairing","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7ea808>","template":"#<Set:0x007fe00c7ea6c8>"},"registered":true},{"content-type":"application/vnd.ms-windows.printerpairing","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7e9408>","template":"#<Set:0x007fe00c7e92c8>"},"registered":true},{"content-type":"application/vnd.ms-windows.wsd.oob","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7e8008>","template":"#<Set:0x007fe00c18b958>"},"registered":true},{"content-type":"application/vnd.ms-wmdrm.lic-chlg-req","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c188e10>","template":"#<Set:0x007fe00c188c80>"},"registered":true},{"content-type":"application/vnd.ms-wmdrm.lic-resp","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7f34a8>","template":"#<Set:0x007fe00c7f3368>"},"registered":true},{"content-type":"application/vnd.ms-wmdrm.meter-chlg-req","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7f2080>","template":"#<Set:0x007fe00c7f1f40>"},"registered":true},{"content-type":"application/vnd.ms-wmdrm.meter-resp","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7f0c80>","template":"#<Set:0x007fe00c7f0b40>"},"registered":true},{"content-type":"application/vnd.ms-word.document.macroEnabled.12","friendly":{"en":"Micosoft Word - Macro-Enabled Document"},"encoding":"base64","extensions":["docm"],"xrefs":{"person":"#<Set:0x007fe00c1826c8>","template":"#<Set:0x007fe00c182358>"},"registered":true},{"content-type":"application/vnd.ms-word.template.macroEnabled.12","friendly":{"en":"Micosoft Word - Macro-Enabled Template"},"encoding":"base64","extensions":["dotm"],"xrefs":{"person":"#<Set:0x007fe00e8036f8>","template":"#<Set:0x007fe00e8035b8>"},"registered":true},{"content-type":"application/vnd.ms-works","friendly":{"en":"Microsoft Works"},"encoding":"base64","extensions":["wcm","wdb","wks","wps"],"xrefs":{"person":"#<Set:0x007fe00e801e20>","template":"#<Set:0x007fe00e801ce0>"},"registered":true},{"content-type":"application/vnd.ms-wpl","friendly":{"en":"Microsoft Windows Media Player Playlist"},"encoding":"base64","extensions":["wpl"],"xrefs":{"person":"#<Set:0x007fe00e8004d0>","template":"#<Set:0x007fe00e800390>"},"registered":true},{"content-type":"application/vnd.ms-xpsdocument","friendly":{"en":"Microsoft XML Paper Specification"},"encoding":"8bit","extensions":["xps"],"xrefs":{"person":"#<Set:0x007fe00e80b588>","template":"#<Set:0x007fe00e80b448>"},"registered":true},{"content-type":"application/vnd.msa-disk-image","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00e80a138>","template":"#<Set:0x007fe00e809ff8>"},"registered":true},{"content-type":"application/vnd.mseq","friendly":{"en":"3GPP MSEQ File"},"encoding":"base64","extensions":["mseq"],"xrefs":{"person":"#<Set:0x007fe00e808900>","template":"#<Set:0x007fe00e8087c0>"},"registered":true},{"content-type":"application/vnd.msign","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c168ea8>","template":"#<Set:0x007fe00c168ca0>"},"registered":true},{"content-type":"application/vnd.multiad.creator","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00e813288>","template":"#<Set:0x007fe00e813148>"},"registered":true},{"content-type":"application/vnd.multiad.creator.cif","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00e811e60>","template":"#<Set:0x007fe00e811d20>"},"registered":true},{"content-type":"application/vnd.music-niff","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00e810998>","template":"#<Set:0x007fe00e810858>"},"registered":true},{"content-type":"application/vnd.musician","friendly":{"en":"MUsical Score Interpreted Code Invented for the ASCII designation of Notation"},"encoding":"base64","extensions":["mus"],"xrefs":{"person":"#<Set:0x007fe00c151410>","template":"#<Set:0x007fe00c151028>"},"registered":true},{"content-type":"application/vnd.muvee.style","friendly":{"en":"Muvee Automatic Video Editing"},"encoding":"base64","extensions":["msty"],"xrefs":{"person":"#<Set:0x007fe00e81add0>","template":"#<Set:0x007fe00e81acb8>"},"registered":true},{"content-type":"application/vnd.mynfc","encoding":"base64","extensions":["taglet"],"xrefs":{"person":"#<Set:0x007fe00e819868>","template":"#<Set:0x007fe00e819728>"},"registered":true},{"content-type":"application/vnd.ncd.control","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00e818328>","template":"#<Set:0x007fe00e8181e8>"},"registered":true},{"content-type":"application/vnd.ncd.reference","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c141498>","template":"#<Set:0x007fe00c141268>"},"registered":true},{"content-type":"application/vnd.nervana","encoding":"base64","extensions":["ent","entity","req","request","bkm","kcm"],"xrefs":{"person":"#<Set:0x007fe00cd9b2e8>","template":"#<Set:0x007fe00cd9b1a8>"},"registered":true},{"content-type":"application/vnd.netfpx","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cd99b00>","template":"#<Set:0x007fe00cd999c0>"},"registered":true},{"content-type":"application/vnd.neurolanguage.nlu","friendly":{"en":"neuroLanguage"},"encoding":"base64","extensions":["nlu"],"xrefs":{"person":"#<Set:0x007fe00cd98318>","template":"#<Set:0x007fe00cd981d8>"},"registered":true},{"content-type":"application/vnd.nintendo.nitro.rom","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c13a238>","template":"#<Set:0x007fe00c13a008>"},"registered":true},{"content-type":"application/vnd.nintendo.snes.rom","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cda3600>","template":"#<Set:0x007fe00cda34c0>"},"registered":true},{"content-type":"application/vnd.nitf","encoding":"base64","extensions":["nitf","ntf"],"xrefs":{"person":"#<Set:0x007fe00cda1f58>","template":"#<Set:0x007fe00cda1e18>"},"registered":true},{"content-type":"application/vnd.noblenet-directory","friendly":{"en":"NobleNet Directory"},"encoding":"base64","extensions":["nnd"],"xrefs":{"person":"#<Set:0x007fe00cda06a8>","template":"#<Set:0x007fe00cda0568>"},"registered":true},{"content-type":"application/vnd.noblenet-sealer","friendly":{"en":"NobleNet Sealer"},"encoding":"base64","extensions":["nns"],"xrefs":{"person":"#<Set:0x007fe00cdabee0>","template":"#<Set:0x007fe00cdabda0>"},"registered":true},{"content-type":"application/vnd.noblenet-web","friendly":{"en":"NobleNet Web"},"encoding":"base64","extensions":["nnw"],"xrefs":{"person":"#<Set:0x007fe00cdaa798>","template":"#<Set:0x007fe00cdaa658>"},"registered":true},{"content-type":"application/vnd.nokia.catalogs","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cda92a8>","template":"#<Set:0x007fe00cda9168>"},"registered":true},{"content-type":"application/vnd.nokia.conml+wbxml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c12b878>","template":"#<Set:0x007fe00c12b210>"},"registered":true},{"content-type":"application/vnd.nokia.conml+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cdb3690>","template":"#<Set:0x007fe00cdb3550>"},"registered":true},{"content-type":"application/vnd.nokia.iptv.config+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cdb2268>","template":"#<Set:0x007fe00cdb2128>"},"registered":true},{"content-type":"application/vnd.nokia.iSDS-radio-presets","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cdb0e68>","template":"#<Set:0x007fe00cdb0d28>"},"registered":true},{"content-type":"application/vnd.nokia.landmark+wbxml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c11b658>","template":"#<Set:0x007fe00c11aeb0>"},"registered":true},{"content-type":"application/vnd.nokia.landmark+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cdbb9d0>","template":"#<Set:0x007fe00cdbb890>"},"registered":true},{"content-type":"application/vnd.nokia.landmarkcollection+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cdba5a8>","template":"#<Set:0x007fe00cdba468>"},"registered":true},{"content-type":"application/vnd.nokia.n-gage.ac+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cdb91a8>","template":"#<Set:0x007fe00cdb9068>"},"registered":true},{"content-type":"application/vnd.nokia.n-gage.data","friendly":{"en":"N-Gage Game Data"},"encoding":"base64","extensions":["ngdat"],"xrefs":{"person":"#<Set:0x007fe00cdc3ef0>","template":"#<Set:0x007fe00cdc3db0>"},"registered":true},{"content-type":"application/vnd.nokia.n-gage.symbian.install","friendly":{"en":"N-Gage Game Installer"},"encoding":"base64","extensions":["n-gage"],"obsolete":true,"xrefs":{"person":"#<Set:0x007fe00cdc2618>","template":"#<Set:0x007fe00cdc24d8>","notes":"#<Set:0x007fe00cdc2398>"},"registered":true},{"content-type":"application/vnd.nokia.ncd","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cdc10b0>","template":"#<Set:0x007fe00cdc0f70>"},"registered":true},{"content-type":"application/vnd.nokia.ncd+xml","encoding":"base64","obsolete":true,"use-instead":"application/vnd.nokia.ncd","registered":true},{"content-type":"application/vnd.nokia.pcd+wbxml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ca292b8>","template":"#<Set:0x007fe00ca28f48>"},"registered":true},{"content-type":"application/vnd.nokia.pcd+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cdcb290>","template":"#<Set:0x007fe00cdcb150>"},"registered":true},{"content-type":"application/vnd.nokia.radio-preset","friendly":{"en":"Nokia Radio Application - Preset"},"encoding":"base64","extensions":["rpst"],"xrefs":{"person":"#<Set:0x007fe00cdc9b70>","template":"#<Set:0x007fe00cdc9a30>"},"registered":true},{"content-type":"application/vnd.nokia.radio-presets","friendly":{"en":"Nokia Radio Application - Preset"},"encoding":"base64","extensions":["rpss"],"xrefs":{"person":"#<Set:0x007fe00cdc84a0>","template":"#<Set:0x007fe00cdc8360>"},"registered":true},{"content-type":"application/vnd.novadigm.EDM","friendly":{"en":"Novadigm's RADIA and EDM products"},"encoding":"base64","extensions":["edm"],"xrefs":{"person":"#<Set:0x007fe00ca185a8>","template":"#<Set:0x007fe00cdd3f80>"},"registered":true},{"content-type":"application/vnd.novadigm.EDX","friendly":{"en":"Novadigm's RADIA and EDM products"},"encoding":"base64","extensions":["edx"],"xrefs":{"person":"#<Set:0x007fe00cdd29f0>","template":"#<Set:0x007fe00cdd28b0>"},"registered":true},{"content-type":"application/vnd.novadigm.EXT","friendly":{"en":"Novadigm's RADIA and EDM products"},"encoding":"base64","extensions":["ext"],"xrefs":{"person":"#<Set:0x007fe00cdd1320>","template":"#<Set:0x007fe00cdd11e0>"},"registered":true},{"content-type":"application/vnd.ntt-local.content-share","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ca13c38>","template":"#<Set:0x007fe00ca13a58>"},"registered":true},{"content-type":"application/vnd.ntt-local.file-transfer","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ca10b00>","template":"#<Set:0x007fe00ca10560>"},"registered":true},{"content-type":"application/vnd.ntt-local.ogw_remote-access","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cddadd0>","template":"#<Set:0x007fe00cddac90>"},"registered":true},{"content-type":"application/vnd.ntt-local.sip-ta_remote","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cdd99d0>","template":"#<Set:0x007fe00cdd9890>"},"registered":true},{"content-type":"application/vnd.ntt-local.sip-ta_tcp_stream","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cdd85d0>","template":"#<Set:0x007fe00cdd8490>"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.chart","friendly":{"en":"OpenDocument Chart"},"encoding":"base64","extensions":["odc"],"xrefs":{"person":"#<Set:0x007fe00ca087c0>","template":"#<Set:0x007fe00ca08540>"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.chart-template","friendly":{"en":"OpenDocument Chart Template"},"encoding":"base64","extensions":["odc","otc"],"xrefs":{"person":"#<Set:0x007fe00cde2b98>","template":"#<Set:0x007fe00cde2a30>"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.database","friendly":{"en":"OpenDocument Database"},"encoding":"base64","extensions":["odb"],"xrefs":{"person":"#<Set:0x007fe00cde1428>","template":"#<Set:0x007fe00cde12c0>"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.formula","friendly":{"en":"OpenDocument Formula"},"encoding":"base64","extensions":["odf"],"xrefs":{"person":"#<Set:0x007fe00ca03900>","template":"#<Set:0x007fe00ca036d0>"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.formula-template","friendly":{"en":"OpenDocument Formula Template"},"encoding":"base64","extensions":["odf","odft"],"xrefs":{"person":"#<Set:0x007fe00cdebdb0>","template":"#<Set:0x007fe00cdebc48>"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.graphics","friendly":{"en":"OpenDocument Graphics"},"encoding":"base64","extensions":["odg"],"xrefs":{"person":"#<Set:0x007fe00cdea640>","template":"#<Set:0x007fe00cdea4d8>"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.graphics-template","friendly":{"en":"OpenDocument Graphics Template"},"encoding":"base64","extensions":["otg"],"xrefs":{"person":"#<Set:0x007fe00cde8f20>","template":"#<Set:0x007fe00cde8db8>"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.image","friendly":{"en":"OpenDocument Image"},"encoding":"base64","extensions":["odi"],"xrefs":{"person":"#<Set:0x007fe00cdf3da8>","template":"#<Set:0x007fe00cdf3c40>"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.image-template","friendly":{"en":"OpenDocument Image Template"},"encoding":"base64","extensions":["odi","oti"],"xrefs":{"person":"#<Set:0x007fe00cdf2688>","template":"#<Set:0x007fe00cdf2520>"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.presentation","friendly":{"en":"OpenDocument Presentation"},"encoding":"base64","extensions":["odp"],"xrefs":{"person":"#<Set:0x007fe00cdf0f40>","template":"#<Set:0x007fe00cdf0dd8>"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.presentation-template","friendly":{"en":"OpenDocument Presentation Template"},"encoding":"base64","extensions":["otp"],"xrefs":{"person":"#<Set:0x007fe00c9e9f50>","template":"#<Set:0x007fe00c9e9c58>"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.spreadsheet","friendly":{"en":"OpenDocument Spreadsheet"},"encoding":"base64","extensions":["ods"],"xrefs":{"person":"#<Set:0x007fe00cdfb530>","template":"#<Set:0x007fe00cdfb3c8>"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.spreadsheet-template","friendly":{"en":"OpenDocument Spreadsheet Template"},"encoding":"base64","extensions":["ots"],"xrefs":{"person":"#<Set:0x007fe00cdf9e10>","template":"#<Set:0x007fe00cdf9ca8>"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.text","friendly":{"en":"OpenDocument Text"},"encoding":"base64","extensions":["odt"],"xrefs":{"person":"#<Set:0x007fe00cdf86c8>","template":"#<Set:0x007fe00cdf8560>"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.text-master","friendly":{"en":"OpenDocument Text Master"},"encoding":"base64","extensions":["odm"],"xrefs":{"person":"#<Set:0x007fe00ce03758>","template":"#<Set:0x007fe00ce035f0>"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.text-template","friendly":{"en":"OpenDocument Text Template"},"encoding":"base64","extensions":["ott"],"xrefs":{"person":"#<Set:0x007fe00ce02038>","template":"#<Set:0x007fe00ce01ed0>"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.text-web","friendly":{"en":"Open Document Text Web"},"encoding":"base64","extensions":["oth"],"xrefs":{"person":"#<Set:0x007fe00ce008f0>","template":"#<Set:0x007fe00ce00788>"},"registered":true},{"content-type":"application/vnd.obn","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce0b980>","template":"#<Set:0x007fe00ce0b840>"},"registered":true},{"content-type":"application/vnd.oftn.l10n+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce0a490>","template":"#<Set:0x007fe00ce0a350>"},"registered":true},{"content-type":"application/vnd.oipf.contentaccessdownload+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce08fc8>","template":"#<Set:0x007fe00ce08e88>"},"registered":true},{"content-type":"application/vnd.oipf.contentaccessstreaming+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c9d3070>","template":"#<Set:0x007fe00c9d2e68>"},"registered":true},{"content-type":"application/vnd.oipf.cspg-hexbinary","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce13a68>","template":"#<Set:0x007fe00ce13928>"},"registered":true},{"content-type":"application/vnd.oipf.dae.svg+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce12640>","template":"#<Set:0x007fe00ce12500>"},"registered":true},{"content-type":"application/vnd.oipf.dae.xhtml+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce11218>","template":"#<Set:0x007fe00ce110d8>"},"registered":true},{"content-type":"application/vnd.oipf.mippvcontrolmessage+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c9ca998>","template":"#<Set:0x007fe00c9ca128>"},"registered":true},{"content-type":"application/vnd.oipf.pae.gem","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce1b8a8>","template":"#<Set:0x007fe00ce1b768>"},"registered":true},{"content-type":"application/vnd.oipf.spdiscovery+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce1a480>","template":"#<Set:0x007fe00ce1a340>"},"registered":true},{"content-type":"application/vnd.oipf.spdlist+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce19080>","template":"#<Set:0x007fe00ce18f40>"},"registered":true},{"content-type":"application/vnd.oipf.ueprofile+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c9c33c8>","template":"#<Set:0x007fe00c9c2dd8>"},"registered":true},{"content-type":"application/vnd.oipf.userprofile+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce23328>","template":"#<Set:0x007fe00ce231e8>"},"registered":true},{"content-type":"application/vnd.olpc-sugar","friendly":{"en":"Sugar Linux Application Bundle"},"encoding":"base64","extensions":["xo"],"xrefs":{"person":"#<Set:0x007fe00ce21b90>","template":"#<Set:0x007fe00ce21a50>"},"registered":true},{"content-type":"application/vnd.oma-scws-config","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce206a0>","template":"#<Set:0x007fe00ce20560>"},"registered":true},{"content-type":"application/vnd.oma-scws-http-request","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce2b8c0>","template":"#<Set:0x007fe00ce2b780>"},"registered":true},{"content-type":"application/vnd.oma-scws-http-response","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce2a4c0>","template":"#<Set:0x007fe00ce2a380>"},"registered":true},{"content-type":"application/vnd.oma.bcast.associated-procedure-parameter+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce28fa8>","template":"#<Set:0x007fe00ce28e68>"},"registered":true},{"content-type":"application/vnd.oma.bcast.drm-trigger+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c9b2078>","template":"#<Set:0x007fe00c9b14c0>"},"registered":true},{"content-type":"application/vnd.oma.bcast.imd+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce33048>","template":"#<Set:0x007fe00ce32ee0>"},"registered":true},{"content-type":"application/vnd.oma.bcast.ltkm","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce31bf8>","template":"#<Set:0x007fe00ce31a90>"},"registered":true},{"content-type":"application/vnd.oma.bcast.notification+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce307a8>","template":"#<Set:0x007fe00ce30640>"},"registered":true},{"content-type":"application/vnd.oma.bcast.provisioningtrigger","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce3ba68>","template":"#<Set:0x007fe00ce3b900>"},"registered":true},{"content-type":"application/vnd.oma.bcast.sgboot","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce3a640>","template":"#<Set:0x007fe00ce3a4d8>"},"registered":true},{"content-type":"application/vnd.oma.bcast.sgdd+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce391f0>","template":"#<Set:0x007fe00ce39088>"},"registered":true},{"content-type":"application/vnd.oma.bcast.sgdu","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c9a3730>","template":"#<Set:0x007fe00c9a3410>"},"registered":true},{"content-type":"application/vnd.oma.bcast.simple-symbol-container","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce43cb8>","template":"#<Set:0x007fe00ce43b50>"},"registered":true},{"content-type":"application/vnd.oma.bcast.smartcard-trigger+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce42890>","template":"#<Set:0x007fe00ce42728>"},"registered":true},{"content-type":"application/vnd.oma.bcast.sprov+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce41468>","template":"#<Set:0x007fe00ce41300>"},"registered":true},{"content-type":"application/vnd.oma.bcast.stkm","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce40018>","template":"#<Set:0x007fe00c99b620>"},"registered":true},{"content-type":"application/vnd.oma.cab-address-book+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce4af68>","template":"#<Set:0x007fe00ce4ae00>"},"registered":true},{"content-type":"application/vnd.oma.cab-feature-handler+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce49b40>","template":"#<Set:0x007fe00ce499d8>"},"registered":true},{"content-type":"application/vnd.oma.cab-pcc+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce48718>","template":"#<Set:0x007fe00ce485b0>"},"registered":true},{"content-type":"application/vnd.oma.cab-subs-invite+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce53550>","template":"#<Set:0x007fe00ce533e8>"},"registered":true},{"content-type":"application/vnd.oma.cab-user-prefs+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce52128>","template":"#<Set:0x007fe00ce51fc0>"},"registered":true},{"content-type":"application/vnd.oma.dcd","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce50c38>","template":"#<Set:0x007fe00ce50ad0>"},"registered":true},{"content-type":"application/vnd.oma.dcdc","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce5be80>","template":"#<Set:0x007fe00ce5bd18>"},"registered":true},{"content-type":"application/vnd.oma.dd2+xml","friendly":{"en":"OMA Download Agents"},"encoding":"base64","extensions":["dd2"],"xrefs":{"person":"#<Set:0x007fe00ce5a5f8>","template":"#<Set:0x007fe00ce5a4b8>"},"registered":true},{"content-type":"application/vnd.oma.drm.risd+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce591a8>","template":"#<Set:0x007fe00ce59040>"},"registered":true},{"content-type":"application/vnd.oma.group-usage-list+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c982008>","template":"#<Set:0x007fe00c981950>"},"registered":true},{"content-type":"application/vnd.oma.pal+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce63090>","template":"#<Set:0x007fe00ce62f28>"},"registered":true},{"content-type":"application/vnd.oma.poc.detailed-progress-report+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce61bc8>","template":"#<Set:0x007fe00ce61ab0>"},"registered":true},{"content-type":"application/vnd.oma.poc.final-report+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce607f0>","template":"#<Set:0x007fe00ce606b0>"},"registered":true},{"content-type":"application/vnd.oma.poc.groups+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c978300>","template":"#<Set:0x007fe00ce6bee8>"},"registered":true},{"content-type":"application/vnd.oma.poc.invocation-descriptor+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce6ac00>","template":"#<Set:0x007fe00ce6aac0>"},"registered":true},{"content-type":"application/vnd.oma.poc.optimized-progress-report+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce69800>","template":"#<Set:0x007fe00ce696c0>"},"registered":true},{"content-type":"application/vnd.oma.push","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce68360>","template":"#<Set:0x007fe00ce681f8>"},"registered":true},{"content-type":"application/vnd.oma.scidm.messages+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce73a08>","template":"#<Set:0x007fe00ce738a0>"},"registered":true},{"content-type":"application/vnd.oma.xcap-directory+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce725e0>","template":"#<Set:0x007fe00ce72478>"},"registered":true},{"content-type":"application/vnd.omads-email+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce71140>","template":"#<Set:0x007fe00ce71028>"},"registered":true},{"content-type":"application/vnd.omads-file+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c96b060>","template":"#<Set:0x007fe00c96abd8>"},"registered":true},{"content-type":"application/vnd.omads-folder+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce7b280>","template":"#<Set:0x007fe00ce7b140>"},"registered":true},{"content-type":"application/vnd.omaloc-supl-init","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce79db8>","template":"#<Set:0x007fe00ce79c78>"},"registered":true},{"content-type":"application/vnd.openblox.game+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce788f0>","template":"#<Set:0x007fe00ce787b0>"},"registered":true},{"content-type":"application/vnd.openblox.game-binary","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce83818>","template":"#<Set:0x007fe00ce836d8>"},"registered":true},{"content-type":"application/vnd.openeye.oeb","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce82378>","template":"#<Set:0x007fe00ce82238>"},"registered":true},{"content-type":"application/vnd.openofficeorg.extension","friendly":{"en":"Open Office Extension"},"encoding":"base64","extensions":["oxt"],"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.custom-properties+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce8be50>","template":"#<Set:0x007fe00ce8bd10>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.customXmlProperties+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce8aa50>","template":"#<Set:0x007fe00ce8a910>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawing+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce89650>","template":"#<Set:0x007fe00ce89510>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.chart+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce88250>","template":"#<Set:0x007fe00ce88110>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce93a88>","template":"#<Set:0x007fe00ce93948>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce92688>","template":"#<Set:0x007fe00ce92548>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce91288>","template":"#<Set:0x007fe00ce91148>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c94b030>","template":"#<Set:0x007fe00c94a770>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce9b148>","template":"#<Set:0x007fe00ce9b008>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.extended-properties+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce99d48>","template":"#<Set:0x007fe00ce99c08>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce98948>","template":"#<Set:0x007fe00ce98808>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.comments+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c940ea0>","template":"#<Set:0x007fe00c940ba8>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cea2f60>","template":"#<Set:0x007fe00cea2e20>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cea1b60>","template":"#<Set:0x007fe00cea1a20>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cea0760>","template":"#<Set:0x007fe00cea0620>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.presentation","friendly":{"en":"Microsoft Office - OOXML - Presentation"},"encoding":"base64","extensions":["pptx"],"xrefs":{"person":"#<Set:0x007fe00ceaba70>","template":"#<Set:0x007fe00ceab930>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ceaa648>","template":"#<Set:0x007fe00ceaa508>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.presProps+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cea9248>","template":"#<Set:0x007fe00cea9108>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slide","friendly":{"en":"Microsoft Office - OOXML - Presentation (Slide)"},"encoding":"base64","extensions":["sldx"],"xrefs":{"person":"#<Set:0x007fe00c932850>","template":"#<Set:0x007fe00c932580>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slide+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ceb32c0>","template":"#<Set:0x007fe00ceb3180>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ceb1ec0>","template":"#<Set:0x007fe00ceb1d80>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ceb0ac0>","template":"#<Set:0x007fe00ceb0980>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slideshow","friendly":{"en":"Microsoft Office - OOXML - Presentation (Slideshow)"},"encoding":"base64","extensions":["ppsx"],"xrefs":{"person":"#<Set:0x007fe00cebb998>","template":"#<Set:0x007fe00cebb858>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ceba570>","template":"#<Set:0x007fe00ceba430>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ceb9170>","template":"#<Set:0x007fe00ceb9030>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c01edb8>","template":"#<Set:0x007fe00c01e2c8>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.tags+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cec3120>","template":"#<Set:0x007fe00cec2fe0>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.template","friendly":{"en":"Microsoft Office - OOXML - Presentation Template"},"encoding":"base64","extensions":["potx"],"xrefs":{"person":"#<Set:0x007fe00cec19b0>","template":"#<Set:0x007fe00cec1870>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.template.main+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cec05b0>","template":"#<Set:0x007fe00cec0470>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cecb668>","template":"#<Set:0x007fe00cecb528>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ceca268>","template":"#<Set:0x007fe00ceca128>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cec8e68>","template":"#<Set:0x007fe00cec8d28>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c928f80>","template":"#<Set:0x007fe00c928468>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ced2da0>","template":"#<Set:0x007fe00ced2c60>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ced19a0>","template":"#<Set:0x007fe00ced1860>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ced05a0>","template":"#<Set:0x007fe00ced0460>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c9209c0>","template":"#<Set:0x007fe00c920380>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cedad98>","template":"#<Set:0x007fe00cedac58>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ced9998>","template":"#<Set:0x007fe00ced9858>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ced8598>","template":"#<Set:0x007fe00ced8458>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cee3bc8>","template":"#<Set:0x007fe00cee3a88>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cee27c8>","template":"#<Set:0x007fe00cee2688>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cee13c8>","template":"#<Set:0x007fe00cee1288>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet","friendly":{"en":"Microsoft Office - OOXML - Spreadsheet"},"encoding":"base64","extensions":["xlsx"],"xrefs":{"person":"#<Set:0x007fe00c913810>","template":"#<Set:0x007fe00c9133d8>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ceeb800>","template":"#<Set:0x007fe00ceeb6c0>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ceea400>","template":"#<Set:0x007fe00ceea2c0>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cee9000>","template":"#<Set:0x007fe00cee8ec0>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c90afd0>","template":"#<Set:0x007fe00c90a210>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cef3050>","template":"#<Set:0x007fe00cef2f10>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.template","friendly":{"en":"Microsoft Office - OOXML - Spreadsheet Teplate"},"encoding":"base64","extensions":["xltx"],"xrefs":{"person":"#<Set:0x007fe00cef18e0>","template":"#<Set:0x007fe00cef17a0>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cef04e0>","template":"#<Set:0x007fe00cef03a0>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cefb520>","template":"#<Set:0x007fe00cefb3e0>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cefa120>","template":"#<Set:0x007fe00cef9fe0>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cef8d20>","template":"#<Set:0x007fe00cef8be0>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.theme+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c8f95c8>","template":"#<Set:0x007fe00c8f9078>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.themeOverride+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf031a8>","template":"#<Set:0x007fe00cf03068>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.vmlDrawing","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf01da8>","template":"#<Set:0x007fe00cf01c68>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf009a8>","template":"#<Set:0x007fe00cf00868>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.document","friendly":{"en":"Microsoft Office - OOXML - Word Document"},"encoding":"base64","extensions":["docx"],"xrefs":{"person":"#<Set:0x007fe00c8f2188>","template":"#<Set:0x007fe00c8f1c60>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf0b678>","template":"#<Set:0x007fe00cf0b538>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf0a278>","template":"#<Set:0x007fe00cf0a138>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf08e78>","template":"#<Set:0x007fe00cf08d38>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c8e89a8>","template":"#<Set:0x007fe00cf13eb8>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf12bf8>","template":"#<Set:0x007fe00cf12ab8>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf117f8>","template":"#<Set:0x007fe00cf116b8>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf103f8>","template":"#<Set:0x007fe00cf102b8>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf1b668>","template":"#<Set:0x007fe00cf1b528>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf1a268>","template":"#<Set:0x007fe00cf1a128>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.template","friendly":{"en":"Microsoft Office - OOXML - Word Document Template"},"encoding":"base64","extensions":["dotx"],"xrefs":{"person":"#<Set:0x007fe00cf18af8>","template":"#<Set:0x007fe00cf189b8>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c8d8580>","template":"#<Set:0x007fe00cf23f20>"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf22c60>","template":"#<Set:0x007fe00cf22b20>"},"registered":true},{"content-type":"application/vnd.openxmlformats-package.core-properties+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf21860>","template":"#<Set:0x007fe00cf21720>"},"registered":true},{"content-type":"application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf20460>","template":"#<Set:0x007fe00cf20320>"},"registered":true},{"content-type":"application/vnd.openxmlformats-package.relationships+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf2bef0>","template":"#<Set:0x007fe00cf2bdb0>"},"registered":true},{"content-type":"application/vnd.oracle.resource+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf2aa50>","template":"#<Set:0x007fe00cf2a910>"},"registered":true},{"content-type":"application/vnd.orange.indata","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf295b0>","template":"#<Set:0x007fe00cf29470>"},"registered":true},{"content-type":"application/vnd.osa.netdeploy","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf280e8>","template":"#<Set:0x007fe00c8cbcb8>"},"registered":true},{"content-type":"application/vnd.osgeo.mapguide.package","friendly":{"en":"MapGuide DBXML"},"encoding":"base64","extensions":["mgp"],"xrefs":{"person":"#<Set:0x007fe00cf33880>","template":"#<Set:0x007fe00cf33740>"},"registered":true},{"content-type":"application/vnd.osgi.bundle","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf323b8>","template":"#<Set:0x007fe00cf32278>"},"registered":true},{"content-type":"application/vnd.osgi.dp","friendly":{"en":"OSGi Deployment Package"},"encoding":"base64","extensions":["dp"],"xrefs":{"person":"#<Set:0x007fe00cf30c48>","template":"#<Set:0x007fe00cf30b08>"},"registered":true},{"content-type":"application/vnd.osgi.subsystem","encoding":"base64","extensions":["esa"],"xrefs":{"person":"#<Set:0x007fe00c8c2050>","template":"#<Set:0x007fe00c8c1ee8>"},"registered":true},{"content-type":"application/vnd.otps.ct-kip+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf3be18>","template":"#<Set:0x007fe00cf3bcd8>"},"registered":true},{"content-type":"application/vnd.oxli.countgraph","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf3a950>","template":"#<Set:0x007fe00cf3a810>"},"registered":true},{"content-type":"application/vnd.pagerduty+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf39488>","template":"#<Set:0x007fe00cf39348>"},"registered":true},{"content-type":"application/vnd.palm","friendly":{"en":"PalmOS Data"},"encoding":"base64","extensions":["prc","pdb","pqa","oprc"],"xrefs":{"person":"#<Set:0x007fe00c8bb520>","template":"#<Set:0x007fe00c8bb278>"},"registered":true},{"content-type":"application/vnd.panoply","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c8b88c0>","template":"#<Set:0x007fe00cf43f50>"},"registered":true},{"content-type":"application/vnd.paos.xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf42b28>","template":"#<Set:0x007fe00cf429e8>"},"registered":true},{"content-type":"application/vnd.pawaafile","friendly":{"en":"PawaaFILE"},"encoding":"base64","extensions":["paw"],"xrefs":{"person":"#<Set:0x007fe00cf41368>","template":"#<Set:0x007fe00cf41228>"},"registered":true},{"content-type":"application/vnd.pcos","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c8b3500>","template":"#<Set:0x007fe00c8b2dd0>"},"registered":true},{"content-type":"application/vnd.pg.format","friendly":{"en":"Proprietary P&G Standard Reporting System"},"encoding":"base64","extensions":["str"],"xrefs":{"person":"#<Set:0x007fe00d0def68>","template":"#<Set:0x007fe00d0dee28>"},"registered":true},{"content-type":"application/vnd.pg.osasli","friendly":{"en":"Proprietary P&G Standard Reporting System"},"encoding":"base64","extensions":["ei6"],"xrefs":{"person":"#<Set:0x007fe00d0dd898>","template":"#<Set:0x007fe00d0dd758>"},"registered":true},{"content-type":"application/vnd.piaccess.application-licence","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d0dc3a8>","template":"#<Set:0x007fe00d0dc268>"},"registered":true},{"content-type":"application/vnd.picsel","friendly":{"en":"Pcsel eFIF File"},"encoding":"base64","extensions":["efif"],"xrefs":{"person":"#<Set:0x007fe00d0e6e48>","template":"#<Set:0x007fe00d0e6d08>"},"registered":true},{"content-type":"application/vnd.pmi.widget","friendly":{"en":"Qualcomm's Plaza Mobile Internet"},"encoding":"base64","extensions":["wg"],"xrefs":{"person":"#<Set:0x007fe00d0e5638>","template":"#<Set:0x007fe00d0e54f8>"},"registered":true},{"content-type":"application/vnd.poc.group-advertisement+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d0e41e8>","template":"#<Set:0x007fe00d0e4080>"},"registered":true},{"content-type":"application/vnd.pocketlearn","friendly":{"en":"PocketLearn Viewers"},"encoding":"base64","extensions":["plf"],"xrefs":{"person":"#<Set:0x007fe00d126bd8>","template":"#<Set:0x007fe00d126a98>"},"registered":true},{"content-type":"application/vnd.powerbuilder6","friendly":{"en":"PowerBuilder"},"encoding":"base64","extensions":["pbd"],"xrefs":{"person":"#<Set:0x007fe00d1253c8>","template":"#<Set:0x007fe00d125288>"},"registered":true},{"content-type":"application/vnd.powerbuilder6-s","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c89a500>","template":"#<Set:0x007fe00c8991f0>"},"registered":true},{"content-type":"application/vnd.powerbuilder7","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d0ead18>","template":"#<Set:0x007fe00d0eabd8>"},"registered":true},{"content-type":"application/vnd.powerbuilder7-s","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d0e98f0>","template":"#<Set:0x007fe00d0e97b0>"},"registered":true},{"content-type":"application/vnd.powerbuilder75","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d0e84c8>","template":"#<Set:0x007fe00d0e8388>"},"registered":true},{"content-type":"application/vnd.powerbuilder75-s","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d12b818>","template":"#<Set:0x007fe00d12b6d8>"},"registered":true},{"content-type":"application/vnd.preminet","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d12a350>","template":"#<Set:0x007fe00d12a210>"},"registered":true},{"content-type":"application/vnd.previewsystems.box","friendly":{"en":"Preview Systems ZipLock/VBox"},"encoding":"base64","extensions":["box"],"xrefs":{"person":"#<Set:0x007fe00d128b90>","template":"#<Set:0x007fe00d128a50>"},"registered":true},{"content-type":"application/vnd.proteus.magazine","friendly":{"en":"EFI Proteus"},"encoding":"base64","extensions":["mgz"],"xrefs":{"person":"#<Set:0x007fe00d133950>","template":"#<Set:0x007fe00d133810>"},"registered":true},{"content-type":"application/vnd.publishare-delta-tree","friendly":{"en":"PubliShare Objects"},"encoding":"base64","extensions":["qps"],"xrefs":{"person":"#<Set:0x007fe00d132140>","template":"#<Set:0x007fe00d132000>"},"registered":true},{"content-type":"application/vnd.pvi.ptid1","friendly":{"en":"Princeton Video Image"},"encoding":"base64","extensions":["pti","ptid"],"xrefs":{"person":"#<Set:0x007fe00d130890>","template":"#<Set:0x007fe00d130750>"},"registered":true},{"content-type":"application/vnd.pwg-multiplexed","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d103728>","template":"#<Set:0x007fe00d1035e8>"},"registered":true},{"content-type":"application/vnd.pwg-xhtml-print+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d102260>","template":"#<Set:0x007fe00d102120>"},"registered":true},{"content-type":"application/vnd.qualcomm.brew-app-res","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d100d98>","template":"#<Set:0x007fe00d100c58>"},"registered":true},{"content-type":"application/vnd.Quark.QuarkXPress","friendly":{"en":"QuarkXPress"},"encoding":"8bit","extensions":["qxd","qxt","qwd","qwt","qxl","qxb"],"xrefs":{"person":"#<Set:0x007fe00cf4bcc8>","template":"#<Set:0x007fe00cf4bb88>"},"registered":true},{"content-type":"application/vnd.quobject-quoxdocument","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf4a558>","template":"#<Set:0x007fe00cf4a418>"},"registered":true},{"content-type":"application/vnd.radisys.moml+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cf490b8>","template":"#<Set:0x007fe00cf48f78>"},"registered":true},{"content-type":"application/vnd.radisys.msml+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00b942f30>","template":"#<Set:0x007fe00b942008>"},"registered":true},{"content-type":"application/vnd.radisys.msml-audit+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cf53720>","template":"#<Set:0x007fe00cf535e0>"},"registered":true},{"content-type":"application/vnd.radisys.msml-audit-conf+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cf52320>","template":"#<Set:0x007fe00cf521e0>"},"registered":true},{"content-type":"application/vnd.radisys.msml-audit-conn+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cf50f20>","template":"#<Set:0x007fe00cf50de0>"},"registered":true},{"content-type":"application/vnd.radisys.msml-audit-dialog+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00b93b208>","template":"#<Set:0x007fe00b93af10>"},"registered":true},{"content-type":"application/vnd.radisys.msml-audit-stream+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cf5b128>","template":"#<Set:0x007fe00cf5afe8>"},"registered":true},{"content-type":"application/vnd.radisys.msml-conf+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cf59d28>","template":"#<Set:0x007fe00cf59be8>"},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cf58928>","template":"#<Set:0x007fe00cf587e8>"},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-base+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cf63738>","template":"#<Set:0x007fe00cf635f8>"},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-fax-detect+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cf62338>","template":"#<Set:0x007fe00cf621f8>"},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-fax-sendrecv+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cf60f38>","template":"#<Set:0x007fe00cf60df8>"},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-group+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cf6bf50>","template":"#<Set:0x007fe00cf6be10>"},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-speech+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cf6ab50>","template":"#<Set:0x007fe00cf6aa10>"},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-transform+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cf69750>","template":"#<Set:0x007fe00cf69610>"},"registered":true},{"content-type":"application/vnd.rainstor.data","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf682b0>","template":"#<Set:0x007fe00cf68170>"},"registered":true},{"content-type":"application/vnd.rapid","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf731d8>","template":"#<Set:0x007fe00cf73098>"},"registered":true},{"content-type":"application/vnd.realvnc.bed","friendly":{"en":"RealVNC"},"encoding":"base64","extensions":["bed"],"xrefs":{"person":"#<Set:0x007fe00cf719c8>","template":"#<Set:0x007fe00cf71888>"},"registered":true},{"content-type":"application/vnd.recordare.musicxml","friendly":{"en":"Recordare Applications"},"encoding":"base64","extensions":["mxl"],"xrefs":{"person":"#<Set:0x007fe00cf701b8>","template":"#<Set:0x007fe00cf70078>"},"registered":true},{"content-type":"application/vnd.recordare.musicxml+xml","friendly":{"en":"Recordare Applications"},"encoding":"base64","extensions":["musicxml"],"xrefs":{"person":"#<Set:0x007fe00cf7af00>","template":"#<Set:0x007fe00cf7adc0>"},"registered":true},{"content-type":"application/vnd.RenLearn.rlprint","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf799c0>","template":"#<Set:0x007fe00cf79880>"},"registered":true},{"content-type":"application/vnd.rig.cryptonote","friendly":{"en":"CryptoNote"},"encoding":"base64","extensions":["cryptonote"],"xrefs":{"person":"#<Set:0x007fe00cf78228>","template":"#<Set:0x007fe00cf780e8>"},"registered":true},{"content-type":"application/vnd.rim.cod","friendly":{"en":"Blackberry COD File"},"encoding":"base64","extensions":["cod"],"registered":false},{"content-type":"application/vnd.rn-realmedia","friendly":{"en":"RealMedia"},"encoding":"base64","extensions":["rm"],"registered":false},{"content-type":"application/vnd.rn-realmedia-vbr","encoding":"base64","extensions":["rmvb"],"registered":false},{"content-type":"application/vnd.route66.link66+xml","friendly":{"en":"ROUTE 66 Location Based Services"},"encoding":"base64","extensions":["link66"],"xrefs":{"person":"#<Set:0x007fe00cf8bf08>","template":"#<Set:0x007fe00cf8bdc8>"},"registered":true},{"content-type":"application/vnd.rs-274x","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf8a9f0>","template":"#<Set:0x007fe00cf8a8b0>"},"registered":true},{"content-type":"application/vnd.ruckus.download","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf89500>","template":"#<Set:0x007fe00cf893c0>"},"registered":true},{"content-type":"application/vnd.s3sms","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf880b0>","template":"#<Set:0x007fe00d0597c8>"},"registered":true},{"content-type":"application/vnd.sailingtracker.track","friendly":{"en":"SailingTracker"},"encoding":"base64","extensions":["st"],"xrefs":{"person":"#<Set:0x007fe00cf929c0>","template":"#<Set:0x007fe00cf92880>"},"registered":true},{"content-type":"application/vnd.sbm.cid","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf914d0>","template":"#<Set:0x007fe00cf91390>"},"registered":true},{"content-type":"application/vnd.sbm.mid2","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d053eb8>","template":"#<Set:0x007fe00d052e28>"},"registered":true},{"content-type":"application/vnd.scribus","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf9b098>","template":"#<Set:0x007fe00cf9af58>"},"registered":true},{"content-type":"application/vnd.sealed.3df","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf99ba8>","template":"#<Set:0x007fe00cf99a68>"},"registered":true},{"content-type":"application/vnd.sealed.csf","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cf98780>","template":"#<Set:0x007fe00cf98640>"},"registered":true},{"content-type":"application/vnd.sealed.doc","encoding":"base64","extensions":["sdoc","sdo","s1w"],"xrefs":{"person":"#<Set:0x007fe00cfa3298>","template":"#<Set:0x007fe00cfa3158>"},"registered":true},{"content-type":"application/vnd.sealed.eml","encoding":"base64","extensions":["seml","sem"],"xrefs":{"person":"#<Set:0x007fe00cfa1ad8>","template":"#<Set:0x007fe00cfa1998>"},"registered":true},{"content-type":"application/vnd.sealed.mht","encoding":"base64","extensions":["smht","smh"],"xrefs":{"person":"#<Set:0x007fe00cfa0390>","template":"#<Set:0x007fe00cfa0250>"},"registered":true},{"content-type":"application/vnd.sealed.net","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cfab1c8>","template":"#<Set:0x007fe00cfab088>"},"registered":true},{"content-type":"application/vnd.sealed.ppt","encoding":"base64","extensions":["sppt","spp","s1p"],"xrefs":{"person":"#<Set:0x007fe00cfa9b20>","template":"#<Set:0x007fe00cfa99e0>"},"registered":true},{"content-type":"application/vnd.sealed.tiff","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cfa85b8>","template":"#<Set:0x007fe00cfa8450>"},"registered":true},{"content-type":"application/vnd.sealed.xls","encoding":"base64","extensions":["sxls","sxl","s1e"],"xrefs":{"person":"#<Set:0x007fe00cfb2ef0>","template":"#<Set:0x007fe00cfb2db0>"},"registered":true},{"content-type":"application/vnd.sealedmedia.softseal.html","encoding":"base64","extensions":["stml","stm","s1h"],"xrefs":{"person":"#<Set:0x007fe00cfb1668>","template":"#<Set:0x007fe00cfb1528>"},"registered":true},{"content-type":"application/vnd.sealedmedia.softseal.pdf","encoding":"base64","extensions":["spdf","spd","s1a"],"xrefs":{"person":"#<Set:0x007fe00c0e98d8>","template":"#<Set:0x007fe00c0e9180>"},"registered":true},{"content-type":"application/vnd.seemail","friendly":{"en":"SeeMail"},"encoding":"base64","extensions":["see"],"xrefs":{"person":"#<Set:0x007fe00cfbab28>","template":"#<Set:0x007fe00cfba9e8>"},"registered":true},{"content-type":"application/vnd.sema","friendly":{"en":"Secured eMail"},"encoding":"base64","extensions":["sema"],"xrefs":{"person":"#<Set:0x007fe00cfb9228>","template":"#<Set:0x007fe00cfb90e8>"},"registered":true},{"content-type":"application/vnd.semd","friendly":{"en":"Secured eMail"},"encoding":"base64","extensions":["semd"],"xrefs":{"person":"#<Set:0x007fe00c0e1570>","template":"#<Set:0x007fe00c0e0a30>"},"registered":true},{"content-type":"application/vnd.semf","friendly":{"en":"Secured eMail"},"encoding":"base64","extensions":["semf"],"xrefs":{"person":"#<Set:0x007fe00cfc2b20>","template":"#<Set:0x007fe00cfc29e0>"},"registered":true},{"content-type":"application/vnd.shana.informed.formdata","friendly":{"en":"Shana Informed Filler"},"encoding":"base64","extensions":["ifm"],"xrefs":{"person":"#<Set:0x007fe00cfc12e8>","template":"#<Set:0x007fe00cfc11a8>"},"registered":true},{"content-type":"application/vnd.shana.informed.formtemplate","friendly":{"en":"Shana Informed Filler"},"encoding":"base64","extensions":["itp"],"xrefs":{"person":"#<Set:0x007fe00cfcbef0>","template":"#<Set:0x007fe00cfcbdb0>"},"registered":true},{"content-type":"application/vnd.shana.informed.interchange","friendly":{"en":"Shana Informed Filler"},"encoding":"base64","extensions":["iif"],"xrefs":{"person":"#<Set:0x007fe00cfca848>","template":"#<Set:0x007fe00cfca708>"},"registered":true},{"content-type":"application/vnd.shana.informed.package","friendly":{"en":"Shana Informed Filler"},"encoding":"base64","extensions":["ipk"],"xrefs":{"person":"#<Set:0x007fe00cfc91a0>","template":"#<Set:0x007fe00cfc9060>"},"registered":true},{"content-type":"application/vnd.SimTech-MindMapper","friendly":{"en":"SimTech MindMapper"},"encoding":"base64","extensions":["twd","twds"],"xrefs":{"person":"#<Set:0x007fe00c0d0220>","template":"#<Set:0x007fe00cfd3f10>"},"registered":true},{"content-type":"application/vnd.siren+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cfd2ae8>","template":"#<Set:0x007fe00cfd29a8>"},"registered":true},{"content-type":"application/vnd.smaf","friendly":{"en":"SMAF File"},"encoding":"base64","extensions":["mmf"],"xrefs":{"person":"#<Set:0x007fe00cfd12d8>","template":"#<Set:0x007fe00cfd1198>"},"registered":true},{"content-type":"application/vnd.smart.notebook","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c0ca190>","template":"#<Set:0x007fe00c0c9240>"},"registered":true},{"content-type":"application/vnd.smart.teacher","friendly":{"en":"SMART Technologies Apps"},"encoding":"base64","extensions":["teacher"],"xrefs":{"person":"#<Set:0x007fe00cfdaab8>","template":"#<Set:0x007fe00cfda978>"},"registered":true},{"content-type":"application/vnd.software602.filler.form+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cfd9528>","template":"#<Set:0x007fe00cfd93c0>"},"registered":true},{"content-type":"application/vnd.software602.filler.form-xml-zip","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cfd8100>","template":"#<Set:0x007fe00c0c3340>"},"registered":true},{"content-type":"application/vnd.solent.sdkm+xml","friendly":{"en":"SudokuMagic"},"encoding":"base64","extensions":["sdkd","sdkm"],"xrefs":{"person":"#<Set:0x007fe00cfe2d30>","template":"#<Set:0x007fe00cfe2bf0>"},"registered":true},{"content-type":"application/vnd.spotfire.dxp","friendly":{"en":"TIBCO Spotfire"},"encoding":"base64","extensions":["dxp"],"xrefs":{"person":"#<Set:0x007fe00cfe14a8>","template":"#<Set:0x007fe00cfe1368>"},"registered":true},{"content-type":"application/vnd.spotfire.sfs","friendly":{"en":"TIBCO Spotfire"},"encoding":"base64","extensions":["sfs"],"xrefs":{"person":"#<Set:0x007fe00c0bb5a0>","template":"#<Set:0x007fe00c0baf38>"},"registered":true},{"content-type":"application/vnd.sss-cod","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cfeb4a8>","template":"#<Set:0x007fe00cfeb368>"},"registered":true},{"content-type":"application/vnd.sss-dtf","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cfe9f90>","template":"#<Set:0x007fe00cfe9e50>"},"registered":true},{"content-type":"application/vnd.sss-ntf","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cfe8b18>","template":"#<Set:0x007fe00cfe89d8>"},"registered":true},{"content-type":"application/vnd.stardivision.calc","friendly":{"en":"StarOffice - Calc"},"encoding":"base64","extensions":["sdc"],"registered":false},{"content-type":"application/vnd.stardivision.chart","encoding":"base64","extensions":["sds"],"registered":false},{"content-type":"application/vnd.stardivision.draw","friendly":{"en":"StarOffice - Draw"},"encoding":"base64","extensions":["sda"],"registered":false},{"content-type":"application/vnd.stardivision.impress","friendly":{"en":"StarOffice - Impress"},"encoding":"base64","extensions":["sdd"],"registered":false},{"content-type":"application/vnd.stardivision.math","friendly":{"en":"StarOffice - Math"},"encoding":"base64","extensions":["sdf","smf"],"registered":false},{"content-type":"application/vnd.stardivision.writer","friendly":{"en":"StarOffice - Writer"},"encoding":"base64","extensions":["sdw","vor"],"registered":false},{"content-type":"application/vnd.stardivision.writer-global","friendly":{"en":"StarOffice - Writer (Global)"},"encoding":"base64","extensions":["sgl"],"registered":false},{"content-type":"application/vnd.stepmania.package","encoding":"base64","extensions":["smzip"],"xrefs":{"person":"#<Set:0x007fe00f000130>","template":"#<Set:0x007fe00d02bfa8>"},"registered":true},{"content-type":"application/vnd.stepmania.stepchart","friendly":{"en":"StepMania"},"encoding":"base64","extensions":["sm"],"xrefs":{"person":"#<Set:0x007fe00f00ad38>","template":"#<Set:0x007fe00f00abf8>"},"registered":true},{"content-type":"application/vnd.street-stream","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f009848>","template":"#<Set:0x007fe00f009708>"},"registered":true},{"content-type":"application/vnd.sun.wadl+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f008380>","template":"#<Set:0x007fe00f008240>"},"registered":true},{"content-type":"application/vnd.sun.xml.calc","friendly":{"en":"OpenOffice - Calc (Spreadsheet)"},"encoding":"base64","extensions":["sxc"],"registered":false},{"content-type":"application/vnd.sun.xml.calc.template","friendly":{"en":"OpenOffice - Calc Template (Spreadsheet)"},"encoding":"base64","extensions":["stc"],"registered":false},{"content-type":"application/vnd.sun.xml.draw","friendly":{"en":"OpenOffice - Draw (Graphics)"},"encoding":"base64","extensions":["sxd"],"registered":false},{"content-type":"application/vnd.sun.xml.draw.template","friendly":{"en":"OpenOffice - Draw Template (Graphics)"},"encoding":"base64","extensions":["std"],"registered":false},{"content-type":"application/vnd.sun.xml.impress","friendly":{"en":"OpenOffice - Impress (Presentation)"},"encoding":"base64","extensions":["sxi"],"registered":false},{"content-type":"application/vnd.sun.xml.impress.template","friendly":{"en":"OpenOffice - Impress Template (Presentation)"},"encoding":"base64","extensions":["sti"],"registered":false},{"content-type":"application/vnd.sun.xml.math","friendly":{"en":"OpenOffice - Math (Formula)"},"encoding":"base64","extensions":["sxm"],"registered":false},{"content-type":"application/vnd.sun.xml.writer","friendly":{"en":"OpenOffice - Writer (Text - HTML)"},"encoding":"base64","extensions":["sxw"],"registered":false},{"content-type":"application/vnd.sun.xml.writer.global","friendly":{"en":"OpenOffice - Writer (Text - HTML)"},"encoding":"base64","extensions":["sxg"],"registered":false},{"content-type":"application/vnd.sun.xml.writer.template","friendly":{"en":"OpenOffice - Writer Template (Text - HTML)"},"encoding":"base64","extensions":["stw"],"registered":false},{"content-type":"application/vnd.sus-calendar","friendly":{"en":"ScheduleUs"},"encoding":"base64","extensions":["sus","susp"],"xrefs":{"person":"#<Set:0x007fe00f020b60>","template":"#<Set:0x007fe00f020a20>"},"registered":true},{"content-type":"application/vnd.svd","friendly":{"en":"SourceView Document"},"encoding":"base64","extensions":["svd"],"xrefs":{"person":"#<Set:0x007fe00f02b650>","template":"#<Set:0x007fe00f02b510>"},"registered":true},{"content-type":"application/vnd.swiftview-ics","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f02a138>","template":"#<Set:0x007fe00f029ff8>"},"registered":true},{"content-type":"application/vnd.symbian.install","friendly":{"en":"Symbian Install Package"},"encoding":"base64","extensions":["sis","sisx"],"registered":false},{"content-type":"application/vnd.syncml+xml","friendly":{"en":"SyncML"},"encoding":"base64","extensions":["xsm"],"xrefs":{"person":"#<Set:0x007fe00f0339e0>","template":"#<Set:0x007fe00f0338a0>"},"registered":true},{"content-type":"application/vnd.syncml.dm+wbxml","friendly":{"en":"SyncML - Device Management"},"encoding":"base64","extensions":["bdm"],"xrefs":{"person":"#<Set:0x007fe00f0321f8>","template":"#<Set:0x007fe00f0320b8>"},"registered":true},{"content-type":"application/vnd.syncml.dm+xml","friendly":{"en":"SyncML - Device Management"},"encoding":"base64","extensions":["xdm"],"xrefs":{"person":"#<Set:0x007fe00f030a88>","template":"#<Set:0x007fe00f030920>"},"registered":true},{"content-type":"application/vnd.syncml.dm.notification","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f03b7d0>","template":"#<Set:0x007fe00f03b668>"},"registered":true},{"content-type":"application/vnd.syncml.dmddf+wbxml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f03a3a8>","template":"#<Set:0x007fe00f03a268>"},"registered":true},{"content-type":"application/vnd.syncml.dmddf+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f038f80>","template":"#<Set:0x007fe00f038e40>"},"registered":true},{"content-type":"application/vnd.syncml.dmtnds+wbxml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c85c688>","template":"#<Set:0x007fe00f043f20>"},"registered":true},{"content-type":"application/vnd.syncml.dmtnds+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f042c38>","template":"#<Set:0x007fe00f042af8>"},"registered":true},{"content-type":"application/vnd.syncml.ds.notification","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f041810>","template":"#<Set:0x007fe00f0416d0>"},"registered":true},{"content-type":"application/vnd.tao.intent-module-archive","friendly":{"en":"Tao Intent"},"encoding":"base64","extensions":["tao"],"xrefs":{"person":"#<Set:0x007fe00f040118>","template":"#<Set:0x007fe00c857b88>"},"registered":true},{"content-type":"application/vnd.tcpdump.pcap","encoding":"base64","extensions":["cap","dmp","pcap"],"xrefs":{"person":"#<Set:0x007fe00f04b680>","template":"#<Set:0x007fe00f04b518>"},"registered":true},{"content-type":"application/vnd.tmd.mediaflex.api+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f04a050>","template":"#<Set:0x007fe00f049f10>"},"registered":true},{"content-type":"application/vnd.tmobile-livetv","friendly":{"en":"MobileTV"},"encoding":"base64","extensions":["tmo"],"xrefs":{"person":"#<Set:0x007fe00f0488b8>","template":"#<Set:0x007fe00f048778>"},"registered":true},{"content-type":"application/vnd.trid.tpt","friendly":{"en":"TRI Systems Config"},"encoding":"base64","extensions":["tpt"],"xrefs":{"person":"#<Set:0x007fe00f0536a0>","template":"#<Set:0x007fe00f053560>"},"registered":true},{"content-type":"application/vnd.triscape.mxs","friendly":{"en":"Triscape Map Explorer"},"encoding":"base64","extensions":["mxs"],"xrefs":{"person":"#<Set:0x007fe00f051e90>","template":"#<Set:0x007fe00f051d50>"},"registered":true},{"content-type":"application/vnd.trueapp","friendly":{"en":"True BASIC"},"encoding":"base64","extensions":["tra"],"xrefs":{"person":"#<Set:0x007fe00f050680>","template":"#<Set:0x007fe00f050540>"},"registered":true},{"content-type":"application/vnd.truedoc","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f05b7b0>","template":"#<Set:0x007fe00f05b670>"},"registered":true},{"content-type":"application/vnd.ubisoft.webplayer","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f05a2c0>","template":"#<Set:0x007fe00f05a180>"},"registered":true},{"content-type":"application/vnd.ufdl","friendly":{"en":"Universal Forms Description Language"},"encoding":"base64","extensions":["ufd","ufdl"],"xrefs":{"person":"#<Set:0x007fe00f058a10>","template":"#<Set:0x007fe00f0588d0>"},"registered":true},{"content-type":"application/vnd.uiq.theme","friendly":{"en":"User Interface Quartz - Theme (Symbian)"},"encoding":"base64","extensions":["utz"],"xrefs":{"person":"#<Set:0x007fe00f063730>","template":"#<Set:0x007fe00f0635f0>"},"registered":true},{"content-type":"application/vnd.umajin","friendly":{"en":"UMAJIN"},"encoding":"base64","extensions":["umj"],"xrefs":{"person":"#<Set:0x007fe00f061ef8>","template":"#<Set:0x007fe00f061db8>"},"registered":true},{"content-type":"application/vnd.unity","friendly":{"en":"Unity 3d"},"encoding":"base64","extensions":["unityweb"],"xrefs":{"person":"#<Set:0x007fe00f0606c0>","template":"#<Set:0x007fe00f060580>"},"registered":true},{"content-type":"application/vnd.uoml+xml","friendly":{"en":"Unique Object Markup Language"},"encoding":"base64","extensions":["uoml"],"xrefs":{"person":"#<Set:0x007fe00f06b318>","template":"#<Set:0x007fe00f06b1d8>"},"registered":true},{"content-type":"application/vnd.uplanet.alert","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f069e28>","template":"#<Set:0x007fe00f069ce8>"},"registered":true},{"content-type":"application/vnd.uplanet.alert-wbxml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f068a00>","template":"#<Set:0x007fe00f0688c0>"},"registered":true},{"content-type":"application/vnd.uplanet.bearer-choice","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f073a90>","template":"#<Set:0x007fe00f073950>"},"registered":true},{"content-type":"application/vnd.uplanet.bearer-choice-wbxml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f072690>","template":"#<Set:0x007fe00f072550>"},"registered":true},{"content-type":"application/vnd.uplanet.cacheop","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f071290>","template":"#<Set:0x007fe00f071150>"},"registered":true},{"content-type":"application/vnd.uplanet.cacheop-wbxml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c0aa098>","template":"#<Set:0x007fe00c0a97b0>"},"registered":true},{"content-type":"application/vnd.uplanet.channel","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f07b100>","template":"#<Set:0x007fe00f07afc0>"},"registered":true},{"content-type":"application/vnd.uplanet.channel-wbxml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f079cd8>","template":"#<Set:0x007fe00f079b98>"},"registered":true},{"content-type":"application/vnd.uplanet.list","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f0788d8>","template":"#<Set:0x007fe00f078798>"},"registered":true},{"content-type":"application/vnd.uplanet.list-wbxml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f0838a0>","template":"#<Set:0x007fe00f083760>"},"registered":true},{"content-type":"application/vnd.uplanet.listcmd","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f082478>","template":"#<Set:0x007fe00f082338>"},"registered":true},{"content-type":"application/vnd.uplanet.listcmd-wbxml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f081050>","template":"#<Set:0x007fe00f080f10>"},"registered":true},{"content-type":"application/vnd.uplanet.signal","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f08bd98>","template":"#<Set:0x007fe00f08bc58>"},"registered":true},{"content-type":"application/vnd.uri-map","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f08a8a8>","template":"#<Set:0x007fe00f08a768>"},"registered":true},{"content-type":"application/vnd.valve.source.material","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f089458>","template":"#<Set:0x007fe00f089318>"},"registered":true},{"content-type":"application/vnd.vcx","friendly":{"en":"VirtualCatalog"},"encoding":"base64","extensions":["vcx"],"xrefs":{"person":"#<Set:0x007fe00c0907b0>","template":"#<Set:0x007fe00f093ed0>"},"registered":true},{"content-type":"application/vnd.vd-study","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f092af8>","template":"#<Set:0x007fe00f0929b8>"},"registered":true},{"content-type":"application/vnd.vectorworks","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f091590>","template":"#<Set:0x007fe00f091428>"},"registered":true},{"content-type":"application/vnd.verimatrix.vcas","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f0900a0>","template":"#<Set:0x007fe00c08a9a0>"},"registered":true},{"content-type":"application/vnd.vidsoft.vidconference","encoding":"8bit","extensions":["vsc"],"xrefs":{"person":"#<Set:0x007fe00f09ac30>","template":"#<Set:0x007fe00f09aaf0>"},"registered":true},{"content-type":"application/vnd.visio","friendly":{"en":"Microsoft Visio"},"encoding":"base64","extensions":["vsd","vst","vsw","vss"],"xrefs":{"person":"#<Set:0x007fe00f0991a0>","template":"#<Set:0x007fe00f099060>"},"registered":true},{"content-type":"application/vnd.visionary","friendly":{"en":"Visionary"},"encoding":"base64","extensions":["vis"],"xrefs":{"person":"#<Set:0x007fe00f0a3970>","template":"#<Set:0x007fe00f0a3830>"},"registered":true},{"content-type":"application/vnd.vividence.scriptfile","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f0a2458>","template":"#<Set:0x007fe00f0a2318>"},"registered":true},{"content-type":"application/vnd.vsf","friendly":{"en":"Viewport+"},"encoding":"base64","extensions":["vsf"],"xrefs":{"person":"#<Set:0x007fe00f0a0c70>","template":"#<Set:0x007fe00f0a0b30>"},"registered":true},{"content-type":"application/vnd.wap.sic","encoding":"base64","extensions":["sic"],"xrefs":{"person":"#<Set:0x007fe00f0ab6e8>","template":"#<Set:0x007fe00f0ab5a8>"},"registered":true},{"content-type":"application/vnd.wap.slc","encoding":"base64","extensions":["slc"],"xrefs":{"person":"#<Set:0x007fe00f0aa040>","template":"#<Set:0x007fe00f0a9f00>"},"registered":true},{"content-type":"application/vnd.wap.wbxml","friendly":{"en":"WAP Binary XML (WBXML)"},"encoding":"base64","extensions":["wbxml"],"xrefs":{"person":"#<Set:0x007fe00f0a8768>","template":"#<Set:0x007fe00f0a8628>"},"registered":true},{"content-type":"application/vnd.wap.wmlc","friendly":{"en":"Compiled Wireless Markup Language (WMLC)"},"encoding":"base64","extensions":["wmlc"],"xrefs":{"person":"#<Set:0x007fe00f0b3078>","template":"#<Set:0x007fe00f0b2f38>"},"registered":true},{"content-type":"application/vnd.wap.wmlscriptc","friendly":{"en":"WMLScript"},"encoding":"base64","extensions":["wmlsc"],"xrefs":{"person":"#<Set:0x007fe00f0b1930>","template":"#<Set:0x007fe00f0b17f0>"},"registered":true},{"content-type":"application/vnd.webturbo","friendly":{"en":"WebTurbo"},"encoding":"base64","extensions":["wtb"],"xrefs":{"person":"#<Set:0x007fe00f0b0120>","template":"#<Set:0x007fe00c078340>"},"registered":true},{"content-type":"application/vnd.wfa.p2p","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d136bf0>","template":"#<Set:0x007fe00d136ab0>"},"registered":true},{"content-type":"application/vnd.wfa.wsc","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d1356d8>","template":"#<Set:0x007fe00d135598>"},"registered":true},{"content-type":"application/vnd.windows.devicepairing","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d1341e8>","template":"#<Set:0x007fe00d1340a8>"},"registered":true},{"content-type":"application/vnd.wmc","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d107260>","template":"#<Set:0x007fe00d107120>"},"registered":true},{"content-type":"application/vnd.wmf.bootstrap","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d105cd0>","template":"#<Set:0x007fe00d105b68>"},"registered":true},{"content-type":"application/vnd.wolfram.mathematica","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d104880>","template":"#<Set:0x007fe00d104740>"},"registered":true},{"content-type":"application/vnd.wolfram.mathematica.package","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d10f870>","template":"#<Set:0x007fe00d10f730>"},"registered":true},{"content-type":"application/vnd.wolfram.player","friendly":{"en":"Mathematica Notebook Player"},"encoding":"base64","extensions":["nbp"],"xrefs":{"person":"#<Set:0x007fe00d10e1a0>","template":"#<Set:0x007fe00d10e060>"},"registered":true},{"content-type":"application/vnd.wordperfect","friendly":{"en":"Wordperfect"},"encoding":"base64","extensions":["wpd"],"xrefs":{"person":"#<Set:0x007fe00d10ca30>","template":"#<Set:0x007fe00d10c8f0>"},"registered":true},{"content-type":"application/vnd.wqd","friendly":{"en":"SundaHus WQ"},"encoding":"base64","extensions":["wqd"],"xrefs":{"person":"#<Set:0x007fe00d1177a0>","template":"#<Set:0x007fe00d117660>"},"registered":true},{"content-type":"application/vnd.wrq-hp3000-labelled","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d116328>","template":"#<Set:0x007fe00d1161e8>"},"registered":true},{"content-type":"application/vnd.wt.stf","friendly":{"en":"Worldtalk"},"encoding":"base64","extensions":["stf"],"xrefs":{"person":"#<Set:0x007fe00d114b18>","template":"#<Set:0x007fe00d1149d8>"},"registered":true},{"content-type":"application/vnd.wv.csp+wbxml","encoding":"base64","extensions":["wv"],"xrefs":{"person":"#<Set:0x007fe00d14f8a8>","template":"#<Set:0x007fe00d14f768>"},"registered":true},{"content-type":"application/vnd.wv.csp+xml","encoding":"8bit","xrefs":{"person":"#<Set:0x007fe00d14e390>","template":"#<Set:0x007fe00d14e250>"},"registered":true},{"content-type":"application/vnd.wv.ssp+xml","encoding":"8bit","xrefs":{"person":"#<Set:0x007fe00d14cf68>","template":"#<Set:0x007fe00d14ce28>"},"registered":true},{"content-type":"application/vnd.xacml+json","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d11bf08>","template":"#<Set:0x007fe00d11bdc8>"},"registered":true},{"content-type":"application/vnd.xara","friendly":{"en":"CorelXARA"},"encoding":"base64","extensions":["xar"],"xrefs":{"person":"#<Set:0x007fe00d11a6f8>","template":"#<Set:0x007fe00d11a5b8>"},"registered":true},{"content-type":"application/vnd.xfdl","friendly":{"en":"Extensible Forms Description Language"},"encoding":"base64","extensions":["xfdl"],"xrefs":{"person":"#<Set:0x007fe00d118f60>","template":"#<Set:0x007fe00d118e20>"},"registered":true},{"content-type":"application/vnd.xfdl.webform","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d157c88>","template":"#<Set:0x007fe00d157b48>"},"registered":true},{"content-type":"application/vnd.xmi+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d156798>","template":"#<Set:0x007fe00d156658>"},"registered":true},{"content-type":"application/vnd.xmpie.cpkg","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d1552a8>","template":"#<Set:0x007fe00d155168>"},"registered":true},{"content-type":"application/vnd.xmpie.dpkg","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d15ff00>","template":"#<Set:0x007fe00d15fdc0>"},"registered":true},{"content-type":"application/vnd.xmpie.plan","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d15ead8>","template":"#<Set:0x007fe00d15e998>"},"registered":true},{"content-type":"application/vnd.xmpie.ppkg","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d15d6b0>","template":"#<Set:0x007fe00d15d570>"},"registered":true},{"content-type":"application/vnd.xmpie.xlim","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d15c288>","template":"#<Set:0x007fe00d15c148>"},"registered":true},{"content-type":"application/vnd.yamaha.hv-dic","friendly":{"en":"HV Voice Dictionary"},"encoding":"base64","extensions":["hvd"],"xrefs":{"person":"#<Set:0x007fe00d166b70>","template":"#<Set:0x007fe00d166a30>"},"registered":true},{"content-type":"application/vnd.yamaha.hv-script","friendly":{"en":"HV Script"},"encoding":"base64","extensions":["hvs"],"xrefs":{"person":"#<Set:0x007fe00d165400>","template":"#<Set:0x007fe00d1652c0>"},"registered":true},{"content-type":"application/vnd.yamaha.hv-voice","friendly":{"en":"HV Voice Parameter"},"encoding":"base64","extensions":["hvp"],"xrefs":{"person":"#<Set:0x007fe00d16ff18>","template":"#<Set:0x007fe00d16fdd8>"},"registered":true},{"content-type":"application/vnd.yamaha.openscoreformat","friendly":{"en":"Open Score Format"},"encoding":"base64","extensions":["osf"],"xrefs":{"person":"#<Set:0x007fe00d16e730>","template":"#<Set:0x007fe00d16e5f0>"},"registered":true},{"content-type":"application/vnd.yamaha.openscoreformat.osfpvg+xml","friendly":{"en":"OSFPVG"},"encoding":"base64","extensions":["osfpvg"],"xrefs":{"person":"#<Set:0x007fe00d16d010>","template":"#<Set:0x007fe00d16ced0>"},"registered":true},{"content-type":"application/vnd.yamaha.remote-setup","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d13bb78>","template":"#<Set:0x007fe00d13ba38>"},"registered":true},{"content-type":"application/vnd.yamaha.smaf-audio","friendly":{"en":"SMAF Audio"},"encoding":"base64","extensions":["saf"],"xrefs":{"person":"#<Set:0x007fe00d13a390>","template":"#<Set:0x007fe00d13a250>"},"registered":true},{"content-type":"application/vnd.yamaha.smaf-phrase","friendly":{"en":"SMAF Phrase"},"encoding":"base64","extensions":["spf"],"xrefs":{"person":"#<Set:0x007fe00d138c20>","template":"#<Set:0x007fe00d138ae0>"},"registered":true},{"content-type":"application/vnd.yamaha.through-ngn","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d143788>","template":"#<Set:0x007fe00d143648>"},"registered":true},{"content-type":"application/vnd.yamaha.tunnel-udpencap","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d142360>","template":"#<Set:0x007fe00d142220>"},"registered":true},{"content-type":"application/vnd.yaoweme","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d140e98>","template":"#<Set:0x007fe00d140d58>"},"registered":true},{"content-type":"application/vnd.yellowriver-custom-menu","friendly":{"en":"CustomMenu"},"encoding":"base64","extensions":["cmp"],"xrefs":{"person":"#<Set:0x007fe00d177650>","template":"#<Set:0x007fe00d177510>"},"registered":true},{"content-type":"application/vnd.zul","friendly":{"en":"Z.U.L. Geometry"},"encoding":"base64","extensions":["zir","zirz"],"xrefs":{"person":"#<Set:0x007fe00d175d78>","template":"#<Set:0x007fe00d175c38>"},"registered":true},{"content-type":"application/vnd.zzazz.deck+xml","friendly":{"en":"Zzazz Deck"},"encoding":"base64","extensions":["zaz"],"xrefs":{"person":"#<Set:0x007fe00d1744c8>","template":"#<Set:0x007fe00d174388>"},"registered":true},{"content-type":"application/voicexml+xml","friendly":{"en":"VoiceXML"},"encoding":"base64","extensions":["vxml"],"xrefs":{"rfc":"#<Set:0x007fe00d146cf8>","template":"#<Set:0x007fe00d146bb8>"},"registered":true},{"content-type":"application/vq-rtcpxr","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d1457e0>","template":"#<Set:0x007fe00d1456a0>"},"registered":true},{"content-type":"application/watcherinfo+xml","encoding":"base64","extensions":["wif"],"xrefs":{"rfc":"#<Set:0x007fe00d1441b0>","template":"#<Set:0x007fe00d144070>"},"registered":true},{"content-type":"application/whoispp-query","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d17ec48>","template":"#<Set:0x007fe00d17eb08>"},"registered":true},{"content-type":"application/whoispp-response","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d17d780>","template":"#<Set:0x007fe00d17d640>"},"registered":true},{"content-type":"application/widget","friendly":{"en":"Widget Packaging and XML Configuration"},"encoding":"base64","extensions":["wgt"],"xrefs":{"person":"#<Set:0x007fe00d187ed8>","uri":"#<Set:0x007fe00d187d70>"},"registered":true},{"content-type":"application/winhlp","friendly":{"en":"WinHelp"},"encoding":"base64","extensions":["hlp"],"registered":false},{"content-type":"application/wita","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d185a48>","template":"#<Set:0x007fe00d185908>"},"registered":true},{"content-type":"application/word","encoding":"base64","extensions":["doc","dot"],"registered":false},{"content-type":"application/wordperfect","encoding":"base64","extensions":["wp"],"obsolete":true,"use-instead":"application/vnd.wordperfect","registered":false},{"content-type":"application/wordperfect5.1","encoding":"base64","extensions":["wp5","wp"],"xrefs":{"person":"#<Set:0x007fe00d18e6c0>","template":"#<Set:0x007fe00d18e580>"},"registered":true},{"content-type":"application/wordperfect6.1","encoding":"base64","extensions":["wp6"],"obsolete":true,"use-instead":"application/x-wordperfect6.1","registered":false},{"content-type":"application/wordperfectd","encoding":"base64","extensions":["wpd"],"obsolete":true,"use-instead":"application/vnd.wordperfect","registered":false},{"content-type":"application/wsdl+xml","friendly":{"en":"WSDL - Web Services Description Language"},"encoding":"base64","extensions":["wsdl"],"xrefs":{"person":"#<Set:0x007fe00d196e38>","template":"#<Set:0x007fe00d196cf8>"},"registered":true},{"content-type":"application/wspolicy+xml","friendly":{"en":"Web Services Policy"},"encoding":"base64","extensions":["wspolicy"],"xrefs":{"person":"#<Set:0x007fe00d1956c8>","template":"#<Set:0x007fe00d195588>"},"registered":true},{"content-type":"application/x-123","encoding":"base64","extensions":["wk"],"obsolete":true,"use-instead":"application/vnd.lotus-1-2-3","registered":false},{"content-type":"application/x-7z-compressed","friendly":{"en":"7-Zip"},"encoding":"base64","extensions":["7z"],"registered":false},{"content-type":"application/x-abiword","friendly":{"en":"AbiWord"},"encoding":"base64","extensions":["abw"],"registered":false},{"content-type":"application/x-access","encoding":"base64","extensions":["mdf","mda","mdb","mde"],"obsolete":true,"use-instead":"application/x-msaccess","registered":false},{"content-type":"application/x-ace-compressed","friendly":{"en":"Ace Archive"},"encoding":"base64","extensions":["ace"],"registered":false},{"content-type":"application/x-apple-diskimage","encoding":"base64","extensions":["dmg"],"registered":false},{"content-type":"application/x-authorware-bin","friendly":{"en":"Adobe (Macropedia) Authorware - Binary File"},"encoding":"base64","extensions":["aab","u32","vox","x32"],"registered":false},{"content-type":"application/x-authorware-map","friendly":{"en":"Adobe (Macropedia) Authorware - Map"},"encoding":"base64","extensions":["aam"],"registered":false},{"content-type":"application/x-authorware-seg","friendly":{"en":"Adobe (Macropedia) Authorware - Segment File"},"encoding":"base64","extensions":["aas"],"registered":false},{"content-type":"application/x-bcpio","friendly":{"en":"Binary CPIO Archive"},"encoding":"base64","extensions":["bcpio"],"registered":false},{"content-type":"application/x-bittorrent","friendly":{"en":"BitTorrent"},"encoding":"base64","extensions":["torrent"],"registered":false},{"content-type":"application/x-bleeper","encoding":"base64","extensions":["bleep"],"registered":false},{"content-type":"application/x-blorb","encoding":"base64","extensions":["blb","blorb"],"registered":false},{"content-type":"application/x-bzip","friendly":{"en":"Bzip Archive"},"encoding":"base64","extensions":["bz"],"registered":false},{"content-type":"application/x-bzip2","friendly":{"en":"Bzip2 Archive"},"encoding":"base64","extensions":["boz","bz2"],"registered":false},{"content-type":"application/x-cbr","encoding":"base64","extensions":["cb7","cba","cbr","cbt","cbz"],"registered":false},{"content-type":"application/x-cdlink","friendly":{"en":"Video CD"},"encoding":"base64","extensions":["vcd"],"registered":false},{"content-type":"application/x-cfs-compressed","encoding":"base64","extensions":["cfs"],"registered":false},{"content-type":"application/x-chat","friendly":{"en":"pIRCh"},"encoding":"base64","extensions":["chat"],"registered":false},{"content-type":"application/x-chess-pgn","friendly":{"en":"Portable Game Notation (Chess Games)"},"encoding":"base64","extensions":["pgn"],"registered":false},{"content-type":"application/x-chrome-extension","encoding":"base64","extensions":["crx"],"registered":false},{"content-type":"application/x-clariscad","encoding":"base64","registered":false},{"content-type":"application/x-compress","encoding":"base64","extensions":["z","Z"],"obsolete":true,"use-instead":"application/x-compressed","registered":false},{"content-type":"application/x-compressed","encoding":"base64","extensions":["z","Z"],"registered":false},{"content-type":"application/x-conference","encoding":"base64","extensions":["nsc"],"registered":false},{"content-type":"application/x-cpio","friendly":{"en":"CPIO Archive"},"encoding":"base64","extensions":["cpio"],"registered":false},{"content-type":"application/x-csh","friendly":{"en":"C Shell Script"},"encoding":"8bit","extensions":["csh"],"registered":false},{"content-type":"application/x-cu-seeme","encoding":"base64","extensions":["csm","cu"],"registered":false},{"content-type":"application/x-debian-package","friendly":{"en":"Debian Package"},"encoding":"base64","extensions":["deb","udeb"],"registered":false},{"content-type":"application/x-dgc-compressed","encoding":"base64","extensions":["dgc"],"registered":false},{"content-type":"application/x-director","friendly":{"en":"Adobe Shockwave Player"},"encoding":"base64","extensions":["dcr","@dir","@dxr","cct","cst","cxt","dir","dxr","fgd","swa","w3d"],"registered":false},{"content-type":"application/x-doom","friendly":{"en":"Doom Video Game"},"encoding":"base64","extensions":["wad"],"registered":false},{"content-type":"application/x-drafting","encoding":"base64","registered":false},{"content-type":"application/x-dtbncx+xml","friendly":{"en":"Navigation Control file for XML (for ePub)"},"encoding":"base64","extensions":["ncx"],"registered":false},{"content-type":"application/x-dtbook+xml","friendly":{"en":"Digital Talking Book"},"encoding":"base64","extensions":["dtb"],"registered":false},{"content-type":"application/x-dtbresource+xml","friendly":{"en":"Digital Talking Book - Resource File"},"encoding":"base64","extensions":["res"],"registered":false},{"content-type":"application/x-dvi","friendly":{"en":"Device Independent File Format (DVI)"},"encoding":"base64","extensions":["dvi"],"registered":false},{"content-type":"application/x-dxf","encoding":"base64","registered":false},{"content-type":"application/x-envoy","encoding":"base64","extensions":["evy"],"registered":false},{"content-type":"application/x-eva","encoding":"base64","extensions":["eva"],"registered":false},{"content-type":"application/x-excel","encoding":"base64","obsolete":true,"use-instead":"application/vnd.ms-excel","registered":false},{"content-type":"application/x-font-bdf","friendly":{"en":"Glyph Bitmap Distribution Format"},"encoding":"base64","extensions":["bdf"],"registered":false},{"content-type":"application/x-font-ghostscript","friendly":{"en":"Ghostscript Font"},"encoding":"base64","extensions":["gsf"],"registered":false},{"content-type":"application/x-font-linux-psf","friendly":{"en":"PSF Fonts"},"encoding":"base64","extensions":["psf"],"registered":false},{"content-type":"application/x-font-opentype","encoding":"base64","extensions":["otf"],"registered":false},{"content-type":"application/x-font-otf","friendly":{"en":"OpenType Font File"},"encoding":"base64","extensions":["otf"],"registered":false},{"content-type":"application/x-font-pcf","friendly":{"en":"Portable Compiled Format"},"encoding":"base64","extensions":["pcf"],"registered":false},{"content-type":"application/x-font-snf","friendly":{"en":"Server Normal Format"},"encoding":"base64","extensions":["snf"],"registered":false},{"content-type":"application/x-font-truetype","encoding":"base64","extensions":["ttf"],"registered":false},{"content-type":"application/x-font-ttf","friendly":{"en":"TrueType Font"},"encoding":"base64","extensions":["ttc","ttf"],"registered":false},{"content-type":"application/x-font-type1","friendly":{"en":"PostScript Fonts"},"encoding":"base64","extensions":["afm","pfa","pfb","pfm"],"registered":false},{"content-type":"application/x-fractals","encoding":"base64","registered":false},{"content-type":"application/x-freearc","encoding":"base64","extensions":["arc"],"registered":false},{"content-type":"application/x-futuresplash","friendly":{"en":"FutureSplash Animator"},"encoding":"base64","extensions":["spl"],"registered":false},{"content-type":"application/x-gca-compressed","encoding":"base64","extensions":["gca"],"registered":false},{"content-type":"application/x-ghostview","encoding":"base64","registered":false},{"content-type":"application/x-glulx","encoding":"base64","extensions":["ulx"],"registered":false},{"content-type":"application/x-gnumeric","friendly":{"en":"Gnumeric"},"encoding":"base64","extensions":["gnumeric"],"registered":false},{"content-type":"application/x-gramps-xml","encoding":"base64","extensions":["gramps"],"registered":false},{"content-type":"application/x-gtar","friendly":{"en":"GNU Tar Files"},"encoding":"base64","extensions":["gtar","tgz","tbz2","tbz"],"registered":false},{"content-type":"application/x-gzip","encoding":"base64","extensions":["gz"],"obsolete":true,"use-instead":"application/gzip","registered":false},{"content-type":"application/x-hdf","friendly":{"en":"Hierarchical Data Format"},"encoding":"base64","extensions":["hdf"],"registered":false},{"content-type":"application/x-hep","encoding":"base64","extensions":["hep"],"registered":false},{"content-type":"application/x-html+ruby","encoding":"8bit","extensions":["rhtml"],"registered":false},{"content-type":"application/x-httpd-php","encoding":"8bit","extensions":["phtml","pht","php"],"registered":false},{"content-type":"application/x-ibooks+zip","encoding":"base64","extensions":["ibooks"],"registered":false},{"content-type":"application/x-ica","encoding":"base64","extensions":["ica"],"registered":false},{"content-type":"application/x-ideas","encoding":"base64","registered":false},{"content-type":"application/x-imagemap","encoding":"8bit","extensions":["imagemap","imap"],"registered":false},{"content-type":"application/x-install-instructions","encoding":"base64","extensions":["install"],"registered":false},{"content-type":"application/x-iso9660-image","encoding":"base64","extensions":["iso"],"registered":false},{"content-type":"application/x-iwork-keynote-sffkey","encoding":"base64","extensions":["key"],"registered":false},{"content-type":"application/x-iwork-numbers-sffnumbers","encoding":"base64","extensions":["numbers"],"registered":false},{"content-type":"application/x-iwork-pages-sffpages","encoding":"base64","extensions":["pages"],"registered":false},{"content-type":"application/x-java-archive","encoding":"base64","extensions":["jar"],"registered":false},{"content-type":"application/x-java-jnlp-file","friendly":{"en":"Java Network Launching Protocol"},"encoding":"base64","extensions":["jnlp"],"registered":false},{"content-type":"application/x-java-serialized-object","encoding":"base64","extensions":["ser"],"registered":false},{"content-type":"application/x-java-vm","encoding":"base64","extensions":["class"],"registered":false},{"content-type":"application/x-javascript","encoding":"8bit","extensions":["js"],"obsolete":true,"use-instead":"application/javascript","registered":false},{"content-type":"application/x-koan","encoding":"base64","extensions":["skp","skd","skt","skm"],"registered":false},{"content-type":"application/x-latex","friendly":{"en":"LaTeX"},"encoding":"8bit","extensions":["ltx","latex"],"registered":false},{"content-type":"application/x-lotus-123","encoding":"base64","extensions":["wks"],"obsolete":true,"use-instead":"application/vnd.lotus-1-2-3","registered":false},{"content-type":"application/x-lzh-compressed","encoding":"base64","extensions":["lha","lzh"],"registered":false},{"content-type":"application/x-mac","encoding":"base64","extensions":["bin"],"registered":false},{"content-type":"application/x-mac-compactpro","encoding":"base64","extensions":["cpt"],"registered":false},{"content-type":"application/x-macbase64","encoding":"base64","extensions":["bin"],"registered":false},{"content-type":"application/x-macbinary","encoding":"base64","registered":false},{"content-type":"application/x-maker","encoding":"base64","extensions":["frm","maker","frame","fm","fb","book","fbdoc"],"obsolete":true,"use-instead":"application/vnd.framemaker","registered":false},{"content-type":"application/x-mathcad","encoding":"base64","extensions":["mcd"],"obsolete":true,"use-instead":"application/vnd.mcd","registered":false},{"content-type":"application/x-mathematica-old","encoding":"base64","registered":false},{"content-type":"application/x-mie","encoding":"base64","extensions":["mie"],"registered":false},{"content-type":"application/x-mif","encoding":"base64","extensions":["mif"],"registered":false},{"content-type":"application/x-mobipocket-ebook","friendly":{"en":"Mobipocket"},"encoding":"base64","extensions":["mobi","prc"],"registered":false},{"content-type":"application/x-ms-application","friendly":{"en":"Microsoft ClickOnce"},"encoding":"base64","extensions":["application"],"registered":false},{"content-type":"application/x-ms-shortcut","encoding":"base64","extensions":["lnk"],"registered":false},{"content-type":"application/x-ms-wmd","friendly":{"en":"Microsoft Windows Media Player Download Package"},"encoding":"base64","extensions":["wmd"],"registered":false},{"content-type":"application/x-ms-wmz","friendly":{"en":"Microsoft Windows Media Player Skin Package"},"encoding":"base64","extensions":["wmz"],"registered":false},{"content-type":"application/x-ms-xbap","friendly":{"en":"Microsoft XAML Browser Application"},"encoding":"base64","extensions":["xbap"],"registered":false},{"content-type":"application/x-msaccess","friendly":{"en":"Microsoft Access"},"encoding":"base64","extensions":["mda","mdb","mde","mdf"],"registered":false},{"content-type":"application/x-msbinder","friendly":{"en":"Microsoft Office Binder"},"encoding":"base64","extensions":["obd"],"registered":false},{"content-type":"application/x-mscardfile","friendly":{"en":"Microsoft Information Card"},"encoding":"base64","extensions":["crd"],"registered":false},{"content-type":"application/x-msclip","friendly":{"en":"Microsoft Clipboard Clip"},"encoding":"base64","extensions":["clp"],"registered":false},{"content-type":"application/x-msdos-program","encoding":"base64","extensions":["cmd","bat","com","exe","reg","ps1","vbs"],"registered":false},{"content-type":"application/x-msdownload","friendly":{"en":"Microsoft Application"},"encoding":"base64","extensions":["exe","com","cmd","bat","dll","msi","reg","ps1","vbs"],"registered":false},{"content-type":"application/x-msmediaview","friendly":{"en":"Microsoft MediaView"},"encoding":"base64","extensions":["m13","m14","mvb"],"registered":false},{"content-type":"application/x-msmetafile","friendly":{"en":"Microsoft Windows Metafile"},"encoding":"base64","extensions":["emf","emz","wmf","wmz"],"registered":false},{"content-type":"application/x-msmoney","friendly":{"en":"Microsoft Money"},"encoding":"base64","extensions":["mny"],"registered":false},{"content-type":"application/x-mspublisher","friendly":{"en":"Microsoft Publisher"},"encoding":"base64","extensions":["pub"],"registered":false},{"content-type":"application/x-msschedule","friendly":{"en":"Microsoft Schedule+"},"encoding":"base64","extensions":["scd"],"registered":false},{"content-type":"application/x-msterminal","friendly":{"en":"Microsoft Windows Terminal Services"},"encoding":"base64","extensions":["trm"],"registered":false},{"content-type":"application/x-msword","encoding":"base64","extensions":["doc","dot","wrd"],"obsolete":true,"use-instead":"application/msword","registered":false},{"content-type":"application/x-mswrite","friendly":{"en":"Microsoft Wordpad"},"encoding":"base64","extensions":["wri"],"registered":false},{"content-type":"application/x-netcdf","friendly":{"en":"Network Common Data Form (NetCDF)"},"encoding":"base64","extensions":["nc","cdf"],"registered":false},{"content-type":"application/x-ns-proxy-autoconfig","encoding":"base64","extensions":["pac"],"registered":false},{"content-type":"application/x-nzb","encoding":"base64","extensions":["nzb"],"registered":false},{"content-type":"application/x-opera-extension","encoding":"base64","extensions":["oex"],"registered":false},{"content-type":"application/x-pagemaker","encoding":"base64","extensions":["pm","pm5","pt5"],"registered":false},{"content-type":"application/x-perl","encoding":"8bit","extensions":["pl","pm"],"registered":false},{"content-type":"application/x-pgp","encoding":"base64","registered":false,"signature":true},{"content-type":"application/x-pkcs12","friendly":{"en":"PKCS #12 - Personal Information Exchange Syntax Standard"},"encoding":"base64","extensions":["p12","pfx"],"registered":false},{"content-type":"application/x-pkcs7-certificates","friendly":{"en":"PKCS #7 - Cryptographic Message Syntax Standard (Certificates)"},"encoding":"base64","extensions":["p7b","spc"],"registered":false},{"content-type":"application/x-pkcs7-certreqresp","friendly":{"en":"PKCS #7 - Cryptographic Message Syntax Standard (Certificate Request Response)"},"encoding":"base64","extensions":["p7r"],"registered":false},{"content-type":"application/x-python","encoding":"8bit","extensions":["py"],"registered":false},{"content-type":"application/x-quicktimeplayer","encoding":"base64","extensions":["qtl"],"registered":false},{"content-type":"application/x-rar-compressed","friendly":{"en":"RAR Archive"},"encoding":"base64","extensions":["rar"],"registered":false},{"content-type":"application/x-remote_printing","encoding":"base64","registered":false},{"content-type":"application/x-research-info-systems","encoding":"base64","extensions":["ris"],"registered":false},{"content-type":"application/x-rtf","encoding":"base64","extensions":["rtf"],"obsolete":true,"use-instead":"application/rtf","registered":false},{"content-type":"application/x-ruby","encoding":"8bit","extensions":["rb","rbw"],"registered":false},{"content-type":"application/x-set","encoding":"base64","registered":false},{"content-type":"application/x-sh","friendly":{"en":"Bourne Shell Script"},"encoding":"8bit","extensions":["sh"],"registered":false},{"content-type":"application/x-shar","friendly":{"en":"Shell Archive"},"encoding":"8bit","extensions":["shar"],"registered":false},{"content-type":"application/x-shockwave-flash","friendly":{"en":"Adobe Flash"},"encoding":"base64","extensions":["swf"],"registered":false},{"content-type":"application/x-silverlight-app","friendly":{"en":"Microsoft Silverlight"},"encoding":"base64","extensions":["xap"],"registered":false},{"content-type":"application/x-SLA","encoding":"base64","registered":false},{"content-type":"application/x-solids","encoding":"base64","registered":false},{"content-type":"application/x-spss","encoding":"base64","extensions":["sav","sbs","sps","spo","spp"],"registered":false},{"content-type":"application/x-sql","encoding":"base64","extensions":["sql"],"registered":false},{"content-type":"application/x-STEP","encoding":"base64","registered":false},{"content-type":"application/x-stuffit","friendly":{"en":"Stuffit Archive"},"encoding":"base64","extensions":["sit"],"registered":false},{"content-type":"application/x-stuffitx","friendly":{"en":"Stuffit Archive"},"encoding":"base64","extensions":["sitx"],"registered":false},{"content-type":"application/x-subrip","encoding":"base64","extensions":["srt"],"registered":false},{"content-type":"application/x-sv4cpio","friendly":{"en":"System V Release 4 CPIO Archive"},"encoding":"base64","extensions":["sv4cpio"],"registered":false},{"content-type":"application/x-sv4crc","friendly":{"en":"System V Release 4 CPIO Checksum Data"},"encoding":"base64","extensions":["sv4crc"],"registered":false},{"content-type":"application/x-t3vm-image","encoding":"base64","extensions":["t3"],"registered":false},{"content-type":"application/x-tads","encoding":"base64","extensions":["gam"],"registered":false},{"content-type":"application/x-tar","friendly":{"en":"Tar File (Tape Archive)"},"encoding":"base64","extensions":["tar"],"registered":false},{"content-type":"application/x-tcl","friendly":{"en":"Tcl Script"},"encoding":"8bit","extensions":["tcl"],"registered":false},{"content-type":"application/x-tex","friendly":{"en":"TeX"},"encoding":"8bit","extensions":["tex"],"registered":false},{"content-type":"application/x-tex-tfm","friendly":{"en":"TeX Font Metric"},"encoding":"base64","extensions":["tfm"],"registered":false},{"content-type":"application/x-texinfo","friendly":{"en":"GNU Texinfo Document"},"encoding":"8bit","extensions":["texinfo","texi"],"registered":false},{"content-type":"application/x-tgif","encoding":"base64","extensions":["obj"],"registered":false},{"content-type":"application/x-toolbook","encoding":"base64","extensions":["tbk"],"registered":false},{"content-type":"application/x-troff","encoding":"base64","extensions":["t","tr","roff"],"obsolete":true,"use-instead":"text/troff","registered":false},{"content-type":"application/x-troff-man","encoding":"8bit","extensions":["man"],"registered":false},{"content-type":"application/x-troff-me","encoding":"base64","extensions":["me"],"registered":false},{"content-type":"application/x-troff-ms","encoding":"base64","extensions":["ms"],"registered":false},{"content-type":"application/x-u-star","encoding":"base64","obsolete":true,"use-instead":"application/x-ustar","registered":false},{"content-type":"application/x-ustar","friendly":{"en":"Ustar (Uniform Standard Tape Archive)"},"encoding":"base64","extensions":["ustar"],"registered":false},{"content-type":"application/x-VMSBACKUP","encoding":"base64","extensions":["bck"],"registered":false},{"content-type":"application/x-wais-source","friendly":{"en":"WAIS Source"},"encoding":"base64","extensions":["src"],"registered":false},{"content-type":"application/x-web-app-manifest+json","encoding":"base64","extensions":["webapp"],"registered":false},{"content-type":"application/x-Wingz","encoding":"base64","extensions":["wz","wkz"],"registered":false},{"content-type":"application/x-word","encoding":"base64","extensions":["doc","dot"],"obsolete":true,"use-instead":"application/msword","registered":false},{"content-type":"application/x-wordperfect","encoding":"base64","extensions":["wp"],"obsolete":true,"use-instead":"application/vnd.wordperfect","registered":false},{"content-type":"application/x-wordperfect6.1","encoding":"base64","extensions":["wp6"],"registered":false},{"content-type":"application/x-wordperfectd","encoding":"base64","extensions":["wpd"],"obsolete":true,"use-instead":"application/vnd.wordperfect","registered":false},{"content-type":"application/x-www-form-urlencoded","encoding":"7bit","xrefs":{"person":"#<Set:0x007fe00e932f88>","template":"#<Set:0x007fe00e932e20>"},"registered":true},{"content-type":"application/x-x509-ca-cert","friendly":{"en":"X.509 Certificate"},"encoding":"base64","extensions":["crt","der"],"registered":false},{"content-type":"application/x-xfig","friendly":{"en":"Xfig"},"encoding":"base64","extensions":["fig"],"registered":false},{"content-type":"application/x-xliff+xml","encoding":"base64","extensions":["xlf"],"registered":false},{"content-type":"application/x-xpinstall","friendly":{"en":"XPInstall - Mozilla"},"encoding":"base64","extensions":["xpi"],"registered":false},{"content-type":"application/x-xz","encoding":"base64","extensions":["xz"],"registered":false},{"content-type":"application/x-zmachine","encoding":"base64","extensions":["z1","z2","z3","z4","z5","z6","z7","z8"],"registered":false},{"content-type":"application/x400-bp","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d1eec28>","template":"#<Set:0x007fe00d1eeae8>"},"registered":true},{"content-type":"application/x400.bp","encoding":"base64","obsolete":true,"use-instead":"application/x400-bp","registered":false},{"content-type":"application/xacml+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d1ec770>","template":"#<Set:0x007fe00d1ec630>"},"registered":true},{"content-type":"application/xaml+xml","encoding":"base64","extensions":["xaml"],"registered":false},{"content-type":"application/xcap-att+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d1f6270>","template":"#<Set:0x007fe00d1f6130>"},"registered":true},{"content-type":"application/xcap-caps+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d1f4e48>","template":"#<Set:0x007fe00d1f4d08>"},"registered":true},{"content-type":"application/xcap-diff+xml","friendly":{"en":"XML Configuration Access Protocol - XCAP Diff"},"encoding":"base64","extensions":["xdf"],"xrefs":{"rfc":"#<Set:0x007fe00d1ff640>","template":"#<Set:0x007fe00d1ff500>"},"registered":true},{"content-type":"application/xcap-el+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d1fe1c8>","template":"#<Set:0x007fe00d1fe088>"},"registered":true},{"content-type":"application/xcap-error+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d1fcd78>","template":"#<Set:0x007fe00d1fcc38>"},"registered":true},{"content-type":"application/xcap-ns+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d2078e0>","template":"#<Set:0x007fe00d2077a0>"},"registered":true},{"content-type":"application/xcon-conference-info+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d2063f0>","template":"#<Set:0x007fe00d2062b0>"},"registered":true},{"content-type":"application/xcon-conference-info-diff+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d204ff0>","template":"#<Set:0x007fe00d204eb0>"},"registered":true},{"content-type":"application/xenc+xml","friendly":{"en":"XML Encryption Syntax and Processing"},"encoding":"base64","extensions":["xenc"],"xrefs":{"person":"#<Set:0x007fe00d20f720>","template":"#<Set:0x007fe00d20f5b8>"},"registered":true},{"content-type":"application/xhtml+xml","friendly":{"en":"XHTML - The Extensible HyperText Markup Language"},"encoding":"8bit","extensions":["xht","xhtml"],"xrefs":{"person":"#<Set:0x007fe00d20de98>","template":"#<Set:0x007fe00d20dd30>"},"registered":true},{"content-type":"application/xhtml-voice+xml","encoding":"base64","obsolete":true,"xrefs":{"draft":"#<Set:0x007fe00d20c778>","template":"#<Set:0x007fe00d20c660>","notes":"#<Set:0x007fe00d20c520>"},"registered":true},{"content-type":"application/xml","friendly":{"en":"XML - Extensible Markup Language"},"encoding":"8bit","extensions":["xml","xsl"],"xrefs":{"rfc":"#<Set:0x007fe00d216d68>","template":"#<Set:0x007fe00d216c28>"},"registered":true},{"content-type":"application/xml-dtd","friendly":{"en":"Document Type Definition"},"encoding":"8bit","extensions":["dtd"],"xrefs":{"rfc":"#<Set:0x007fe00d215620>","template":"#<Set:0x007fe00d2154e0>"},"registered":true},{"content-type":"application/xml-external-parsed-entity","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d2141a8>","template":"#<Set:0x007fe00d214068>"},"registered":true},{"content-type":"application/xml-patch+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d21ecc0>","template":"#<Set:0x007fe00d21eb80>"},"registered":true},{"content-type":"application/xmpp+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d21d7d0>","template":"#<Set:0x007fe00d21d690>"},"registered":true},{"content-type":"application/xop+xml","friendly":{"en":"XML-Binary Optimized Packaging"},"encoding":"base64","extensions":["xop"],"xrefs":{"person":"#<Set:0x007fe00d227f78>","template":"#<Set:0x007fe00d227e38>"},"registered":true},{"content-type":"application/xproc+xml","encoding":"base64","extensions":["xpl"],"registered":false},{"content-type":"application/xslt+xml","friendly":{"en":"XML Transformations"},"encoding":"base64","extensions":["xslt"],"xrefs":{"person":"#<Set:0x007fe00d225778>","uri":"#<Set:0x007fe00d225638>"},"registered":true},{"content-type":"application/xspf+xml","friendly":{"en":"XSPF - XML Shareable Playlist Format"},"encoding":"base64","extensions":["xspf"],"registered":false},{"content-type":"application/xv+xml","friendly":{"en":"MXML"},"encoding":"base64","extensions":["mxml","xhvml","xvm","xvml"],"xrefs":{"rfc":"#<Set:0x007fe00e93ab20>","template":"#<Set:0x007fe00e93a9e0>"},"registered":true},{"content-type":"application/yang","friendly":{"en":"YANG Data Modeling Language"},"encoding":"base64","extensions":["yang"],"xrefs":{"rfc":"#<Set:0x007fe00e939180>","template":"#<Set:0x007fe00e939040>"},"registered":true},{"content-type":"application/yin+xml","friendly":{"en":"YIN (YANG - XML)"},"encoding":"base64","extensions":["yin"],"xrefs":{"rfc":"#<Set:0x007fe00e943a40>","template":"#<Set:0x007fe00e943900>"},"registered":true},{"content-type":"application/zip","friendly":{"en":"Zip Archive"},"encoding":"base64","extensions":["zip"],"xrefs":{"person":"#<Set:0x007fe00e942280>","template":"#<Set:0x007fe00e942140>"},"registered":true},{"content-type":"application/zlib","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e940ea8>","template":"#<Set:0x007fe00e940d68>"},"registered":true},{"content-type":"audio/1d-interleaved-parityfec","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e9c8218>","template":"#<Set:0x007fe00e9c80d8>"},"registered":true},{"content-type":"audio/32kadpcm","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e9d2bc8>","template":"#<Set:0x007fe00e9d2a60>"},"registered":true},{"content-type":"audio/3gpp","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e9d16b0>","template":"#<Set:0x007fe00e9d1548>"},"registered":true},{"content-type":"audio/3gpp2","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e9d0238>","template":"#<Set:0x007fe00e9d00d0>"},"registered":true},{"content-type":"audio/ac3","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e9dad78>","template":"#<Set:0x007fe00e9dac38>"},"registered":true},{"content-type":"audio/adpcm","friendly":{"en":"Adaptive differential pulse-code modulation"},"encoding":"base64","extensions":["adp"],"registered":false},{"content-type":"audio/AMR","encoding":"base64","extensions":["amr"],"xrefs":{"rfc":"#<Set:0x007fe00e9d8550>","template":"#<Set:0x007fe00e9d8410>"},"registered":true},{"content-type":"audio/AMR-WB","encoding":"base64","extensions":["awb"],"xrefs":{"rfc":"#<Set:0x007fe00e9e2fa0>","template":"#<Set:0x007fe00e9e2e60>"},"registered":true},{"content-type":"audio/amr-wb+","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e9e1a38>","template":"#<Set:0x007fe00e9e18f8>"},"registered":true},{"content-type":"audio/aptx","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e9e0520>","template":"#<Set:0x007fe00e9e03e0>"},"registered":true},{"content-type":"audio/asc","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e9eb088>","template":"#<Set:0x007fe00e9eaf48>"},"registered":true},{"content-type":"audio/ATRAC-ADVANCED-LOSSLESS","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e9e9c60>","template":"#<Set:0x007fe00e9e9b20>"},"registered":true},{"content-type":"audio/ATRAC-X","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e9e8810>","template":"#<Set:0x007fe00e9e86d0>"},"registered":true},{"content-type":"audio/ATRAC3","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e9e2fc8>","template":"#<Set:0x007fe00e9e2dc0>"},"registered":true},{"content-type":"audio/basic","friendly":{"en":"Sun Audio - Au file format"},"encoding":"base64","extensions":["au","snd"],"xrefs":{"rfc":"#<Set:0x007fe00e9e1038>","template":"#<Set:0x007fe00e9e0e80>"},"registered":true},{"content-type":"audio/BV16","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e9d35c8>","template":"#<Set:0x007fe00e9d33c0>"},"registered":true},{"content-type":"audio/BV32","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e9d1c78>","template":"#<Set:0x007fe00e9d1b10>"},"registered":true},{"content-type":"audio/clearmode","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e9d0300>","template":"#<Set:0x007fe00e9d0120>"},"registered":true},{"content-type":"audio/CN","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e98aee0>","template":"#<Set:0x007fe00e98ab20>"},"registered":true},{"content-type":"audio/DAT12","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e97b148>","template":"#<Set:0x007fe00e97ad88>"},"registered":true},{"content-type":"audio/dls","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e96b428>","template":"#<Set:0x007fe00e96b068>"},"registered":true},{"content-type":"audio/dsr-es201108","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e95b730>","template":"#<Set:0x007fe00e95b370>"},"registered":true},{"content-type":"audio/dsr-es202050","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e94b7b8>","template":"#<Set:0x007fe00e94b3f8>"},"registered":true},{"content-type":"audio/dsr-es202211","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e93bcf0>","template":"#<Set:0x007fe00e93bb38>"},"registered":true},{"content-type":"audio/dsr-es202212","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e93a4e0>","template":"#<Set:0x007fe00e93a3a0>"},"registered":true},{"content-type":"audio/DV","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e938910>","template":"#<Set:0x007fe00e938758>"},"registered":true},{"content-type":"audio/DVI4","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d21efb8>","template":"#<Set:0x007fe00d21ee50>"},"registered":true},{"content-type":"audio/eac3","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d21d6e0>","template":"#<Set:0x007fe00d21d528>"},"registered":true},{"content-type":"audio/encaprtp","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d20fe78>","template":"#<Set:0x007fe00d20fd10>"},"registered":true},{"content-type":"audio/EVRC","encoding":"base64","extensions":["evc"],"xrefs":{"rfc":"#<Set:0x007fe00d20e410>","template":"#<Set:0x007fe00d20e2d0>"},"registered":true},{"content-type":"audio/EVRC-QCP","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d20ca70>","template":"#<Set:0x007fe00d20c890>"},"registered":true},{"content-type":"audio/EVRC0","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d1ff118>","template":"#<Set:0x007fe00d1fefb0>"},"registered":true},{"content-type":"audio/EVRC1","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d1fd840>","template":"#<Set:0x007fe00d1fd6b0>"},"registered":true},{"content-type":"audio/EVRCB","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d1efe98>","template":"#<Set:0x007fe00d1efd08>"},"registered":true},{"content-type":"audio/EVRCB0","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d1ee2a0>","template":"#<Set:0x007fe00d1ee110>"},"registered":true},{"content-type":"audio/EVRCB1","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d1ecb30>","template":"#<Set:0x007fe00d1ec9f0>"},"registered":true},{"content-type":"audio/EVRCNW","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e933230>","template":"#<Set:0x007fe00e9330a0>"},"registered":true},{"content-type":"audio/EVRCNW0","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e931a48>","template":"#<Set:0x007fe00e9318b8>"},"registered":true},{"content-type":"audio/EVRCNW1","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e930170>","template":"#<Set:0x007fe00e923f88>"},"registered":true},{"content-type":"audio/EVRCWB","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e922868>","template":"#<Set:0x007fe00e922660>"},"registered":true},{"content-type":"audio/EVRCWB0","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e921058>","template":"#<Set:0x007fe00e920ec8>"},"registered":true},{"content-type":"audio/EVRCWB1","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e913660>","template":"#<Set:0x007fe00e913520>"},"registered":true},{"content-type":"audio/example","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e911dd8>","template":"#<Set:0x007fe00e911c20>"},"registered":true},{"content-type":"audio/fwdred","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e910438>","template":"#<Set:0x007fe00e9102f8>"},"registered":true},{"content-type":"audio/G711-0","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e902bf8>","template":"#<Set:0x007fe00e902ab8>"},"registered":true},{"content-type":"audio/G719","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e901000>","rfc-errata":"#<Set:0x007fe00e900e98>","template":"#<Set:0x007fe00e900d58>"},"registered":true},{"content-type":"audio/G722","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e8f3608>","template":"#<Set:0x007fe00e8f34a0>"},"registered":true},{"content-type":"audio/G7221","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e8f1d08>","template":"#<Set:0x007fe00e8f1bc8>"},"registered":true},{"content-type":"audio/G723","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e8f0408>","template":"#<Set:0x007fe00e8f02a0>"},"registered":true},{"content-type":"audio/G726-16","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e8e2c40>","template":"#<Set:0x007fe00e8e2ab0>"},"registered":true},{"content-type":"audio/G726-24","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e8e12f0>","template":"#<Set:0x007fe00e8e11b0>"},"registered":true},{"content-type":"audio/G726-32","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e8d3920>","template":"#<Set:0x007fe00e8d3718>"},"registered":true},{"content-type":"audio/G726-40","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e8d1fa8>","template":"#<Set:0x007fe00e8d1e68>"},"registered":true},{"content-type":"audio/G728","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e8d0590>","template":"#<Set:0x007fe00e8d0400>"},"registered":true},{"content-type":"audio/G729","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e8c2d50>","template":"#<Set:0x007fe00e8c2bc0>"},"registered":true},{"content-type":"audio/G7291","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e8c1478>"},"registered":true},{"content-type":"audio/G729D","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e8b3c88>","template":"#<Set:0x007fe00e8b3aa8>"},"registered":true},{"content-type":"audio/G729E","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e8b2130>","template":"#<Set:0x007fe00e8b1fc8>"},"registered":true},{"content-type":"audio/GSM","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e8b09e8>","template":"#<Set:0x007fe00e8b08a8>"},"registered":true},{"content-type":"audio/GSM-EFR","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e8a3068>","template":"#<Set:0x007fe00e8a2ed8>"},"registered":true},{"content-type":"audio/GSM-HR-08","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e8a1560>","template":"#<Set:0x007fe00e8a13f8>"},"registered":true},{"content-type":"audio/iLBC","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e893af0>","template":"#<Set:0x007fe00e893988>"},"registered":true},{"content-type":"audio/ip-mr_v2.5","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e8922b8>","template":"#<Set:0x007fe00e892100>"},"registered":true},{"content-type":"audio/L16","encoding":"base64","extensions":["l16"],"xrefs":{"rfc":"#<Set:0x007fe00e890760>","template":"#<Set:0x007fe00e890620>"},"registered":true},{"content-type":"audio/L20","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e882f48>","template":"#<Set:0x007fe00e882e08>"},"registered":true},{"content-type":"audio/L24","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e881670>","template":"#<Set:0x007fe00e8814e0>"},"registered":true},{"content-type":"audio/L8","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e873ed0>","template":"#<Set:0x007fe00e873d90>"},"registered":true},{"content-type":"audio/LPC","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e872648>","template":"#<Set:0x007fe00e872468>"},"registered":true},{"content-type":"audio/midi","friendly":{"en":"MIDI - Musical Instrument Digital Interface"},"encoding":"base64","extensions":["kar","mid","midi","rmi"],"registered":false},{"content-type":"audio/mobile-xmf","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e863300>","template":"#<Set:0x007fe00e8630f8>"},"registered":true},{"content-type":"audio/mp4","friendly":{"en":"MPEG-4 Audio"},"encoding":"base64","extensions":["mp4","mpg4","f4a","f4b","mp4a"],"xrefs":{"rfc":"#<Set:0x007fe00e8610f0>","template":"#<Set:0x007fe00e860f88>"},"registered":true},{"content-type":"audio/MP4A-LATM","encoding":"base64","extensions":["m4a"],"xrefs":{"rfc":"#<Set:0x007fe00e853388>","template":"#<Set:0x007fe00e853180>"},"registered":true},{"content-type":"audio/MPA","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e8519e8>","template":"#<Set:0x007fe00e8518a8>"},"registered":true},{"content-type":"audio/mpa-robust","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e843f28>","template":"#<Set:0x007fe00e843de8>"},"registered":true},{"content-type":"audio/mpeg","friendly":{"en":"MPEG Audio"},"encoding":"base64","extensions":["mpga","mp2","mp3","m2a","m3a","mp2a"],"xrefs":{"rfc":"#<Set:0x007fe00e841b38>","template":"#<Set:0x007fe00e8419f8>"},"registered":true},{"content-type":"audio/mpeg4-generic","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e833df8>","template":"#<Set:0x007fe00e833b78>"},"registered":true},{"content-type":"audio/ogg","friendly":{"en":"Ogg Audio"},"encoding":"base64","extensions":["oga","ogg","spx"],"xrefs":{"rfc":"#<Set:0x007fe00e831df0>","template":"#<Set:0x007fe00e831c88>"},"registered":true},{"content-type":"audio/opus","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e8302e8>","template":"#<Set:0x007fe00e8301a8>"},"registered":true},{"content-type":"audio/parityfec","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e8229e0>"},"registered":true},{"content-type":"audio/PCMA","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00e821388>","template":"#<Set:0x007fe00e821248>"},"registered":true},{"content-type":"audio/PCMA-WB","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d1d79b0>","template":"#<Set:0x007fe00d1d7848>"},"registered":true},{"content-type":"audio/PCMU","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d1d6150>","template":"#<Set:0x007fe00d1d5fe8>"},"registered":true},{"content-type":"audio/PCMU-WB","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d1d4760>","template":"#<Set:0x007fe00d1d4620>"},"registered":true},{"content-type":"audio/prs.sid","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d1c6e08>","template":"#<Set:0x007fe00d1c6c00>"},"registered":true},{"content-type":"audio/QCELP","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d1c5580>"},"registered":true},{"content-type":"audio/raptorfec","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d1b7de0>","template":"#<Set:0x007fe00d1b7ca0>"},"registered":true},{"content-type":"audio/RED","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d1b65a8>","template":"#<Set:0x007fe00d1b6468>"},"registered":true},{"content-type":"audio/rtp-enc-aescm128","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d1b4dc0>","template":"#<Set:0x007fe00d1b4c58>"},"registered":true},{"content-type":"audio/rtp-midi","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d1a7350>","template":"#<Set:0x007fe00d1a71e8>"},"registered":true},{"content-type":"audio/rtploopback","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d1a5af0>","template":"#<Set:0x007fe00d1a59b0>"},"registered":true},{"content-type":"audio/rtx","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d1a4010>","template":"#<Set:0x007fe00d197e50>"},"registered":true},{"content-type":"audio/s3m","encoding":"base64","extensions":["s3m"],"registered":false},{"content-type":"audio/silk","encoding":"base64","extensions":["sil"],"registered":false},{"content-type":"audio/SMV","encoding":"base64","extensions":["smv"],"xrefs":{"rfc":"#<Set:0x007fe00d194070>","template":"#<Set:0x007fe00d187e60>"},"registered":true},{"content-type":"audio/SMV-QCP","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d186740>","template":"#<Set:0x007fe00d186560>"},"registered":true},{"content-type":"audio/SMV0","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d184cd8>","template":"#<Set:0x007fe00d184b70>"},"registered":true},{"content-type":"audio/sp-midi","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d1471d0>","template":"#<Set:0x007fe00d147068>"},"registered":true},{"content-type":"audio/speex","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d145808>","template":"#<Set:0x007fe00d145600>"},"registered":true},{"content-type":"audio/t140c","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d143df0>","template":"#<Set:0x007fe00d143c88>"},"registered":true},{"content-type":"audio/t38","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d142568>","template":"#<Set:0x007fe00d1423d8>"},"registered":true},{"content-type":"audio/telephone-event","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d140c18>","template":"#<Set:0x007fe00d140ad8>"},"registered":true},{"content-type":"audio/tone","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d16f108>","template":"#<Set:0x007fe00d16efa0>"},"registered":true},{"content-type":"audio/UEMCLIP","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d16d808>","template":"#<Set:0x007fe00d16d6a0>"},"registered":true},{"content-type":"audio/ulpfec","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d15ff50>","template":"#<Set:0x007fe00d15fd48>"},"registered":true},{"content-type":"audio/VDVI","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d15e6c8>","template":"#<Set:0x007fe00d15e510>"},"registered":true},{"content-type":"audio/VMR-WB","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00d15cc60>","template":"#<Set:0x007fe00d15caf8>"},"registered":true},{"content-type":"audio/vnd.3gpp.iufp","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d11b148>","template":"#<Set:0x007fe00d11afe0>"},"registered":true},{"content-type":"audio/vnd.4SB","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d1197a8>","template":"#<Set:0x007fe00d119668>"},"registered":true},{"content-type":"audio/vnd.audiokoz","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d117d90>","template":"#<Set:0x007fe00d117c50>"},"registered":true},{"content-type":"audio/vnd.CELP","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d116490>","template":"#<Set:0x007fe00d1162d8>"},"registered":true},{"content-type":"audio/vnd.cisco.nse","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d114b68>","template":"#<Set:0x007fe00d114960>"},"registered":true},{"content-type":"audio/vnd.cmles.radio-events","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d107080>","template":"#<Set:0x007fe00d106f18>"},"registered":true},{"content-type":"audio/vnd.cns.anp1","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d1056e0>","template":"#<Set:0x007fe00d1055a0>"},"registered":true},{"content-type":"audio/vnd.cns.inf1","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f0b3ca8>","template":"#<Set:0x007fe00f0b3aa0>"},"registered":true},{"content-type":"audio/vnd.dece.audio","friendly":{"en":"DECE Audio"},"encoding":"base64","extensions":["uva","uvva"],"xrefs":{"person":"#<Set:0x007fe00f0b1db8>","template":"#<Set:0x007fe00f0b1c78>"},"registered":true},{"content-type":"audio/vnd.digital-winds","friendly":{"en":"Digital Winds Music"},"encoding":"7bit","extensions":["eol"],"xrefs":{"person":"#<Set:0x007fe00f0a3e98>","template":"#<Set:0x007fe00f0a3d58>"},"registered":true},{"content-type":"audio/vnd.dlna.adts","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f0a2480>","template":"#<Set:0x007fe00f0a2278>"},"registered":true},{"content-type":"audio/vnd.dolby.heaac.1","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f0a0ab8>","template":"#<Set:0x007fe00f0a0950>"},"registered":true},{"content-type":"audio/vnd.dolby.heaac.2","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f092ff8>","template":"#<Set:0x007fe00f092eb8>"},"registered":true},{"content-type":"audio/vnd.dolby.mlp","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f0916a8>","template":"#<Set:0x007fe00f091518>"},"registered":true},{"content-type":"audio/vnd.dolby.mps","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f083d00>","template":"#<Set:0x007fe00f083bc0>"},"registered":true},{"content-type":"audio/vnd.dolby.pl2","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f082400>","template":"#<Set:0x007fe00f082220>"},"registered":true},{"content-type":"audio/vnd.dolby.pl2x","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f080a88>","template":"#<Set:0x007fe00f080948>"},"registered":true},{"content-type":"audio/vnd.dolby.pl2z","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f0730e0>","template":"#<Set:0x007fe00f072f50>"},"registered":true},{"content-type":"audio/vnd.dolby.pulse.1","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f071718>","template":"#<Set:0x007fe00f0715d8>"},"registered":true},{"content-type":"audio/vnd.dra","friendly":{"en":"DRA Audio"},"encoding":"base64","extensions":["dra"],"xrefs":{"person":"#<Set:0x007fe00f063a00>","template":"#<Set:0x007fe00f063898>"},"registered":true},{"content-type":"audio/vnd.dts","friendly":{"en":"DTS Audio"},"encoding":"base64","extensions":["dts"],"xrefs":{"person":"#<Set:0x007fe00f061c00>","template":"#<Set:0x007fe00f061ac0>"},"registered":true},{"content-type":"audio/vnd.dts.hd","friendly":{"en":"DTS High Definition Audio"},"encoding":"base64","extensions":["dtshd"],"xrefs":{"person":"#<Set:0x007fe00f053f60>","template":"#<Set:0x007fe00f053df8>"},"registered":true},{"content-type":"audio/vnd.dvb.file","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f052570>","template":"#<Set:0x007fe00f052408>"},"registered":true},{"content-type":"audio/vnd.everad.plj","encoding":"base64","extensions":["plj"],"xrefs":{"person":"#<Set:0x007fe00f050a90>","template":"#<Set:0x007fe00f050950>"},"registered":true},{"content-type":"audio/vnd.hns.audio","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f042fd0>","template":"#<Set:0x007fe00f042e90>"},"registered":true},{"content-type":"audio/vnd.lucent.voice","friendly":{"en":"Lucent Voice"},"encoding":"base64","extensions":["lvp"],"xrefs":{"person":"#<Set:0x007fe00f0411f8>","template":"#<Set:0x007fe00f041090>"},"registered":true},{"content-type":"audio/vnd.ms-playready.media.pya","friendly":{"en":"Microsoft PlayReady Ecosystem"},"encoding":"base64","extensions":["pya"],"xrefs":{"person":"#<Set:0x007fe00f0334e0>","template":"#<Set:0x007fe00f033378>"},"registered":true},{"content-type":"audio/vnd.nokia.mobile-xmf","encoding":"base64","extensions":["mxmf"],"xrefs":{"person":"#<Set:0x007fe00f031938>","template":"#<Set:0x007fe00f0317a8>"},"registered":true},{"content-type":"audio/vnd.nortel.vbk","encoding":"base64","extensions":["vbk"],"xrefs":{"person":"#<Set:0x007fe00f023c98>","template":"#<Set:0x007fe00f023ae0>"},"registered":true},{"content-type":"audio/vnd.nuera.ecelp4800","friendly":{"en":"Nuera ECELP 4800"},"encoding":"base64","extensions":["ecelp4800"],"xrefs":{"person":"#<Set:0x007fe00f021e70>","template":"#<Set:0x007fe00f021d30>"},"registered":true},{"content-type":"audio/vnd.nuera.ecelp7470","friendly":{"en":"Nuera ECELP 7470"},"encoding":"base64","extensions":["ecelp7470"],"xrefs":{"person":"#<Set:0x007fe00f0201d8>","template":"#<Set:0x007fe00f013fa0>"},"registered":true},{"content-type":"audio/vnd.nuera.ecelp9600","friendly":{"en":"Nuera ECELP 9600"},"encoding":"base64","extensions":["ecelp9600"],"xrefs":{"person":"#<Set:0x007fe00f0123a8>","template":"#<Set:0x007fe00f012240>"},"registered":true},{"content-type":"audio/vnd.octel.sbc","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f010ad0>","template":"#<Set:0x007fe00f010990>"},"registered":true},{"content-type":"audio/vnd.qcelp","encoding":"base64","extensions":["qcp"],"obsolete":true,"use-instead":"audio/qcelp","xrefs":{"rfc":"#<Set:0x007fe00f002958>","template":"#<Set:0x007fe00f0027f0>","notes":"#<Set:0x007fe00f0026b0>"},"registered":true},{"content-type":"audio/vnd.rhetorex.32kadpcm","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00f000e28>","template":"#<Set:0x007fe00f000c98>"},"registered":true},{"content-type":"audio/vnd.rip","friendly":{"en":"Hit'n'Mix"},"encoding":"base64","extensions":["rip"],"xrefs":{"person":"#<Set:0x007fe00cfeb070>","template":"#<Set:0x007fe00cfeaeb8>"},"registered":true},{"content-type":"audio/vnd.sealedmedia.softseal.mpeg","encoding":"base64","extensions":["smp3","smp","s1m"],"xrefs":{"person":"#<Set:0x007fe00cfe91f8>","template":"#<Set:0x007fe00cfe9090>"},"registered":true},{"content-type":"audio/vnd.vmx.cvsd","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cfdb7d8>","template":"#<Set:0x007fe00cfdb698>"},"registered":true},{"content-type":"audio/vorbis","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cfd9d98>","template":"#<Set:0x007fe00cfd9c08>"},"registered":true},{"content-type":"audio/vorbis-config","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cfd8560>","template":"#<Set:0x007fe00cfd8420>"},"registered":true},{"content-type":"audio/webm","friendly":{"en":"Open Web Media Project - Audio"},"encoding":"base64","extensions":["weba","webm"],"registered":false},{"content-type":"audio/x-aac","friendly":{"en":"Advanced Audio Coding (AAC)"},"encoding":"base64","extensions":["aac"],"registered":false},{"content-type":"audio/x-aiff","friendly":{"en":"Audio Interchange File Format"},"encoding":"base64","extensions":["aif","aifc","aiff"],"registered":false},{"content-type":"audio/x-caf","encoding":"base64","extensions":["caf"],"registered":false},{"content-type":"audio/x-flac","encoding":"base64","extensions":["flac"],"registered":false},{"content-type":"audio/x-matroska","encoding":"base64","extensions":["mka"],"registered":false},{"content-type":"audio/x-midi","encoding":"base64","extensions":["mid","midi","kar"],"registered":false},{"content-type":"audio/x-mpegurl","friendly":{"en":"M3U (Multimedia Playlist)"},"encoding":"base64","extensions":["m3u"],"registered":false},{"content-type":"audio/x-ms-wax","friendly":{"en":"Microsoft Windows Media Audio Redirector"},"encoding":"base64","extensions":["wax"],"registered":false},{"content-type":"audio/x-ms-wma","friendly":{"en":"Microsoft Windows Media Audio"},"encoding":"base64","extensions":["wma"],"registered":false},{"content-type":"audio/x-ms-wmv","encoding":"base64","extensions":["wmv"],"registered":false},{"content-type":"audio/x-pn-realaudio","friendly":{"en":"Real Audio Sound"},"encoding":"base64","extensions":["ra","ram"],"registered":false},{"content-type":"audio/x-pn-realaudio-plugin","friendly":{"en":"Real Audio Sound"},"encoding":"base64","extensions":["rmp","rpm"],"registered":false},{"content-type":"audio/x-realaudio","encoding":"base64","extensions":["ra"],"registered":false},{"content-type":"audio/x-wav","friendly":{"en":"Waveform Audio File Format (WAV)"},"encoding":"base64","extensions":["wav"],"registered":false},{"content-type":"audio/xm","encoding":"base64","extensions":["xm"],"registered":false},{"content-type":"chemical/x-cdx","friendly":{"en":"ChemDraw eXchange file"},"encoding":"base64","extensions":["cdx"],"registered":false},{"content-type":"chemical/x-cif","friendly":{"en":"Crystallographic Interchange Format"},"encoding":"base64","extensions":["cif"],"registered":false},{"content-type":"chemical/x-cmdf","friendly":{"en":"CrystalMaker Data Format"},"encoding":"base64","extensions":["cmdf"],"registered":false},{"content-type":"chemical/x-cml","friendly":{"en":"Chemical Markup Language"},"encoding":"base64","extensions":["cml"],"registered":false},{"content-type":"chemical/x-csml","friendly":{"en":"Chemical Style Markup Language"},"encoding":"base64","extensions":["csml"],"registered":false},{"content-type":"chemical/x-pdb","encoding":"base64","extensions":["pdb"],"obsolete":true,"use-instead":"x-chemical/x-pdb","registered":false},{"content-type":"chemical/x-xyz","friendly":{"en":"XYZ File Format"},"encoding":"base64","extensions":["xyz"],"obsolete":true,"use-instead":"x-chemical/x-xyz","registered":false},{"content-type":"drawing/dwf","encoding":"base64","extensions":["dwf"],"obsolete":true,"use-instead":"x-drawing/dwf","registered":false},{"content-type":"image/bmp","friendly":{"en":"Bitmap Image File"},"encoding":"base64","extensions":["bmp"],"obsolete":true,"use-instead":"image/x-bmp","registered":false},{"content-type":"image/cgm","friendly":{"en":"Computer Graphics Metafile"},"encoding":"base64","extensions":["cgm"],"xrefs":{"person":"#<Set:0x007fe00cea21c8>","template":"#<Set:0x007fe00cea2060>"},"registered":true},{"content-type":"image/cmu-raster","encoding":"base64","obsolete":true,"use-instead":"image/x-cmu-raster","registered":false},{"content-type":"image/example","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00ce93420>","template":"#<Set:0x007fe00ce93240>"},"registered":true},{"content-type":"image/fits","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00ce91ad0>","template":"#<Set:0x007fe00ce918c8>"},"registered":true},{"content-type":"image/g3fax","friendly":{"en":"G3 Fax Image"},"encoding":"base64","extensions":["g3"],"xrefs":{"rfc":"#<Set:0x007fe00ce83d90>","template":"#<Set:0x007fe00ce83c28>"},"registered":true},{"content-type":"image/gif","friendly":{"en":"Graphics Interchange Format"},"encoding":"base64","extensions":["gif"],"xrefs":{"rfc":"#<Set:0x007fe00ce820a8>"},"registered":true},{"content-type":"image/ief","friendly":{"en":"Image Exchange Format"},"encoding":"base64","extensions":["ief"],"xrefs":{"rfc":"#<Set:0x007fe00ce80500>"},"registered":true},{"content-type":"image/jp2","encoding":"base64","extensions":["jp2","jpg2"],"xrefs":{"rfc":"#<Set:0x007fe00ce72b08>","template":"#<Set:0x007fe00ce729a0>"},"registered":true},{"content-type":"image/jpeg","friendly":{"en":"JPEG Image"},"encoding":"base64","extensions":["jpeg","jpg","jpe"],"xrefs":{"rfc":"#<Set:0x007fe00ce70ce0>"},"registered":true},{"content-type":"image/jpm","encoding":"base64","extensions":["jpm","jpgm"],"xrefs":{"rfc":"#<Set:0x007fe00ce63180>","template":"#<Set:0x007fe00ce62ff0>"},"registered":true},{"content-type":"image/jpx","encoding":"base64","extensions":["jpx","jpf"],"xrefs":{"rfc":"#<Set:0x007fe00ce61588>","template":"#<Set:0x007fe00ce613a8>"},"registered":true},{"content-type":"image/ktx","friendly":{"en":"OpenGL Textures (KTX)"},"encoding":"base64","extensions":["ktx"],"xrefs":{"person":"#<Set:0x007fe00ce534d8>","uri":"#<Set:0x007fe00ce532a8>"},"registered":true},{"content-type":"image/naplps","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce51b10>","template":"#<Set:0x007fe00ce519d0>"},"registered":true},{"content-type":"image/pjpeg","docs":"Fixes a bug with IE6 and progressive JPEGs","encoding":"base64","registered":false},{"content-type":"image/png","friendly":{"en":"Portable Network Graphics (PNG)"},"encoding":"base64","extensions":["png"],"xrefs":{"person":"#<Set:0x007fe00ce42bb0>","template":"#<Set:0x007fe00ce42a70>"},"registered":true},{"content-type":"image/prs.btif","friendly":{"en":"BTIF"},"encoding":"base64","extensions":["btif"],"xrefs":{"person":"#<Set:0x007fe00ce40e00>","template":"#<Set:0x007fe00ce40c98>"},"registered":true},{"content-type":"image/prs.pti","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce33318>","template":"#<Set:0x007fe00ce331b0>"},"registered":true},{"content-type":"image/pwg-raster","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce31888>","template":"#<Set:0x007fe00ce31748>"},"registered":true},{"content-type":"image/sgi","encoding":"base64","extensions":["sgi"],"registered":false},{"content-type":"image/svg+xml","friendly":{"en":"Scalable Vector Graphics (SVG)"},"encoding":"8bit","extensions":["svg","svgz"],"xrefs":{"person":"#<Set:0x007fe00ce22478>","uri":"#<Set:0x007fe00ce22310>"},"registered":true},{"content-type":"image/t38","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00ce20a10>","template":"#<Set:0x007fe00ce208d0>"},"registered":true},{"content-type":"image/targa","encoding":"base64","extensions":["tga"],"obsolete":true,"use-instead":"image/x-targa","registered":false},{"content-type":"image/tiff","friendly":{"en":"Tagged Image File Format"},"encoding":"base64","extensions":["tiff","tif"],"xrefs":{"rfc":"#<Set:0x007fe00ce11790>","template":"#<Set:0x007fe00ce11628>"},"registered":true},{"content-type":"image/tiff-fx","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00ce03e10>","template":"#<Set:0x007fe00ce03c80>"},"registered":true},{"content-type":"image/vnd.adobe.photoshop","friendly":{"en":"Photoshop Document"},"encoding":"base64","extensions":["psd"],"xrefs":{"person":"#<Set:0x007fe00ce02088>","template":"#<Set:0x007fe00ce01e58>"},"registered":true},{"content-type":"image/vnd.airzip.accelerator.azv","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ce005d0>","template":"#<Set:0x007fe00ce00490>"},"registered":true},{"content-type":"image/vnd.cns.inf2","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cdf2ac0>","template":"#<Set:0x007fe00cdf2980>"},"registered":true},{"content-type":"image/vnd.dece.graphic","friendly":{"en":"DECE Graphic"},"encoding":"base64","extensions":["uvg","uvi","uvvg","uvvi"],"xrefs":{"person":"#<Set:0x007fe00cdf0950>","template":"#<Set:0x007fe00cdf0810>"},"registered":true},{"content-type":"image/vnd.dgn","encoding":"base64","extensions":["dgn"],"obsolete":true,"use-instead":"image/x-vnd.dgn","registered":false},{"content-type":"image/vnd.djvu","friendly":{"en":"DjVu"},"encoding":"base64","extensions":["djvu","djv"],"xrefs":{"person":"#<Set:0x007fe00cde0f78>","template":"#<Set:0x007fe00cde0dc0>"},"registered":true},{"content-type":"image/vnd.dvb.subtitle","friendly":{"en":"Close Captioning - Subtitle"},"encoding":"base64","extensions":["sub"],"xrefs":{"person":"#<Set:0x007fe00cdd2ec8>","template":"#<Set:0x007fe00cdd2d60>"},"registered":true},{"content-type":"image/vnd.dwg","friendly":{"en":"DWG Drawing"},"encoding":"base64","extensions":["dwg"],"xrefs":{"person":"#<Set:0x007fe00cdd1078>","template":"#<Set:0x007fe00cdd0f38>"},"registered":true},{"content-type":"image/vnd.dxf","friendly":{"en":"AutoCAD DXF"},"encoding":"base64","extensions":["dxf"],"xrefs":{"person":"#<Set:0x007fe00cdc3180>","template":"#<Set:0x007fe00cdc3018>"},"registered":true},{"content-type":"image/vnd.fastbidsheet","friendly":{"en":"FastBid Sheet"},"encoding":"base64","extensions":["fbs"],"xrefs":{"person":"#<Set:0x007fe00cdc13d0>","template":"#<Set:0x007fe00cdc1290>"},"registered":true},{"content-type":"image/vnd.fpx","friendly":{"en":"FlashPix"},"encoding":"base64","extensions":["fpx"],"xrefs":{"person":"#<Set:0x007fe00cdb3578>","template":"#<Set:0x007fe00cdb33c0>"},"registered":true},{"content-type":"image/vnd.fst","friendly":{"en":"FAST Search & Transfer ASA"},"encoding":"base64","extensions":["fst"],"xrefs":{"person":"#<Set:0x007fe00cdb1778>","template":"#<Set:0x007fe00cdb1598>"},"registered":true},{"content-type":"image/vnd.fujixerox.edmics-mmr","friendly":{"en":"EDMICS 2000"},"encoding":"base64","extensions":["mmr"],"xrefs":{"person":"#<Set:0x007fe00cda3920>","template":"#<Set:0x007fe00cda37e0>"},"registered":true},{"content-type":"image/vnd.fujixerox.edmics-rlc","friendly":{"en":"EDMICS 2000"},"encoding":"base64","extensions":["rlc"],"xrefs":{"person":"#<Set:0x007fe00cda1da0>","template":"#<Set:0x007fe00cda1c38>"},"registered":true},{"content-type":"image/vnd.globalgraphics.pgb","encoding":"base64","extensions":["pgb"],"xrefs":{"person":"#<Set:0x007fe00cda0270>","template":"#<Set:0x007fe00cda00b8>"},"registered":true},{"content-type":"image/vnd.microsoft.icon","encoding":"base64","extensions":["ico"],"xrefs":{"person":"#<Set:0x007fe00e81a6a0>","template":"#<Set:0x007fe00e81a498>"},"registered":true},{"content-type":"image/vnd.mix","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00e818af8>","template":"#<Set:0x007fe00e818968>"},"registered":true},{"content-type":"image/vnd.mozilla.apng","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00e80b218>","template":"#<Set:0x007fe00e80b088>"},"registered":true},{"content-type":"image/vnd.ms-modi","friendly":{"en":"Microsoft Document Imaging Format"},"encoding":"base64","extensions":["mdi"],"xrefs":{"person":"#<Set:0x007fe00e809350>","template":"#<Set:0x007fe00e8091e8>"},"registered":true},{"content-type":"image/vnd.ms-photo","encoding":"base64","extensions":["wdp"],"registered":false},{"content-type":"image/vnd.net-fpx","friendly":{"en":"FlashPix"},"encoding":"base64","extensions":["npx"],"xrefs":{"person":"#<Set:0x007fe00c7f2418>","template":"#<Set:0x007fe00c7f22d8>"},"registered":true},{"content-type":"image/vnd.net.fpx","encoding":"base64","obsolete":true,"use-instead":"image/vnd.net-fpx","registered":false},{"content-type":"image/vnd.radiance","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7e3490>","template":"#<Set:0x007fe00c7e3260>"},"registered":true},{"content-type":"image/vnd.sealed.png","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7e1848>","template":"#<Set:0x007fe00c7e16e0>"},"registered":true},{"content-type":"image/vnd.sealedmedia.softseal.gif","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7d3e50>","template":"#<Set:0x007fe00c7d3ce8>"},"registered":true},{"content-type":"image/vnd.sealedmedia.softseal.jpg","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7d2578>","template":"#<Set:0x007fe00c7d23c0>"},"registered":true},{"content-type":"image/vnd.svf","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7d0b38>","template":"#<Set:0x007fe00c7d0980>"},"registered":true},{"content-type":"image/vnd.tencent.tap","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7c30f0>","template":"#<Set:0x007fe00c7c2f60>"},"registered":true},{"content-type":"image/vnd.valve.source.texture","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7c1688>","template":"#<Set:0x007fe00c7c14d0>"},"registered":true},{"content-type":"image/vnd.wap.wbmp","friendly":{"en":"WAP Bitamp (WBMP)"},"encoding":"base64","extensions":["wbmp"],"xrefs":{"person":"#<Set:0x007fe00c7b37b8>","template":"#<Set:0x007fe00c7b35d8>"},"registered":true},{"content-type":"image/vnd.xiff","friendly":{"en":"eXtended Image File Format (XIFF)"},"encoding":"base64","extensions":["xif"],"xrefs":{"person":"#<Set:0x007fe00c7b19b8>","template":"#<Set:0x007fe00c7b1878>"},"registered":true},{"content-type":"image/vnd.zbrush.pcx","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c7b0068>","template":"#<Set:0x007fe00c7a3ed0>"},"registered":true},{"content-type":"image/webp","friendly":{"en":"WebP Image"},"encoding":"base64","extensions":["webp"],"registered":false},{"content-type":"image/x-3ds","encoding":"base64","extensions":["3ds"],"registered":false},{"content-type":"image/x-bmp","encoding":"base64","extensions":["bmp"],"registered":false},{"content-type":"image/x-cmu-raster","friendly":{"en":"CMU Image"},"encoding":"base64","extensions":["ras"],"registered":false},{"content-type":"image/x-cmx","friendly":{"en":"Corel Metafile Exchange (CMX)"},"encoding":"base64","extensions":["cmx"],"registered":false},{"content-type":"image/x-compressed-xcf","docs":"see-also:image/x-xcf","encoding":"base64","extensions":["xcfbz2","xcfgz"],"registered":false},{"content-type":"image/x-freehand","friendly":{"en":"FreeHand MX"},"encoding":"base64","extensions":["fh","fh4","fh5","fh7","fhc"],"registered":false},{"content-type":"image/x-hasselblad-3fr","encoding":"base64","extensions":["3fr"],"registered":false},{"content-type":"image/x-icon","friendly":{"en":"Icon Image"},"encoding":"base64","extensions":["ico"],"registered":false},{"content-type":"image/x-mrsid-image","encoding":"base64","extensions":["sid"],"registered":false},{"content-type":"image/x-ms-bmp","friendly":{"en":"Bitmap Image File"},"encoding":"base64","extensions":["bmp"],"obsolete":true,"registered":false},{"content-type":"image/x-paintshoppro","encoding":"base64","extensions":["psp","pspimage"],"registered":false},{"content-type":"image/x-pcx","friendly":{"en":"PCX Image"},"encoding":"base64","extensions":["pcx"],"registered":false},{"content-type":"image/x-pict","friendly":{"en":"PICT Image"},"encoding":"base64","extensions":["pct","pic"],"registered":false},{"content-type":"image/x-portable-anymap","friendly":{"en":"Portable Anymap Image"},"encoding":"base64","extensions":["pnm"],"registered":false},{"content-type":"image/x-portable-bitmap","friendly":{"en":"Portable Bitmap Format"},"encoding":"base64","extensions":["pbm"],"registered":false},{"content-type":"image/x-portable-graymap","friendly":{"en":"Portable Graymap Format"},"encoding":"base64","extensions":["pgm"],"registered":false},{"content-type":"image/x-portable-pixmap","friendly":{"en":"Portable Pixmap Format"},"encoding":"base64","extensions":["ppm"],"registered":false},{"content-type":"image/x-rgb","friendly":{"en":"Silicon Graphics RGB Bitmap"},"encoding":"base64","extensions":["rgb"],"registered":false},{"content-type":"image/x-targa","encoding":"base64","extensions":["tga"],"registered":false},{"content-type":"image/x-tga","encoding":"base64","extensions":["tga"],"registered":false},{"content-type":"image/x-vnd.dgn","encoding":"base64","extensions":["dgn"],"registered":false},{"content-type":"image/x-win-bmp","encoding":"base64","registered":false},{"content-type":"image/x-xbitmap","friendly":{"en":"X BitMap"},"encoding":"7bit","extensions":["xbm"],"registered":false},{"content-type":"image/x-xbm","encoding":"7bit","extensions":["xbm"],"registered":false},{"content-type":"image/x-xcf","encoding":"base64","extensions":["xcf"],"registered":false},{"content-type":"image/x-xpixmap","friendly":{"en":"X PixMap"},"encoding":"8bit","extensions":["xpm"],"registered":false},{"content-type":"image/x-xwindowdump","friendly":{"en":"X Window Dump"},"encoding":"base64","extensions":["xwd"],"registered":false},{"content-type":"message/CPIM","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c6e1948>","template":"#<Set:0x007fe00c6e17e0>"},"registered":true},{"content-type":"message/delivery-status","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c6d3ed8>","template":"#<Set:0x007fe00c6d3d70>"},"registered":true},{"content-type":"message/disposition-notification","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c6d2538>","template":"#<Set:0x007fe00c6d2358>"},"registered":true},{"content-type":"message/example","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c6d0b70>","template":"#<Set:0x007fe00c6d09e0>"},"registered":true},{"content-type":"message/external-body","encoding":"8bit","xrefs":{"rfc":"#<Set:0x007fe00c6c2fc0>"},"registered":true},{"content-type":"message/feedback-report","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c6c16e8>","template":"#<Set:0x007fe00c6c1558>"},"registered":true},{"content-type":"message/global","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c6b3ca0>","template":"#<Set:0x007fe00c6b3ac0>"},"registered":true},{"content-type":"message/global-delivery-status","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c6b2288>","template":"#<Set:0x007fe00c6b2120>"},"registered":true},{"content-type":"message/global-disposition-notification","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c6b0a00>","template":"#<Set:0x007fe00c6b0898>"},"registered":true},{"content-type":"message/global-headers","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c6a2fb8>","template":"#<Set:0x007fe00c6a2e50>"},"registered":true},{"content-type":"message/http","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c6a15f0>","template":"#<Set:0x007fe00c6a14b0>"},"registered":true},{"content-type":"message/imdn+xml","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c693c98>","template":"#<Set:0x007fe00c693b58>"},"registered":true},{"content-type":"message/news","encoding":"8bit","obsolete":true,"xrefs":{"rfc":"#<Set:0x007fe00c691c68>","person":"#<Set:0x007fe00c691b00>","template":"#<Set:0x007fe00c691998>","notes":"#<Set:0x007fe00c691858>"},"registered":true},{"content-type":"message/partial","encoding":"8bit","xrefs":{"rfc":"#<Set:0x007fe00c690200>"},"registered":true},{"content-type":"message/rfc822","friendly":{"en":"Email Message"},"encoding":"8bit","extensions":["eml","mime"],"xrefs":{"rfc":"#<Set:0x007fe00c682358>"},"registered":true},{"content-type":"message/s-http","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c680a08>","template":"#<Set:0x007fe00c6808a0>"},"registered":true},{"content-type":"message/sip","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c672fc0>","template":"#<Set:0x007fe00c672e58>"},"registered":true},{"content-type":"message/sipfrag","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c671698>","template":"#<Set:0x007fe00c671558>"},"registered":true},{"content-type":"message/tracking-status","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c663d40>","template":"#<Set:0x007fe00c663c00>"},"registered":true},{"content-type":"message/vnd.si.simp","encoding":"base64","obsolete":true,"xrefs":{"person":"#<Set:0x007fe00c662210>","template":"#<Set:0x007fe00c6620d0>","notes":"#<Set:0x007fe00c661f90>"},"registered":true},{"content-type":"message/vnd.wfa.wsc","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c660730>","template":"#<Set:0x007fe00c6605f0>"},"registered":true},{"content-type":"model/example","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c622ea8>","template":"#<Set:0x007fe00c622ca0>"},"registered":true},{"content-type":"model/iges","friendly":{"en":"Initial Graphics Exchange Specification (IGES)"},"encoding":"base64","extensions":["igs","iges"],"xrefs":{"person":"#<Set:0x007fe00c620d88>","template":"#<Set:0x007fe00c620ba8>"},"registered":true},{"content-type":"model/mesh","friendly":{"en":"Mesh Data Type"},"encoding":"base64","extensions":["msh","mesh","silo"],"xrefs":{"rfc":"#<Set:0x007fe00c612d78>"},"registered":true},{"content-type":"model/vnd.collada+xml","friendly":{"en":"COLLADA"},"encoding":"base64","extensions":["dae"],"xrefs":{"person":"#<Set:0x007fe00c610fc8>","template":"#<Set:0x007fe00c610e88>"},"registered":true},{"content-type":"model/vnd.dwf","friendly":{"en":"Autodesk Design Web Format (DWF)"},"encoding":"base64","extensions":["dwf"],"xrefs":{"person":"#<Set:0x007fe00c603058>","template":"#<Set:0x007fe00c602ef0>"},"registered":true},{"content-type":"model/vnd.flatland.3dml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c601708>","template":"#<Set:0x007fe00c6015a0>"},"registered":true},{"content-type":"model/vnd.gdl","friendly":{"en":"Geometric Description Language (GDL)"},"encoding":"base64","extensions":["gdl"],"xrefs":{"person":"#<Set:0x007fe00c5f38b0>","template":"#<Set:0x007fe00c5f3720>"},"registered":true},{"content-type":"model/vnd.gs-gdl","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5f1ee8>","template":"#<Set:0x007fe00c5f1d80>"},"registered":true},{"content-type":"model/vnd.gtw","friendly":{"en":"Gen-Trix Studio"},"encoding":"base64","extensions":["gtw"],"xrefs":{"person":"#<Set:0x007fe00c5f0110>","template":"#<Set:0x007fe00c5e3f50>"},"registered":true},{"content-type":"model/vnd.moml+xml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5e2740>","template":"#<Set:0x007fe00c5e2600>"},"registered":true},{"content-type":"model/vnd.mts","friendly":{"en":"Virtue MTS"},"encoding":"base64","extensions":["mts"],"xrefs":{"person":"#<Set:0x007fe00c5e0878>","template":"#<Set:0x007fe00c5e0738>"},"registered":true},{"content-type":"model/vnd.opengex","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5d2d40>","template":"#<Set:0x007fe00c5d2bb0>"},"registered":true},{"content-type":"model/vnd.parasolid.transmit.binary","encoding":"base64","extensions":["x_b","xmt_bin"],"xrefs":{"person":"#<Set:0x007fe00c5d1080>","template":"#<Set:0x007fe00c5d0e78>"},"registered":true},{"content-type":"model/vnd.parasolid.transmit.text","encoding":"quoted-printable","extensions":["x_t","xmt_txt"],"xrefs":{"person":"#<Set:0x007fe00c5c3390>","template":"#<Set:0x007fe00c5c31b0>"},"registered":true},{"content-type":"model/vnd.valve.source.compiled-map","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5c1900>","template":"#<Set:0x007fe00c5c1798>"},"registered":true},{"content-type":"model/vnd.vtu","friendly":{"en":"Virtue VTU"},"encoding":"base64","extensions":["vtu"],"xrefs":{"person":"#<Set:0x007fe00c5b3d00>","template":"#<Set:0x007fe00c5b3b48>"},"registered":true},{"content-type":"model/vrml","friendly":{"en":"Virtual Reality Modeling Language"},"encoding":"base64","extensions":["wrl","vrml"],"xrefs":{"rfc":"#<Set:0x007fe00c5b1eb0>"},"registered":true},{"content-type":"model/x3d+binary","encoding":"base64","extensions":["x3db","x3dbz"],"registered":false},{"content-type":"model/x3d+fastinfoset","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c5a30e0>","template":"#<Set:0x007fe00c5a2fa0>"},"registered":true},{"content-type":"model/x3d+vrml","encoding":"base64","extensions":["x3dv","x3dvz"],"registered":false},{"content-type":"model/x3d+xml","encoding":"base64","extensions":["x3d","x3dz"],"xrefs":{"person":"#<Set:0x007fe00c593ed8>","template":"#<Set:0x007fe00c593d48>"},"registered":true},{"content-type":"model/x3d-vrml","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c592448>","template":"#<Set:0x007fe00c592218>"},"registered":true},{"content-type":"multipart/alternative","encoding":"8bit","xrefs":{"rfc":"#<Set:0x007fe00c563ee0>"},"registered":true},{"content-type":"multipart/appledouble","encoding":"8bit","xrefs":{"person":"#<Set:0x007fe00c5624c8>","template":"#<Set:0x007fe00c562360>"},"registered":true},{"content-type":"multipart/byteranges","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c560bc8>","template":"#<Set:0x007fe00c560a60>"},"registered":true},{"content-type":"multipart/digest","encoding":"8bit","xrefs":{"rfc":"#<Set:0x007fe00c5532c0>"},"registered":true},{"content-type":"multipart/encrypted","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c551b00>","template":"#<Set:0x007fe00c5519c0>"},"registered":true},{"content-type":"multipart/example","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c550138>","template":"#<Set:0x007fe00c543f28>"},"registered":true},{"content-type":"multipart/form-data","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c542768>","template":"#<Set:0x007fe00c542600>"},"registered":true},{"content-type":"multipart/header-set","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c540d50>","template":"#<Set:0x007fe00c540c10>"},"registered":true},{"content-type":"multipart/mixed","encoding":"8bit","xrefs":{"rfc":"#<Set:0x007fe00c5334e8>"},"registered":true},{"content-type":"multipart/parallel","encoding":"8bit","xrefs":{"rfc":"#<Set:0x007fe00c531f80>"},"registered":true},{"content-type":"multipart/related","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c530810>","template":"#<Set:0x007fe00c530608>"},"registered":true},{"content-type":"multipart/report","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c522d50>","template":"#<Set:0x007fe00c522bc0>"},"registered":true},{"content-type":"multipart/signed","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c5214c8>","template":"#<Set:0x007fe00c521388>"},"registered":true},{"content-type":"multipart/voice-message","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c513af8>","template":"#<Set:0x007fe00c5138f0>"},"registered":true},{"content-type":"multipart/x-gzip","encoding":"base64","registered":false},{"content-type":"multipart/x-mixed-replace","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c510df8>","template":"#<Set:0x007fe00c510c90>"},"registered":true},{"content-type":"multipart/x-parallel","encoding":"base64","obsolete":true,"use-instead":"multipart/parallel","registered":false},{"content-type":"multipart/x-tar","encoding":"base64","registered":false},{"content-type":"multipart/x-ustar","encoding":"base64","registered":false},{"content-type":"multipart/x-www-form-urlencoded","encoding":"base64","obsolete":true,"use-instead":"application/x-www-form-urlencoded","registered":false},{"content-type":"multipart/x-zip","encoding":"base64","registered":false},{"content-type":"text/1d-interleaved-parityfec","encoding":"quoted-printable","xrefs":{"rfc":"#<Set:0x007fe00c3c7370>","template":"#<Set:0x007fe00c3c7168>"},"registered":true},{"content-type":"text/cache-manifest","encoding":"quoted-printable","extensions":["appcache","manifest"],"xrefs":{"person":"#<Set:0x007fe00c3c5430>","template":"#<Set:0x007fe00c3c5278>"},"registered":true},{"content-type":"text/calendar","friendly":{"en":"iCalendar"},"encoding":"quoted-printable","extensions":["ics","ifb"],"xrefs":{"rfc":"#<Set:0x007fe00c3c3248>","template":"#<Set:0x007fe00c3c3040>"},"registered":true},{"content-type":"text/comma-separated-values","encoding":"8bit","extensions":["csv"],"obsolete":true,"use-instead":"text/csv","registered":false},{"content-type":"text/css","friendly":{"en":"Cascading Style Sheets (CSS)"},"encoding":"8bit","extensions":["css"],"xrefs":{"rfc":"#<Set:0x007fe00c3bfbc0>","template":"#<Set:0x007fe00c3bfa58>"},"registered":true},{"content-type":"text/csv","friendly":{"en":"Comma-Separated Values"},"encoding":"8bit","extensions":["csv"],"xrefs":{"rfc":"#<Set:0x007fe00c3be068>","template":"#<Set:0x007fe00c3bde88>"},"registered":true},{"content-type":"text/csv-schema","encoding":"quoted-printable","xrefs":{"person":"#<Set:0x007fe00c3bc6a0>","template":"#<Set:0x007fe00c3bc538>"},"registered":true},{"content-type":"text/directory","encoding":"quoted-printable","obsolete":true,"xrefs":{"rfc":"#<Set:0x007fe00c3fa860>","template":"#<Set:0x007fe00c3fa6d0>","notes":"#<Set:0x007fe00c3fa568>"},"registered":true},{"content-type":"text/dns","encoding":"quoted-printable","xrefs":{"rfc":"#<Set:0x007fe00c3f8df8>","template":"#<Set:0x007fe00c3f8cb8>"},"registered":true},{"content-type":"text/ecmascript","encoding":"quoted-printable","obsolete":true,"use-instead":"application/ecmascript","xrefs":{"rfc":"#<Set:0x007fe00c492c00>","template":"#<Set:0x007fe00c492958>","notes":"#<Set:0x007fe00c492728>"},"registered":true},{"content-type":"text/encaprtp","encoding":"quoted-printable","xrefs":{"rfc":"#<Set:0x007fe00c490798>","template":"#<Set:0x007fe00c490590>"},"registered":true},{"content-type":"text/enriched","encoding":"quoted-printable","xrefs":{"rfc":"#<Set:0x007fe00c482530>"},"registered":true},{"content-type":"text/example","encoding":"quoted-printable","xrefs":{"rfc":"#<Set:0x007fe00c480640>","template":"#<Set:0x007fe00c480488>"},"registered":true},{"content-type":"text/fwdred","encoding":"quoted-printable","xrefs":{"rfc":"#<Set:0x007fe00c472400>","template":"#<Set:0x007fe00c4721f8>"},"registered":true},{"content-type":"text/grammar-ref-list","encoding":"quoted-printable","xrefs":{"rfc":"#<Set:0x007fe00c470150>","template":"#<Set:0x007fe00c463f40>"},"registered":true},{"content-type":"text/html","friendly":{"en":"HyperText Markup Language (HTML)"},"encoding":"8bit","extensions":["html","htm","htmlx","shtml","htx"],"xrefs":{"person":"#<Set:0x007fe00c461c90>","template":"#<Set:0x007fe00c461a88>"},"registered":true},{"content-type":"text/javascript","encoding":"quoted-printable","extensions":["js"],"obsolete":true,"use-instead":"application/javascript","xrefs":{"rfc":"#<Set:0x007fe00c453898>","template":"#<Set:0x007fe00c453730>","notes":"#<Set:0x007fe00c4535a0>"},"registered":true},{"content-type":"text/jcr-cnd","encoding":"quoted-printable","xrefs":{"person":"#<Set:0x007fe00c451a98>","template":"#<Set:0x007fe00c4518b8>"},"registered":true},{"content-type":"text/markdown","encoding":"quoted-printable","xrefs":{"draft":"#<Set:0x007fe00c44bd00>","template":"#<Set:0x007fe00c44bbc0>"},"registered":true},{"content-type":"text/mizar","encoding":"quoted-printable","xrefs":{"person":"#<Set:0x007fe00c449f78>","template":"#<Set:0x007fe00c449e38>"},"registered":true},{"content-type":"text/n3","friendly":{"en":"Notation3"},"encoding":"quoted-printable","extensions":["n3"],"xrefs":{"person":"#<Set:0x007fe00c41be20>","template":"#<Set:0x007fe00c41bc40>"},"registered":true},{"content-type":"text/parameters","encoding":"quoted-printable","xrefs":{"draft":"#<Set:0x007fe00c41a1b0>","template":"#<Set:0x007fe00c41a020>"},"registered":true},{"content-type":"text/parityfec","encoding":"quoted-printable","xrefs":{"rfc":"#<Set:0x007fe00c4185b8>"},"registered":true},{"content-type":"text/plain","friendly":{"en":"Text File"},"encoding":"quoted-printable","extensions":["txt","asc","c","cc","h","hh","cpp","hpp","dat","hlp","conf","def","doc","in","list","log","markdown","md","rst","text","textile"],"xrefs":{"rfc":"#<Set:0x007fe00c3f50b8>"},"registered":true},{"content-type":"text/provenance-notation","encoding":"quoted-printable","xrefs":{"person":"#<Set:0x007fe00c3ce468>","template":"#<Set:0x007fe00c3ce260>"},"registered":true},{"content-type":"text/prs.fallenstein.rst","encoding":"quoted-printable","extensions":["rst"],"xrefs":{"person":"#<Set:0x007fe00c3cc708>","template":"#<Set:0x007fe00c3cc578>"},"registered":true},{"content-type":"text/prs.lines.tag","friendly":{"en":"PRS Lines Tag"},"encoding":"quoted-printable","extensions":["dsc"],"xrefs":{"person":"#<Set:0x007fe00d0fe688>","template":"#<Set:0x007fe00d0fe4d0>"},"registered":true},{"content-type":"text/raptorfec","encoding":"quoted-printable","xrefs":{"rfc":"#<Set:0x007fe00d0fc9c8>","template":"#<Set:0x007fe00d0fc838>"},"registered":true},{"content-type":"text/RED","encoding":"quoted-printable","xrefs":{"rfc":"#<Set:0x007fe00baf2d80>","template":"#<Set:0x007fe00baf2ba0>"},"registered":true},{"content-type":"text/rfc822-headers","encoding":"quoted-printable","xrefs":{"rfc":"#<Set:0x007fe00baf0cb0>","template":"#<Set:0x007fe00baf0b70>"},"registered":true},{"content-type":"text/richtext","friendly":{"en":"Rich Text Format (RTF)"},"encoding":"8bit","extensions":["rtx"],"xrefs":{"rfc":"#<Set:0x007fe00bae22c8>"},"registered":true},{"content-type":"text/rtf","encoding":"8bit","extensions":["rtf"],"xrefs":{"person":"#<Set:0x007fe00bae0608>","template":"#<Set:0x007fe00bae04a0>"},"registered":true},{"content-type":"text/rtp-enc-aescm128","encoding":"quoted-printable","xrefs":{"person":"#<Set:0x007fe00bad2c10>","template":"#<Set:0x007fe00bad2a30>"},"registered":true},{"content-type":"text/rtploopback","encoding":"quoted-printable","xrefs":{"rfc":"#<Set:0x007fe00bad10e0>","template":"#<Set:0x007fe00bad0ed8>"},"registered":true},{"content-type":"text/rtx","encoding":"quoted-printable","xrefs":{"rfc":"#<Set:0x007fe00bac3418>","template":"#<Set:0x007fe00bac3260>"},"registered":true},{"content-type":"text/sgml","friendly":{"en":"Standard Generalized Markup Language (SGML)"},"encoding":"quoted-printable","extensions":["sgml","sgm"],"xrefs":{"rfc":"#<Set:0x007fe00bac1050>","template":"#<Set:0x007fe00bac0e48>"},"registered":true},{"content-type":"text/t140","encoding":"quoted-printable","xrefs":{"rfc":"#<Set:0x007fe00bab2d48>","template":"#<Set:0x007fe00bab2a28>"},"registered":true},{"content-type":"text/tab-separated-values","friendly":{"en":"Tab Separated Values"},"encoding":"quoted-printable","extensions":["tsv"],"xrefs":{"person":"#<Set:0x007fe00baa3be0>","template":"#<Set:0x007fe00baa3938>"},"registered":true},{"content-type":"text/troff","friendly":{"en":"troff"},"encoding":"8bit","extensions":["t","tr","roff","troff","man","me","ms"],"xrefs":{"rfc":"#<Set:0x007fe00baa0418>","template":"#<Set:0x007fe00baa0148>"},"registered":true},{"content-type":"text/turtle","friendly":{"en":"Turtle (Terse RDF Triple Language)"},"encoding":"quoted-printable","extensions":["ttl"],"xrefs":{"person":"#<Set:0x007fe00ba92160>","template":"#<Set:0x007fe00ba91ff8>"},"registered":true},{"content-type":"text/ulpfec","encoding":"quoted-printable","xrefs":{"rfc":"#<Set:0x007fe00ba90608>","template":"#<Set:0x007fe00ba90478>"},"registered":true},{"content-type":"text/uri-list","friendly":{"en":"URI Resolution Services"},"encoding":"quoted-printable","extensions":["uri","uris","urls"],"xrefs":{"rfc":"#<Set:0x007fe00ba82490>","template":"#<Set:0x007fe00ba82288>"},"registered":true},{"content-type":"text/vcard","encoding":"quoted-printable","extensions":["vcard"],"xrefs":{"rfc":"#<Set:0x007fe00ba805c8>","template":"#<Set:0x007fe00ba803e8>"},"registered":true,"signature":true},{"content-type":"text/vnd.a","encoding":"quoted-printable","xrefs":{"person":"#<Set:0x007fe00ba724c8>","template":"#<Set:0x007fe00ba72298>"},"registered":true},{"content-type":"text/vnd.abc","encoding":"quoted-printable","xrefs":{"person":"#<Set:0x007fe00ba70740>","template":"#<Set:0x007fe00ba70538>"},"registered":true},{"content-type":"text/vnd.curl","friendly":{"en":"Curl - Applet"},"encoding":"quoted-printable","extensions":["curl"],"xrefs":{"person":"#<Set:0x007fe00ba624b0>","template":"#<Set:0x007fe00ba62320>"},"registered":true},{"content-type":"text/vnd.curl.dcurl","friendly":{"en":"Curl - Detached Applet"},"encoding":"quoted-printable","extensions":["dcurl"],"registered":false},{"content-type":"text/vnd.curl.mcurl","friendly":{"en":"Curl - Manifest File"},"encoding":"quoted-printable","extensions":["mcurl"],"registered":false},{"content-type":"text/vnd.curl.scurl","friendly":{"en":"Curl - Source Code"},"encoding":"quoted-printable","extensions":["scurl"],"registered":false},{"content-type":"text/vnd.debian.copyright","encoding":"quoted-printable","xrefs":{"person":"#<Set:0x007fe00ba43f38>","template":"#<Set:0x007fe00ba43d80>"},"registered":true},{"content-type":"text/vnd.DMClientScript","encoding":"quoted-printable","xrefs":{"person":"#<Set:0x007fe00ba42390>","template":"#<Set:0x007fe00ba42188>"},"registered":true},{"content-type":"text/vnd.dvb.subtitle","encoding":"quoted-printable","extensions":["sub"],"xrefs":{"person":"#<Set:0x007fe00ba40388>","template":"#<Set:0x007fe00ba401a8>"},"registered":true},{"content-type":"text/vnd.esmertec.theme-descriptor","encoding":"quoted-printable","xrefs":{"person":"#<Set:0x007fe00ba32580>","template":"#<Set:0x007fe00ba32440>"},"registered":true},{"content-type":"text/vnd.flatland.3dml","encoding":"quoted-printable","obsolete":true,"use-instead":"model/vnd.flatland.3dml","registered":false},{"content-type":"text/vnd.fly","friendly":{"en":"mod_fly / fly.cgi"},"encoding":"quoted-printable","extensions":["fly"],"xrefs":{"person":"#<Set:0x007fe00ba22e50>","template":"#<Set:0x007fe00ba22cc0>"},"registered":true},{"content-type":"text/vnd.fmi.flexstor","friendly":{"en":"FLEXSTOR"},"encoding":"quoted-printable","extensions":["flx"],"xrefs":{"person":"#<Set:0x007fe00ba20ce0>","template":"#<Set:0x007fe00ba20b28>"},"registered":true},{"content-type":"text/vnd.graphviz","friendly":{"en":"Graphviz"},"encoding":"quoted-printable","extensions":["gv"],"xrefs":{"person":"#<Set:0x007fe00ba12898>","template":"#<Set:0x007fe00ba12758>"},"registered":true},{"content-type":"text/vnd.in3d.3dml","friendly":{"en":"In3D - 3DML"},"encoding":"quoted-printable","extensions":["3dml"],"xrefs":{"person":"#<Set:0x007fe00ba107c8>","template":"#<Set:0x007fe00ba105e8>"},"registered":true},{"content-type":"text/vnd.in3d.spot","friendly":{"en":"In3D - 3DML"},"encoding":"quoted-printable","extensions":["spot"],"xrefs":{"person":"#<Set:0x007fe00c3b26c8>","template":"#<Set:0x007fe00c3b24e8>"},"registered":true},{"content-type":"text/vnd.IPTC.NewsML","encoding":"quoted-printable","xrefs":{"person":"#<Set:0x007fe00c3b09b8>","template":"#<Set:0x007fe00c3b0828>"},"registered":true},{"content-type":"text/vnd.IPTC.NITF","encoding":"quoted-printable","xrefs":{"person":"#<Set:0x007fe00c3a2e08>","template":"#<Set:0x007fe00c3a2cc8>"},"registered":true},{"content-type":"text/vnd.latex-z","encoding":"quoted-printable","xrefs":{"person":"#<Set:0x007fe00c3a11e8>","template":"#<Set:0x007fe00c3a1030>"},"registered":true},{"content-type":"text/vnd.motorola.reflex","encoding":"quoted-printable","xrefs":{"person":"#<Set:0x007fe00c3935c0>","template":"#<Set:0x007fe00c393408>"},"registered":true},{"content-type":"text/vnd.ms-mediapackage","encoding":"quoted-printable","xrefs":{"person":"#<Set:0x007fe00c3918b0>","template":"#<Set:0x007fe00c391720>"},"registered":true},{"content-type":"text/vnd.net2phone.commcenter.command","encoding":"quoted-printable","extensions":["ccc"],"xrefs":{"person":"#<Set:0x007fe00c383a08>","template":"#<Set:0x007fe00c383800>"},"registered":true},{"content-type":"text/vnd.radisys.msml-basic-layout","encoding":"quoted-printable","xrefs":{"rfc":"#<Set:0x007fe00c381d20>","template":"#<Set:0x007fe00c381be0>"},"registered":true},{"content-type":"text/vnd.si.uricatalogue","encoding":"quoted-printable","obsolete":true,"xrefs":{"person":"#<Set:0x007fe00c373ce8>","template":"#<Set:0x007fe00c373b58>","notes":"#<Set:0x007fe00c373978>"},"registered":true},{"content-type":"text/vnd.sun.j2me.app-descriptor","friendly":{"en":"J2ME App Descriptor"},"encoding":"8bit","extensions":["jad"],"xrefs":{"person":"#<Set:0x007fe00c371948>","template":"#<Set:0x007fe00c371768>"},"registered":true},{"content-type":"text/vnd.trolltech.linguist","encoding":"quoted-printable","xrefs":{"person":"#<Set:0x007fe00c363cd0>","template":"#<Set:0x007fe00c363b18>"},"registered":true},{"content-type":"text/vnd.wap.si","encoding":"quoted-printable","extensions":["si"],"xrefs":{"person":"#<Set:0x007fe00c360fd0>","template":"#<Set:0x007fe00c360c88>"},"registered":true},{"content-type":"text/vnd.wap.sl","encoding":"quoted-printable","extensions":["sl"],"xrefs":{"person":"#<Set:0x007fe00c352ea8>","template":"#<Set:0x007fe00c352cf0>"},"registered":true},{"content-type":"text/vnd.wap.wml","friendly":{"en":"Wireless Markup Language (WML)"},"encoding":"quoted-printable","extensions":["wml"],"xrefs":{"person":"#<Set:0x007fe00c351148>","template":"#<Set:0x007fe00c351008>"},"registered":true},{"content-type":"text/vnd.wap.wmlscript","friendly":{"en":"Wireless Markup Language Script (WMLScript)"},"encoding":"quoted-printable","extensions":["wmls"],"xrefs":{"person":"#<Set:0x007fe00c343610>","template":"#<Set:0x007fe00c3434a8>"},"registered":true},{"content-type":"text/x-asm","friendly":{"en":"Assembler Source File"},"encoding":"quoted-printable","extensions":["asm","s"],"registered":false},{"content-type":"text/x-c","friendly":{"en":"C Source File"},"encoding":"quoted-printable","extensions":["c","cc","cpp","cxx","dic","h","hh"],"registered":false},{"content-type":"text/x-coffescript","encoding":"8bit","extensions":["coffee"],"registered":false},{"content-type":"text/x-component","encoding":"8bit","extensions":["htc"],"registered":false},{"content-type":"text/x-fortran","friendly":{"en":"Fortran Source File"},"encoding":"quoted-printable","extensions":["f","f77","f90","for"],"registered":false},{"content-type":"text/x-java-source","friendly":{"en":"Java Source File"},"encoding":"quoted-printable","extensions":["java"],"registered":false},{"content-type":"text/x-nfo","encoding":"quoted-printable","extensions":["nfo"],"registered":false},{"content-type":"text/x-opml","encoding":"quoted-printable","extensions":["opml"],"registered":false},{"content-type":"text/x-pascal","friendly":{"en":"Pascal Source File"},"encoding":"quoted-printable","extensions":["p","pas"],"registered":false},{"content-type":"text/x-rtf","encoding":"8bit","extensions":["rtf"],"obsolete":true,"use-instead":"text/rtf","registered":false},{"content-type":"text/x-setext","friendly":{"en":"Setext"},"encoding":"quoted-printable","extensions":["etx"],"registered":false},{"content-type":"text/x-sfv","encoding":"quoted-printable","extensions":["sfv"],"registered":false},{"content-type":"text/x-uuencode","friendly":{"en":"UUEncode"},"encoding":"quoted-printable","extensions":["uu"],"registered":false},{"content-type":"text/x-vcalendar","friendly":{"en":"vCalendar"},"encoding":"8bit","extensions":["vcs"],"registered":false},{"content-type":"text/x-vcard","friendly":{"en":"vCard"},"encoding":"8bit","extensions":["vcf"],"registered":false,"signature":true},{"content-type":"text/x-vnd.flatland.3dml","encoding":"quoted-printable","obsolete":true,"use-instead":"model/vnd.flatland.3dml","registered":false},{"content-type":"text/x-yaml","encoding":"8bit","extensions":["yaml","yml"],"registered":false},{"content-type":"text/xml","encoding":"8bit","extensions":["xml","dtd"],"xrefs":{"rfc":"#<Set:0x007fe00c2e2d38>","template":"#<Set:0x007fe00c2e2ba8>"},"registered":true},{"content-type":"text/xml-external-parsed-entity","encoding":"quoted-printable","xrefs":{"rfc":"#<Set:0x007fe00c2e1730>","template":"#<Set:0x007fe00c2e1578>"},"registered":true},{"content-type":"video/1d-interleaved-parityfec","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cd71808>","template":"#<Set:0x007fe00cd716c8>"},"registered":true},{"content-type":"video/3gpp","friendly":{"en":"3GP"},"encoding":"base64","extensions":["3gp","3gpp"],"xrefs":{"rfc":"#<Set:0x007fe00cd636b8>","template":"#<Set:0x007fe00cd63500>"},"registered":true},{"content-type":"video/3gpp-tt","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cd61bb0>","template":"#<Set:0x007fe00cd61a48>"},"registered":true},{"content-type":"video/3gpp2","friendly":{"en":"3GP2"},"encoding":"base64","extensions":["3g2","3gpp2"],"xrefs":{"rfc":"#<Set:0x007fe00cd53ec0>","template":"#<Set:0x007fe00cd53d58>"},"registered":true},{"content-type":"video/BMPEG","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cd526b0>","template":"#<Set:0x007fe00cd52570>"},"registered":true},{"content-type":"video/BT656","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cd51030>","template":"#<Set:0x007fe00cd50ec8>"},"registered":true},{"content-type":"video/CelB","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cd43a20>","template":"#<Set:0x007fe00cd438b8>"},"registered":true},{"content-type":"video/dl","encoding":"base64","extensions":["dl"],"obsolete":true,"use-instead":"video/x-dl","registered":false},{"content-type":"video/DV","encoding":"base64","extensions":["dv"],"xrefs":{"rfc":"#<Set:0x007fe00cd40cf8>","template":"#<Set:0x007fe00cd40b68>"},"registered":true},{"content-type":"video/encaprtp","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cd331c0>","template":"#<Set:0x007fe00cd33080>"},"registered":true},{"content-type":"video/example","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cd31550>","template":"#<Set:0x007fe00cd313e8>"},"registered":true},{"content-type":"video/gl","encoding":"base64","extensions":["gl"],"obsolete":true,"use-instead":"video/x-gl","registered":false},{"content-type":"video/H261","friendly":{"en":"H.261"},"encoding":"base64","extensions":["h261"],"xrefs":{"rfc":"#<Set:0x007fe00cd224d8>","template":"#<Set:0x007fe00cd22398>"},"registered":true},{"content-type":"video/H263","friendly":{"en":"H.263"},"encoding":"base64","extensions":["h263"],"xrefs":{"rfc":"#<Set:0x007fe00cd204d0>","template":"#<Set:0x007fe00cd202f0>"},"registered":true},{"content-type":"video/H263-1998","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cd120d8>","template":"#<Set:0x007fe00cd11ea8>"},"registered":true},{"content-type":"video/H263-2000","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cd03c40>","template":"#<Set:0x007fe00cd03b00>"},"registered":true},{"content-type":"video/H264","friendly":{"en":"H.264"},"encoding":"base64","extensions":["h264"],"xrefs":{"rfc":"#<Set:0x007fe00cd01f58>","template":"#<Set:0x007fe00cd01da0>"},"registered":true},{"content-type":"video/H264-RCDO","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cd001f8>","template":"#<Set:0x007fe00ccf3e30>"},"registered":true},{"content-type":"video/H264-SVC","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00ccf2738>","template":"#<Set:0x007fe00ccf25d0>"},"registered":true},{"content-type":"video/iso.segment","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00ccf0d70>","template":"#<Set:0x007fe00ccf0b90>"},"registered":true},{"content-type":"video/JPEG","friendly":{"en":"JPGVideo"},"encoding":"base64","extensions":["jpgv"],"xrefs":{"rfc":"#<Set:0x007fe00cce3210>","template":"#<Set:0x007fe00cce30a8>"},"registered":true},{"content-type":"video/jpeg2000","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cce1b18>","template":"#<Set:0x007fe00cce19b0>"},"registered":true},{"content-type":"video/jpm","friendly":{"en":"JPEG 2000 Compound Image File Format"},"encoding":"base64","extensions":["jpgm","jpm"],"registered":false},{"content-type":"video/MJ2","friendly":{"en":"Motion JPEG 2000"},"encoding":"base64","extensions":["mj2","mjp2"],"xrefs":{"rfc":"#<Set:0x007fe00ccd2c08>","template":"#<Set:0x007fe00ccd2ac8>"},"registered":true},{"content-type":"video/MP1S","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00ccd1588>","template":"#<Set:0x007fe00ccd1420>"},"registered":true},{"content-type":"video/MP2P","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00ccc3078>","template":"#<Set:0x007fe00ccc2e70>"},"registered":true},{"content-type":"video/MP2T","encoding":"base64","extensions":["ts"],"xrefs":{"rfc":"#<Set:0x007fe00ccc0940>","template":"#<Set:0x007fe00ccc0800>"},"registered":true},{"content-type":"video/mp4","friendly":{"en":"MPEG-4 Video"},"encoding":"base64","extensions":["mp4","mpg4","f4v","f4p","mp4v"],"xrefs":{"rfc":"#<Set:0x007fe00ccb2520>","template":"#<Set:0x007fe00ccb2368>"},"registered":true},{"content-type":"video/MP4V-ES","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00ccb01f8>","template":"#<Set:0x007fe00ccb0018>"},"registered":true},{"content-type":"video/mpeg","friendly":{"en":"MPEG Video"},"encoding":"base64","extensions":["mp2","mp3g","mpe","mpeg","mpg","m1v","m2v"],"xrefs":{"rfc":"#<Set:0x007fe00cca1f68>"},"registered":true},{"content-type":"video/mpeg4-generic","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cca0730>","template":"#<Set:0x007fe00cca05f0>"},"registered":true},{"content-type":"video/MPV","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cc93008>","template":"#<Set:0x007fe00cc92e00>"},"registered":true},{"content-type":"video/nv","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cc91398>","template":"#<Set:0x007fe00cc91208>"},"registered":true},{"content-type":"video/ogg","friendly":{"en":"Ogg Video"},"encoding":"base64","extensions":["ogg","ogv"],"xrefs":{"rfc":"#<Set:0x007fe00cc83590>","template":"#<Set:0x007fe00cc83428>"},"registered":true},{"content-type":"video/parityfec","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cc81448>"},"registered":true},{"content-type":"video/pointer","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00cc730f0>","template":"#<Set:0x007fe00cc72f38>"},"registered":true},{"content-type":"video/quicktime","friendly":{"en":"Quicktime Video"},"encoding":"base64","extensions":["qt","mov"],"xrefs":{"rfc":"#<Set:0x007fe00cc71408>","person":"#<Set:0x007fe00cc712a0>","template":"#<Set:0x007fe00cc71160>"},"registered":true},{"content-type":"video/raptorfec","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c2435d0>","template":"#<Set:0x007fe00c2432d8>"},"registered":true},{"content-type":"video/raw","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c241618>"},"registered":true},{"content-type":"video/rtp-enc-aescm128","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c240038>","template":"#<Set:0x007fe00c233d38>"},"registered":true},{"content-type":"video/rtploopback","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c232578>","template":"#<Set:0x007fe00c232410>"},"registered":true},{"content-type":"video/rtx","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c230bb0>","template":"#<Set:0x007fe00c230a20>"},"registered":true},{"content-type":"video/SMPTE292M","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c2233e8>","template":"#<Set:0x007fe00c223280>"},"registered":true},{"content-type":"video/ulpfec","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c2217f0>","template":"#<Set:0x007fe00c221638>"},"registered":true},{"content-type":"video/vc1","encoding":"base64","xrefs":{"rfc":"#<Set:0x007fe00c213538>","template":"#<Set:0x007fe00c2132b8>"},"registered":true},{"content-type":"video/vnd.CCTV","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c2118a0>","template":"#<Set:0x007fe00c2116c0>"},"registered":true},{"content-type":"video/vnd.dece.hd","friendly":{"en":"DECE High Definition Video"},"encoding":"base64","extensions":["uvh","uvvh"],"xrefs":{"person":"#<Set:0x007fe00c2035c0>","template":"#<Set:0x007fe00c203250>"},"registered":true},{"content-type":"video/vnd.dece.mobile","friendly":{"en":"DECE Mobile Video"},"encoding":"base64","extensions":["uvm","uvvm"],"xrefs":{"person":"#<Set:0x007fe00c1f3530>","template":"#<Set:0x007fe00c1f33c8>"},"registered":true},{"content-type":"video/vnd.dece.mp4","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c1f1c58>","template":"#<Set:0x007fe00c1f1af0>"},"registered":true},{"content-type":"video/vnd.dece.pd","friendly":{"en":"DECE PD Video"},"encoding":"base64","extensions":["uvp","uvvp"],"xrefs":{"person":"#<Set:0x007fe00c1e3f18>","template":"#<Set:0x007fe00c1e3d60>"},"registered":true},{"content-type":"video/vnd.dece.sd","friendly":{"en":"DECE SD Video"},"encoding":"base64","extensions":["uvs","uvvs"],"xrefs":{"person":"#<Set:0x007fe00c1e2118>","template":"#<Set:0x007fe00c1e1fd8>"},"registered":true},{"content-type":"video/vnd.dece.video","friendly":{"en":"DECE Video"},"encoding":"base64","extensions":["uvv","uvvv"],"xrefs":{"person":"#<Set:0x007fe00c1e0390>","template":"#<Set:0x007fe00c1e0250>"},"registered":true},{"content-type":"video/vnd.directv.mpeg","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c1121e8>","template":"#<Set:0x007fe00c112058>"},"registered":true},{"content-type":"video/vnd.directv.mpeg-tts","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c110a50>","template":"#<Set:0x007fe00c1108e8>"},"registered":true},{"content-type":"video/vnd.dlna.mpeg-tts","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00c10f1f0>","template":"#<Set:0x007fe00c10f088>"},"registered":true},{"content-type":"video/vnd.dvb.file","encoding":"base64","extensions":["dvb"],"xrefs":{"person":"#<Set:0x007fe00c10d738>","template":"#<Set:0x007fe00c10d580>"},"registered":true},{"content-type":"video/vnd.fvt","friendly":{"en":"FAST Search & Transfer ASA"},"encoding":"base64","extensions":["fvt"],"xrefs":{"person":"#<Set:0x007fe00d0db7c8>","template":"#<Set:0x007fe00d0db570>"},"registered":true},{"content-type":"video/vnd.hns.video","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d0d9ef0>","template":"#<Set:0x007fe00d0d9db0>"},"registered":true},{"content-type":"video/vnd.iptvforum.1dparityfec-1010","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d0cbe68>","template":"#<Set:0x007fe00d0cbcb0>"},"registered":true},{"content-type":"video/vnd.iptvforum.1dparityfec-2005","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d0ca018>","template":"#<Set:0x007fe00d0c9e60>"},"registered":true},{"content-type":"video/vnd.iptvforum.2dparityfec-1010","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d0bb888>","template":"#<Set:0x007fe00d0bb590>"},"registered":true},{"content-type":"video/vnd.iptvforum.2dparityfec-2005","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d0b9740>","template":"#<Set:0x007fe00d0b9588>"},"registered":true},{"content-type":"video/vnd.iptvforum.ttsavc","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d0a8c38>","template":"#<Set:0x007fe00d0a89e0>"},"registered":true},{"content-type":"video/vnd.iptvforum.ttsmpeg2","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d09a840>","template":"#<Set:0x007fe00d09a660>"},"registered":true},{"content-type":"video/vnd.motorola.video","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d08b0e8>","template":"#<Set:0x007fe00d08aaa8>"},"registered":true},{"content-type":"video/vnd.motorola.videop","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00d0888c0>","template":"#<Set:0x007fe00d088690>"},"registered":true},{"content-type":"video/vnd.mpegurl","friendly":{"en":"MPEG Url"},"encoding":"8bit","extensions":["mxu","m4u"],"xrefs":{"person":"#<Set:0x007fe00d0719e0>","template":"#<Set:0x007fe00d0717d8>"},"registered":true},{"content-type":"video/vnd.ms-playready.media.pyv","friendly":{"en":"Microsoft PlayReady Ecosystem Video"},"encoding":"base64","extensions":["pyv"],"xrefs":{"person":"#<Set:0x007fe00cc62e08>","template":"#<Set:0x007fe00cc62c00>"},"registered":true},{"content-type":"video/vnd.nokia.interleaved-multimedia","encoding":"base64","extensions":["nim"],"xrefs":{"person":"#<Set:0x007fe00cc537c8>","template":"#<Set:0x007fe00cc53520>"},"registered":true},{"content-type":"video/vnd.nokia.videovoip","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cc513d8>","template":"#<Set:0x007fe00cc51220>"},"registered":true},{"content-type":"video/vnd.objectvideo","encoding":"base64","extensions":["mp4","m4v"],"xrefs":{"person":"#<Set:0x007fe00cc430d0>","template":"#<Set:0x007fe00cc42e78>"},"registered":true},{"content-type":"video/vnd.radgamettools.bink","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cc40d58>","template":"#<Set:0x007fe00cc40bc8>"},"registered":true},{"content-type":"video/vnd.radgamettools.smacker","encoding":"base64","xrefs":{"person":"#<Set:0x007fe00cc32eb0>","template":"#<Set:0x007fe00cc32cf8>"},"registered":true},{"content-type":"video/vnd.sealed.mpeg1","encoding":"base64","extensions":["s11"],"xrefs":{"person":"#<Set:0x007fe00cc30b60>","template":"#<Set:0x007fe00cc30840>"},"registered":true},{"content-type":"video/vnd.sealed.mpeg4","encoding":"base64","extensions":["smpg","s14"],"xrefs":{"person":"#<Set:0x007fe00cc21d90>","template":"#<Set:0x007fe00cc21ac0>"},"registered":true},{"content-type":"video/vnd.sealed.swf","encoding":"base64","extensions":["sswf","ssw"],"xrefs":{"person":"#<Set:0x007fe00cc136a0>","template":"#<Set:0x007fe00cc13448>"},"registered":true},{"content-type":"video/vnd.sealedmedia.softseal.mov","encoding":"base64","extensions":["smov","smo","s1q"],"xrefs":{"person":"#<Set:0x007fe00cc10d88>","template":"#<Set:0x007fe00cc10ba8>"},"registered":true},{"content-type":"video/vnd.uvvu.mp4","friendly":{"en":"DECE MP4"},"encoding":"base64","extensions":["uvu","uvvu"],"xrefs":{"person":"#<Set:0x007fe00cc02580>","template":"#<Set:0x007fe00cc023a0>"},"registered":true},{"content-type":"video/vnd.vivo","friendly":{"en":"Vivo"},"encoding":"base64","extensions":["viv","vivo"],"xrefs":{"person":"#<Set:0x007fe00cbf3aa8>","template":"#<Set:0x007fe00cbf38a0>"},"registered":true},{"content-type":"video/VP8","encoding":"base64","xrefs":{"draft":"#<Set:0x007fe00cbf1870>","template":"#<Set:0x007fe00cbf15f0>"},"registered":true},{"content-type":"video/webm","friendly":{"en":"Open Web Media Project - Video"},"encoding":"base64","extensions":["webm"],"registered":false},{"content-type":"video/x-dl","encoding":"base64","extensions":["dl"],"registered":false},{"content-type":"video/x-dv","encoding":"base64","extensions":["dv"],"obsolete":true,"use-instead":"video/DV","registered":false},{"content-type":"video/x-f4v","friendly":{"en":"Flash Video"},"encoding":"base64","extensions":["f4v"],"registered":false},{"content-type":"video/x-fli","friendly":{"en":"FLI/FLC Animation Format"},"encoding":"base64","extensions":["fli"],"registered":false},{"content-type":"video/x-flv","friendly":{"en":"Flash Video"},"encoding":"base64","extensions":["flv"],"registered":false},{"content-type":"video/x-gl","encoding":"base64","extensions":["gl"],"registered":false},{"content-type":"video/x-ivf","encoding":"base64","extensions":["ivf"],"registered":false},{"content-type":"video/x-m4v","friendly":{"en":"M4v"},"encoding":"base64","extensions":["m4v"],"registered":false},{"content-type":"video/x-matroska","encoding":"base64","extensions":["mk3d","mks","mkv"],"registered":false},{"content-type":"video/x-mng","encoding":"base64","extensions":["mng"],"registered":false},{"content-type":"video/x-motion-jpeg","encoding":"base64","extensions":["mjpg","mjpeg"],"registered":false},{"content-type":"video/x-ms-asf","friendly":{"en":"Microsoft Advanced Systems Format (ASF)"},"encoding":"base64","extensions":["asf","asx"],"registered":false},{"content-type":"video/x-ms-vob","encoding":"base64","extensions":["vob"],"registered":false},{"content-type":"video/x-ms-wm","friendly":{"en":"Microsoft Windows Media"},"encoding":"base64","extensions":["wm"],"registered":false},{"content-type":"video/x-ms-wmv","friendly":{"en":"Microsoft Windows Media Video"},"encoding":"base64","extensions":["wmv"],"registered":false},{"content-type":"video/x-ms-wmx","friendly":{"en":"Microsoft Windows Media Audio/Video Playlist"},"encoding":"base64","extensions":["wmx"],"registered":false},{"content-type":"video/x-ms-wvx","friendly":{"en":"Microsoft Windows Media Video Playlist"},"encoding":"base64","extensions":["wvx"],"registered":false},{"content-type":"video/x-msvideo","friendly":{"en":"Audio Video Interleave (AVI)"},"encoding":"base64","extensions":["avi"],"registered":false},{"content-type":"video/x-sgi-movie","friendly":{"en":"SGI Movie"},"encoding":"base64","extensions":["movie"],"registered":false},{"content-type":"video/x-smv","encoding":"base64","extensions":["smv"],"registered":false},{"content-type":"x-chemical/x-pdb","encoding":"base64","extensions":["pdb"],"registered":false},{"content-type":"x-chemical/x-xyz","encoding":"base64","extensions":["xyz"],"registered":false},{"content-type":"x-conference/x-cooltalk","friendly":{"en":"CoolTalk"},"encoding":"base64","extensions":["ice"],"registered":false},{"content-type":"x-drawing/dwf","encoding":"base64","extensions":["dwf"],"registered":false},{"content-type":"x-world/x-vrml","encoding":"base64","extensions":["wrl","vrml"],"registered":false}]
@@ -0,0 +1,1935 @@
1
+ application/1d-interleaved-parityfec
2
+ application/3gpdash-qoe-report+xml
3
+ application/3gpp-ims+xml
4
+ application/A2L
5
+ application/acad
6
+ application/access mdf mda mdb mde
7
+ application/activemessage
8
+ application/alto-costmap+json
9
+ application/alto-costmapfilter+json
10
+ application/alto-directory+json
11
+ application/alto-endpointcost+json
12
+ application/alto-endpointcostparams+json
13
+ application/alto-endpointprop+json
14
+ application/alto-endpointpropparams+json
15
+ application/alto-error+json
16
+ application/alto-networkmap+json
17
+ application/alto-networkmapfilter+json
18
+ application/AML
19
+ application/andrew-inset ez
20
+ application/appledouble
21
+ application/applefile
22
+ application/applixware aw
23
+ application/ATF
24
+ application/ATFX
25
+ application/atom+xml atom
26
+ application/atomcat+xml atomcat
27
+ application/atomdeleted+xml
28
+ application/atomicmail
29
+ application/atomsvc+xml atomsvc
30
+ application/ATXML
31
+ application/auth-policy+xml
32
+ application/bacnet-xdd+zip
33
+ application/batch-SMTP
34
+ application/beep+xml
35
+ application/bleeper bleep
36
+ application/calendar+json
37
+ application/calendar+xml
38
+ application/call-completion
39
+ application/cals-1840
40
+ application/cals1840
41
+ application/cbor
42
+ application/ccmp+xml
43
+ application/ccxml+xml ccxml
44
+ application/CDFX+XML
45
+ application/cdmi-capability cdmia
46
+ application/cdmi-container cdmic
47
+ application/cdmi-domain cdmid
48
+ application/cdmi-object cdmio
49
+ application/cdmi-queue cdmiq
50
+ application/cdni
51
+ application/CEA
52
+ application/cea-2018+xml
53
+ application/cellml+xml
54
+ application/cfw
55
+ application/clariscad
56
+ application/cms
57
+ application/cnrp+xml
58
+ application/coap-group+json
59
+ application/commonground
60
+ application/conference-info+xml
61
+ application/cpl+xml
62
+ application/csrattrs
63
+ application/csta+xml
64
+ application/CSTAdata+xml
65
+ application/csvm+json
66
+ application/cu-seeme cu
67
+ application/cybercash
68
+ application/dash+xml
69
+ application/dashdelta
70
+ application/davmount+xml davmount
71
+ application/dca-rft
72
+ application/DCD
73
+ application/dec-dx
74
+ application/dialog-info+xml
75
+ application/dicom dcm
76
+ application/DII
77
+ application/DIT
78
+ application/dns
79
+ application/docbook+xml dbk
80
+ application/drafting
81
+ application/dskpp+xml
82
+ application/dssc+der dssc
83
+ application/dssc+xml xdssc
84
+ application/dvcs
85
+ application/dxf
86
+ application/ecmascript ecma
87
+ application/EDI-consent
88
+ application/EDI-X12
89
+ application/EDIFACT
90
+ application/emma+xml emma
91
+ application/emotionml+xml
92
+ application/encaprtp
93
+ application/epp+xml
94
+ application/epub+zip epub
95
+ application/eshop
96
+ application/example
97
+ application/excel xls xlt
98
+ application/exi exi
99
+ application/fastinfoset
100
+ application/fastsoap
101
+ application/fdt+xml
102
+ application/fits
103
+ application/font-sfnt otf ttf
104
+ application/font-tdpfr pfr
105
+ application/font-woff woff woff2
106
+ application/fractals
107
+ application/framework-attributes+xml
108
+ application/futuresplash spl
109
+ application/ghostview
110
+ application/gml+xml gml
111
+ application/gpx+xml gpx
112
+ application/gxf gxf
113
+ application/gzip gz
114
+ application/H224
115
+ application/held+xml
116
+ application/hep hep
117
+ application/http
118
+ application/hyperstudio stk
119
+ application/i-deas
120
+ application/ibe-key-request+xml
121
+ application/ibe-pkg-reply+xml
122
+ application/ibe-pp-data
123
+ application/iges
124
+ application/im-iscomposing+xml
125
+ application/imagemap imagemap imap
126
+ application/index
127
+ application/index.cmd
128
+ application/index.obj
129
+ application/index.response
130
+ application/index.vnd
131
+ application/inkml+xml ink inkml
132
+ application/iotp
133
+ application/ipfix ipfix
134
+ application/ipp
135
+ application/isup
136
+ application/its+xml
137
+ application/java-archive jar
138
+ application/java-serialized-object ser
139
+ application/java-vm class
140
+ application/javascript js sj
141
+ application/jose
142
+ application/jose+json
143
+ application/jrd+json
144
+ application/json json
145
+ application/json-patch+json
146
+ application/json-seq
147
+ application/jsonml+json jsonml
148
+ application/jwk+json
149
+ application/jwk-set+json
150
+ application/jwt
151
+ application/kpml-request+xml
152
+ application/kpml-response+xml
153
+ application/ld+json
154
+ application/link-format
155
+ application/load-control+xml
156
+ application/lost+xml lostxml
157
+ application/lostsync+xml
158
+ application/lotus-123 wks
159
+ application/LXF
160
+ application/mac-binhex40 hqx
161
+ application/mac-compactpro cpt
162
+ application/macbinary
163
+ application/macwriteii
164
+ application/mads+xml mads
165
+ application/marc mrc
166
+ application/marcxml+xml mrcx
167
+ application/mathcad mcd
168
+ application/mathematica ma mb nb
169
+ application/mathematica-old
170
+ application/mathml+xml mathml
171
+ application/mathml-content+xml
172
+ application/mathml-presentation+xml
173
+ application/mbms-associated-procedure-description+xml
174
+ application/mbms-deregister+xml
175
+ application/mbms-envelope+xml
176
+ application/mbms-msk+xml
177
+ application/mbms-msk-response+xml
178
+ application/mbms-protection-description+xml
179
+ application/mbms-reception-report+xml
180
+ application/mbms-register+xml
181
+ application/mbms-register-response+xml
182
+ application/mbms-schedule+xml
183
+ application/mbms-user-service-description+xml
184
+ application/mbox mbox
185
+ application/media-policy-dataset+xml
186
+ application/media_control+xml
187
+ application/mediaservercontrol+xml mscml
188
+ application/merge-patch+json
189
+ application/metalink+xml metalink
190
+ application/metalink4+xml meta4
191
+ application/mets+xml mets
192
+ application/MF4
193
+ application/mikey
194
+ application/mods+xml mods
195
+ application/moss-keys
196
+ application/moss-signature
197
+ application/mosskey-data
198
+ application/mosskey-request
199
+ application/mp21 m21 mp21
200
+ application/mp4 mp4 mpg4 mp4s
201
+ application/mpeg4-generic
202
+ application/mpeg4-iod
203
+ application/mpeg4-iod-xmt
204
+ application/mrb-consumer+xml
205
+ application/mrb-publish+xml
206
+ application/msc-ivr+xml
207
+ application/msc-mixer+xml
208
+ application/msword doc dot wrd
209
+ application/mxf mxf
210
+ application/nasdata
211
+ application/netcdf nc cdf
212
+ application/news-checkgroups
213
+ application/news-groupinfo
214
+ application/news-message-id
215
+ application/news-transmission
216
+ application/nlsml+xml
217
+ application/nss
218
+ application/ocsp-request
219
+ application/ocsp-response
220
+ application/octet-stream bin dms lha lzh exe class ani pgp so dll dylib bpk deploy dist distz dump elc lrf mar pkg
221
+ application/oda oda
222
+ application/ODX
223
+ application/oebps-package+xml opf
224
+ application/ogg ogx
225
+ application/omdoc+xml omdoc
226
+ application/onenote onepkg onetmp onetoc onetoc2
227
+ application/oxps oxps
228
+ application/p2p-overlay+xml
229
+ application/parityfec
230
+ application/patch-ops-error+xml xer
231
+ application/pdf pdf
232
+ application/PDX
233
+ application/pgp-encrypted pgp
234
+ application/pgp-keys
235
+ application/pgp-signature asc sig
236
+ application/pics-rules prf
237
+ application/pidf+xml
238
+ application/pidf-diff+xml
239
+ application/pkcs10 p10
240
+ application/pkcs12
241
+ application/pkcs7-mime p7m p7c
242
+ application/pkcs7-signature p7s
243
+ application/pkcs8 p8
244
+ application/pkix-attr-cert ac
245
+ application/pkix-cert cer
246
+ application/pkix-crl crl
247
+ application/pkix-pkipath pkipath
248
+ application/pkixcmp pki
249
+ application/pls+xml pls
250
+ application/poc-settings+xml
251
+ application/postscript ai eps ps
252
+ application/powerpoint ppt pps pot
253
+ application/pro_eng
254
+ application/provenance+xml
255
+ application/prs.alvestrand.titrax-sheet
256
+ application/prs.cww cw cww
257
+ application/prs.hpub+zip
258
+ application/prs.nprend rnd rct
259
+ application/prs.plucker
260
+ application/prs.rdf-xml-crypt
261
+ application/prs.xsf+xml
262
+ application/pskc+xml pskcxml
263
+ application/qsig
264
+ application/quicktimeplayer qtl
265
+ application/raptorfec
266
+ application/rdap+json
267
+ application/rdf+xml rdf
268
+ application/reginfo+xml rif
269
+ application/relax-ng-compact-syntax rnc
270
+ application/remote-printing
271
+ application/remote_printing
272
+ application/reputon+json
273
+ application/resource-lists+xml rl
274
+ application/resource-lists-diff+xml rld
275
+ application/rfc+xml
276
+ application/riscos
277
+ application/rlmi+xml
278
+ application/rls-services+xml rs
279
+ application/rpki-ghostbusters gbr
280
+ application/rpki-manifest mft
281
+ application/rpki-roa roa
282
+ application/rpki-updown
283
+ application/rsd+xml rsd
284
+ application/rss+xml rss
285
+ application/rtf rtf
286
+ application/rtploopback
287
+ application/rtx
288
+ application/samlassertion+xml
289
+ application/samlmetadata+xml
290
+ application/sbml+xml sbml
291
+ application/scaip+xml
292
+ application/scim+json
293
+ application/scvp-cv-request scq
294
+ application/scvp-cv-response scs
295
+ application/scvp-vp-request spq
296
+ application/scvp-vp-response spp
297
+ application/sdp sdp
298
+ application/sep+xml
299
+ application/sep-exi
300
+ application/session-info
301
+ application/set
302
+ application/set-payment
303
+ application/set-payment-initiation setpay
304
+ application/set-registration
305
+ application/set-registration-initiation setreg
306
+ application/sgml sgml
307
+ application/sgml-open-catalog soc
308
+ application/shf+xml shf
309
+ application/sieve siv
310
+ application/simple-filter+xml
311
+ application/simple-message-summary
312
+ application/simpleSymbolContainer
313
+ application/SLA
314
+ application/slate
315
+ application/smil smi smil
316
+ application/smil+xml smi smil
317
+ application/smpte336m
318
+ application/soap+fastinfoset
319
+ application/soap+xml
320
+ application/solids
321
+ application/sparql-query rq
322
+ application/sparql-results+xml srx
323
+ application/spirits-event+xml
324
+ application/sql
325
+ application/srgs gram
326
+ application/srgs+xml grxml
327
+ application/sru+xml sru
328
+ application/ssdl+xml ssdl
329
+ application/ssml+xml ssml
330
+ application/STEP
331
+ application/tamp-apex-update
332
+ application/tamp-apex-update-confirm
333
+ application/tamp-community-update
334
+ application/tamp-community-update-confirm
335
+ application/tamp-error
336
+ application/tamp-sequence-adjust
337
+ application/tamp-sequence-adjust-confirm
338
+ application/tamp-status-query
339
+ application/tamp-status-response
340
+ application/tamp-update
341
+ application/tamp-update-confirm
342
+ application/tei+xml tei teicorpus
343
+ application/thraud+xml tfi
344
+ application/timestamp-query
345
+ application/timestamp-reply
346
+ application/timestamped-data tsd
347
+ application/toolbook tbk
348
+ application/ttml+xml
349
+ application/tve-trigger
350
+ application/ulpfec
351
+ application/urc-grpsheet+xml
352
+ application/urc-ressheet+xml
353
+ application/urc-targetdesc+xml
354
+ application/urc-uisocketdesc+xml
355
+ application/vcard+json
356
+ application/vcard+xml
357
+ application/vda
358
+ application/vemmi
359
+ application/VMSBACKUP bck
360
+ application/vnd.3gpp-prose+xml
361
+ application/vnd.3gpp-prose-pc3ch+xml
362
+ application/vnd.3gpp.access-transfer-events+xml
363
+ application/vnd.3gpp.bsf+xml
364
+ application/vnd.3gpp.mid-call+xml
365
+ application/vnd.3gpp.pic-bw-large plb
366
+ application/vnd.3gpp.pic-bw-small psb
367
+ application/vnd.3gpp.pic-bw-var pvb
368
+ application/vnd.3gpp.sms sms
369
+ application/vnd.3gpp.srvcc-ext+xml
370
+ application/vnd.3gpp.SRVCC-info+xml
371
+ application/vnd.3gpp.state-and-event-info+xml
372
+ application/vnd.3gpp.ussd+xml
373
+ application/vnd.3gpp2.bcmcsinfo+xml
374
+ application/vnd.3gpp2.sms
375
+ application/vnd.3gpp2.tcap tcap
376
+ application/vnd.3M.Post-it-Notes pwn
377
+ application/vnd.accpac.simply.aso aso
378
+ application/vnd.accpac.simply.imp imp
379
+ application/vnd.acucobol acu
380
+ application/vnd.acucorp atc acutc
381
+ application/vnd.adobe.air-application-installer-package+zip air
382
+ application/vnd.adobe.flash.movie
383
+ application/vnd.adobe.formscentral.fcdt fcdt
384
+ application/vnd.adobe.fxp fxp fxpl
385
+ application/vnd.adobe.partial-upload
386
+ application/vnd.adobe.xdp+xml xdp
387
+ application/vnd.adobe.xfdf xfdf
388
+ application/vnd.aether.imp
389
+ application/vnd.ah-barcode
390
+ application/vnd.ahead.space ahead
391
+ application/vnd.airzip.filesecure.azf azf
392
+ application/vnd.airzip.filesecure.azs azs
393
+ application/vnd.amazon.ebook azw
394
+ application/vnd.americandynamics.acc acc
395
+ application/vnd.amiga.ami ami
396
+ application/vnd.amundsen.maze+xml
397
+ application/vnd.android.package-archive apk
398
+ application/vnd.anki
399
+ application/vnd.anser-web-certificate-issue-initiation cii
400
+ application/vnd.anser-web-funds-transfer-initiation fti
401
+ application/vnd.antix.game-component atx
402
+ application/vnd.apache.thrift.binary
403
+ application/vnd.apache.thrift.compact
404
+ application/vnd.apache.thrift.json
405
+ application/vnd.api+json
406
+ application/vnd.apple.installer+xml mpkg
407
+ application/vnd.apple.mpegurl m3u8
408
+ application/vnd.apple.pkpass pkpass
409
+ application/vnd.arastra.swi
410
+ application/vnd.aristanetworks.swi swi
411
+ application/vnd.artsquare
412
+ application/vnd.astraea-software.iota iota
413
+ application/vnd.audiograph aep
414
+ application/vnd.autopackage
415
+ application/vnd.avistar+xml
416
+ application/vnd.balsamiq.bmml+xml
417
+ application/vnd.balsamiq.bmpr
418
+ application/vnd.bekitzur-stech+json
419
+ application/vnd.biopax.rdf+xml
420
+ application/vnd.blueice.multipass mpm
421
+ application/vnd.bluetooth.ep.oob
422
+ application/vnd.bluetooth.le.oob
423
+ application/vnd.bmi bmi
424
+ application/vnd.businessobjects rep
425
+ application/vnd.cab-jscript
426
+ application/vnd.canon-cpdl
427
+ application/vnd.canon-lips
428
+ application/vnd.cendio.thinlinc.clientconf
429
+ application/vnd.century-systems.tcp_stream
430
+ application/vnd.chemdraw+xml cdxml
431
+ application/vnd.chipnuts.karaoke-mmd mmd
432
+ application/vnd.cinderella cdy
433
+ application/vnd.cirpack.isdn-ext
434
+ application/vnd.citationstyles.style+xml
435
+ application/vnd.claymore cla
436
+ application/vnd.cloanto.rp9 rp9
437
+ application/vnd.clonk.c4group c4d c4f c4g c4p c4u
438
+ application/vnd.cluetrust.cartomobile-config c11amc
439
+ application/vnd.cluetrust.cartomobile-config-pkg c11amz
440
+ application/vnd.coffeescript
441
+ application/vnd.collection+json
442
+ application/vnd.collection.doc+json
443
+ application/vnd.collection.next+json
444
+ application/vnd.commerce-battelle
445
+ application/vnd.commonspace csp
446
+ application/vnd.contact.cmsg cdbcmsg
447
+ application/vnd.cosmocaller cmc
448
+ application/vnd.crick.clicker clkx
449
+ application/vnd.crick.clicker.keyboard clkk
450
+ application/vnd.crick.clicker.palette clkp
451
+ application/vnd.crick.clicker.template clkt
452
+ application/vnd.crick.clicker.wordbank clkw
453
+ application/vnd.criticaltools.wbs+xml wbs
454
+ application/vnd.ctc-posml pml
455
+ application/vnd.ctct.ws+xml
456
+ application/vnd.cups-pdf
457
+ application/vnd.cups-postscript
458
+ application/vnd.cups-ppd ppd
459
+ application/vnd.cups-raster
460
+ application/vnd.cups-raw
461
+ application/vnd.curl curl
462
+ application/vnd.curl.car car
463
+ application/vnd.curl.pcurl pcurl
464
+ application/vnd.cyan.dean.root+xml
465
+ application/vnd.cybank
466
+ application/vnd.dart dart
467
+ application/vnd.data-vision.rdz rdz
468
+ application/vnd.debian.binary-package
469
+ application/vnd.dece.data uvd uvf uvvd uvvf
470
+ application/vnd.dece.ttml+xml uvt uvvt
471
+ application/vnd.dece.unspecified uvvx uvx
472
+ application/vnd.dece.zip uvvz uvz
473
+ application/vnd.denovo.fcselayout-link fe_launch
474
+ application/vnd.desmume.movie
475
+ application/vnd.dir-bi.plate-dl-nosuffix
476
+ application/vnd.dm.delegation+xml
477
+ application/vnd.dna dna
478
+ application/vnd.document+json
479
+ application/vnd.dolby.mlp mlp
480
+ application/vnd.dolby.mobile.1
481
+ application/vnd.dolby.mobile.2
482
+ application/vnd.doremir.scorecloud-binary-document
483
+ application/vnd.dpgraph dpg
484
+ application/vnd.dreamfactory dfac
485
+ application/vnd.drive+json
486
+ application/vnd.ds-keypoint kpxx
487
+ application/vnd.dtg.local
488
+ application/vnd.dtg.local.flash
489
+ application/vnd.dtg.local.html
490
+ application/vnd.dvb.ait ait
491
+ application/vnd.dvb.dvbj
492
+ application/vnd.dvb.esgcontainer
493
+ application/vnd.dvb.ipdcdftnotifaccess
494
+ application/vnd.dvb.ipdcesgaccess
495
+ application/vnd.dvb.ipdcesgaccess2
496
+ application/vnd.dvb.ipdcesgpdd
497
+ application/vnd.dvb.ipdcroaming
498
+ application/vnd.dvb.iptv.alfec-base
499
+ application/vnd.dvb.iptv.alfec-enhancement
500
+ application/vnd.dvb.notif-aggregate-root+xml
501
+ application/vnd.dvb.notif-container+xml
502
+ application/vnd.dvb.notif-generic+xml
503
+ application/vnd.dvb.notif-ia-msglist+xml
504
+ application/vnd.dvb.notif-ia-registration-request+xml
505
+ application/vnd.dvb.notif-ia-registration-response+xml
506
+ application/vnd.dvb.notif-init+xml
507
+ application/vnd.dvb.pfr
508
+ application/vnd.dvb.service svc
509
+ application/vnd.dxr
510
+ application/vnd.dynageo geo
511
+ application/vnd.dzr
512
+ application/vnd.easykaraoke.cdgdownload
513
+ application/vnd.ecdis-update
514
+ application/vnd.ecowin.chart mag
515
+ application/vnd.ecowin.filerequest
516
+ application/vnd.ecowin.fileupdate
517
+ application/vnd.ecowin.series
518
+ application/vnd.ecowin.seriesrequest
519
+ application/vnd.ecowin.seriesupdate
520
+ application/vnd.emclient.accessrequest+xml
521
+ application/vnd.enliven nml
522
+ application/vnd.enphase.envoy
523
+ application/vnd.eprints.data+xml
524
+ application/vnd.epson.esf esf
525
+ application/vnd.epson.msf msf
526
+ application/vnd.epson.quickanime qam
527
+ application/vnd.epson.salt slt
528
+ application/vnd.epson.ssf ssf
529
+ application/vnd.ericsson.quickcall
530
+ application/vnd.eszigno3+xml es3 et3
531
+ application/vnd.etsi.aoc+xml
532
+ application/vnd.etsi.asic-e+zip
533
+ application/vnd.etsi.asic-s+zip
534
+ application/vnd.etsi.cug+xml
535
+ application/vnd.etsi.iptvcommand+xml
536
+ application/vnd.etsi.iptvdiscovery+xml
537
+ application/vnd.etsi.iptvprofile+xml
538
+ application/vnd.etsi.iptvsad-bc+xml
539
+ application/vnd.etsi.iptvsad-cod+xml
540
+ application/vnd.etsi.iptvsad-npvr+xml
541
+ application/vnd.etsi.iptvservice+xml
542
+ application/vnd.etsi.iptvsync+xml
543
+ application/vnd.etsi.iptvueprofile+xml
544
+ application/vnd.etsi.mcid+xml
545
+ application/vnd.etsi.mheg5
546
+ application/vnd.etsi.overload-control-policy-dataset+xml
547
+ application/vnd.etsi.pstn+xml
548
+ application/vnd.etsi.sci+xml
549
+ application/vnd.etsi.simservs+xml
550
+ application/vnd.etsi.timestamp-token
551
+ application/vnd.etsi.tsl+xml
552
+ application/vnd.etsi.tsl.der
553
+ application/vnd.eudora.data
554
+ application/vnd.ezpix-album ez2
555
+ application/vnd.ezpix-package ez3
556
+ application/vnd.f-secure.mobile
557
+ application/vnd.fastcopy-disk-image
558
+ application/vnd.fdf fdf
559
+ application/vnd.fdsn.mseed mseed
560
+ application/vnd.fdsn.seed dataless seed
561
+ application/vnd.ffsns
562
+ application/vnd.fints
563
+ application/vnd.firemonkeys.cloudcell
564
+ application/vnd.FloGraphIt gph
565
+ application/vnd.fluxtime.clip ftc
566
+ application/vnd.font-fontforge-sfd
567
+ application/vnd.framemaker frm maker frame fm fb book fbdoc
568
+ application/vnd.frogans.fnc fnc
569
+ application/vnd.frogans.ltf ltf
570
+ application/vnd.fsc.weblaunch fsc
571
+ application/vnd.fujitsu.oasys oas
572
+ application/vnd.fujitsu.oasys2 oa2
573
+ application/vnd.fujitsu.oasys3 oa3
574
+ application/vnd.fujitsu.oasysgp fg5
575
+ application/vnd.fujitsu.oasysprs bh2
576
+ application/vnd.fujixerox.ART-EX
577
+ application/vnd.fujixerox.ART4
578
+ application/vnd.fujixerox.ddd ddd
579
+ application/vnd.fujixerox.docuworks xdw
580
+ application/vnd.fujixerox.docuworks.binder xbd
581
+ application/vnd.fujixerox.docuworks.container
582
+ application/vnd.fujixerox.HBPL
583
+ application/vnd.fut-misnet
584
+ application/vnd.fuzzysheet fzs
585
+ application/vnd.genomatix.tuxedo txd
586
+ application/vnd.geo+json
587
+ application/vnd.geocube+xml
588
+ application/vnd.geogebra.file ggb
589
+ application/vnd.geogebra.tool ggt
590
+ application/vnd.geometry-explorer gex gre
591
+ application/vnd.geonext gxt
592
+ application/vnd.geoplan g2w
593
+ application/vnd.geospace g3w
594
+ application/vnd.gerber
595
+ application/vnd.globalplatform.card-content-mgt
596
+ application/vnd.globalplatform.card-content-mgt-response
597
+ application/vnd.gmx gmx
598
+ application/vnd.google-earth.kml+xml kml
599
+ application/vnd.google-earth.kmz kmz
600
+ application/vnd.gov.sk.e-form+xml
601
+ application/vnd.gov.sk.e-form+zip
602
+ application/vnd.gov.sk.xmldatacontainer+xml
603
+ application/vnd.grafeq gqf gqs
604
+ application/vnd.gridmp
605
+ application/vnd.groove-account gac
606
+ application/vnd.groove-help ghf
607
+ application/vnd.groove-identity-message gim
608
+ application/vnd.groove-injector grv
609
+ application/vnd.groove-tool-message gtm
610
+ application/vnd.groove-tool-template tpl
611
+ application/vnd.groove-vcard vcg
612
+ application/vnd.hal+json
613
+ application/vnd.hal+xml hal
614
+ application/vnd.HandHeld-Entertainment+xml zmm
615
+ application/vnd.hbci hbci hbc kom upa pkd bpd
616
+ application/vnd.hcl-bireports
617
+ application/vnd.heroku+json
618
+ application/vnd.hhe.lesson-player les
619
+ application/vnd.hp-HPGL plt hpgl
620
+ application/vnd.hp-hpid hpid
621
+ application/vnd.hp-hps hps
622
+ application/vnd.hp-jlyt jlt
623
+ application/vnd.hp-PCL pcl
624
+ application/vnd.hp-PCLXL pclxl
625
+ application/vnd.httphone
626
+ application/vnd.hydrostatix.sof-data sfd-hdstx
627
+ application/vnd.hyperdrive+json
628
+ application/vnd.hzn-3d-crossword
629
+ application/vnd.ibm.afplinedata
630
+ application/vnd.ibm.electronic-media emm
631
+ application/vnd.ibm.MiniPay mpy
632
+ application/vnd.ibm.modcap afp list3820 listafp
633
+ application/vnd.ibm.rights-management irm
634
+ application/vnd.ibm.secure-container sc
635
+ application/vnd.iccprofile icc icm
636
+ application/vnd.ieee.1905
637
+ application/vnd.igloader igl
638
+ application/vnd.immervision-ivp ivp
639
+ application/vnd.immervision-ivu ivu
640
+ application/vnd.ims.imsccv1p1
641
+ application/vnd.ims.imsccv1p2
642
+ application/vnd.ims.imsccv1p3
643
+ application/vnd.ims.lis.v2.result+json
644
+ application/vnd.ims.lti.v2.toolconsumerprofile+json
645
+ application/vnd.ims.lti.v2.toolproxy+json
646
+ application/vnd.ims.lti.v2.toolproxy.id+json
647
+ application/vnd.ims.lti.v2.toolsettings+json
648
+ application/vnd.ims.lti.v2.toolsettings.simple+json
649
+ application/vnd.informedcontrol.rms+xml
650
+ application/vnd.informix-visionary
651
+ application/vnd.infotech.project
652
+ application/vnd.infotech.project+xml
653
+ application/vnd.innopath.wamp.notification
654
+ application/vnd.insors.igm igm
655
+ application/vnd.intercon.formnet xpw xpx
656
+ application/vnd.intergeo i2g
657
+ application/vnd.intertrust.digibox
658
+ application/vnd.intertrust.nncp
659
+ application/vnd.intu.qbo qbo
660
+ application/vnd.intu.qfx qfx
661
+ application/vnd.iptc.g2.catalogitem+xml
662
+ application/vnd.iptc.g2.conceptitem+xml
663
+ application/vnd.iptc.g2.knowledgeitem+xml
664
+ application/vnd.iptc.g2.newsitem+xml
665
+ application/vnd.iptc.g2.newsmessage+xml
666
+ application/vnd.iptc.g2.packageitem+xml
667
+ application/vnd.iptc.g2.planningitem+xml
668
+ application/vnd.ipunplugged.rcprofile rcprofile
669
+ application/vnd.irepository.package+xml irp
670
+ application/vnd.is-xpr xpr
671
+ application/vnd.isac.fcs fcs
672
+ application/vnd.jam jam
673
+ application/vnd.japannet-directory-service
674
+ application/vnd.japannet-jpnstore-wakeup
675
+ application/vnd.japannet-payment-wakeup
676
+ application/vnd.japannet-registration
677
+ application/vnd.japannet-registration-wakeup
678
+ application/vnd.japannet-setstore-wakeup
679
+ application/vnd.japannet-verification
680
+ application/vnd.japannet-verification-wakeup
681
+ application/vnd.jcp.javame.midlet-rms rms
682
+ application/vnd.jisp jisp
683
+ application/vnd.joost.joda-archive joda
684
+ application/vnd.jsk.isdn-ngn
685
+ application/vnd.kahootz ktr ktz
686
+ application/vnd.kde.karbon karbon
687
+ application/vnd.kde.kchart chrt
688
+ application/vnd.kde.kformula kfo
689
+ application/vnd.kde.kivio flw
690
+ application/vnd.kde.kontour kon
691
+ application/vnd.kde.kpresenter kpr kpt
692
+ application/vnd.kde.kspread ksp
693
+ application/vnd.kde.kword kwd kwt
694
+ application/vnd.kenameaapp htke
695
+ application/vnd.kidspiration kia
696
+ application/vnd.Kinar kne knp sdf
697
+ application/vnd.koan skd skm skp skt
698
+ application/vnd.kodak-descriptor sse
699
+ application/vnd.las.las+xml lasxml
700
+ application/vnd.liberty-request+xml
701
+ application/vnd.llamagraphics.life-balance.desktop lbd
702
+ application/vnd.llamagraphics.life-balance.exchange+xml lbe
703
+ application/vnd.lotus-1-2-3 wks 123
704
+ application/vnd.lotus-approach apr
705
+ application/vnd.lotus-freelance pre
706
+ application/vnd.lotus-notes nsf
707
+ application/vnd.lotus-organizer org
708
+ application/vnd.lotus-screencam scm
709
+ application/vnd.lotus-wordpro lwp
710
+ application/vnd.macports.portpkg portpkg
711
+ application/vnd.marlin.drm.actiontoken+xml
712
+ application/vnd.marlin.drm.conftoken+xml
713
+ application/vnd.marlin.drm.license+xml
714
+ application/vnd.marlin.drm.mdcf
715
+ application/vnd.mason+json
716
+ application/vnd.maxmind.maxmind-db
717
+ application/vnd.mcd mcd
718
+ application/vnd.medcalcdata mc1
719
+ application/vnd.mediastation.cdkey cdkey
720
+ application/vnd.meridian-slingshot
721
+ application/vnd.MFER mwf
722
+ application/vnd.mfmp mfm
723
+ application/vnd.micro+json
724
+ application/vnd.micrografx.flo flo
725
+ application/vnd.micrografx.igx igx
726
+ application/vnd.microsoft.portable-executable
727
+ application/vnd.miele+json
728
+ application/vnd.mif mif
729
+ application/vnd.minisoft-hp3000-save
730
+ application/vnd.mitsubishi.misty-guard.trustweb
731
+ application/vnd.Mobius.DAF daf
732
+ application/vnd.Mobius.DIS dis
733
+ application/vnd.Mobius.MBK mbk
734
+ application/vnd.Mobius.MQY mqy
735
+ application/vnd.Mobius.MSL msl
736
+ application/vnd.Mobius.PLC plc
737
+ application/vnd.Mobius.TXF txf
738
+ application/vnd.mophun.application mpn
739
+ application/vnd.mophun.certificate mpc
740
+ application/vnd.motorola.flexsuite
741
+ application/vnd.motorola.flexsuite.adsi
742
+ application/vnd.motorola.flexsuite.fis
743
+ application/vnd.motorola.flexsuite.gotap
744
+ application/vnd.motorola.flexsuite.kmr
745
+ application/vnd.motorola.flexsuite.ttc
746
+ application/vnd.motorola.flexsuite.wem
747
+ application/vnd.motorola.iprm
748
+ application/vnd.mozilla.xul+xml xul
749
+ application/vnd.ms-3mfdocument
750
+ application/vnd.ms-artgalry cil
751
+ application/vnd.ms-asf asf
752
+ application/vnd.ms-cab-compressed cab
753
+ application/vnd.ms-excel xls xlt xla xlc xlm xlw
754
+ application/vnd.ms-excel.addin.macroEnabled.12 xlam
755
+ application/vnd.ms-excel.sheet.binary.macroEnabled.12 xlsb
756
+ application/vnd.ms-excel.sheet.macroEnabled.12 xlsm
757
+ application/vnd.ms-excel.template.macroEnabled.12 xltm
758
+ application/vnd.ms-fontobject eot
759
+ application/vnd.ms-htmlhelp chm
760
+ application/vnd.ms-ims ims
761
+ application/vnd.ms-lrm lrm
762
+ application/vnd.ms-office.activeX+xml
763
+ application/vnd.ms-officetheme thmx
764
+ application/vnd.ms-outlook msg
765
+ application/vnd.ms-pki.seccat cat
766
+ application/vnd.ms-pki.stl stl
767
+ application/vnd.ms-playready.initiator+xml
768
+ application/vnd.ms-powerpoint ppt pps pot
769
+ application/vnd.ms-powerpoint.addin.macroEnabled.12 ppam
770
+ application/vnd.ms-powerpoint.presentation.macroEnabled.12 pptm
771
+ application/vnd.ms-powerpoint.slide.macroEnabled.12 sldm
772
+ application/vnd.ms-powerpoint.slideshow.macroEnabled.12 ppsm
773
+ application/vnd.ms-powerpoint.template.macroEnabled.12 potm
774
+ application/vnd.ms-project mpp mpt
775
+ application/vnd.ms-tnef
776
+ application/vnd.ms-windows.devicepairing
777
+ application/vnd.ms-windows.printerpairing
778
+ application/vnd.ms-windows.wsd.oob
779
+ application/vnd.ms-wmdrm.lic-chlg-req
780
+ application/vnd.ms-wmdrm.lic-resp
781
+ application/vnd.ms-wmdrm.meter-chlg-req
782
+ application/vnd.ms-wmdrm.meter-resp
783
+ application/vnd.ms-word.document.macroEnabled.12 docm
784
+ application/vnd.ms-word.template.macroEnabled.12 dotm
785
+ application/vnd.ms-works wcm wdb wks wps
786
+ application/vnd.ms-wpl wpl
787
+ application/vnd.ms-xpsdocument xps
788
+ application/vnd.msa-disk-image
789
+ application/vnd.mseq mseq
790
+ application/vnd.msign
791
+ application/vnd.multiad.creator
792
+ application/vnd.multiad.creator.cif
793
+ application/vnd.music-niff
794
+ application/vnd.musician mus
795
+ application/vnd.muvee.style msty
796
+ application/vnd.mynfc taglet
797
+ application/vnd.ncd.control
798
+ application/vnd.ncd.reference
799
+ application/vnd.nervana ent entity req request bkm kcm
800
+ application/vnd.netfpx
801
+ application/vnd.neurolanguage.nlu nlu
802
+ application/vnd.nintendo.nitro.rom
803
+ application/vnd.nintendo.snes.rom
804
+ application/vnd.nitf nitf ntf
805
+ application/vnd.noblenet-directory nnd
806
+ application/vnd.noblenet-sealer nns
807
+ application/vnd.noblenet-web nnw
808
+ application/vnd.nokia.catalogs
809
+ application/vnd.nokia.conml+wbxml
810
+ application/vnd.nokia.conml+xml
811
+ application/vnd.nokia.iptv.config+xml
812
+ application/vnd.nokia.iSDS-radio-presets
813
+ application/vnd.nokia.landmark+wbxml
814
+ application/vnd.nokia.landmark+xml
815
+ application/vnd.nokia.landmarkcollection+xml
816
+ application/vnd.nokia.n-gage.ac+xml
817
+ application/vnd.nokia.n-gage.data ngdat
818
+ application/vnd.nokia.n-gage.symbian.install n-gage
819
+ application/vnd.nokia.ncd
820
+ application/vnd.nokia.ncd+xml
821
+ application/vnd.nokia.pcd+wbxml
822
+ application/vnd.nokia.pcd+xml
823
+ application/vnd.nokia.radio-preset rpst
824
+ application/vnd.nokia.radio-presets rpss
825
+ application/vnd.novadigm.EDM edm
826
+ application/vnd.novadigm.EDX edx
827
+ application/vnd.novadigm.EXT ext
828
+ application/vnd.ntt-local.content-share
829
+ application/vnd.ntt-local.file-transfer
830
+ application/vnd.ntt-local.ogw_remote-access
831
+ application/vnd.ntt-local.sip-ta_remote
832
+ application/vnd.ntt-local.sip-ta_tcp_stream
833
+ application/vnd.oasis.opendocument.chart odc
834
+ application/vnd.oasis.opendocument.chart-template odc otc
835
+ application/vnd.oasis.opendocument.database odb
836
+ application/vnd.oasis.opendocument.formula odf
837
+ application/vnd.oasis.opendocument.formula-template odf odft
838
+ application/vnd.oasis.opendocument.graphics odg
839
+ application/vnd.oasis.opendocument.graphics-template otg
840
+ application/vnd.oasis.opendocument.image odi
841
+ application/vnd.oasis.opendocument.image-template odi oti
842
+ application/vnd.oasis.opendocument.presentation odp
843
+ application/vnd.oasis.opendocument.presentation-template otp
844
+ application/vnd.oasis.opendocument.spreadsheet ods
845
+ application/vnd.oasis.opendocument.spreadsheet-template ots
846
+ application/vnd.oasis.opendocument.text odt
847
+ application/vnd.oasis.opendocument.text-master odm
848
+ application/vnd.oasis.opendocument.text-template ott
849
+ application/vnd.oasis.opendocument.text-web oth
850
+ application/vnd.obn
851
+ application/vnd.oftn.l10n+json
852
+ application/vnd.oipf.contentaccessdownload+xml
853
+ application/vnd.oipf.contentaccessstreaming+xml
854
+ application/vnd.oipf.cspg-hexbinary
855
+ application/vnd.oipf.dae.svg+xml
856
+ application/vnd.oipf.dae.xhtml+xml
857
+ application/vnd.oipf.mippvcontrolmessage+xml
858
+ application/vnd.oipf.pae.gem
859
+ application/vnd.oipf.spdiscovery+xml
860
+ application/vnd.oipf.spdlist+xml
861
+ application/vnd.oipf.ueprofile+xml
862
+ application/vnd.oipf.userprofile+xml
863
+ application/vnd.olpc-sugar xo
864
+ application/vnd.oma-scws-config
865
+ application/vnd.oma-scws-http-request
866
+ application/vnd.oma-scws-http-response
867
+ application/vnd.oma.bcast.associated-procedure-parameter+xml
868
+ application/vnd.oma.bcast.drm-trigger+xml
869
+ application/vnd.oma.bcast.imd+xml
870
+ application/vnd.oma.bcast.ltkm
871
+ application/vnd.oma.bcast.notification+xml
872
+ application/vnd.oma.bcast.provisioningtrigger
873
+ application/vnd.oma.bcast.sgboot
874
+ application/vnd.oma.bcast.sgdd+xml
875
+ application/vnd.oma.bcast.sgdu
876
+ application/vnd.oma.bcast.simple-symbol-container
877
+ application/vnd.oma.bcast.smartcard-trigger+xml
878
+ application/vnd.oma.bcast.sprov+xml
879
+ application/vnd.oma.bcast.stkm
880
+ application/vnd.oma.cab-address-book+xml
881
+ application/vnd.oma.cab-feature-handler+xml
882
+ application/vnd.oma.cab-pcc+xml
883
+ application/vnd.oma.cab-subs-invite+xml
884
+ application/vnd.oma.cab-user-prefs+xml
885
+ application/vnd.oma.dcd
886
+ application/vnd.oma.dcdc
887
+ application/vnd.oma.dd2+xml dd2
888
+ application/vnd.oma.drm.risd+xml
889
+ application/vnd.oma.group-usage-list+xml
890
+ application/vnd.oma.pal+xml
891
+ application/vnd.oma.poc.detailed-progress-report+xml
892
+ application/vnd.oma.poc.final-report+xml
893
+ application/vnd.oma.poc.groups+xml
894
+ application/vnd.oma.poc.invocation-descriptor+xml
895
+ application/vnd.oma.poc.optimized-progress-report+xml
896
+ application/vnd.oma.push
897
+ application/vnd.oma.scidm.messages+xml
898
+ application/vnd.oma.xcap-directory+xml
899
+ application/vnd.omads-email+xml
900
+ application/vnd.omads-file+xml
901
+ application/vnd.omads-folder+xml
902
+ application/vnd.omaloc-supl-init
903
+ application/vnd.openblox.game+xml
904
+ application/vnd.openblox.game-binary
905
+ application/vnd.openeye.oeb
906
+ application/vnd.openofficeorg.extension oxt
907
+ application/vnd.openxmlformats-officedocument.custom-properties+xml
908
+ application/vnd.openxmlformats-officedocument.customXmlProperties+xml
909
+ application/vnd.openxmlformats-officedocument.drawing+xml
910
+ application/vnd.openxmlformats-officedocument.drawingml.chart+xml
911
+ application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml
912
+ application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml
913
+ application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml
914
+ application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml
915
+ application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml
916
+ application/vnd.openxmlformats-officedocument.extended-properties+xml
917
+ application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml
918
+ application/vnd.openxmlformats-officedocument.presentationml.comments+xml
919
+ application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml
920
+ application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml
921
+ application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml
922
+ application/vnd.openxmlformats-officedocument.presentationml.presentation pptx
923
+ application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml
924
+ application/vnd.openxmlformats-officedocument.presentationml.presProps+xml
925
+ application/vnd.openxmlformats-officedocument.presentationml.slide sldx
926
+ application/vnd.openxmlformats-officedocument.presentationml.slide+xml
927
+ application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml
928
+ application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml
929
+ application/vnd.openxmlformats-officedocument.presentationml.slideshow ppsx
930
+ application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml
931
+ application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml
932
+ application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml
933
+ application/vnd.openxmlformats-officedocument.presentationml.tags+xml
934
+ application/vnd.openxmlformats-officedocument.presentationml.template potx
935
+ application/vnd.openxmlformats-officedocument.presentationml.template.main+xml
936
+ application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml
937
+ application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml
938
+ application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml
939
+ application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml
940
+ application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml
941
+ application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml
942
+ application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml
943
+ application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml
944
+ application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml
945
+ application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml
946
+ application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml
947
+ application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml
948
+ application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml
949
+ application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml
950
+ application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx
951
+ application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml
952
+ application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml
953
+ application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml
954
+ application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml
955
+ application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml
956
+ application/vnd.openxmlformats-officedocument.spreadsheetml.template xltx
957
+ application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml
958
+ application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml
959
+ application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml
960
+ application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml
961
+ application/vnd.openxmlformats-officedocument.theme+xml
962
+ application/vnd.openxmlformats-officedocument.themeOverride+xml
963
+ application/vnd.openxmlformats-officedocument.vmlDrawing
964
+ application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml
965
+ application/vnd.openxmlformats-officedocument.wordprocessingml.document docx
966
+ application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml
967
+ application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml
968
+ application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml
969
+ application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml
970
+ application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml
971
+ application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml
972
+ application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml
973
+ application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml
974
+ application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml
975
+ application/vnd.openxmlformats-officedocument.wordprocessingml.template dotx
976
+ application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml
977
+ application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml
978
+ application/vnd.openxmlformats-package.core-properties+xml
979
+ application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml
980
+ application/vnd.openxmlformats-package.relationships+xml
981
+ application/vnd.oracle.resource+json
982
+ application/vnd.orange.indata
983
+ application/vnd.osa.netdeploy
984
+ application/vnd.osgeo.mapguide.package mgp
985
+ application/vnd.osgi.bundle
986
+ application/vnd.osgi.dp dp
987
+ application/vnd.osgi.subsystem esa
988
+ application/vnd.otps.ct-kip+xml
989
+ application/vnd.oxli.countgraph
990
+ application/vnd.pagerduty+json
991
+ application/vnd.palm prc pdb pqa oprc
992
+ application/vnd.panoply
993
+ application/vnd.paos.xml
994
+ application/vnd.pawaafile paw
995
+ application/vnd.pcos
996
+ application/vnd.pg.format str
997
+ application/vnd.pg.osasli ei6
998
+ application/vnd.piaccess.application-licence
999
+ application/vnd.picsel efif
1000
+ application/vnd.pmi.widget wg
1001
+ application/vnd.poc.group-advertisement+xml
1002
+ application/vnd.pocketlearn plf
1003
+ application/vnd.powerbuilder6 pbd
1004
+ application/vnd.powerbuilder6-s
1005
+ application/vnd.powerbuilder7
1006
+ application/vnd.powerbuilder7-s
1007
+ application/vnd.powerbuilder75
1008
+ application/vnd.powerbuilder75-s
1009
+ application/vnd.preminet
1010
+ application/vnd.previewsystems.box box
1011
+ application/vnd.proteus.magazine mgz
1012
+ application/vnd.publishare-delta-tree qps
1013
+ application/vnd.pvi.ptid1 pti ptid
1014
+ application/vnd.pwg-multiplexed
1015
+ application/vnd.pwg-xhtml-print+xml
1016
+ application/vnd.qualcomm.brew-app-res
1017
+ application/vnd.Quark.QuarkXPress qxd qxt qwd qwt qxl qxb
1018
+ application/vnd.quobject-quoxdocument
1019
+ application/vnd.radisys.moml+xml
1020
+ application/vnd.radisys.msml+xml
1021
+ application/vnd.radisys.msml-audit+xml
1022
+ application/vnd.radisys.msml-audit-conf+xml
1023
+ application/vnd.radisys.msml-audit-conn+xml
1024
+ application/vnd.radisys.msml-audit-dialog+xml
1025
+ application/vnd.radisys.msml-audit-stream+xml
1026
+ application/vnd.radisys.msml-conf+xml
1027
+ application/vnd.radisys.msml-dialog+xml
1028
+ application/vnd.radisys.msml-dialog-base+xml
1029
+ application/vnd.radisys.msml-dialog-fax-detect+xml
1030
+ application/vnd.radisys.msml-dialog-fax-sendrecv+xml
1031
+ application/vnd.radisys.msml-dialog-group+xml
1032
+ application/vnd.radisys.msml-dialog-speech+xml
1033
+ application/vnd.radisys.msml-dialog-transform+xml
1034
+ application/vnd.rainstor.data
1035
+ application/vnd.rapid
1036
+ application/vnd.realvnc.bed bed
1037
+ application/vnd.recordare.musicxml mxl
1038
+ application/vnd.recordare.musicxml+xml musicxml
1039
+ application/vnd.RenLearn.rlprint
1040
+ application/vnd.rig.cryptonote cryptonote
1041
+ application/vnd.rim.cod cod
1042
+ application/vnd.rn-realmedia rm
1043
+ application/vnd.rn-realmedia-vbr rmvb
1044
+ application/vnd.route66.link66+xml link66
1045
+ application/vnd.rs-274x
1046
+ application/vnd.ruckus.download
1047
+ application/vnd.s3sms
1048
+ application/vnd.sailingtracker.track st
1049
+ application/vnd.sbm.cid
1050
+ application/vnd.sbm.mid2
1051
+ application/vnd.scribus
1052
+ application/vnd.sealed.3df
1053
+ application/vnd.sealed.csf
1054
+ application/vnd.sealed.doc sdoc sdo s1w
1055
+ application/vnd.sealed.eml seml sem
1056
+ application/vnd.sealed.mht smht smh
1057
+ application/vnd.sealed.net
1058
+ application/vnd.sealed.ppt sppt spp s1p
1059
+ application/vnd.sealed.tiff
1060
+ application/vnd.sealed.xls sxls sxl s1e
1061
+ application/vnd.sealedmedia.softseal.html stml stm s1h
1062
+ application/vnd.sealedmedia.softseal.pdf spdf spd s1a
1063
+ application/vnd.seemail see
1064
+ application/vnd.sema sema
1065
+ application/vnd.semd semd
1066
+ application/vnd.semf semf
1067
+ application/vnd.shana.informed.formdata ifm
1068
+ application/vnd.shana.informed.formtemplate itp
1069
+ application/vnd.shana.informed.interchange iif
1070
+ application/vnd.shana.informed.package ipk
1071
+ application/vnd.SimTech-MindMapper twd twds
1072
+ application/vnd.siren+json
1073
+ application/vnd.smaf mmf
1074
+ application/vnd.smart.notebook
1075
+ application/vnd.smart.teacher teacher
1076
+ application/vnd.software602.filler.form+xml
1077
+ application/vnd.software602.filler.form-xml-zip
1078
+ application/vnd.solent.sdkm+xml sdkd sdkm
1079
+ application/vnd.spotfire.dxp dxp
1080
+ application/vnd.spotfire.sfs sfs
1081
+ application/vnd.sss-cod
1082
+ application/vnd.sss-dtf
1083
+ application/vnd.sss-ntf
1084
+ application/vnd.stardivision.calc sdc
1085
+ application/vnd.stardivision.chart sds
1086
+ application/vnd.stardivision.draw sda
1087
+ application/vnd.stardivision.impress sdd
1088
+ application/vnd.stardivision.math sdf smf
1089
+ application/vnd.stardivision.writer sdw vor
1090
+ application/vnd.stardivision.writer-global sgl
1091
+ application/vnd.stepmania.package smzip
1092
+ application/vnd.stepmania.stepchart sm
1093
+ application/vnd.street-stream
1094
+ application/vnd.sun.wadl+xml
1095
+ application/vnd.sun.xml.calc sxc
1096
+ application/vnd.sun.xml.calc.template stc
1097
+ application/vnd.sun.xml.draw sxd
1098
+ application/vnd.sun.xml.draw.template std
1099
+ application/vnd.sun.xml.impress sxi
1100
+ application/vnd.sun.xml.impress.template sti
1101
+ application/vnd.sun.xml.math sxm
1102
+ application/vnd.sun.xml.writer sxw
1103
+ application/vnd.sun.xml.writer.global sxg
1104
+ application/vnd.sun.xml.writer.template stw
1105
+ application/vnd.sus-calendar sus susp
1106
+ application/vnd.svd svd
1107
+ application/vnd.swiftview-ics
1108
+ application/vnd.symbian.install sis sisx
1109
+ application/vnd.syncml+xml xsm
1110
+ application/vnd.syncml.dm+wbxml bdm
1111
+ application/vnd.syncml.dm+xml xdm
1112
+ application/vnd.syncml.dm.notification
1113
+ application/vnd.syncml.dmddf+wbxml
1114
+ application/vnd.syncml.dmddf+xml
1115
+ application/vnd.syncml.dmtnds+wbxml
1116
+ application/vnd.syncml.dmtnds+xml
1117
+ application/vnd.syncml.ds.notification
1118
+ application/vnd.tao.intent-module-archive tao
1119
+ application/vnd.tcpdump.pcap cap dmp pcap
1120
+ application/vnd.tmd.mediaflex.api+xml
1121
+ application/vnd.tmobile-livetv tmo
1122
+ application/vnd.trid.tpt tpt
1123
+ application/vnd.triscape.mxs mxs
1124
+ application/vnd.trueapp tra
1125
+ application/vnd.truedoc
1126
+ application/vnd.ubisoft.webplayer
1127
+ application/vnd.ufdl ufd ufdl
1128
+ application/vnd.uiq.theme utz
1129
+ application/vnd.umajin umj
1130
+ application/vnd.unity unityweb
1131
+ application/vnd.uoml+xml uoml
1132
+ application/vnd.uplanet.alert
1133
+ application/vnd.uplanet.alert-wbxml
1134
+ application/vnd.uplanet.bearer-choice
1135
+ application/vnd.uplanet.bearer-choice-wbxml
1136
+ application/vnd.uplanet.cacheop
1137
+ application/vnd.uplanet.cacheop-wbxml
1138
+ application/vnd.uplanet.channel
1139
+ application/vnd.uplanet.channel-wbxml
1140
+ application/vnd.uplanet.list
1141
+ application/vnd.uplanet.list-wbxml
1142
+ application/vnd.uplanet.listcmd
1143
+ application/vnd.uplanet.listcmd-wbxml
1144
+ application/vnd.uplanet.signal
1145
+ application/vnd.uri-map
1146
+ application/vnd.valve.source.material
1147
+ application/vnd.vcx vcx
1148
+ application/vnd.vd-study
1149
+ application/vnd.vectorworks
1150
+ application/vnd.verimatrix.vcas
1151
+ application/vnd.vidsoft.vidconference vsc
1152
+ application/vnd.visio vsd vst vsw vss
1153
+ application/vnd.visionary vis
1154
+ application/vnd.vividence.scriptfile
1155
+ application/vnd.vsf vsf
1156
+ application/vnd.wap.sic sic
1157
+ application/vnd.wap.slc slc
1158
+ application/vnd.wap.wbxml wbxml
1159
+ application/vnd.wap.wmlc wmlc
1160
+ application/vnd.wap.wmlscriptc wmlsc
1161
+ application/vnd.webturbo wtb
1162
+ application/vnd.wfa.p2p
1163
+ application/vnd.wfa.wsc
1164
+ application/vnd.windows.devicepairing
1165
+ application/vnd.wmc
1166
+ application/vnd.wmf.bootstrap
1167
+ application/vnd.wolfram.mathematica
1168
+ application/vnd.wolfram.mathematica.package
1169
+ application/vnd.wolfram.player nbp
1170
+ application/vnd.wordperfect wpd
1171
+ application/vnd.wqd wqd
1172
+ application/vnd.wrq-hp3000-labelled
1173
+ application/vnd.wt.stf stf
1174
+ application/vnd.wv.csp+wbxml wv
1175
+ application/vnd.wv.csp+xml
1176
+ application/vnd.wv.ssp+xml
1177
+ application/vnd.xacml+json
1178
+ application/vnd.xara xar
1179
+ application/vnd.xfdl xfdl
1180
+ application/vnd.xfdl.webform
1181
+ application/vnd.xmi+xml
1182
+ application/vnd.xmpie.cpkg
1183
+ application/vnd.xmpie.dpkg
1184
+ application/vnd.xmpie.plan
1185
+ application/vnd.xmpie.ppkg
1186
+ application/vnd.xmpie.xlim
1187
+ application/vnd.yamaha.hv-dic hvd
1188
+ application/vnd.yamaha.hv-script hvs
1189
+ application/vnd.yamaha.hv-voice hvp
1190
+ application/vnd.yamaha.openscoreformat osf
1191
+ application/vnd.yamaha.openscoreformat.osfpvg+xml osfpvg
1192
+ application/vnd.yamaha.remote-setup
1193
+ application/vnd.yamaha.smaf-audio saf
1194
+ application/vnd.yamaha.smaf-phrase spf
1195
+ application/vnd.yamaha.through-ngn
1196
+ application/vnd.yamaha.tunnel-udpencap
1197
+ application/vnd.yaoweme
1198
+ application/vnd.yellowriver-custom-menu cmp
1199
+ application/vnd.zul zir zirz
1200
+ application/vnd.zzazz.deck+xml zaz
1201
+ application/voicexml+xml vxml
1202
+ application/vq-rtcpxr
1203
+ application/watcherinfo+xml wif
1204
+ application/whoispp-query
1205
+ application/whoispp-response
1206
+ application/widget wgt
1207
+ application/winhlp hlp
1208
+ application/wita
1209
+ application/word doc dot
1210
+ application/wordperfect wp
1211
+ application/wordperfect5.1 wp5 wp
1212
+ application/wordperfect6.1 wp6
1213
+ application/wordperfectd wpd
1214
+ application/wsdl+xml wsdl
1215
+ application/wspolicy+xml wspolicy
1216
+ application/x-123 wk
1217
+ application/x-7z-compressed 7z
1218
+ application/x-abiword abw
1219
+ application/x-access mdf mda mdb mde
1220
+ application/x-ace-compressed ace
1221
+ application/x-apple-diskimage dmg
1222
+ application/x-authorware-bin aab u32 vox x32
1223
+ application/x-authorware-map aam
1224
+ application/x-authorware-seg aas
1225
+ application/x-bcpio bcpio
1226
+ application/x-bittorrent torrent
1227
+ application/x-bleeper bleep
1228
+ application/x-blorb blb blorb
1229
+ application/x-bzip bz
1230
+ application/x-bzip2 boz bz2
1231
+ application/x-cbr cb7 cba cbr cbt cbz
1232
+ application/x-cdlink vcd
1233
+ application/x-cfs-compressed cfs
1234
+ application/x-chat chat
1235
+ application/x-chess-pgn pgn
1236
+ application/x-chrome-extension crx
1237
+ application/x-clariscad
1238
+ application/x-compress z Z
1239
+ application/x-compressed z Z
1240
+ application/x-conference nsc
1241
+ application/x-cpio cpio
1242
+ application/x-csh csh
1243
+ application/x-cu-seeme csm cu
1244
+ application/x-debian-package deb udeb
1245
+ application/x-dgc-compressed dgc
1246
+ application/x-director dcr @dir @dxr cct cst cxt dir dxr fgd swa w3d
1247
+ application/x-doom wad
1248
+ application/x-drafting
1249
+ application/x-dtbncx+xml ncx
1250
+ application/x-dtbook+xml dtb
1251
+ application/x-dtbresource+xml res
1252
+ application/x-dvi dvi
1253
+ application/x-dxf
1254
+ application/x-envoy evy
1255
+ application/x-eva eva
1256
+ application/x-excel
1257
+ application/x-font-bdf bdf
1258
+ application/x-font-ghostscript gsf
1259
+ application/x-font-linux-psf psf
1260
+ application/x-font-opentype otf
1261
+ application/x-font-otf otf
1262
+ application/x-font-pcf pcf
1263
+ application/x-font-snf snf
1264
+ application/x-font-truetype ttf
1265
+ application/x-font-ttf ttc ttf
1266
+ application/x-font-type1 afm pfa pfb pfm
1267
+ application/x-fractals
1268
+ application/x-freearc arc
1269
+ application/x-futuresplash spl
1270
+ application/x-gca-compressed gca
1271
+ application/x-ghostview
1272
+ application/x-glulx ulx
1273
+ application/x-gnumeric gnumeric
1274
+ application/x-gramps-xml gramps
1275
+ application/x-gtar gtar tgz tbz2 tbz
1276
+ application/x-gzip gz
1277
+ application/x-hdf hdf
1278
+ application/x-hep hep
1279
+ application/x-html+ruby rhtml
1280
+ application/x-httpd-php phtml pht php
1281
+ application/x-ibooks+zip ibooks
1282
+ application/x-ica ica
1283
+ application/x-ideas
1284
+ application/x-imagemap imagemap imap
1285
+ application/x-install-instructions install
1286
+ application/x-iso9660-image iso
1287
+ application/x-iwork-keynote-sffkey key
1288
+ application/x-iwork-numbers-sffnumbers numbers
1289
+ application/x-iwork-pages-sffpages pages
1290
+ application/x-java-archive jar
1291
+ application/x-java-jnlp-file jnlp
1292
+ application/x-java-serialized-object ser
1293
+ application/x-java-vm class
1294
+ application/x-javascript js
1295
+ application/x-koan skp skd skt skm
1296
+ application/x-latex ltx latex
1297
+ application/x-lotus-123 wks
1298
+ application/x-lzh-compressed lha lzh
1299
+ application/x-mac bin
1300
+ application/x-mac-compactpro cpt
1301
+ application/x-macbase64 bin
1302
+ application/x-macbinary
1303
+ application/x-maker frm maker frame fm fb book fbdoc
1304
+ application/x-mathcad mcd
1305
+ application/x-mathematica-old
1306
+ application/x-mie mie
1307
+ application/x-mif mif
1308
+ application/x-mobipocket-ebook mobi prc
1309
+ application/x-ms-application application
1310
+ application/x-ms-shortcut lnk
1311
+ application/x-ms-wmd wmd
1312
+ application/x-ms-wmz wmz
1313
+ application/x-ms-xbap xbap
1314
+ application/x-msaccess mda mdb mde mdf
1315
+ application/x-msbinder obd
1316
+ application/x-mscardfile crd
1317
+ application/x-msclip clp
1318
+ application/x-msdos-program cmd bat com exe reg ps1 vbs
1319
+ application/x-msdownload exe com cmd bat dll msi reg ps1 vbs
1320
+ application/x-msmediaview m13 m14 mvb
1321
+ application/x-msmetafile emf emz wmf wmz
1322
+ application/x-msmoney mny
1323
+ application/x-mspublisher pub
1324
+ application/x-msschedule scd
1325
+ application/x-msterminal trm
1326
+ application/x-msword doc dot wrd
1327
+ application/x-mswrite wri
1328
+ application/x-netcdf nc cdf
1329
+ application/x-ns-proxy-autoconfig pac
1330
+ application/x-nzb nzb
1331
+ application/x-opera-extension oex
1332
+ application/x-pagemaker pm pm5 pt5
1333
+ application/x-perl pl pm
1334
+ application/x-pgp
1335
+ application/x-pkcs12 p12 pfx
1336
+ application/x-pkcs7-certificates p7b spc
1337
+ application/x-pkcs7-certreqresp p7r
1338
+ application/x-python py
1339
+ application/x-quicktimeplayer qtl
1340
+ application/x-rar-compressed rar
1341
+ application/x-remote_printing
1342
+ application/x-research-info-systems ris
1343
+ application/x-rtf rtf
1344
+ application/x-ruby rb rbw
1345
+ application/x-set
1346
+ application/x-sh sh
1347
+ application/x-shar shar
1348
+ application/x-shockwave-flash swf
1349
+ application/x-silverlight-app xap
1350
+ application/x-SLA
1351
+ application/x-solids
1352
+ application/x-spss sav sbs sps spo spp
1353
+ application/x-sql sql
1354
+ application/x-STEP
1355
+ application/x-stuffit sit
1356
+ application/x-stuffitx sitx
1357
+ application/x-subrip srt
1358
+ application/x-sv4cpio sv4cpio
1359
+ application/x-sv4crc sv4crc
1360
+ application/x-t3vm-image t3
1361
+ application/x-tads gam
1362
+ application/x-tar tar
1363
+ application/x-tcl tcl
1364
+ application/x-tex tex
1365
+ application/x-tex-tfm tfm
1366
+ application/x-texinfo texinfo texi
1367
+ application/x-tgif obj
1368
+ application/x-toolbook tbk
1369
+ application/x-troff t tr roff
1370
+ application/x-troff-man man
1371
+ application/x-troff-me me
1372
+ application/x-troff-ms ms
1373
+ application/x-u-star
1374
+ application/x-ustar ustar
1375
+ application/x-VMSBACKUP bck
1376
+ application/x-wais-source src
1377
+ application/x-web-app-manifest+json webapp
1378
+ application/x-Wingz wz wkz
1379
+ application/x-word doc dot
1380
+ application/x-wordperfect wp
1381
+ application/x-wordperfect6.1 wp6
1382
+ application/x-wordperfectd wpd
1383
+ application/x-www-form-urlencoded
1384
+ application/x-x509-ca-cert crt der
1385
+ application/x-xfig fig
1386
+ application/x-xliff+xml xlf
1387
+ application/x-xpinstall xpi
1388
+ application/x-xz xz
1389
+ application/x-zmachine z1 z2 z3 z4 z5 z6 z7 z8
1390
+ application/x400-bp
1391
+ application/x400.bp
1392
+ application/xacml+xml
1393
+ application/xaml+xml xaml
1394
+ application/xcap-att+xml
1395
+ application/xcap-caps+xml
1396
+ application/xcap-diff+xml xdf
1397
+ application/xcap-el+xml
1398
+ application/xcap-error+xml
1399
+ application/xcap-ns+xml
1400
+ application/xcon-conference-info+xml
1401
+ application/xcon-conference-info-diff+xml
1402
+ application/xenc+xml xenc
1403
+ application/xhtml+xml xht xhtml
1404
+ application/xhtml-voice+xml
1405
+ application/xml xml xsl
1406
+ application/xml-dtd dtd
1407
+ application/xml-external-parsed-entity
1408
+ application/xml-patch+xml
1409
+ application/xmpp+xml
1410
+ application/xop+xml xop
1411
+ application/xproc+xml xpl
1412
+ application/xslt+xml xslt
1413
+ application/xspf+xml xspf
1414
+ application/xv+xml mxml xhvml xvm xvml
1415
+ application/yang yang
1416
+ application/yin+xml yin
1417
+ application/zip zip
1418
+ application/zlib
1419
+ audio/1d-interleaved-parityfec
1420
+ audio/32kadpcm
1421
+ audio/3gpp
1422
+ audio/3gpp2
1423
+ audio/ac3
1424
+ audio/adpcm adp
1425
+ audio/AMR amr
1426
+ audio/AMR-WB awb
1427
+ audio/amr-wb+
1428
+ audio/aptx
1429
+ audio/asc
1430
+ audio/ATRAC-ADVANCED-LOSSLESS
1431
+ audio/ATRAC-X
1432
+ audio/ATRAC3
1433
+ audio/basic au snd
1434
+ audio/BV16
1435
+ audio/BV32
1436
+ audio/clearmode
1437
+ audio/CN
1438
+ audio/DAT12
1439
+ audio/dls
1440
+ audio/dsr-es201108
1441
+ audio/dsr-es202050
1442
+ audio/dsr-es202211
1443
+ audio/dsr-es202212
1444
+ audio/DV
1445
+ audio/DVI4
1446
+ audio/eac3
1447
+ audio/encaprtp
1448
+ audio/EVRC evc
1449
+ audio/EVRC-QCP
1450
+ audio/EVRC0
1451
+ audio/EVRC1
1452
+ audio/EVRCB
1453
+ audio/EVRCB0
1454
+ audio/EVRCB1
1455
+ audio/EVRCNW
1456
+ audio/EVRCNW0
1457
+ audio/EVRCNW1
1458
+ audio/EVRCWB
1459
+ audio/EVRCWB0
1460
+ audio/EVRCWB1
1461
+ audio/example
1462
+ audio/fwdred
1463
+ audio/G711-0
1464
+ audio/G719
1465
+ audio/G722
1466
+ audio/G7221
1467
+ audio/G723
1468
+ audio/G726-16
1469
+ audio/G726-24
1470
+ audio/G726-32
1471
+ audio/G726-40
1472
+ audio/G728
1473
+ audio/G729
1474
+ audio/G7291
1475
+ audio/G729D
1476
+ audio/G729E
1477
+ audio/GSM
1478
+ audio/GSM-EFR
1479
+ audio/GSM-HR-08
1480
+ audio/iLBC
1481
+ audio/ip-mr_v2.5
1482
+ audio/L16 l16
1483
+ audio/L20
1484
+ audio/L24
1485
+ audio/L8
1486
+ audio/LPC
1487
+ audio/midi kar mid midi rmi
1488
+ audio/mobile-xmf
1489
+ audio/mp4 mp4 mpg4 f4a f4b mp4a
1490
+ audio/MP4A-LATM m4a
1491
+ audio/MPA
1492
+ audio/mpa-robust
1493
+ audio/mpeg mpga mp2 mp3 m2a m3a mp2a
1494
+ audio/mpeg4-generic
1495
+ audio/ogg oga ogg spx
1496
+ audio/opus
1497
+ audio/parityfec
1498
+ audio/PCMA
1499
+ audio/PCMA-WB
1500
+ audio/PCMU
1501
+ audio/PCMU-WB
1502
+ audio/prs.sid
1503
+ audio/QCELP
1504
+ audio/raptorfec
1505
+ audio/RED
1506
+ audio/rtp-enc-aescm128
1507
+ audio/rtp-midi
1508
+ audio/rtploopback
1509
+ audio/rtx
1510
+ audio/s3m s3m
1511
+ audio/silk sil
1512
+ audio/SMV smv
1513
+ audio/SMV-QCP
1514
+ audio/SMV0
1515
+ audio/sp-midi
1516
+ audio/speex
1517
+ audio/t140c
1518
+ audio/t38
1519
+ audio/telephone-event
1520
+ audio/tone
1521
+ audio/UEMCLIP
1522
+ audio/ulpfec
1523
+ audio/VDVI
1524
+ audio/VMR-WB
1525
+ audio/vnd.3gpp.iufp
1526
+ audio/vnd.4SB
1527
+ audio/vnd.audiokoz
1528
+ audio/vnd.CELP
1529
+ audio/vnd.cisco.nse
1530
+ audio/vnd.cmles.radio-events
1531
+ audio/vnd.cns.anp1
1532
+ audio/vnd.cns.inf1
1533
+ audio/vnd.dece.audio uva uvva
1534
+ audio/vnd.digital-winds eol
1535
+ audio/vnd.dlna.adts
1536
+ audio/vnd.dolby.heaac.1
1537
+ audio/vnd.dolby.heaac.2
1538
+ audio/vnd.dolby.mlp
1539
+ audio/vnd.dolby.mps
1540
+ audio/vnd.dolby.pl2
1541
+ audio/vnd.dolby.pl2x
1542
+ audio/vnd.dolby.pl2z
1543
+ audio/vnd.dolby.pulse.1
1544
+ audio/vnd.dra dra
1545
+ audio/vnd.dts dts
1546
+ audio/vnd.dts.hd dtshd
1547
+ audio/vnd.dvb.file
1548
+ audio/vnd.everad.plj plj
1549
+ audio/vnd.hns.audio
1550
+ audio/vnd.lucent.voice lvp
1551
+ audio/vnd.ms-playready.media.pya pya
1552
+ audio/vnd.nokia.mobile-xmf mxmf
1553
+ audio/vnd.nortel.vbk vbk
1554
+ audio/vnd.nuera.ecelp4800 ecelp4800
1555
+ audio/vnd.nuera.ecelp7470 ecelp7470
1556
+ audio/vnd.nuera.ecelp9600 ecelp9600
1557
+ audio/vnd.octel.sbc
1558
+ audio/vnd.qcelp qcp
1559
+ audio/vnd.rhetorex.32kadpcm
1560
+ audio/vnd.rip rip
1561
+ audio/vnd.sealedmedia.softseal.mpeg smp3 smp s1m
1562
+ audio/vnd.vmx.cvsd
1563
+ audio/vorbis
1564
+ audio/vorbis-config
1565
+ audio/webm weba webm
1566
+ audio/x-aac aac
1567
+ audio/x-aiff aif aifc aiff
1568
+ audio/x-caf caf
1569
+ audio/x-flac flac
1570
+ audio/x-matroska mka
1571
+ audio/x-midi mid midi kar
1572
+ audio/x-mpegurl m3u
1573
+ audio/x-ms-wax wax
1574
+ audio/x-ms-wma wma
1575
+ audio/x-ms-wmv wmv
1576
+ audio/x-pn-realaudio ra ram
1577
+ audio/x-pn-realaudio-plugin rmp rpm
1578
+ audio/x-realaudio ra
1579
+ audio/x-wav wav
1580
+ audio/xm xm
1581
+ chemical/x-cdx cdx
1582
+ chemical/x-cif cif
1583
+ chemical/x-cmdf cmdf
1584
+ chemical/x-cml cml
1585
+ chemical/x-csml csml
1586
+ chemical/x-pdb pdb
1587
+ chemical/x-xyz xyz
1588
+ drawing/dwf dwf
1589
+ image/bmp bmp
1590
+ image/cgm cgm
1591
+ image/cmu-raster
1592
+ image/example
1593
+ image/fits
1594
+ image/g3fax g3
1595
+ image/gif gif
1596
+ image/ief ief
1597
+ image/jp2 jp2 jpg2
1598
+ image/jpeg jpeg jpg jpe
1599
+ image/jpm jpm jpgm
1600
+ image/jpx jpx jpf
1601
+ image/ktx ktx
1602
+ image/naplps
1603
+ image/pjpeg
1604
+ image/png png
1605
+ image/prs.btif btif
1606
+ image/prs.pti
1607
+ image/pwg-raster
1608
+ image/sgi sgi
1609
+ image/svg+xml svg svgz
1610
+ image/t38
1611
+ image/targa tga
1612
+ image/tiff tiff tif
1613
+ image/tiff-fx
1614
+ image/vnd.adobe.photoshop psd
1615
+ image/vnd.airzip.accelerator.azv
1616
+ image/vnd.cns.inf2
1617
+ image/vnd.dece.graphic uvg uvi uvvg uvvi
1618
+ image/vnd.dgn dgn
1619
+ image/vnd.djvu djvu djv
1620
+ image/vnd.dvb.subtitle sub
1621
+ image/vnd.dwg dwg
1622
+ image/vnd.dxf dxf
1623
+ image/vnd.fastbidsheet fbs
1624
+ image/vnd.fpx fpx
1625
+ image/vnd.fst fst
1626
+ image/vnd.fujixerox.edmics-mmr mmr
1627
+ image/vnd.fujixerox.edmics-rlc rlc
1628
+ image/vnd.globalgraphics.pgb pgb
1629
+ image/vnd.microsoft.icon ico
1630
+ image/vnd.mix
1631
+ image/vnd.mozilla.apng
1632
+ image/vnd.ms-modi mdi
1633
+ image/vnd.ms-photo wdp
1634
+ image/vnd.net-fpx npx
1635
+ image/vnd.net.fpx
1636
+ image/vnd.radiance
1637
+ image/vnd.sealed.png
1638
+ image/vnd.sealedmedia.softseal.gif
1639
+ image/vnd.sealedmedia.softseal.jpg
1640
+ image/vnd.svf
1641
+ image/vnd.tencent.tap
1642
+ image/vnd.valve.source.texture
1643
+ image/vnd.wap.wbmp wbmp
1644
+ image/vnd.xiff xif
1645
+ image/vnd.zbrush.pcx
1646
+ image/webp webp
1647
+ image/x-3ds 3ds
1648
+ image/x-bmp bmp
1649
+ image/x-cmu-raster ras
1650
+ image/x-cmx cmx
1651
+ image/x-compressed-xcf xcfbz2 xcfgz
1652
+ image/x-freehand fh fh4 fh5 fh7 fhc
1653
+ image/x-hasselblad-3fr 3fr
1654
+ image/x-icon ico
1655
+ image/x-mrsid-image sid
1656
+ image/x-ms-bmp bmp
1657
+ image/x-paintshoppro psp pspimage
1658
+ image/x-pcx pcx
1659
+ image/x-pict pct pic
1660
+ image/x-portable-anymap pnm
1661
+ image/x-portable-bitmap pbm
1662
+ image/x-portable-graymap pgm
1663
+ image/x-portable-pixmap ppm
1664
+ image/x-rgb rgb
1665
+ image/x-targa tga
1666
+ image/x-tga tga
1667
+ image/x-vnd.dgn dgn
1668
+ image/x-win-bmp
1669
+ image/x-xbitmap xbm
1670
+ image/x-xbm xbm
1671
+ image/x-xcf xcf
1672
+ image/x-xpixmap xpm
1673
+ image/x-xwindowdump xwd
1674
+ message/CPIM
1675
+ message/delivery-status
1676
+ message/disposition-notification
1677
+ message/example
1678
+ message/external-body
1679
+ message/feedback-report
1680
+ message/global
1681
+ message/global-delivery-status
1682
+ message/global-disposition-notification
1683
+ message/global-headers
1684
+ message/http
1685
+ message/imdn+xml
1686
+ message/news
1687
+ message/partial
1688
+ message/rfc822 eml mime
1689
+ message/s-http
1690
+ message/sip
1691
+ message/sipfrag
1692
+ message/tracking-status
1693
+ message/vnd.si.simp
1694
+ message/vnd.wfa.wsc
1695
+ model/example
1696
+ model/iges igs iges
1697
+ model/mesh msh mesh silo
1698
+ model/vnd.collada+xml dae
1699
+ model/vnd.dwf dwf
1700
+ model/vnd.flatland.3dml
1701
+ model/vnd.gdl gdl
1702
+ model/vnd.gs-gdl
1703
+ model/vnd.gtw gtw
1704
+ model/vnd.moml+xml
1705
+ model/vnd.mts mts
1706
+ model/vnd.opengex
1707
+ model/vnd.parasolid.transmit.binary x_b xmt_bin
1708
+ model/vnd.parasolid.transmit.text x_t xmt_txt
1709
+ model/vnd.valve.source.compiled-map
1710
+ model/vnd.vtu vtu
1711
+ model/vrml wrl vrml
1712
+ model/x3d+binary x3db x3dbz
1713
+ model/x3d+fastinfoset
1714
+ model/x3d+vrml x3dv x3dvz
1715
+ model/x3d+xml x3d x3dz
1716
+ model/x3d-vrml
1717
+ multipart/alternative
1718
+ multipart/appledouble
1719
+ multipart/byteranges
1720
+ multipart/digest
1721
+ multipart/encrypted
1722
+ multipart/example
1723
+ multipart/form-data
1724
+ multipart/header-set
1725
+ multipart/mixed
1726
+ multipart/parallel
1727
+ multipart/related
1728
+ multipart/report
1729
+ multipart/signed
1730
+ multipart/voice-message
1731
+ multipart/x-gzip
1732
+ multipart/x-mixed-replace
1733
+ multipart/x-parallel
1734
+ multipart/x-tar
1735
+ multipart/x-ustar
1736
+ multipart/x-www-form-urlencoded
1737
+ multipart/x-zip
1738
+ text/1d-interleaved-parityfec
1739
+ text/cache-manifest appcache manifest
1740
+ text/calendar ics ifb
1741
+ text/comma-separated-values csv
1742
+ text/css css
1743
+ text/csv csv
1744
+ text/csv-schema
1745
+ text/directory
1746
+ text/dns
1747
+ text/ecmascript
1748
+ text/encaprtp
1749
+ text/enriched
1750
+ text/example
1751
+ text/fwdred
1752
+ text/grammar-ref-list
1753
+ text/html html htm htmlx shtml htx
1754
+ text/javascript js
1755
+ text/jcr-cnd
1756
+ text/markdown
1757
+ text/mizar
1758
+ text/n3 n3
1759
+ text/parameters
1760
+ text/parityfec
1761
+ text/plain txt asc c cc h hh cpp hpp dat hlp conf def doc in list log markdown md rst text textile
1762
+ text/provenance-notation
1763
+ text/prs.fallenstein.rst rst
1764
+ text/prs.lines.tag dsc
1765
+ text/raptorfec
1766
+ text/RED
1767
+ text/rfc822-headers
1768
+ text/richtext rtx
1769
+ text/rtf rtf
1770
+ text/rtp-enc-aescm128
1771
+ text/rtploopback
1772
+ text/rtx
1773
+ text/sgml sgml sgm
1774
+ text/t140
1775
+ text/tab-separated-values tsv
1776
+ text/troff t tr roff troff man me ms
1777
+ text/turtle ttl
1778
+ text/ulpfec
1779
+ text/uri-list uri uris urls
1780
+ text/vcard vcard
1781
+ text/vnd.a
1782
+ text/vnd.abc
1783
+ text/vnd.curl curl
1784
+ text/vnd.curl.dcurl dcurl
1785
+ text/vnd.curl.mcurl mcurl
1786
+ text/vnd.curl.scurl scurl
1787
+ text/vnd.debian.copyright
1788
+ text/vnd.DMClientScript
1789
+ text/vnd.dvb.subtitle sub
1790
+ text/vnd.esmertec.theme-descriptor
1791
+ text/vnd.flatland.3dml
1792
+ text/vnd.fly fly
1793
+ text/vnd.fmi.flexstor flx
1794
+ text/vnd.graphviz gv
1795
+ text/vnd.in3d.3dml 3dml
1796
+ text/vnd.in3d.spot spot
1797
+ text/vnd.IPTC.NewsML
1798
+ text/vnd.IPTC.NITF
1799
+ text/vnd.latex-z
1800
+ text/vnd.motorola.reflex
1801
+ text/vnd.ms-mediapackage
1802
+ text/vnd.net2phone.commcenter.command ccc
1803
+ text/vnd.radisys.msml-basic-layout
1804
+ text/vnd.si.uricatalogue
1805
+ text/vnd.sun.j2me.app-descriptor jad
1806
+ text/vnd.trolltech.linguist
1807
+ text/vnd.wap.si si
1808
+ text/vnd.wap.sl sl
1809
+ text/vnd.wap.wml wml
1810
+ text/vnd.wap.wmlscript wmls
1811
+ text/x-asm asm s
1812
+ text/x-c c cc cpp cxx dic h hh
1813
+ text/x-coffescript coffee
1814
+ text/x-component htc
1815
+ text/x-fortran f f77 f90 for
1816
+ text/x-java-source java
1817
+ text/x-nfo nfo
1818
+ text/x-opml opml
1819
+ text/x-pascal p pas
1820
+ text/x-rtf rtf
1821
+ text/x-setext etx
1822
+ text/x-sfv sfv
1823
+ text/x-uuencode uu
1824
+ text/x-vcalendar vcs
1825
+ text/x-vcard vcf
1826
+ text/x-vnd.flatland.3dml
1827
+ text/x-yaml yaml yml
1828
+ text/xml xml dtd
1829
+ text/xml-external-parsed-entity
1830
+ video/1d-interleaved-parityfec
1831
+ video/3gpp 3gp 3gpp
1832
+ video/3gpp-tt
1833
+ video/3gpp2 3g2 3gpp2
1834
+ video/BMPEG
1835
+ video/BT656
1836
+ video/CelB
1837
+ video/dl dl
1838
+ video/DV dv
1839
+ video/encaprtp
1840
+ video/example
1841
+ video/gl gl
1842
+ video/H261 h261
1843
+ video/H263 h263
1844
+ video/H263-1998
1845
+ video/H263-2000
1846
+ video/H264 h264
1847
+ video/H264-RCDO
1848
+ video/H264-SVC
1849
+ video/iso.segment
1850
+ video/JPEG jpgv
1851
+ video/jpeg2000
1852
+ video/jpm jpgm jpm
1853
+ video/MJ2 mj2 mjp2
1854
+ video/MP1S
1855
+ video/MP2P
1856
+ video/MP2T ts
1857
+ video/mp4 mp4 mpg4 f4v f4p mp4v
1858
+ video/MP4V-ES
1859
+ video/mpeg mp2 mp3g mpe mpeg mpg m1v m2v
1860
+ video/mpeg4-generic
1861
+ video/MPV
1862
+ video/nv
1863
+ video/ogg ogg ogv
1864
+ video/parityfec
1865
+ video/pointer
1866
+ video/quicktime qt mov
1867
+ video/raptorfec
1868
+ video/raw
1869
+ video/rtp-enc-aescm128
1870
+ video/rtploopback
1871
+ video/rtx
1872
+ video/SMPTE292M
1873
+ video/ulpfec
1874
+ video/vc1
1875
+ video/vnd.CCTV
1876
+ video/vnd.dece.hd uvh uvvh
1877
+ video/vnd.dece.mobile uvm uvvm
1878
+ video/vnd.dece.mp4
1879
+ video/vnd.dece.pd uvp uvvp
1880
+ video/vnd.dece.sd uvs uvvs
1881
+ video/vnd.dece.video uvv uvvv
1882
+ video/vnd.directv.mpeg
1883
+ video/vnd.directv.mpeg-tts
1884
+ video/vnd.dlna.mpeg-tts
1885
+ video/vnd.dvb.file dvb
1886
+ video/vnd.fvt fvt
1887
+ video/vnd.hns.video
1888
+ video/vnd.iptvforum.1dparityfec-1010
1889
+ video/vnd.iptvforum.1dparityfec-2005
1890
+ video/vnd.iptvforum.2dparityfec-1010
1891
+ video/vnd.iptvforum.2dparityfec-2005
1892
+ video/vnd.iptvforum.ttsavc
1893
+ video/vnd.iptvforum.ttsmpeg2
1894
+ video/vnd.motorola.video
1895
+ video/vnd.motorola.videop
1896
+ video/vnd.mpegurl mxu m4u
1897
+ video/vnd.ms-playready.media.pyv pyv
1898
+ video/vnd.nokia.interleaved-multimedia nim
1899
+ video/vnd.nokia.videovoip
1900
+ video/vnd.objectvideo mp4 m4v
1901
+ video/vnd.radgamettools.bink
1902
+ video/vnd.radgamettools.smacker
1903
+ video/vnd.sealed.mpeg1 s11
1904
+ video/vnd.sealed.mpeg4 smpg s14
1905
+ video/vnd.sealed.swf sswf ssw
1906
+ video/vnd.sealedmedia.softseal.mov smov smo s1q
1907
+ video/vnd.uvvu.mp4 uvu uvvu
1908
+ video/vnd.vivo viv vivo
1909
+ video/VP8
1910
+ video/webm webm
1911
+ video/x-dl dl
1912
+ video/x-dv dv
1913
+ video/x-f4v f4v
1914
+ video/x-fli fli
1915
+ video/x-flv flv
1916
+ video/x-gl gl
1917
+ video/x-ivf ivf
1918
+ video/x-m4v m4v
1919
+ video/x-matroska mk3d mks mkv
1920
+ video/x-mng mng
1921
+ video/x-motion-jpeg mjpg mjpeg
1922
+ video/x-ms-asf asf asx
1923
+ video/x-ms-vob vob
1924
+ video/x-ms-wm wm
1925
+ video/x-ms-wmv wmv
1926
+ video/x-ms-wmx wmx
1927
+ video/x-ms-wvx wvx
1928
+ video/x-msvideo avi
1929
+ video/x-sgi-movie movie
1930
+ video/x-smv smv
1931
+ x-chemical/x-pdb pdb
1932
+ x-chemical/x-xyz xyz
1933
+ x-conference/x-cooltalk ice
1934
+ x-drawing/dwf dwf
1935
+ x-world/x-vrml wrl vrml